diff --git a/src/components/SingleFileUpload.jsx b/src/components/SingleFileUpload.jsx
index a67289f..2ffb28f 100644
--- a/src/components/SingleFileUpload.jsx
+++ b/src/components/SingleFileUpload.jsx
@@ -90,7 +90,9 @@ function SingleFileUpload({ onFileUploaded }) {
-
+
)
diff --git a/src/components/TimelineAreaChart.jsx b/src/components/TimelineAreaChart.jsx
index a30df1d..b74dadb 100644
--- a/src/components/TimelineAreaChart.jsx
+++ b/src/components/TimelineAreaChart.jsx
@@ -1,11 +1,11 @@
-import { React, useRef } from "react";
-import Highcharts from "highcharts";
-import HighchartsReact from "highcharts-react-official";
-import { fileContent } from "./SingleFileUpload";
+import { React, useRef } from "react"
+import Highcharts from "highcharts"
+import HighchartsReact from "highcharts-react-official"
+import { fileContent } from "./SingleFileUpload"
-require("highcharts/modules/accessibility")(Highcharts);
-require("highcharts/modules/exporting")(Highcharts);
-require("highcharts/modules/export-data")(Highcharts);
+require("highcharts/modules/accessibility")(Highcharts)
+require("highcharts/modules/exporting")(Highcharts)
+require("highcharts/modules/export-data")(Highcharts)
// Date, Map
var projectDataMap = new Map()
@@ -34,7 +34,9 @@ export default function AreaChart() {
})
}
const btn = (
-
+
)
return (
@@ -127,11 +129,11 @@ function getOptions() {
},
yAxis: {
title: {
- text: "Time spent (h)"
- }
+ text: "Time spent (h)",
+ },
},
accessibility: {
- enabled: true
+ enabled: true,
},
series: highChartsSeries,
}
diff --git a/src/components/TotalPieChart.jsx b/src/components/TotalPieChart.jsx
index 6a22d0b..98cf3b2 100644
--- a/src/components/TotalPieChart.jsx
+++ b/src/components/TotalPieChart.jsx
@@ -1,11 +1,11 @@
-import React from "react";
-import Highcharts from "highcharts";
-import HighchartsReact from "highcharts-react-official";
-import { fileContent } from "./SingleFileUpload";
+import React from "react"
+import Highcharts from "highcharts"
+import HighchartsReact from "highcharts-react-official"
+import { fileContent } from "./SingleFileUpload"
-require("highcharts/modules/accessibility")(Highcharts);
-require("highcharts/modules/exporting")(Highcharts);
-require("highcharts/modules/export-data")(Highcharts);
+require("highcharts/modules/accessibility")(Highcharts)
+require("highcharts/modules/exporting")(Highcharts)
+require("highcharts/modules/export-data")(Highcharts)
export default function TestChart() {
return
diff --git a/src/components/TotalTimelineAreaChart.jsx b/src/components/TotalTimelineAreaChart.jsx
new file mode 100644
index 0000000..8284726
--- /dev/null
+++ b/src/components/TotalTimelineAreaChart.jsx
@@ -0,0 +1,133 @@
+import { React, useRef } from "react"
+import Highcharts from "highcharts"
+import HighchartsReact from "highcharts-react-official"
+import { fileContent } from "./SingleFileUpload"
+
+require("highcharts/modules/accessibility")(Highcharts)
+require("highcharts/modules/exporting")(Highcharts)
+require("highcharts/modules/export-data")(Highcharts)
+
+export default function TotalAreaChart() {
+ const chartComponent = useRef(null)
+ var chartOptions = getOptions()
+ return (
+
+ )
+}
+
+function getOptions() {
+ var projectDataMap = []
+ var entryExtremes = getLowestAndHighestDates(fileContent)
+ var lowestStartDate = entryExtremes.lDate
+ var highestStartDate = entryExtremes.hDate
+
+ var itDate = lowestStartDate
+
+ while (itDate < highestStartDate) {
+ const projectEntries = fileContent.filter(function (e) {
+ return entryDateEqualsItDate(e, itDate)
+ })
+
+ var accumulatedHourValue = 0.0
+
+ for (const pe of projectEntries) {
+ if (pe.Start_Date === pe.End_Date) {
+ const durationDecimal = parseFloat(pe.Duration_Decimal)
+ accumulatedHourValue += durationDecimal
+ }
+ // TODO THINK ABOUT ROLLOVER...
+ /*
+ if (pe.Start_Date === pe.End_Date) {
+ var accumulatedHours = projectDataMap.get(projectName) || [];
+ const durationDecimal = pe.Duration_Decimal;
+ projectDataMap.set(projectName, accumulatedHours + durationDecimal);
+ } else {
+ // Calculate duration decimal on each date between start and end
+ const accumulatedHours = projectDataMap.get(projectName) || [];
+ const startDateDecimal = (24 - new Date(pe.Start_Date).getHours()) / 24;
+ projectDataMap.set(projectName, accumulatedHours + startDateDecimal);
+ //const endDateDecimal = new Date(pe.End_Date).getHours() / 24;
+ //projectDataMap.set(projectName, accumulatedHours.concat(endDateDecimal));
+ }*/
+ }
+ projectDataMap.push(accumulatedHourValue)
+ itDate = new Date(itDate.valueOf() + 3600 * 1000 * 24)
+ }
+
+ // Convert accumulated data into HighCharts Series Object
+ const highChartsSeries = {
+ name: "Total hours spent",
+ data: projectDataMap,
+ tooltip: {
+ valueSuffix: "h",
+ pointFormat: "Time spent: {point.y:,.2f}h",
+ },
+ pointStart: Date.UTC(
+ lowestStartDate.getFullYear(),
+ lowestStartDate.getMonth(),
+ lowestStartDate.getDate(),
+ ),
+ pointInterval: 3600 * 1000 * 24, // 24 Hours
+ }
+
+ const highchartsOptions = {
+ chart: {
+ type: "area",
+ },
+ title: {
+ text: "Timeline per project",
+ },
+ xAxis: {
+ title: {
+ text: "Date",
+ },
+ type: "datetime",
+ },
+ yAxis: {
+ title: {
+ text: "Time spent (h)",
+ },
+ },
+ accessibility: {
+ enabled: true,
+ },
+ series: [highChartsSeries],
+ }
+
+ return highchartsOptions
+}
+
+function getLowestAndHighestDates(entries) {
+ var lowestDate = new Date()
+ var highestDate = new Date(1970, 1, 1)
+ var datePattern = /(\d{2})\/(\d{2})\/(\d{4})/
+
+ for (var e of entries) {
+ var entryDate = new Date(e.Start_Date.replace(datePattern, "$3-$2-$1"))
+ if (entryDate < lowestDate) {
+ lowestDate = entryDate
+ } else if (entryDate > highestDate) {
+ highestDate = entryDate
+ }
+ }
+ return {
+ lDate: lowestDate,
+ hDate: new Date(highestDate.valueOf() + 3600 * 1000 * 24),
+ }
+}
+
+function entryDateEqualsItDate(e, itDate) {
+ var datePattern = /(\d{2})\/(\d{2})\/(\d{4})/
+ var entryDate = new Date(e.Start_Date.replace(datePattern, "$3-$2-$1"))
+ var itD = new Date(itDate)
+
+ return (
+ entryDate.getUTCDate() === itD.getUTCDate() &&
+ entryDate.getUTCMonth() === itD.getUTCMonth() &&
+ entryDate.getUTCFullYear() === itD.getUTCFullYear()
+ )
+}
diff --git a/src/data/clockify_data1.js b/src/data/clockify_data1.js
index bef6767..21a6282 100644
--- a/src/data/clockify_data1.js
+++ b/src/data/clockify_data1.js
@@ -16,7 +16,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:36:14",
Duration_Decimal: 2.6,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -35,7 +35,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:29",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -54,7 +54,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:46:03",
Duration_Decimal: 0.77,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -73,7 +73,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:44",
Duration_Decimal: 0.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -92,7 +92,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:54",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -111,7 +111,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:12:48",
Duration_Decimal: 1.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -130,7 +130,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:47:48",
Duration_Decimal: 1.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -149,7 +149,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:46:48",
Duration_Decimal: 0.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -168,7 +168,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:33",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -187,7 +187,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:21:07",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -206,7 +206,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:06",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -225,7 +225,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:04",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -244,7 +244,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:15",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -263,7 +263,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:44:41",
Duration_Decimal: 0.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -282,7 +282,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:09",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -301,7 +301,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:53",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -320,7 +320,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:34:13",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -339,7 +339,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:05",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -358,7 +358,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:47:37",
Duration_Decimal: 0.79,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -377,7 +377,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:23",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -396,7 +396,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:34:53",
Duration_Decimal: 0.58,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -415,7 +415,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:22:22",
Duration_Decimal: 1.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -434,7 +434,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:14",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -453,7 +453,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:59",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -472,7 +472,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:21",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -491,7 +491,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:41:46",
Duration_Decimal: 0.7,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -510,7 +510,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:51",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -529,7 +529,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:37:56",
Duration_Decimal: 0.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -548,7 +548,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:29",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -567,7 +567,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:20",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -586,7 +586,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:10:24",
Duration_Decimal: 2.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -605,7 +605,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:46:01",
Duration_Decimal: 0.77,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -624,7 +624,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:27:06",
Duration_Decimal: 0.45,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -643,7 +643,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:18",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -662,7 +662,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:20",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -681,7 +681,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:05",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -700,7 +700,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:12",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -719,7 +719,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:37:05",
Duration_Decimal: 0.62,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -738,7 +738,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:51",
Duration_Decimal: 0.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -757,7 +757,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:36:41",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -776,7 +776,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:35:35",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -795,7 +795,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:13",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -814,7 +814,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:55",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -833,7 +833,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:20:06",
Duration_Decimal: 1.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -852,7 +852,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:58",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -871,7 +871,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:20",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -890,7 +890,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:41:35",
Duration_Decimal: 0.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -909,7 +909,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:36",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -928,7 +928,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:37",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -947,7 +947,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:28",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -966,7 +966,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:44:24",
Duration_Decimal: 0.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -985,7 +985,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:21",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -1004,7 +1004,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:00",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -1023,7 +1023,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:33",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -1042,7 +1042,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:55",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -1061,7 +1061,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:46",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -1080,7 +1080,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:45",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -1099,7 +1099,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:37",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -1118,7 +1118,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:44:25",
Duration_Decimal: 0.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -1137,7 +1137,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:09",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -1156,7 +1156,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:06",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -1175,7 +1175,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:47",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -1194,7 +1194,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:48",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -1213,7 +1213,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:18",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -1232,7 +1232,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:00:12",
Duration_Decimal: 1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Other",
@@ -1251,7 +1251,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:25",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -1270,7 +1270,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:39",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -1289,7 +1289,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:05",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -1308,7 +1308,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:12",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Lecture",
@@ -1327,7 +1327,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:47",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Lecture",
@@ -1346,7 +1346,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:11:00",
Duration_Decimal: 1.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Lecture",
@@ -1365,7 +1365,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:55:43",
Duration_Decimal: 0.93,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1384,7 +1384,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:51",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1403,7 +1403,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:45",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1422,7 +1422,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:54",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1441,7 +1441,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:32:44",
Duration_Decimal: 1.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1460,7 +1460,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:11",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1479,7 +1479,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:47:15",
Duration_Decimal: 0.79,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1498,7 +1498,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:05",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1517,7 +1517,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:28:21",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1536,7 +1536,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:07",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1555,7 +1555,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:57",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1574,7 +1574,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:49:47",
Duration_Decimal: 1.83,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1593,7 +1593,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:36:50",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1612,7 +1612,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:47:38",
Duration_Decimal: 0.79,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1631,7 +1631,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:35",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1650,7 +1650,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:55:26",
Duration_Decimal: 0.92,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1669,7 +1669,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:46",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1688,7 +1688,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:04",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1707,7 +1707,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:37:41",
Duration_Decimal: 0.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1726,7 +1726,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:02:25",
Duration_Decimal: 1.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1745,7 +1745,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:59:01",
Duration_Decimal: 0.98,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1764,7 +1764,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:37",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1783,7 +1783,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:41",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1802,7 +1802,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:09",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1821,7 +1821,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:59",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1840,7 +1840,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:47",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1859,7 +1859,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:01",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1878,7 +1878,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:27:44",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1897,7 +1897,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:27:05",
Duration_Decimal: 0.45,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1916,7 +1916,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:00:21",
Duration_Decimal: 0.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1935,7 +1935,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:51",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1954,7 +1954,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:23:26",
Duration_Decimal: 1.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -1973,7 +1973,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:31",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -1992,7 +1992,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:47",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -2011,7 +2011,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:47:17",
Duration_Decimal: 0.79,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -2030,7 +2030,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:36",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -2049,7 +2049,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:33:37",
Duration_Decimal: 0.56,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -2068,7 +2068,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:40:05",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -2087,7 +2087,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:56:00",
Duration_Decimal: 0.93,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -2106,7 +2106,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:21:01",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -2125,7 +2125,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:38:51",
Duration_Decimal: 0.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -2144,7 +2144,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:52",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2163,7 +2163,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:17",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -2182,7 +2182,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:33",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -2201,7 +2201,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:36",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -2220,7 +2220,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:32",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2239,7 +2239,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:13:48",
Duration_Decimal: 1.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2258,7 +2258,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:58",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -2277,7 +2277,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:54",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -2296,7 +2296,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:36:36",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2315,7 +2315,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:45:44",
Duration_Decimal: 0.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2334,7 +2334,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:00",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2353,7 +2353,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:33",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -2372,7 +2372,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:00:49",
Duration_Decimal: 2.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2391,7 +2391,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:14",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2410,7 +2410,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:57",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2429,7 +2429,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:49",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2448,7 +2448,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:29",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2467,7 +2467,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:13",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2486,7 +2486,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:23",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2505,7 +2505,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:59",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2524,7 +2524,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:34:25",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2543,7 +2543,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:05",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2562,7 +2562,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:55",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2581,7 +2581,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:45",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2600,7 +2600,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:14:30",
Duration_Decimal: 1.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2619,7 +2619,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:39",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2638,7 +2638,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:43",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -2657,7 +2657,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:28",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -2676,7 +2676,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:27",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2695,7 +2695,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:59:52",
Duration_Decimal: 1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2714,7 +2714,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:48",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2733,7 +2733,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:10",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2752,7 +2752,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:04",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2771,7 +2771,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:31",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2790,7 +2790,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:43",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2809,7 +2809,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:56",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2828,7 +2828,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:32",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2847,7 +2847,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:38",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2866,7 +2866,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:27",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -2885,7 +2885,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:00:44",
Duration_Decimal: 0.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -2904,7 +2904,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:24",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2923,7 +2923,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:00:35",
Duration_Decimal: 2.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2942,7 +2942,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:27:34",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lecture",
@@ -2961,7 +2961,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:26:11",
Duration_Decimal: 1.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lecture",
@@ -2980,7 +2980,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:01:14",
Duration_Decimal: 1.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -2999,7 +2999,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:37",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -3018,7 +3018,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:33",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -3037,7 +3037,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:35",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -3056,7 +3056,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:54:38",
Duration_Decimal: 0.91,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3075,7 +3075,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:35",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3094,7 +3094,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:07",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3113,7 +3113,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:39:34",
Duration_Decimal: 0.66,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -3132,7 +3132,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:38",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -3151,7 +3151,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:32",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -3170,7 +3170,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:40:44",
Duration_Decimal: 0.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -3189,7 +3189,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:43:22",
Duration_Decimal: 0.72,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -3208,7 +3208,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:44",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -3227,7 +3227,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:28:49",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -3246,7 +3246,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:19",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -3265,7 +3265,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:27",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3284,7 +3284,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:31",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3303,7 +3303,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:44",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3322,7 +3322,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:39",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3341,7 +3341,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:11",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3360,7 +3360,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:53",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3379,7 +3379,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:23",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3398,7 +3398,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:43",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3417,7 +3417,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:48:02",
Duration_Decimal: 0.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3436,7 +3436,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:45",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3455,7 +3455,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:17",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -3474,7 +3474,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:13:36",
Duration_Decimal: 2.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Lecture",
@@ -3493,7 +3493,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:42:07",
Duration_Decimal: 0.7,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Lecture",
@@ -3512,7 +3512,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:52:20",
Duration_Decimal: 0.87,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Lecture",
@@ -3531,7 +3531,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:21:34",
Duration_Decimal: 1.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -3550,7 +3550,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:40",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3569,7 +3569,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:40:20",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3588,7 +3588,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:01:11",
Duration_Decimal: 1.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3607,7 +3607,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:53:13",
Duration_Decimal: 0.89,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3626,7 +3626,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:25",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3645,7 +3645,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:58:37",
Duration_Decimal: 0.98,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3664,7 +3664,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:41",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3683,7 +3683,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:49",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3702,7 +3702,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:16",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3721,7 +3721,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:39",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3740,7 +3740,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:35",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3759,7 +3759,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:28",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -3778,7 +3778,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:00",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3797,7 +3797,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:52",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3816,7 +3816,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:23",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -3835,7 +3835,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:36",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -3854,7 +3854,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:14:21",
Duration_Decimal: 1.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -3873,7 +3873,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:56",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3892,7 +3892,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:19",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3911,7 +3911,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:02:33",
Duration_Decimal: 1.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3930,7 +3930,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:00:38",
Duration_Decimal: 1.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3949,7 +3949,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:10:46",
Duration_Decimal: 1.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3968,7 +3968,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:47",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -3987,7 +3987,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:34:42",
Duration_Decimal: 0.58,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4006,7 +4006,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:07:09",
Duration_Decimal: 1.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4025,7 +4025,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:56:06",
Duration_Decimal: 0.94,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4044,7 +4044,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:34:11",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4063,7 +4063,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:01:08",
Duration_Decimal: 1.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4082,7 +4082,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:13:21",
Duration_Decimal: 1.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4101,7 +4101,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:34",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4120,7 +4120,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:21:15",
Duration_Decimal: 1.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4139,7 +4139,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:46",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4158,7 +4158,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:15",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4177,7 +4177,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:05",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4196,7 +4196,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:15",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4215,7 +4215,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:33",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4234,7 +4234,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:21:44",
Duration_Decimal: 0.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4253,7 +4253,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:24",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -4272,7 +4272,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:00:01",
Duration_Decimal: 0,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4291,7 +4291,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:35:46",
Duration_Decimal: 0.6,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -4310,7 +4310,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:32",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4329,7 +4329,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:09",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4348,7 +4348,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:35:13",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4367,7 +4367,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:38",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4386,7 +4386,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:24",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4405,7 +4405,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:47:03",
Duration_Decimal: 0.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4424,7 +4424,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:51",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4443,7 +4443,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:32:57",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4462,7 +4462,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:03",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4481,7 +4481,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:27",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4500,7 +4500,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:28:06",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4519,7 +4519,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:36:18",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4538,7 +4538,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:32",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4557,7 +4557,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:35:26",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4576,7 +4576,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:42:45",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4595,7 +4595,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:53",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4614,7 +4614,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:24",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4633,7 +4633,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:36",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4652,7 +4652,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:16",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4671,7 +4671,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:24",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4690,7 +4690,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:19",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4709,7 +4709,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:42:24",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4728,7 +4728,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:48:37",
Duration_Decimal: 0.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4747,7 +4747,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:00:01",
Duration_Decimal: 0,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4766,7 +4766,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:40:47",
Duration_Decimal: 0.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4785,7 +4785,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:21",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4804,7 +4804,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:16",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4823,7 +4823,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:00",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4842,7 +4842,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:39:28",
Duration_Decimal: 0.66,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4861,7 +4861,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:16",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4880,7 +4880,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:21",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4899,7 +4899,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:55:55",
Duration_Decimal: 0.93,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4918,7 +4918,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:27:40",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4937,7 +4937,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:28",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4956,7 +4956,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:47:04",
Duration_Decimal: 0.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4975,7 +4975,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:34:23",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -4994,7 +4994,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:50:13",
Duration_Decimal: 0.84,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -5013,7 +5013,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:54",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -5032,7 +5032,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:57",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -5051,7 +5051,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:13",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -5070,7 +5070,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:43",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -5089,7 +5089,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:03",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -5108,7 +5108,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:22",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -5127,7 +5127,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:53",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -5146,7 +5146,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:21",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -5165,7 +5165,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:37:48",
Duration_Decimal: 0.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -5184,7 +5184,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:24:06",
Duration_Decimal: 1.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -5203,7 +5203,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:48",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -5222,7 +5222,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:30",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -5241,7 +5241,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:21",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -5260,7 +5260,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:20",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -5279,7 +5279,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:22",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -5298,7 +5298,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:25",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -5317,7 +5317,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:49:23",
Duration_Decimal: 0.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Lecture",
@@ -5336,7 +5336,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:19:26",
Duration_Decimal: 1.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Lecture",
@@ -5355,7 +5355,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:49:54",
Duration_Decimal: 0.83,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Lecture",
@@ -5374,7 +5374,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:03:51",
Duration_Decimal: 1.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5393,7 +5393,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:26",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5412,7 +5412,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:09",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5431,7 +5431,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:46:37",
Duration_Decimal: 0.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5450,7 +5450,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:21:21",
Duration_Decimal: 1.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5469,7 +5469,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:24:19",
Duration_Decimal: 1.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5488,7 +5488,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:44",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5507,7 +5507,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:40:20",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -5526,7 +5526,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:59",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -5545,7 +5545,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:29",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -5564,7 +5564,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:56:04",
Duration_Decimal: 0.93,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -5583,7 +5583,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:35:30",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -5602,7 +5602,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:27:34",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -5621,7 +5621,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:07:03",
Duration_Decimal: 1.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5640,7 +5640,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:34",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5659,7 +5659,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:31:32",
Duration_Decimal: 1.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5678,7 +5678,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:59:49",
Duration_Decimal: 1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5697,7 +5697,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:55",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5716,7 +5716,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:24",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5735,7 +5735,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:15",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5754,7 +5754,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:42:20",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -5773,7 +5773,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:55",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -5792,7 +5792,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:02",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5811,7 +5811,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:21:03",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5830,7 +5830,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:48:32",
Duration_Decimal: 0.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5849,7 +5849,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:39",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -5868,7 +5868,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:36",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5887,7 +5887,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:57",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5906,7 +5906,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:43",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5925,7 +5925,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:12",
Duration_Decimal: 0.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5944,7 +5944,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:44:27",
Duration_Decimal: 0.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5963,7 +5963,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:08",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -5982,7 +5982,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:46:57",
Duration_Decimal: 0.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6001,7 +6001,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:31",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6020,7 +6020,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:40:52",
Duration_Decimal: 0.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6039,7 +6039,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:14",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6058,7 +6058,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:53",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6077,7 +6077,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:29",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6096,7 +6096,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:39",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6115,7 +6115,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:23",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6134,7 +6134,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:31",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6153,7 +6153,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:27",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -6172,7 +6172,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:05:01",
Duration_Decimal: 1.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -6191,7 +6191,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:48:51",
Duration_Decimal: 1.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -6210,7 +6210,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:41",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -6229,7 +6229,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:34:12",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6248,7 +6248,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:27",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lecture",
@@ -6267,7 +6267,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:33:59",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lecture",
@@ -6286,7 +6286,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:03:00",
Duration_Decimal: 1.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -6305,7 +6305,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:34",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -6324,7 +6324,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:14",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6343,7 +6343,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:18:38",
Duration_Decimal: 1.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6362,7 +6362,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:27",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6381,7 +6381,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:28",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6400,7 +6400,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:48",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6419,7 +6419,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:20",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6438,7 +6438,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:33:57",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -6457,7 +6457,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:00",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -6476,7 +6476,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:33:47",
Duration_Decimal: 0.56,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -6495,7 +6495,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:27:11",
Duration_Decimal: 0.45,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -6514,7 +6514,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:02",
Duration_Decimal: 0.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -6533,7 +6533,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:03",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -6552,7 +6552,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:38:42",
Duration_Decimal: 0.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -6571,7 +6571,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:32",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -6590,7 +6590,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:45",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -6609,7 +6609,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:24",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -6628,7 +6628,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:09",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lecture",
@@ -6647,7 +6647,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:34:34",
Duration_Decimal: 0.58,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lecture",
@@ -6666,7 +6666,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:57:44",
Duration_Decimal: 0.96,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -6685,7 +6685,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:45",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -6704,7 +6704,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:35",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -6723,7 +6723,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:14",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -6742,7 +6742,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:41",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -6761,7 +6761,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:53",
Duration_Decimal: 0.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6780,7 +6780,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:17",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6799,7 +6799,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:21:50",
Duration_Decimal: 0.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6818,7 +6818,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:12",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6837,7 +6837,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:26",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -6856,7 +6856,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:27",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6875,7 +6875,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:35",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6894,7 +6894,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:17",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6913,7 +6913,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:55",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6932,7 +6932,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:28:54",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6951,7 +6951,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:26",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6970,7 +6970,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:48:30",
Duration_Decimal: 0.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -6989,7 +6989,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:50:39",
Duration_Decimal: 2.84,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -7008,7 +7008,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:27:04",
Duration_Decimal: 0.45,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7027,7 +7027,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:59",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7046,7 +7046,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:22",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -7065,7 +7065,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:52",
Duration_Decimal: 0.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -7084,7 +7084,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:28:27",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -7103,7 +7103,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:26",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -7122,7 +7122,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:50",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -7141,7 +7141,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:04:48",
Duration_Decimal: 1.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Lecture",
@@ -7160,7 +7160,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:44:02",
Duration_Decimal: 0.73,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Lecture",
@@ -7179,7 +7179,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:16:08",
Duration_Decimal: 2.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7198,7 +7198,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:53:09",
Duration_Decimal: 0.89,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7217,7 +7217,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:32:52",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7236,7 +7236,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:59",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7255,7 +7255,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:09:41",
Duration_Decimal: 1.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -7274,7 +7274,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:25",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -7293,7 +7293,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:17:22",
Duration_Decimal: 1.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -7312,7 +7312,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:41",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -7331,7 +7331,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:00:06",
Duration_Decimal: 1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -7350,7 +7350,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:35:12",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -7369,7 +7369,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:03:31",
Duration_Decimal: 1.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7388,7 +7388,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:57",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7407,7 +7407,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:16",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7426,7 +7426,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:30",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7445,7 +7445,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:54",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7464,7 +7464,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:52:14",
Duration_Decimal: 0.87,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7483,7 +7483,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:54",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7502,7 +7502,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:59",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7521,7 +7521,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:02",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7540,7 +7540,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:37",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7559,7 +7559,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:07",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7578,7 +7578,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:35:59",
Duration_Decimal: 0.6,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7597,7 +7597,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:41",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7616,7 +7616,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:31",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7635,7 +7635,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:53",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7654,7 +7654,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:04:22",
Duration_Decimal: 1.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7673,7 +7673,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:56",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -7692,7 +7692,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:10",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7711,7 +7711,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:15",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7730,7 +7730,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:49",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7749,7 +7749,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:41",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7768,7 +7768,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:25",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7787,7 +7787,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:13",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7806,7 +7806,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:17",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7825,7 +7825,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:24",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7844,7 +7844,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:05",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7863,7 +7863,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:47",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7882,7 +7882,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:35",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7901,7 +7901,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:32",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7920,7 +7920,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:42:51",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7939,7 +7939,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:35:24",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -7958,7 +7958,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:00",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -7977,7 +7977,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:38:34",
Duration_Decimal: 0.64,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lecture",
@@ -7996,7 +7996,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:42:50",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lecture",
@@ -8015,7 +8015,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:50:51",
Duration_Decimal: 0.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -8034,7 +8034,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:19",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8053,7 +8053,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:37",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8072,7 +8072,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:32",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8091,7 +8091,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:32:46",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8110,7 +8110,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:34:47",
Duration_Decimal: 0.58,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8129,7 +8129,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:57",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8148,7 +8148,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:02",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8167,7 +8167,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:40",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -8186,7 +8186,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:17",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -8205,7 +8205,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:44",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8224,7 +8224,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:19",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8243,7 +8243,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:24",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8262,7 +8262,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:25",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8281,7 +8281,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:01",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8300,7 +8300,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:48:52",
Duration_Decimal: 1.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8319,7 +8319,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:32:50",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lecture",
@@ -8338,7 +8338,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:51:01",
Duration_Decimal: 0.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lecture",
@@ -8357,7 +8357,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:48:46",
Duration_Decimal: 0.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8376,7 +8376,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:57",
Duration_Decimal: 0.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8395,7 +8395,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:32",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8414,7 +8414,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:02:52",
Duration_Decimal: 1.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8433,7 +8433,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:59:33",
Duration_Decimal: 1.99,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8452,7 +8452,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:52",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -8471,7 +8471,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:42:28",
Duration_Decimal: 1.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -8490,7 +8490,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:42:16",
Duration_Decimal: 0.7,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -8509,7 +8509,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:42",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -8528,7 +8528,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:48:31",
Duration_Decimal: 0.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -8547,7 +8547,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:22",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -8566,7 +8566,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:53",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -8585,7 +8585,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:08",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -8604,7 +8604,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:48:56",
Duration_Decimal: 0.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -8623,7 +8623,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:55",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -8642,7 +8642,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:21:50",
Duration_Decimal: 0.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -8661,7 +8661,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:32",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8680,7 +8680,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:59",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -8699,7 +8699,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:08",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -8718,7 +8718,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:47",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -8737,7 +8737,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:33:07",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -8756,7 +8756,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:16",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -8775,7 +8775,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:34",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -8794,7 +8794,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:25",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -8813,7 +8813,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:49:35",
Duration_Decimal: 0.83,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Lecture",
@@ -8832,7 +8832,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:28:07",
Duration_Decimal: 1.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Lecture",
@@ -8851,7 +8851,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:40:55",
Duration_Decimal: 0.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Lecture",
@@ -8870,7 +8870,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:14:05",
Duration_Decimal: 1.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8889,7 +8889,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:19",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8908,7 +8908,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:28:53",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8927,7 +8927,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:45:10",
Duration_Decimal: 0.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8946,7 +8946,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:03",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -8965,7 +8965,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:52",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -8984,7 +8984,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:21:00",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -9003,7 +9003,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:30",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9022,7 +9022,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:24:39",
Duration_Decimal: 1.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9041,7 +9041,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:55:59",
Duration_Decimal: 0.93,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -9060,7 +9060,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:28",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -9079,7 +9079,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:47",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -9098,7 +9098,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:01:53",
Duration_Decimal: 1.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -9117,7 +9117,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:08",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -9136,7 +9136,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:33:33",
Duration_Decimal: 0.56,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -9155,7 +9155,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:41:10",
Duration_Decimal: 0.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -9174,7 +9174,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:32",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9193,7 +9193,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:39",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9212,7 +9212,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:26",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9231,7 +9231,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:10",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9250,7 +9250,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:31",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9269,7 +9269,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:27:50",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9288,7 +9288,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:29:27",
Duration_Decimal: 1.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -9307,7 +9307,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:26",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -9326,7 +9326,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:32",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -9345,7 +9345,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:17",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -9364,7 +9364,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:18",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -9383,7 +9383,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:33",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -9402,7 +9402,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:38:08",
Duration_Decimal: 0.64,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9421,7 +9421,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:53:40",
Duration_Decimal: 0.89,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9440,7 +9440,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:06",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9459,7 +9459,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:03:19",
Duration_Decimal: 1.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9478,7 +9478,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:46:25",
Duration_Decimal: 0.77,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -9497,7 +9497,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:30",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -9516,7 +9516,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:42:23",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9535,7 +9535,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:48",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9554,7 +9554,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:00:45",
Duration_Decimal: 1.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -9573,7 +9573,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:40:22",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -9592,7 +9592,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:17",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9611,7 +9611,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:32:04",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9630,7 +9630,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:44:38",
Duration_Decimal: 0.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9649,7 +9649,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:21",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -9668,7 +9668,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:45",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -9687,7 +9687,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:23",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9706,7 +9706,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:51",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9725,7 +9725,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:59",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -9744,7 +9744,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:00",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9763,7 +9763,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:30",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -9782,7 +9782,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:39:01",
Duration_Decimal: 0.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -9801,7 +9801,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:07:08",
Duration_Decimal: 2.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -9820,7 +9820,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:36",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -9839,7 +9839,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:22",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -9858,7 +9858,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:36:49",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -9877,7 +9877,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:00:00",
Duration_Decimal: 0,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -9896,7 +9896,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:30",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lecture",
@@ -9915,7 +9915,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:45:42",
Duration_Decimal: 0.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lecture",
@@ -9934,7 +9934,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:49:02",
Duration_Decimal: 0.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -9953,7 +9953,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:42:24",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -9972,7 +9972,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:29",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -9991,7 +9991,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:12:00",
Duration_Decimal: 1.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -10010,7 +10010,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:58",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -10029,7 +10029,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:34:28",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -10048,7 +10048,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:24",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -10067,7 +10067,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:19:54",
Duration_Decimal: 1.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -10086,7 +10086,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:08",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -10105,7 +10105,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:45:46",
Duration_Decimal: 0.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lecture",
@@ -10124,7 +10124,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:48:32",
Duration_Decimal: 0.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lecture",
@@ -10143,7 +10143,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:52:13",
Duration_Decimal: 0.87,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -10162,7 +10162,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:01:55",
Duration_Decimal: 1.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -10181,7 +10181,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:02",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -10200,7 +10200,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:31",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -10219,7 +10219,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:09",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -10238,7 +10238,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:12",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -10257,7 +10257,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:52",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -10276,7 +10276,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:14",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -10295,7 +10295,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:28:21",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -10314,7 +10314,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:23",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -10333,7 +10333,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:58",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -10352,7 +10352,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:06",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -10371,7 +10371,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:41:18",
Duration_Decimal: 1.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -10390,7 +10390,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:27",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -10409,7 +10409,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:38",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -10428,7 +10428,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:28:09",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -10447,7 +10447,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:39",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -10466,7 +10466,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:36:53",
Duration_Decimal: 2.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -10485,7 +10485,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:59",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -10504,7 +10504,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:50",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -10523,7 +10523,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:28:19",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -10542,7 +10542,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:51",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -10561,7 +10561,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:51",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -10580,7 +10580,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:37",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -10599,7 +10599,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:27:20",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -10618,7 +10618,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:27",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -10637,7 +10637,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:33:42",
Duration_Decimal: 0.56,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -10656,7 +10656,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:48",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -10675,7 +10675,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:35:01",
Duration_Decimal: 0.58,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -10694,7 +10694,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:59:21",
Duration_Decimal: 0.99,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Lecture",
@@ -10713,7 +10713,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:52:33",
Duration_Decimal: 0.88,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Lecture",
@@ -10732,7 +10732,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:21:19",
Duration_Decimal: 1.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Lecture",
@@ -10751,7 +10751,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:53:29",
Duration_Decimal: 0.89,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -10770,7 +10770,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:00",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -10789,7 +10789,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:10",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -10808,7 +10808,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:30",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -10827,7 +10827,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:27",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -10846,7 +10846,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:01",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -10865,7 +10865,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:34:01",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -10884,7 +10884,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:28",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -10903,7 +10903,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:53",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -10922,7 +10922,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:13",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -10941,7 +10941,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:45",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -10960,7 +10960,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:14",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -10979,7 +10979,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:17",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -10998,7 +10998,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:30",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -11017,7 +11017,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:38",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11036,7 +11036,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:52",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11055,7 +11055,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:00:55",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11074,7 +11074,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:21",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11093,7 +11093,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:29",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11112,7 +11112,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:48",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11131,7 +11131,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:47",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11150,7 +11150,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:45",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11169,7 +11169,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:46",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11188,7 +11188,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:36:26",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11207,7 +11207,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:59",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11226,7 +11226,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:37:33",
Duration_Decimal: 0.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11245,7 +11245,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:14",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11264,7 +11264,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:11",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11283,7 +11283,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:54",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11302,7 +11302,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:32:58",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11321,7 +11321,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:33:14",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11340,7 +11340,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:01",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11359,7 +11359,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:16",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11378,7 +11378,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:32",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11397,7 +11397,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:55",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11416,7 +11416,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:48",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11435,7 +11435,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:48",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11454,7 +11454,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:54",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11473,7 +11473,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:18",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11492,7 +11492,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:32",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11511,7 +11511,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:34",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11530,7 +11530,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:27",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11549,7 +11549,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:18",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -11568,7 +11568,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:35",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11587,7 +11587,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:04",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11606,7 +11606,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:02",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -11625,7 +11625,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:46",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -11644,7 +11644,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:20",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11663,7 +11663,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:43",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -11682,7 +11682,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:41:19",
Duration_Decimal: 0.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -11701,7 +11701,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:51",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -11720,7 +11720,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:46:07",
Duration_Decimal: 0.77,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -11739,7 +11739,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:00:04",
Duration_Decimal: 0,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11758,7 +11758,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:04",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11777,7 +11777,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:19",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -11796,7 +11796,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:29",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11815,7 +11815,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:00:42",
Duration_Decimal: 0.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11834,7 +11834,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:23",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11853,7 +11853,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:39:49",
Duration_Decimal: 0.66,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11872,7 +11872,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:01",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lecture",
@@ -11891,7 +11891,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:45:30",
Duration_Decimal: 0.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lecture",
@@ -11910,7 +11910,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:49:07",
Duration_Decimal: 0.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11929,7 +11929,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:43:28",
Duration_Decimal: 0.72,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11948,7 +11948,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:39:39",
Duration_Decimal: 0.66,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11967,7 +11967,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:41",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -11986,7 +11986,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:34:49",
Duration_Decimal: 0.58,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -12005,7 +12005,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:07",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -12024,7 +12024,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:57",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -12043,7 +12043,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:42",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -12062,7 +12062,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:09",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -12081,7 +12081,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:35:07",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -12100,7 +12100,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:37:00",
Duration_Decimal: 0.62,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lab",
@@ -12119,7 +12119,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:35:05",
Duration_Decimal: 1.58,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lecture",
@@ -12138,7 +12138,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:44:53",
Duration_Decimal: 0.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps Lecture",
@@ -12157,7 +12157,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:49:17",
Duration_Decimal: 0.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12176,7 +12176,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:30",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -12195,7 +12195,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:31",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -12214,7 +12214,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:51",
Duration_Decimal: 0.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -12233,7 +12233,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:28:59",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -12252,7 +12252,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:23",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -12271,7 +12271,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:49",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -12290,7 +12290,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:51",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -12309,7 +12309,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:40:48",
Duration_Decimal: 0.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -12328,7 +12328,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:59",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -12347,7 +12347,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:01",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12366,7 +12366,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:33",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12385,7 +12385,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:12",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Group Assignment",
@@ -12404,7 +12404,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:43",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12423,7 +12423,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:35",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -12442,7 +12442,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:56:47",
Duration_Decimal: 0.95,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -12461,7 +12461,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:59",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12480,7 +12480,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:15",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -12499,7 +12499,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:27:22",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -12518,7 +12518,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:40",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -12537,7 +12537,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:30",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12556,7 +12556,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:52",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Reading",
@@ -12575,7 +12575,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:36:46",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12594,7 +12594,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:39",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Lecture",
@@ -12613,7 +12613,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:45:13",
Duration_Decimal: 0.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Lecture",
@@ -12632,7 +12632,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:01:07",
Duration_Decimal: 1.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process Lecture",
@@ -12651,7 +12651,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:55:37",
Duration_Decimal: 0.93,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12670,7 +12670,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:34",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12689,7 +12689,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:52:08",
Duration_Decimal: 0.87,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12708,7 +12708,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:47",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12727,7 +12727,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:33:00",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12746,7 +12746,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:21",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12765,7 +12765,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:02",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12784,7 +12784,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:53",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -12803,7 +12803,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:59",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -12822,7 +12822,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:51",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -12841,7 +12841,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:22",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -12860,7 +12860,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:30",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -12879,7 +12879,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:39",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -12898,7 +12898,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:42",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12917,7 +12917,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:41",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -12936,7 +12936,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:54",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12955,7 +12955,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:31",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -12974,7 +12974,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:35:00",
Duration_Decimal: 1.58,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -12993,7 +12993,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:00:44",
Duration_Decimal: 0.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -13012,7 +13012,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:14",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -13031,7 +13031,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:57",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -13050,7 +13050,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:15",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -13069,7 +13069,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:32:31",
Duration_Decimal: 0.54,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -13088,7 +13088,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:35",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -13107,7 +13107,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:43",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -13126,7 +13126,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:41",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -13145,7 +13145,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:32",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -13164,7 +13164,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:46:47",
Duration_Decimal: 0.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -13183,7 +13183,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:33",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -13202,7 +13202,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:27",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13221,7 +13221,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:12",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13240,7 +13240,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:56",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13259,7 +13259,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:05",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13278,7 +13278,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:10",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13297,7 +13297,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:27",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -13316,7 +13316,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:41:14",
Duration_Decimal: 1.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13335,7 +13335,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:53",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13354,7 +13354,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:45:53",
Duration_Decimal: 0.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13373,7 +13373,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:20",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13392,7 +13392,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:36:32",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13411,7 +13411,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:00",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13430,7 +13430,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:08",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13449,7 +13449,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:30:21",
Duration_Decimal: 1.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13468,7 +13468,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:38:52",
Duration_Decimal: 0.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -13487,7 +13487,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:46:04",
Duration_Decimal: 0.77,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -13506,7 +13506,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:02:53",
Duration_Decimal: 1.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -13525,7 +13525,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:21",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -13544,7 +13544,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:02",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -13563,7 +13563,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:49",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -13582,7 +13582,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:46",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -13601,7 +13601,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:50",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -13620,7 +13620,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:21:43",
Duration_Decimal: 0.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -13639,7 +13639,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:27",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -13658,7 +13658,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:54:18",
Duration_Decimal: 1.91,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -13677,7 +13677,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:31",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -13696,7 +13696,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:02",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -13715,7 +13715,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:13",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13734,7 +13734,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:21",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13753,7 +13753,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:43:40",
Duration_Decimal: 0.73,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13772,7 +13772,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:56:24",
Duration_Decimal: 0.94,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13791,7 +13791,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:47:00",
Duration_Decimal: 0.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -13810,7 +13810,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:00:52",
Duration_Decimal: 0.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13829,7 +13829,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:54:31",
Duration_Decimal: 0.91,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13848,7 +13848,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:30",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -13867,7 +13867,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:38",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13886,7 +13886,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:50:32",
Duration_Decimal: 0.84,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -13905,7 +13905,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:15",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13924,7 +13924,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:38:20",
Duration_Decimal: 1.64,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -13943,7 +13943,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:14",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13962,7 +13962,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:51:54",
Duration_Decimal: 0.87,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -13981,7 +13981,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:52",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14000,7 +14000,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:52:00",
Duration_Decimal: 0.87,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14019,7 +14019,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:46:22",
Duration_Decimal: 0.77,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14038,7 +14038,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:27",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14057,7 +14057,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:42",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14076,7 +14076,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:07:01",
Duration_Decimal: 1.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -14095,7 +14095,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:54",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -14114,7 +14114,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:09:57",
Duration_Decimal: 1.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -14133,7 +14133,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:40:26",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -14152,7 +14152,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:36:06",
Duration_Decimal: 0.6,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -14171,7 +14171,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:38:17",
Duration_Decimal: 0.64,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -14190,7 +14190,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:44:12",
Duration_Decimal: 0.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14209,7 +14209,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:45:24",
Duration_Decimal: 0.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14228,7 +14228,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:12",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -14247,7 +14247,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:41:38",
Duration_Decimal: 0.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -14266,7 +14266,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:39",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14285,7 +14285,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:02",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -14304,7 +14304,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:28",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14323,7 +14323,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:17",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14342,7 +14342,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:47",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -14361,7 +14361,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:51",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -14380,7 +14380,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:08",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14399,7 +14399,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:07",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14418,7 +14418,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:08:19",
Duration_Decimal: 1.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -14437,7 +14437,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:54",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14456,7 +14456,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:00:38",
Duration_Decimal: 0.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -14475,7 +14475,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:48",
Duration_Decimal: 0.45,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -14494,7 +14494,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:34:24",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14513,7 +14513,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:59",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14532,7 +14532,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:57",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14551,7 +14551,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:34",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Lecture",
@@ -14570,7 +14570,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:13:33",
Duration_Decimal: 1.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Lecture",
@@ -14589,7 +14589,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:56:26",
Duration_Decimal: 0.94,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -14608,7 +14608,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:46",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Lecture",
@@ -14627,7 +14627,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:42:28",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14646,7 +14646,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:47",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14665,7 +14665,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:32",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14684,7 +14684,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:09",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14703,7 +14703,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:51:00",
Duration_Decimal: 0.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14722,7 +14722,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:15",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14741,7 +14741,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:01:44",
Duration_Decimal: 1.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14760,7 +14760,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:08",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14779,7 +14779,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:47:48",
Duration_Decimal: 0.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14798,7 +14798,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:12",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14817,7 +14817,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:00",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14836,7 +14836,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:16",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14855,7 +14855,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:23",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14874,7 +14874,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:51",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14893,7 +14893,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:44",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14912,7 +14912,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:48:01",
Duration_Decimal: 0.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14931,7 +14931,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:41:40",
Duration_Decimal: 0.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14950,7 +14950,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:15:01",
Duration_Decimal: 1.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14969,7 +14969,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:00",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -14988,7 +14988,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:11",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -15007,7 +15007,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:39",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15026,7 +15026,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:18:10",
Duration_Decimal: 1.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -15045,7 +15045,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:39:16",
Duration_Decimal: 0.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15064,7 +15064,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:12",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15083,7 +15083,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:53",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15102,7 +15102,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:30",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15121,7 +15121,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:55",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -15140,7 +15140,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:06",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15159,7 +15159,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:47",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15178,7 +15178,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:09",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15197,7 +15197,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:19",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15216,7 +15216,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:38",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15235,7 +15235,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:30",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15254,7 +15254,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:42",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15273,7 +15273,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:48:08",
Duration_Decimal: 0.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15292,7 +15292,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:12",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15311,7 +15311,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:53",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15330,7 +15330,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:21",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15349,7 +15349,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:37",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15368,7 +15368,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:17",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15387,7 +15387,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:27",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15406,7 +15406,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:27",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -15425,7 +15425,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:22",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15444,7 +15444,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:32:58",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15463,7 +15463,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:21:28",
Duration_Decimal: 0.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15482,7 +15482,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:06",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15501,7 +15501,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:35",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15520,7 +15520,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:00:07",
Duration_Decimal: 0,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15539,7 +15539,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:10",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15558,7 +15558,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:28:34",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15577,7 +15577,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:47",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15596,7 +15596,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:53",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -15615,7 +15615,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:07",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -15634,7 +15634,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:27",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -15653,7 +15653,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:05",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15672,7 +15672,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:09",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15691,7 +15691,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:06",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15710,7 +15710,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:37:06",
Duration_Decimal: 0.62,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -15729,7 +15729,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:30",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -15748,7 +15748,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:26",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15767,7 +15767,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:00:32",
Duration_Decimal: 0.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis Reading",
@@ -15786,7 +15786,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:52",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Lecture",
@@ -15805,7 +15805,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:46",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Lecture",
@@ -15824,7 +15824,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:00:48",
Duration_Decimal: 1.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Lecture",
@@ -15843,7 +15843,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:01:33",
Duration_Decimal: 1.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -15862,7 +15862,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:28:50",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -15881,7 +15881,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:04",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -15900,7 +15900,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:35:37",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -15919,7 +15919,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:33",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -15938,7 +15938,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:45",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -15957,7 +15957,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:23",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -15976,7 +15976,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:31",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -15995,7 +15995,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:04:51",
Duration_Decimal: 2.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -16014,7 +16014,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:00:09",
Duration_Decimal: 1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -16033,7 +16033,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:30:59",
Duration_Decimal: 1.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -16052,7 +16052,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:29:57",
Duration_Decimal: 1.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -16071,7 +16071,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:55:19",
Duration_Decimal: 0.92,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -16090,7 +16090,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:10:02",
Duration_Decimal: 1.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -16109,7 +16109,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "03:00:21",
Duration_Decimal: 3.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -16128,7 +16128,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:01",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Other",
@@ -16147,7 +16147,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:50:57",
Duration_Decimal: 0.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -16166,7 +16166,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:45",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -16185,7 +16185,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:43:42",
Duration_Decimal: 0.73,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -16204,7 +16204,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:08",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Other",
@@ -16223,7 +16223,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:21",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -16242,7 +16242,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:32:13",
Duration_Decimal: 0.54,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -16261,7 +16261,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "04:15:32",
Duration_Decimal: 4.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -16280,7 +16280,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:18",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -16299,7 +16299,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:00",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -16318,7 +16318,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:34:14",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -16337,7 +16337,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:19",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -16356,7 +16356,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:49",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -16375,7 +16375,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:21",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -16394,7 +16394,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:47:38",
Duration_Decimal: 0.79,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -16413,7 +16413,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:04:39",
Duration_Decimal: 1.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -16432,7 +16432,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:50:00",
Duration_Decimal: 2.83,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -16451,7 +16451,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:00:00",
Duration_Decimal: 1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -16470,7 +16470,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:47",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -16489,7 +16489,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:57",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -16508,7 +16508,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:21",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -16527,7 +16527,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:15",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -16546,7 +16546,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:00:03",
Duration_Decimal: 0,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -16565,7 +16565,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:21:09",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16584,7 +16584,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "03:49:55",
Duration_Decimal: 3.83,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16603,7 +16603,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:38:50",
Duration_Decimal: 1.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16622,7 +16622,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:34:02",
Duration_Decimal: 2.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16641,7 +16641,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:56:54",
Duration_Decimal: 0.95,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16660,7 +16660,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:21:47",
Duration_Decimal: 0.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16679,7 +16679,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:13",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16698,7 +16698,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "05:19:47",
Duration_Decimal: 5.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -16717,7 +16717,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:32:41",
Duration_Decimal: 0.54,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16736,7 +16736,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:37",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16755,7 +16755,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:48:52",
Duration_Decimal: 0.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16774,7 +16774,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:41:23",
Duration_Decimal: 1.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16793,7 +16793,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:15",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16812,7 +16812,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:22",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16831,7 +16831,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:50",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16850,7 +16850,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:41:00",
Duration_Decimal: 0.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16869,7 +16869,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:28:55",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16888,7 +16888,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "03:39:17",
Duration_Decimal: 3.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16907,7 +16907,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:46",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16926,7 +16926,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:08",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16945,7 +16945,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:21:14",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16964,7 +16964,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:28:25",
Duration_Decimal: 1.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -16983,7 +16983,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:28:17",
Duration_Decimal: 2.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17002,7 +17002,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:47:53",
Duration_Decimal: 0.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17021,7 +17021,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:41",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17040,7 +17040,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:19:55",
Duration_Decimal: 2.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -17059,7 +17059,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:12:53",
Duration_Decimal: 1.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17078,7 +17078,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:21",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17097,7 +17097,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:10:16",
Duration_Decimal: 1.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17116,7 +17116,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:30:00",
Duration_Decimal: 1.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17135,7 +17135,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:26",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17154,7 +17154,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:02",
Duration_Decimal: 0.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17173,7 +17173,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:33:51",
Duration_Decimal: 1.56,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17192,7 +17192,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:07:07",
Duration_Decimal: 1.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -17211,7 +17211,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "03:22:19",
Duration_Decimal: 3.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17230,7 +17230,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:39:32",
Duration_Decimal: 0.66,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17249,7 +17249,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:55",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -17268,7 +17268,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:08",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17287,7 +17287,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:48:14",
Duration_Decimal: 1.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17306,7 +17306,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:04",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17325,7 +17325,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:26",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -17344,7 +17344,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:38",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -17363,7 +17363,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:06:20",
Duration_Decimal: 1.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -17382,7 +17382,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:14",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -17401,7 +17401,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:36",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17420,7 +17420,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:43:22",
Duration_Decimal: 0.72,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17439,7 +17439,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:41:17",
Duration_Decimal: 0.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17458,7 +17458,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:50:30",
Duration_Decimal: 0.84,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -17477,7 +17477,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:22",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17496,7 +17496,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:22:10",
Duration_Decimal: 1.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17515,7 +17515,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:44:45",
Duration_Decimal: 2.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17534,7 +17534,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:20:21",
Duration_Decimal: 1.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17553,7 +17553,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:33:02",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17572,7 +17572,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:32",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17591,7 +17591,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:10",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17610,7 +17610,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:18:08",
Duration_Decimal: 1.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17629,7 +17629,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:33:30",
Duration_Decimal: 0.56,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -17648,7 +17648,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:36:25",
Duration_Decimal: 1.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -17667,7 +17667,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:33",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -17686,7 +17686,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:59:20",
Duration_Decimal: 0.99,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -17705,7 +17705,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:02:27",
Duration_Decimal: 1.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17724,7 +17724,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:00:27",
Duration_Decimal: 1.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17743,7 +17743,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:15",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17762,7 +17762,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:21:25",
Duration_Decimal: 0.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17781,7 +17781,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:28:02",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17800,7 +17800,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:42",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17819,7 +17819,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:03",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -17838,7 +17838,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:30:06",
Duration_Decimal: 2.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -17857,7 +17857,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:21:04",
Duration_Decimal: 1.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -17876,7 +17876,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:32",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -17895,7 +17895,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:47",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -17914,7 +17914,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:53",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -17933,7 +17933,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:52",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -17952,7 +17952,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:37:55",
Duration_Decimal: 0.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -17971,7 +17971,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:04",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -17990,7 +17990,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:08",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -18009,7 +18009,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:15",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18028,7 +18028,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:57:52",
Duration_Decimal: 0.96,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -18047,7 +18047,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:00:56",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lecture",
@@ -18066,7 +18066,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:36:26",
Duration_Decimal: 1.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18085,7 +18085,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:01:03",
Duration_Decimal: 1.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -18104,7 +18104,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:31",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -18123,7 +18123,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:34:26",
Duration_Decimal: 1.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -18142,7 +18142,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:58",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18161,7 +18161,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:00",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18180,7 +18180,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:28:38",
Duration_Decimal: 2.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18199,7 +18199,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "03:09:06",
Duration_Decimal: 3.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Lecture",
@@ -18218,7 +18218,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:46:56",
Duration_Decimal: 0.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Lecture",
@@ -18237,7 +18237,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:50",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -18256,7 +18256,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:50:42",
Duration_Decimal: 0.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -18275,7 +18275,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:01:23",
Duration_Decimal: 1.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -18294,7 +18294,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:44",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -18313,7 +18313,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:42:32",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -18332,7 +18332,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:28:07",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -18351,7 +18351,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:45:30",
Duration_Decimal: 1.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -18370,7 +18370,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:00",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -18389,7 +18389,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:55",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -18408,7 +18408,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:58",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18427,7 +18427,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:59:03",
Duration_Decimal: 0.98,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18446,7 +18446,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:22:10",
Duration_Decimal: 2.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18465,7 +18465,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:28",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Lecture",
@@ -18484,7 +18484,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:56:54",
Duration_Decimal: 0.95,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Lecture",
@@ -18503,7 +18503,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:01:50",
Duration_Decimal: 1.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -18522,7 +18522,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:04",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -18541,7 +18541,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:02",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18560,7 +18560,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:12",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -18579,7 +18579,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:53",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18598,7 +18598,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:55",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -18617,7 +18617,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:05:08",
Duration_Decimal: 1.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18636,7 +18636,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:22",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18655,7 +18655,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:05:38",
Duration_Decimal: 2.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -18674,7 +18674,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:55",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18693,7 +18693,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "03:30:20",
Duration_Decimal: 3.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18712,7 +18712,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "03:27:20",
Duration_Decimal: 3.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18731,7 +18731,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:40:52",
Duration_Decimal: 1.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18750,7 +18750,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:10:35",
Duration_Decimal: 1.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18769,7 +18769,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:37:10",
Duration_Decimal: 0.62,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18788,7 +18788,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:37:06",
Duration_Decimal: 2.62,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18807,7 +18807,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:33:45",
Duration_Decimal: 0.56,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18826,7 +18826,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:35",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18845,7 +18845,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:14:32",
Duration_Decimal: 1.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18864,7 +18864,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:35:27",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18883,7 +18883,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:04",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18902,7 +18902,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:18",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18921,7 +18921,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:09:27",
Duration_Decimal: 2.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -18940,7 +18940,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:28:40",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18959,7 +18959,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:51:04",
Duration_Decimal: 0.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18978,7 +18978,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:50",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -18997,7 +18997,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:38:14",
Duration_Decimal: 0.64,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -19016,7 +19016,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:37:48",
Duration_Decimal: 0.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19035,7 +19035,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:00",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -19054,7 +19054,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "04:14:01",
Duration_Decimal: 4.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -19073,7 +19073,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:17",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -19092,7 +19092,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:38",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -19111,7 +19111,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:35:06",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -19130,7 +19130,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:21",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -19149,7 +19149,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:34",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -19168,7 +19168,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:50",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -19187,7 +19187,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:51",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -19206,7 +19206,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:31:09",
Duration_Decimal: 1.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -19225,7 +19225,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:54",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lecture",
@@ -19244,7 +19244,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:44:54",
Duration_Decimal: 0.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lecture",
@@ -19263,7 +19263,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:46:50",
Duration_Decimal: 0.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -19282,7 +19282,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:33:13",
Duration_Decimal: 1.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lecture",
@@ -19301,7 +19301,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:46:05",
Duration_Decimal: 0.77,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lecture",
@@ -19320,7 +19320,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:48:00",
Duration_Decimal: 0.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -19339,7 +19339,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:29",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -19358,7 +19358,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:25",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -19377,7 +19377,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:47:43",
Duration_Decimal: 0.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19396,7 +19396,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:46:03",
Duration_Decimal: 0.77,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -19415,7 +19415,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:44",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19434,7 +19434,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:40:37",
Duration_Decimal: 2.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19453,7 +19453,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:50:50",
Duration_Decimal: 2.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -19472,7 +19472,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:32",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19491,7 +19491,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:56",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -19510,7 +19510,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:11",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19529,7 +19529,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:05:53",
Duration_Decimal: 1.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19548,7 +19548,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:57:55",
Duration_Decimal: 0.97,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19567,7 +19567,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:21:59",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19586,7 +19586,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:44",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19605,7 +19605,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:11",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19624,7 +19624,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:15:30",
Duration_Decimal: 2.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Other",
@@ -19643,7 +19643,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:34:05",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19662,7 +19662,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:18",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Lecture",
@@ -19681,7 +19681,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:43:44",
Duration_Decimal: 0.73,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Lecture",
@@ -19700,7 +19700,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:43:22",
Duration_Decimal: 0.72,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -19719,7 +19719,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:18",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19738,7 +19738,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:48:20",
Duration_Decimal: 0.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19757,7 +19757,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:21",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19776,7 +19776,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:48:58",
Duration_Decimal: 0.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -19795,7 +19795,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:29:40",
Duration_Decimal: 1.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -19814,7 +19814,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:05",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19833,7 +19833,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:31",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19852,7 +19852,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:57",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19871,7 +19871,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:39:46",
Duration_Decimal: 0.66,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19890,7 +19890,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:34:28",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -19909,7 +19909,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:03",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19928,7 +19928,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:10:25",
Duration_Decimal: 1.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -19947,7 +19947,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:11",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19966,7 +19966,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:00:16",
Duration_Decimal: 1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -19985,7 +19985,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:37:54",
Duration_Decimal: 0.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20004,7 +20004,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:29",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20023,7 +20023,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:38",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20042,7 +20042,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:29",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -20061,7 +20061,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:55",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -20080,7 +20080,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:33:13",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -20099,7 +20099,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:42",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -20118,7 +20118,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:03",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20137,7 +20137,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:27",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20156,7 +20156,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:58",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20175,7 +20175,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:47",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20194,7 +20194,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:03",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20213,7 +20213,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:03",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20232,7 +20232,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:34",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20251,7 +20251,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:06",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -20270,7 +20270,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:59:13",
Duration_Decimal: 0.99,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -20289,7 +20289,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:44:00",
Duration_Decimal: 0.73,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -20308,7 +20308,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:54:37",
Duration_Decimal: 0.91,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20327,7 +20327,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:12:18",
Duration_Decimal: 1.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20346,7 +20346,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:44:23",
Duration_Decimal: 2.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -20365,7 +20365,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:56",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20384,7 +20384,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:18",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20403,7 +20403,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:47",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -20422,7 +20422,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:19",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20441,7 +20441,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:27",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -20460,7 +20460,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:01",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20479,7 +20479,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:19:44",
Duration_Decimal: 1.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20498,7 +20498,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:22",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lecture",
@@ -20517,7 +20517,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:40:42",
Duration_Decimal: 1.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20536,7 +20536,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:55",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20555,7 +20555,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:07:56",
Duration_Decimal: 1.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lecture",
@@ -20574,7 +20574,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:03:27",
Duration_Decimal: 1.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lecture",
@@ -20593,7 +20593,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:45:43",
Duration_Decimal: 0.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -20612,7 +20612,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:12",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -20631,7 +20631,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:00",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -20650,7 +20650,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:23",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20669,7 +20669,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:16:52",
Duration_Decimal: 1.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20688,7 +20688,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:29",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20707,7 +20707,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:00:00",
Duration_Decimal: 0,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20726,7 +20726,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "03:30:00",
Duration_Decimal: 3.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20745,7 +20745,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:21:29",
Duration_Decimal: 0.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20764,7 +20764,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:52:20",
Duration_Decimal: 0.87,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20783,7 +20783,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:00:22",
Duration_Decimal: 0.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -20802,7 +20802,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:44:43",
Duration_Decimal: 1.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -20821,7 +20821,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:39",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Other",
@@ -20840,7 +20840,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:46",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Other",
@@ -20859,7 +20859,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:19:19",
Duration_Decimal: 2.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Other",
@@ -20878,7 +20878,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:50:49",
Duration_Decimal: 0.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20897,7 +20897,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:31",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20916,7 +20916,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:40:59",
Duration_Decimal: 0.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -20935,7 +20935,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:01:52",
Duration_Decimal: 1.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -20954,7 +20954,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:42",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Lecture",
@@ -20973,7 +20973,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:37:04",
Duration_Decimal: 0.62,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Lecture",
@@ -20992,7 +20992,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:41:25",
Duration_Decimal: 0.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -21011,7 +21011,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:39",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21030,7 +21030,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:49",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21049,7 +21049,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:21:40",
Duration_Decimal: 0.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21068,7 +21068,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:47:32",
Duration_Decimal: 0.79,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21087,7 +21087,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:23",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21106,7 +21106,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:29:41",
Duration_Decimal: 2.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21125,7 +21125,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:15:34",
Duration_Decimal: 2.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21144,7 +21144,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:01",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21163,7 +21163,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:52",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21182,7 +21182,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:25",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21201,7 +21201,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:00",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21220,7 +21220,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:18:10",
Duration_Decimal: 1.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21239,7 +21239,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:38:42",
Duration_Decimal: 0.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21258,7 +21258,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:07",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21277,7 +21277,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:11:01",
Duration_Decimal: 2.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21296,7 +21296,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:37:37",
Duration_Decimal: 0.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21315,7 +21315,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:20:12",
Duration_Decimal: 1.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21334,7 +21334,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:27:36",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21353,7 +21353,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:43:39",
Duration_Decimal: 0.73,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -21372,7 +21372,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:00",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -21391,7 +21391,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:15",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -21410,7 +21410,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:49:19",
Duration_Decimal: 0.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21429,7 +21429,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:36",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21448,7 +21448,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:25",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21467,7 +21467,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:29",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21486,7 +21486,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:55",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -21505,7 +21505,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:28",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -21524,7 +21524,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:06:40",
Duration_Decimal: 2.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -21543,7 +21543,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:14",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -21562,7 +21562,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:42:49",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -21581,7 +21581,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:06:53",
Duration_Decimal: 1.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -21600,7 +21600,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:52",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -21619,7 +21619,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:52",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21638,7 +21638,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:21:04",
Duration_Decimal: 1.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21657,7 +21657,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:17",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21676,7 +21676,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:36:18",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -21695,7 +21695,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:55",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -21714,7 +21714,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:49:53",
Duration_Decimal: 0.83,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -21733,7 +21733,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:39:31",
Duration_Decimal: 1.66,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lecture",
@@ -21752,7 +21752,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:00",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lecture",
@@ -21771,7 +21771,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:40:18",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -21790,7 +21790,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:27",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21809,7 +21809,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:44:48",
Duration_Decimal: 0.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21828,7 +21828,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:38",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21847,7 +21847,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:37",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lecture",
@@ -21866,7 +21866,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:47:26",
Duration_Decimal: 0.79,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lecture",
@@ -21885,7 +21885,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:38",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21904,7 +21904,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:00:43",
Duration_Decimal: 1.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21923,7 +21923,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:35",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21942,7 +21942,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:46",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -21961,7 +21961,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:34",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21980,7 +21980,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:39",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -21999,7 +21999,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:21",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22018,7 +22018,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:31",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22037,7 +22037,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:44:52",
Duration_Decimal: 1.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22056,7 +22056,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:00:59",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22075,7 +22075,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:46:49",
Duration_Decimal: 2.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22094,7 +22094,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:20",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22113,7 +22113,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:02",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22132,7 +22132,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:23",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22151,7 +22151,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:40:53",
Duration_Decimal: 0.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -22170,7 +22170,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:00:32",
Duration_Decimal: 1.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -22189,7 +22189,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:00",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22208,7 +22208,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:33:00",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22227,7 +22227,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:27",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22246,7 +22246,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:49:32",
Duration_Decimal: 0.83,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22265,7 +22265,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:08:43",
Duration_Decimal: 1.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22284,7 +22284,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:37",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22303,7 +22303,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:10:23",
Duration_Decimal: 2.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Lecture",
@@ -22322,7 +22322,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:40:26",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Lecture",
@@ -22341,7 +22341,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:47:16",
Duration_Decimal: 0.79,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22360,7 +22360,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:42:39",
Duration_Decimal: 1.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -22379,7 +22379,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:00",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22398,7 +22398,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:32:59",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22417,7 +22417,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:00",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22436,7 +22436,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:42:42",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22455,7 +22455,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:50:00",
Duration_Decimal: 0.83,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -22474,7 +22474,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:05",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22493,7 +22493,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:16",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22512,7 +22512,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:45:00",
Duration_Decimal: 0.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22531,7 +22531,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:15",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22550,7 +22550,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:32",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -22569,7 +22569,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:34",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -22588,7 +22588,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:57",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -22607,7 +22607,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:50",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -22626,7 +22626,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:25",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -22645,7 +22645,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:18",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -22664,7 +22664,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:40",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -22683,7 +22683,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:09",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -22702,7 +22702,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:26",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -22721,7 +22721,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:21:09",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -22740,7 +22740,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:21",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22759,7 +22759,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:09",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22778,7 +22778,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:52",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22797,7 +22797,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:49:44",
Duration_Decimal: 0.83,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22816,7 +22816,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:31",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22835,7 +22835,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:45",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22854,7 +22854,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:33",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22873,7 +22873,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:16",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22892,7 +22892,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:48:13",
Duration_Decimal: 0.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22911,7 +22911,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:36:38",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -22930,7 +22930,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:12",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22949,7 +22949,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:58:13",
Duration_Decimal: 0.97,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -22968,7 +22968,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:46:47",
Duration_Decimal: 0.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -22987,7 +22987,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:51",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23006,7 +23006,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:45:20",
Duration_Decimal: 0.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23025,7 +23025,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:57:04",
Duration_Decimal: 0.95,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23044,7 +23044,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:49",
Duration_Decimal: 0.45,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23063,7 +23063,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:40",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -23082,7 +23082,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:04",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -23101,7 +23101,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:43",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -23120,7 +23120,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:07",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -23139,7 +23139,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:27:52",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -23158,7 +23158,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:27:20",
Duration_Decimal: 1.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -23177,7 +23177,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:56:07",
Duration_Decimal: 1.94,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23196,7 +23196,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:48:47",
Duration_Decimal: 0.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23215,7 +23215,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:14",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23234,7 +23234,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:29",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23253,7 +23253,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:27:40",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -23272,7 +23272,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:05",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -23291,7 +23291,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:17",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -23310,7 +23310,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:15",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -23329,7 +23329,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:44",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23348,7 +23348,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:36:34",
Duration_Decimal: 1.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -23367,7 +23367,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:43:40",
Duration_Decimal: 1.73,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lecture",
@@ -23386,7 +23386,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:34:58",
Duration_Decimal: 0.58,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lecture",
@@ -23405,7 +23405,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:53:38",
Duration_Decimal: 0.89,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -23424,7 +23424,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:49:25",
Duration_Decimal: 0.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lecture",
@@ -23443,7 +23443,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:28:05",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lecture",
@@ -23462,7 +23462,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:01:34",
Duration_Decimal: 1.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -23481,7 +23481,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:32:03",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -23500,7 +23500,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:03",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -23519,7 +23519,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:56",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -23538,7 +23538,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:01",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -23557,7 +23557,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:31",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23576,7 +23576,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:40:09",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23595,7 +23595,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:49",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23614,7 +23614,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:46",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23633,7 +23633,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:06:32",
Duration_Decimal: 2.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23652,7 +23652,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:23:21",
Duration_Decimal: 2.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -23671,7 +23671,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:51:04",
Duration_Decimal: 1.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23690,7 +23690,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:34:05",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23709,7 +23709,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:01:00",
Duration_Decimal: 1.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23728,7 +23728,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:44:09",
Duration_Decimal: 1.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Lecture",
@@ -23747,7 +23747,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:59:28",
Duration_Decimal: 1.99,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -23766,7 +23766,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:40:26",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -23785,7 +23785,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:45:00",
Duration_Decimal: 0.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -23804,7 +23804,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:27",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -23823,7 +23823,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:38",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -23842,7 +23842,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:30",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23861,7 +23861,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:37:23",
Duration_Decimal: 2.62,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23880,7 +23880,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:47:09",
Duration_Decimal: 2.79,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23899,7 +23899,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:51",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -23918,7 +23918,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:31",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23937,7 +23937,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:52",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23956,7 +23956,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:03",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -23975,7 +23975,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:12",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -23994,7 +23994,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:24",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Other",
@@ -24013,7 +24013,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:16",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -24032,7 +24032,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:21",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -24051,7 +24051,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:48",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -24070,7 +24070,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:51:17",
Duration_Decimal: 0.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -24089,7 +24089,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:01",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -24108,7 +24108,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:04",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -24127,7 +24127,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:48",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -24146,7 +24146,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:09",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -24165,7 +24165,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:56",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -24184,7 +24184,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:41:27",
Duration_Decimal: 1.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -24203,7 +24203,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:44:40",
Duration_Decimal: 2.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -24222,7 +24222,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:26",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -24241,7 +24241,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:00",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -24260,7 +24260,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:22",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -24279,7 +24279,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:42:41",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lecture",
@@ -24298,7 +24298,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:51:27",
Duration_Decimal: 0.86,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -24317,7 +24317,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:00:00",
Duration_Decimal: 1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lab",
@@ -24336,7 +24336,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:50:36",
Duration_Decimal: 0.84,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS-Lecture",
@@ -24355,7 +24355,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:42:35",
Duration_Decimal: 1.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -24374,7 +24374,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:39:00",
Duration_Decimal: 1.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -24393,7 +24393,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:34",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Reading",
@@ -24412,7 +24412,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:30",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -24431,7 +24431,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:48",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -24450,7 +24450,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:33",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -24469,7 +24469,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:04:21",
Duration_Decimal: 1.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -24488,7 +24488,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:00:40",
Duration_Decimal: 2.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -24507,7 +24507,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:59:22",
Duration_Decimal: 2.99,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -24526,7 +24526,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:10:24",
Duration_Decimal: 2.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Series",
@@ -24545,7 +24545,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:20:37",
Duration_Decimal: 1.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution Lecture",
@@ -24564,7 +24564,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:45:56",
Duration_Decimal: 1.77,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -24583,7 +24583,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:50:17",
Duration_Decimal: 1.84,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -24602,7 +24602,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:30:15",
Duration_Decimal: 1.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -24621,7 +24621,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:42:39",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -24640,7 +24640,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:55:25",
Duration_Decimal: 0.92,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -24659,7 +24659,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:56:13",
Duration_Decimal: 0.94,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -24678,7 +24678,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:53:50",
Duration_Decimal: 0.9,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -24697,7 +24697,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:07:35",
Duration_Decimal: 1.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -24716,7 +24716,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:34:35",
Duration_Decimal: 0.58,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -24735,7 +24735,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:47",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -24754,7 +24754,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:21:11",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -24773,7 +24773,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:57",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -24792,7 +24792,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:33",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -24811,7 +24811,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:31",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -24830,7 +24830,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:01:31",
Duration_Decimal: 1.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -24849,7 +24849,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:34",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -24868,7 +24868,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:09",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -24887,7 +24887,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:53:00",
Duration_Decimal: 1.88,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -24906,7 +24906,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "03:20:20",
Duration_Decimal: 3.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -24925,7 +24925,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:33:54",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -24944,7 +24944,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:20",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -24963,7 +24963,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:57:04",
Duration_Decimal: 0.95,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -24982,7 +24982,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:25",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -25001,7 +25001,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "03:00:00",
Duration_Decimal: 3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -25020,7 +25020,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "03:06:00",
Duration_Decimal: 3.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -25039,7 +25039,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:55:05",
Duration_Decimal: 0.92,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -25058,7 +25058,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:18:33",
Duration_Decimal: 2.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -25077,7 +25077,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "03:11:54",
Duration_Decimal: 3.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Other",
@@ -25096,7 +25096,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "04:05:00",
Duration_Decimal: 4.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -25115,7 +25115,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:00:00",
Duration_Decimal: 1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -25134,7 +25134,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:46",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -25153,7 +25153,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:45:53",
Duration_Decimal: 0.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -25172,7 +25172,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:43",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -25191,7 +25191,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:43",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -25210,7 +25210,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:26",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -25229,7 +25229,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:44:43",
Duration_Decimal: 0.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -25248,7 +25248,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:30:00",
Duration_Decimal: 1.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -25267,7 +25267,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:51",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -25286,7 +25286,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:38",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -25305,7 +25305,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:53",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -25324,7 +25324,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:44",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -25343,7 +25343,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:55:27",
Duration_Decimal: 0.92,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -25362,7 +25362,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:06",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -25381,7 +25381,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:58",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -25400,7 +25400,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:43:41",
Duration_Decimal: 0.73,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -25419,7 +25419,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:37:28",
Duration_Decimal: 0.62,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -25438,7 +25438,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:49:50",
Duration_Decimal: 0.83,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -25457,7 +25457,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:10",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -25476,7 +25476,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:14:22",
Duration_Decimal: 2.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -25495,7 +25495,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:42",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -25514,7 +25514,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:17:27",
Duration_Decimal: 1.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -25533,7 +25533,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:14",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -25552,7 +25552,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:18",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -25571,7 +25571,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:28:55",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -25590,7 +25590,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:20",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -25609,7 +25609,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:32",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -25628,7 +25628,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:10",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -25647,7 +25647,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:08",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -25666,7 +25666,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:58",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -25685,7 +25685,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:00:11",
Duration_Decimal: 0,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -25704,7 +25704,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:14",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -25723,7 +25723,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:23",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -25742,7 +25742,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:46",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -25761,7 +25761,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:20",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -25780,7 +25780,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:26",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -25799,7 +25799,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:57",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -25818,7 +25818,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:29:16",
Duration_Decimal: 1.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -25837,7 +25837,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:58:06",
Duration_Decimal: 0.97,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -25856,7 +25856,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:39",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -25875,7 +25875,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:54",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -25894,7 +25894,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:21:46",
Duration_Decimal: 0.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -25913,7 +25913,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:57",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -25932,7 +25932,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:12:21",
Duration_Decimal: 1.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -25951,7 +25951,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:03",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -25970,7 +25970,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:44",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -25989,7 +25989,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:32:34",
Duration_Decimal: 0.54,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -26008,7 +26008,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:35",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -26027,7 +26027,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:03",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -26046,7 +26046,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:34",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -26065,7 +26065,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:52",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -26084,7 +26084,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:38:32",
Duration_Decimal: 0.64,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -26103,7 +26103,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:47",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -26122,7 +26122,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:09",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -26141,7 +26141,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:13",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -26160,7 +26160,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:19",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -26179,7 +26179,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:07",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -26198,7 +26198,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:06:50",
Duration_Decimal: 1.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -26217,7 +26217,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:54",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -26236,7 +26236,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:17",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -26255,7 +26255,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:05",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -26274,7 +26274,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:42",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -26293,7 +26293,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:53:21",
Duration_Decimal: 2.89,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -26312,7 +26312,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:37",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -26331,7 +26331,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:14:44",
Duration_Decimal: 2.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -26350,7 +26350,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:11",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -26369,7 +26369,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:02",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -26388,7 +26388,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:27:39",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -26407,7 +26407,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:50",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -26426,7 +26426,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:25",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -26445,7 +26445,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:25",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -26464,7 +26464,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:27:20",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -26483,7 +26483,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:27",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -26502,7 +26502,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "03:13:45",
Duration_Decimal: 3.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -26521,7 +26521,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:57:00",
Duration_Decimal: 0.95,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -26540,7 +26540,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:28:17",
Duration_Decimal: 2.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -26559,7 +26559,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:43",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "",
@@ -26578,7 +26578,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:49",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -26597,7 +26597,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:44:32",
Duration_Decimal: 0.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -26616,7 +26616,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:22",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -26635,7 +26635,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:11",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -26654,7 +26654,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:56",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -26673,7 +26673,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:08:31",
Duration_Decimal: 2.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lecture",
@@ -26692,7 +26692,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:37:57",
Duration_Decimal: 1.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lecture",
@@ -26711,7 +26711,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:00:00",
Duration_Decimal: 2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -26730,7 +26730,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:07:00",
Duration_Decimal: 1.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -26749,7 +26749,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:10",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -26768,7 +26768,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:12",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -26787,7 +26787,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:21",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -26806,7 +26806,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:06",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -26825,7 +26825,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:07",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -26844,7 +26844,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:30",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -26863,7 +26863,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:57",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -26882,7 +26882,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:26",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -26901,7 +26901,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:20",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -26920,7 +26920,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:04",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -26939,7 +26939,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:25",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Interview Portfolio",
@@ -26958,7 +26958,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:37",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Other",
@@ -26977,7 +26977,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:38",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -26996,7 +26996,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:33:11",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Lecture",
@@ -27015,7 +27015,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:00:14",
Duration_Decimal: 0,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Lecture",
@@ -27034,7 +27034,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:47:12",
Duration_Decimal: 1.79,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -27053,7 +27053,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:15",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -27072,7 +27072,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:15",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Other",
@@ -27091,7 +27091,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:08",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -27110,7 +27110,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:51:00",
Duration_Decimal: 0.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -27129,7 +27129,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:30",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -27148,7 +27148,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:41:06",
Duration_Decimal: 0.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Other",
@@ -27167,7 +27167,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:52:26",
Duration_Decimal: 1.87,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -27186,7 +27186,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:28",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -27205,7 +27205,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:07",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -27224,7 +27224,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:40",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -27243,7 +27243,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:48",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE Lecture",
@@ -27262,7 +27262,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:39:15",
Duration_Decimal: 1.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -27281,7 +27281,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:28:08",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -27300,7 +27300,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:38",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -27319,7 +27319,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:33",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -27338,7 +27338,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:53",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -27357,7 +27357,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:43:47",
Duration_Decimal: 0.73,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -27376,7 +27376,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:51",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -27395,7 +27395,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:33:41",
Duration_Decimal: 0.56,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -27414,7 +27414,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:37:57",
Duration_Decimal: 0.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -27433,7 +27433,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:24",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -27452,7 +27452,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:49",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -27471,7 +27471,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:01:22",
Duration_Decimal: 1.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -27490,7 +27490,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:38:59",
Duration_Decimal: 0.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -27509,7 +27509,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:30",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -27528,7 +27528,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:39:00",
Duration_Decimal: 0.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -27547,7 +27547,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:12",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -27566,7 +27566,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:51:08",
Duration_Decimal: 0.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -27585,7 +27585,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:30:26",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -27604,7 +27604,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:36:15",
Duration_Decimal: 0.6,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -27623,7 +27623,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:22",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -27642,7 +27642,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:15",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -27661,7 +27661,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:40:10",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -27680,7 +27680,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:37:51",
Duration_Decimal: 1.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -27699,7 +27699,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:27:40",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -27718,7 +27718,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "06:48:02",
Duration_Decimal: 6.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -27737,7 +27737,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:18",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -27756,7 +27756,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:06",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -27775,7 +27775,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:00",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -27794,7 +27794,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:21",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -27813,7 +27813,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:45:12",
Duration_Decimal: 0.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -27832,7 +27832,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:16:47",
Duration_Decimal: 1.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -27851,7 +27851,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:33",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -27870,7 +27870,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:35",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -27889,7 +27889,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:05",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -27908,7 +27908,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:06",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -27927,7 +27927,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:12",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -27946,7 +27946,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:53",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -27965,7 +27965,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:25",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -27984,7 +27984,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "03:35:49",
Duration_Decimal: 3.6,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -28003,7 +28003,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:52:00",
Duration_Decimal: 2.87,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -28022,7 +28022,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:18",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -28041,7 +28041,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:21",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -28060,7 +28060,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:51:12",
Duration_Decimal: 1.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lecture",
@@ -28079,7 +28079,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:01:04",
Duration_Decimal: 1.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -28098,7 +28098,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:47",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -28117,7 +28117,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:05",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -28136,7 +28136,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:37",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -28155,7 +28155,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:33",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -28174,7 +28174,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:40",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -28193,7 +28193,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:18",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -28212,7 +28212,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:33",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -28231,7 +28231,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:02",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -28250,7 +28250,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:49",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -28269,7 +28269,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:29",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -28288,7 +28288,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:27",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -28307,7 +28307,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:18:41",
Duration_Decimal: 2.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -28326,7 +28326,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:53:43",
Duration_Decimal: 1.9,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -28345,7 +28345,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:29",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -28364,7 +28364,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:11:42",
Duration_Decimal: 1.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -28383,7 +28383,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:48",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -28402,7 +28402,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:42",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -28421,7 +28421,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:41:29",
Duration_Decimal: 0.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -28440,7 +28440,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:34",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -28459,7 +28459,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:14",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -28478,7 +28478,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:54:47",
Duration_Decimal: 0.91,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -28497,7 +28497,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:53",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -28516,7 +28516,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:13",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -28535,7 +28535,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:16",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -28554,7 +28554,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:56",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -28573,7 +28573,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:56",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -28592,7 +28592,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:14",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -28611,7 +28611,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:05",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -28630,7 +28630,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:17",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -28649,7 +28649,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:36",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -28668,7 +28668,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:52",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -28687,7 +28687,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:34",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -28706,7 +28706,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:04",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -28725,7 +28725,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:06",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -28744,7 +28744,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:08",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -28763,7 +28763,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:33",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE Lecture",
@@ -28782,7 +28782,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:48:58",
Duration_Decimal: 1.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -28801,7 +28801,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:03",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -28820,7 +28820,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:00",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -28839,7 +28839,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:43",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -28858,7 +28858,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:30",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -28877,7 +28877,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:21:04",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -28896,7 +28896,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:12",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -28915,7 +28915,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:55",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -28934,7 +28934,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:11",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -28953,7 +28953,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:11",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -28972,7 +28972,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:49:18",
Duration_Decimal: 0.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -28991,7 +28991,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:44",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -29010,7 +29010,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:34",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -29029,7 +29029,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:15",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -29048,7 +29048,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:50",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -29067,7 +29067,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:09",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -29086,7 +29086,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:54",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -29105,7 +29105,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:27",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -29124,7 +29124,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:57",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -29143,7 +29143,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:00",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -29162,7 +29162,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:53",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -29181,7 +29181,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:56",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -29200,7 +29200,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:42",
Duration_Decimal: 0.45,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -29219,7 +29219,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:39:07",
Duration_Decimal: 0.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -29238,7 +29238,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:00",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -29257,7 +29257,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:51:24",
Duration_Decimal: 0.86,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -29276,7 +29276,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:20",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -29295,7 +29295,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:56",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29314,7 +29314,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:59:52",
Duration_Decimal: 1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29333,7 +29333,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:43",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29352,7 +29352,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:02:08",
Duration_Decimal: 1.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29371,7 +29371,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:37",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29390,7 +29390,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:35",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29409,7 +29409,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:44:33",
Duration_Decimal: 0.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29428,7 +29428,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:37",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29447,7 +29447,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:35",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29466,7 +29466,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:32:32",
Duration_Decimal: 0.54,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29485,7 +29485,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:56",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29504,7 +29504,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:39:56",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -29523,7 +29523,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:48",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -29542,7 +29542,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:38",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29561,7 +29561,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:11",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29580,7 +29580,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:39",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29599,7 +29599,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:36:34",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Prep",
@@ -29618,7 +29618,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:08",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29637,7 +29637,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:21:26",
Duration_Decimal: 2.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29656,7 +29656,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:28:29",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29675,7 +29675,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:34",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29694,7 +29694,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:25:06",
Duration_Decimal: 1.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29713,7 +29713,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:43",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29732,7 +29732,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:01:25",
Duration_Decimal: 2.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -29751,7 +29751,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:28",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29770,7 +29770,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:39",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -29789,7 +29789,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:11",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -29808,7 +29808,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:44",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -29827,7 +29827,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:50:29",
Duration_Decimal: 0.84,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29846,7 +29846,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "02:04:08",
Duration_Decimal: 2.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -29865,7 +29865,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:57",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lecture",
@@ -29884,7 +29884,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:55:06",
Duration_Decimal: 0.92,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lecture",
@@ -29903,7 +29903,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:00:21",
Duration_Decimal: 1.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -29922,7 +29922,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:40",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -29941,7 +29941,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:58:39",
Duration_Decimal: 0.98,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -29960,7 +29960,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:20",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Other",
@@ -29979,7 +29979,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:45:36",
Duration_Decimal: 0.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Other",
@@ -29998,7 +29998,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:07",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Other",
@@ -30017,7 +30017,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:44",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -30036,7 +30036,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:31:16",
Duration_Decimal: 1.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Other",
@@ -30055,7 +30055,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:22",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Other",
@@ -30074,7 +30074,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:42",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -30093,7 +30093,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:02:23",
Duration_Decimal: 1.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -30112,7 +30112,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:10:00",
Duration_Decimal: 1.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -30131,7 +30131,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:03:06",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -30150,7 +30150,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:57",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -30169,7 +30169,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:09",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -30188,7 +30188,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:52:46",
Duration_Decimal: 0.88,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Lecture",
@@ -30207,7 +30207,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:39:29",
Duration_Decimal: 1.66,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -30226,7 +30226,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:27:18",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -30245,7 +30245,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:54",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -30264,7 +30264,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:51:46",
Duration_Decimal: 0.86,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -30283,7 +30283,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:20",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -30302,7 +30302,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:24:47",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -30321,7 +30321,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:32:49",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -30340,7 +30340,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:39",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE Workshop",
@@ -30359,7 +30359,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:17:09",
Duration_Decimal: 1.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -30378,7 +30378,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:09",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -30397,7 +30397,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:50",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -30416,7 +30416,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:35:36",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -30435,7 +30435,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:07",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -30454,7 +30454,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:25",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -30473,7 +30473,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:39:39",
Duration_Decimal: 0.66,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -30492,7 +30492,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:19",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -30511,7 +30511,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:46",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -30530,7 +30530,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:18",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE Lecture",
@@ -30549,7 +30549,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:42:25",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE Lecture",
@@ -30568,7 +30568,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:48:56",
Duration_Decimal: 0.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Reading",
@@ -30587,7 +30587,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:11:00",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -30606,7 +30606,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:09",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -30625,7 +30625,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:39:40",
Duration_Decimal: 0.66,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -30644,7 +30644,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:52",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -30663,7 +30663,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:07:32",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -30682,7 +30682,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:22:00",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -30701,7 +30701,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:03:18",
Duration_Decimal: 1.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -30720,7 +30720,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:29",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -30739,7 +30739,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:33",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -30758,7 +30758,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:28",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -30777,7 +30777,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:39",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -30796,7 +30796,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:25:08",
Duration_Decimal: 1.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -30815,7 +30815,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:12:57",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -30834,7 +30834,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:30",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -30853,7 +30853,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:36",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -30872,7 +30872,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:42",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -30891,7 +30891,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:25:32",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -30910,7 +30910,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:09",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -30929,7 +30929,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:32:27",
Duration_Decimal: 0.54,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -30948,7 +30948,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:26:15",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -30967,7 +30967,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:19:56",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -30986,7 +30986,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:58:53",
Duration_Decimal: 0.98,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -31005,7 +31005,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "03:54:40",
Duration_Decimal: 3.91,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -31024,7 +31024,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:10:52",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -31043,7 +31043,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:52",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -31062,7 +31062,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:15:31",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -31081,7 +31081,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:13:49",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -31100,7 +31100,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:31:00",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -31119,7 +31119,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:28",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -31138,7 +31138,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:26",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -31157,7 +31157,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:23:44",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -31176,7 +31176,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:01",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Case",
@@ -31195,7 +31195,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:16:50",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -31214,7 +31214,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:46",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -31233,7 +31233,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:18",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -31252,7 +31252,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:14:34",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -31271,7 +31271,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:22",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -31290,7 +31290,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:26:14",
Duration_Decimal: 1.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -31309,7 +31309,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "03:03:24",
Duration_Decimal: 3.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -31328,7 +31328,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "03:27:41",
Duration_Decimal: 3.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lab",
@@ -31347,7 +31347,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "03:51:25",
Duration_Decimal: 3.86,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lecture",
@@ -31366,7 +31366,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:43:25",
Duration_Decimal: 0.72,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -31385,7 +31385,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:01:05",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -31404,7 +31404,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:07",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Lecture",
@@ -31423,7 +31423,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "01:26:26",
Duration_Decimal: 1.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -31442,7 +31442,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:04:34",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -31461,7 +31461,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:36",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -31480,7 +31480,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:27:52",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -31499,7 +31499,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:17:20",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -31518,7 +31518,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:08:54",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -31537,7 +31537,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:58",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -31556,7 +31556,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:18:28",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -31575,7 +31575,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:20:52",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "PMP-Assignments",
@@ -31594,7 +31594,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:09:08",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -31613,7 +31613,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:06:21",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -31632,7 +31632,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:34",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "RE-Essay",
@@ -31651,7 +31651,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:29:04",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT-Prep",
@@ -31670,7 +31670,7 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:02:32",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -31689,6 +31689,6 @@ export const clockifyDataSet1 = [
"Duration (h)": "00:05:11",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
-]
\ No newline at end of file
+]
diff --git a/src/data/clockify_data2.js b/src/data/clockify_data2.js
index 3062dcb..77f5c97 100644
--- a/src/data/clockify_data2.js
+++ b/src/data/clockify_data2.js
@@ -16,7 +16,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:36:14",
Duration_Decimal: 2.6,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -35,7 +35,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:29",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -54,7 +54,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:46:03",
Duration_Decimal: 0.77,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -73,7 +73,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:44",
Duration_Decimal: 0.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -92,7 +92,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:54",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -111,7 +111,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:12:48",
Duration_Decimal: 1.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -130,7 +130,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:47:48",
Duration_Decimal: 1.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -149,7 +149,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:46:48",
Duration_Decimal: 0.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -168,7 +168,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:33",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -187,7 +187,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:21:07",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -206,7 +206,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:06",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -225,7 +225,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:04",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -244,7 +244,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:15",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -263,7 +263,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:44:41",
Duration_Decimal: 0.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -282,7 +282,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:09",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -301,7 +301,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:53",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -320,7 +320,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:34:13",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -339,7 +339,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:05",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -358,7 +358,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:47:37",
Duration_Decimal: 0.79,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -377,7 +377,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:23",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -396,7 +396,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:34:53",
Duration_Decimal: 0.58,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -415,7 +415,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:22:22",
Duration_Decimal: 1.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -434,7 +434,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:14",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -453,7 +453,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:59",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -472,7 +472,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:21",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -491,7 +491,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:41:46",
Duration_Decimal: 0.7,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -510,7 +510,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:51",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -529,7 +529,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:37:56",
Duration_Decimal: 0.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -548,7 +548,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:29",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -567,7 +567,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:20",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -586,7 +586,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:10:24",
Duration_Decimal: 2.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -605,7 +605,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:46:01",
Duration_Decimal: 0.77,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -624,7 +624,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:27:06",
Duration_Decimal: 0.45,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -643,7 +643,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:18",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -662,7 +662,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:20",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -681,7 +681,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:05",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -700,7 +700,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:12",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -719,7 +719,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:37:05",
Duration_Decimal: 0.62,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -738,7 +738,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:51",
Duration_Decimal: 0.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -757,7 +757,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:36:41",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -776,7 +776,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:35:35",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -795,7 +795,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:13",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -814,7 +814,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:55",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -833,7 +833,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:20:06",
Duration_Decimal: 1.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -852,7 +852,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:58",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -871,7 +871,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:20",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -890,7 +890,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:41:35",
Duration_Decimal: 0.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -909,7 +909,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:36",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -928,7 +928,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:37",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -947,7 +947,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:28",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -966,7 +966,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:44:24",
Duration_Decimal: 0.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -985,7 +985,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:21",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -1004,7 +1004,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:00",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1023,7 +1023,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:33",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1042,7 +1042,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:55",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1061,7 +1061,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:46",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -1080,7 +1080,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:45",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1099,7 +1099,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:37",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1118,7 +1118,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:44:25",
Duration_Decimal: 0.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1137,7 +1137,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:09",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1156,7 +1156,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:06",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1175,7 +1175,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:47",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1194,7 +1194,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:48",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1213,7 +1213,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:18",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1232,7 +1232,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:00:12",
Duration_Decimal: 1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1251,7 +1251,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:25",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -1270,7 +1270,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:39",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -1289,7 +1289,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:05",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -1308,7 +1308,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:12",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1327,7 +1327,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:47",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1346,7 +1346,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:11:00",
Duration_Decimal: 1.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1365,7 +1365,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:55:43",
Duration_Decimal: 0.93,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1384,7 +1384,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:51",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1403,7 +1403,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:45",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1422,7 +1422,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:54",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1441,7 +1441,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:32:44",
Duration_Decimal: 1.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1460,7 +1460,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:11",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1479,7 +1479,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:47:15",
Duration_Decimal: 0.79,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1498,7 +1498,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:05",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1517,7 +1517,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:28:21",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1536,7 +1536,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:07",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1555,7 +1555,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:57",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1574,7 +1574,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:49:47",
Duration_Decimal: 1.83,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1593,7 +1593,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:36:50",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1612,7 +1612,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:47:38",
Duration_Decimal: 0.79,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1631,7 +1631,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:35",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1650,7 +1650,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:55:26",
Duration_Decimal: 0.92,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1669,7 +1669,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:46",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1688,7 +1688,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:04",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1707,7 +1707,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:37:41",
Duration_Decimal: 0.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1726,7 +1726,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:02:25",
Duration_Decimal: 1.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1745,7 +1745,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:59:01",
Duration_Decimal: 0.98,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1764,7 +1764,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:37",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1783,7 +1783,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:41",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1802,7 +1802,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:09",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1821,7 +1821,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:59",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1840,7 +1840,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:47",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1859,7 +1859,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:01",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1878,7 +1878,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:27:44",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1897,7 +1897,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:27:05",
Duration_Decimal: 0.45,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1916,7 +1916,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:00:21",
Duration_Decimal: 0.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1935,7 +1935,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:51",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1954,7 +1954,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:23:26",
Duration_Decimal: 1.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -1973,7 +1973,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:31",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -1992,7 +1992,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:47",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -2011,7 +2011,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:47:17",
Duration_Decimal: 0.79,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -2030,7 +2030,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:36",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -2049,7 +2049,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:33:37",
Duration_Decimal: 0.56,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -2068,7 +2068,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:40:05",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -2087,7 +2087,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:56:00",
Duration_Decimal: 0.93,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -2106,7 +2106,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:21:01",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -2125,7 +2125,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:38:51",
Duration_Decimal: 0.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -2144,7 +2144,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:52",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2163,7 +2163,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:17",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -2182,7 +2182,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:33",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -2201,7 +2201,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:36",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -2220,7 +2220,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:32",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2239,7 +2239,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:13:48",
Duration_Decimal: 1.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2258,7 +2258,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:58",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -2277,7 +2277,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:54",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -2296,7 +2296,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:36:36",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2315,7 +2315,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:45:44",
Duration_Decimal: 0.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2334,7 +2334,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:00",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2353,7 +2353,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:33",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -2372,7 +2372,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:00:49",
Duration_Decimal: 2.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2391,7 +2391,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:14",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2410,7 +2410,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:57",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2429,7 +2429,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:49",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2448,7 +2448,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:29",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2467,7 +2467,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:13",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2486,7 +2486,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:23",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2505,7 +2505,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:59",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2524,7 +2524,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:34:25",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2543,7 +2543,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:05",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2562,7 +2562,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:55",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2581,7 +2581,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:45",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2600,7 +2600,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:14:30",
Duration_Decimal: 1.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2619,7 +2619,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:39",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2638,7 +2638,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:43",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -2657,7 +2657,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:28",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -2676,7 +2676,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:27",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2695,7 +2695,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:59:52",
Duration_Decimal: 1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2714,7 +2714,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:48",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2733,7 +2733,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:10",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2752,7 +2752,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:04",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2771,7 +2771,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:31",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2790,7 +2790,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:43",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2809,7 +2809,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:56",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2828,7 +2828,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:32",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2847,7 +2847,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:38",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2866,7 +2866,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:27",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -2885,7 +2885,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:00:44",
Duration_Decimal: 0.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -2904,7 +2904,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:24",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2923,7 +2923,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:00:35",
Duration_Decimal: 2.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2942,7 +2942,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:27:34",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2961,7 +2961,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:26:11",
Duration_Decimal: 1.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2980,7 +2980,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:01:14",
Duration_Decimal: 1.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -2999,7 +2999,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:37",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -3018,7 +3018,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:33",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -3037,7 +3037,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:35",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -3056,7 +3056,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:54:38",
Duration_Decimal: 0.91,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3075,7 +3075,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:35",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3094,7 +3094,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:07",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3113,7 +3113,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:39:34",
Duration_Decimal: 0.66,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -3132,7 +3132,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:38",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -3151,7 +3151,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:32",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -3170,7 +3170,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:40:44",
Duration_Decimal: 0.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -3189,7 +3189,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:43:22",
Duration_Decimal: 0.72,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -3208,7 +3208,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:44",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -3227,7 +3227,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:28:49",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -3246,7 +3246,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:19",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -3265,7 +3265,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:27",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3284,7 +3284,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:31",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3303,7 +3303,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:44",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3322,7 +3322,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:39",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3341,7 +3341,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:11",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3360,7 +3360,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:53",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3379,7 +3379,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:23",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3398,7 +3398,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:43",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3417,7 +3417,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:48:02",
Duration_Decimal: 0.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3436,7 +3436,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:45",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3455,7 +3455,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:17",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -3474,7 +3474,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:13:36",
Duration_Decimal: 2.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -3493,7 +3493,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:42:07",
Duration_Decimal: 0.7,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -3512,7 +3512,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:52:20",
Duration_Decimal: 0.87,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -3531,7 +3531,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:21:34",
Duration_Decimal: 1.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -3550,7 +3550,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:40",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3569,7 +3569,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:40:20",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3588,7 +3588,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:01:11",
Duration_Decimal: 1.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3607,7 +3607,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:53:13",
Duration_Decimal: 0.89,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3626,7 +3626,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:25",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3645,7 +3645,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:58:37",
Duration_Decimal: 0.98,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3664,7 +3664,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:41",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3683,7 +3683,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:49",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3702,7 +3702,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:16",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3721,7 +3721,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:39",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3740,7 +3740,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:35",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3759,7 +3759,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:28",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -3778,7 +3778,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:00",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3797,7 +3797,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:52",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3816,7 +3816,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:23",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -3835,7 +3835,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:36",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -3854,7 +3854,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:14:21",
Duration_Decimal: 1.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -3873,7 +3873,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:56",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3892,7 +3892,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:19",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3911,7 +3911,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:02:33",
Duration_Decimal: 1.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3930,7 +3930,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:00:38",
Duration_Decimal: 1.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3949,7 +3949,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:10:46",
Duration_Decimal: 1.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3968,7 +3968,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:47",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -3987,7 +3987,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:34:42",
Duration_Decimal: 0.58,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4006,7 +4006,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:07:09",
Duration_Decimal: 1.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4025,7 +4025,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:56:06",
Duration_Decimal: 0.94,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4044,7 +4044,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:34:11",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4063,7 +4063,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:01:08",
Duration_Decimal: 1.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4082,7 +4082,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:13:21",
Duration_Decimal: 1.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4101,7 +4101,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:34",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4120,7 +4120,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:21:15",
Duration_Decimal: 1.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4139,7 +4139,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:46",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4158,7 +4158,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:15",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4177,7 +4177,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:05",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4196,7 +4196,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:15",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4215,7 +4215,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:33",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4234,7 +4234,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:21:44",
Duration_Decimal: 0.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4253,7 +4253,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:24",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -4272,7 +4272,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:00:01",
Duration_Decimal: 0,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4291,7 +4291,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:35:46",
Duration_Decimal: 0.6,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -4310,7 +4310,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:32",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4329,7 +4329,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:09",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4348,7 +4348,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:35:13",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4367,7 +4367,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:38",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4386,7 +4386,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:24",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4405,7 +4405,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:47:03",
Duration_Decimal: 0.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4424,7 +4424,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:51",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4443,7 +4443,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:32:57",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4462,7 +4462,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:03",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4481,7 +4481,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:27",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4500,7 +4500,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:28:06",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4519,7 +4519,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:36:18",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4538,7 +4538,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:32",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4557,7 +4557,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:35:26",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4576,7 +4576,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:42:45",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4595,7 +4595,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:53",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4614,7 +4614,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:24",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4633,7 +4633,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:36",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4652,7 +4652,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:16",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4671,7 +4671,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:24",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4690,7 +4690,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:19",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4709,7 +4709,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:42:24",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4728,7 +4728,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:48:37",
Duration_Decimal: 0.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4747,7 +4747,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:00:01",
Duration_Decimal: 0,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4766,7 +4766,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:40:47",
Duration_Decimal: 0.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4785,7 +4785,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:21",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4804,7 +4804,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:16",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4823,7 +4823,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:00",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4842,7 +4842,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:39:28",
Duration_Decimal: 0.66,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4861,7 +4861,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:16",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4880,7 +4880,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:21",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4899,7 +4899,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:55:55",
Duration_Decimal: 0.93,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4918,7 +4918,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:27:40",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4937,7 +4937,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:28",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4956,7 +4956,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:47:04",
Duration_Decimal: 0.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4975,7 +4975,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:34:23",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -4994,7 +4994,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:50:13",
Duration_Decimal: 0.84,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -5013,7 +5013,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:54",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -5032,7 +5032,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:57",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -5051,7 +5051,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:13",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -5070,7 +5070,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:43",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -5089,7 +5089,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:03",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -5108,7 +5108,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:22",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -5127,7 +5127,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:53",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -5146,7 +5146,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:21",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -5165,7 +5165,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:37:48",
Duration_Decimal: 0.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -5184,7 +5184,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:24:06",
Duration_Decimal: 1.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5203,7 +5203,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:48",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5222,7 +5222,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:30",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5241,7 +5241,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:21",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5260,7 +5260,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:20",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5279,7 +5279,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:22",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5298,7 +5298,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:25",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5317,7 +5317,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:49:23",
Duration_Decimal: 0.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5336,7 +5336,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:19:26",
Duration_Decimal: 1.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5355,7 +5355,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:49:54",
Duration_Decimal: 0.83,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5374,7 +5374,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:03:51",
Duration_Decimal: 1.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5393,7 +5393,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:26",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5412,7 +5412,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:09",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5431,7 +5431,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:46:37",
Duration_Decimal: 0.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5450,7 +5450,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:21:21",
Duration_Decimal: 1.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5469,7 +5469,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:24:19",
Duration_Decimal: 1.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5488,7 +5488,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:44",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5507,7 +5507,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:40:20",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -5526,7 +5526,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:59",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -5545,7 +5545,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:29",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -5564,7 +5564,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:56:04",
Duration_Decimal: 0.93,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -5583,7 +5583,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:35:30",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -5602,7 +5602,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:27:34",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -5621,7 +5621,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:07:03",
Duration_Decimal: 1.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5640,7 +5640,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:34",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5659,7 +5659,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:31:32",
Duration_Decimal: 1.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5678,7 +5678,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:59:49",
Duration_Decimal: 1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5697,7 +5697,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:55",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5716,7 +5716,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:24",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5735,7 +5735,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:15",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5754,7 +5754,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:42:20",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -5773,7 +5773,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:55",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -5792,7 +5792,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:02",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5811,7 +5811,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:21:03",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5830,7 +5830,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:48:32",
Duration_Decimal: 0.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5849,7 +5849,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:39",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -5868,7 +5868,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:36",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5887,7 +5887,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:57",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5906,7 +5906,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:43",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5925,7 +5925,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:12",
Duration_Decimal: 0.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5944,7 +5944,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:44:27",
Duration_Decimal: 0.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5963,7 +5963,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:08",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -5982,7 +5982,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:46:57",
Duration_Decimal: 0.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6001,7 +6001,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:31",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6020,7 +6020,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:40:52",
Duration_Decimal: 0.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6039,7 +6039,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:14",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6058,7 +6058,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:53",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6077,7 +6077,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:29",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6096,7 +6096,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:39",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6115,7 +6115,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:23",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6134,7 +6134,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:31",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6153,7 +6153,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:27",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -6172,7 +6172,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:05:01",
Duration_Decimal: 1.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -6191,7 +6191,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:48:51",
Duration_Decimal: 1.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -6210,7 +6210,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:41",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -6229,7 +6229,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:34:12",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6248,7 +6248,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:27",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -6267,7 +6267,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:33:59",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -6286,7 +6286,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:03:00",
Duration_Decimal: 1.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -6305,7 +6305,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:34",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -6324,7 +6324,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:14",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6343,7 +6343,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:18:38",
Duration_Decimal: 1.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6362,7 +6362,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:27",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6381,7 +6381,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:28",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6400,7 +6400,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:48",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6419,7 +6419,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:20",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6438,7 +6438,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:33:57",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -6457,7 +6457,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:00",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -6476,7 +6476,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:33:47",
Duration_Decimal: 0.56,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -6495,7 +6495,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:27:11",
Duration_Decimal: 0.45,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -6514,7 +6514,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:02",
Duration_Decimal: 0.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -6533,7 +6533,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:03",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -6552,7 +6552,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:38:42",
Duration_Decimal: 0.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -6571,7 +6571,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:32",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -6590,7 +6590,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:45",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -6609,7 +6609,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:24",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -6628,7 +6628,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:09",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -6647,7 +6647,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:34:34",
Duration_Decimal: 0.58,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -6666,7 +6666,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:57:44",
Duration_Decimal: 0.96,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -6685,7 +6685,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:45",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -6704,7 +6704,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:35",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -6723,7 +6723,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:14",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -6742,7 +6742,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:41",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -6761,7 +6761,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:53",
Duration_Decimal: 0.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6780,7 +6780,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:17",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6799,7 +6799,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:21:50",
Duration_Decimal: 0.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6818,7 +6818,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:12",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6837,7 +6837,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:26",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -6856,7 +6856,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:27",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6875,7 +6875,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:35",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6894,7 +6894,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:17",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6913,7 +6913,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:55",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6932,7 +6932,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:28:54",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6951,7 +6951,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:26",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6970,7 +6970,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:48:30",
Duration_Decimal: 0.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -6989,7 +6989,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:50:39",
Duration_Decimal: 2.84,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -7008,7 +7008,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:27:04",
Duration_Decimal: 0.45,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7027,7 +7027,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:59",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7046,7 +7046,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:22",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -7065,7 +7065,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:52",
Duration_Decimal: 0.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -7084,7 +7084,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:28:27",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -7103,7 +7103,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:26",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -7122,7 +7122,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:50",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -7141,7 +7141,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:04:48",
Duration_Decimal: 1.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -7160,7 +7160,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:44:02",
Duration_Decimal: 0.73,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -7179,7 +7179,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:16:08",
Duration_Decimal: 2.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7198,7 +7198,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:53:09",
Duration_Decimal: 0.89,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7217,7 +7217,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:32:52",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7236,7 +7236,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:59",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7255,7 +7255,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:09:41",
Duration_Decimal: 1.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -7274,7 +7274,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:25",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -7293,7 +7293,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:17:22",
Duration_Decimal: 1.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -7312,7 +7312,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:41",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -7331,7 +7331,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:00:06",
Duration_Decimal: 1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -7350,7 +7350,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:35:12",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -7369,7 +7369,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:03:31",
Duration_Decimal: 1.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7388,7 +7388,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:57",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7407,7 +7407,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:16",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7426,7 +7426,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:30",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7445,7 +7445,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:54",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7464,7 +7464,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:52:14",
Duration_Decimal: 0.87,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7483,7 +7483,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:54",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7502,7 +7502,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:59",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7521,7 +7521,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:02",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7540,7 +7540,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:37",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7559,7 +7559,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:07",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7578,7 +7578,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:35:59",
Duration_Decimal: 0.6,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7597,7 +7597,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:41",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7616,7 +7616,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:31",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7635,7 +7635,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:53",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7654,7 +7654,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:04:22",
Duration_Decimal: 1.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7673,7 +7673,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:56",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -7692,7 +7692,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:10",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7711,7 +7711,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:15",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7730,7 +7730,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:49",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7749,7 +7749,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:41",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7768,7 +7768,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:25",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7787,7 +7787,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:13",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7806,7 +7806,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:17",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7825,7 +7825,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:24",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7844,7 +7844,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:05",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7863,7 +7863,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:47",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7882,7 +7882,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:35",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7901,7 +7901,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:32",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7920,7 +7920,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:42:51",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7939,7 +7939,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:35:24",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7958,7 +7958,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:00",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -7977,7 +7977,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:38:34",
Duration_Decimal: 0.64,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -7996,7 +7996,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:42:50",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8015,7 +8015,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:50:51",
Duration_Decimal: 0.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -8034,7 +8034,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:19",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8053,7 +8053,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:37",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8072,7 +8072,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:32",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8091,7 +8091,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:32:46",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8110,7 +8110,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:34:47",
Duration_Decimal: 0.58,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8129,7 +8129,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:57",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8148,7 +8148,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:02",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8167,7 +8167,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:40",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -8186,7 +8186,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:17",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -8205,7 +8205,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:44",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8224,7 +8224,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:19",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8243,7 +8243,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:24",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8262,7 +8262,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:25",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8281,7 +8281,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:01",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8300,7 +8300,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:48:52",
Duration_Decimal: 1.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8319,7 +8319,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:32:50",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8338,7 +8338,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:51:01",
Duration_Decimal: 0.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8357,7 +8357,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:48:46",
Duration_Decimal: 0.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8376,7 +8376,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:57",
Duration_Decimal: 0.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8395,7 +8395,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:32",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8414,7 +8414,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:02:52",
Duration_Decimal: 1.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8433,7 +8433,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:59:33",
Duration_Decimal: 1.99,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8452,7 +8452,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:52",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -8471,7 +8471,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:42:28",
Duration_Decimal: 1.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -8490,7 +8490,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:42:16",
Duration_Decimal: 0.7,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -8509,7 +8509,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:42",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -8528,7 +8528,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:48:31",
Duration_Decimal: 0.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -8547,7 +8547,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:22",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -8566,7 +8566,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:53",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -8585,7 +8585,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:08",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -8604,7 +8604,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:48:56",
Duration_Decimal: 0.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -8623,7 +8623,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:55",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -8642,7 +8642,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:21:50",
Duration_Decimal: 0.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -8661,7 +8661,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:32",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8680,7 +8680,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:59",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -8699,7 +8699,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:08",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -8718,7 +8718,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:47",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -8737,7 +8737,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:33:07",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -8756,7 +8756,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:16",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -8775,7 +8775,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:34",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -8794,7 +8794,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:25",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -8813,7 +8813,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:49:35",
Duration_Decimal: 0.83,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -8832,7 +8832,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:28:07",
Duration_Decimal: 1.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -8851,7 +8851,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:40:55",
Duration_Decimal: 0.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -8870,7 +8870,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:14:05",
Duration_Decimal: 1.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8889,7 +8889,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:19",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8908,7 +8908,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:28:53",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8927,7 +8927,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:45:10",
Duration_Decimal: 0.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8946,7 +8946,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:03",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -8965,7 +8965,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:52",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -8984,7 +8984,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:21:00",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9003,7 +9003,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:30",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9022,7 +9022,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:24:39",
Duration_Decimal: 1.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9041,7 +9041,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:55:59",
Duration_Decimal: 0.93,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -9060,7 +9060,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:28",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -9079,7 +9079,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:47",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -9098,7 +9098,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:01:53",
Duration_Decimal: 1.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -9117,7 +9117,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:08",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -9136,7 +9136,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:33:33",
Duration_Decimal: 0.56,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -9155,7 +9155,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:41:10",
Duration_Decimal: 0.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -9174,7 +9174,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:32",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9193,7 +9193,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:39",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9212,7 +9212,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:26",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9231,7 +9231,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:10",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9250,7 +9250,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:31",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9269,7 +9269,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:27:50",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9288,7 +9288,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:29:27",
Duration_Decimal: 1.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -9307,7 +9307,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:26",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -9326,7 +9326,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:32",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -9345,7 +9345,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:17",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -9364,7 +9364,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:18",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -9383,7 +9383,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:33",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -9402,7 +9402,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:38:08",
Duration_Decimal: 0.64,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9421,7 +9421,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:53:40",
Duration_Decimal: 0.89,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9440,7 +9440,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:06",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9459,7 +9459,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:03:19",
Duration_Decimal: 1.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9478,7 +9478,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:46:25",
Duration_Decimal: 0.77,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -9497,7 +9497,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:30",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -9516,7 +9516,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:42:23",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9535,7 +9535,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:48",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9554,7 +9554,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:00:45",
Duration_Decimal: 1.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -9573,7 +9573,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:40:22",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -9592,7 +9592,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:17",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9611,7 +9611,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:32:04",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9630,7 +9630,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:44:38",
Duration_Decimal: 0.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9649,7 +9649,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:21",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -9668,7 +9668,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:45",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -9687,7 +9687,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:23",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9706,7 +9706,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:51",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9725,7 +9725,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:59",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -9744,7 +9744,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:00",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9763,7 +9763,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:30",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -9782,7 +9782,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:39:01",
Duration_Decimal: 0.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -9801,7 +9801,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:07:08",
Duration_Decimal: 2.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -9820,7 +9820,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:36",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -9839,7 +9839,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:22",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -9858,7 +9858,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:36:49",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -9877,7 +9877,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:00:00",
Duration_Decimal: 0,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -9896,7 +9896,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:30",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -9915,7 +9915,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:45:42",
Duration_Decimal: 0.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -9934,7 +9934,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:49:02",
Duration_Decimal: 0.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -9953,7 +9953,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:42:24",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -9972,7 +9972,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:29",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -9991,7 +9991,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:12:00",
Duration_Decimal: 1.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -10010,7 +10010,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:58",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -10029,7 +10029,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:34:28",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -10048,7 +10048,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:24",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -10067,7 +10067,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:19:54",
Duration_Decimal: 1.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -10086,7 +10086,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:08",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -10105,7 +10105,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:45:46",
Duration_Decimal: 0.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -10124,7 +10124,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:48:32",
Duration_Decimal: 0.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -10143,7 +10143,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:52:13",
Duration_Decimal: 0.87,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -10162,7 +10162,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:01:55",
Duration_Decimal: 1.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10181,7 +10181,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:02",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -10200,7 +10200,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:31",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -10219,7 +10219,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:09",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -10238,7 +10238,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:12",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -10257,7 +10257,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:52",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -10276,7 +10276,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:14",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -10295,7 +10295,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:28:21",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10314,7 +10314,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:23",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -10333,7 +10333,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:58",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -10352,7 +10352,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:06",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -10371,7 +10371,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:41:18",
Duration_Decimal: 1.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -10390,7 +10390,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:27",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10409,7 +10409,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:38",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10428,7 +10428,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:28:09",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10447,7 +10447,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:39",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10466,7 +10466,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:36:53",
Duration_Decimal: 2.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10485,7 +10485,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:59",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10504,7 +10504,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:50",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10523,7 +10523,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:28:19",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10542,7 +10542,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:51",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -10561,7 +10561,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:51",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -10580,7 +10580,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:37",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10599,7 +10599,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:27:20",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10618,7 +10618,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:27",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10637,7 +10637,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:33:42",
Duration_Decimal: 0.56,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -10656,7 +10656,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:48",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -10675,7 +10675,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:35:01",
Duration_Decimal: 0.58,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10694,7 +10694,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:59:21",
Duration_Decimal: 0.99,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10713,7 +10713,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:52:33",
Duration_Decimal: 0.88,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10732,7 +10732,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:21:19",
Duration_Decimal: 1.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10751,7 +10751,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:53:29",
Duration_Decimal: 0.89,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10770,7 +10770,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:00",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -10789,7 +10789,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:10",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -10808,7 +10808,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:30",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10827,7 +10827,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:27",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10846,7 +10846,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:01",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10865,7 +10865,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:34:01",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10884,7 +10884,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:28",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10903,7 +10903,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:53",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10922,7 +10922,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:13",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10941,7 +10941,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:45",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -10960,7 +10960,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:14",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10979,7 +10979,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:17",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -10998,7 +10998,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:30",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -11017,7 +11017,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:38",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11036,7 +11036,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:52",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11055,7 +11055,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:00:55",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11074,7 +11074,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:21",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11093,7 +11093,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:29",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11112,7 +11112,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:48",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11131,7 +11131,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:47",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11150,7 +11150,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:45",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11169,7 +11169,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:46",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11188,7 +11188,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:36:26",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11207,7 +11207,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:59",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11226,7 +11226,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:37:33",
Duration_Decimal: 0.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11245,7 +11245,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:14",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11264,7 +11264,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:11",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11283,7 +11283,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:54",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11302,7 +11302,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:32:58",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11321,7 +11321,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:33:14",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11340,7 +11340,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:01",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11359,7 +11359,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:16",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11378,7 +11378,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:32",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11397,7 +11397,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:55",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11416,7 +11416,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:48",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11435,7 +11435,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:48",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11454,7 +11454,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:54",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11473,7 +11473,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:18",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11492,7 +11492,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:32",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11511,7 +11511,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:34",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11530,7 +11530,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:27",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11549,7 +11549,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:18",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -11568,7 +11568,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:35",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11587,7 +11587,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:04",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11606,7 +11606,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:02",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -11625,7 +11625,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:46",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -11644,7 +11644,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:20",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11663,7 +11663,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:43",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -11682,7 +11682,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:41:19",
Duration_Decimal: 0.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -11701,7 +11701,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:51",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -11720,7 +11720,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:46:07",
Duration_Decimal: 0.77,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -11739,7 +11739,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:00:04",
Duration_Decimal: 0,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11758,7 +11758,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:04",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11777,7 +11777,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:19",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -11796,7 +11796,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:29",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11815,7 +11815,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:00:42",
Duration_Decimal: 0.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11834,7 +11834,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:23",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11853,7 +11853,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:39:49",
Duration_Decimal: 0.66,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11872,7 +11872,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:01",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11891,7 +11891,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:45:30",
Duration_Decimal: 0.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11910,7 +11910,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:49:07",
Duration_Decimal: 0.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11929,7 +11929,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:43:28",
Duration_Decimal: 0.72,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11948,7 +11948,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:39:39",
Duration_Decimal: 0.66,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11967,7 +11967,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:41",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -11986,7 +11986,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:34:49",
Duration_Decimal: 0.58,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -12005,7 +12005,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:07",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -12024,7 +12024,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:57",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -12043,7 +12043,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:42",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -12062,7 +12062,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:09",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -12081,7 +12081,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:35:07",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -12100,7 +12100,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:37:00",
Duration_Decimal: 0.62,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -12119,7 +12119,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:35:05",
Duration_Decimal: 1.58,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -12138,7 +12138,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:44:53",
Duration_Decimal: 0.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "DevOps",
@@ -12157,7 +12157,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:49:17",
Duration_Decimal: 0.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12176,7 +12176,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:30",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -12195,7 +12195,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:31",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -12214,7 +12214,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:51",
Duration_Decimal: 0.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -12233,7 +12233,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:28:59",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -12252,7 +12252,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:23",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -12271,7 +12271,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:49",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -12290,7 +12290,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:51",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -12309,7 +12309,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:40:48",
Duration_Decimal: 0.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -12328,7 +12328,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:59",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -12347,7 +12347,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:01",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12366,7 +12366,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:33",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12385,7 +12385,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:12",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -12404,7 +12404,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:43",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12423,7 +12423,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:35",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -12442,7 +12442,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:56:47",
Duration_Decimal: 0.95,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -12461,7 +12461,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:59",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12480,7 +12480,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:15",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -12499,7 +12499,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:27:22",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -12518,7 +12518,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:40",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -12537,7 +12537,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:30",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12556,7 +12556,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:52",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -12575,7 +12575,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:36:46",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12594,7 +12594,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:39",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -12613,7 +12613,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:45:13",
Duration_Decimal: 0.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -12632,7 +12632,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:01:07",
Duration_Decimal: 1.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Process",
@@ -12651,7 +12651,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:55:37",
Duration_Decimal: 0.93,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12670,7 +12670,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:34",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12689,7 +12689,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:52:08",
Duration_Decimal: 0.87,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12708,7 +12708,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:47",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12727,7 +12727,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:33:00",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12746,7 +12746,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:21",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12765,7 +12765,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:02",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12784,7 +12784,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:53",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -12803,7 +12803,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:59",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -12822,7 +12822,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:51",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -12841,7 +12841,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:22",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -12860,7 +12860,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:30",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -12879,7 +12879,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:39",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -12898,7 +12898,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:42",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12917,7 +12917,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:41",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -12936,7 +12936,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:54",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -12955,7 +12955,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:31",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -12974,7 +12974,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:35:00",
Duration_Decimal: 1.58,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -12993,7 +12993,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:00:44",
Duration_Decimal: 0.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -13012,7 +13012,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:14",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -13031,7 +13031,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:57",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -13050,7 +13050,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:15",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -13069,7 +13069,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:32:31",
Duration_Decimal: 0.54,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -13088,7 +13088,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:35",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -13107,7 +13107,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:43",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -13126,7 +13126,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:41",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -13145,7 +13145,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:32",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -13164,7 +13164,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:46:47",
Duration_Decimal: 0.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -13183,7 +13183,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:33",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -13202,7 +13202,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:27",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13221,7 +13221,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:12",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13240,7 +13240,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:56",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13259,7 +13259,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:05",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13278,7 +13278,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:10",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13297,7 +13297,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:27",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -13316,7 +13316,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:41:14",
Duration_Decimal: 1.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13335,7 +13335,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:53",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13354,7 +13354,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:45:53",
Duration_Decimal: 0.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13373,7 +13373,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:20",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13392,7 +13392,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:36:32",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13411,7 +13411,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:00",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13430,7 +13430,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:08",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13449,7 +13449,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:30:21",
Duration_Decimal: 1.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13468,7 +13468,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:38:52",
Duration_Decimal: 0.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -13487,7 +13487,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:46:04",
Duration_Decimal: 0.77,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -13506,7 +13506,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:02:53",
Duration_Decimal: 1.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -13525,7 +13525,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:21",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -13544,7 +13544,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:02",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -13563,7 +13563,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:49",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -13582,7 +13582,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:46",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -13601,7 +13601,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:50",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -13620,7 +13620,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:21:43",
Duration_Decimal: 0.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -13639,7 +13639,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:27",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -13658,7 +13658,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:54:18",
Duration_Decimal: 1.91,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -13677,7 +13677,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:31",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -13696,7 +13696,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:02",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -13715,7 +13715,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:13",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13734,7 +13734,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:21",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13753,7 +13753,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:43:40",
Duration_Decimal: 0.73,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13772,7 +13772,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:56:24",
Duration_Decimal: 0.94,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13791,7 +13791,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:47:00",
Duration_Decimal: 0.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -13810,7 +13810,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:00:52",
Duration_Decimal: 0.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13829,7 +13829,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:54:31",
Duration_Decimal: 0.91,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13848,7 +13848,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:30",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -13867,7 +13867,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:38",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13886,7 +13886,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:50:32",
Duration_Decimal: 0.84,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -13905,7 +13905,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:15",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13924,7 +13924,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:38:20",
Duration_Decimal: 1.64,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -13943,7 +13943,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:14",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13962,7 +13962,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:51:54",
Duration_Decimal: 0.87,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -13981,7 +13981,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:52",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14000,7 +14000,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:52:00",
Duration_Decimal: 0.87,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14019,7 +14019,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:46:22",
Duration_Decimal: 0.77,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14038,7 +14038,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:27",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14057,7 +14057,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:42",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14076,7 +14076,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:07:01",
Duration_Decimal: 1.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -14095,7 +14095,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:54",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -14114,7 +14114,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:09:57",
Duration_Decimal: 1.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -14133,7 +14133,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:40:26",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -14152,7 +14152,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:36:06",
Duration_Decimal: 0.6,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -14171,7 +14171,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:38:17",
Duration_Decimal: 0.64,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -14190,7 +14190,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:44:12",
Duration_Decimal: 0.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14209,7 +14209,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:45:24",
Duration_Decimal: 0.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14228,7 +14228,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:12",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -14247,7 +14247,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:41:38",
Duration_Decimal: 0.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -14266,7 +14266,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:39",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14285,7 +14285,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:02",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -14304,7 +14304,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:28",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14323,7 +14323,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:17",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14342,7 +14342,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:47",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -14361,7 +14361,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:51",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -14380,7 +14380,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:08",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14399,7 +14399,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:07",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14418,7 +14418,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:08:19",
Duration_Decimal: 1.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -14437,7 +14437,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:54",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14456,7 +14456,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:00:38",
Duration_Decimal: 0.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -14475,7 +14475,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:48",
Duration_Decimal: 0.45,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -14494,7 +14494,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:34:24",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14513,7 +14513,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:59",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14532,7 +14532,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:57",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14551,7 +14551,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:34",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14570,7 +14570,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:13:33",
Duration_Decimal: 1.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14589,7 +14589,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:56:26",
Duration_Decimal: 0.94,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -14608,7 +14608,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:46",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14627,7 +14627,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:42:28",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14646,7 +14646,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:47",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14665,7 +14665,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:32",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14684,7 +14684,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:09",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14703,7 +14703,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:51:00",
Duration_Decimal: 0.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14722,7 +14722,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:15",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14741,7 +14741,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:01:44",
Duration_Decimal: 1.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -14760,7 +14760,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:08",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14779,7 +14779,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:47:48",
Duration_Decimal: 0.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14798,7 +14798,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:12",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14817,7 +14817,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:00",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14836,7 +14836,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:16",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14855,7 +14855,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:23",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14874,7 +14874,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:51",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14893,7 +14893,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:44",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14912,7 +14912,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:48:01",
Duration_Decimal: 0.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14931,7 +14931,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:41:40",
Duration_Decimal: 0.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14950,7 +14950,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:15:01",
Duration_Decimal: 1.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14969,7 +14969,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:00",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -14988,7 +14988,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:11",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -15007,7 +15007,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:39",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15026,7 +15026,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:18:10",
Duration_Decimal: 1.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -15045,7 +15045,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:39:16",
Duration_Decimal: 0.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15064,7 +15064,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:12",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15083,7 +15083,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:53",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15102,7 +15102,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:30",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15121,7 +15121,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:55",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -15140,7 +15140,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:06",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15159,7 +15159,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:47",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15178,7 +15178,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:09",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15197,7 +15197,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:19",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15216,7 +15216,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:38",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15235,7 +15235,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:30",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15254,7 +15254,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:42",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15273,7 +15273,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:48:08",
Duration_Decimal: 0.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15292,7 +15292,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:12",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15311,7 +15311,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:53",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15330,7 +15330,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:21",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15349,7 +15349,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:37",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15368,7 +15368,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:17",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15387,7 +15387,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:27",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15406,7 +15406,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:27",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -15425,7 +15425,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:22",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15444,7 +15444,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:32:58",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15463,7 +15463,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:21:28",
Duration_Decimal: 0.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15482,7 +15482,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:06",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15501,7 +15501,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:35",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15520,7 +15520,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:00:07",
Duration_Decimal: 0,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15539,7 +15539,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:10",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15558,7 +15558,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:28:34",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15577,7 +15577,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:47",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15596,7 +15596,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:53",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -15615,7 +15615,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:07",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -15634,7 +15634,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:27",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -15653,7 +15653,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:05",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15672,7 +15672,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:09",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15691,7 +15691,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:06",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15710,7 +15710,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:37:06",
Duration_Decimal: 0.62,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -15729,7 +15729,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:30",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -15748,7 +15748,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:26",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15767,7 +15767,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:00:32",
Duration_Decimal: 0.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Master Thesis",
@@ -15786,7 +15786,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:52",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -15805,7 +15805,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:46",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -15824,7 +15824,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:00:48",
Duration_Decimal: 1.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -15843,7 +15843,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:01:33",
Duration_Decimal: 1.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -15862,7 +15862,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:28:50",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -15881,7 +15881,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:04",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -15900,7 +15900,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:35:37",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -15919,7 +15919,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:33",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -15938,7 +15938,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:45",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -15957,7 +15957,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:23",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -15976,7 +15976,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:31",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -15995,7 +15995,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:04:51",
Duration_Decimal: 2.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16014,7 +16014,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:00:09",
Duration_Decimal: 1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16033,7 +16033,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:30:59",
Duration_Decimal: 1.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16052,7 +16052,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:29:57",
Duration_Decimal: 1.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -16071,7 +16071,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:55:19",
Duration_Decimal: 0.92,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -16090,7 +16090,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:10:02",
Duration_Decimal: 1.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16109,7 +16109,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "03:00:21",
Duration_Decimal: 3.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -16128,7 +16128,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:01",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16147,7 +16147,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:50:57",
Duration_Decimal: 0.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -16166,7 +16166,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:45",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -16185,7 +16185,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:43:42",
Duration_Decimal: 0.73,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -16204,7 +16204,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:08",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16223,7 +16223,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:21",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -16242,7 +16242,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:32:13",
Duration_Decimal: 0.54,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -16261,7 +16261,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "04:15:32",
Duration_Decimal: 4.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16280,7 +16280,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:18",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16299,7 +16299,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:00",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16318,7 +16318,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:34:14",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16337,7 +16337,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:19",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -16356,7 +16356,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:49",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -16375,7 +16375,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:21",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16394,7 +16394,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:47:38",
Duration_Decimal: 0.79,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16413,7 +16413,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:04:39",
Duration_Decimal: 1.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -16432,7 +16432,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:50:00",
Duration_Decimal: 2.83,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -16451,7 +16451,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:00:00",
Duration_Decimal: 1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -16470,7 +16470,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:47",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -16489,7 +16489,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:57",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -16508,7 +16508,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:21",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -16527,7 +16527,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:15",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -16546,7 +16546,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:00:03",
Duration_Decimal: 0,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -16565,7 +16565,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:21:09",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16584,7 +16584,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "03:49:55",
Duration_Decimal: 3.83,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16603,7 +16603,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:38:50",
Duration_Decimal: 1.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16622,7 +16622,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:34:02",
Duration_Decimal: 2.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16641,7 +16641,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:56:54",
Duration_Decimal: 0.95,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16660,7 +16660,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:21:47",
Duration_Decimal: 0.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16679,7 +16679,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:13",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16698,7 +16698,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "05:19:47",
Duration_Decimal: 5.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -16717,7 +16717,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:32:41",
Duration_Decimal: 0.54,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16736,7 +16736,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:37",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16755,7 +16755,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:48:52",
Duration_Decimal: 0.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16774,7 +16774,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:41:23",
Duration_Decimal: 1.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16793,7 +16793,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:15",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16812,7 +16812,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:22",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16831,7 +16831,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:50",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16850,7 +16850,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:41:00",
Duration_Decimal: 0.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16869,7 +16869,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:28:55",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16888,7 +16888,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "03:39:17",
Duration_Decimal: 3.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16907,7 +16907,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:46",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16926,7 +16926,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:08",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16945,7 +16945,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:21:14",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16964,7 +16964,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:28:25",
Duration_Decimal: 1.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -16983,7 +16983,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:28:17",
Duration_Decimal: 2.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17002,7 +17002,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:47:53",
Duration_Decimal: 0.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17021,7 +17021,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:41",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17040,7 +17040,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:19:55",
Duration_Decimal: 2.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -17059,7 +17059,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:12:53",
Duration_Decimal: 1.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17078,7 +17078,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:21",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17097,7 +17097,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:10:16",
Duration_Decimal: 1.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17116,7 +17116,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:30:00",
Duration_Decimal: 1.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17135,7 +17135,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:26",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17154,7 +17154,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:02",
Duration_Decimal: 0.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17173,7 +17173,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:33:51",
Duration_Decimal: 1.56,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17192,7 +17192,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:07:07",
Duration_Decimal: 1.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -17211,7 +17211,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "03:22:19",
Duration_Decimal: 3.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17230,7 +17230,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:39:32",
Duration_Decimal: 0.66,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17249,7 +17249,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:55",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -17268,7 +17268,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:08",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17287,7 +17287,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:48:14",
Duration_Decimal: 1.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17306,7 +17306,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:04",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17325,7 +17325,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:26",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -17344,7 +17344,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:38",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -17363,7 +17363,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:06:20",
Duration_Decimal: 1.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -17382,7 +17382,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:14",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -17401,7 +17401,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:36",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17420,7 +17420,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:43:22",
Duration_Decimal: 0.72,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17439,7 +17439,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:41:17",
Duration_Decimal: 0.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17458,7 +17458,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:50:30",
Duration_Decimal: 0.84,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -17477,7 +17477,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:22",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17496,7 +17496,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:22:10",
Duration_Decimal: 1.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17515,7 +17515,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:44:45",
Duration_Decimal: 2.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17534,7 +17534,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:20:21",
Duration_Decimal: 1.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17553,7 +17553,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:33:02",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17572,7 +17572,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:32",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17591,7 +17591,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:10",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17610,7 +17610,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:18:08",
Duration_Decimal: 1.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17629,7 +17629,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:33:30",
Duration_Decimal: 0.56,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -17648,7 +17648,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:36:25",
Duration_Decimal: 1.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -17667,7 +17667,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:33",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -17686,7 +17686,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:59:20",
Duration_Decimal: 0.99,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -17705,7 +17705,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:02:27",
Duration_Decimal: 1.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17724,7 +17724,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:00:27",
Duration_Decimal: 1.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17743,7 +17743,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:15",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17762,7 +17762,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:21:25",
Duration_Decimal: 0.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17781,7 +17781,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:28:02",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17800,7 +17800,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:42",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17819,7 +17819,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:03",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -17838,7 +17838,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:30:06",
Duration_Decimal: 2.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -17857,7 +17857,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:21:04",
Duration_Decimal: 1.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -17876,7 +17876,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:32",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -17895,7 +17895,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:47",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -17914,7 +17914,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:53",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -17933,7 +17933,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:52",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -17952,7 +17952,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:37:55",
Duration_Decimal: 0.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -17971,7 +17971,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:04",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -17990,7 +17990,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:08",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -18009,7 +18009,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:15",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18028,7 +18028,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:57:52",
Duration_Decimal: 0.96,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -18047,7 +18047,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:00:56",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -18066,7 +18066,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:36:26",
Duration_Decimal: 1.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18085,7 +18085,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:01:03",
Duration_Decimal: 1.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -18104,7 +18104,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:31",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -18123,7 +18123,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:34:26",
Duration_Decimal: 1.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -18142,7 +18142,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:58",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18161,7 +18161,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:00",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18180,7 +18180,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:28:38",
Duration_Decimal: 2.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18199,7 +18199,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "03:09:06",
Duration_Decimal: 3.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18218,7 +18218,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:46:56",
Duration_Decimal: 0.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18237,7 +18237,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:50",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -18256,7 +18256,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:50:42",
Duration_Decimal: 0.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -18275,7 +18275,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:01:23",
Duration_Decimal: 1.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -18294,7 +18294,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:44",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -18313,7 +18313,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:42:32",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -18332,7 +18332,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:28:07",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -18351,7 +18351,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:45:30",
Duration_Decimal: 1.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -18370,7 +18370,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:00",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -18389,7 +18389,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:55",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -18408,7 +18408,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:58",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18427,7 +18427,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:59:03",
Duration_Decimal: 0.98,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18446,7 +18446,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:22:10",
Duration_Decimal: 2.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18465,7 +18465,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:28",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18484,7 +18484,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:56:54",
Duration_Decimal: 0.95,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18503,7 +18503,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:01:50",
Duration_Decimal: 1.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -18522,7 +18522,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:04",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -18541,7 +18541,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:02",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18560,7 +18560,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:12",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -18579,7 +18579,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:53",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18598,7 +18598,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:55",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -18617,7 +18617,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:05:08",
Duration_Decimal: 1.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18636,7 +18636,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:22",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18655,7 +18655,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:05:38",
Duration_Decimal: 2.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -18674,7 +18674,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:55",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18693,7 +18693,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "03:30:20",
Duration_Decimal: 3.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18712,7 +18712,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "03:27:20",
Duration_Decimal: 3.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18731,7 +18731,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:40:52",
Duration_Decimal: 1.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18750,7 +18750,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:10:35",
Duration_Decimal: 1.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18769,7 +18769,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:37:10",
Duration_Decimal: 0.62,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18788,7 +18788,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:37:06",
Duration_Decimal: 2.62,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18807,7 +18807,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:33:45",
Duration_Decimal: 0.56,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18826,7 +18826,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:35",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18845,7 +18845,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:14:32",
Duration_Decimal: 1.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18864,7 +18864,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:35:27",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18883,7 +18883,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:04",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18902,7 +18902,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:18",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18921,7 +18921,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:09:27",
Duration_Decimal: 2.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -18940,7 +18940,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:28:40",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18959,7 +18959,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:51:04",
Duration_Decimal: 0.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18978,7 +18978,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:50",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -18997,7 +18997,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:38:14",
Duration_Decimal: 0.64,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -19016,7 +19016,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:37:48",
Duration_Decimal: 0.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19035,7 +19035,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:00",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -19054,7 +19054,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "04:14:01",
Duration_Decimal: 4.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -19073,7 +19073,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:17",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -19092,7 +19092,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:38",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -19111,7 +19111,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:35:06",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -19130,7 +19130,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:21",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -19149,7 +19149,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:34",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -19168,7 +19168,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:50",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -19187,7 +19187,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:51",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -19206,7 +19206,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:31:09",
Duration_Decimal: 1.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -19225,7 +19225,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:54",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -19244,7 +19244,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:44:54",
Duration_Decimal: 0.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -19263,7 +19263,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:46:50",
Duration_Decimal: 0.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -19282,7 +19282,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:33:13",
Duration_Decimal: 1.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -19301,7 +19301,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:46:05",
Duration_Decimal: 0.77,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -19320,7 +19320,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:48:00",
Duration_Decimal: 0.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -19339,7 +19339,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:29",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -19358,7 +19358,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:25",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -19377,7 +19377,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:47:43",
Duration_Decimal: 0.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19396,7 +19396,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:46:03",
Duration_Decimal: 0.77,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -19415,7 +19415,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:44",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19434,7 +19434,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:40:37",
Duration_Decimal: 2.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19453,7 +19453,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:50:50",
Duration_Decimal: 2.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -19472,7 +19472,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:32",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19491,7 +19491,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:56",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -19510,7 +19510,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:11",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19529,7 +19529,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:05:53",
Duration_Decimal: 1.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19548,7 +19548,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:57:55",
Duration_Decimal: 0.97,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19567,7 +19567,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:21:59",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19586,7 +19586,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:44",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19605,7 +19605,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:11",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19624,7 +19624,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:15:30",
Duration_Decimal: 2.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19643,7 +19643,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:34:05",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19662,7 +19662,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:18",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19681,7 +19681,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:43:44",
Duration_Decimal: 0.73,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19700,7 +19700,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:43:22",
Duration_Decimal: 0.72,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -19719,7 +19719,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:18",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19738,7 +19738,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:48:20",
Duration_Decimal: 0.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19757,7 +19757,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:21",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19776,7 +19776,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:48:58",
Duration_Decimal: 0.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -19795,7 +19795,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:29:40",
Duration_Decimal: 1.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -19814,7 +19814,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:05",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19833,7 +19833,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:31",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19852,7 +19852,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:57",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19871,7 +19871,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:39:46",
Duration_Decimal: 0.66,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19890,7 +19890,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:34:28",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -19909,7 +19909,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:03",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19928,7 +19928,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:10:25",
Duration_Decimal: 1.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -19947,7 +19947,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:11",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19966,7 +19966,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:00:16",
Duration_Decimal: 1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -19985,7 +19985,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:37:54",
Duration_Decimal: 0.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20004,7 +20004,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:29",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20023,7 +20023,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:38",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20042,7 +20042,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:29",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -20061,7 +20061,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:55",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -20080,7 +20080,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:33:13",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -20099,7 +20099,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:42",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -20118,7 +20118,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:03",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20137,7 +20137,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:27",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20156,7 +20156,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:58",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20175,7 +20175,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:47",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20194,7 +20194,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:03",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20213,7 +20213,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:03",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20232,7 +20232,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:34",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20251,7 +20251,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:06",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -20270,7 +20270,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:59:13",
Duration_Decimal: 0.99,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -20289,7 +20289,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:44:00",
Duration_Decimal: 0.73,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -20308,7 +20308,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:54:37",
Duration_Decimal: 0.91,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20327,7 +20327,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:12:18",
Duration_Decimal: 1.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20346,7 +20346,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:44:23",
Duration_Decimal: 2.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -20365,7 +20365,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:56",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20384,7 +20384,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:18",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20403,7 +20403,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:47",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -20422,7 +20422,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:19",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20441,7 +20441,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:27",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -20460,7 +20460,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:01",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20479,7 +20479,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:19:44",
Duration_Decimal: 1.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20498,7 +20498,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:22",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20517,7 +20517,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:40:42",
Duration_Decimal: 1.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20536,7 +20536,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:55",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20555,7 +20555,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:07:56",
Duration_Decimal: 1.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20574,7 +20574,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:03:27",
Duration_Decimal: 1.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20593,7 +20593,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:45:43",
Duration_Decimal: 0.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -20612,7 +20612,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:12",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -20631,7 +20631,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:00",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -20650,7 +20650,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:23",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20669,7 +20669,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:16:52",
Duration_Decimal: 1.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20688,7 +20688,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:29",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20707,7 +20707,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:00:00",
Duration_Decimal: 0,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20726,7 +20726,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "03:30:00",
Duration_Decimal: 3.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20745,7 +20745,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:21:29",
Duration_Decimal: 0.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20764,7 +20764,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:52:20",
Duration_Decimal: 0.87,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20783,7 +20783,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:00:22",
Duration_Decimal: 0.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -20802,7 +20802,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:44:43",
Duration_Decimal: 1.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -20821,7 +20821,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:39",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -20840,7 +20840,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:46",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -20859,7 +20859,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:19:19",
Duration_Decimal: 2.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -20878,7 +20878,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:50:49",
Duration_Decimal: 0.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20897,7 +20897,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:31",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20916,7 +20916,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:40:59",
Duration_Decimal: 0.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -20935,7 +20935,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:01:52",
Duration_Decimal: 1.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -20954,7 +20954,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:42",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -20973,7 +20973,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:37:04",
Duration_Decimal: 0.62,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -20992,7 +20992,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:41:25",
Duration_Decimal: 0.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -21011,7 +21011,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:39",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21030,7 +21030,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:49",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21049,7 +21049,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:21:40",
Duration_Decimal: 0.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21068,7 +21068,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:47:32",
Duration_Decimal: 0.79,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21087,7 +21087,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:23",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21106,7 +21106,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:29:41",
Duration_Decimal: 2.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21125,7 +21125,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:15:34",
Duration_Decimal: 2.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21144,7 +21144,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:01",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21163,7 +21163,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:52",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21182,7 +21182,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:25",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21201,7 +21201,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:00",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21220,7 +21220,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:18:10",
Duration_Decimal: 1.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21239,7 +21239,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:38:42",
Duration_Decimal: 0.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21258,7 +21258,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:07",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21277,7 +21277,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:11:01",
Duration_Decimal: 2.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21296,7 +21296,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:37:37",
Duration_Decimal: 0.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21315,7 +21315,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:20:12",
Duration_Decimal: 1.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21334,7 +21334,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:27:36",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21353,7 +21353,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:43:39",
Duration_Decimal: 0.73,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -21372,7 +21372,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:00",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -21391,7 +21391,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:15",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -21410,7 +21410,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:49:19",
Duration_Decimal: 0.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21429,7 +21429,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:36",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21448,7 +21448,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:25",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21467,7 +21467,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:29",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21486,7 +21486,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:55",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -21505,7 +21505,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:28",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -21524,7 +21524,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:06:40",
Duration_Decimal: 2.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -21543,7 +21543,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:14",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -21562,7 +21562,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:42:49",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -21581,7 +21581,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:06:53",
Duration_Decimal: 1.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -21600,7 +21600,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:52",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -21619,7 +21619,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:52",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21638,7 +21638,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:21:04",
Duration_Decimal: 1.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21657,7 +21657,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:17",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21676,7 +21676,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:36:18",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -21695,7 +21695,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:55",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -21714,7 +21714,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:49:53",
Duration_Decimal: 0.83,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -21733,7 +21733,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:39:31",
Duration_Decimal: 1.66,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -21752,7 +21752,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:00",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -21771,7 +21771,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:40:18",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -21790,7 +21790,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:27",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21809,7 +21809,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:44:48",
Duration_Decimal: 0.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21828,7 +21828,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:38",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21847,7 +21847,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:37",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -21866,7 +21866,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:47:26",
Duration_Decimal: 0.79,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -21885,7 +21885,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:38",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21904,7 +21904,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:00:43",
Duration_Decimal: 1.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21923,7 +21923,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:35",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21942,7 +21942,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:46",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -21961,7 +21961,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:34",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21980,7 +21980,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:39",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -21999,7 +21999,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:21",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22018,7 +22018,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:31",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22037,7 +22037,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:44:52",
Duration_Decimal: 1.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22056,7 +22056,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:00:59",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22075,7 +22075,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:46:49",
Duration_Decimal: 2.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22094,7 +22094,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:20",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22113,7 +22113,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:02",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22132,7 +22132,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:23",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22151,7 +22151,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:40:53",
Duration_Decimal: 0.68,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -22170,7 +22170,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:00:32",
Duration_Decimal: 1.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -22189,7 +22189,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:00",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22208,7 +22208,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:33:00",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22227,7 +22227,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:27",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22246,7 +22246,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:49:32",
Duration_Decimal: 0.83,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22265,7 +22265,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:08:43",
Duration_Decimal: 1.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22284,7 +22284,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:37",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22303,7 +22303,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:10:23",
Duration_Decimal: 2.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22322,7 +22322,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:40:26",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22341,7 +22341,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:47:16",
Duration_Decimal: 0.79,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22360,7 +22360,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:42:39",
Duration_Decimal: 1.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -22379,7 +22379,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:00",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22398,7 +22398,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:32:59",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22417,7 +22417,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:00",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22436,7 +22436,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:42:42",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22455,7 +22455,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:50:00",
Duration_Decimal: 0.83,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -22474,7 +22474,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:05",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22493,7 +22493,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:16",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22512,7 +22512,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:45:00",
Duration_Decimal: 0.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22531,7 +22531,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:15",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22550,7 +22550,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:32",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -22569,7 +22569,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:34",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -22588,7 +22588,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:57",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -22607,7 +22607,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:50",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -22626,7 +22626,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:25",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -22645,7 +22645,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:18",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -22664,7 +22664,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:40",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -22683,7 +22683,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:09",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -22702,7 +22702,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:26",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -22721,7 +22721,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:21:09",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -22740,7 +22740,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:21",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22759,7 +22759,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:09",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22778,7 +22778,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:52",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22797,7 +22797,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:49:44",
Duration_Decimal: 0.83,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22816,7 +22816,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:31",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22835,7 +22835,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:45",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22854,7 +22854,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:33",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22873,7 +22873,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:16",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22892,7 +22892,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:48:13",
Duration_Decimal: 0.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22911,7 +22911,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:36:38",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -22930,7 +22930,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:12",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22949,7 +22949,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:58:13",
Duration_Decimal: 0.97,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -22968,7 +22968,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:46:47",
Duration_Decimal: 0.78,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -22987,7 +22987,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:51",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23006,7 +23006,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:45:20",
Duration_Decimal: 0.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23025,7 +23025,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:57:04",
Duration_Decimal: 0.95,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23044,7 +23044,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:49",
Duration_Decimal: 0.45,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23063,7 +23063,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:40",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -23082,7 +23082,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:04",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -23101,7 +23101,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:43",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -23120,7 +23120,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:07",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -23139,7 +23139,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:27:52",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -23158,7 +23158,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:27:20",
Duration_Decimal: 1.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -23177,7 +23177,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:56:07",
Duration_Decimal: 1.94,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23196,7 +23196,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:48:47",
Duration_Decimal: 0.81,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23215,7 +23215,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:14",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23234,7 +23234,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:29",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23253,7 +23253,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:27:40",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -23272,7 +23272,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:05",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -23291,7 +23291,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:17",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -23310,7 +23310,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:15",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -23329,7 +23329,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:44",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23348,7 +23348,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:36:34",
Duration_Decimal: 1.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -23367,7 +23367,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:43:40",
Duration_Decimal: 1.73,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -23386,7 +23386,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:34:58",
Duration_Decimal: 0.58,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -23405,7 +23405,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:53:38",
Duration_Decimal: 0.89,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -23424,7 +23424,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:49:25",
Duration_Decimal: 0.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -23443,7 +23443,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:28:05",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -23462,7 +23462,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:01:34",
Duration_Decimal: 1.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -23481,7 +23481,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:32:03",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -23500,7 +23500,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:03",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -23519,7 +23519,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:56",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -23538,7 +23538,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:01",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -23557,7 +23557,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:31",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23576,7 +23576,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:40:09",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23595,7 +23595,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:49",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23614,7 +23614,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:46",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23633,7 +23633,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:06:32",
Duration_Decimal: 2.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23652,7 +23652,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:23:21",
Duration_Decimal: 2.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -23671,7 +23671,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:51:04",
Duration_Decimal: 1.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23690,7 +23690,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:34:05",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23709,7 +23709,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:01:00",
Duration_Decimal: 1.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23728,7 +23728,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:44:09",
Duration_Decimal: 1.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23747,7 +23747,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:59:28",
Duration_Decimal: 1.99,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -23766,7 +23766,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:40:26",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -23785,7 +23785,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:45:00",
Duration_Decimal: 0.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -23804,7 +23804,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:27",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -23823,7 +23823,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:38",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -23842,7 +23842,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:30",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23861,7 +23861,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:37:23",
Duration_Decimal: 2.62,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23880,7 +23880,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:47:09",
Duration_Decimal: 2.79,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23899,7 +23899,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:51",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -23918,7 +23918,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:31",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23937,7 +23937,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:52",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23956,7 +23956,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:03",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23975,7 +23975,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:12",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -23994,7 +23994,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:24",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -24013,7 +24013,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:16",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -24032,7 +24032,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:21",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -24051,7 +24051,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:48",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -24070,7 +24070,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:51:17",
Duration_Decimal: 0.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -24089,7 +24089,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:01",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -24108,7 +24108,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:04",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -24127,7 +24127,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:48",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -24146,7 +24146,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:09",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -24165,7 +24165,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:56",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -24184,7 +24184,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:41:27",
Duration_Decimal: 1.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -24203,7 +24203,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:44:40",
Duration_Decimal: 2.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -24222,7 +24222,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:26",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -24241,7 +24241,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:00",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -24260,7 +24260,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:22",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -24279,7 +24279,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:42:41",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -24298,7 +24298,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:51:27",
Duration_Decimal: 0.86,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -24317,7 +24317,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:00:00",
Duration_Decimal: 1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -24336,7 +24336,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:50:36",
Duration_Decimal: 0.84,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "CPS",
@@ -24355,7 +24355,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:42:35",
Duration_Decimal: 1.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -24374,7 +24374,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:39:00",
Duration_Decimal: 1.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -24393,7 +24393,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:34",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -24412,7 +24412,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:30",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -24431,7 +24431,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:48",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -24450,7 +24450,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:33",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Scientific Writing",
@@ -24469,7 +24469,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:04:21",
Duration_Decimal: 1.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -24488,7 +24488,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:00:40",
Duration_Decimal: 2.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -24507,7 +24507,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:59:22",
Duration_Decimal: 2.99,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -24526,7 +24526,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:10:24",
Duration_Decimal: 2.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -24545,7 +24545,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:20:37",
Duration_Decimal: 1.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Software Evolution",
@@ -24564,7 +24564,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:45:56",
Duration_Decimal: 1.77,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24583,7 +24583,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:50:17",
Duration_Decimal: 1.84,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24602,7 +24602,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:30:15",
Duration_Decimal: 1.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24621,7 +24621,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:42:39",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24640,7 +24640,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:55:25",
Duration_Decimal: 0.92,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24659,7 +24659,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:56:13",
Duration_Decimal: 0.94,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24678,7 +24678,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:53:50",
Duration_Decimal: 0.9,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24697,7 +24697,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:07:35",
Duration_Decimal: 1.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24716,7 +24716,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:34:35",
Duration_Decimal: 0.58,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24735,7 +24735,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:47",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24754,7 +24754,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:21:11",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24773,7 +24773,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:57",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24792,7 +24792,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:33",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24811,7 +24811,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:31",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24830,7 +24830,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:01:31",
Duration_Decimal: 1.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24849,7 +24849,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:34",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24868,7 +24868,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:09",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24887,7 +24887,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:53:00",
Duration_Decimal: 1.88,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24906,7 +24906,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "03:20:20",
Duration_Decimal: 3.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24925,7 +24925,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:33:54",
Duration_Decimal: 0.57,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24944,7 +24944,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:20",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24963,7 +24963,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:57:04",
Duration_Decimal: 0.95,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -24982,7 +24982,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:25",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25001,7 +25001,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "03:00:00",
Duration_Decimal: 3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25020,7 +25020,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "03:06:00",
Duration_Decimal: 3.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25039,7 +25039,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:55:05",
Duration_Decimal: 0.92,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25058,7 +25058,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:18:33",
Duration_Decimal: 2.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25077,7 +25077,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "03:11:54",
Duration_Decimal: 3.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -25096,7 +25096,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "04:05:00",
Duration_Decimal: 4.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -25115,7 +25115,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:00:00",
Duration_Decimal: 1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -25134,7 +25134,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:46",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -25153,7 +25153,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:45:53",
Duration_Decimal: 0.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -25172,7 +25172,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:43",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -25191,7 +25191,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:43",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25210,7 +25210,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:26",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -25229,7 +25229,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:44:43",
Duration_Decimal: 0.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -25248,7 +25248,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:30:00",
Duration_Decimal: 1.5,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -25267,7 +25267,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:51",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -25286,7 +25286,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:38",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25305,7 +25305,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:53",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -25324,7 +25324,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:44",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -25343,7 +25343,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:55:27",
Duration_Decimal: 0.92,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25362,7 +25362,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:06",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -25381,7 +25381,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:58",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25400,7 +25400,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:43:41",
Duration_Decimal: 0.73,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -25419,7 +25419,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:37:28",
Duration_Decimal: 0.62,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25438,7 +25438,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:49:50",
Duration_Decimal: 0.83,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25457,7 +25457,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:10",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25476,7 +25476,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:14:22",
Duration_Decimal: 2.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -25495,7 +25495,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:42",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25514,7 +25514,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:17:27",
Duration_Decimal: 1.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25533,7 +25533,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:14",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25552,7 +25552,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:18",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25571,7 +25571,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:28:55",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -25590,7 +25590,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:20",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25609,7 +25609,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:32",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25628,7 +25628,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:10",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25647,7 +25647,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:08",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25666,7 +25666,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:58",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25685,7 +25685,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:00:11",
Duration_Decimal: 0,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -25704,7 +25704,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:14",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25723,7 +25723,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:23",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -25742,7 +25742,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:46",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25761,7 +25761,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:20",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25780,7 +25780,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:26",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25799,7 +25799,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:57",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -25818,7 +25818,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:29:16",
Duration_Decimal: 1.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -25837,7 +25837,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:58:06",
Duration_Decimal: 0.97,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25856,7 +25856,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:39",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25875,7 +25875,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:54",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25894,7 +25894,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:21:46",
Duration_Decimal: 0.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -25913,7 +25913,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:57",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -25932,7 +25932,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:12:21",
Duration_Decimal: 1.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -25951,7 +25951,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:03",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -25970,7 +25970,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:44",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -25989,7 +25989,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:32:34",
Duration_Decimal: 0.54,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26008,7 +26008,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:35",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26027,7 +26027,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:03",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26046,7 +26046,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:34",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26065,7 +26065,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:52",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26084,7 +26084,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:38:32",
Duration_Decimal: 0.64,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26103,7 +26103,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:47",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26122,7 +26122,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:09",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -26141,7 +26141,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:13",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26160,7 +26160,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:19",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26179,7 +26179,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:07",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26198,7 +26198,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:06:50",
Duration_Decimal: 1.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26217,7 +26217,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:54",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26236,7 +26236,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:17",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -26255,7 +26255,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:05",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -26274,7 +26274,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:42",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -26293,7 +26293,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:53:21",
Duration_Decimal: 2.89,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -26312,7 +26312,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:37",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -26331,7 +26331,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:14:44",
Duration_Decimal: 2.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -26350,7 +26350,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:11",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Student Ambassador",
@@ -26369,7 +26369,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:02",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26388,7 +26388,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:27:39",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26407,7 +26407,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:50",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -26426,7 +26426,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:25",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26445,7 +26445,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:25",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26464,7 +26464,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:27:20",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -26483,7 +26483,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:27",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -26502,7 +26502,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "03:13:45",
Duration_Decimal: 3.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -26521,7 +26521,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:57:00",
Duration_Decimal: 0.95,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -26540,7 +26540,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:28:17",
Duration_Decimal: 2.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26559,7 +26559,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:43",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -26578,7 +26578,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:49",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -26597,7 +26597,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:44:32",
Duration_Decimal: 0.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -26616,7 +26616,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:22",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26635,7 +26635,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:11",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26654,7 +26654,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:56",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -26673,7 +26673,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:08:31",
Duration_Decimal: 2.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -26692,7 +26692,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:37:57",
Duration_Decimal: 1.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -26711,7 +26711,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:00:00",
Duration_Decimal: 2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26730,7 +26730,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:07:00",
Duration_Decimal: 1.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26749,7 +26749,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:10",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26768,7 +26768,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:12",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26787,7 +26787,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:21",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26806,7 +26806,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:06",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26825,7 +26825,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:07",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26844,7 +26844,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:30",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26863,7 +26863,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:57",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26882,7 +26882,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:26",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26901,7 +26901,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:20",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26920,7 +26920,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:04",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -26939,7 +26939,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:25",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26958,7 +26958,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:37",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26977,7 +26977,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:38",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -26996,7 +26996,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:33:11",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -27015,7 +27015,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:00:14",
Duration_Decimal: 0,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -27034,7 +27034,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:47:12",
Duration_Decimal: 1.79,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27053,7 +27053,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:15",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27072,7 +27072,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:15",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27091,7 +27091,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:08",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -27110,7 +27110,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:51:00",
Duration_Decimal: 0.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -27129,7 +27129,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:30",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27148,7 +27148,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:41:06",
Duration_Decimal: 0.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27167,7 +27167,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:52:26",
Duration_Decimal: 1.87,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -27186,7 +27186,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:28",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -27205,7 +27205,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:07",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27224,7 +27224,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:40",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27243,7 +27243,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:48",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27262,7 +27262,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:39:15",
Duration_Decimal: 1.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27281,7 +27281,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:28:08",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27300,7 +27300,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:38",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27319,7 +27319,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:33",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27338,7 +27338,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:53",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27357,7 +27357,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:43:47",
Duration_Decimal: 0.73,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27376,7 +27376,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:51",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27395,7 +27395,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:33:41",
Duration_Decimal: 0.56,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27414,7 +27414,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:37:57",
Duration_Decimal: 0.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -27433,7 +27433,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:24",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -27452,7 +27452,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:49",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27471,7 +27471,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:01:22",
Duration_Decimal: 1.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27490,7 +27490,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:38:59",
Duration_Decimal: 0.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27509,7 +27509,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:30",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27528,7 +27528,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:39:00",
Duration_Decimal: 0.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -27547,7 +27547,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:12",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -27566,7 +27566,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:51:08",
Duration_Decimal: 0.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -27585,7 +27585,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:30:26",
Duration_Decimal: 0.51,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -27604,7 +27604,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:36:15",
Duration_Decimal: 0.6,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -27623,7 +27623,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:22",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -27642,7 +27642,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:15",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -27661,7 +27661,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:40:10",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -27680,7 +27680,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:37:51",
Duration_Decimal: 1.63,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -27699,7 +27699,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:27:40",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -27718,7 +27718,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "06:48:02",
Duration_Decimal: 6.8,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -27737,7 +27737,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:18",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -27756,7 +27756,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:06",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -27775,7 +27775,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:00",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -27794,7 +27794,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:21",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -27813,7 +27813,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:45:12",
Duration_Decimal: 0.75,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -27832,7 +27832,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:16:47",
Duration_Decimal: 1.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -27851,7 +27851,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:33",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -27870,7 +27870,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:35",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -27889,7 +27889,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:05",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -27908,7 +27908,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:06",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -27927,7 +27927,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:12",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -27946,7 +27946,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:53",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -27965,7 +27965,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:25",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -27984,7 +27984,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "03:35:49",
Duration_Decimal: 3.6,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -28003,7 +28003,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:52:00",
Duration_Decimal: 2.87,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -28022,7 +28022,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:18",
Duration_Decimal: 0.14,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -28041,7 +28041,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:21",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -28060,7 +28060,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:51:12",
Duration_Decimal: 1.85,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -28079,7 +28079,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:01:04",
Duration_Decimal: 1.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -28098,7 +28098,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:47",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -28117,7 +28117,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:05",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28136,7 +28136,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:37",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -28155,7 +28155,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:33",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -28174,7 +28174,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:40",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -28193,7 +28193,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:18",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -28212,7 +28212,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:33",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -28231,7 +28231,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:02",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -28250,7 +28250,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:49",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -28269,7 +28269,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:29",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28288,7 +28288,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:27",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28307,7 +28307,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:18:41",
Duration_Decimal: 2.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28326,7 +28326,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:53:43",
Duration_Decimal: 1.9,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28345,7 +28345,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:29",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28364,7 +28364,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:11:42",
Duration_Decimal: 1.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -28383,7 +28383,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:48",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -28402,7 +28402,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:42",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28421,7 +28421,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:41:29",
Duration_Decimal: 0.69,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -28440,7 +28440,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:34",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -28459,7 +28459,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:14",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28478,7 +28478,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:54:47",
Duration_Decimal: 0.91,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28497,7 +28497,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:53",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28516,7 +28516,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:13",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28535,7 +28535,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:16",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28554,7 +28554,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:56",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28573,7 +28573,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:56",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28592,7 +28592,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:14",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28611,7 +28611,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:05",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28630,7 +28630,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:17",
Duration_Decimal: 0.49,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28649,7 +28649,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:36",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28668,7 +28668,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:52",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -28687,7 +28687,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:34",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28706,7 +28706,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:04",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28725,7 +28725,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:06",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -28744,7 +28744,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:08",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28763,7 +28763,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:33",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28782,7 +28782,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:48:58",
Duration_Decimal: 1.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -28801,7 +28801,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:03",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28820,7 +28820,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:00",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28839,7 +28839,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:43",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28858,7 +28858,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:30",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -28877,7 +28877,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:21:04",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28896,7 +28896,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:12",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28915,7 +28915,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:55",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28934,7 +28934,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:11",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28953,7 +28953,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:11",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28972,7 +28972,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:49:18",
Duration_Decimal: 0.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -28991,7 +28991,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:44",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29010,7 +29010,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:34",
Duration_Decimal: 0.03,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29029,7 +29029,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:15",
Duration_Decimal: 0.12,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29048,7 +29048,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:50",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29067,7 +29067,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:09",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -29086,7 +29086,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:54",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29105,7 +29105,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:27",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29124,7 +29124,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:57",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29143,7 +29143,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:00",
Duration_Decimal: 0.32,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29162,7 +29162,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:53",
Duration_Decimal: 0.3,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29181,7 +29181,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:56",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29200,7 +29200,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:42",
Duration_Decimal: 0.45,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29219,7 +29219,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:39:07",
Duration_Decimal: 0.65,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29238,7 +29238,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:00",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29257,7 +29257,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:51:24",
Duration_Decimal: 0.86,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -29276,7 +29276,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:20",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29295,7 +29295,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:56",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29314,7 +29314,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:59:52",
Duration_Decimal: 1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29333,7 +29333,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:43",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29352,7 +29352,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:02:08",
Duration_Decimal: 1.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29371,7 +29371,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:37",
Duration_Decimal: 0.19,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29390,7 +29390,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:35",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29409,7 +29409,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:44:33",
Duration_Decimal: 0.74,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29428,7 +29428,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:37",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29447,7 +29447,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:35",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29466,7 +29466,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:32:32",
Duration_Decimal: 0.54,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29485,7 +29485,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:56",
Duration_Decimal: 0.38,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29504,7 +29504,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:39:56",
Duration_Decimal: 0.67,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -29523,7 +29523,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:48",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29542,7 +29542,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:38",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29561,7 +29561,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:11",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29580,7 +29580,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:39",
Duration_Decimal: 0.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29599,7 +29599,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:36:34",
Duration_Decimal: 0.61,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29618,7 +29618,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:08",
Duration_Decimal: 0.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29637,7 +29637,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:21:26",
Duration_Decimal: 2.36,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29656,7 +29656,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:28:29",
Duration_Decimal: 0.47,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29675,7 +29675,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:34",
Duration_Decimal: 0.21,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29694,7 +29694,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:25:06",
Duration_Decimal: 1.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29713,7 +29713,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:43",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29732,7 +29732,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:01:25",
Duration_Decimal: 2.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29751,7 +29751,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:28",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29770,7 +29770,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:39",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29789,7 +29789,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:11",
Duration_Decimal: 0.39,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29808,7 +29808,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:44",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29827,7 +29827,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:50:29",
Duration_Decimal: 0.84,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29846,7 +29846,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "02:04:08",
Duration_Decimal: 2.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29865,7 +29865,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:57",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29884,7 +29884,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:55:06",
Duration_Decimal: 0.92,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -29903,7 +29903,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:00:21",
Duration_Decimal: 1.01,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29922,7 +29922,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:40",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29941,7 +29941,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:58:39",
Duration_Decimal: 0.98,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -29960,7 +29960,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:20",
Duration_Decimal: 0.27,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29979,7 +29979,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:45:36",
Duration_Decimal: 0.76,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -29998,7 +29998,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:07",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30017,7 +30017,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:44",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -30036,7 +30036,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:31:16",
Duration_Decimal: 1.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30055,7 +30055,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:22",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30074,7 +30074,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:42",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -30093,7 +30093,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:02:23",
Duration_Decimal: 1.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30112,7 +30112,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:10:00",
Duration_Decimal: 1.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -30131,7 +30131,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:03:06",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -30150,7 +30150,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:57",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -30169,7 +30169,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:09",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30188,7 +30188,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:52:46",
Duration_Decimal: 0.88,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -30207,7 +30207,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:39:29",
Duration_Decimal: 1.66,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30226,7 +30226,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:27:18",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -30245,7 +30245,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:54",
Duration_Decimal: 0.1,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30264,7 +30264,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:51:46",
Duration_Decimal: 0.86,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30283,7 +30283,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:20",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -30302,7 +30302,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:24:47",
Duration_Decimal: 0.41,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30321,7 +30321,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:32:49",
Duration_Decimal: 0.55,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -30340,7 +30340,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:39",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30359,7 +30359,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:17:09",
Duration_Decimal: 1.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30378,7 +30378,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:09",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30397,7 +30397,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:50",
Duration_Decimal: 0.53,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30416,7 +30416,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:35:36",
Duration_Decimal: 0.59,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -30435,7 +30435,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:07",
Duration_Decimal: 0.17,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30454,7 +30454,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:25",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30473,7 +30473,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:39:39",
Duration_Decimal: 0.66,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30492,7 +30492,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:19",
Duration_Decimal: 0.07,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30511,7 +30511,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:46",
Duration_Decimal: 0.2,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30530,7 +30530,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:18",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30549,7 +30549,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:42:25",
Duration_Decimal: 0.71,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30568,7 +30568,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:48:56",
Duration_Decimal: 0.82,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30587,7 +30587,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:11:00",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30606,7 +30606,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:09",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30625,7 +30625,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:39:40",
Duration_Decimal: 0.66,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -30644,7 +30644,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:52",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -30663,7 +30663,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:07:32",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -30682,7 +30682,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:22:00",
Duration_Decimal: 0.37,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30701,7 +30701,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:03:18",
Duration_Decimal: 1.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30720,7 +30720,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:29",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30739,7 +30739,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:33",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -30758,7 +30758,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:28",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -30777,7 +30777,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:39",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30796,7 +30796,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:25:08",
Duration_Decimal: 1.42,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30815,7 +30815,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:12:57",
Duration_Decimal: 0.22,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30834,7 +30834,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:30",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30853,7 +30853,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:36",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30872,7 +30872,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:42",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -30891,7 +30891,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:25:32",
Duration_Decimal: 0.43,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30910,7 +30910,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:09",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30929,7 +30929,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:32:27",
Duration_Decimal: 0.54,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30948,7 +30948,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:26:15",
Duration_Decimal: 0.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -30967,7 +30967,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:19:56",
Duration_Decimal: 0.33,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -30986,7 +30986,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:58:53",
Duration_Decimal: 0.98,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31005,7 +31005,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "03:54:40",
Duration_Decimal: 3.91,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31024,7 +31024,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:10:52",
Duration_Decimal: 0.18,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31043,7 +31043,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:52",
Duration_Decimal: 0.05,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31062,7 +31062,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:15:31",
Duration_Decimal: 0.26,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31081,7 +31081,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:13:49",
Duration_Decimal: 0.23,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31100,7 +31100,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:31:00",
Duration_Decimal: 0.52,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31119,7 +31119,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:28",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31138,7 +31138,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:26",
Duration_Decimal: 0.34,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31157,7 +31157,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:23:44",
Duration_Decimal: 0.4,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31176,7 +31176,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:01",
Duration_Decimal: 0.13,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -31195,7 +31195,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:16:50",
Duration_Decimal: 0.28,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -31214,7 +31214,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:46",
Duration_Decimal: 0.25,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -31233,7 +31233,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:18",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31252,7 +31252,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:14:34",
Duration_Decimal: 0.24,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -31271,7 +31271,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:22",
Duration_Decimal: 0.16,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31290,7 +31290,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:26:14",
Duration_Decimal: 1.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31309,7 +31309,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "03:03:24",
Duration_Decimal: 3.06,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31328,7 +31328,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "03:27:41",
Duration_Decimal: 3.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31347,7 +31347,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "03:51:25",
Duration_Decimal: 3.86,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31366,7 +31366,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:43:25",
Duration_Decimal: 0.72,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -31385,7 +31385,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:01:05",
Duration_Decimal: 0.02,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31404,7 +31404,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:07",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31423,7 +31423,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "01:26:26",
Duration_Decimal: 1.44,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31442,7 +31442,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:04:34",
Duration_Decimal: 0.08,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31461,7 +31461,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:36",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -31480,7 +31480,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:27:52",
Duration_Decimal: 0.46,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31499,7 +31499,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:17:20",
Duration_Decimal: 0.29,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -31518,7 +31518,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:08:54",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -31537,7 +31537,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:58",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -31556,7 +31556,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:18:28",
Duration_Decimal: 0.31,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -31575,7 +31575,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:20:52",
Duration_Decimal: 0.35,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Preparation Master Project",
@@ -31594,7 +31594,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:09:08",
Duration_Decimal: 0.15,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -31613,7 +31613,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:06:21",
Duration_Decimal: 0.11,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -31632,7 +31632,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:34",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Requirements Engineering",
@@ -31651,7 +31651,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:29:04",
Duration_Decimal: 0.48,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "SSVT",
@@ -31670,7 +31670,7 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:02:32",
Duration_Decimal: 0.04,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
{
Project: "Uni-Other",
@@ -31689,6 +31689,6 @@ export const clockifyDataSet2 = [
"Duration (h)": "00:05:11",
Duration_Decimal: 0.09,
"Billable Rate (USD)": 0,
- "Billable Amount (USD)": 0
+ "Billable Amount (USD)": 0,
},
-]
\ No newline at end of file
+]
diff --git a/src/index.css b/src/index.css
index e8d3ed4..0e4a93b 100644
--- a/src/index.css
+++ b/src/index.css
@@ -53,4 +53,4 @@ footer {
max-width: 640px;
margin: 0 auto;
text-align: center;
-}
\ No newline at end of file
+}
diff --git a/src/index.js b/src/index.js
index 12505d9..d5022a7 100644
--- a/src/index.js
+++ b/src/index.js
@@ -3,6 +3,7 @@ import ReactDOM from "react-dom/client"
import "./index.css"
import TimelineAreaChart from "./components/TimelineAreaChart"
import TotalPieChart from "./components/TotalPieChart"
+import TotalAreaChart from "./components/TotalTimelineAreaChart"
import SingleFileUploader, { fileContent } from "./components/SingleFileUpload"
import { GeistProvider, Page, CssBaseline, Tabs } from "@geist-ui/core"
@@ -38,7 +39,10 @@ export default function App() {
-
+
+
+
+