From c90db5f5d39864eecf8f3da261b2e48be5fe3050 Mon Sep 17 00:00:00 2001 From: Jason Warren Date: Wed, 26 Nov 2025 15:05:03 +0000 Subject: [PATCH 01/10] style: increase readability of main code files --- index.html | 172 ++++++++++++++++++++++++++--------------------------- main.js | 143 +++++++++++++++----------------------------- 2 files changed, 133 insertions(+), 182 deletions(-) diff --git a/index.html b/index.html index a90697c..b492497 100644 --- a/index.html +++ b/index.html @@ -1,101 +1,101 @@ - - - - ILR File Creator + + + + ILR File Creator - - - + + + - - + + - -
-

ILR File Creator

- -

2526.1.38.0

-
+ +
+

ILR File Creator

+ +

2526.1.38.0

+
-
-
-

Input

+
+
+

Input

-
-
- - -
+ +
+ + +
-
- - -
+
+ + +
-
- -
-
-
+
+ +
+ +
-
-

Output

-
+
+

Output

+
-
-

Error Log

-
-
-
+
+

Error Log

+
+
+ -
+
- - + + + Aug 2025 +
2526.1.38.0
+ + + + Jason Warren + + + 2024 +
2024.x.x.x
+ + + + Shaughn Anderson + + + + + + diff --git a/main.js b/main.js index 4f54f05..5f34e96 100644 --- a/main.js +++ b/main.js @@ -20,18 +20,22 @@ const dateOnlyString = isoWithoutMsOrZ.replace(/T.*/, ""); // File System const tempDir = path.join(os.tmpdir(), `electron-ilr_file_creator-xmls`); + if (!fs.existsSync(tempDir)) { fs.mkdirSync(tempDir, { recursive: true }); } + let XMLfilePath = ""; // Version & Year let versionForExport = ""; + const formatDateTime = (date) => { const yyyymmdd = date.toISOString().split("T")[0].replace(/-/g, ""); const hhmmss = date.toTimeString().split(" ")[0].replace(/:/g, ""); return `${yyyymmdd}-${hhmmss}`; }; + function convertAcademicYear(yearString) { // Validate input if (!/^\d{4}$/.test(yearString)) { @@ -115,6 +119,7 @@ ipcMain.on("upload-csv", (event, dataArray, version) => { // Test for Empty Values const CheckBoxPattern = /0 checked out/; + for (let I = 1; I < dataArray.length; I++) { for (let i = 0; i < dataArray[I].length; i++) { if (CheckBoxPattern.test(dataArray[I][i])) { @@ -154,7 +159,7 @@ ipcMain.on("upload-csv", (event, dataArray, version) => { ? [{ LLDDCat: dataArray[i][13], PrimaryLLDD: 1 }] : undefined, LearnerEmploymentStatus: [ - ...(dataArray[i][18] + /* Employment Status #1 */ ...(dataArray[i][18] ? [ { EmpStat: dataArray[i][18], @@ -162,62 +167,35 @@ ipcMain.on("upload-csv", (event, dataArray, version) => { EmpId: dataArray[i][19] || undefined, EmploymentStatusMonitoring: [ ...(dataArray[i][23] - ? [ - { - ESMType: "LOE", - ESMCode: dataArray[i][23], - }, - ] - : []), + ? [{ ESMType: "LOE", ESMCode: dataArray[i][23] }] + : [] + ), ...(dataArray[i][24] - ? [ - { - ESMType: "EII", - ESMCode: dataArray[i][24], - }, - ] - : []), + ? [{ ESMType: "EII", ESMCode: dataArray[i][24] }] + : [] + ), ...(dataArray[i][25] - ? [ - { - ESMType: "LOU", - ESMCode: dataArray[i][25], - }, - ] - : []), + ? [{ ESMType: "LOU", ESMCode: dataArray[i][25] }] + : [] + ), ...(dataArray[i][21] - ? [ - { - ESMType: "SEI", - ESMCode: "1", - }, - ] - : []), + ? [{ ESMType: "SEI", ESMCode: "1" }] + : [] + ), ...(dataArray[i][20] - ? [ - { - ESMType: "SEM", - ESMCode: "1", - }, - { - ESMType: "OET", - ESMCode: "2", - }, - ] - : []), + ? [ { ESMType: "SEM", ESMCode: "1" }, { ESMType: "OET", ESMCode: "2" } ] + : [] + ), ...(dataArray[i][22] - ? [ - { - ESMType: "OET", - ESMCode: "1", - }, - ] - : []), + ? [{ ESMType: "OET", ESMCode: "1" }] + : [] + ), ], }, ] - : []), - ...(dataArray[i][27] + : [/* No Employment Status #1 */] + ), + /* Employment Status #2 */ ...(dataArray[i][27] ? [ { EmpStat: dataArray[i][27], @@ -225,49 +203,30 @@ ipcMain.on("upload-csv", (event, dataArray, version) => { EmpId: dataArray[i][28] || undefined, EmploymentStatusMonitoring: [ ...(dataArray[i][29] - ? [ - { - ESMType: "EII", - ESMCode: dataArray[i][29], - }, - ] - : []), + ? [{ ESMType: "EII", ESMCode: dataArray[i][29] }] + : [] + ), ...(dataArray[i][33] - ? [ - { - ESMType: "LOE", - ESMCode: dataArray[i][33], - }, - ] - : []), + ? [{ ESMType: "LOE", ESMCode: dataArray[i][33] }] + : [] + ), ...(dataArray[i][31] - ? [ - { - ESMType: "SEI", - ESMCode: "1", - }, - ] - : []), + ? [{ ESMType: "SEI", ESMCode: "1" }] + : [] + ), ...(dataArray[i][32] - ? [ - { - ESMType: "SEM", - ESMCode: "1", - }, - ] - : []), + ? [{ ESMType: "SEM", ESMCode: "1" }] + : [] + ), ...(dataArray[i][30] - ? [ - { - ESMType: "OET", - ESMCode: "1", - }, - ] - : []), + ? [{ ESMType: "OET", ESMCode: "1" }] + : [] + ), ], }, ] - : []), + : [/* No Employment Status #2 */] + ), ], LearningDelivery: [ // First aim - only include if required fields are present @@ -694,19 +653,10 @@ ipcMain.on("upload-csv", (event, dataArray, version) => { // Create the XML file let xml = xmlbuilder - .create( - { - Message: xmlBase, - }, - { - encoding: "utf-8", - }, - ) + .create({ Message: xmlBase }, { encoding: "utf-8" }) .att("xmlns", `ESFA/ILR/${convertAcademicYear(version.split(".")[0])}`) .att("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance") - .end({ - pretty: true, - }); + .end({ pretty: true }); // Build the XML file path XMLfilePath = path.join( @@ -725,6 +675,7 @@ ipcMain.on("upload-csv", (event, dataArray, version) => { ); } }); + let xsd = fs.readFileSync(path.join(__dirname, "schemafile.xsd"), "utf-8"); /* TODO: Replace the leaky library From 072e5012b42ad5d812ba50f01b85387a9e5dbd25 Mon Sep 17 00:00:00 2001 From: Jason Warren Date: Wed, 26 Nov 2025 15:35:58 +0000 Subject: [PATCH 02/10] refactor: extract learner mapping to utility function MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Extracted the CSV-to-XML learner object mapping from main.js into a dedicated pushLearners utility function in src/utils/pushLearners.js. This improves code organisation and readability in the main file whilst preserving all existing functionality. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- main.js | 1050 ++++++++++++++++++------------------- src/utils/pushLearners.js | 525 +++++++++++++++++++ 2 files changed, 1050 insertions(+), 525 deletions(-) create mode 100644 src/utils/pushLearners.js diff --git a/main.js b/main.js index 5f34e96..baa7437 100644 --- a/main.js +++ b/main.js @@ -12,6 +12,7 @@ const fs = require("fs"); const xmlbuilder = require("xmlbuilder"); const { Worker } = require("worker_threads"); const os = require("os"); +const { pushLearners } = require("./src/utils/pushLearners"); // Date Setter const currentDate = new Date(Date()); @@ -122,534 +123,533 @@ ipcMain.on("upload-csv", (event, dataArray, version) => { for (let I = 1; I < dataArray.length; I++) { for (let i = 0; i < dataArray[I].length; i++) { - if (CheckBoxPattern.test(dataArray[I][i])) { - dataArray[I][i] = ""; - } + if (CheckBoxPattern.test(dataArray[I][i])) { dataArray[I][i] = "" } } } - + // Map CSV values to XML structure - for (let i = 1; i < dataArray.length; i++) { - refNumber = i.toString().padStart(4, "0"); - xmlBase.Learner.push({ - LearnRefNumber: refNumber, - ULN: dataArray[i][2], - FamilyName: dataArray[i][4].trim(), - GivenNames: dataArray[i][3].trim(), - DateOfBirth: dataArray[i][6], - Ethnicity: dataArray[i][8], - Sex: dataArray[i][5], - LLDDHealthProb: dataArray[i][12], - NINumber: dataArray[i][7].replace(/\s+/g, "").trim(), - PlanLearnHours: dataArray[i][16] || undefined, - PostcodePrior: dataArray[i][9].trim(), - Postcode: dataArray[i][10].trim(), - AddLine1: dataArray[i][11] - .replace(/[^a-zA-Z0-9\s]/g, "") - .trim() - .substring(0, 50), - TelNo: dataArray[i][12] || undefined, - LLDDHealthProb: dataArray[i][13] != "99" ? 1 : 9, - PriorAttain: { - PriorLevel: dataArray[i][15], - DateLevelApp: dataArray[i][14], - }, - LLDDandHealthProblem: - dataArray[i][13] != "99" - ? [{ LLDDCat: dataArray[i][13], PrimaryLLDD: 1 }] - : undefined, - LearnerEmploymentStatus: [ - /* Employment Status #1 */ ...(dataArray[i][18] - ? [ - { - EmpStat: dataArray[i][18], - DateEmpStatApp: dataArray[i][17], - EmpId: dataArray[i][19] || undefined, - EmploymentStatusMonitoring: [ - ...(dataArray[i][23] - ? [{ ESMType: "LOE", ESMCode: dataArray[i][23] }] - : [] - ), - ...(dataArray[i][24] - ? [{ ESMType: "EII", ESMCode: dataArray[i][24] }] - : [] - ), - ...(dataArray[i][25] - ? [{ ESMType: "LOU", ESMCode: dataArray[i][25] }] - : [] - ), - ...(dataArray[i][21] - ? [{ ESMType: "SEI", ESMCode: "1" }] - : [] - ), - ...(dataArray[i][20] - ? [ { ESMType: "SEM", ESMCode: "1" }, { ESMType: "OET", ESMCode: "2" } ] - : [] - ), - ...(dataArray[i][22] - ? [{ ESMType: "OET", ESMCode: "1" }] - : [] - ), - ], - }, - ] - : [/* No Employment Status #1 */] - ), - /* Employment Status #2 */ ...(dataArray[i][27] - ? [ - { - EmpStat: dataArray[i][27], - DateEmpStatApp: dataArray[i][26], - EmpId: dataArray[i][28] || undefined, - EmploymentStatusMonitoring: [ - ...(dataArray[i][29] - ? [{ ESMType: "EII", ESMCode: dataArray[i][29] }] - : [] - ), - ...(dataArray[i][33] - ? [{ ESMType: "LOE", ESMCode: dataArray[i][33] }] - : [] - ), - ...(dataArray[i][31] - ? [{ ESMType: "SEI", ESMCode: "1" }] - : [] - ), - ...(dataArray[i][32] - ? [{ ESMType: "SEM", ESMCode: "1" }] - : [] - ), - ...(dataArray[i][30] - ? [{ ESMType: "OET", ESMCode: "1" }] - : [] - ), - ], - }, - ] - : [/* No Employment Status #2 */] - ), - ], - LearningDelivery: [ - // First aim - only include if required fields are present - ...(dataArray[i][34] - ? [ - { - // Aim type (programme aim 1) - LearnAimRef: dataArray[i][35].trim(), // Programme aim 1 Learning ref - AimType: dataArray[i][34].trim(), // Aim type (programme aim 1) - AimSeqNumber: "1", - LearnStartDate: dataArray[i][36], // Start date (aim 1) - LearnPlanEndDate: dataArray[i][37], // Planned end date (aim 1) - FundModel: dataArray[i][38], // Funding module (aim 1) - PHours: dataArray[i][42] || undefined, // Planned hours (aim 1) - OTJActHours: dataArray[i][43] || undefined, // Actual hours (aim 1) - ProgType: dataArray[i][39], // Programme type (aim 1) - StdCode: dataArray[i][40] || undefined, // Apprentice standard (aim 1) - DelLocPostCode: dataArray[i][41].trim(), // Delivery postcode (aim 1) - EPAOrgID: dataArray[i][45].trim() || undefined, // EPAO ID (aim 1) - ConRefNumber: dataArray[i][44].trim() || undefined, // Contract Ref (aim 1) - CompStatus: dataArray[i][60] || undefined, // Completion status (aim 1) - LearnActEndDate: dataArray[i][61] || undefined, // Actual end date (aim 1) - WithdrawReason: dataArray[i][64] || undefined, // Withdrawal reason (aim 1) - Outcome: dataArray[i][63] || undefined, // Outcome (aim 1) - AchDate: dataArray[i][62] || undefined, // Achievement date (aim 1) - OutGrade: dataArray[i][65] || undefined, // Outcome grade (aim 1) - SWSupAimId: crypto.randomUUID(), - LearningDeliveryFAM: [ - ...(dataArray[i][50] - ? [ - { - // Funding indicator (aim 1) - LearnDelFAMType: "FFI", - LearnDelFAMCode: dataArray[i][50], - }, - ] - : []), - ...(dataArray[i][51] - ? [ - { - // Source of funding (aim 1) - LearnDelFAMType: "SOF", - LearnDelFAMCode: dataArray[i][51], - }, - ] - : []), - ...(dataArray[i][46] - ? [ - { - // Contract type (aim 1) - LearnDelFAMType: dataArray[i][46], - LearnDelFAMCode: dataArray[i][47], - LearnDelFAMDateFrom: dataArray[i][48] || undefined, // Date applies from (aim 1) - LearnDelFAMDateTo: dataArray[i][49] || undefined, // Date applies to (aim 1) - }, - ] - : []), - ], - AppFinRecord: [ - ...(dataArray[i][52] - ? [ - { - // Financial type 1 (aim 1) - AFinType: dataArray[i][52], - AFinCode: dataArray[i][53] || undefined, // Financial code 1 (aim 1) - AFinDate: dataArray[i][54] || undefined, // Financial start date 1 (aim 1) - AFinAmount: dataArray[i][55] || undefined, // Training price (aim 1) - }, - ] - : []), - ...(dataArray[i][56] - ? [ - { - // Financial type 2 (aim 1) - AFinType: dataArray[i][56], - AFinCode: dataArray[i][57] || undefined, // Financial code 2 (aim 1) - AFinDate: dataArray[i][58] || undefined, // Financial start date 2 (aim 1) - AFinAmount: dataArray[i][59] || undefined, // Total assessment price (aim 1) - }, - ] - : []), - ], - }, - ] - : []), - - // Second aim - only include if required fields are present - ...(dataArray[i][66] - ? [ - { - LearnAimRef: dataArray[i][67].trim(), // Programme aim 2 Learning ref - AimType: dataArray[i][66].trim(), // Aim type (programme aim 2) - AimSeqNumber: "2", - LearnStartDate: dataArray[i][68], // Start date (aim 2) - LearnPlanEndDate: dataArray[i][69], // Planned end date (aim 2) - FundModel: dataArray[i][70], // Funding module (aim 2) - PHours: dataArray[i][74] || undefined, // Planned hours (aim 2) - ProgType: dataArray[i][71], // Programme type (aim 2) - StdCode: dataArray[i][72] || undefined, // Apprentice standard (aim 2) - DelLocPostCode: dataArray[i][73].trim(), // Delivery postcode (aim 2) - OTJActHours: dataArray[i][75] || undefined, // Actual hours (aim 2) - EPAOrgID: dataArray[i][77].trim() || undefined, // EPAO ID (aim 2) - ConRefNumber: dataArray[i][76].trim() || undefined, // Contract Ref (aim 2) - CompStatus: dataArray[i][92] || undefined, // Completion status (aim 2) - LearnActEndDate: dataArray[i][93] || undefined, // Actual end date (aim 2) - WithdrawReason: dataArray[i][96] || undefined, // Withdrawal reason (aim 2) - Outcome: dataArray[i][95] || undefined, // Outcome (aim 2) - AchDate: dataArray[i][94] || undefined, // Achievement date (aim 2) - OutGrade: dataArray[i][97] || undefined, // Outcome grade (aim 2) - SWSupAimId: crypto.randomUUID(), - LearningDeliveryFAM: [ - ...(dataArray[i][82] - ? [ - { - // Funding indicator (aim 2) - LearnDelFAMType: "FFI", - LearnDelFAMCode: dataArray[i][82], - }, - ] - : []), - ...(dataArray[i][83] - ? [ - { - // Source of funding (aim 2) - LearnDelFAMType: "SOF", - LearnDelFAMCode: dataArray[i][83], - }, - ] - : []), - ...(dataArray[i][78] - ? [ - { - // Contract type (aim 2) - LearnDelFAMType: dataArray[i][78], - LearnDelFAMCode: dataArray[i][79], - LearnDelFAMDateFrom: dataArray[i][80] || undefined, // Date applies from (aim 2) - LearnDelFAMDateTo: dataArray[i][81] || undefined, // Date applies to (aim 2) - }, - ] - : []), - ], - AppFinRecord: [ - ...(dataArray[i][84] - ? [ - { - // Financial type 1 (aim 2) - AFinType: dataArray[i][84], - AFinCode: dataArray[i][85] || undefined, // Financial code 1 (aim 2) - AFinDate: dataArray[i][86] || undefined, // Financial start date 1 (aim 2) - AFinAmount: dataArray[i][87] || undefined, // Training price (aim 2) - }, - ] - : []), - ...(dataArray[i][88] - ? [ - { - // Financial type 2 (aim 2) - AFinType: dataArray[i][88], - AFinCode: dataArray[i][89] || undefined, // Financial code 2 (aim 2) - AFinDate: dataArray[i][90] || undefined, // Financial start date 2 (aim 2) - AFinAmount: dataArray[i][91] || undefined, // Total assessment price (aim 2) - }, - ] - : []), - ], - }, - ] - : []), - - // Third aim - only include if required fields are present - ...(dataArray[i][98] - ? [ - { - // Aim type (programme aim 3) - LearnAimRef: dataArray[i][99].trim(), // Programme aim 3 Learning ref - AimType: dataArray[i][98].trim(), // Aim type (programme aim 3) - AimSeqNumber: "3", - LearnStartDate: dataArray[i][100], // Start date (aim 3) - LearnPlanEndDate: dataArray[i][101], // Planned end date (aim 3) - FundModel: dataArray[i][102], // Funding module (aim 3) - ProgType: dataArray[i][103], // Programme type (aim 3) - StdCode: dataArray[i][104] || undefined, // Apprentice standard (aim 3) - DelLocPostCode: dataArray[i][105].trim(), // Delivery postcode (aim 3) - PHours: dataArray[i][106] || undefined, // Planned hours (aim 3) - OTJActHours: dataArray[i][107] || undefined, // Actual hours (aim 3) - EPAOrgID: dataArray[i][109].trim() || undefined, // EPAO ID (aim 3) - ConRefNumber: dataArray[i][108].trim() || undefined, // Contract Ref (aim 3) - CompStatus: dataArray[i][124] || undefined, // Completion status (aim 3) - LearnActEndDate: dataArray[i][125] || undefined, // Actual end date (aim 3) - WithdrawReason: dataArray[i][127] || undefined, // Withdrawal reason (aim 3) - Outcome: dataArray[i][128] || undefined, // Outcome (aim 3) - AchDate: dataArray[i][126] || undefined, // Achievement date (aim 3) - OutGrade: dataArray[i][129] || undefined, // Outcome grade (aim 3) - SWSupAimId: crypto.randomUUID(), - LearningDeliveryFAM: [ - ...(dataArray[i][114] - ? [ - { - // Funding indicator (aim 3) - LearnDelFAMType: "FFI", - LearnDelFAMCode: dataArray[i][114], - }, - ] - : []), - ...(dataArray[i][115] - ? [ - { - // Source of funding (aim 3) - LearnDelFAMType: "SOF", - LearnDelFAMCode: dataArray[i][115], - }, - ] - : []), - ...(dataArray[i][110] - ? [ - { - // Contract type (aim 3) - LearnDelFAMType: dataArray[i][110], - LearnDelFAMCode: dataArray[i][111], - LearnDelFAMDateFrom: dataArray[i][112] || undefined, // Date applies from (aim 3) - LearnDelFAMDateTo: dataArray[i][113] || undefined, // Date applies to (aim 3) - }, - ] - : []), - ], - AppFinRecord: [ - ...(dataArray[i][116] - ? [ - { - // Financial type 1 (aim 3) - AFinType: dataArray[i][116], - AFinCode: dataArray[i][117] || undefined, // Financial code 1 (aim 3) - AFinDate: dataArray[i][118] || undefined, // Financial start date 1 (aim 3) - AFinAmount: dataArray[i][119] || undefined, // Training price (aim 3) - }, - ] - : []), - ...(dataArray[i][120] - ? [ - { - // Financial type 2 (aim 3) - AFinType: dataArray[i][120], - AFinCode: dataArray[i][121] || undefined, // Financial code 2 (aim 3) - AFinDate: dataArray[i][122] || undefined, // Financial start date 2 (aim 3) - AFinAmount: dataArray[i][123] || undefined, // Total assessment price (aim 3) - }, - ] - : []), - ], - }, - ] - : []), - - // Fourth aim - only include if required fields are present - ...(dataArray[i][130] - ? [ - { - // Aim type (programme aim 4) - LearnAimRef: dataArray[i][131].trim(), // Programme aim 4 Learning ref - AimType: dataArray[i][130].trim(), // Aim type (programme aim 4) - AimSeqNumber: "4", - LearnStartDate: dataArray[i][132], // Start date (aim 4) - LearnPlanEndDate: dataArray[i][133], // Planned end date (aim 4) - FundModel: dataArray[i][134], // Funding module (aim 4) - PHours: dataArray[i][138] || undefined, // Planned hours (aim 4) - ProgType: dataArray[i][135], // Programme type (aim 4) - StdCode: dataArray[i][136] || undefined, // Apprentice standard (aim 4) - DelLocPostCode: dataArray[i][137].trim(), // Delivery postcode (aim 4) - OTJActHours: dataArray[i][139] || undefined, // Actual hours (aim 4) - EPAOrgID: dataArray[i][141].trim() || undefined, // EPAO ID (aim 4) - ConRefNumber: dataArray[i][140].trim() || undefined, // Contract Ref (aim 4) - CompStatus: dataArray[i][156] || undefined, // Completion status (aim 4) - LearnActEndDate: dataArray[i][157] || undefined, // Actual end date (aim 4) - WithdrawReason: dataArray[i][159] || undefined, // Withdrawal reason (aim 4) - Outcome: dataArray[i][160] || undefined, // Outcome (aim 4) - AchDate: dataArray[i][158] || undefined, // Achievement date (aim 4) - OutGrade: dataArray[i][161] || undefined, // Outcome grade (aim 4) - SWSupAimId: crypto.randomUUID(), - LearningDeliveryFAM: [ - ...(dataArray[i][146] - ? [ - { - // Funding indicator (aim 4) - LearnDelFAMType: "FFI", - LearnDelFAMCode: dataArray[i][146], - }, - ] - : []), - ...(dataArray[i][147] - ? [ - { - // Source of funding (aim 4) - LearnDelFAMType: "SOF", - LearnDelFAMCode: dataArray[i][147], - }, - ] - : []), - ...(dataArray[i][142] - ? [ - { - // Contract type (aim 4) - LearnDelFAMType: dataArray[i][142], - LearnDelFAMCode: dataArray[i][143], - LearnDelFAMDateFrom: dataArray[i][144] || undefined, // Date applies from (aim 4) - LearnDelFAMDateTo: dataArray[i][145] || undefined, // Date applies to (aim 4) - }, - ] - : []), - ], - AppFinRecord: [ - ...(dataArray[i][148] - ? [ - { - // Financial type 1 (aim 4) - AFinType: dataArray[i][148], - AFinCode: dataArray[i][149] || undefined, // Financial code 1 (aim 4) - AFinDate: dataArray[i][150] || undefined, // Financial start date 1 (aim 4) - AFinAmount: dataArray[i][151] || undefined, // Training price (aim 4) - }, - ] - : []), - ...(dataArray[i][152] - ? [ - { - // Financial type 2 (aim 4) - AFinType: dataArray[i][152], - AFinCode: dataArray[i][153] || undefined, // Financial code 2 (aim 4) - AFinDate: dataArray[i][154] || undefined, // Financial start date 2 (aim 4) - AFinAmount: dataArray[i][155] || undefined, // Total assessment price (aim 4) - }, - ] - : []), - ], - }, - ] - : []), - - // Fifth aim - only include if required fields are present - ...(dataArray[i][162] - ? [ - { - // Aim type (programme aim 5) - LearnAimRef: dataArray[i][163].trim(), // Programme aim 5 Learning ref - AimType: dataArray[i][162].trim(), // Aim type (programme aim 5) - AimSeqNumber: "5", - LearnStartDate: dataArray[i][164], // Start date (aim 5) - LearnPlanEndDate: dataArray[i][165], // Planned end date (aim 5) - FundModel: dataArray[i][166], // Funding module (aim 5) - ProgType: dataArray[i][167], // Programme type (aim 5) - StdCode: dataArray[i][168] || undefined, // Apprentice standard (aim 5) - DelLocPostCode: dataArray[i][169].trim(), // Delivery postcode (aim 5) - PHours: dataArray[i][170] || undefined, // Planned hours (aim 5) - OTJActHours: dataArray[i][171] || undefined, // Actual hours (aim 5) - EPAOrgID: dataArray[i][173].trim() || undefined, // EPAO ID (aim 5) - ConRefNumber: dataArray[i][172].trim() || undefined, // Contract Ref (aim 5) - CompStatus: dataArray[i][188] || undefined, // Completion status (aim 5) - LearnActEndDate: dataArray[i][189] || undefined, // Actual end date (aim 5) - WithdrawReason: dataArray[i][192] || undefined, // Withdrawal reason (aim 5) - Outcome: dataArray[i][191] || undefined, // Outcome (aim 5) - AchDate: dataArray[i][190] || undefined, // Achievement date (aim 5) - OutGrade: dataArray[i][193] || undefined, // Outcome grade (aim 5) - SWSupAimId: crypto.randomUUID(), - LearningDeliveryFAM: [ - ...(dataArray[i][178] - ? [ - { - // Funding indicator (aim 5) - LearnDelFAMType: "FFI", - LearnDelFAMCode: dataArray[i][178], - }, - ] - : []), - ...(dataArray[i][179] - ? [ - { - // Source of funding (aim 5) - LearnDelFAMType: "SOF", - LearnDelFAMCode: dataArray[i][179], - }, - ] - : []), - ...(dataArray[i][174] - ? [ - { - // Contract type (aim 5) - LearnDelFAMType: dataArray[i][174], - LearnDelFAMCode: dataArray[i][175], - LearnDelFAMDateFrom: dataArray[i][176] || undefined, // Date applies from (aim 5) - LearnDelFAMDateTo: dataArray[i][177] || undefined, // Date applies to (aim 5) - }, - ] - : []), - ], - AppFinRecord: [ - ...(dataArray[i][180] - ? [ - { - // Financial type 1 (aim 5) - AFinType: dataArray[i][180], - AFinCode: dataArray[i][181] || undefined, // Financial code 1 (aim 5) - AFinDate: dataArray[i][182] || undefined, // Financial start date 1 (aim 5) - AFinAmount: dataArray[i][183] || undefined, // Training price (aim 5) - }, - ] - : []), - ...(dataArray[i][184] - ? [ - { - // Financial type 2 (aim 5) - AFinType: dataArray[i][184], - AFinCode: dataArray[i][185] || undefined, // Financial code 2 (aim 5) - AFinDate: dataArray[i][186] || undefined, // Financial start date 2 (aim 5) - AFinAmount: dataArray[i][187] || undefined, // Training price (aim 5) - }, - ] - : []), - ], - }, - ] - : []), - ], - }); - } + // for (let i = 1; i < dataArray.length; i++) { + // refNumber = i.toString().padStart(4, "0"); + // xmlBase.Learner.push({ + // LearnRefNumber: refNumber, + // ULN: dataArray[i][2], + // FamilyName: dataArray[i][4].trim(), + // GivenNames: dataArray[i][3].trim(), + // DateOfBirth: dataArray[i][6], + // Ethnicity: dataArray[i][8], + // Sex: dataArray[i][5], + // LLDDHealthProb: dataArray[i][12], + // NINumber: dataArray[i][7].replace(/\s+/g, "").trim(), + // PlanLearnHours: dataArray[i][16] || undefined, + // PostcodePrior: dataArray[i][9].trim(), + // Postcode: dataArray[i][10].trim(), + // AddLine1: dataArray[i][11] + // .replace(/[^a-zA-Z0-9\s]/g, "") + // .trim() + // .substring(0, 50), + // TelNo: dataArray[i][12] || undefined, + // LLDDHealthProb: dataArray[i][13] != "99" ? 1 : 9, + // PriorAttain: { + // PriorLevel: dataArray[i][15], + // DateLevelApp: dataArray[i][14], + // }, + // LLDDandHealthProblem: + // dataArray[i][13] != "99" + // ? [{ LLDDCat: dataArray[i][13], PrimaryLLDD: 1 }] + // : undefined, + // LearnerEmploymentStatus: [ + // /* Employment Status #1 */ ...(dataArray[i][18] + // ? [ + // { + // EmpStat: dataArray[i][18], + // DateEmpStatApp: dataArray[i][17], + // EmpId: dataArray[i][19] || undefined, + // EmploymentStatusMonitoring: [ + // ...(dataArray[i][23] + // ? [{ ESMType: "LOE", ESMCode: dataArray[i][23] }] + // : [] + // ), + // ...(dataArray[i][24] + // ? [{ ESMType: "EII", ESMCode: dataArray[i][24] }] + // : [] + // ), + // ...(dataArray[i][25] + // ? [{ ESMType: "LOU", ESMCode: dataArray[i][25] }] + // : [] + // ), + // ...(dataArray[i][21] + // ? [{ ESMType: "SEI", ESMCode: "1" }] + // : [] + // ), + // ...(dataArray[i][20] + // ? [ { ESMType: "SEM", ESMCode: "1" }, { ESMType: "OET", ESMCode: "2" } ] + // : [] + // ), + // ...(dataArray[i][22] + // ? [{ ESMType: "OET", ESMCode: "1" }] + // : [] + // ), + // ], + // }, + // ] + // : [/* No Employment Status #1 */] + // ), + // /* Employment Status #2 */ ...(dataArray[i][27] + // ? [ + // { + // EmpStat: dataArray[i][27], + // DateEmpStatApp: dataArray[i][26], + // EmpId: dataArray[i][28] || undefined, + // EmploymentStatusMonitoring: [ + // ...(dataArray[i][29] + // ? [{ ESMType: "EII", ESMCode: dataArray[i][29] }] + // : [] + // ), + // ...(dataArray[i][33] + // ? [{ ESMType: "LOE", ESMCode: dataArray[i][33] }] + // : [] + // ), + // ...(dataArray[i][31] + // ? [{ ESMType: "SEI", ESMCode: "1" }] + // : [] + // ), + // ...(dataArray[i][32] + // ? [{ ESMType: "SEM", ESMCode: "1" }] + // : [] + // ), + // ...(dataArray[i][30] + // ? [{ ESMType: "OET", ESMCode: "1" }] + // : [] + // ), + // ], + // }, + // ] + // : [/* No Employment Status #2 */] + // ), + // ], + // LearningDelivery: [ + // // First aim - only include if required fields are present + // ...(dataArray[i][34] + // ? [ + // { + // // Aim type (programme aim 1) + // LearnAimRef: dataArray[i][35].trim(), // Programme aim 1 Learning ref + // AimType: dataArray[i][34].trim(), // Aim type (programme aim 1) + // AimSeqNumber: "1", + // LearnStartDate: dataArray[i][36], // Start date (aim 1) + // LearnPlanEndDate: dataArray[i][37], // Planned end date (aim 1) + // FundModel: dataArray[i][38], // Funding module (aim 1) + // PHours: dataArray[i][42] || undefined, // Planned hours (aim 1) + // OTJActHours: dataArray[i][43] || undefined, // Actual hours (aim 1) + // ProgType: dataArray[i][39], // Programme type (aim 1) + // StdCode: dataArray[i][40] || undefined, // Apprentice standard (aim 1) + // DelLocPostCode: dataArray[i][41].trim(), // Delivery postcode (aim 1) + // EPAOrgID: dataArray[i][45].trim() || undefined, // EPAO ID (aim 1) + // ConRefNumber: dataArray[i][44].trim() || undefined, // Contract Ref (aim 1) + // CompStatus: dataArray[i][60] || undefined, // Completion status (aim 1) + // LearnActEndDate: dataArray[i][61] || undefined, // Actual end date (aim 1) + // WithdrawReason: dataArray[i][64] || undefined, // Withdrawal reason (aim 1) + // Outcome: dataArray[i][63] || undefined, // Outcome (aim 1) + // AchDate: dataArray[i][62] || undefined, // Achievement date (aim 1) + // OutGrade: dataArray[i][65] || undefined, // Outcome grade (aim 1) + // SWSupAimId: crypto.randomUUID(), + // LearningDeliveryFAM: [ + // ...(dataArray[i][50] + // ? [ + // { + // // Funding indicator (aim 1) + // LearnDelFAMType: "FFI", + // LearnDelFAMCode: dataArray[i][50], + // }, + // ] + // : []), + // ...(dataArray[i][51] + // ? [ + // { + // // Source of funding (aim 1) + // LearnDelFAMType: "SOF", + // LearnDelFAMCode: dataArray[i][51], + // }, + // ] + // : []), + // ...(dataArray[i][46] + // ? [ + // { + // // Contract type (aim 1) + // LearnDelFAMType: dataArray[i][46], + // LearnDelFAMCode: dataArray[i][47], + // LearnDelFAMDateFrom: dataArray[i][48] || undefined, // Date applies from (aim 1) + // LearnDelFAMDateTo: dataArray[i][49] || undefined, // Date applies to (aim 1) + // }, + // ] + // : []), + // ], + // AppFinRecord: [ + // ...(dataArray[i][52] + // ? [ + // { + // // Financial type 1 (aim 1) + // AFinType: dataArray[i][52], + // AFinCode: dataArray[i][53] || undefined, // Financial code 1 (aim 1) + // AFinDate: dataArray[i][54] || undefined, // Financial start date 1 (aim 1) + // AFinAmount: dataArray[i][55] || undefined, // Training price (aim 1) + // }, + // ] + // : []), + // ...(dataArray[i][56] + // ? [ + // { + // // Financial type 2 (aim 1) + // AFinType: dataArray[i][56], + // AFinCode: dataArray[i][57] || undefined, // Financial code 2 (aim 1) + // AFinDate: dataArray[i][58] || undefined, // Financial start date 2 (aim 1) + // AFinAmount: dataArray[i][59] || undefined, // Total assessment price (aim 1) + // }, + // ] + // : []), + // ], + // }, + // ] + // : []), + + // // Second aim - only include if required fields are present + // ...(dataArray[i][66] + // ? [ + // { + // LearnAimRef: dataArray[i][67].trim(), // Programme aim 2 Learning ref + // AimType: dataArray[i][66].trim(), // Aim type (programme aim 2) + // AimSeqNumber: "2", + // LearnStartDate: dataArray[i][68], // Start date (aim 2) + // LearnPlanEndDate: dataArray[i][69], // Planned end date (aim 2) + // FundModel: dataArray[i][70], // Funding module (aim 2) + // PHours: dataArray[i][74] || undefined, // Planned hours (aim 2) + // ProgType: dataArray[i][71], // Programme type (aim 2) + // StdCode: dataArray[i][72] || undefined, // Apprentice standard (aim 2) + // DelLocPostCode: dataArray[i][73].trim(), // Delivery postcode (aim 2) + // OTJActHours: dataArray[i][75] || undefined, // Actual hours (aim 2) + // EPAOrgID: dataArray[i][77].trim() || undefined, // EPAO ID (aim 2) + // ConRefNumber: dataArray[i][76].trim() || undefined, // Contract Ref (aim 2) + // CompStatus: dataArray[i][92] || undefined, // Completion status (aim 2) + // LearnActEndDate: dataArray[i][93] || undefined, // Actual end date (aim 2) + // WithdrawReason: dataArray[i][96] || undefined, // Withdrawal reason (aim 2) + // Outcome: dataArray[i][95] || undefined, // Outcome (aim 2) + // AchDate: dataArray[i][94] || undefined, // Achievement date (aim 2) + // OutGrade: dataArray[i][97] || undefined, // Outcome grade (aim 2) + // SWSupAimId: crypto.randomUUID(), + // LearningDeliveryFAM: [ + // ...(dataArray[i][82] + // ? [ + // { + // // Funding indicator (aim 2) + // LearnDelFAMType: "FFI", + // LearnDelFAMCode: dataArray[i][82], + // }, + // ] + // : []), + // ...(dataArray[i][83] + // ? [ + // { + // // Source of funding (aim 2) + // LearnDelFAMType: "SOF", + // LearnDelFAMCode: dataArray[i][83], + // }, + // ] + // : []), + // ...(dataArray[i][78] + // ? [ + // { + // // Contract type (aim 2) + // LearnDelFAMType: dataArray[i][78], + // LearnDelFAMCode: dataArray[i][79], + // LearnDelFAMDateFrom: dataArray[i][80] || undefined, // Date applies from (aim 2) + // LearnDelFAMDateTo: dataArray[i][81] || undefined, // Date applies to (aim 2) + // }, + // ] + // : []), + // ], + // AppFinRecord: [ + // ...(dataArray[i][84] + // ? [ + // { + // // Financial type 1 (aim 2) + // AFinType: dataArray[i][84], + // AFinCode: dataArray[i][85] || undefined, // Financial code 1 (aim 2) + // AFinDate: dataArray[i][86] || undefined, // Financial start date 1 (aim 2) + // AFinAmount: dataArray[i][87] || undefined, // Training price (aim 2) + // }, + // ] + // : []), + // ...(dataArray[i][88] + // ? [ + // { + // // Financial type 2 (aim 2) + // AFinType: dataArray[i][88], + // AFinCode: dataArray[i][89] || undefined, // Financial code 2 (aim 2) + // AFinDate: dataArray[i][90] || undefined, // Financial start date 2 (aim 2) + // AFinAmount: dataArray[i][91] || undefined, // Total assessment price (aim 2) + // }, + // ] + // : []), + // ], + // }, + // ] + // : []), + + // // Third aim - only include if required fields are present + // ...(dataArray[i][98] + // ? [ + // { + // // Aim type (programme aim 3) + // LearnAimRef: dataArray[i][99].trim(), // Programme aim 3 Learning ref + // AimType: dataArray[i][98].trim(), // Aim type (programme aim 3) + // AimSeqNumber: "3", + // LearnStartDate: dataArray[i][100], // Start date (aim 3) + // LearnPlanEndDate: dataArray[i][101], // Planned end date (aim 3) + // FundModel: dataArray[i][102], // Funding module (aim 3) + // ProgType: dataArray[i][103], // Programme type (aim 3) + // StdCode: dataArray[i][104] || undefined, // Apprentice standard (aim 3) + // DelLocPostCode: dataArray[i][105].trim(), // Delivery postcode (aim 3) + // PHours: dataArray[i][106] || undefined, // Planned hours (aim 3) + // OTJActHours: dataArray[i][107] || undefined, // Actual hours (aim 3) + // EPAOrgID: dataArray[i][109].trim() || undefined, // EPAO ID (aim 3) + // ConRefNumber: dataArray[i][108].trim() || undefined, // Contract Ref (aim 3) + // CompStatus: dataArray[i][124] || undefined, // Completion status (aim 3) + // LearnActEndDate: dataArray[i][125] || undefined, // Actual end date (aim 3) + // WithdrawReason: dataArray[i][127] || undefined, // Withdrawal reason (aim 3) + // Outcome: dataArray[i][128] || undefined, // Outcome (aim 3) + // AchDate: dataArray[i][126] || undefined, // Achievement date (aim 3) + // OutGrade: dataArray[i][129] || undefined, // Outcome grade (aim 3) + // SWSupAimId: crypto.randomUUID(), + // LearningDeliveryFAM: [ + // ...(dataArray[i][114] + // ? [ + // { + // // Funding indicator (aim 3) + // LearnDelFAMType: "FFI", + // LearnDelFAMCode: dataArray[i][114], + // }, + // ] + // : []), + // ...(dataArray[i][115] + // ? [ + // { + // // Source of funding (aim 3) + // LearnDelFAMType: "SOF", + // LearnDelFAMCode: dataArray[i][115], + // }, + // ] + // : []), + // ...(dataArray[i][110] + // ? [ + // { + // // Contract type (aim 3) + // LearnDelFAMType: dataArray[i][110], + // LearnDelFAMCode: dataArray[i][111], + // LearnDelFAMDateFrom: dataArray[i][112] || undefined, // Date applies from (aim 3) + // LearnDelFAMDateTo: dataArray[i][113] || undefined, // Date applies to (aim 3) + // }, + // ] + // : []), + // ], + // AppFinRecord: [ + // ...(dataArray[i][116] + // ? [ + // { + // // Financial type 1 (aim 3) + // AFinType: dataArray[i][116], + // AFinCode: dataArray[i][117] || undefined, // Financial code 1 (aim 3) + // AFinDate: dataArray[i][118] || undefined, // Financial start date 1 (aim 3) + // AFinAmount: dataArray[i][119] || undefined, // Training price (aim 3) + // }, + // ] + // : []), + // ...(dataArray[i][120] + // ? [ + // { + // // Financial type 2 (aim 3) + // AFinType: dataArray[i][120], + // AFinCode: dataArray[i][121] || undefined, // Financial code 2 (aim 3) + // AFinDate: dataArray[i][122] || undefined, // Financial start date 2 (aim 3) + // AFinAmount: dataArray[i][123] || undefined, // Total assessment price (aim 3) + // }, + // ] + // : []), + // ], + // }, + // ] + // : []), + + // // Fourth aim - only include if required fields are present + // ...(dataArray[i][130] + // ? [ + // { + // // Aim type (programme aim 4) + // LearnAimRef: dataArray[i][131].trim(), // Programme aim 4 Learning ref + // AimType: dataArray[i][130].trim(), // Aim type (programme aim 4) + // AimSeqNumber: "4", + // LearnStartDate: dataArray[i][132], // Start date (aim 4) + // LearnPlanEndDate: dataArray[i][133], // Planned end date (aim 4) + // FundModel: dataArray[i][134], // Funding module (aim 4) + // PHours: dataArray[i][138] || undefined, // Planned hours (aim 4) + // ProgType: dataArray[i][135], // Programme type (aim 4) + // StdCode: dataArray[i][136] || undefined, // Apprentice standard (aim 4) + // DelLocPostCode: dataArray[i][137].trim(), // Delivery postcode (aim 4) + // OTJActHours: dataArray[i][139] || undefined, // Actual hours (aim 4) + // EPAOrgID: dataArray[i][141].trim() || undefined, // EPAO ID (aim 4) + // ConRefNumber: dataArray[i][140].trim() || undefined, // Contract Ref (aim 4) + // CompStatus: dataArray[i][156] || undefined, // Completion status (aim 4) + // LearnActEndDate: dataArray[i][157] || undefined, // Actual end date (aim 4) + // WithdrawReason: dataArray[i][159] || undefined, // Withdrawal reason (aim 4) + // Outcome: dataArray[i][160] || undefined, // Outcome (aim 4) + // AchDate: dataArray[i][158] || undefined, // Achievement date (aim 4) + // OutGrade: dataArray[i][161] || undefined, // Outcome grade (aim 4) + // SWSupAimId: crypto.randomUUID(), + // LearningDeliveryFAM: [ + // ...(dataArray[i][146] + // ? [ + // { + // // Funding indicator (aim 4) + // LearnDelFAMType: "FFI", + // LearnDelFAMCode: dataArray[i][146], + // }, + // ] + // : []), + // ...(dataArray[i][147] + // ? [ + // { + // // Source of funding (aim 4) + // LearnDelFAMType: "SOF", + // LearnDelFAMCode: dataArray[i][147], + // }, + // ] + // : []), + // ...(dataArray[i][142] + // ? [ + // { + // // Contract type (aim 4) + // LearnDelFAMType: dataArray[i][142], + // LearnDelFAMCode: dataArray[i][143], + // LearnDelFAMDateFrom: dataArray[i][144] || undefined, // Date applies from (aim 4) + // LearnDelFAMDateTo: dataArray[i][145] || undefined, // Date applies to (aim 4) + // }, + // ] + // : []), + // ], + // AppFinRecord: [ + // ...(dataArray[i][148] + // ? [ + // { + // // Financial type 1 (aim 4) + // AFinType: dataArray[i][148], + // AFinCode: dataArray[i][149] || undefined, // Financial code 1 (aim 4) + // AFinDate: dataArray[i][150] || undefined, // Financial start date 1 (aim 4) + // AFinAmount: dataArray[i][151] || undefined, // Training price (aim 4) + // }, + // ] + // : []), + // ...(dataArray[i][152] + // ? [ + // { + // // Financial type 2 (aim 4) + // AFinType: dataArray[i][152], + // AFinCode: dataArray[i][153] || undefined, // Financial code 2 (aim 4) + // AFinDate: dataArray[i][154] || undefined, // Financial start date 2 (aim 4) + // AFinAmount: dataArray[i][155] || undefined, // Total assessment price (aim 4) + // }, + // ] + // : []), + // ], + // }, + // ] + // : []), + + // // Fifth aim - only include if required fields are present + // ...(dataArray[i][162] + // ? [ + // { + // // Aim type (programme aim 5) + // LearnAimRef: dataArray[i][163].trim(), // Programme aim 5 Learning ref + // AimType: dataArray[i][162].trim(), // Aim type (programme aim 5) + // AimSeqNumber: "5", + // LearnStartDate: dataArray[i][164], // Start date (aim 5) + // LearnPlanEndDate: dataArray[i][165], // Planned end date (aim 5) + // FundModel: dataArray[i][166], // Funding module (aim 5) + // ProgType: dataArray[i][167], // Programme type (aim 5) + // StdCode: dataArray[i][168] || undefined, // Apprentice standard (aim 5) + // DelLocPostCode: dataArray[i][169].trim(), // Delivery postcode (aim 5) + // PHours: dataArray[i][170] || undefined, // Planned hours (aim 5) + // OTJActHours: dataArray[i][171] || undefined, // Actual hours (aim 5) + // EPAOrgID: dataArray[i][173].trim() || undefined, // EPAO ID (aim 5) + // ConRefNumber: dataArray[i][172].trim() || undefined, // Contract Ref (aim 5) + // CompStatus: dataArray[i][188] || undefined, // Completion status (aim 5) + // LearnActEndDate: dataArray[i][189] || undefined, // Actual end date (aim 5) + // WithdrawReason: dataArray[i][192] || undefined, // Withdrawal reason (aim 5) + // Outcome: dataArray[i][191] || undefined, // Outcome (aim 5) + // AchDate: dataArray[i][190] || undefined, // Achievement date (aim 5) + // OutGrade: dataArray[i][193] || undefined, // Outcome grade (aim 5) + // SWSupAimId: crypto.randomUUID(), + // LearningDeliveryFAM: [ + // ...(dataArray[i][178] + // ? [ + // { + // // Funding indicator (aim 5) + // LearnDelFAMType: "FFI", + // LearnDelFAMCode: dataArray[i][178], + // }, + // ] + // : []), + // ...(dataArray[i][179] + // ? [ + // { + // // Source of funding (aim 5) + // LearnDelFAMType: "SOF", + // LearnDelFAMCode: dataArray[i][179], + // }, + // ] + // : []), + // ...(dataArray[i][174] + // ? [ + // { + // // Contract type (aim 5) + // LearnDelFAMType: dataArray[i][174], + // LearnDelFAMCode: dataArray[i][175], + // LearnDelFAMDateFrom: dataArray[i][176] || undefined, // Date applies from (aim 5) + // LearnDelFAMDateTo: dataArray[i][177] || undefined, // Date applies to (aim 5) + // }, + // ] + // : []), + // ], + // AppFinRecord: [ + // ...(dataArray[i][180] + // ? [ + // { + // // Financial type 1 (aim 5) + // AFinType: dataArray[i][180], + // AFinCode: dataArray[i][181] || undefined, // Financial code 1 (aim 5) + // AFinDate: dataArray[i][182] || undefined, // Financial start date 1 (aim 5) + // AFinAmount: dataArray[i][183] || undefined, // Training price (aim 5) + // }, + // ] + // : []), + // ...(dataArray[i][184] + // ? [ + // { + // // Financial type 2 (aim 5) + // AFinType: dataArray[i][184], + // AFinCode: dataArray[i][185] || undefined, // Financial code 2 (aim 5) + // AFinDate: dataArray[i][186] || undefined, // Financial start date 2 (aim 5) + // AFinAmount: dataArray[i][187] || undefined, // Training price (aim 5) + // }, + // ] + // : []), + // ], + // }, + // ] + // : []), + // ], + // }); + // } + pushLearners(dataArray, xmlBase); // Create the XML file let xml = xmlbuilder diff --git a/src/utils/pushLearners.js b/src/utils/pushLearners.js new file mode 100644 index 0000000..88f931b --- /dev/null +++ b/src/utils/pushLearners.js @@ -0,0 +1,525 @@ +function pushLearners(dataArray, xmlBase) { + for (let i = 1; i < dataArray.length; i++) { + const refNumber = i + .toString() + .padStart(4, "0"); + + xmlBase.Learner.push( + { + LearnRefNumber: refNumber, + ULN: dataArray[i][2], + FamilyName: dataArray[i][4].trim(), + GivenNames: dataArray[i][3].trim(), + DateOfBirth: dataArray[i][6], + Ethnicity: dataArray[i][8], + Sex: dataArray[i][5], + LLDDHealthProb: dataArray[i][12], + NINumber: dataArray[i][7].replace(/\s+/g, "").trim(), + PlanLearnHours: dataArray[i][16] || undefined, + PostcodePrior: dataArray[i][9].trim(), + Postcode: dataArray[i][10].trim(), + AddLine1: dataArray[i][11] + .replace(/[^a-zA-Z0-9\s]/g, "") + .trim() + .substring(0, 50), + TelNo: dataArray[i][12] || undefined, + LLDDHealthProb: dataArray[i][13] != "99" ? 1 : 9, + PriorAttain: { + PriorLevel: dataArray[i][15], + DateLevelApp: dataArray[i][14], + }, + LLDDandHealthProblem: dataArray[i][13] != "99" + ? [{ LLDDCat: dataArray[i][13], PrimaryLLDD: 1 }] + : undefined, + LearnerEmploymentStatus: [ + ...(dataArray[i][18] /* Employment Status #1 */ + ? [{ + EmpStat: dataArray[i][18], + DateEmpStatApp: dataArray[i][17], + EmpId: dataArray[i][19] || undefined, + EmploymentStatusMonitoring: [ + ...(dataArray[i][23] + ? [{ ESMType: "LOE", ESMCode: dataArray[i][23] }] + : [] + ), + ...(dataArray[i][24] + ? [{ ESMType: "EII", ESMCode: dataArray[i][24] }] + : [] + ), + ...(dataArray[i][25] + ? [{ ESMType: "LOU", ESMCode: dataArray[i][25] }] + : [] + ), + ...(dataArray[i][21] + ? [{ ESMType: "SEI", ESMCode: "1" }] + : [] + ), + ...(dataArray[i][20] + ? [{ ESMType: "SEM", ESMCode: "1" }, { ESMType: "OET", ESMCode: "2" }] + : [] + ), + ...(dataArray[i][22] + ? [{ ESMType: "OET", ESMCode: "1" }] + : [] + ), + ], + }] + : [/* No Employment Status #1 */] + ), + ...(dataArray[i][27] /* Employment Status #2 */ + ? [{ + EmpStat: dataArray[i][27], + DateEmpStatApp: dataArray[i][26], + EmpId: dataArray[i][28] || undefined, + EmploymentStatusMonitoring: [ + ...(dataArray[i][29] + ? [{ ESMType: "EII", ESMCode: dataArray[i][29] }] + : [] + ), + ...(dataArray[i][33] + ? [{ ESMType: "LOE", ESMCode: dataArray[i][33] }] + : [] + ), + ...(dataArray[i][31] + ? [{ ESMType: "SEI", ESMCode: "1" }] + : [] + ), + ...(dataArray[i][32] + ? [{ ESMType: "SEM", ESMCode: "1" }] + : [] + ), + ...(dataArray[i][30] + ? [{ ESMType: "OET", ESMCode: "1" }] + : [] + ), + ], + }] + : [/* No Employment Status #2 */] + ), + ], + LearningDelivery: [ + // First aim - only include if required fields are present + ...(dataArray[i][34] + ? [ + { + // Aim type (programme aim 1) + LearnAimRef: dataArray[i][35].trim(), // Programme aim 1 Learning ref + AimType: dataArray[i][34].trim(), // Aim type (programme aim 1) + AimSeqNumber: "1", + LearnStartDate: dataArray[i][36], // Start date (aim 1) + LearnPlanEndDate: dataArray[i][37], // Planned end date (aim 1) + FundModel: dataArray[i][38], // Funding module (aim 1) + PHours: dataArray[i][42] || undefined, // Planned hours (aim 1) + OTJActHours: dataArray[i][43] || undefined, // Actual hours (aim 1) + ProgType: dataArray[i][39], // Programme type (aim 1) + StdCode: dataArray[i][40] || undefined, // Apprentice standard (aim 1) + DelLocPostCode: dataArray[i][41].trim(), // Delivery postcode (aim 1) + EPAOrgID: dataArray[i][45].trim() || undefined, // EPAO ID (aim 1) + ConRefNumber: dataArray[i][44].trim() || undefined, // Contract Ref (aim 1) + CompStatus: dataArray[i][60] || undefined, // Completion status (aim 1) + LearnActEndDate: dataArray[i][61] || undefined, // Actual end date (aim 1) + WithdrawReason: dataArray[i][64] || undefined, // Withdrawal reason (aim 1) + Outcome: dataArray[i][63] || undefined, // Outcome (aim 1) + AchDate: dataArray[i][62] || undefined, // Achievement date (aim 1) + OutGrade: dataArray[i][65] || undefined, // Outcome grade (aim 1) + SWSupAimId: crypto.randomUUID(), + LearningDeliveryFAM: [ + ...(dataArray[i][50] + ? [ + { + // Funding indicator (aim 1) + LearnDelFAMType: "FFI", + LearnDelFAMCode: dataArray[i][50], + }, + ] + : []), + ...(dataArray[i][51] + ? [ + { + // Source of funding (aim 1) + LearnDelFAMType: "SOF", + LearnDelFAMCode: dataArray[i][51], + }, + ] + : []), + ...(dataArray[i][46] + ? [ + { + // Contract type (aim 1) + LearnDelFAMType: dataArray[i][46], + LearnDelFAMCode: dataArray[i][47], + LearnDelFAMDateFrom: dataArray[i][48] || undefined, // Date applies from (aim 1) + LearnDelFAMDateTo: dataArray[i][49] || undefined, // Date applies to (aim 1) + }, + ] + : []), + ], + AppFinRecord: [ + ...(dataArray[i][52] + ? [ + { + // Financial type 1 (aim 1) + AFinType: dataArray[i][52], + AFinCode: dataArray[i][53] || undefined, // Financial code 1 (aim 1) + AFinDate: dataArray[i][54] || undefined, // Financial start date 1 (aim 1) + AFinAmount: dataArray[i][55] || undefined, // Training price (aim 1) + }, + ] + : []), + ...(dataArray[i][56] + ? [ + { + // Financial type 2 (aim 1) + AFinType: dataArray[i][56], + AFinCode: dataArray[i][57] || undefined, // Financial code 2 (aim 1) + AFinDate: dataArray[i][58] || undefined, // Financial start date 2 (aim 1) + AFinAmount: dataArray[i][59] || undefined, // Total assessment price (aim 1) + }, + ] + : []), + ], + }, + ] + : []), + + // Second aim - only include if required fields are present + ...(dataArray[i][66] + ? [ + { + LearnAimRef: dataArray[i][67].trim(), // Programme aim 2 Learning ref + AimType: dataArray[i][66].trim(), // Aim type (programme aim 2) + AimSeqNumber: "2", + LearnStartDate: dataArray[i][68], // Start date (aim 2) + LearnPlanEndDate: dataArray[i][69], // Planned end date (aim 2) + FundModel: dataArray[i][70], // Funding module (aim 2) + PHours: dataArray[i][74] || undefined, // Planned hours (aim 2) + ProgType: dataArray[i][71], // Programme type (aim 2) + StdCode: dataArray[i][72] || undefined, // Apprentice standard (aim 2) + DelLocPostCode: dataArray[i][73].trim(), // Delivery postcode (aim 2) + OTJActHours: dataArray[i][75] || undefined, // Actual hours (aim 2) + EPAOrgID: dataArray[i][77].trim() || undefined, // EPAO ID (aim 2) + ConRefNumber: dataArray[i][76].trim() || undefined, // Contract Ref (aim 2) + CompStatus: dataArray[i][92] || undefined, // Completion status (aim 2) + LearnActEndDate: dataArray[i][93] || undefined, // Actual end date (aim 2) + WithdrawReason: dataArray[i][96] || undefined, // Withdrawal reason (aim 2) + Outcome: dataArray[i][95] || undefined, // Outcome (aim 2) + AchDate: dataArray[i][94] || undefined, // Achievement date (aim 2) + OutGrade: dataArray[i][97] || undefined, // Outcome grade (aim 2) + SWSupAimId: crypto.randomUUID(), + LearningDeliveryFAM: [ + ...(dataArray[i][82] + ? [ + { + // Funding indicator (aim 2) + LearnDelFAMType: "FFI", + LearnDelFAMCode: dataArray[i][82], + }, + ] + : []), + ...(dataArray[i][83] + ? [ + { + // Source of funding (aim 2) + LearnDelFAMType: "SOF", + LearnDelFAMCode: dataArray[i][83], + }, + ] + : []), + ...(dataArray[i][78] + ? [ + { + // Contract type (aim 2) + LearnDelFAMType: dataArray[i][78], + LearnDelFAMCode: dataArray[i][79], + LearnDelFAMDateFrom: dataArray[i][80] || undefined, // Date applies from (aim 2) + LearnDelFAMDateTo: dataArray[i][81] || undefined, // Date applies to (aim 2) + }, + ] + : []), + ], + AppFinRecord: [ + ...(dataArray[i][84] + ? [ + { + // Financial type 1 (aim 2) + AFinType: dataArray[i][84], + AFinCode: dataArray[i][85] || undefined, // Financial code 1 (aim 2) + AFinDate: dataArray[i][86] || undefined, // Financial start date 1 (aim 2) + AFinAmount: dataArray[i][87] || undefined, // Training price (aim 2) + }, + ] + : []), + ...(dataArray[i][88] + ? [ + { + // Financial type 2 (aim 2) + AFinType: dataArray[i][88], + AFinCode: dataArray[i][89] || undefined, // Financial code 2 (aim 2) + AFinDate: dataArray[i][90] || undefined, // Financial start date 2 (aim 2) + AFinAmount: dataArray[i][91] || undefined, // Total assessment price (aim 2) + }, + ] + : []), + ], + }, + ] + : []), + + // Third aim - only include if required fields are present + ...(dataArray[i][98] + ? [ + { + // Aim type (programme aim 3) + LearnAimRef: dataArray[i][99].trim(), // Programme aim 3 Learning ref + AimType: dataArray[i][98].trim(), // Aim type (programme aim 3) + AimSeqNumber: "3", + LearnStartDate: dataArray[i][100], // Start date (aim 3) + LearnPlanEndDate: dataArray[i][101], // Planned end date (aim 3) + FundModel: dataArray[i][102], // Funding module (aim 3) + ProgType: dataArray[i][103], // Programme type (aim 3) + StdCode: dataArray[i][104] || undefined, // Apprentice standard (aim 3) + DelLocPostCode: dataArray[i][105].trim(), // Delivery postcode (aim 3) + PHours: dataArray[i][106] || undefined, // Planned hours (aim 3) + OTJActHours: dataArray[i][107] || undefined, // Actual hours (aim 3) + EPAOrgID: dataArray[i][109].trim() || undefined, // EPAO ID (aim 3) + ConRefNumber: dataArray[i][108].trim() || undefined, // Contract Ref (aim 3) + CompStatus: dataArray[i][124] || undefined, // Completion status (aim 3) + LearnActEndDate: dataArray[i][125] || undefined, // Actual end date (aim 3) + WithdrawReason: dataArray[i][127] || undefined, // Withdrawal reason (aim 3) + Outcome: dataArray[i][128] || undefined, // Outcome (aim 3) + AchDate: dataArray[i][126] || undefined, // Achievement date (aim 3) + OutGrade: dataArray[i][129] || undefined, // Outcome grade (aim 3) + SWSupAimId: crypto.randomUUID(), + LearningDeliveryFAM: [ + ...(dataArray[i][114] + ? [ + { + // Funding indicator (aim 3) + LearnDelFAMType: "FFI", + LearnDelFAMCode: dataArray[i][114], + }, + ] + : []), + ...(dataArray[i][115] + ? [ + { + // Source of funding (aim 3) + LearnDelFAMType: "SOF", + LearnDelFAMCode: dataArray[i][115], + }, + ] + : []), + ...(dataArray[i][110] + ? [ + { + // Contract type (aim 3) + LearnDelFAMType: dataArray[i][110], + LearnDelFAMCode: dataArray[i][111], + LearnDelFAMDateFrom: dataArray[i][112] || undefined, // Date applies from (aim 3) + LearnDelFAMDateTo: dataArray[i][113] || undefined, // Date applies to (aim 3) + }, + ] + : []), + ], + AppFinRecord: [ + ...(dataArray[i][116] + ? [ + { + // Financial type 1 (aim 3) + AFinType: dataArray[i][116], + AFinCode: dataArray[i][117] || undefined, // Financial code 1 (aim 3) + AFinDate: dataArray[i][118] || undefined, // Financial start date 1 (aim 3) + AFinAmount: dataArray[i][119] || undefined, // Training price (aim 3) + }, + ] + : []), + ...(dataArray[i][120] + ? [ + { + // Financial type 2 (aim 3) + AFinType: dataArray[i][120], + AFinCode: dataArray[i][121] || undefined, // Financial code 2 (aim 3) + AFinDate: dataArray[i][122] || undefined, // Financial start date 2 (aim 3) + AFinAmount: dataArray[i][123] || undefined, // Total assessment price (aim 3) + }, + ] + : []), + ], + }, + ] + : []), + + // Fourth aim - only include if required fields are present + ...(dataArray[i][130] + ? [ + { + // Aim type (programme aim 4) + LearnAimRef: dataArray[i][131].trim(), // Programme aim 4 Learning ref + AimType: dataArray[i][130].trim(), // Aim type (programme aim 4) + AimSeqNumber: "4", + LearnStartDate: dataArray[i][132], // Start date (aim 4) + LearnPlanEndDate: dataArray[i][133], // Planned end date (aim 4) + FundModel: dataArray[i][134], // Funding module (aim 4) + PHours: dataArray[i][138] || undefined, // Planned hours (aim 4) + ProgType: dataArray[i][135], // Programme type (aim 4) + StdCode: dataArray[i][136] || undefined, // Apprentice standard (aim 4) + DelLocPostCode: dataArray[i][137].trim(), // Delivery postcode (aim 4) + OTJActHours: dataArray[i][139] || undefined, // Actual hours (aim 4) + EPAOrgID: dataArray[i][141].trim() || undefined, // EPAO ID (aim 4) + ConRefNumber: dataArray[i][140].trim() || undefined, // Contract Ref (aim 4) + CompStatus: dataArray[i][156] || undefined, // Completion status (aim 4) + LearnActEndDate: dataArray[i][157] || undefined, // Actual end date (aim 4) + WithdrawReason: dataArray[i][159] || undefined, // Withdrawal reason (aim 4) + Outcome: dataArray[i][160] || undefined, // Outcome (aim 4) + AchDate: dataArray[i][158] || undefined, // Achievement date (aim 4) + OutGrade: dataArray[i][161] || undefined, // Outcome grade (aim 4) + SWSupAimId: crypto.randomUUID(), + LearningDeliveryFAM: [ + ...(dataArray[i][146] + ? [ + { + // Funding indicator (aim 4) + LearnDelFAMType: "FFI", + LearnDelFAMCode: dataArray[i][146], + }, + ] + : []), + ...(dataArray[i][147] + ? [ + { + // Source of funding (aim 4) + LearnDelFAMType: "SOF", + LearnDelFAMCode: dataArray[i][147], + }, + ] + : []), + ...(dataArray[i][142] + ? [ + { + // Contract type (aim 4) + LearnDelFAMType: dataArray[i][142], + LearnDelFAMCode: dataArray[i][143], + LearnDelFAMDateFrom: dataArray[i][144] || undefined, // Date applies from (aim 4) + LearnDelFAMDateTo: dataArray[i][145] || undefined, // Date applies to (aim 4) + }, + ] + : []), + ], + AppFinRecord: [ + ...(dataArray[i][148] + ? [ + { + // Financial type 1 (aim 4) + AFinType: dataArray[i][148], + AFinCode: dataArray[i][149] || undefined, // Financial code 1 (aim 4) + AFinDate: dataArray[i][150] || undefined, // Financial start date 1 (aim 4) + AFinAmount: dataArray[i][151] || undefined, // Training price (aim 4) + }, + ] + : []), + ...(dataArray[i][152] + ? [ + { + // Financial type 2 (aim 4) + AFinType: dataArray[i][152], + AFinCode: dataArray[i][153] || undefined, // Financial code 2 (aim 4) + AFinDate: dataArray[i][154] || undefined, // Financial start date 2 (aim 4) + AFinAmount: dataArray[i][155] || undefined, // Total assessment price (aim 4) + }, + ] + : []), + ], + }, + ] + : []), + + // Fifth aim - only include if required fields are present + ...(dataArray[i][162] + ? [ + { + // Aim type (programme aim 5) + LearnAimRef: dataArray[i][163].trim(), // Programme aim 5 Learning ref + AimType: dataArray[i][162].trim(), // Aim type (programme aim 5) + AimSeqNumber: "5", + LearnStartDate: dataArray[i][164], // Start date (aim 5) + LearnPlanEndDate: dataArray[i][165], // Planned end date (aim 5) + FundModel: dataArray[i][166], // Funding module (aim 5) + ProgType: dataArray[i][167], // Programme type (aim 5) + StdCode: dataArray[i][168] || undefined, // Apprentice standard (aim 5) + DelLocPostCode: dataArray[i][169].trim(), // Delivery postcode (aim 5) + PHours: dataArray[i][170] || undefined, // Planned hours (aim 5) + OTJActHours: dataArray[i][171] || undefined, // Actual hours (aim 5) + EPAOrgID: dataArray[i][173].trim() || undefined, // EPAO ID (aim 5) + ConRefNumber: dataArray[i][172].trim() || undefined, // Contract Ref (aim 5) + CompStatus: dataArray[i][188] || undefined, // Completion status (aim 5) + LearnActEndDate: dataArray[i][189] || undefined, // Actual end date (aim 5) + WithdrawReason: dataArray[i][192] || undefined, // Withdrawal reason (aim 5) + Outcome: dataArray[i][191] || undefined, // Outcome (aim 5) + AchDate: dataArray[i][190] || undefined, // Achievement date (aim 5) + OutGrade: dataArray[i][193] || undefined, // Outcome grade (aim 5) + SWSupAimId: crypto.randomUUID(), + LearningDeliveryFAM: [ + ...(dataArray[i][178] + ? [ + { + // Funding indicator (aim 5) + LearnDelFAMType: "FFI", + LearnDelFAMCode: dataArray[i][178], + }, + ] + : []), + ...(dataArray[i][179] + ? [ + { + // Source of funding (aim 5) + LearnDelFAMType: "SOF", + LearnDelFAMCode: dataArray[i][179], + }, + ] + : []), + ...(dataArray[i][174] + ? [ + { + // Contract type (aim 5) + LearnDelFAMType: dataArray[i][174], + LearnDelFAMCode: dataArray[i][175], + LearnDelFAMDateFrom: dataArray[i][176] || undefined, // Date applies from (aim 5) + LearnDelFAMDateTo: dataArray[i][177] || undefined, // Date applies to (aim 5) + }, + ] + : []), + ], + AppFinRecord: [ + ...(dataArray[i][180] + ? [ + { + // Financial type 1 (aim 5) + AFinType: dataArray[i][180], + AFinCode: dataArray[i][181] || undefined, // Financial code 1 (aim 5) + AFinDate: dataArray[i][182] || undefined, // Financial start date 1 (aim 5) + AFinAmount: dataArray[i][183] || undefined, // Training price (aim 5) + }, + ] + : []), + ...(dataArray[i][184] + ? [ + { + // Financial type 2 (aim 5) + AFinType: dataArray[i][184], + AFinCode: dataArray[i][185] || undefined, // Financial code 2 (aim 5) + AFinDate: dataArray[i][186] || undefined, // Financial start date 2 (aim 5) + AFinAmount: dataArray[i][187] || undefined, // Training price (aim 5) + }, + ] + : []), + ], + }, + ] + : []), + ], + } + ); + } +} + +module.exports = { pushLearners }; \ No newline at end of file From af53a11e4d86ef012ade5eefb776f95f378870aa Mon Sep 17 00:00:00 2001 From: Jason Warren Date: Wed, 26 Nov 2025 16:21:52 +0000 Subject: [PATCH 03/10] refactor: extract employment and learning delivery builders MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Extract employment status and learning delivery array construction logic into dedicated utility functions, improving code organisation and maintainability in the learner processing pipeline. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/utils/buildEmploymentArray.js | 71 +++ src/utils/buildLearningDeliveryArray.js | 405 +++++++++++++++++ src/utils/pushLearners.js | 556 ++---------------------- 3 files changed, 515 insertions(+), 517 deletions(-) create mode 100644 src/utils/buildEmploymentArray.js create mode 100644 src/utils/buildLearningDeliveryArray.js diff --git a/src/utils/buildEmploymentArray.js b/src/utils/buildEmploymentArray.js new file mode 100644 index 0000000..4def297 --- /dev/null +++ b/src/utils/buildEmploymentArray.js @@ -0,0 +1,71 @@ +function buildEmploymentArray(dataArray, i) { + + return [ + ...(dataArray[i][18] /* Employment Status #1 */ + ? [{ + EmpStat: dataArray[i][18], + DateEmpStatApp: dataArray[i][17], + EmpId: dataArray[i][19] || undefined, + EmploymentStatusMonitoring: [ + ...(dataArray[i][23] + ? [{ ESMType: "LOE", ESMCode: dataArray[i][23] }] + : [] + ), + ...(dataArray[i][24] + ? [{ ESMType: "EII", ESMCode: dataArray[i][24] }] + : [] + ), + ...(dataArray[i][25] + ? [{ ESMType: "LOU", ESMCode: dataArray[i][25] }] + : [] + ), + ...(dataArray[i][21] + ? [{ ESMType: "SEI", ESMCode: "1" }] + : [] + ), + ...(dataArray[i][20] + ? [{ ESMType: "SEM", ESMCode: "1" }, { ESMType: "OET", ESMCode: "2" }] + : [] + ), + ...(dataArray[i][22] + ? [{ ESMType: "OET", ESMCode: "1" }] + : [] + ), + ], + }] + : [/* No Employment Status #1 */] + ), + ...(dataArray[i][27] /* Employment Status #2 */ + ? [{ + EmpStat: dataArray[i][27], + DateEmpStatApp: dataArray[i][26], + EmpId: dataArray[i][28] || undefined, + EmploymentStatusMonitoring: [ + ...(dataArray[i][29] + ? [{ ESMType: "EII", ESMCode: dataArray[i][29] }] + : [] + ), + ...(dataArray[i][33] + ? [{ ESMType: "LOE", ESMCode: dataArray[i][33] }] + : [] + ), + ...(dataArray[i][31] + ? [{ ESMType: "SEI", ESMCode: "1" }] + : [] + ), + ...(dataArray[i][32] + ? [{ ESMType: "SEM", ESMCode: "1" }] + : [] + ), + ...(dataArray[i][30] + ? [{ ESMType: "OET", ESMCode: "1" }] + : [] + ), + ], + }] + : [/* No Employment Status #2 */] + ), + ] +} + +module.exports = { buildEmploymentArray }; diff --git a/src/utils/buildLearningDeliveryArray.js b/src/utils/buildLearningDeliveryArray.js new file mode 100644 index 0000000..af9027c --- /dev/null +++ b/src/utils/buildLearningDeliveryArray.js @@ -0,0 +1,405 @@ +function buildLearningDeliveryArray(dataArray, i) { + return [ + /* Aim #1 */ ...(dataArray[i][34] // only include if required fields are present + ? [{ + // Aim type (programme aim 1) + LearnAimRef: dataArray[i][35].trim(), // Programme aim 1 Learning ref + AimType: dataArray[i][34].trim(), // Aim type (programme aim 1) + AimSeqNumber: "1", + LearnStartDate: dataArray[i][36], // Start date (aim 1) + LearnPlanEndDate: dataArray[i][37], // Planned end date (aim 1) + FundModel: dataArray[i][38], // Funding module (aim 1) + PHours: dataArray[i][42] || undefined, // Planned hours (aim 1) + OTJActHours: dataArray[i][43] || undefined, // Actual hours (aim 1) + ProgType: dataArray[i][39], // Programme type (aim 1) + StdCode: dataArray[i][40] || undefined, // Apprentice standard (aim 1) + DelLocPostCode: dataArray[i][41].trim(), // Delivery postcode (aim 1) + EPAOrgID: dataArray[i][45].trim() || undefined, // EPAO ID (aim 1) + ConRefNumber: dataArray[i][44].trim() || undefined, // Contract Ref (aim 1) + CompStatus: dataArray[i][60] || undefined, // Completion status (aim 1) + LearnActEndDate: dataArray[i][61] || undefined, // Actual end date (aim 1) + WithdrawReason: dataArray[i][64] || undefined, // Withdrawal reason (aim 1) + Outcome: dataArray[i][63] || undefined, // Outcome (aim 1) + AchDate: dataArray[i][62] || undefined, // Achievement date (aim 1) + OutGrade: dataArray[i][65] || undefined, // Outcome grade (aim 1) + SWSupAimId: crypto.randomUUID(), + LearningDeliveryFAM: [ + ...(dataArray[i][50] + ? [ + { + // Funding indicator (aim 1) + LearnDelFAMType: "FFI", + LearnDelFAMCode: dataArray[i][50], + }, + ] + : []), + ...(dataArray[i][51] + ? [ + { + // Source of funding (aim 1) + LearnDelFAMType: "SOF", + LearnDelFAMCode: dataArray[i][51], + }, + ] + : []), + ...(dataArray[i][46] + ? [ + { + // Contract type (aim 1) + LearnDelFAMType: dataArray[i][46], + LearnDelFAMCode: dataArray[i][47], + LearnDelFAMDateFrom: dataArray[i][48] || undefined, // Date applies from (aim 1) + LearnDelFAMDateTo: dataArray[i][49] || undefined, // Date applies to (aim 1) + }, + ] + : []), + ], + AppFinRecord: [ + ...(dataArray[i][52] + ? [ + { + // Financial type 1 (aim 1) + AFinType: dataArray[i][52], + AFinCode: dataArray[i][53] || undefined, // Financial code 1 (aim 1) + AFinDate: dataArray[i][54] || undefined, // Financial start date 1 (aim 1) + AFinAmount: dataArray[i][55] || undefined, // Training price (aim 1) + }, + ] + : []), + ...(dataArray[i][56] + ? [ + { + // Financial type 2 (aim 1) + AFinType: dataArray[i][56], + AFinCode: dataArray[i][57] || undefined, // Financial code 2 (aim 1) + AFinDate: dataArray[i][58] || undefined, // Financial start date 2 (aim 1) + AFinAmount: dataArray[i][59] || undefined, // Total assessment price (aim 1) + }, + ] + : []), + ], + }] : [] + ), + /* Aim #2 */ ...(dataArray[i][66] // only include if required fields are present + ? [{ + LearnAimRef: dataArray[i][67].trim(), // Programme aim 2 Learning ref + AimType: dataArray[i][66].trim(), // Aim type (programme aim 2) + AimSeqNumber: "2", + LearnStartDate: dataArray[i][68], // Start date (aim 2) + LearnPlanEndDate: dataArray[i][69], // Planned end date (aim 2) + FundModel: dataArray[i][70], // Funding module (aim 2) + PHours: dataArray[i][74] || undefined, // Planned hours (aim 2) + ProgType: dataArray[i][71], // Programme type (aim 2) + StdCode: dataArray[i][72] || undefined, // Apprentice standard (aim 2) + DelLocPostCode: dataArray[i][73].trim(), // Delivery postcode (aim 2) + OTJActHours: dataArray[i][75] || undefined, // Actual hours (aim 2) + EPAOrgID: dataArray[i][77].trim() || undefined, // EPAO ID (aim 2) + ConRefNumber: dataArray[i][76].trim() || undefined, // Contract Ref (aim 2) + CompStatus: dataArray[i][92] || undefined, // Completion status (aim 2) + LearnActEndDate: dataArray[i][93] || undefined, // Actual end date (aim 2) + WithdrawReason: dataArray[i][96] || undefined, // Withdrawal reason (aim 2) + Outcome: dataArray[i][95] || undefined, // Outcome (aim 2) + AchDate: dataArray[i][94] || undefined, // Achievement date (aim 2) + OutGrade: dataArray[i][97] || undefined, // Outcome grade (aim 2) + SWSupAimId: crypto.randomUUID(), + LearningDeliveryFAM: [ + ...(dataArray[i][82] + ? [ + { + // Funding indicator (aim 2) + LearnDelFAMType: "FFI", + LearnDelFAMCode: dataArray[i][82], + }, + ] + : []), + ...(dataArray[i][83] + ? [ + { + // Source of funding (aim 2) + LearnDelFAMType: "SOF", + LearnDelFAMCode: dataArray[i][83], + }, + ] + : []), + ...(dataArray[i][78] + ? [ + { + // Contract type (aim 2) + LearnDelFAMType: dataArray[i][78], + LearnDelFAMCode: dataArray[i][79], + LearnDelFAMDateFrom: dataArray[i][80] || undefined, // Date applies from (aim 2) + LearnDelFAMDateTo: dataArray[i][81] || undefined, // Date applies to (aim 2) + }, + ] + : []), + ], + AppFinRecord: [ + ...(dataArray[i][84] + ? [ + { + // Financial type 1 (aim 2) + AFinType: dataArray[i][84], + AFinCode: dataArray[i][85] || undefined, // Financial code 1 (aim 2) + AFinDate: dataArray[i][86] || undefined, // Financial start date 1 (aim 2) + AFinAmount: dataArray[i][87] || undefined, // Training price (aim 2) + }, + ] + : []), + ...(dataArray[i][88] + ? [ + { + // Financial type 2 (aim 2) + AFinType: dataArray[i][88], + AFinCode: dataArray[i][89] || undefined, // Financial code 2 (aim 2) + AFinDate: dataArray[i][90] || undefined, // Financial start date 2 (aim 2) + AFinAmount: dataArray[i][91] || undefined, // Total assessment price (aim 2) + }, + ] + : []), + ], + }] : [] + ), + /* Aim #3 */ ...(dataArray[i][98] // only include if required fields are present + ? [{ + // Aim type (programme aim 3) + LearnAimRef: dataArray[i][99].trim(), // Programme aim 3 Learning ref + AimType: dataArray[i][98].trim(), // Aim type (programme aim 3) + AimSeqNumber: "3", + LearnStartDate: dataArray[i][100], // Start date (aim 3) + LearnPlanEndDate: dataArray[i][101], // Planned end date (aim 3) + FundModel: dataArray[i][102], // Funding module (aim 3) + ProgType: dataArray[i][103], // Programme type (aim 3) + StdCode: dataArray[i][104] || undefined, // Apprentice standard (aim 3) + DelLocPostCode: dataArray[i][105].trim(), // Delivery postcode (aim 3) + PHours: dataArray[i][106] || undefined, // Planned hours (aim 3) + OTJActHours: dataArray[i][107] || undefined, // Actual hours (aim 3) + EPAOrgID: dataArray[i][109].trim() || undefined, // EPAO ID (aim 3) + ConRefNumber: dataArray[i][108].trim() || undefined, // Contract Ref (aim 3) + CompStatus: dataArray[i][124] || undefined, // Completion status (aim 3) + LearnActEndDate: dataArray[i][125] || undefined, // Actual end date (aim 3) + WithdrawReason: dataArray[i][127] || undefined, // Withdrawal reason (aim 3) + Outcome: dataArray[i][128] || undefined, // Outcome (aim 3) + AchDate: dataArray[i][126] || undefined, // Achievement date (aim 3) + OutGrade: dataArray[i][129] || undefined, // Outcome grade (aim 3) + SWSupAimId: crypto.randomUUID(), + LearningDeliveryFAM: [ + ...(dataArray[i][114] + ? [ + { + // Funding indicator (aim 3) + LearnDelFAMType: "FFI", + LearnDelFAMCode: dataArray[i][114], + }, + ] + : []), + ...(dataArray[i][115] + ? [ + { + // Source of funding (aim 3) + LearnDelFAMType: "SOF", + LearnDelFAMCode: dataArray[i][115], + }, + ] + : []), + ...(dataArray[i][110] + ? [ + { + // Contract type (aim 3) + LearnDelFAMType: dataArray[i][110], + LearnDelFAMCode: dataArray[i][111], + LearnDelFAMDateFrom: dataArray[i][112] || undefined, // Date applies from (aim 3) + LearnDelFAMDateTo: dataArray[i][113] || undefined, // Date applies to (aim 3) + }, + ] + : []), + ], + AppFinRecord: [ + ...(dataArray[i][116] + ? [ + { + // Financial type 1 (aim 3) + AFinType: dataArray[i][116], + AFinCode: dataArray[i][117] || undefined, // Financial code 1 (aim 3) + AFinDate: dataArray[i][118] || undefined, // Financial start date 1 (aim 3) + AFinAmount: dataArray[i][119] || undefined, // Training price (aim 3) + }, + ] + : []), + ...(dataArray[i][120] + ? [ + { + // Financial type 2 (aim 3) + AFinType: dataArray[i][120], + AFinCode: dataArray[i][121] || undefined, // Financial code 2 (aim 3) + AFinDate: dataArray[i][122] || undefined, // Financial start date 2 (aim 3) + AFinAmount: dataArray[i][123] || undefined, // Total assessment price (aim 3) + }, + ] + : []), + ], + }] : [] + ), + /* Aim #4 */ ...(dataArray[i][130] // only include if required fields are present + ? [{ + // Aim type (programme aim 4) + LearnAimRef: dataArray[i][131].trim(), // Programme aim 4 Learning ref + AimType: dataArray[i][130].trim(), // Aim type (programme aim 4) + AimSeqNumber: "4", + LearnStartDate: dataArray[i][132], // Start date (aim 4) + LearnPlanEndDate: dataArray[i][133], // Planned end date (aim 4) + FundModel: dataArray[i][134], // Funding module (aim 4) + PHours: dataArray[i][138] || undefined, // Planned hours (aim 4) + ProgType: dataArray[i][135], // Programme type (aim 4) + StdCode: dataArray[i][136] || undefined, // Apprentice standard (aim 4) + DelLocPostCode: dataArray[i][137].trim(), // Delivery postcode (aim 4) + OTJActHours: dataArray[i][139] || undefined, // Actual hours (aim 4) + EPAOrgID: dataArray[i][141].trim() || undefined, // EPAO ID (aim 4) + ConRefNumber: dataArray[i][140].trim() || undefined, // Contract Ref (aim 4) + CompStatus: dataArray[i][156] || undefined, // Completion status (aim 4) + LearnActEndDate: dataArray[i][157] || undefined, // Actual end date (aim 4) + WithdrawReason: dataArray[i][159] || undefined, // Withdrawal reason (aim 4) + Outcome: dataArray[i][160] || undefined, // Outcome (aim 4) + AchDate: dataArray[i][158] || undefined, // Achievement date (aim 4) + OutGrade: dataArray[i][161] || undefined, // Outcome grade (aim 4) + SWSupAimId: crypto.randomUUID(), + LearningDeliveryFAM: [ + ...(dataArray[i][146] + ? [ + { + // Funding indicator (aim 4) + LearnDelFAMType: "FFI", + LearnDelFAMCode: dataArray[i][146], + }, + ] + : []), + ...(dataArray[i][147] + ? [ + { + // Source of funding (aim 4) + LearnDelFAMType: "SOF", + LearnDelFAMCode: dataArray[i][147], + }, + ] + : []), + ...(dataArray[i][142] + ? [ + { + // Contract type (aim 4) + LearnDelFAMType: dataArray[i][142], + LearnDelFAMCode: dataArray[i][143], + LearnDelFAMDateFrom: dataArray[i][144] || undefined, // Date applies from (aim 4) + LearnDelFAMDateTo: dataArray[i][145] || undefined, // Date applies to (aim 4) + }, + ] + : []), + ], + AppFinRecord: [ + ...(dataArray[i][148] + ? [ + { + // Financial type 1 (aim 4) + AFinType: dataArray[i][148], + AFinCode: dataArray[i][149] || undefined, // Financial code 1 (aim 4) + AFinDate: dataArray[i][150] || undefined, // Financial start date 1 (aim 4) + AFinAmount: dataArray[i][151] || undefined, // Training price (aim 4) + }, + ] + : []), + ...(dataArray[i][152] + ? [ + { + // Financial type 2 (aim 4) + AFinType: dataArray[i][152], + AFinCode: dataArray[i][153] || undefined, // Financial code 2 (aim 4) + AFinDate: dataArray[i][154] || undefined, // Financial start date 2 (aim 4) + AFinAmount: dataArray[i][155] || undefined, // Total assessment price (aim 4) + }, + ] + : []), + ], + }] : [] + ), + /* Aim #5 */ ...(dataArray[i][162] // only include if required fields are present + ? [{ + // Aim type (programme aim 5) + LearnAimRef: dataArray[i][163].trim(), // Programme aim 5 Learning ref + AimType: dataArray[i][162].trim(), // Aim type (programme aim 5) + AimSeqNumber: "5", + LearnStartDate: dataArray[i][164], // Start date (aim 5) + LearnPlanEndDate: dataArray[i][165], // Planned end date (aim 5) + FundModel: dataArray[i][166], // Funding module (aim 5) + ProgType: dataArray[i][167], // Programme type (aim 5) + StdCode: dataArray[i][168] || undefined, // Apprentice standard (aim 5) + DelLocPostCode: dataArray[i][169].trim(), // Delivery postcode (aim 5) + PHours: dataArray[i][170] || undefined, // Planned hours (aim 5) + OTJActHours: dataArray[i][171] || undefined, // Actual hours (aim 5) + EPAOrgID: dataArray[i][173].trim() || undefined, // EPAO ID (aim 5) + ConRefNumber: dataArray[i][172].trim() || undefined, // Contract Ref (aim 5) + CompStatus: dataArray[i][188] || undefined, // Completion status (aim 5) + LearnActEndDate: dataArray[i][189] || undefined, // Actual end date (aim 5) + WithdrawReason: dataArray[i][192] || undefined, // Withdrawal reason (aim 5) + Outcome: dataArray[i][191] || undefined, // Outcome (aim 5) + AchDate: dataArray[i][190] || undefined, // Achievement date (aim 5) + OutGrade: dataArray[i][193] || undefined, // Outcome grade (aim 5) + SWSupAimId: crypto.randomUUID(), + LearningDeliveryFAM: [ + ...(dataArray[i][178] + ? [ + { + // Funding indicator (aim 5) + LearnDelFAMType: "FFI", + LearnDelFAMCode: dataArray[i][178], + }, + ] + : []), + ...(dataArray[i][179] + ? [ + { + // Source of funding (aim 5) + LearnDelFAMType: "SOF", + LearnDelFAMCode: dataArray[i][179], + }, + ] + : []), + ...(dataArray[i][174] + ? [ + { + // Contract type (aim 5) + LearnDelFAMType: dataArray[i][174], + LearnDelFAMCode: dataArray[i][175], + LearnDelFAMDateFrom: dataArray[i][176] || undefined, // Date applies from (aim 5) + LearnDelFAMDateTo: dataArray[i][177] || undefined, // Date applies to (aim 5) + }, + ] + : []), + ], + AppFinRecord: [ + ...(dataArray[i][180] + ? [ + { + // Financial type 1 (aim 5) + AFinType: dataArray[i][180], + AFinCode: dataArray[i][181] || undefined, // Financial code 1 (aim 5) + AFinDate: dataArray[i][182] || undefined, // Financial start date 1 (aim 5) + AFinAmount: dataArray[i][183] || undefined, // Training price (aim 5) + }, + ] + : []), + ...(dataArray[i][184] + ? [ + { + // Financial type 2 (aim 5) + AFinType: dataArray[i][184], + AFinCode: dataArray[i][185] || undefined, // Financial code 2 (aim 5) + AFinDate: dataArray[i][186] || undefined, // Financial start date 2 (aim 5) + AFinAmount: dataArray[i][187] || undefined, // Training price (aim 5) + }, + ] + : []), + ], + }] : [] + ), + ] +} + +module.exports = { buildLearningDeliveryArray }; \ No newline at end of file diff --git a/src/utils/pushLearners.js b/src/utils/pushLearners.js index 88f931b..22ba82f 100644 --- a/src/utils/pushLearners.js +++ b/src/utils/pushLearners.js @@ -1,525 +1,47 @@ +const { buildEmploymentArray } = require("./buildEmploymentArray"); +const { buildLearningDeliveryArray } = require("./buildLearningDeliveryArray"); + function pushLearners(dataArray, xmlBase) { for (let i = 1; i < dataArray.length; i++) { const refNumber = i .toString() .padStart(4, "0"); - - xmlBase.Learner.push( - { - LearnRefNumber: refNumber, - ULN: dataArray[i][2], - FamilyName: dataArray[i][4].trim(), - GivenNames: dataArray[i][3].trim(), - DateOfBirth: dataArray[i][6], - Ethnicity: dataArray[i][8], - Sex: dataArray[i][5], - LLDDHealthProb: dataArray[i][12], - NINumber: dataArray[i][7].replace(/\s+/g, "").trim(), - PlanLearnHours: dataArray[i][16] || undefined, - PostcodePrior: dataArray[i][9].trim(), - Postcode: dataArray[i][10].trim(), - AddLine1: dataArray[i][11] - .replace(/[^a-zA-Z0-9\s]/g, "") - .trim() - .substring(0, 50), - TelNo: dataArray[i][12] || undefined, - LLDDHealthProb: dataArray[i][13] != "99" ? 1 : 9, - PriorAttain: { - PriorLevel: dataArray[i][15], - DateLevelApp: dataArray[i][14], - }, - LLDDandHealthProblem: dataArray[i][13] != "99" - ? [{ LLDDCat: dataArray[i][13], PrimaryLLDD: 1 }] - : undefined, - LearnerEmploymentStatus: [ - ...(dataArray[i][18] /* Employment Status #1 */ - ? [{ - EmpStat: dataArray[i][18], - DateEmpStatApp: dataArray[i][17], - EmpId: dataArray[i][19] || undefined, - EmploymentStatusMonitoring: [ - ...(dataArray[i][23] - ? [{ ESMType: "LOE", ESMCode: dataArray[i][23] }] - : [] - ), - ...(dataArray[i][24] - ? [{ ESMType: "EII", ESMCode: dataArray[i][24] }] - : [] - ), - ...(dataArray[i][25] - ? [{ ESMType: "LOU", ESMCode: dataArray[i][25] }] - : [] - ), - ...(dataArray[i][21] - ? [{ ESMType: "SEI", ESMCode: "1" }] - : [] - ), - ...(dataArray[i][20] - ? [{ ESMType: "SEM", ESMCode: "1" }, { ESMType: "OET", ESMCode: "2" }] - : [] - ), - ...(dataArray[i][22] - ? [{ ESMType: "OET", ESMCode: "1" }] - : [] - ), - ], - }] - : [/* No Employment Status #1 */] - ), - ...(dataArray[i][27] /* Employment Status #2 */ - ? [{ - EmpStat: dataArray[i][27], - DateEmpStatApp: dataArray[i][26], - EmpId: dataArray[i][28] || undefined, - EmploymentStatusMonitoring: [ - ...(dataArray[i][29] - ? [{ ESMType: "EII", ESMCode: dataArray[i][29] }] - : [] - ), - ...(dataArray[i][33] - ? [{ ESMType: "LOE", ESMCode: dataArray[i][33] }] - : [] - ), - ...(dataArray[i][31] - ? [{ ESMType: "SEI", ESMCode: "1" }] - : [] - ), - ...(dataArray[i][32] - ? [{ ESMType: "SEM", ESMCode: "1" }] - : [] - ), - ...(dataArray[i][30] - ? [{ ESMType: "OET", ESMCode: "1" }] - : [] - ), - ], - }] - : [/* No Employment Status #2 */] - ), - ], - LearningDelivery: [ - // First aim - only include if required fields are present - ...(dataArray[i][34] - ? [ - { - // Aim type (programme aim 1) - LearnAimRef: dataArray[i][35].trim(), // Programme aim 1 Learning ref - AimType: dataArray[i][34].trim(), // Aim type (programme aim 1) - AimSeqNumber: "1", - LearnStartDate: dataArray[i][36], // Start date (aim 1) - LearnPlanEndDate: dataArray[i][37], // Planned end date (aim 1) - FundModel: dataArray[i][38], // Funding module (aim 1) - PHours: dataArray[i][42] || undefined, // Planned hours (aim 1) - OTJActHours: dataArray[i][43] || undefined, // Actual hours (aim 1) - ProgType: dataArray[i][39], // Programme type (aim 1) - StdCode: dataArray[i][40] || undefined, // Apprentice standard (aim 1) - DelLocPostCode: dataArray[i][41].trim(), // Delivery postcode (aim 1) - EPAOrgID: dataArray[i][45].trim() || undefined, // EPAO ID (aim 1) - ConRefNumber: dataArray[i][44].trim() || undefined, // Contract Ref (aim 1) - CompStatus: dataArray[i][60] || undefined, // Completion status (aim 1) - LearnActEndDate: dataArray[i][61] || undefined, // Actual end date (aim 1) - WithdrawReason: dataArray[i][64] || undefined, // Withdrawal reason (aim 1) - Outcome: dataArray[i][63] || undefined, // Outcome (aim 1) - AchDate: dataArray[i][62] || undefined, // Achievement date (aim 1) - OutGrade: dataArray[i][65] || undefined, // Outcome grade (aim 1) - SWSupAimId: crypto.randomUUID(), - LearningDeliveryFAM: [ - ...(dataArray[i][50] - ? [ - { - // Funding indicator (aim 1) - LearnDelFAMType: "FFI", - LearnDelFAMCode: dataArray[i][50], - }, - ] - : []), - ...(dataArray[i][51] - ? [ - { - // Source of funding (aim 1) - LearnDelFAMType: "SOF", - LearnDelFAMCode: dataArray[i][51], - }, - ] - : []), - ...(dataArray[i][46] - ? [ - { - // Contract type (aim 1) - LearnDelFAMType: dataArray[i][46], - LearnDelFAMCode: dataArray[i][47], - LearnDelFAMDateFrom: dataArray[i][48] || undefined, // Date applies from (aim 1) - LearnDelFAMDateTo: dataArray[i][49] || undefined, // Date applies to (aim 1) - }, - ] - : []), - ], - AppFinRecord: [ - ...(dataArray[i][52] - ? [ - { - // Financial type 1 (aim 1) - AFinType: dataArray[i][52], - AFinCode: dataArray[i][53] || undefined, // Financial code 1 (aim 1) - AFinDate: dataArray[i][54] || undefined, // Financial start date 1 (aim 1) - AFinAmount: dataArray[i][55] || undefined, // Training price (aim 1) - }, - ] - : []), - ...(dataArray[i][56] - ? [ - { - // Financial type 2 (aim 1) - AFinType: dataArray[i][56], - AFinCode: dataArray[i][57] || undefined, // Financial code 2 (aim 1) - AFinDate: dataArray[i][58] || undefined, // Financial start date 2 (aim 1) - AFinAmount: dataArray[i][59] || undefined, // Total assessment price (aim 1) - }, - ] - : []), - ], - }, - ] - : []), - - // Second aim - only include if required fields are present - ...(dataArray[i][66] - ? [ - { - LearnAimRef: dataArray[i][67].trim(), // Programme aim 2 Learning ref - AimType: dataArray[i][66].trim(), // Aim type (programme aim 2) - AimSeqNumber: "2", - LearnStartDate: dataArray[i][68], // Start date (aim 2) - LearnPlanEndDate: dataArray[i][69], // Planned end date (aim 2) - FundModel: dataArray[i][70], // Funding module (aim 2) - PHours: dataArray[i][74] || undefined, // Planned hours (aim 2) - ProgType: dataArray[i][71], // Programme type (aim 2) - StdCode: dataArray[i][72] || undefined, // Apprentice standard (aim 2) - DelLocPostCode: dataArray[i][73].trim(), // Delivery postcode (aim 2) - OTJActHours: dataArray[i][75] || undefined, // Actual hours (aim 2) - EPAOrgID: dataArray[i][77].trim() || undefined, // EPAO ID (aim 2) - ConRefNumber: dataArray[i][76].trim() || undefined, // Contract Ref (aim 2) - CompStatus: dataArray[i][92] || undefined, // Completion status (aim 2) - LearnActEndDate: dataArray[i][93] || undefined, // Actual end date (aim 2) - WithdrawReason: dataArray[i][96] || undefined, // Withdrawal reason (aim 2) - Outcome: dataArray[i][95] || undefined, // Outcome (aim 2) - AchDate: dataArray[i][94] || undefined, // Achievement date (aim 2) - OutGrade: dataArray[i][97] || undefined, // Outcome grade (aim 2) - SWSupAimId: crypto.randomUUID(), - LearningDeliveryFAM: [ - ...(dataArray[i][82] - ? [ - { - // Funding indicator (aim 2) - LearnDelFAMType: "FFI", - LearnDelFAMCode: dataArray[i][82], - }, - ] - : []), - ...(dataArray[i][83] - ? [ - { - // Source of funding (aim 2) - LearnDelFAMType: "SOF", - LearnDelFAMCode: dataArray[i][83], - }, - ] - : []), - ...(dataArray[i][78] - ? [ - { - // Contract type (aim 2) - LearnDelFAMType: dataArray[i][78], - LearnDelFAMCode: dataArray[i][79], - LearnDelFAMDateFrom: dataArray[i][80] || undefined, // Date applies from (aim 2) - LearnDelFAMDateTo: dataArray[i][81] || undefined, // Date applies to (aim 2) - }, - ] - : []), - ], - AppFinRecord: [ - ...(dataArray[i][84] - ? [ - { - // Financial type 1 (aim 2) - AFinType: dataArray[i][84], - AFinCode: dataArray[i][85] || undefined, // Financial code 1 (aim 2) - AFinDate: dataArray[i][86] || undefined, // Financial start date 1 (aim 2) - AFinAmount: dataArray[i][87] || undefined, // Training price (aim 2) - }, - ] - : []), - ...(dataArray[i][88] - ? [ - { - // Financial type 2 (aim 2) - AFinType: dataArray[i][88], - AFinCode: dataArray[i][89] || undefined, // Financial code 2 (aim 2) - AFinDate: dataArray[i][90] || undefined, // Financial start date 2 (aim 2) - AFinAmount: dataArray[i][91] || undefined, // Total assessment price (aim 2) - }, - ] - : []), - ], - }, - ] - : []), - - // Third aim - only include if required fields are present - ...(dataArray[i][98] - ? [ - { - // Aim type (programme aim 3) - LearnAimRef: dataArray[i][99].trim(), // Programme aim 3 Learning ref - AimType: dataArray[i][98].trim(), // Aim type (programme aim 3) - AimSeqNumber: "3", - LearnStartDate: dataArray[i][100], // Start date (aim 3) - LearnPlanEndDate: dataArray[i][101], // Planned end date (aim 3) - FundModel: dataArray[i][102], // Funding module (aim 3) - ProgType: dataArray[i][103], // Programme type (aim 3) - StdCode: dataArray[i][104] || undefined, // Apprentice standard (aim 3) - DelLocPostCode: dataArray[i][105].trim(), // Delivery postcode (aim 3) - PHours: dataArray[i][106] || undefined, // Planned hours (aim 3) - OTJActHours: dataArray[i][107] || undefined, // Actual hours (aim 3) - EPAOrgID: dataArray[i][109].trim() || undefined, // EPAO ID (aim 3) - ConRefNumber: dataArray[i][108].trim() || undefined, // Contract Ref (aim 3) - CompStatus: dataArray[i][124] || undefined, // Completion status (aim 3) - LearnActEndDate: dataArray[i][125] || undefined, // Actual end date (aim 3) - WithdrawReason: dataArray[i][127] || undefined, // Withdrawal reason (aim 3) - Outcome: dataArray[i][128] || undefined, // Outcome (aim 3) - AchDate: dataArray[i][126] || undefined, // Achievement date (aim 3) - OutGrade: dataArray[i][129] || undefined, // Outcome grade (aim 3) - SWSupAimId: crypto.randomUUID(), - LearningDeliveryFAM: [ - ...(dataArray[i][114] - ? [ - { - // Funding indicator (aim 3) - LearnDelFAMType: "FFI", - LearnDelFAMCode: dataArray[i][114], - }, - ] - : []), - ...(dataArray[i][115] - ? [ - { - // Source of funding (aim 3) - LearnDelFAMType: "SOF", - LearnDelFAMCode: dataArray[i][115], - }, - ] - : []), - ...(dataArray[i][110] - ? [ - { - // Contract type (aim 3) - LearnDelFAMType: dataArray[i][110], - LearnDelFAMCode: dataArray[i][111], - LearnDelFAMDateFrom: dataArray[i][112] || undefined, // Date applies from (aim 3) - LearnDelFAMDateTo: dataArray[i][113] || undefined, // Date applies to (aim 3) - }, - ] - : []), - ], - AppFinRecord: [ - ...(dataArray[i][116] - ? [ - { - // Financial type 1 (aim 3) - AFinType: dataArray[i][116], - AFinCode: dataArray[i][117] || undefined, // Financial code 1 (aim 3) - AFinDate: dataArray[i][118] || undefined, // Financial start date 1 (aim 3) - AFinAmount: dataArray[i][119] || undefined, // Training price (aim 3) - }, - ] - : []), - ...(dataArray[i][120] - ? [ - { - // Financial type 2 (aim 3) - AFinType: dataArray[i][120], - AFinCode: dataArray[i][121] || undefined, // Financial code 2 (aim 3) - AFinDate: dataArray[i][122] || undefined, // Financial start date 2 (aim 3) - AFinAmount: dataArray[i][123] || undefined, // Total assessment price (aim 3) - }, - ] - : []), - ], - }, - ] - : []), - - // Fourth aim - only include if required fields are present - ...(dataArray[i][130] - ? [ - { - // Aim type (programme aim 4) - LearnAimRef: dataArray[i][131].trim(), // Programme aim 4 Learning ref - AimType: dataArray[i][130].trim(), // Aim type (programme aim 4) - AimSeqNumber: "4", - LearnStartDate: dataArray[i][132], // Start date (aim 4) - LearnPlanEndDate: dataArray[i][133], // Planned end date (aim 4) - FundModel: dataArray[i][134], // Funding module (aim 4) - PHours: dataArray[i][138] || undefined, // Planned hours (aim 4) - ProgType: dataArray[i][135], // Programme type (aim 4) - StdCode: dataArray[i][136] || undefined, // Apprentice standard (aim 4) - DelLocPostCode: dataArray[i][137].trim(), // Delivery postcode (aim 4) - OTJActHours: dataArray[i][139] || undefined, // Actual hours (aim 4) - EPAOrgID: dataArray[i][141].trim() || undefined, // EPAO ID (aim 4) - ConRefNumber: dataArray[i][140].trim() || undefined, // Contract Ref (aim 4) - CompStatus: dataArray[i][156] || undefined, // Completion status (aim 4) - LearnActEndDate: dataArray[i][157] || undefined, // Actual end date (aim 4) - WithdrawReason: dataArray[i][159] || undefined, // Withdrawal reason (aim 4) - Outcome: dataArray[i][160] || undefined, // Outcome (aim 4) - AchDate: dataArray[i][158] || undefined, // Achievement date (aim 4) - OutGrade: dataArray[i][161] || undefined, // Outcome grade (aim 4) - SWSupAimId: crypto.randomUUID(), - LearningDeliveryFAM: [ - ...(dataArray[i][146] - ? [ - { - // Funding indicator (aim 4) - LearnDelFAMType: "FFI", - LearnDelFAMCode: dataArray[i][146], - }, - ] - : []), - ...(dataArray[i][147] - ? [ - { - // Source of funding (aim 4) - LearnDelFAMType: "SOF", - LearnDelFAMCode: dataArray[i][147], - }, - ] - : []), - ...(dataArray[i][142] - ? [ - { - // Contract type (aim 4) - LearnDelFAMType: dataArray[i][142], - LearnDelFAMCode: dataArray[i][143], - LearnDelFAMDateFrom: dataArray[i][144] || undefined, // Date applies from (aim 4) - LearnDelFAMDateTo: dataArray[i][145] || undefined, // Date applies to (aim 4) - }, - ] - : []), - ], - AppFinRecord: [ - ...(dataArray[i][148] - ? [ - { - // Financial type 1 (aim 4) - AFinType: dataArray[i][148], - AFinCode: dataArray[i][149] || undefined, // Financial code 1 (aim 4) - AFinDate: dataArray[i][150] || undefined, // Financial start date 1 (aim 4) - AFinAmount: dataArray[i][151] || undefined, // Training price (aim 4) - }, - ] - : []), - ...(dataArray[i][152] - ? [ - { - // Financial type 2 (aim 4) - AFinType: dataArray[i][152], - AFinCode: dataArray[i][153] || undefined, // Financial code 2 (aim 4) - AFinDate: dataArray[i][154] || undefined, // Financial start date 2 (aim 4) - AFinAmount: dataArray[i][155] || undefined, // Total assessment price (aim 4) - }, - ] - : []), - ], - }, - ] - : []), - - // Fifth aim - only include if required fields are present - ...(dataArray[i][162] - ? [ - { - // Aim type (programme aim 5) - LearnAimRef: dataArray[i][163].trim(), // Programme aim 5 Learning ref - AimType: dataArray[i][162].trim(), // Aim type (programme aim 5) - AimSeqNumber: "5", - LearnStartDate: dataArray[i][164], // Start date (aim 5) - LearnPlanEndDate: dataArray[i][165], // Planned end date (aim 5) - FundModel: dataArray[i][166], // Funding module (aim 5) - ProgType: dataArray[i][167], // Programme type (aim 5) - StdCode: dataArray[i][168] || undefined, // Apprentice standard (aim 5) - DelLocPostCode: dataArray[i][169].trim(), // Delivery postcode (aim 5) - PHours: dataArray[i][170] || undefined, // Planned hours (aim 5) - OTJActHours: dataArray[i][171] || undefined, // Actual hours (aim 5) - EPAOrgID: dataArray[i][173].trim() || undefined, // EPAO ID (aim 5) - ConRefNumber: dataArray[i][172].trim() || undefined, // Contract Ref (aim 5) - CompStatus: dataArray[i][188] || undefined, // Completion status (aim 5) - LearnActEndDate: dataArray[i][189] || undefined, // Actual end date (aim 5) - WithdrawReason: dataArray[i][192] || undefined, // Withdrawal reason (aim 5) - Outcome: dataArray[i][191] || undefined, // Outcome (aim 5) - AchDate: dataArray[i][190] || undefined, // Achievement date (aim 5) - OutGrade: dataArray[i][193] || undefined, // Outcome grade (aim 5) - SWSupAimId: crypto.randomUUID(), - LearningDeliveryFAM: [ - ...(dataArray[i][178] - ? [ - { - // Funding indicator (aim 5) - LearnDelFAMType: "FFI", - LearnDelFAMCode: dataArray[i][178], - }, - ] - : []), - ...(dataArray[i][179] - ? [ - { - // Source of funding (aim 5) - LearnDelFAMType: "SOF", - LearnDelFAMCode: dataArray[i][179], - }, - ] - : []), - ...(dataArray[i][174] - ? [ - { - // Contract type (aim 5) - LearnDelFAMType: dataArray[i][174], - LearnDelFAMCode: dataArray[i][175], - LearnDelFAMDateFrom: dataArray[i][176] || undefined, // Date applies from (aim 5) - LearnDelFAMDateTo: dataArray[i][177] || undefined, // Date applies to (aim 5) - }, - ] - : []), - ], - AppFinRecord: [ - ...(dataArray[i][180] - ? [ - { - // Financial type 1 (aim 5) - AFinType: dataArray[i][180], - AFinCode: dataArray[i][181] || undefined, // Financial code 1 (aim 5) - AFinDate: dataArray[i][182] || undefined, // Financial start date 1 (aim 5) - AFinAmount: dataArray[i][183] || undefined, // Training price (aim 5) - }, - ] - : []), - ...(dataArray[i][184] - ? [ - { - // Financial type 2 (aim 5) - AFinType: dataArray[i][184], - AFinCode: dataArray[i][185] || undefined, // Financial code 2 (aim 5) - AFinDate: dataArray[i][186] || undefined, // Financial start date 2 (aim 5) - AFinAmount: dataArray[i][187] || undefined, // Training price (aim 5) - }, - ] - : []), - ], - }, - ] - : []), - ], - } - ); + + const employmentStatusArray = buildEmploymentArray(dataArray, i); + const learningDeliveryArray = buildLearningDeliveryArray(dataArray, i); + + const learner = { + LearnRefNumber: refNumber, + ULN: dataArray[i][2], + FamilyName: dataArray[i][4].trim(), + GivenNames: dataArray[i][3].trim(), + DateOfBirth: dataArray[i][6], + Ethnicity: dataArray[i][8], + Sex: dataArray[i][5], + LLDDHealthProb: dataArray[i][12], + NINumber: dataArray[i][7].replace(/\s+/g, "").trim(), + PlanLearnHours: dataArray[i][16] || undefined, + PostcodePrior: dataArray[i][9].trim(), + Postcode: dataArray[i][10].trim(), + AddLine1: dataArray[i][11] + .replace(/[^a-zA-Z0-9\s]/g, "") + .trim() + .substring(0, 50), + TelNo: dataArray[i][12] || undefined, + LLDDHealthProb: dataArray[i][13] != "99" ? 1 : 9, + PriorAttain: { + PriorLevel: dataArray[i][15], + DateLevelApp: dataArray[i][14], + }, + LLDDandHealthProblem: dataArray[i][13] != "99" + ? [{ LLDDCat: dataArray[i][13], PrimaryLLDD: 1 }] + : undefined, + LearnerEmploymentStatus: employmentStatusArray, + LearningDelivery: learningDeliveryArray + } + + xmlBase.Learner.push(learner); } } -module.exports = { pushLearners }; \ No newline at end of file +module.exports = { pushLearners }; From 31d274a1fbdd6578d2d151cc33cb8399f6f220b5 Mon Sep 17 00:00:00 2001 From: Jason Warren Date: Wed, 26 Nov 2025 16:22:43 +0000 Subject: [PATCH 04/10] style: reorganise imports and add section markers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reorganise imports for better logical grouping and add section comment markers to improve code navigation in main.js. Improves readability without functional changes. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- main.js | 611 ++++---------------------------------------------------- 1 file changed, 37 insertions(+), 574 deletions(-) diff --git a/main.js b/main.js index baa7437..39f8938 100644 --- a/main.js +++ b/main.js @@ -1,57 +1,52 @@ +const fs = require("fs"); +const os = require("os"); +const path = require("node:path"); +const xmlbuilder = require("xmlbuilder"); const xmllint = require("xmllint"); +const { pushLearners } = require("./src/utils/pushLearners"); +const { Worker } = require("worker_threads"); const { app, BrowserWindow, ipcMain, globalShortcut, dialog, - shell, + shell } = require("electron"); -const path = require("node:path"); -const fs = require("fs"); -const xmlbuilder = require("xmlbuilder"); -const { Worker } = require("worker_threads"); -const os = require("os"); -const { pushLearners } = require("./src/utils/pushLearners"); -// Date Setter -const currentDate = new Date(Date()); -const isoWithoutMsOrZ = currentDate.toISOString().split(".")[0]; -const dateOnlyString = isoWithoutMsOrZ.replace(/T.*/, ""); - -// File System +// ====== FILE SYSTEM ====== const tempDir = path.join(os.tmpdir(), `electron-ilr_file_creator-xmls`); - -if (!fs.existsSync(tempDir)) { - fs.mkdirSync(tempDir, { recursive: true }); -} - +if (!fs.existsSync(tempDir)) fs.mkdirSync(tempDir, { recursive: true }) let XMLfilePath = ""; -// Version & Year -let versionForExport = ""; - +// ====== DATES & VERSIONS ====== +const currentDate = new Date(Date()); +const isoWithoutMsOrZ = currentDate + .toISOString() + .split(".")[0]; +const dateOnlyString = isoWithoutMsOrZ + .replace(/T.*/, ""); const formatDateTime = (date) => { - const yyyymmdd = date.toISOString().split("T")[0].replace(/-/g, ""); - const hhmmss = date.toTimeString().split(" ")[0].replace(/:/g, ""); + const yyyymmdd = date + .toISOString() + .split("T")[0] + .replace(/-/g, ""); + const hhmmss = date + .toTimeString() + .split(" ")[0] + .replace(/:/g, ""); return `${yyyymmdd}-${hhmmss}`; }; function convertAcademicYear(yearString) { - // Validate input - if (!/^\d{4}$/.test(yearString)) { - throw new Error("Invalid input. Please provide a 4-digit year string."); - } - - // Extract first two and last two digits + if (!/^\d{4}$/.test(yearString)) throw new Error("Invalid input. Please provide a 4-digit year string."); const firstTwoDigits = yearString.slice(0, 2); const lastTwoDigits = yearString.slice(2); - - // Convert to formatted academic year return `20${firstTwoDigits}-${lastTwoDigits}`; } -// XML Schema +// ====== XML SCHEMA ====== +let versionForExport = ""; let xmlBase = { Header: { CollectionDetails: { @@ -76,7 +71,9 @@ let xmlBase = { Learner: [], }; -// App Window +// ====== START UP ====== +ipcMain.on("log-message", (event, message) => { console.log("Renderer:", message) }); + function createWindow() { const win = new BrowserWindow({ width: 1200, @@ -95,14 +92,6 @@ function createWindow() { win.webContents.toggleDevTools(); }); } - -// Error Logging -ipcMain.on("log-message", (event, message) => { - console.log("Renderer:", message); -}); - -// === APP === -// Startup app.whenReady().then(() => { createWindow(); app.on("activate", () => { @@ -110,561 +99,36 @@ app.whenReady().then(() => { }); }); -// TODO: This should be broken out into separate modules. 650 lines is not a function, it's an app +// ====== EVENTS ====== ipcMain.on("upload-csv", (event, dataArray, version) => { try { versionForExport = version; xmlBase.Header.Source.Release = version; xmlBase.Header.CollectionDetails.Year = version.split(".")[0]; - let refNumber = 0; // Test for Empty Values const CheckBoxPattern = /0 checked out/; - for (let I = 1; I < dataArray.length; I++) { for (let i = 0; i < dataArray[I].length; i++) { if (CheckBoxPattern.test(dataArray[I][i])) { dataArray[I][i] = "" } } } - // Map CSV values to XML structure - // for (let i = 1; i < dataArray.length; i++) { - // refNumber = i.toString().padStart(4, "0"); - // xmlBase.Learner.push({ - // LearnRefNumber: refNumber, - // ULN: dataArray[i][2], - // FamilyName: dataArray[i][4].trim(), - // GivenNames: dataArray[i][3].trim(), - // DateOfBirth: dataArray[i][6], - // Ethnicity: dataArray[i][8], - // Sex: dataArray[i][5], - // LLDDHealthProb: dataArray[i][12], - // NINumber: dataArray[i][7].replace(/\s+/g, "").trim(), - // PlanLearnHours: dataArray[i][16] || undefined, - // PostcodePrior: dataArray[i][9].trim(), - // Postcode: dataArray[i][10].trim(), - // AddLine1: dataArray[i][11] - // .replace(/[^a-zA-Z0-9\s]/g, "") - // .trim() - // .substring(0, 50), - // TelNo: dataArray[i][12] || undefined, - // LLDDHealthProb: dataArray[i][13] != "99" ? 1 : 9, - // PriorAttain: { - // PriorLevel: dataArray[i][15], - // DateLevelApp: dataArray[i][14], - // }, - // LLDDandHealthProblem: - // dataArray[i][13] != "99" - // ? [{ LLDDCat: dataArray[i][13], PrimaryLLDD: 1 }] - // : undefined, - // LearnerEmploymentStatus: [ - // /* Employment Status #1 */ ...(dataArray[i][18] - // ? [ - // { - // EmpStat: dataArray[i][18], - // DateEmpStatApp: dataArray[i][17], - // EmpId: dataArray[i][19] || undefined, - // EmploymentStatusMonitoring: [ - // ...(dataArray[i][23] - // ? [{ ESMType: "LOE", ESMCode: dataArray[i][23] }] - // : [] - // ), - // ...(dataArray[i][24] - // ? [{ ESMType: "EII", ESMCode: dataArray[i][24] }] - // : [] - // ), - // ...(dataArray[i][25] - // ? [{ ESMType: "LOU", ESMCode: dataArray[i][25] }] - // : [] - // ), - // ...(dataArray[i][21] - // ? [{ ESMType: "SEI", ESMCode: "1" }] - // : [] - // ), - // ...(dataArray[i][20] - // ? [ { ESMType: "SEM", ESMCode: "1" }, { ESMType: "OET", ESMCode: "2" } ] - // : [] - // ), - // ...(dataArray[i][22] - // ? [{ ESMType: "OET", ESMCode: "1" }] - // : [] - // ), - // ], - // }, - // ] - // : [/* No Employment Status #1 */] - // ), - // /* Employment Status #2 */ ...(dataArray[i][27] - // ? [ - // { - // EmpStat: dataArray[i][27], - // DateEmpStatApp: dataArray[i][26], - // EmpId: dataArray[i][28] || undefined, - // EmploymentStatusMonitoring: [ - // ...(dataArray[i][29] - // ? [{ ESMType: "EII", ESMCode: dataArray[i][29] }] - // : [] - // ), - // ...(dataArray[i][33] - // ? [{ ESMType: "LOE", ESMCode: dataArray[i][33] }] - // : [] - // ), - // ...(dataArray[i][31] - // ? [{ ESMType: "SEI", ESMCode: "1" }] - // : [] - // ), - // ...(dataArray[i][32] - // ? [{ ESMType: "SEM", ESMCode: "1" }] - // : [] - // ), - // ...(dataArray[i][30] - // ? [{ ESMType: "OET", ESMCode: "1" }] - // : [] - // ), - // ], - // }, - // ] - // : [/* No Employment Status #2 */] - // ), - // ], - // LearningDelivery: [ - // // First aim - only include if required fields are present - // ...(dataArray[i][34] - // ? [ - // { - // // Aim type (programme aim 1) - // LearnAimRef: dataArray[i][35].trim(), // Programme aim 1 Learning ref - // AimType: dataArray[i][34].trim(), // Aim type (programme aim 1) - // AimSeqNumber: "1", - // LearnStartDate: dataArray[i][36], // Start date (aim 1) - // LearnPlanEndDate: dataArray[i][37], // Planned end date (aim 1) - // FundModel: dataArray[i][38], // Funding module (aim 1) - // PHours: dataArray[i][42] || undefined, // Planned hours (aim 1) - // OTJActHours: dataArray[i][43] || undefined, // Actual hours (aim 1) - // ProgType: dataArray[i][39], // Programme type (aim 1) - // StdCode: dataArray[i][40] || undefined, // Apprentice standard (aim 1) - // DelLocPostCode: dataArray[i][41].trim(), // Delivery postcode (aim 1) - // EPAOrgID: dataArray[i][45].trim() || undefined, // EPAO ID (aim 1) - // ConRefNumber: dataArray[i][44].trim() || undefined, // Contract Ref (aim 1) - // CompStatus: dataArray[i][60] || undefined, // Completion status (aim 1) - // LearnActEndDate: dataArray[i][61] || undefined, // Actual end date (aim 1) - // WithdrawReason: dataArray[i][64] || undefined, // Withdrawal reason (aim 1) - // Outcome: dataArray[i][63] || undefined, // Outcome (aim 1) - // AchDate: dataArray[i][62] || undefined, // Achievement date (aim 1) - // OutGrade: dataArray[i][65] || undefined, // Outcome grade (aim 1) - // SWSupAimId: crypto.randomUUID(), - // LearningDeliveryFAM: [ - // ...(dataArray[i][50] - // ? [ - // { - // // Funding indicator (aim 1) - // LearnDelFAMType: "FFI", - // LearnDelFAMCode: dataArray[i][50], - // }, - // ] - // : []), - // ...(dataArray[i][51] - // ? [ - // { - // // Source of funding (aim 1) - // LearnDelFAMType: "SOF", - // LearnDelFAMCode: dataArray[i][51], - // }, - // ] - // : []), - // ...(dataArray[i][46] - // ? [ - // { - // // Contract type (aim 1) - // LearnDelFAMType: dataArray[i][46], - // LearnDelFAMCode: dataArray[i][47], - // LearnDelFAMDateFrom: dataArray[i][48] || undefined, // Date applies from (aim 1) - // LearnDelFAMDateTo: dataArray[i][49] || undefined, // Date applies to (aim 1) - // }, - // ] - // : []), - // ], - // AppFinRecord: [ - // ...(dataArray[i][52] - // ? [ - // { - // // Financial type 1 (aim 1) - // AFinType: dataArray[i][52], - // AFinCode: dataArray[i][53] || undefined, // Financial code 1 (aim 1) - // AFinDate: dataArray[i][54] || undefined, // Financial start date 1 (aim 1) - // AFinAmount: dataArray[i][55] || undefined, // Training price (aim 1) - // }, - // ] - // : []), - // ...(dataArray[i][56] - // ? [ - // { - // // Financial type 2 (aim 1) - // AFinType: dataArray[i][56], - // AFinCode: dataArray[i][57] || undefined, // Financial code 2 (aim 1) - // AFinDate: dataArray[i][58] || undefined, // Financial start date 2 (aim 1) - // AFinAmount: dataArray[i][59] || undefined, // Total assessment price (aim 1) - // }, - // ] - // : []), - // ], - // }, - // ] - // : []), - - // // Second aim - only include if required fields are present - // ...(dataArray[i][66] - // ? [ - // { - // LearnAimRef: dataArray[i][67].trim(), // Programme aim 2 Learning ref - // AimType: dataArray[i][66].trim(), // Aim type (programme aim 2) - // AimSeqNumber: "2", - // LearnStartDate: dataArray[i][68], // Start date (aim 2) - // LearnPlanEndDate: dataArray[i][69], // Planned end date (aim 2) - // FundModel: dataArray[i][70], // Funding module (aim 2) - // PHours: dataArray[i][74] || undefined, // Planned hours (aim 2) - // ProgType: dataArray[i][71], // Programme type (aim 2) - // StdCode: dataArray[i][72] || undefined, // Apprentice standard (aim 2) - // DelLocPostCode: dataArray[i][73].trim(), // Delivery postcode (aim 2) - // OTJActHours: dataArray[i][75] || undefined, // Actual hours (aim 2) - // EPAOrgID: dataArray[i][77].trim() || undefined, // EPAO ID (aim 2) - // ConRefNumber: dataArray[i][76].trim() || undefined, // Contract Ref (aim 2) - // CompStatus: dataArray[i][92] || undefined, // Completion status (aim 2) - // LearnActEndDate: dataArray[i][93] || undefined, // Actual end date (aim 2) - // WithdrawReason: dataArray[i][96] || undefined, // Withdrawal reason (aim 2) - // Outcome: dataArray[i][95] || undefined, // Outcome (aim 2) - // AchDate: dataArray[i][94] || undefined, // Achievement date (aim 2) - // OutGrade: dataArray[i][97] || undefined, // Outcome grade (aim 2) - // SWSupAimId: crypto.randomUUID(), - // LearningDeliveryFAM: [ - // ...(dataArray[i][82] - // ? [ - // { - // // Funding indicator (aim 2) - // LearnDelFAMType: "FFI", - // LearnDelFAMCode: dataArray[i][82], - // }, - // ] - // : []), - // ...(dataArray[i][83] - // ? [ - // { - // // Source of funding (aim 2) - // LearnDelFAMType: "SOF", - // LearnDelFAMCode: dataArray[i][83], - // }, - // ] - // : []), - // ...(dataArray[i][78] - // ? [ - // { - // // Contract type (aim 2) - // LearnDelFAMType: dataArray[i][78], - // LearnDelFAMCode: dataArray[i][79], - // LearnDelFAMDateFrom: dataArray[i][80] || undefined, // Date applies from (aim 2) - // LearnDelFAMDateTo: dataArray[i][81] || undefined, // Date applies to (aim 2) - // }, - // ] - // : []), - // ], - // AppFinRecord: [ - // ...(dataArray[i][84] - // ? [ - // { - // // Financial type 1 (aim 2) - // AFinType: dataArray[i][84], - // AFinCode: dataArray[i][85] || undefined, // Financial code 1 (aim 2) - // AFinDate: dataArray[i][86] || undefined, // Financial start date 1 (aim 2) - // AFinAmount: dataArray[i][87] || undefined, // Training price (aim 2) - // }, - // ] - // : []), - // ...(dataArray[i][88] - // ? [ - // { - // // Financial type 2 (aim 2) - // AFinType: dataArray[i][88], - // AFinCode: dataArray[i][89] || undefined, // Financial code 2 (aim 2) - // AFinDate: dataArray[i][90] || undefined, // Financial start date 2 (aim 2) - // AFinAmount: dataArray[i][91] || undefined, // Total assessment price (aim 2) - // }, - // ] - // : []), - // ], - // }, - // ] - // : []), - - // // Third aim - only include if required fields are present - // ...(dataArray[i][98] - // ? [ - // { - // // Aim type (programme aim 3) - // LearnAimRef: dataArray[i][99].trim(), // Programme aim 3 Learning ref - // AimType: dataArray[i][98].trim(), // Aim type (programme aim 3) - // AimSeqNumber: "3", - // LearnStartDate: dataArray[i][100], // Start date (aim 3) - // LearnPlanEndDate: dataArray[i][101], // Planned end date (aim 3) - // FundModel: dataArray[i][102], // Funding module (aim 3) - // ProgType: dataArray[i][103], // Programme type (aim 3) - // StdCode: dataArray[i][104] || undefined, // Apprentice standard (aim 3) - // DelLocPostCode: dataArray[i][105].trim(), // Delivery postcode (aim 3) - // PHours: dataArray[i][106] || undefined, // Planned hours (aim 3) - // OTJActHours: dataArray[i][107] || undefined, // Actual hours (aim 3) - // EPAOrgID: dataArray[i][109].trim() || undefined, // EPAO ID (aim 3) - // ConRefNumber: dataArray[i][108].trim() || undefined, // Contract Ref (aim 3) - // CompStatus: dataArray[i][124] || undefined, // Completion status (aim 3) - // LearnActEndDate: dataArray[i][125] || undefined, // Actual end date (aim 3) - // WithdrawReason: dataArray[i][127] || undefined, // Withdrawal reason (aim 3) - // Outcome: dataArray[i][128] || undefined, // Outcome (aim 3) - // AchDate: dataArray[i][126] || undefined, // Achievement date (aim 3) - // OutGrade: dataArray[i][129] || undefined, // Outcome grade (aim 3) - // SWSupAimId: crypto.randomUUID(), - // LearningDeliveryFAM: [ - // ...(dataArray[i][114] - // ? [ - // { - // // Funding indicator (aim 3) - // LearnDelFAMType: "FFI", - // LearnDelFAMCode: dataArray[i][114], - // }, - // ] - // : []), - // ...(dataArray[i][115] - // ? [ - // { - // // Source of funding (aim 3) - // LearnDelFAMType: "SOF", - // LearnDelFAMCode: dataArray[i][115], - // }, - // ] - // : []), - // ...(dataArray[i][110] - // ? [ - // { - // // Contract type (aim 3) - // LearnDelFAMType: dataArray[i][110], - // LearnDelFAMCode: dataArray[i][111], - // LearnDelFAMDateFrom: dataArray[i][112] || undefined, // Date applies from (aim 3) - // LearnDelFAMDateTo: dataArray[i][113] || undefined, // Date applies to (aim 3) - // }, - // ] - // : []), - // ], - // AppFinRecord: [ - // ...(dataArray[i][116] - // ? [ - // { - // // Financial type 1 (aim 3) - // AFinType: dataArray[i][116], - // AFinCode: dataArray[i][117] || undefined, // Financial code 1 (aim 3) - // AFinDate: dataArray[i][118] || undefined, // Financial start date 1 (aim 3) - // AFinAmount: dataArray[i][119] || undefined, // Training price (aim 3) - // }, - // ] - // : []), - // ...(dataArray[i][120] - // ? [ - // { - // // Financial type 2 (aim 3) - // AFinType: dataArray[i][120], - // AFinCode: dataArray[i][121] || undefined, // Financial code 2 (aim 3) - // AFinDate: dataArray[i][122] || undefined, // Financial start date 2 (aim 3) - // AFinAmount: dataArray[i][123] || undefined, // Total assessment price (aim 3) - // }, - // ] - // : []), - // ], - // }, - // ] - // : []), - - // // Fourth aim - only include if required fields are present - // ...(dataArray[i][130] - // ? [ - // { - // // Aim type (programme aim 4) - // LearnAimRef: dataArray[i][131].trim(), // Programme aim 4 Learning ref - // AimType: dataArray[i][130].trim(), // Aim type (programme aim 4) - // AimSeqNumber: "4", - // LearnStartDate: dataArray[i][132], // Start date (aim 4) - // LearnPlanEndDate: dataArray[i][133], // Planned end date (aim 4) - // FundModel: dataArray[i][134], // Funding module (aim 4) - // PHours: dataArray[i][138] || undefined, // Planned hours (aim 4) - // ProgType: dataArray[i][135], // Programme type (aim 4) - // StdCode: dataArray[i][136] || undefined, // Apprentice standard (aim 4) - // DelLocPostCode: dataArray[i][137].trim(), // Delivery postcode (aim 4) - // OTJActHours: dataArray[i][139] || undefined, // Actual hours (aim 4) - // EPAOrgID: dataArray[i][141].trim() || undefined, // EPAO ID (aim 4) - // ConRefNumber: dataArray[i][140].trim() || undefined, // Contract Ref (aim 4) - // CompStatus: dataArray[i][156] || undefined, // Completion status (aim 4) - // LearnActEndDate: dataArray[i][157] || undefined, // Actual end date (aim 4) - // WithdrawReason: dataArray[i][159] || undefined, // Withdrawal reason (aim 4) - // Outcome: dataArray[i][160] || undefined, // Outcome (aim 4) - // AchDate: dataArray[i][158] || undefined, // Achievement date (aim 4) - // OutGrade: dataArray[i][161] || undefined, // Outcome grade (aim 4) - // SWSupAimId: crypto.randomUUID(), - // LearningDeliveryFAM: [ - // ...(dataArray[i][146] - // ? [ - // { - // // Funding indicator (aim 4) - // LearnDelFAMType: "FFI", - // LearnDelFAMCode: dataArray[i][146], - // }, - // ] - // : []), - // ...(dataArray[i][147] - // ? [ - // { - // // Source of funding (aim 4) - // LearnDelFAMType: "SOF", - // LearnDelFAMCode: dataArray[i][147], - // }, - // ] - // : []), - // ...(dataArray[i][142] - // ? [ - // { - // // Contract type (aim 4) - // LearnDelFAMType: dataArray[i][142], - // LearnDelFAMCode: dataArray[i][143], - // LearnDelFAMDateFrom: dataArray[i][144] || undefined, // Date applies from (aim 4) - // LearnDelFAMDateTo: dataArray[i][145] || undefined, // Date applies to (aim 4) - // }, - // ] - // : []), - // ], - // AppFinRecord: [ - // ...(dataArray[i][148] - // ? [ - // { - // // Financial type 1 (aim 4) - // AFinType: dataArray[i][148], - // AFinCode: dataArray[i][149] || undefined, // Financial code 1 (aim 4) - // AFinDate: dataArray[i][150] || undefined, // Financial start date 1 (aim 4) - // AFinAmount: dataArray[i][151] || undefined, // Training price (aim 4) - // }, - // ] - // : []), - // ...(dataArray[i][152] - // ? [ - // { - // // Financial type 2 (aim 4) - // AFinType: dataArray[i][152], - // AFinCode: dataArray[i][153] || undefined, // Financial code 2 (aim 4) - // AFinDate: dataArray[i][154] || undefined, // Financial start date 2 (aim 4) - // AFinAmount: dataArray[i][155] || undefined, // Total assessment price (aim 4) - // }, - // ] - // : []), - // ], - // }, - // ] - // : []), - - // // Fifth aim - only include if required fields are present - // ...(dataArray[i][162] - // ? [ - // { - // // Aim type (programme aim 5) - // LearnAimRef: dataArray[i][163].trim(), // Programme aim 5 Learning ref - // AimType: dataArray[i][162].trim(), // Aim type (programme aim 5) - // AimSeqNumber: "5", - // LearnStartDate: dataArray[i][164], // Start date (aim 5) - // LearnPlanEndDate: dataArray[i][165], // Planned end date (aim 5) - // FundModel: dataArray[i][166], // Funding module (aim 5) - // ProgType: dataArray[i][167], // Programme type (aim 5) - // StdCode: dataArray[i][168] || undefined, // Apprentice standard (aim 5) - // DelLocPostCode: dataArray[i][169].trim(), // Delivery postcode (aim 5) - // PHours: dataArray[i][170] || undefined, // Planned hours (aim 5) - // OTJActHours: dataArray[i][171] || undefined, // Actual hours (aim 5) - // EPAOrgID: dataArray[i][173].trim() || undefined, // EPAO ID (aim 5) - // ConRefNumber: dataArray[i][172].trim() || undefined, // Contract Ref (aim 5) - // CompStatus: dataArray[i][188] || undefined, // Completion status (aim 5) - // LearnActEndDate: dataArray[i][189] || undefined, // Actual end date (aim 5) - // WithdrawReason: dataArray[i][192] || undefined, // Withdrawal reason (aim 5) - // Outcome: dataArray[i][191] || undefined, // Outcome (aim 5) - // AchDate: dataArray[i][190] || undefined, // Achievement date (aim 5) - // OutGrade: dataArray[i][193] || undefined, // Outcome grade (aim 5) - // SWSupAimId: crypto.randomUUID(), - // LearningDeliveryFAM: [ - // ...(dataArray[i][178] - // ? [ - // { - // // Funding indicator (aim 5) - // LearnDelFAMType: "FFI", - // LearnDelFAMCode: dataArray[i][178], - // }, - // ] - // : []), - // ...(dataArray[i][179] - // ? [ - // { - // // Source of funding (aim 5) - // LearnDelFAMType: "SOF", - // LearnDelFAMCode: dataArray[i][179], - // }, - // ] - // : []), - // ...(dataArray[i][174] - // ? [ - // { - // // Contract type (aim 5) - // LearnDelFAMType: dataArray[i][174], - // LearnDelFAMCode: dataArray[i][175], - // LearnDelFAMDateFrom: dataArray[i][176] || undefined, // Date applies from (aim 5) - // LearnDelFAMDateTo: dataArray[i][177] || undefined, // Date applies to (aim 5) - // }, - // ] - // : []), - // ], - // AppFinRecord: [ - // ...(dataArray[i][180] - // ? [ - // { - // // Financial type 1 (aim 5) - // AFinType: dataArray[i][180], - // AFinCode: dataArray[i][181] || undefined, // Financial code 1 (aim 5) - // AFinDate: dataArray[i][182] || undefined, // Financial start date 1 (aim 5) - // AFinAmount: dataArray[i][183] || undefined, // Training price (aim 5) - // }, - // ] - // : []), - // ...(dataArray[i][184] - // ? [ - // { - // // Financial type 2 (aim 5) - // AFinType: dataArray[i][184], - // AFinCode: dataArray[i][185] || undefined, // Financial code 2 (aim 5) - // AFinDate: dataArray[i][186] || undefined, // Financial start date 2 (aim 5) - // AFinAmount: dataArray[i][187] || undefined, // Training price (aim 5) - // }, - // ] - // : []), - // ], - // }, - // ] - // : []), - // ], - // }); - // } + // ====== MAIN EVENT RIGHT HERE FOLKS ====== pushLearners(dataArray, xmlBase); - // Create the XML file + // ====== EXPORT ====== let xml = xmlbuilder .create({ Message: xmlBase }, { encoding: "utf-8" }) .att("xmlns", `ESFA/ILR/${convertAcademicYear(version.split(".")[0])}`) .att("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance") .end({ pretty: true }); - - // Build the XML file path + XMLfilePath = path.join( tempDir, `ILR-10085696-${version.split(".")[0]}-${formatDateTime(currentDate)}-01.xml`, ); - - // Save the XML file + fs.writeFile(XMLfilePath, xml, (err) => { if (err) { event.reply("xml-creation-failed", err.message); @@ -678,6 +142,7 @@ ipcMain.on("upload-csv", (event, dataArray, version) => { let xsd = fs.readFileSync(path.join(__dirname, "schemafile.xsd"), "utf-8"); + // ====== WALDO THE WOBBLY WORKER ====== /* TODO: Replace the leaky library This worker is required because the library used is old and busted and causes a memory leak. The worker can validate the xml before the memory leak causes it to crash but if we @@ -705,9 +170,7 @@ ipcMain.on("upload-csv", (event, dataArray, version) => { }); worker.on("exit", (code) => { - if (code !== 0) { - console.error(`Worker stopped with exit code ${code}`); - } + if (code !== 0) console.error(`Worker stopped with exit code ${code}`) }); } catch (error) { console.error("An error occurred during XML validation:", error); From cfb498195fc1d5efcd13c3c9901e82f6105dc9eb Mon Sep 17 00:00:00 2001 From: Jason Warren Date: Thu, 27 Nov 2025 15:55:42 +0000 Subject: [PATCH 05/10] docs: add new output format --- .../ILR data 25_26-ILR Data Export (R04).csv | 167 ++++++++++++++++++ 1 file changed, 167 insertions(+) create mode 100644 docs/inputs/ILR data 25_26-ILR Data Export (R04).csv diff --git a/docs/inputs/ILR data 25_26-ILR Data Export (R04).csv b/docs/inputs/ILR data 25_26-ILR Data Export (R04).csv new file mode 100644 index 0000000..755e007 --- /dev/null +++ b/docs/inputs/ILR data 25_26-ILR Data Export (R04).csv @@ -0,0 +1,167 @@ +Record - Airtable ID,Previous UKPRN,ULN,Given name,Family name,Sex ,Date of birth,NI number,Ethnic group,Prior post code,Post code,Street address ,Telephone number,Primary additional needs,Prior attainment date applies to,Prior attainment,Learning hours (skills bootcamp),Employment #1 date applies to,Employment status #1,Employer identifier #1 ,Small employer #1,Is the learner self employed? #1,Has the learner been made redundant? #1,Length of employment #1,Employment intensity indicator #1,Length of unemployment #1,Employment #2 date applies to,Employment status #2,Employer identifier #2,Employment intensity indicator #2,Has the learner been made redundant? #2,Is the learner self employed? #2,Small employer #2 ,Length of employment #2,Aim type (programme aim 1),Programme aim 1 Learning ref ,Start date (aim 1),Planned end date (aim 1),Funding module (aim 1),Programme type (aim 1),Apprentice standard (aim 1),Delivery postcode (aim 1),Planned hours (aim 1),Actual hours (aim 1),Contract Ref (aim 1),EPAO ID (aim 1),Contract type (aim 1),Contract type code (aim 1),Date applies from (aim1),Date applies to (aim 1),Funding indicator (aim 1),Source of funding (aim 1),Financial type 1 (aim 1),Financial code 1 (aim 1),Financial start date 1 (aim 1),Training price (aim 1),Financial type 2 (aim 1),Financial code 2 (aim 1),Financial start date 2 (aim 1),Total assessment price (aim 1),Completion status (aim 1),Actual end date (aim 1),Achievement date (aim 1),Outcome (aim 1),Withdrawal reason (aim 1),Outcome grade (aim 1),Aim type (programme aim 2),Programme aim 2 Learning ref ,Start date (aim 2),Planned end date (aim 2),Funding module (aim 2),Programme type (aim 2),Apprentice standard (aim 2),Delivery postcode (aim 2),Planned hours (aim2),Actual hours (aim 2),Contract ref (aim 2),EPAO ID (aim 2),Contract type (aim 2),Contract type code (aim 2),Date applies from (aim 2),Date applies to (aim 2),Funding indicator (aim 2),Source of funding (aim 2),Financial type 1 (aim 2),Financial code 1 (aim 2),Financial start date 1 (aim 2),Training price (aim 2),Financial type 2 (aim 2),Financial code 2 (aim 2),Financial start date 2 (aim 2),Total assessment price (aim 2),Completion status (aim 2),Actual end date (aim 2),Achievement date (aim 2),Outcome (aim 2),Withdrawal reason (aim 2),Outcome grade (aim 2),Aim type (programme aim 3),Programme aim 3 learning ref ,Start date (aim 3),Planned end date (aim 3),Funding module (aim 3),Programme type (aim 3),Apprentice standard (aim 3),Delivery postcode (aim 3),Planned hours (aim 3),Actual hours (aim 3),Contract ref (aim 3),EPAO ID (aim 3),Contract type (aim 3),Contract type code (aim 3),Date applies from (aim 3),Date applies to (aim 3),Funding indicator (aim 3),Source of funding (aim 3),Financial type 1 (aim 3),Financial code 1 (aim 3),Financial start date 1 (aim 3),Training price (aim 3),Financial type 2 (aim 3),Financial code 2 (aim 3),Financial start date 2 (aim 3),Total assessment price (aim 3),Completion status (aim 3),Actual end date (aim 3),Achievement date (aim 3),Withdrawal reason (aim 3),Outcome (aim 3),Outcome grade (aim 3),Aim type (programme aim 4),Programme aim 4 learning ref,Start date (aim 4),Planned end date (aim 4),Funding module (aim 4),Programme type (aim 4),Apprentice standard (aim 4),Delivery postcode (aim 4),Planned hours (aim 4),Actual hours (aim 4),Contract ref (aim 4),EPAO ID (aim 4),Contract type (aim 4),Contract type code (aim 4),Date applies from (aim 4),Date applies to (aim 4),Funding indicator (aim 4),Source of funding (aim 4),Financial type 1 (aim 4),Financial code 1 (aim 4),Financial start date 1 (aim 4),Training price (aim 4),Financial type 2 (aim 4),Financial code 2 (aim 4),Financial start date 2 (aim 4),Total assessment price (aim 4),Completion status (aim 4),Actual end date (aim 4),Achievement date (aim 4),Withdrawal reason (aim 4),Outcome (aim 4),Outcome grade (aim 4),Aim type (programme aim 5),Programme aim 5 learning ref ,Start date (aim 5),Planned end date (aim 5),Funding module (aim 5),Programme type (aim 5),Apprentice standard (aim 5),Delivery postcode (aim 5),Planned hours (aim 5),Actual hours (aim 5),Contract ref (aim 5),EPAO ID (aim 5),Contract type (aim 5),Contract type code (aim 5),Date applies from (aim 5),Date applies to (aim 5),Funding indicator (aim 5),Source of funding (aim 5),Financial type 1 (aim 5),Financial code 1 (aim 5),Financial start date 1 (aim 5),Training price (aim 5),Financial type 2 (aim 5),Financial code 2 (aim 5),Financial start date 2 (aim 5),Total assessment price (aim 5),Completion status (aim 5),Actual end date (aim 5),Achievement date (aim 5),Outcome (aim 5),Withdrawal reason (aim 5),Outcome grade (aim 5),Length of Unemployment #2,Length of unemployment no #2,Date applies to Employment status #3,Employment status lookup #3,Employment status #3,Employer identifier #3,Small employer #3,Self employed #3,Made Redundant #3,Length of employment lookup #3,Length of employment #3,Employment hours lookup #3,Employment hours #3,Length of unemployment lookup #3,Length of unemployment #3,Date applies to Employment status #4,Employment status lookup #4,Employment status #4,Employer identifier #4,Small employer #4,Self employed #4,Made Redundant #4,Length of employment lookup #4,Length of employment #4,Employment hours lookup #4,Employment hours #4,Date applies to Employment status #5,Employment status lookup #5,Employment status #5,Employer identifier #5,Small employer #5,Self employed #5,Made Redundant #5,Length of employment lookup #5,Length of employment #5,Employment hours lookup #5,Employment hours #5,Length of unemployment lookup #5,Length of unemployment #5 +Alexander Perez-Davies,,5796080759,Alexander ,Perez-Davies,M,1993-04-05,JX055947D,38,N16 7UJ,N16 7UJ,Flat 24 Morris Blitz Court,07525334311,99,2024-05-13,6,,2024-05-06,10,999999999,,0 checked out of 1,,2,8,,2024-05-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-20,2026-05-20,36,25,2,N4 3HH,504,505,,EPA0475,ACT,1,2024-05-20,2025-08-20,,105,TNP,1,2024-05-20,16150,TNP,2,2024-05-20,1850,2,2025-06-04,2025-08-20,1,,DE,3,Z0001947,2024-05-20,2026-05-20,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-06-04,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Guilherme Alexandre Santos Da Fonseca,,2316435334,Guilherme Alexandre,Santos Da Fonseca,M,1983-02-11,PX530942C,34,E9 5QN,E9 5QN,Flat 35 Fairmead House,07946487993,94,2024-05-13,6,,2024-05-06,10,999999999,,0 checked out of 1,,3,6,,2024-05-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-20,2026-05-20,36,25,2,N4 3HH,504,550,,EPA0475,ACT,1,2024-05-20,2025-08-27,,105,TNP,1,2024-05-20,16150,TNP,2,2024-05-20,1850,2,2025-06-04,2025-08-27,1,,DE,3,Z0001947,2024-05-20,2026-05-20,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-06-04,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Fearghal Simon Kavanagh,,3678180557,Fearghal Simon,Kavanagh,M,1991-03-19,SZ256677B,32,N19 5DL,N19 5DL,25 Girdlestone Walk,,12,2024-05-09,6,,2024-05-02,10,999999999,,0 checked out of 1,,3,8,,2024-05-16,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-16,2026-02-16,36,25,2,N4 3HH,504,554,,EPA0475,ACT,1,2024-05-16,2025-08-19,,105,TNP,1,2024-05-16,16150,TNP,2,2024-05-16,1850,2,2025-06-03,2025-08-19,1,,DE,3,Z0001947,2024-05-16,2026-02-16,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-06-03,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Halimah Manan,,2881077829,Halimah,Manan,M,1996-01-04,PA812868A,40,SE4 2AZ,SE4 2AZ,314 Brockley Road,,6,2024-05-09,9,,2024-05-02,10,999999999,,0 checked out of 1,,3,8,,2024-05-16,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-16,2026-02-16,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-05-16,,,105,TNP,1,2024-05-16,16150,TNP,2,2024-05-16,1850,1,,,,,,3,Z0001947,2024-05-16,2026-02-16,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-10-30,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Oskar Przybylski,,1710136412,Oskar,Przybylski,M,1995-01-03,SS176624A,34,SE16 4UT,SE16 4UT,"36 Pickwick House, George Row, London SE16 4UT",,99,2024-05-09,10,,2024-05-02,11,,,0 checked out of 1,,,,1,2024-05-16,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-16,2026-02-16,36,25,2,N4 3HH,504,554,,EPA0475,ACT,1,2024-05-16,2025-11-03,,105,TNP,1,2024-05-16,16150,TNP,2,2024-05-16,1850,2,2025-08-20,2025-11-03,1,,DE,3,Z0001947,2024-05-16,2026-02-16,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-08-20,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Alexander Rodriguez,,8586841632,Alexander,Rodriguez,M,1979-06-19,SP159186C,34,N7 7NE,N7 7NE,"72 Hornsey Road, N77NE",,99,2024-05-09,6,,2024-05-02,10,999999999,,0 checked out of 1,,4,6,,2024-05-16,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2024-05-16,2026-02-16,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-05-16,,,105,TNP,1,2024-05-16,16150,TNP,2,2024-05-16,1850,1,,,,,,3,Z0001947,2024-05-16,2026-02-16,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mohammed Salim Gajia,,3818866855,Mohammed Salim,Gajia,M,1998-11-22,pe 329693b,39,IG1 4LJ,IG1 4LJ,134 Wellesley Road,07599537784,10,2024-05-13,4,,2024-05-06,10,999999999,,0 checked out of 1,,2,8,,2024-05-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-20,2026-05-20,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-05-20,,,105,TNP,1,2024-05-20,16150,TNP,2,2024-05-20,1850,1,,,,,,3,Z0001947,2024-05-20,2026-05-20,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Levi Musa Rogers,,9707618956,Levi Musa,Rogers,M,2001-07-29,Ph119604A,38,E9 5DR,E9 5DR,"Flat 9, Presentation House",07939157314,99,2024-05-13,4,,2024-05-06,10,999999999,,0 checked out of 1,,3,8,,2024-05-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-20,2026-05-20,36,25,548,N4 3HH,504,,,EPA0475,ACT,1,2024-05-20,,,105,TNP,1,2024-05-20,15400,TNP,2,2024-05-20,1600,1,,,,,,3,Z0001946 ,2024-05-20,2026-05-20,36,25,548,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-10-24,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Riley O'Dwyer,,2777776074,Riley,O'Dwyer,M,2006-06-03,PL380683D,31,E5 8JJ,E5 8JJ,"Flat 2, Sheppey House",07376526238,99,2024-06-24,4,,2024-06-17,98,,,0 checked out of 1,,,,,2024-07-01,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-07-01,2026-07-01,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-07-01,,,105,TNP,1,2024-07-01,16150,TNP,2,2024-07-01,1850,1,,,,,,3,Z0001947,2024-07-01,2026-07-01,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Marika Bertelli,,7026723870,Marika,Bertelli,F,1987-05-13,SS520351D,34,E5 0TZ,E5 0TZ,"2 Yatesbury Court, Studley Close",07517782427,99,2024-09-09,10,,2024-09-02,10,999999999,,0 checked out of 1,,4,8,,2024-09-16,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-09-16,2026-03-16,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-09-16,,,105,TNP,1,2024-09-16,16150,TNP,2,2024-09-16,1850,1,,,,,,3,Z0001947,2024-09-16,2026-03-16,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-10-27,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +William Man,,9562002011,William,Man,M,1993-02-07,JW838085B,42,E10 6RJ,E10 6RJ,"29, Crawley Road",07447957768,95,2024-09-02,9,,2024-08-26,10,999999999,,0 checked out of 1,,4,5,,2024-09-09,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-09-09,2026-03-09,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-09-09,,,105,TNP,1,2024-09-09,16150,TNP,2,2024-09-09,1850,1,,,,,,3,Z0001947,2024-09-09,2026-03-09,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-10-06,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Bandana Singh,,2184831653,Bandana,Singh,F,1995-10-11,TL206065B,43,DA16 3DA,DA16 3DA,8 Wickham Street,,99,2024-02-26,9,240,2024-02-19,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-12,,3,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Igors Makaruks,,5767635365,Igors ,Makaruks,M,1984-04-25,SG252240A,99,NW3 1AU,NW3 1AU,"4 East View, Vale of Health",,99,2024-02-26,9,240,2024-02-19,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-12,,3,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Panagiotis Kazantzis,,4952874272,Panagiotis,Kazantzis,M,1995-08-03,SW942051D,34,SE15 4HN,SE15 4HN,"70A Fenwick Road, London",,9,2024-02-26,9,240,2024-02-19,10,999999999,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-26,2024-08-09,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059748,2024-04-19,2024-04-19,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-19,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mark Christopher Hodierne,,2818735199,Mark Christopher,Hodierne,M,1965-02-14,NE762561A,31,BN2 9TL,BN2 9TL,14 Cobden Road,,99,2024-02-26,10,240,2024-02-19,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-05-29,2024-07-04,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059747,2024-05-29,2024-05-29,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-05-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Maria Slobodina,,6270375591,Maria,Slobodina,F,1997-09-13,SW216940A,34,TW10 6QD,TW10 6QD,Onslow Avenue Mansions,,94,2024-02-26,4,240,2024-02-19,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-26,2024-04-09,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059749,2024-04-09,2024-04-09,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-09,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Karyna Nechyporuk,,2105122298,Karyna,Nechyporuk,F,2002-11-05,TL115636A,34,E3 5JN,E3 5JN,123 St Stephen’s Rd,,99,2024-02-26,9,240,2024-02-19,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-29,2024-07-02,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059747,2024-04-29,2024-04-29,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Paul William Evans,,7085111436,Paul William,Evans,M,1989-05-18,JP304330C,31,EN2 8DH,EN2 8DH,24 Chase Court Gardens,,99,2024-02-26,10,240,2024-02-19,10,999999999,checked,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-26,2024-08-01,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059748,2024-04-10,2024-04-10,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-10,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Omotomiwa Oluwatunmise Oredein,,4039352768,Omotomiwa Oluwatunmise,Oredein,M,1992-08-09,sg817425b,44,RG2 0NZ,RG2 0NZ,106 peregrine House ,,98,2024-02-26,10,240,2024-02-19,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-26,2024-04-16,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059747,2024-03-21,2024-03-21,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-03-21,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Alec Buchanan,,7890400291,Alec,Buchanan,M,1992-08-07,JW277074C,31,SW11 1QD,SW11 1QD,36C Comyn Road,,99,2024-02-26,9,240,2024-02-19,10,999999999,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-26,2024-05-21,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059748,2024-04-17,2024-04-17,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-17,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Olof Daniel Hall,,2743262817,Olof Daniel,Hall,M,1988-04-01,SN656988A,34,E15 1DX,E15 1DX,"3 Azure Building, 59 Great Eastern Road",,99,2024-02-26,9,240,2024-02-19,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-26,2024-04-08,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059747,2024-04-08,2024-04-08,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-08,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Harshil Joshi,,6334155465,Harshil,Joshi,M,1997-05-13,PW870059D,39,HA9 9EB,HA9 9EB,"14 Forty Lane, Wembley Park",,99,2024-02-26,9,240,2024-02-19,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-26,2024-04-13,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059747,2024-04-12,2024-04-12,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Oleksandr Diudiun,,5926820897,Oleksandr,Diudiun,M,1987-11-22,TJ148295D,34,SE11 5AT,SE11 5AT,"Flat 70, 7 Gasholder Place",,99,2024-02-26,10,240,2024-02-19,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-26,2024-04-09,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059749,2024-04-09,2024-04-09,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-09,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Albert Bezman,,8787077484,Albert,Bezman,M,1992-10-04,SL695864A,34,SE5 8LG,SE5 8LG,30 Grove Park,,99,2024-02-26,9,240,2024-02-19,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-05-29,2024-07-02,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059747,2024-05-29,2024-05-29,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-05-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Antonis Hadjipittas,,9402683703,Antonis,Hadjipittas,M,1992-09-29,NJ822967D,34,W2 2QN,W2 2QN,"247, Park West, Edgware road",,98,2024-10-07,10,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-02-18,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-11-11,2024-11-11,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-11-11,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mahasen Jayawickrama Gunawardena,,8609854530,Mahasen Jayawickrama,Gunawardena,M,1986-08-09,SE591074C,43,W8 4BG,W8 4BG,73C Kensington Church Street,,98,2024-10-07,6,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-01-20,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-28,2024-10-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Jigisha Pawar,,4325724116,Jigisha,Pawar,F,1988-02-16,SX961686C,39,HA8 6DN,HA8 6DN,30 Roch Avenue,,98,2024-10-07,10,240,2024-09-30,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2024-12-20,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2024-11-21,2024-11-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-11-21,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Farya Hussain,,6799197011,Farya,Hussain,F,1990-10-06,jm520327d,40,N15 5QA,N15 5QA,32 Cissbury Road,,99,2024-10-07,10,240,2024-09-30,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-15,2025-02-06,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2025-01-15,2025-01-15,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-01-15,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Marian-Robert Vava,,8606806993,Marian-Robert,Vava,M,1998-10-13,SZ811884A,34,N15 3SX,N15 3SX,10 Fermain Court North,,98,2024-10-07,10,240,2024-09-30,10,999999999,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-01-07,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-29,2024-10-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Samuel Vincent Rae,,5880018295,Samuel Vincent,Rae,M,1977-09-13,JW877164A,31,NW5 1LR,NW5 1LR,Flat 9 Heathview,,99,2024-10-07,10,240,2024-09-30,10,999999999,checked,0 checked out of 1,,3,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-12-06,2025-01-31,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059748,2024-10-28,2024-10-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-10-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Askar Sulaimanov,,8740250368,Askar,Sulaimanov,M,1995-12-12,SS417875D,43,NW6 5PW,NW6 5PW,45 Blake Court,,99,2024-10-07,9,240,2024-09-30,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-08,2025-03-31,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2025-01-08,2025-01-08,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-01-08,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Barbora Filova,,2414377223,Barbora,Filova,F,1988-12-23,SL455262C,34,SE5 8NN,SE5 8NN,50 Shenley road,,99,2024-10-07,10,240,2024-09-30,10,999999999,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-12-06,2025-01-22,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059748,2024-10-29,2024-10-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-10-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +John Robison Hoopes IV,,1577280007,John Robison,Hoopes IV,M,1987-10-23,SX924014C,34,N18 3BA,N18 3BA,30 Gerrard Road,,99,2024-10-07,10,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-01-09,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-30,2024-10-30,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-30,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Paul-Alberto Popescu,,4813888509,Paul-Alberto,Popescu,M,1996-10-02,SZ064142C,34,WC1H 9SE,WC1H 9SE,37 Tavistock Pl,,99,2024-10-07,9,240,2024-09-30,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-22,2025-03-11,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2024-10-28,2024-10-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Maxim Iwanskyj,,5788097931,Maxim,Iwanskyj,M,2002-08-08,PH716266C,34,NG2 7FJ,NG2 7FJ,2 Lansdowne Drive,,94,2024-10-07,9,240,2024-09-30,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-13,2025-02-18,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2025-01-13,2025-01-13,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-01-13,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Omar Eweis,,9036719231,Omar,Eweis,M,2001-08-26,PH158963D,47,TW14 9LZ,TW14 9LZ,41 Burns Avenue,,99,2024-10-07,10,240,2024-09-30,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-10,2025-01-10,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2025-01-10,2025-01-10,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-01-10,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Gurleen Kaur Vasir,,2603209468,Gurleen Kaur,Vasir,F,1998-03-31,PG473200A,39,IG3 9SP,IG3 9SP,20 Alloa Road ,,98,2024-10-07,10,240,2024-09-30,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-08,2025-02-25,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2025-01-08,2025-01-08,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-01-08,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Lydia Joan Farnham,,8917381528,Lydia Joan,Farnham,F,1998-06-22,PC975846C,31,SW4 8QL,SW4 8QL,"6 Cavendish Gardens, Trouville Road",,94,2024-10-07,9,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-01-08,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-30,2024-10-30,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-30,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Kaleb Michael Rogan Sofer,,9476057016,Kaleb Michael Rogan,Sofer,M,1994-11-06,JZ718492A,31,NW1 7SX,NW1 7SX,46 Regents Park Road,,99,2024-10-07,9,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-01-08,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-31,2024-10-31,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-31,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Sam Valentine Ocean Burcher,,8958323662,Sam Valentine Ocean,Burcher,M,1999-02-20,PE458469B,31,N19 5UE,N19 5UE,17 Greatfield Close,,99,2024-10-07,9,240,2024-09-30,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-08,2025-03-03,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2025-01-08,2025-01-08,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-01-08,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Moulay-Karim Id-boufker,,6659560520,Moulay-Karim,Id-boufker,M,1983-12-06,SP023118C,98,N5 1UZ,N5 1UZ,30 Battledean Road,,99,2024-10-07,10,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-02-07,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-28,2024-10-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Leare Chimin Song,,8264205584,Leare Chimin,Song,F,1992-12-30,SN333021B,43,KT3 6RF,KT3 6RF,65 Blakes Avenue,,99,2024-10-07,9,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-01-07,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-28,2024-10-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Theodoros Keloglou,,5191611747,Theodoros,Keloglou,M,1994-06-17,SY435354C,34,N1 5AE,N1 5AE,64 Hertford Road,,94,2023-03-13,6,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,,,EPA0475,ACT,1,2023-03-20,,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,1,,,,,,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-04-09,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Daniel Levy,,9465176213,Daniel,Levy,M,1998-12-22,PE526525B,98,N3 3QU,N3 3QU,44 East End Road,,99,2025-01-20,10,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-04-29,,8,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-04-29,2025-04-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +David Gareth Walters,,9960309400,David Gareth,Walters,M,1974-04-25,JA546910C,31,NW3 2RX,NW3 2RX,10 Heath Hurst Road,,98,2025-01-20,10,240,2025-01-13,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-29,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-03-15,2025-03-15,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-15,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Ermina Malaj,,2801162867,Ermina,Malaj,F,1997-03-10,PE879993B,34,N4 3PQ,N4 3PQ,20 Dellafield,,99,2025-01-20,9,240,2025-01-13,10,,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-10,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-03-18,2025-03-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-18,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Tolga Hasan Dur,,7517945148,Tolga Hasan,Dur,M,1995-01-28,SY794506C,98,NW1 8ER,NW1 8ER,"Flat 2, 10 Ferdinand Street",,94,2025-01-20,10,240,2025-01-13,10,,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-08,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-03-04,2025-03-04,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-04,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Cameron Boroumand,,6417981656,Cameron,Boroumand,M,2000-08-02,SC699905B,31,NE40 3XB,NE40 3XB,9 Curlew Close,,98,2025-01-20,9,240,2025-01-13,11,999999999,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-04-01,2025-04-01,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-04-01,2025-04-01,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-01,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Omoniigbehin-eni Adeyemo,,1969688113,Omoniigbehin-eni,Adeyemo,M,1988-02-29,PX870570C,36,SE4 1AG,SE4 1AG,57 Ehurst Road,,12,2025-01-20,10,240,2025-01-13,10,999999999,checked,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-03-21,2025-03-25,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059748,2025-02-03,2025-02-03,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-02-03,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Nicola Croce,,8021910649,Nicola,Croce,M,1993-05-14,NJ727717B,34,N1 0GJ,N1 0GJ,79 St Williams Court,,99,2025-01-20,10,240,2025-01-13,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-02,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-03-04,2025-03-04,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-04,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Sallar Ali Qazi,,9318695313,Sallar Ali,Qazi,M,1994-12-22,NJ015743D,40,W12 0FD,W12 0FD,"Flat 11, 88 Wood Lane",,98,2025-01-20,10,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-04,2025-07-01,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-05-04,2025-05-04,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-04,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Toluwalope Ojo,,4472251999,Toluwalope ,Ojo,F,2000-02-25,PG193951D,46,HA2 8QJ ,HA2 8QJ ,65 WINDSOR CRESCENT ,,99,2025-01-20,10,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-04-10,2025-07-24,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-04-10,2025-04-10,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-10,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Yulia Goryachev,,6842260573,Yulia,Goryachev,F,1981-07-15,ST719793B,34,N20 0QT,N20 0QT,16 Green Road,,98,2025-01-20,10,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-02,2025-04-02,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-05-02,2025-05-02,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-02,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Andreas Paxinos,,6349814958,Andreas,Paxinos,M,1994-09-01,SP663030C,34,SE1 5EB,SE1 5EB,"5 New Tannery Way, Apartment 11",,99,2025-01-20,10,240,2025-01-13,10,999999999,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-04-17,2025-04-17,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059748,2025-04-17,2025-04-17,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-04-17,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Thomas Harper,,8903972332,Thomas,Harper,M,1996-06-19,PB233792A,38,TW7 6BE,TW7 6BE,57 Church Street,,99,2025-01-20,6,240,2025-01-13,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-09,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-03-03,2025-03-03,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-03,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Nigel David Simon Kiernan,,2695489594,Nigel David Simon,Kiernan,M,1971-02-23,NW751336C,31,ME1 3AG,ME1 3AG,36 Priestfields,,14,2025-01-20,10,240,2025-01-13,10,,,1 checked out of 1,,1,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-04-22,2025-04-22,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-04-22,2025-04-22,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-22,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Harry Moss,,3022498348,Harry,Moss,M,1989-12-16,JS560178C,31,N19 4JN,N19 4JN,94 Alexander Road,,99,2025-01-20,10,240,2025-01-13,10,999999999,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-03-21,2025-04-23,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059748,2025-01-28,2025-01-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-01-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Oliver Joseph Maclean Ross,,6050639530,Oliver Joseph Maclean,Ross,M,2002-03-19,PH515793B,31,E2 7RU,E2 7RU,1 Shipton Street,,99,2025-01-20,10,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-08,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-03-06,2025-03-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-06,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Amirhossein Jabarivasal,,1394079566,Amirhossein,Jabarivasal,M,1994-12-05,SL532012A,43,NW9 4DF,NW9 4DF,"Flat 62, Umber House, 3 Lismore Boulevard",,99,2025-01-20,9,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-04-14,2025-04-14,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-04-03,2025-04-03,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-03,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Gianfranco Ameri,,9306105176,Gianfranco,Ameri,M,2002-08-09,SC799378C,31,SW3 4EP,SW3 4EP,41 Smith Street,,99,2025-01-20,10,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-04-02,2025-04-30,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-04-02,2025-04-02,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-02,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Oliver Federico,,1163999201,Oliver,Federico,M,2001-03-01,PG797065B,31,EC2A 3EN,EC2A 3EN,"Flat1, 1 Three Cups Alley, Fairchild Place",,12,2025-01-20,9,240,2025-01-13,10,,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-08,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-03-06,2025-03-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-06,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Kate O'Brien,,8257599599,Kate,O'Brien,F,1992-03-07,SX015163D,32,N15 3TB,N15 3TB,21 Ritches rd,,12,2023-03-13,10,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,322,,EPA0475,ACT,1,2023-03-20,2024-10-01,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,6,2024-10-01,,3,,,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,6,2024-10-01,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Philippa Bywater,,6548628720,Philippa,Bywater,F,1992-06-17,JW 89 21 51 D,31,E10 6RN,E10 6RN,"23 Brennan House, 608 High Road Leyton, e10 6RN ",,94,2023-03-13,9,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,625,,EPA0475,ACT,1,2023-03-20,2025-10-16,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,2,2025-04-30,2025-10-16,1,,DE,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-04-30,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Harriet Owen,,2553336488,Harriet,Owen,F,1989-02-28,JJ124648A,31,SE15 1PX,SE15 1PX,88 Friary Road,,94,2023-03-13,10,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,,,EPA0475,ACT,1,2023-03-20,,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,1,,,,,,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-07-31,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Jacob Mitchell,,3018854224,Jacob,Mitchell,M,1996-07-30,PB 63 61 19 D,31,N19 3AY,N19 3AY,212A Camberwell New Road,,94,2023-03-13,10,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,638,,EPA0475,ACT,1,2023-03-20,2025-09-08,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,2,2025-06-30,2025-09-08,1,,DE,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-06-30,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Pastor Ignacio Jurado Traverso,,9418517913,Pastor Ignacio,Jurado Traverso,M,1973-08-01,SC796579D,34,BR6 0PX,BR6 0PX,57 Weststand Apartments ,,99,2023-03-13,97,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,,,EPA0475,ACT,1,2023-03-20,,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,1,,,,,,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-10-03,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Eade Moon Hemingway,,1003331709,Eade Moon,Hemingway,F,1992-08-06,JW713465B,31,N1 5FB,N1 5FB,Unit 4b Canalside studios,,94,2023-03-13,10,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,451,,EPA0475,ACT,1,2023-03-20,2024-06-18,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,6,2024-06-18,,3,,,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,6,2024-06-18,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Ali Versi,,6081018724,Ali,Versi,M,1990-05-01,JR 40 27 92 A,39,SW3 3BQ,SW3 3BQ,Flat 817 Nell Gwynn House,,95,2023-03-13,10,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,,,EPA0475,ACT,1,2023-03-20,,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,1,,,,,,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-07-29,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Adam samuel Gilbert,,9045178183,Adam samuel,Gilbert,M,1989-12-19,JP200156A,98,NW1 7BS,NW1 7BS,"Flat 412, Carlow House",,99,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-07-17,,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,1,,,,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-30,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Amber Rignell,,4720622398,Amber ,Rignell,F,1998-05-24,PX477294C,31,N1 5RL,N1 5RL,11 Mill Row,,94,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-07-17,,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,1,,,,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-29,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Aibek Sarimbekov,,8212934666,Aibek,Sarimbekov,M,1987-04-18,SX051127D,43,NW8 6JU,NW8 6JU,3 Wilkie house,,94,2023-07-10,10,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,310,,EPA0475,ACT,1,2023-07-17,2024-06-03,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,6,2024-06-03,,3,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,6,2024-06-03,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Owen Arthur Turner-Major,,4254215052,Owen Arthur,Turner-Major,M,1992-09-05,JN707571D,31,N6 6JJ,N6 6JJ,"16 West Hill Court, Millfield Lane",,94,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,415,,EPA0475,ACT,1,2023-07-17,2024-10-01,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,6,2024-10-01,,3,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,6,2024-10-01,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Musa Lala,,1569629578,Musa,Lala,M,2001-06-10,PH128596A,43,IG8 8EJ,IG8 8EJ,"1 Sands Way, Woodford, Woodford Green",,94,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-07-17,,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,1,,,,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-28,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Jon Ander Besga Aristizabal,,8575725164,Jon Ander,Besga Aristizabal,M,1992-02-14,SZ210151D,34,N1 7QQ,N1 7QQ,"Flat 28, Thaxted Court, 2 Murray Grove",,94,2023-07-10,6,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-07-17,,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,1,,,,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Anvar Abdullaev,,3664575708,Anvar,Abdullaev,M,1977-03-06,SL988225B,43,DA5 3LL,DA5 3LL,164 Murchison Avenue,,94,2023-07-10,10,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,598,,EPA0475,ACT,1,2023-07-17,2025-10-08,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,2,2025-07-29,2025-10-08,1,,DE,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-29,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Matthew Megarry,,8589841943,Matthew,Megarry,M,1985-04-09,JR 57 47 24 A,31,N15 4NL,N15 4NL,"Flat 2, 6 Wakefield Road, London, UK",,96,2023-07-10,10,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,961,,EPA0475,ACT,1,2023-07-17,2025-10-29,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,2,2025-07-29,2025-10-29,1,,DE,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-29,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Matthew Barry Hall,,1002015471,Matthew Barry,Hall,M,1990-05-04,JS345776A,31,HU12 8NH,HU12 8NH,"5 Chestnut Avenue, Hedon, Hull",,94,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-07-17,,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,1,,,,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-30,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Lok Ting Serena Chan,,8428255317,Lok Ting Serena,Chan,F,1997-10-22,ST990663D,42,NW9 7DS,NW9 7DS,"Flat 45 Greenshank House, 19 Moorhen Drive",,94,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,610,,EPA0475,ACT,1,2023-07-17,2025-05-27,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,2,2025-03-04,2025-05-27,1,,PA,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-03-04,,1,,PA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Efstathios Kapnidis,,5100802455,Efstathios,Kapnidis,M,1999-06-10,SY166459D,99,N1 6QD,N1 6QD,Flat 3 Arden House Arden Estate Hackney,,98,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,990,,EPA0475,ACT,1,2023-07-17,2025-07-29,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,2,2025-04-23,2025-07-29,1,,DE,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-04-23,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Ibrahim Kaan Keskin,,6672364276,Ibrahim Kaan,Keskin,M,1991-11-05,SX253433B,38,E16 1US,E16 1US,Apartment 1304,,99,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-07-17,,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,1,,,,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-10-06,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Aiaz Mamedov,,7380344683,Aiaz,Mamedov,M,1999-06-22,TL134666C,98,SW1P 4LA,SW1P 4LA,"Flat 101, Marsham Court",,98,2023-10-16,10,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,519,,EPA0475,ACT,1,2023-10-23,2025-07-11,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,2,2025-03-04,2025-07-11,1,,ME,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-03-04,,1,,ME,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Bachar Richard Kabalan,,2841623563,Bachar Richard,Kabalan,M,1989-08-16,SY421269B,47,E17 8AR,E17 8AR,90 clacton road,,99,2023-10-16,10,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-10-23,,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,1,,,,,,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +William Patrick Parker,,6352721418,William Patrick,Parker,M,1973-04-09,NZ426370D,31,ML6 7SA,ML6 7SA,16 Bridge Street,,94,2023-10-16,9,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,552,,EPA0475,ACT,1,2023-10-23,2025-10-29,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,2,2025-07-30,2025-10-29,1,,PA,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-30,,1,,PA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Matthew Gregory ,,4558044487,Matthew,Gregory ,M,1989-04-14,JG 46 28 60 A,31,N1 8QD,N1 8QD,1a Price House,,94,2023-10-16,10,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-10-23,,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,1,,,,,,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-09-30,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Navjot Sharma,,7798405819,Navjot,Sharma,F,1991-08-26,SY 56 64 91 D,39,SE7 7GG,SE7 7GG,4 Bowen Drive,,99,2023-10-16,9,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-10-23,2025-08-15,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,6,2025-08-15,,3,,,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,6,2025-08-15,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Birsen Yildiz,,4386689248,Birsen,Yildiz,F,1983-02-21,SK 89 28 61 B,34,SM1 2PS,SM1 2PS,55 Stayton Road,,99,2023-10-16,10,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,668,,EPA0475,ACT,1,2023-10-23,2025-10-16,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,2,2025-07-22,2025-10-16,1,,DE,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-22,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Halimat Afolabi,,2751620786,Halimat ,Afolabi,F,1994-03-26,jz938661B,44,SW2 3TS,SW2 3TS,102 Downton Avenue,,98,2023-10-16,10,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-10-23,,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,1,,,,,,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Shaheen Ahmed-Chowdhury,,7531093137,Shaheen,Ahmed-Chowdhury,M,1994-12-11,PA696495B,41,E15 1BQ,E15 1BQ,82 Gerry Raffles Square,,99,2023-10-16,10,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-10-23,,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,1,,,,,,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Jason Ross Warren,,5484836491,Jason Ross,Warren,M,1985-05-23,JW661714C,31,E17 8QJ,E17 8QJ,"36 Devonshire Road, London, E17 8QJ",07725913649,94,2024-09-02,10,,2024-08-26,10,999999999,,0 checked out of 1,,4,6,,2024-09-09,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2024-09-09,2026-06-09,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-09-09,,,105,TNP,1,2024-09-09,16150,TNP,2,2024-09-09,1850,1,,,,,,3,Z0001947,2024-09-09,2026-06-09,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Daniel Beattie,,1422984388,Daniel,Beattie,M,1971-05-13,NW789341B,31,SE23 3YL,SE23 3YL,15 Derby Hill Crescent,,99,2025-01-20,9,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,,2025-04-04,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,,,,,37,32,,,,,SBD-1232-674,,,,,,,105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Cameron Nimmo,,3344513922,Cameron,Nimmo,M,1999-03-16,PE510553B,31,N17 6AN,N17 6AN,19 Downhills Way,,99,2025-01-20,6,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-27,2025-05-27,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-05-13,2025-05-13,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-13,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Jack Casstles-Jones,,3346566810,Jack,Casstles-Jones,M,1997-06-19,PC 28 48 15 D,31,EN2 9AN,EN2 9AN,134 Clay Hill,07493021267,98,2024-12-30,9,,2024-12-23,10,999999999,,0 checked out of 1,,2,8,,2025-01-06,10,999999999,8,,,1 checked out of 1,3,1,ZPROG001,2025-01-06,2027-01-06,36,25,2,N4 3HH,600,,,EPA0475,ACT,1,2025-01-06,,,105,TNP,1,2025-01-06,16150,TNP,2,2025-01-06,1850,1,,,,,,3,Z0001947,2025-01-06,2027-01-06,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Maxime Lesley Downe,,1839356927,Maxime Lesley,Downe,M,1992-06-28,PA 849205 B,34,SW9 6HX,SW9 6HX,50A Vassall Road,07429445107,99,2024-12-30,10,,2024-12-23,10,999999999,,1 checked out of 1,,4,8,,2025-01-06,10,999999999,8,,,1 checked out of 1,3,1,ZPROG001,2025-01-06,2027-01-06,36,25,2,N4 3HH,600,,,EPA0475,ACT,1,2025-01-06,,,105,TNP,1,2025-01-06,16150,TNP,2,2025-01-06,1850,1,,,,,,3,Z0001947,2025-01-06,2027-01-06,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Evelyn Tan,,8678386834,Evelyn,Tan,F,1994-06-07,ST371059D,42,N1 5TF,N1 5TF,56 De Beauvoir Crescent,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-05-26,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-12,2025-05-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-12,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Andrea Della Corte,,9982196838,Andrea,Della Corte,M,1985-11-28,ST670753B,34,SE1 6FN,SE1 6FN,251 Southwark Bridge Road,,95,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-05,2025-06-07,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-06-05,2025-06-05,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-05,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Oliver Cumming,,8015817624,Oliver,Cumming,M,2002-02-24,SC301423D,31,SW4 6JB,SW4 6JB,15 Larkhall Rise,,12,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-29,2025-06-16,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-29,2025-05-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Neville Bryce,,3474125698,Neville,Bryce,M,1981-11-12,JL548962C,31,NW11 7BY,NW11 7BY,Flat 25 Corringham Court,,99,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,,8,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-13,2025-05-13,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-13,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Pyry Takala,,1086035436,Pyry,Takala,M,1986-10-02,ST254430C,34,NW8 7EW,NW8 7EW,Dufourstrasse 136,,99,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,2,8,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-16,2025-08-01,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-06-16,2025-06-16,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-16,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Artemis Ione Webster,,5138411534,Artemis Ione,Webster,F,2000-07-04,PG484601B,31,EC1Y 8JR,EC1Y 8JR,1 Roscoe Street,,94,2025-04-07,9,240,2025-03-31,10,,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-07-10,2025-08-28,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059748,2025-07-10,2025-07-10,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-07-10,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Kori George Rogers,,9917272770,Kori George,Rogers,M,1997-05-03,TH844278C,37,BA1 5TG,BA1 5TG,8 Lansdown Park,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-16,2025-07-23,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-06-16,2025-06-16,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-16,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Gaurav Gandhi,,1084566817,Gaurav,Gandhi,M,1980-07-12,SX706794C,39,TW7 4QW,TW7 4QW,7 Cranmore Avenue Isleworth,,98,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,4,6,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-08-05,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-04-28,2025-04-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Joshua Oyekunle,,2515780104,Joshua,Oyekunle,M,2003-03-23,PJ336579D,44,NW11 7SH,NW11 7SH,10 Park Drive,,94,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-09,2025-10-16,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-07-09,2025-07-09,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-09,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Aygun Zarbaliyeva,,3946096912,Aygun,Zarbaliyeva,F,1987-07-31,SW506107D,34,EN4 8TA,EN4 8TA,54B Church Hill Road,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-29,2025-08-18,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-29,2025-05-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Daniel Bryars,,3166744818,Daniel,Bryars,M,1976-01-27,JE029850C,31,OX7 3NB,OX7 3NB,"Apple Brook House, Horse Shoe Lane",,99,2025-04-07,9,240,2025-03-31,10,,,1 checked out of 1,,4,7,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-30,2025-10-01,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-05-30,2025-05-30,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-30,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Dimitar Seraffimov,,3590751133,Dimitar,Seraffimov,M,2002-01-26,SW956183D,34,WC1B 3BA,WC1B 3BA,57 Great Russel St,,99,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-12,2025-06-14,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-06-12,2025-06-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-12,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Loredana-Otilia Gaspar,,9427314442,Loredana-Otilia ,Gaspar,F,1991-03-23,ST125677B,34,E16 2ER,E16 2ER,Wards Wharf Approach,,99,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,1,,,,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,,,,,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,,105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Kin Ting Kenton Kwok,,3984196600,Kin Ting Kenton,Kwok,M,2001-04-28,SX991543D,42,OX4 1XH,OX4 1XH,25 Ablett Close,,99,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,1,7,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-06-28,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-05-01,2025-05-01,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-01,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Maximillian Gorynski,,5439460593,Maximillian,Gorynski,M,1994-06-02,JZ287827D,34,E14 9DU,E14 9DU,"Flat 2104, Bagshaw Building, 1 Ward's Place",,99,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,3,8,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,,8,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-04-23,2025-04-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-23,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Coline Ritz,,9605342463,Coline,Ritz,F,2000-06-08,SY710642C,34,SW15 1LP,SW15 1LP,"44, Festing Road",,99,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,3,6,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-28,2025-09-08,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-05-28,2025-05-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Liam Flavin,,1940571218,Liam,Flavin,M,1996-12-23,PB753935D,98,SE22 8UL,SE22 8UL,56 woodwarde road,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-04,2025-09-06,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-06-04,2025-06-04,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-04,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Dimitrios Gaitanelis,,7956294222,Dimitrios,Gaitanelis,M,1991-02-16,SY619684A,34,N17 9PL,N17 9PL,92 Armadale Close,,98,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,4,7,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-08-15,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-04-28,2025-04-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Ardrit Ramadani,,9175496444,Ardrit,Ramadani,M,2000-03-04,SE367231D,99,EC1N 7SP,EC1N 7SP,Flat 10 scrope building,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-09,,8,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-06-09,2025-06-09,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-09,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Nnamdi Odozi,,5998002570,Nnamdi,Odozi,M,1978-03-27,PW962191D,44,HA8 8QW,HA8 8QW,242,,99,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,4,7,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-08-02,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-04-23,2025-04-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-23,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Emil Engdahl,,4895112925,Emil,Engdahl,M,2002-01-27,TK825404A,34,W6 8RA,W6 8RA,104 St Dunstans Road,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-30,2025-06-09,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-30,2025-05-30,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-30,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Yurii Oksamytnyi,,1869360817,Yurii,Oksamytnyi,M,1996-08-15,NJ930085B,34,SE19 3ST,SE19 3ST,16B Rockmount Road,,99,2025-04-07,9,240,2025-03-31,10,,,1 checked out of 1,,4,6,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-08-01,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-05-07,2025-05-07,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-07,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Guillaume Boniface,,3639246216,Guillaume,Boniface,M,1987-01-01,KC021176A,34,N4 2BN,N4 2BN,"Flat 47, Kimpton Court",,99,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-03,2025-08-27,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-06-03,2025-06-03,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-03,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Amy Freear,,7934238028,Amy,Freear,F,1998-03-07,PC811441B,31,N19 3AG,N19 3AG,21B Ashley Rd,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-06-09,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-12,2025-05-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-12,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Filippo Romeo,,5680467347,Filippo,Romeo,M,1995-08-08,NJ918327D,34,E1W 3DH,E1W 3DH,264 The Highway,,99,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-04,2025-09-05,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-07-04,2025-07-04,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-04,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Milo Rignell,,8938361038,Milo,Rignell,M,1996-10-21,PX059549B,31,W1G 8PD,W1G 8PD,19 Wimpole Mews,,99,2025-04-07,9,240,2025-03-31,10,,checked,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-05-23,2025-08-28,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059748,2025-04-15,2025-04-15,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-04-15,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +James Love,,1360520928,James ,Love,M,1997-08-16,PC244857B,31,SW19 5BD,SW19 5BD,20 Marryat rd,,12,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,3,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-06-16,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-19,2025-05-19,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-19,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +David Tian,,6800531544,David,Tian,M,1980-01-04,SG316422C,42,S10 5FE,S10 5FE,45 Evelyn Road,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-09,2025-10-24,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-07-09,2025-07-09,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-09,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Jasmine Edna Maslen,,5974616617,Jasmine Edna,Maslen,F,2002-10-20,PH862863D,31,LE3 0DG,LE3 0DG,91 Wilberforce Road,07342210105,99,2025-04-30,6,,2025-04-23,10,999999999,,0 checked out of 1,,1,5,,2025-05-07,10,999999999,8,,,1 checked out of 1,3,1,ZPROG001,2025-05-07,2027-05-06,36,25,2,N4 3HH,525,,,EPA0475,ACT,1,2025-05-07,,,105,TNP,1,2025-05-07,16150,TNP,2,2025-05-07,1850,1,,,,,,3,Z0001947,2025-05-07,2027-05-06,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Anton Dergunov,,6937430085,Anton,Dergunov,M,1984-03-31,SZ410920A,34,W3 8BJ,W3 8BJ,"20 Howell Court, Enfield Road",,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-18,2025-08-04,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-03,2025-07-03,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-03,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Helen Zhou,,6040749996,Helen,Zhou,F,1991-01-10,PA056085B,42,E1 3BT,E1 3BT,"Flat 14, 6 Trinity Mews, London",,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,3,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,2025-09-26,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Yali Pan,,4663077942,Yali,Pan,F,1992-08-03,SY399765B,42,B30 1PY,B30 1PY,23 Old Barn Road,,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,2025-10-06,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Adam Beedell,,9415346018,Adam,Beedell,M,1992-03-23,JN163565B,31,MK14 5PR,MK14 5PR,193 Hainault Avenue,,99,2025-06-02,6,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-08-04,2025-08-12,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-08-04,2025-08-04,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-08-04,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Andrei Zhirnov,,7415763326,Andrei,Zhirnov,M,1985-12-29,SX621622C,34,EX1 2EQ,EX1 2EQ,38 Portland street,,99,2025-06-02,10,240,2025-05-26,10,,,0 checked out of 1,,4,7,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Tak Leung Ben Liong,,2205319247,Tak Leung Ben,Liong,M,1978-02-13,SW960437B,42,TW10 7JT,TW10 7JT,32 Craig Road,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-08-15,2025-08-25,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-08-15,2025-08-15,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-08-15,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Ethan Edwards,,5198781168,Ethan,Edwards,M,1998-12-09,PE314192A,31,WR11 7PQ,WR11 7PQ,15 High Street,,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Hikaru Tsujimura,,4827588200,Hikaru,Tsujimura,M,1987-05-06,SN066939D,43,NW1 9NN,NW1 9NN,180 Royal College Street,,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,4,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-18,2025-07-07,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-06-25,2025-06-25,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-25,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +James Carter,,7236380988,James,Carter,M,1987-07-12,JH105351D,31, GL53 0AD, GL53 0AD,229 old bath road,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,3,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-23,2025-08-19,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-23,2025-07-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-23,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +David Edey,,1749317620,David,Edey,M,1993-08-06,JX404350C,31,E16 2GW,E16 2GW,"Flat 85, Boyd Building, 3 Hudson Way, Gallions Reach, London",,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,2025-09-24,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Andrew Phillipo,,4714678948,Andrew,Phillipo,M,1982-07-26,JJ946905B,31,E3 5PQ,E3 5PQ,"Flat 29 Dethick Court, Bow, London",,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Dong Cai,,7362065778,Dong,Cai,M,1969-09-04,SK311549B,42,TW9 1UY,TW9 1UY,50 ST MARYS GROVE,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Rasched Haidari,,3464555827,Rasched,Haidari,M,1997-11-14,SK952224A,43,SW9 9AB,SW9 9AB,"Flat 16 Blair House, Stockwell Gardens Estate",,98,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-08-15,2025-08-25,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-08-15,2025-08-15,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-08-15,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Daniel Goss,,3046987500,Daniel,Goss,M,1993-09-14,JX587400A,31,N5 1AU,N5 1AU,"150B Highbury Hill, London",,98,2025-06-02,9,240,2025-05-26,10,,,1 checked out of 1,,,8,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Ewan Beattie,,7190242618,Ewan,Beattie,M,1995-09-23,PW855476A,31,N16 0SH,N16 0SH,25 Sandbrook road,,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Qingyue Shi,,9028398634,Qingyue,Shi,F,1998-02-23,NJ149574C,42,SE1 6EH,SE1 6EH,8 Walworth Road Apt 2304,,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Roshan Beedassee,,6756417362,Roshan,Beedassee,M,1993-01-30,JW770674C,99,SW17 8TP,SW17 8TP,4 Eswyn Road,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,3,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Maria Sharif,,6644315363,Maria,Sharif,F,1999-04-04,sg594525b,46,ec1v 3su,ec1v 3su,"Flat 52, Gastigny House",,94,2025-06-02,10,240,2025-05-26,10,,,1 checked out of 1,,,7,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Arjuna James,,9963343448,Arjuna,James,M,1992-08-07,JW114679D,35,SE20 8DN,SE20 8DN,9 Orchard Grove,,99,2025-06-02,10,240,2025-05-26,10,,,1 checked out of 1,,,8,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Jacob Jenner,,8846584154,Jacob,Jenner,M,2000-01-17,SE423104A,31,W14 0RX,W14 0RX,"Flat 62, North End House, Fitzjames Avenue",,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Benjamin Williams,,1323288510,Benjamin,Williams,M,1995-11-14,PA573060A,31,SW11 3QY,SW11 3QY,"Flat 11, 347 York Road",,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-18,2025-08-11,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-06-11,2025-06-11,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-11,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Kadriye Turkcan,,3774260809,Kadriye,Turkcan,F,1984-06-26,SX246874C,34,E16 1DE,E16 1DE,23 Seagull Lane,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Hongyang Yan,,7046269733,Hongyang ,Yan,M,2004-01-08,SN380388A,42,N19 4HL,N19 4HL,30 Mitford Road,,94,2025-06-02,6,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-18,2025-08-10,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-06-30,2025-06-30,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-30,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Miguel Parracho,,1622761218,Miguel,Parracho,M,1993-06-11,SW226000A,34,E15 2JS,E15 2JS,Flat 32 Azura Court 48 Warton Road,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Prima Gouse,,5738286498,Prima,Gouse,F,2003-12-02,SH297795D,41,SL2 1TJ,SL2 1TJ,10 Aldridge Road,,99,2025-06-02,6,240,2025-05-26,10,,,1 checked out of 1,,,6,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-08-28,2025-08-28,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-08-28,2025-08-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-08-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Umut Sagir,,7713883281,Umut,Sagir,M,1985-08-12,NJ100217B,34,SW2 3JB,SW2 3JB,6 Kingsmead Rd,,99,2025-06-02,10,240,2025-05-26,10,,,1 checked out of 1,,,7,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-18,2025-08-29,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-06-17,2025-06-17,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-17,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Lawrence O'Keeffe,,1103502734,Lawrence,O'Keeffe,M,1984-10-24,JL433389B,99,SE16 5EL,SE16 5EL,flat 6,,4,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Joao Pedro Abrantes Esteves,,7975445834,Joao Pedro,Abrantes Esteves,M,1999-08-25,SX852620A,34,NW1 7HU,NW1 7HU,36 Arlington Rd,,99,2025-06-02,10,240,2025-05-26,10,,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-08-15,2025-08-21,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-08-15,2025-08-15,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-08-15,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Tyrone Nicholas,,5916734440,Tyrone,Nicholas,M,1974-05-24,SL879331D,43,CR0 7DJ,CR0 7DJ,31 Fernhurst Road,,15,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Ben Bethell,,8067037107,Ben,Bethell,M,1988-11-25,JT148133B,31,N17 7AD,N17 7AD,10 All Hallows ,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Chi Hay Clement Ha,,4442332303,Chi Hay Clement,Ha,M,1967-08-27,NJ157048A,42,KT4 7BF,KT4 7BF,17 Gunpowder Road,,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Marcin Tolysz,,7169147393,Marcin,Tolysz,M,1978-10-29,SG660291D,31,LU1 1XW,LU1 1XW,18 Startpoint,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Tao Zamorano,,9332032962,Tao,Zamorano,M,1989-02-21,SW456490C,38,CR0 1GL,CR0 1GL,Flat 109 Kindred House 25 Scarbrook Road 25 Scarbrook Road,,94,2025-06-02,8,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Melanie Wing Yin Wong,,4116303509,Melanie Wing Yin,Wong,F,1996-11-29,PC077721B,42,BH7 7JX,BH7 7JX,3 Vine Close,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Tomas Krajcoviech,,4231623782,Tomas,Krajcoviech,M,1999-09-26,RZ685453B,99,SE1 1EZ,SE1 1EZ,Redcross way,,98,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-31,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-31,2025-07-31,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-31,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Aparna Jayachandran Pillai,,6872178824,Aparna Jayachandran ,Pillai,F,2000-02-07,PP070200A,39,E2 0RB,E2 0RB,"Flat 21, Offenbach House, E2 0RB",,94,2025-06-02,10,240,2025-05-26,10,,,1 checked out of 1,,,7,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,2025-09-08,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Felipe Lavratti,,4950389903,Felipe,Lavratti,M,1985-12-09,SW118330C,34,NW5 2XE,NW5 2XE,38D Montpelier Grove,,99,2025-06-02,10,240,2025-05-26,10,,,1 checked out of 1,,,8,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,2025-09-01,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Christine Lush,,4843374732,Christine,Lush,F,1999-03-14,PE 64 31 46 C,34,SG12 9JP,SG12 9JP,"6 Fairway, Ware, Hertfordshire",07902460144,14,2025-04-30,9,,2025-04-23,11,,,0 checked out of 1,,,,2,2025-05-07,10,999999999,8,,,0 checked out of 1,3,1,ZPROG001,2025-05-07,2027-05-06,36,25,2,N4 3HH,525,,,EPA0475,ACT,1,2025-05-07,,,105,TNP,1,2025-05-07,16150,TNP,2,2025-05-07,1850,1,,,,,,3,Z0001947,2025-05-07,2027-05-06,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Stanley Nderu Mwangi,,2619816423,Stanley Nderu,Mwangi,M,1993-11-27,SL791381B,46,CR0 6XP,CR0 6XP,3 Redgrave Close,,99,2025-06-02,6,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-18,2025-08-01,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-06-11,2025-06-11,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-11,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Edgaras Aleliunas,,1503460508,Edgaras,Aleliunas,M,1992-10-02,SP353748A,34,NW2 5NB,NW2 5NB,174 Chapter road,,99,2025-09-01,97,,2025-08-25,10,999999999,,0 checked out of 1,,4,7,,2025-09-08,10,999999999,8,,,0 checked out of 1,1,1,ZPROG001,2025-09-08,2027-06-08,36,25,2,N4 3HH,450,,,EPA0475,ACT,1,2025-09-08,,,105,TNP,1,2025-09-08,15025,TNP,2,2025-09-08,1850,1,,,,,,3,Z0001947,2025-09-08,2027-06-08,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Natalia Rusu,,5541815176,Natalia,Rusu,F,1982-06-20,SZ265499D,34,RM14 1NH,RM14 1NH,44 Brunswick Avenue,,94,2023-01-05,98,,2022-12-29,11,,,0 checked out of 1,,,,1,2023-01-12,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-01-12,2024-07-11,36,25,2,N4 3HH,510,510,,EPA0001,ACT,1,2023-01-12,2025-01-27,,105,TNP,1,2023-01-12,16150,TNP,2,2023-01-12,1850,2,2024-09-17,2025-01-27,1,,PA,3,Z0001947,2023-01-12,2024-07-11,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2024-09-17,,1,,PA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Suraj Pun,,8220990928,Suraj,Pun,M,1994-10-04,SE689571D,43,HA0 2HF,HA0 2HF,4 Fernwood Avenue,,94,2023-01-05,4,,2022-12-29,11,,,0 checked out of 1,,,,1,2023-01-12,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-01-12,2024-03-11,36,25,2,N4 3HH,560,560,,EPA0001,ACT,1,2023-01-12,2024-08-01,,105,TNP,1,2023-01-12,9400,TNP,2,2023-01-12,1850,2,2024-04-27,2024-08-01,1,,ME,3,Z0001947,2023-01-12,2024-03-11,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2024-04-27,,1,,ME,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Georgia Elizabeth Whitney,,8771628079,Georgia Elizabeth,Whitney,F,1992-02-29,JJ679109B,31,SE21 8LA,SE21 8LA,219 Peabody Hill,,95,2023-01-05,9,,2022-12-29,11,,,0 checked out of 1,,,,1,2023-01-12,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-01-12,2024-07-11,36,25,2,N4 3HH,510,510,,EPA0001,ACT,1,2023-01-12,2025-02-06,,105,TNP,1,2023-01-12,16150,TNP,2,2023-01-12,1850,2,2024-10-28,2025-02-06,1,,ME,3,Z0001947,2023-01-12,2024-07-11,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2024-10-28,,1,,ME,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Dylan Harley Cobb,,8517581929,Dylan Harley,Cobb,M,1992-10-12,JW 342664 A,31,SE25 5BA,SE25 5BA,35 Birchanger Road,,94,2023-09-07,7,,2023-08-31,11,,,0 checked out of 1,,,,1,2023-09-14,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-09-14,2025-03-14,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2023-09-14,2024-07-03,,105,TNP,1,2023-09-14,16150,TNP,2,2023-09-14,1850,3,2024-07-03,,3,29,,3,Z0001947,2023-09-14,2025-03-14,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,3,2024-07-03,,3,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, \ No newline at end of file From 76df36dbfda5535e565a73f47a22bfd9a31465da Mon Sep 17 00:00:00 2001 From: Jason Warren Date: Thu, 27 Nov 2025 16:15:14 +0000 Subject: [PATCH 06/10] fix: complete Employment #2 monitoring fields Add missing employment status monitoring fields for Employment #2: - LOU (Length of Unemployment) from CSV column 196 (index 195) - OET code 2 for small employer monitoring to match Employment #1 pattern --- src/utils/buildEmploymentArray.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/utils/buildEmploymentArray.js b/src/utils/buildEmploymentArray.js index 4def297..d98382b 100644 --- a/src/utils/buildEmploymentArray.js +++ b/src/utils/buildEmploymentArray.js @@ -1,5 +1,4 @@ function buildEmploymentArray(dataArray, i) { - return [ ...(dataArray[i][18] /* Employment Status #1 */ ? [{ @@ -49,12 +48,16 @@ function buildEmploymentArray(dataArray, i) { ? [{ ESMType: "LOE", ESMCode: dataArray[i][33] }] : [] ), + ...(dataArray[i][195] + ? [{ ESMType: "LOU", ESMCode: dataArray[i][195] }] + : [] + ), ...(dataArray[i][31] ? [{ ESMType: "SEI", ESMCode: "1" }] : [] ), ...(dataArray[i][32] - ? [{ ESMType: "SEM", ESMCode: "1" }] + ? [{ ESMType: "SEM", ESMCode: "1" }, { ESMType: "OET", ESMCode: "2" }] : [] ), ...(dataArray[i][30] From e24e5a854e73504e05df0bddc14993056bb8df3d Mon Sep 17 00:00:00 2001 From: Jason Warren Date: Thu, 27 Nov 2025 18:46:57 +0000 Subject: [PATCH 07/10] docs: add csv inputs and create separated heading list --- docs/inputs/25_26 Export A.csv | 234 ++++++++++++ ...ta Export (R04).csv => 25_26 Export B.csv} | 334 +++++++++--------- docs/inputs/25_26 Export Columns Values.csv | 220 ++++++++++++ docs/inputs/25_26 Export Columns.csv | 221 ++++++++++++ docs/inputs/Status-Comparison.md | 77 ++++ 5 files changed, 919 insertions(+), 167 deletions(-) create mode 100644 docs/inputs/25_26 Export A.csv rename docs/inputs/{ILR data 25_26-ILR Data Export (R04).csv => 25_26 Export B.csv} (95%) create mode 100644 docs/inputs/25_26 Export Columns Values.csv create mode 100644 docs/inputs/25_26 Export Columns.csv create mode 100644 docs/inputs/Status-Comparison.md diff --git a/docs/inputs/25_26 Export A.csv b/docs/inputs/25_26 Export A.csv new file mode 100644 index 0000000..7224a81 --- /dev/null +++ b/docs/inputs/25_26 Export A.csv @@ -0,0 +1,234 @@ +Record - Airtable ID, +Previous UKPRN, +ULN, +Given name, +Family name, +Sex , +Date of birth, +NI number, +Ethnic group, +Prior post code, +Post code, +Street address , +Telephone number, +Primary additional needs, +Prior attainment date applies to, +Prior attainment, +Learning hours (skills bootcamp), +Employment #1 date applies to, +Employment status #1, +Employer identifier #1 , +Small employer #1, +Is the learner self employed? #1, +Has the learner been made redundant? #1, +Length of employment #1, +Employment intensity indicator #1, +Length of unemployment #1, +Employment #2 date applies to, +Employment status #2, +Employer identifier #2, +Employment intensity indicator #2, +Has the learner been made redundant? #2, +Is the learner self employed? #2, +Small employer #2 , +Length of employment #2, +Aim type (programme aim 1), +Programme aim 1 Learning ref , +Start date (aim 1), +Planned end date (aim 1), +Funding module (aim 1), +Programme type (aim 1), +Apprentice standard (aim 1), +Delivery postcode (aim 1), +Planned hours (aim 1), +Actual hours (aim 1), +Contract Ref (aim 1), +EPAO ID (aim 1), +Contract type (aim 1), +Contract type code (aim 1), +Date applies from (aim1), +Date applies to (aim 1), +Funding indicator (aim 1), +Source of funding (aim 1), +Financial type 1 (aim 1), +Financial code 1 (aim 1), +Financial start date 1 (aim 1), +Training price (aim 1), +Financial type 2 (aim 1), +Financial code 2 (aim 1), +Financial start date 2 (aim 1), +Total assessment price (aim 1), +Completion status (aim 1), +Actual end date (aim 1), +Achievement date (aim 1), +Outcome (aim 1), +Withdrawal reason (aim 1), +Outcome grade (aim 1), +Aim type (programme aim 2), +Programme aim 2 Learning ref , +Start date (aim 2), +Planned end date (aim 2), +Funding module (aim 2), +Programme type (aim 2), +Apprentice standard (aim 2), +Delivery postcode (aim 2), +Planned hours (aim2), +Actual hours (aim 2), +Contract ref (aim 2), +EPAO ID (aim 2), +Contract type (aim 2), +Contract type code (aim 2), +Date applies from (aim 2), +Date applies to (aim 2), +Funding indicator (aim 2), +Source of funding (aim 2), +Financial type 1 (aim 2), +Financial code 1 (aim 2), +Financial start date 1 (aim 2), +Training price (aim 2), +Financial type 2 (aim 2), +Financial code 2 (aim 2), +Financial start date 2 (aim 2), +Total assessment price (aim 2), +Completion status (aim 2), +Actual end date (aim 2), +Achievement date (aim 2), +Outcome (aim 2), +Withdrawal reason (aim 2), +Outcome grade (aim 2), +Aim type (programme aim 3), +Programme aim 3 learning ref , +Start date (aim 3), +Planned end date (aim 3), +Funding module (aim 3), +Programme type (aim 3), +Apprentice standard (aim 3), +Delivery postcode (aim 3), +Planned hours (aim 3), +Actual hours (aim 3), +Contract ref (aim 3), +EPAO ID (aim 3), +Contract type (aim 3), +Contract type code (aim 3), +Date applies from (aim 3), +Date applies to (aim 3), +Funding indicator (aim 3), +Source of funding (aim 3), +Financial type 1 (aim 3), +Financial code 1 (aim 3), +Financial start date 1 (aim 3), +Training price (aim 3), +Financial type 2 (aim 3), +Financial code 2 (aim 3), +Financial start date 2 (aim 3), +Total assessment price (aim 3), +Completion status (aim 3), +Actual end date (aim 3), +Achievement date (aim 3), +Withdrawal reason (aim 3), +Outcome (aim 3), +Outcome grade (aim 3), +Aim type (programme aim 4), +Programme aim 4 learning ref, +Start date (aim 4), +Planned end date (aim 4), +Funding module (aim 4), +Programme type (aim 4), +Apprentice standard (aim 4), +Delivery postcode (aim 4), +Planned hours (aim 4), +Actual hours (aim 4), +Contract ref (aim 4), +EPAO ID (aim 4), +Contract type (aim 4), +Contract type code (aim 4), +Date applies from (aim 4), +Date applies to (aim 4), +Funding indicator (aim 4), +Source of funding (aim 4), +Financial type 1 (aim 4), +Financial code 1 (aim 4), +Financial start date 1 (aim 4), +Training price (aim 4), +Financial type 2 (aim 4), +Financial code 2 (aim 4), +Financial start date 2 (aim 4), +Total assessment price (aim 4), +Completion status (aim 4), +Actual end date (aim 4), +Achievement date (aim 4), +Withdrawal reason (aim 4), +Outcome (aim 4), +Outcome grade (aim 4), +Aim type (programme aim 5), +Programme aim 5 learning ref , +Start date (aim 5), +Planned end date (aim 5), +Funding module (aim 5), +Programme type (aim 5), +Apprentice standard (aim 5), +Delivery postcode (aim 5), +Planned hours (aim 5), +Actual hours (aim 5), +Contract ref (aim 5), +EPAO ID (aim 5), +Contract type (aim 5), +Contract type code (aim 5), +Date applies from (aim 5), +Date applies to (aim 5), +Funding indicator (aim 5), +Source of funding (aim 5), +Financial type 1 (aim 5), +Financial code 1 (aim 5), +Financial start date 1 (aim 5), +Training price (aim 5), +Financial type 2 (aim 5), +Financial code 2 (aim 5), +Financial start date 2 (aim 5), +Total assessment price (aim 5), +Completion status (aim 5), +Actual end date (aim 5), +Achievement date (aim 5), +Outcome (aim 5), +Withdrawal reason (aim 5), +Outcome grade (aim 5), +Length of Unemployment #2, +Length of unemployment no #2, +Date applies to Employment status #3, +Employment status lookup #3, +Employment status #3, +Employer identifier #3, +Small employer #3, +Self employed #3, +Made Redundant #3, +Length of employment lookup #3, +Length of employment #3, +Employment hours lookup #3, +Employment hours #3, +Length of unemployment lookup #3, +Length of unemployment #3, +Date applies to Employment status #4, +Employment status lookup #4, +Employment status #4, +Employer identifier #4, +Small employer #4, +Self employed #4, +Made Redundant #4, +Length of employment lookup #4, +Length of employment #4, +Employment hours lookup #4, +Employment hours #4, +Date applies to Employment status #5, +Employment status lookup #5, +Employment status #5, +Employer identifier #5, +Small employer #5, +Self employed #5, +Made Redundant #5, +Length of employment lookup #5, +Length of employment #5, +Employment hours lookup #5, +Employment hours #5, +Length of unemployment lookup #5, + +Length of unemployment #5 \ No newline at end of file diff --git a/docs/inputs/ILR data 25_26-ILR Data Export (R04).csv b/docs/inputs/25_26 Export B.csv similarity index 95% rename from docs/inputs/ILR data 25_26-ILR Data Export (R04).csv rename to docs/inputs/25_26 Export B.csv index 755e007..8e4a805 100644 --- a/docs/inputs/ILR data 25_26-ILR Data Export (R04).csv +++ b/docs/inputs/25_26 Export B.csv @@ -1,167 +1,167 @@ -Record - Airtable ID,Previous UKPRN,ULN,Given name,Family name,Sex ,Date of birth,NI number,Ethnic group,Prior post code,Post code,Street address ,Telephone number,Primary additional needs,Prior attainment date applies to,Prior attainment,Learning hours (skills bootcamp),Employment #1 date applies to,Employment status #1,Employer identifier #1 ,Small employer #1,Is the learner self employed? #1,Has the learner been made redundant? #1,Length of employment #1,Employment intensity indicator #1,Length of unemployment #1,Employment #2 date applies to,Employment status #2,Employer identifier #2,Employment intensity indicator #2,Has the learner been made redundant? #2,Is the learner self employed? #2,Small employer #2 ,Length of employment #2,Aim type (programme aim 1),Programme aim 1 Learning ref ,Start date (aim 1),Planned end date (aim 1),Funding module (aim 1),Programme type (aim 1),Apprentice standard (aim 1),Delivery postcode (aim 1),Planned hours (aim 1),Actual hours (aim 1),Contract Ref (aim 1),EPAO ID (aim 1),Contract type (aim 1),Contract type code (aim 1),Date applies from (aim1),Date applies to (aim 1),Funding indicator (aim 1),Source of funding (aim 1),Financial type 1 (aim 1),Financial code 1 (aim 1),Financial start date 1 (aim 1),Training price (aim 1),Financial type 2 (aim 1),Financial code 2 (aim 1),Financial start date 2 (aim 1),Total assessment price (aim 1),Completion status (aim 1),Actual end date (aim 1),Achievement date (aim 1),Outcome (aim 1),Withdrawal reason (aim 1),Outcome grade (aim 1),Aim type (programme aim 2),Programme aim 2 Learning ref ,Start date (aim 2),Planned end date (aim 2),Funding module (aim 2),Programme type (aim 2),Apprentice standard (aim 2),Delivery postcode (aim 2),Planned hours (aim2),Actual hours (aim 2),Contract ref (aim 2),EPAO ID (aim 2),Contract type (aim 2),Contract type code (aim 2),Date applies from (aim 2),Date applies to (aim 2),Funding indicator (aim 2),Source of funding (aim 2),Financial type 1 (aim 2),Financial code 1 (aim 2),Financial start date 1 (aim 2),Training price (aim 2),Financial type 2 (aim 2),Financial code 2 (aim 2),Financial start date 2 (aim 2),Total assessment price (aim 2),Completion status (aim 2),Actual end date (aim 2),Achievement date (aim 2),Outcome (aim 2),Withdrawal reason (aim 2),Outcome grade (aim 2),Aim type (programme aim 3),Programme aim 3 learning ref ,Start date (aim 3),Planned end date (aim 3),Funding module (aim 3),Programme type (aim 3),Apprentice standard (aim 3),Delivery postcode (aim 3),Planned hours (aim 3),Actual hours (aim 3),Contract ref (aim 3),EPAO ID (aim 3),Contract type (aim 3),Contract type code (aim 3),Date applies from (aim 3),Date applies to (aim 3),Funding indicator (aim 3),Source of funding (aim 3),Financial type 1 (aim 3),Financial code 1 (aim 3),Financial start date 1 (aim 3),Training price (aim 3),Financial type 2 (aim 3),Financial code 2 (aim 3),Financial start date 2 (aim 3),Total assessment price (aim 3),Completion status (aim 3),Actual end date (aim 3),Achievement date (aim 3),Withdrawal reason (aim 3),Outcome (aim 3),Outcome grade (aim 3),Aim type (programme aim 4),Programme aim 4 learning ref,Start date (aim 4),Planned end date (aim 4),Funding module (aim 4),Programme type (aim 4),Apprentice standard (aim 4),Delivery postcode (aim 4),Planned hours (aim 4),Actual hours (aim 4),Contract ref (aim 4),EPAO ID (aim 4),Contract type (aim 4),Contract type code (aim 4),Date applies from (aim 4),Date applies to (aim 4),Funding indicator (aim 4),Source of funding (aim 4),Financial type 1 (aim 4),Financial code 1 (aim 4),Financial start date 1 (aim 4),Training price (aim 4),Financial type 2 (aim 4),Financial code 2 (aim 4),Financial start date 2 (aim 4),Total assessment price (aim 4),Completion status (aim 4),Actual end date (aim 4),Achievement date (aim 4),Withdrawal reason (aim 4),Outcome (aim 4),Outcome grade (aim 4),Aim type (programme aim 5),Programme aim 5 learning ref ,Start date (aim 5),Planned end date (aim 5),Funding module (aim 5),Programme type (aim 5),Apprentice standard (aim 5),Delivery postcode (aim 5),Planned hours (aim 5),Actual hours (aim 5),Contract ref (aim 5),EPAO ID (aim 5),Contract type (aim 5),Contract type code (aim 5),Date applies from (aim 5),Date applies to (aim 5),Funding indicator (aim 5),Source of funding (aim 5),Financial type 1 (aim 5),Financial code 1 (aim 5),Financial start date 1 (aim 5),Training price (aim 5),Financial type 2 (aim 5),Financial code 2 (aim 5),Financial start date 2 (aim 5),Total assessment price (aim 5),Completion status (aim 5),Actual end date (aim 5),Achievement date (aim 5),Outcome (aim 5),Withdrawal reason (aim 5),Outcome grade (aim 5),Length of Unemployment #2,Length of unemployment no #2,Date applies to Employment status #3,Employment status lookup #3,Employment status #3,Employer identifier #3,Small employer #3,Self employed #3,Made Redundant #3,Length of employment lookup #3,Length of employment #3,Employment hours lookup #3,Employment hours #3,Length of unemployment lookup #3,Length of unemployment #3,Date applies to Employment status #4,Employment status lookup #4,Employment status #4,Employer identifier #4,Small employer #4,Self employed #4,Made Redundant #4,Length of employment lookup #4,Length of employment #4,Employment hours lookup #4,Employment hours #4,Date applies to Employment status #5,Employment status lookup #5,Employment status #5,Employer identifier #5,Small employer #5,Self employed #5,Made Redundant #5,Length of employment lookup #5,Length of employment #5,Employment hours lookup #5,Employment hours #5,Length of unemployment lookup #5,Length of unemployment #5 -Alexander Perez-Davies,,5796080759,Alexander ,Perez-Davies,M,1993-04-05,JX055947D,38,N16 7UJ,N16 7UJ,Flat 24 Morris Blitz Court,07525334311,99,2024-05-13,6,,2024-05-06,10,999999999,,0 checked out of 1,,2,8,,2024-05-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-20,2026-05-20,36,25,2,N4 3HH,504,505,,EPA0475,ACT,1,2024-05-20,2025-08-20,,105,TNP,1,2024-05-20,16150,TNP,2,2024-05-20,1850,2,2025-06-04,2025-08-20,1,,DE,3,Z0001947,2024-05-20,2026-05-20,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-06-04,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Guilherme Alexandre Santos Da Fonseca,,2316435334,Guilherme Alexandre,Santos Da Fonseca,M,1983-02-11,PX530942C,34,E9 5QN,E9 5QN,Flat 35 Fairmead House,07946487993,94,2024-05-13,6,,2024-05-06,10,999999999,,0 checked out of 1,,3,6,,2024-05-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-20,2026-05-20,36,25,2,N4 3HH,504,550,,EPA0475,ACT,1,2024-05-20,2025-08-27,,105,TNP,1,2024-05-20,16150,TNP,2,2024-05-20,1850,2,2025-06-04,2025-08-27,1,,DE,3,Z0001947,2024-05-20,2026-05-20,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-06-04,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Fearghal Simon Kavanagh,,3678180557,Fearghal Simon,Kavanagh,M,1991-03-19,SZ256677B,32,N19 5DL,N19 5DL,25 Girdlestone Walk,,12,2024-05-09,6,,2024-05-02,10,999999999,,0 checked out of 1,,3,8,,2024-05-16,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-16,2026-02-16,36,25,2,N4 3HH,504,554,,EPA0475,ACT,1,2024-05-16,2025-08-19,,105,TNP,1,2024-05-16,16150,TNP,2,2024-05-16,1850,2,2025-06-03,2025-08-19,1,,DE,3,Z0001947,2024-05-16,2026-02-16,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-06-03,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Halimah Manan,,2881077829,Halimah,Manan,M,1996-01-04,PA812868A,40,SE4 2AZ,SE4 2AZ,314 Brockley Road,,6,2024-05-09,9,,2024-05-02,10,999999999,,0 checked out of 1,,3,8,,2024-05-16,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-16,2026-02-16,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-05-16,,,105,TNP,1,2024-05-16,16150,TNP,2,2024-05-16,1850,1,,,,,,3,Z0001947,2024-05-16,2026-02-16,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-10-30,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Oskar Przybylski,,1710136412,Oskar,Przybylski,M,1995-01-03,SS176624A,34,SE16 4UT,SE16 4UT,"36 Pickwick House, George Row, London SE16 4UT",,99,2024-05-09,10,,2024-05-02,11,,,0 checked out of 1,,,,1,2024-05-16,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-16,2026-02-16,36,25,2,N4 3HH,504,554,,EPA0475,ACT,1,2024-05-16,2025-11-03,,105,TNP,1,2024-05-16,16150,TNP,2,2024-05-16,1850,2,2025-08-20,2025-11-03,1,,DE,3,Z0001947,2024-05-16,2026-02-16,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-08-20,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Alexander Rodriguez,,8586841632,Alexander,Rodriguez,M,1979-06-19,SP159186C,34,N7 7NE,N7 7NE,"72 Hornsey Road, N77NE",,99,2024-05-09,6,,2024-05-02,10,999999999,,0 checked out of 1,,4,6,,2024-05-16,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2024-05-16,2026-02-16,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-05-16,,,105,TNP,1,2024-05-16,16150,TNP,2,2024-05-16,1850,1,,,,,,3,Z0001947,2024-05-16,2026-02-16,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Mohammed Salim Gajia,,3818866855,Mohammed Salim,Gajia,M,1998-11-22,pe 329693b,39,IG1 4LJ,IG1 4LJ,134 Wellesley Road,07599537784,10,2024-05-13,4,,2024-05-06,10,999999999,,0 checked out of 1,,2,8,,2024-05-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-20,2026-05-20,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-05-20,,,105,TNP,1,2024-05-20,16150,TNP,2,2024-05-20,1850,1,,,,,,3,Z0001947,2024-05-20,2026-05-20,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Levi Musa Rogers,,9707618956,Levi Musa,Rogers,M,2001-07-29,Ph119604A,38,E9 5DR,E9 5DR,"Flat 9, Presentation House",07939157314,99,2024-05-13,4,,2024-05-06,10,999999999,,0 checked out of 1,,3,8,,2024-05-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-20,2026-05-20,36,25,548,N4 3HH,504,,,EPA0475,ACT,1,2024-05-20,,,105,TNP,1,2024-05-20,15400,TNP,2,2024-05-20,1600,1,,,,,,3,Z0001946 ,2024-05-20,2026-05-20,36,25,548,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-10-24,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Riley O'Dwyer,,2777776074,Riley,O'Dwyer,M,2006-06-03,PL380683D,31,E5 8JJ,E5 8JJ,"Flat 2, Sheppey House",07376526238,99,2024-06-24,4,,2024-06-17,98,,,0 checked out of 1,,,,,2024-07-01,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-07-01,2026-07-01,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-07-01,,,105,TNP,1,2024-07-01,16150,TNP,2,2024-07-01,1850,1,,,,,,3,Z0001947,2024-07-01,2026-07-01,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Marika Bertelli,,7026723870,Marika,Bertelli,F,1987-05-13,SS520351D,34,E5 0TZ,E5 0TZ,"2 Yatesbury Court, Studley Close",07517782427,99,2024-09-09,10,,2024-09-02,10,999999999,,0 checked out of 1,,4,8,,2024-09-16,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-09-16,2026-03-16,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-09-16,,,105,TNP,1,2024-09-16,16150,TNP,2,2024-09-16,1850,1,,,,,,3,Z0001947,2024-09-16,2026-03-16,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-10-27,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -William Man,,9562002011,William,Man,M,1993-02-07,JW838085B,42,E10 6RJ,E10 6RJ,"29, Crawley Road",07447957768,95,2024-09-02,9,,2024-08-26,10,999999999,,0 checked out of 1,,4,5,,2024-09-09,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-09-09,2026-03-09,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-09-09,,,105,TNP,1,2024-09-09,16150,TNP,2,2024-09-09,1850,1,,,,,,3,Z0001947,2024-09-09,2026-03-09,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-10-06,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Bandana Singh,,2184831653,Bandana,Singh,F,1995-10-11,TL206065B,43,DA16 3DA,DA16 3DA,8 Wickham Street,,99,2024-02-26,9,240,2024-02-19,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-12,,3,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Igors Makaruks,,5767635365,Igors ,Makaruks,M,1984-04-25,SG252240A,99,NW3 1AU,NW3 1AU,"4 East View, Vale of Health",,99,2024-02-26,9,240,2024-02-19,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-12,,3,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Panagiotis Kazantzis,,4952874272,Panagiotis,Kazantzis,M,1995-08-03,SW942051D,34,SE15 4HN,SE15 4HN,"70A Fenwick Road, London",,9,2024-02-26,9,240,2024-02-19,10,999999999,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-26,2024-08-09,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059748,2024-04-19,2024-04-19,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-19,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Mark Christopher Hodierne,,2818735199,Mark Christopher,Hodierne,M,1965-02-14,NE762561A,31,BN2 9TL,BN2 9TL,14 Cobden Road,,99,2024-02-26,10,240,2024-02-19,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-05-29,2024-07-04,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059747,2024-05-29,2024-05-29,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-05-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Maria Slobodina,,6270375591,Maria,Slobodina,F,1997-09-13,SW216940A,34,TW10 6QD,TW10 6QD,Onslow Avenue Mansions,,94,2024-02-26,4,240,2024-02-19,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-26,2024-04-09,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059749,2024-04-09,2024-04-09,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-09,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Karyna Nechyporuk,,2105122298,Karyna,Nechyporuk,F,2002-11-05,TL115636A,34,E3 5JN,E3 5JN,123 St Stephen’s Rd,,99,2024-02-26,9,240,2024-02-19,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-29,2024-07-02,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059747,2024-04-29,2024-04-29,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Paul William Evans,,7085111436,Paul William,Evans,M,1989-05-18,JP304330C,31,EN2 8DH,EN2 8DH,24 Chase Court Gardens,,99,2024-02-26,10,240,2024-02-19,10,999999999,checked,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-26,2024-08-01,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059748,2024-04-10,2024-04-10,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-10,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Omotomiwa Oluwatunmise Oredein,,4039352768,Omotomiwa Oluwatunmise,Oredein,M,1992-08-09,sg817425b,44,RG2 0NZ,RG2 0NZ,106 peregrine House ,,98,2024-02-26,10,240,2024-02-19,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-26,2024-04-16,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059747,2024-03-21,2024-03-21,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-03-21,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Alec Buchanan,,7890400291,Alec,Buchanan,M,1992-08-07,JW277074C,31,SW11 1QD,SW11 1QD,36C Comyn Road,,99,2024-02-26,9,240,2024-02-19,10,999999999,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-26,2024-05-21,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059748,2024-04-17,2024-04-17,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-17,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Olof Daniel Hall,,2743262817,Olof Daniel,Hall,M,1988-04-01,SN656988A,34,E15 1DX,E15 1DX,"3 Azure Building, 59 Great Eastern Road",,99,2024-02-26,9,240,2024-02-19,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-26,2024-04-08,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059747,2024-04-08,2024-04-08,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-08,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Harshil Joshi,,6334155465,Harshil,Joshi,M,1997-05-13,PW870059D,39,HA9 9EB,HA9 9EB,"14 Forty Lane, Wembley Park",,99,2024-02-26,9,240,2024-02-19,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-26,2024-04-13,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059747,2024-04-12,2024-04-12,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Oleksandr Diudiun,,5926820897,Oleksandr,Diudiun,M,1987-11-22,TJ148295D,34,SE11 5AT,SE11 5AT,"Flat 70, 7 Gasholder Place",,99,2024-02-26,10,240,2024-02-19,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-26,2024-04-09,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059749,2024-04-09,2024-04-09,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-09,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Albert Bezman,,8787077484,Albert,Bezman,M,1992-10-04,SL695864A,34,SE5 8LG,SE5 8LG,30 Grove Park,,99,2024-02-26,9,240,2024-02-19,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-05-29,2024-07-02,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059747,2024-05-29,2024-05-29,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-05-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Antonis Hadjipittas,,9402683703,Antonis,Hadjipittas,M,1992-09-29,NJ822967D,34,W2 2QN,W2 2QN,"247, Park West, Edgware road",,98,2024-10-07,10,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-02-18,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-11-11,2024-11-11,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-11-11,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Mahasen Jayawickrama Gunawardena,,8609854530,Mahasen Jayawickrama,Gunawardena,M,1986-08-09,SE591074C,43,W8 4BG,W8 4BG,73C Kensington Church Street,,98,2024-10-07,6,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-01-20,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-28,2024-10-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Jigisha Pawar,,4325724116,Jigisha,Pawar,F,1988-02-16,SX961686C,39,HA8 6DN,HA8 6DN,30 Roch Avenue,,98,2024-10-07,10,240,2024-09-30,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2024-12-20,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2024-11-21,2024-11-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-11-21,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Farya Hussain,,6799197011,Farya,Hussain,F,1990-10-06,jm520327d,40,N15 5QA,N15 5QA,32 Cissbury Road,,99,2024-10-07,10,240,2024-09-30,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-15,2025-02-06,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2025-01-15,2025-01-15,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-01-15,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Marian-Robert Vava,,8606806993,Marian-Robert,Vava,M,1998-10-13,SZ811884A,34,N15 3SX,N15 3SX,10 Fermain Court North,,98,2024-10-07,10,240,2024-09-30,10,999999999,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-01-07,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-29,2024-10-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Samuel Vincent Rae,,5880018295,Samuel Vincent,Rae,M,1977-09-13,JW877164A,31,NW5 1LR,NW5 1LR,Flat 9 Heathview,,99,2024-10-07,10,240,2024-09-30,10,999999999,checked,0 checked out of 1,,3,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-12-06,2025-01-31,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059748,2024-10-28,2024-10-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-10-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Askar Sulaimanov,,8740250368,Askar,Sulaimanov,M,1995-12-12,SS417875D,43,NW6 5PW,NW6 5PW,45 Blake Court,,99,2024-10-07,9,240,2024-09-30,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-08,2025-03-31,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2025-01-08,2025-01-08,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-01-08,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Barbora Filova,,2414377223,Barbora,Filova,F,1988-12-23,SL455262C,34,SE5 8NN,SE5 8NN,50 Shenley road,,99,2024-10-07,10,240,2024-09-30,10,999999999,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-12-06,2025-01-22,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059748,2024-10-29,2024-10-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-10-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -John Robison Hoopes IV,,1577280007,John Robison,Hoopes IV,M,1987-10-23,SX924014C,34,N18 3BA,N18 3BA,30 Gerrard Road,,99,2024-10-07,10,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-01-09,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-30,2024-10-30,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-30,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Paul-Alberto Popescu,,4813888509,Paul-Alberto,Popescu,M,1996-10-02,SZ064142C,34,WC1H 9SE,WC1H 9SE,37 Tavistock Pl,,99,2024-10-07,9,240,2024-09-30,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-22,2025-03-11,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2024-10-28,2024-10-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Maxim Iwanskyj,,5788097931,Maxim,Iwanskyj,M,2002-08-08,PH716266C,34,NG2 7FJ,NG2 7FJ,2 Lansdowne Drive,,94,2024-10-07,9,240,2024-09-30,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-13,2025-02-18,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2025-01-13,2025-01-13,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-01-13,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Omar Eweis,,9036719231,Omar,Eweis,M,2001-08-26,PH158963D,47,TW14 9LZ,TW14 9LZ,41 Burns Avenue,,99,2024-10-07,10,240,2024-09-30,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-10,2025-01-10,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2025-01-10,2025-01-10,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-01-10,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Gurleen Kaur Vasir,,2603209468,Gurleen Kaur,Vasir,F,1998-03-31,PG473200A,39,IG3 9SP,IG3 9SP,20 Alloa Road ,,98,2024-10-07,10,240,2024-09-30,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-08,2025-02-25,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2025-01-08,2025-01-08,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-01-08,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Lydia Joan Farnham,,8917381528,Lydia Joan,Farnham,F,1998-06-22,PC975846C,31,SW4 8QL,SW4 8QL,"6 Cavendish Gardens, Trouville Road",,94,2024-10-07,9,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-01-08,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-30,2024-10-30,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-30,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Kaleb Michael Rogan Sofer,,9476057016,Kaleb Michael Rogan,Sofer,M,1994-11-06,JZ718492A,31,NW1 7SX,NW1 7SX,46 Regents Park Road,,99,2024-10-07,9,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-01-08,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-31,2024-10-31,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-31,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Sam Valentine Ocean Burcher,,8958323662,Sam Valentine Ocean,Burcher,M,1999-02-20,PE458469B,31,N19 5UE,N19 5UE,17 Greatfield Close,,99,2024-10-07,9,240,2024-09-30,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-08,2025-03-03,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2025-01-08,2025-01-08,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-01-08,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Moulay-Karim Id-boufker,,6659560520,Moulay-Karim,Id-boufker,M,1983-12-06,SP023118C,98,N5 1UZ,N5 1UZ,30 Battledean Road,,99,2024-10-07,10,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-02-07,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-28,2024-10-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Leare Chimin Song,,8264205584,Leare Chimin,Song,F,1992-12-30,SN333021B,43,KT3 6RF,KT3 6RF,65 Blakes Avenue,,99,2024-10-07,9,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-01-07,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-28,2024-10-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Theodoros Keloglou,,5191611747,Theodoros,Keloglou,M,1994-06-17,SY435354C,34,N1 5AE,N1 5AE,64 Hertford Road,,94,2023-03-13,6,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,,,EPA0475,ACT,1,2023-03-20,,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,1,,,,,,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-04-09,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Daniel Levy,,9465176213,Daniel,Levy,M,1998-12-22,PE526525B,98,N3 3QU,N3 3QU,44 East End Road,,99,2025-01-20,10,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-04-29,,8,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-04-29,2025-04-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -David Gareth Walters,,9960309400,David Gareth,Walters,M,1974-04-25,JA546910C,31,NW3 2RX,NW3 2RX,10 Heath Hurst Road,,98,2025-01-20,10,240,2025-01-13,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-29,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-03-15,2025-03-15,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-15,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Ermina Malaj,,2801162867,Ermina,Malaj,F,1997-03-10,PE879993B,34,N4 3PQ,N4 3PQ,20 Dellafield,,99,2025-01-20,9,240,2025-01-13,10,,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-10,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-03-18,2025-03-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-18,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Tolga Hasan Dur,,7517945148,Tolga Hasan,Dur,M,1995-01-28,SY794506C,98,NW1 8ER,NW1 8ER,"Flat 2, 10 Ferdinand Street",,94,2025-01-20,10,240,2025-01-13,10,,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-08,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-03-04,2025-03-04,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-04,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Cameron Boroumand,,6417981656,Cameron,Boroumand,M,2000-08-02,SC699905B,31,NE40 3XB,NE40 3XB,9 Curlew Close,,98,2025-01-20,9,240,2025-01-13,11,999999999,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-04-01,2025-04-01,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-04-01,2025-04-01,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-01,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Omoniigbehin-eni Adeyemo,,1969688113,Omoniigbehin-eni,Adeyemo,M,1988-02-29,PX870570C,36,SE4 1AG,SE4 1AG,57 Ehurst Road,,12,2025-01-20,10,240,2025-01-13,10,999999999,checked,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-03-21,2025-03-25,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059748,2025-02-03,2025-02-03,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-02-03,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Nicola Croce,,8021910649,Nicola,Croce,M,1993-05-14,NJ727717B,34,N1 0GJ,N1 0GJ,79 St Williams Court,,99,2025-01-20,10,240,2025-01-13,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-02,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-03-04,2025-03-04,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-04,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Sallar Ali Qazi,,9318695313,Sallar Ali,Qazi,M,1994-12-22,NJ015743D,40,W12 0FD,W12 0FD,"Flat 11, 88 Wood Lane",,98,2025-01-20,10,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-04,2025-07-01,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-05-04,2025-05-04,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-04,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Toluwalope Ojo,,4472251999,Toluwalope ,Ojo,F,2000-02-25,PG193951D,46,HA2 8QJ ,HA2 8QJ ,65 WINDSOR CRESCENT ,,99,2025-01-20,10,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-04-10,2025-07-24,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-04-10,2025-04-10,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-10,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Yulia Goryachev,,6842260573,Yulia,Goryachev,F,1981-07-15,ST719793B,34,N20 0QT,N20 0QT,16 Green Road,,98,2025-01-20,10,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-02,2025-04-02,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-05-02,2025-05-02,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-02,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Andreas Paxinos,,6349814958,Andreas,Paxinos,M,1994-09-01,SP663030C,34,SE1 5EB,SE1 5EB,"5 New Tannery Way, Apartment 11",,99,2025-01-20,10,240,2025-01-13,10,999999999,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-04-17,2025-04-17,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059748,2025-04-17,2025-04-17,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-04-17,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Thomas Harper,,8903972332,Thomas,Harper,M,1996-06-19,PB233792A,38,TW7 6BE,TW7 6BE,57 Church Street,,99,2025-01-20,6,240,2025-01-13,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-09,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-03-03,2025-03-03,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-03,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Nigel David Simon Kiernan,,2695489594,Nigel David Simon,Kiernan,M,1971-02-23,NW751336C,31,ME1 3AG,ME1 3AG,36 Priestfields,,14,2025-01-20,10,240,2025-01-13,10,,,1 checked out of 1,,1,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-04-22,2025-04-22,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-04-22,2025-04-22,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-22,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Harry Moss,,3022498348,Harry,Moss,M,1989-12-16,JS560178C,31,N19 4JN,N19 4JN,94 Alexander Road,,99,2025-01-20,10,240,2025-01-13,10,999999999,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-03-21,2025-04-23,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059748,2025-01-28,2025-01-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-01-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Oliver Joseph Maclean Ross,,6050639530,Oliver Joseph Maclean,Ross,M,2002-03-19,PH515793B,31,E2 7RU,E2 7RU,1 Shipton Street,,99,2025-01-20,10,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-08,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-03-06,2025-03-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-06,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Amirhossein Jabarivasal,,1394079566,Amirhossein,Jabarivasal,M,1994-12-05,SL532012A,43,NW9 4DF,NW9 4DF,"Flat 62, Umber House, 3 Lismore Boulevard",,99,2025-01-20,9,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-04-14,2025-04-14,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-04-03,2025-04-03,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-03,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Gianfranco Ameri,,9306105176,Gianfranco,Ameri,M,2002-08-09,SC799378C,31,SW3 4EP,SW3 4EP,41 Smith Street,,99,2025-01-20,10,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-04-02,2025-04-30,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-04-02,2025-04-02,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-02,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Oliver Federico,,1163999201,Oliver,Federico,M,2001-03-01,PG797065B,31,EC2A 3EN,EC2A 3EN,"Flat1, 1 Three Cups Alley, Fairchild Place",,12,2025-01-20,9,240,2025-01-13,10,,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-08,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-03-06,2025-03-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-06,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Kate O'Brien,,8257599599,Kate,O'Brien,F,1992-03-07,SX015163D,32,N15 3TB,N15 3TB,21 Ritches rd,,12,2023-03-13,10,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,322,,EPA0475,ACT,1,2023-03-20,2024-10-01,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,6,2024-10-01,,3,,,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,6,2024-10-01,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Philippa Bywater,,6548628720,Philippa,Bywater,F,1992-06-17,JW 89 21 51 D,31,E10 6RN,E10 6RN,"23 Brennan House, 608 High Road Leyton, e10 6RN ",,94,2023-03-13,9,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,625,,EPA0475,ACT,1,2023-03-20,2025-10-16,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,2,2025-04-30,2025-10-16,1,,DE,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-04-30,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Harriet Owen,,2553336488,Harriet,Owen,F,1989-02-28,JJ124648A,31,SE15 1PX,SE15 1PX,88 Friary Road,,94,2023-03-13,10,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,,,EPA0475,ACT,1,2023-03-20,,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,1,,,,,,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-07-31,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Jacob Mitchell,,3018854224,Jacob,Mitchell,M,1996-07-30,PB 63 61 19 D,31,N19 3AY,N19 3AY,212A Camberwell New Road,,94,2023-03-13,10,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,638,,EPA0475,ACT,1,2023-03-20,2025-09-08,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,2,2025-06-30,2025-09-08,1,,DE,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-06-30,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Pastor Ignacio Jurado Traverso,,9418517913,Pastor Ignacio,Jurado Traverso,M,1973-08-01,SC796579D,34,BR6 0PX,BR6 0PX,57 Weststand Apartments ,,99,2023-03-13,97,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,,,EPA0475,ACT,1,2023-03-20,,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,1,,,,,,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-10-03,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Eade Moon Hemingway,,1003331709,Eade Moon,Hemingway,F,1992-08-06,JW713465B,31,N1 5FB,N1 5FB,Unit 4b Canalside studios,,94,2023-03-13,10,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,451,,EPA0475,ACT,1,2023-03-20,2024-06-18,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,6,2024-06-18,,3,,,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,6,2024-06-18,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Ali Versi,,6081018724,Ali,Versi,M,1990-05-01,JR 40 27 92 A,39,SW3 3BQ,SW3 3BQ,Flat 817 Nell Gwynn House,,95,2023-03-13,10,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,,,EPA0475,ACT,1,2023-03-20,,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,1,,,,,,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-07-29,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Adam samuel Gilbert,,9045178183,Adam samuel,Gilbert,M,1989-12-19,JP200156A,98,NW1 7BS,NW1 7BS,"Flat 412, Carlow House",,99,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-07-17,,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,1,,,,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-30,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Amber Rignell,,4720622398,Amber ,Rignell,F,1998-05-24,PX477294C,31,N1 5RL,N1 5RL,11 Mill Row,,94,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-07-17,,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,1,,,,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-29,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Aibek Sarimbekov,,8212934666,Aibek,Sarimbekov,M,1987-04-18,SX051127D,43,NW8 6JU,NW8 6JU,3 Wilkie house,,94,2023-07-10,10,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,310,,EPA0475,ACT,1,2023-07-17,2024-06-03,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,6,2024-06-03,,3,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,6,2024-06-03,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Owen Arthur Turner-Major,,4254215052,Owen Arthur,Turner-Major,M,1992-09-05,JN707571D,31,N6 6JJ,N6 6JJ,"16 West Hill Court, Millfield Lane",,94,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,415,,EPA0475,ACT,1,2023-07-17,2024-10-01,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,6,2024-10-01,,3,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,6,2024-10-01,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Musa Lala,,1569629578,Musa,Lala,M,2001-06-10,PH128596A,43,IG8 8EJ,IG8 8EJ,"1 Sands Way, Woodford, Woodford Green",,94,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-07-17,,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,1,,,,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-28,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Jon Ander Besga Aristizabal,,8575725164,Jon Ander,Besga Aristizabal,M,1992-02-14,SZ210151D,34,N1 7QQ,N1 7QQ,"Flat 28, Thaxted Court, 2 Murray Grove",,94,2023-07-10,6,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-07-17,,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,1,,,,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Anvar Abdullaev,,3664575708,Anvar,Abdullaev,M,1977-03-06,SL988225B,43,DA5 3LL,DA5 3LL,164 Murchison Avenue,,94,2023-07-10,10,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,598,,EPA0475,ACT,1,2023-07-17,2025-10-08,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,2,2025-07-29,2025-10-08,1,,DE,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-29,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Matthew Megarry,,8589841943,Matthew,Megarry,M,1985-04-09,JR 57 47 24 A,31,N15 4NL,N15 4NL,"Flat 2, 6 Wakefield Road, London, UK",,96,2023-07-10,10,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,961,,EPA0475,ACT,1,2023-07-17,2025-10-29,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,2,2025-07-29,2025-10-29,1,,DE,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-29,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Matthew Barry Hall,,1002015471,Matthew Barry,Hall,M,1990-05-04,JS345776A,31,HU12 8NH,HU12 8NH,"5 Chestnut Avenue, Hedon, Hull",,94,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-07-17,,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,1,,,,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-30,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Lok Ting Serena Chan,,8428255317,Lok Ting Serena,Chan,F,1997-10-22,ST990663D,42,NW9 7DS,NW9 7DS,"Flat 45 Greenshank House, 19 Moorhen Drive",,94,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,610,,EPA0475,ACT,1,2023-07-17,2025-05-27,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,2,2025-03-04,2025-05-27,1,,PA,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-03-04,,1,,PA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Efstathios Kapnidis,,5100802455,Efstathios,Kapnidis,M,1999-06-10,SY166459D,99,N1 6QD,N1 6QD,Flat 3 Arden House Arden Estate Hackney,,98,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,990,,EPA0475,ACT,1,2023-07-17,2025-07-29,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,2,2025-04-23,2025-07-29,1,,DE,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-04-23,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Ibrahim Kaan Keskin,,6672364276,Ibrahim Kaan,Keskin,M,1991-11-05,SX253433B,38,E16 1US,E16 1US,Apartment 1304,,99,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-07-17,,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,1,,,,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-10-06,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Aiaz Mamedov,,7380344683,Aiaz,Mamedov,M,1999-06-22,TL134666C,98,SW1P 4LA,SW1P 4LA,"Flat 101, Marsham Court",,98,2023-10-16,10,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,519,,EPA0475,ACT,1,2023-10-23,2025-07-11,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,2,2025-03-04,2025-07-11,1,,ME,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-03-04,,1,,ME,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Bachar Richard Kabalan,,2841623563,Bachar Richard,Kabalan,M,1989-08-16,SY421269B,47,E17 8AR,E17 8AR,90 clacton road,,99,2023-10-16,10,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-10-23,,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,1,,,,,,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -William Patrick Parker,,6352721418,William Patrick,Parker,M,1973-04-09,NZ426370D,31,ML6 7SA,ML6 7SA,16 Bridge Street,,94,2023-10-16,9,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,552,,EPA0475,ACT,1,2023-10-23,2025-10-29,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,2,2025-07-30,2025-10-29,1,,PA,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-30,,1,,PA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Matthew Gregory ,,4558044487,Matthew,Gregory ,M,1989-04-14,JG 46 28 60 A,31,N1 8QD,N1 8QD,1a Price House,,94,2023-10-16,10,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-10-23,,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,1,,,,,,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-09-30,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Navjot Sharma,,7798405819,Navjot,Sharma,F,1991-08-26,SY 56 64 91 D,39,SE7 7GG,SE7 7GG,4 Bowen Drive,,99,2023-10-16,9,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-10-23,2025-08-15,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,6,2025-08-15,,3,,,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,6,2025-08-15,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Birsen Yildiz,,4386689248,Birsen,Yildiz,F,1983-02-21,SK 89 28 61 B,34,SM1 2PS,SM1 2PS,55 Stayton Road,,99,2023-10-16,10,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,668,,EPA0475,ACT,1,2023-10-23,2025-10-16,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,2,2025-07-22,2025-10-16,1,,DE,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-22,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Halimat Afolabi,,2751620786,Halimat ,Afolabi,F,1994-03-26,jz938661B,44,SW2 3TS,SW2 3TS,102 Downton Avenue,,98,2023-10-16,10,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-10-23,,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,1,,,,,,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Shaheen Ahmed-Chowdhury,,7531093137,Shaheen,Ahmed-Chowdhury,M,1994-12-11,PA696495B,41,E15 1BQ,E15 1BQ,82 Gerry Raffles Square,,99,2023-10-16,10,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-10-23,,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,1,,,,,,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Jason Ross Warren,,5484836491,Jason Ross,Warren,M,1985-05-23,JW661714C,31,E17 8QJ,E17 8QJ,"36 Devonshire Road, London, E17 8QJ",07725913649,94,2024-09-02,10,,2024-08-26,10,999999999,,0 checked out of 1,,4,6,,2024-09-09,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2024-09-09,2026-06-09,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-09-09,,,105,TNP,1,2024-09-09,16150,TNP,2,2024-09-09,1850,1,,,,,,3,Z0001947,2024-09-09,2026-06-09,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Daniel Beattie,,1422984388,Daniel,Beattie,M,1971-05-13,NW789341B,31,SE23 3YL,SE23 3YL,15 Derby Hill Crescent,,99,2025-01-20,9,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,,2025-04-04,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,,,,,37,32,,,,,SBD-1232-674,,,,,,,105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Cameron Nimmo,,3344513922,Cameron,Nimmo,M,1999-03-16,PE510553B,31,N17 6AN,N17 6AN,19 Downhills Way,,99,2025-01-20,6,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-27,2025-05-27,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-05-13,2025-05-13,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-13,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Jack Casstles-Jones,,3346566810,Jack,Casstles-Jones,M,1997-06-19,PC 28 48 15 D,31,EN2 9AN,EN2 9AN,134 Clay Hill,07493021267,98,2024-12-30,9,,2024-12-23,10,999999999,,0 checked out of 1,,2,8,,2025-01-06,10,999999999,8,,,1 checked out of 1,3,1,ZPROG001,2025-01-06,2027-01-06,36,25,2,N4 3HH,600,,,EPA0475,ACT,1,2025-01-06,,,105,TNP,1,2025-01-06,16150,TNP,2,2025-01-06,1850,1,,,,,,3,Z0001947,2025-01-06,2027-01-06,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Maxime Lesley Downe,,1839356927,Maxime Lesley,Downe,M,1992-06-28,PA 849205 B,34,SW9 6HX,SW9 6HX,50A Vassall Road,07429445107,99,2024-12-30,10,,2024-12-23,10,999999999,,1 checked out of 1,,4,8,,2025-01-06,10,999999999,8,,,1 checked out of 1,3,1,ZPROG001,2025-01-06,2027-01-06,36,25,2,N4 3HH,600,,,EPA0475,ACT,1,2025-01-06,,,105,TNP,1,2025-01-06,16150,TNP,2,2025-01-06,1850,1,,,,,,3,Z0001947,2025-01-06,2027-01-06,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Evelyn Tan,,8678386834,Evelyn,Tan,F,1994-06-07,ST371059D,42,N1 5TF,N1 5TF,56 De Beauvoir Crescent,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-05-26,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-12,2025-05-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-12,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Andrea Della Corte,,9982196838,Andrea,Della Corte,M,1985-11-28,ST670753B,34,SE1 6FN,SE1 6FN,251 Southwark Bridge Road,,95,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-05,2025-06-07,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-06-05,2025-06-05,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-05,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Oliver Cumming,,8015817624,Oliver,Cumming,M,2002-02-24,SC301423D,31,SW4 6JB,SW4 6JB,15 Larkhall Rise,,12,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-29,2025-06-16,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-29,2025-05-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Neville Bryce,,3474125698,Neville,Bryce,M,1981-11-12,JL548962C,31,NW11 7BY,NW11 7BY,Flat 25 Corringham Court,,99,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,,8,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-13,2025-05-13,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-13,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Pyry Takala,,1086035436,Pyry,Takala,M,1986-10-02,ST254430C,34,NW8 7EW,NW8 7EW,Dufourstrasse 136,,99,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,2,8,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-16,2025-08-01,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-06-16,2025-06-16,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-16,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Artemis Ione Webster,,5138411534,Artemis Ione,Webster,F,2000-07-04,PG484601B,31,EC1Y 8JR,EC1Y 8JR,1 Roscoe Street,,94,2025-04-07,9,240,2025-03-31,10,,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-07-10,2025-08-28,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059748,2025-07-10,2025-07-10,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-07-10,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Kori George Rogers,,9917272770,Kori George,Rogers,M,1997-05-03,TH844278C,37,BA1 5TG,BA1 5TG,8 Lansdown Park,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-16,2025-07-23,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-06-16,2025-06-16,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-16,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Gaurav Gandhi,,1084566817,Gaurav,Gandhi,M,1980-07-12,SX706794C,39,TW7 4QW,TW7 4QW,7 Cranmore Avenue Isleworth,,98,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,4,6,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-08-05,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-04-28,2025-04-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Joshua Oyekunle,,2515780104,Joshua,Oyekunle,M,2003-03-23,PJ336579D,44,NW11 7SH,NW11 7SH,10 Park Drive,,94,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-09,2025-10-16,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-07-09,2025-07-09,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-09,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Aygun Zarbaliyeva,,3946096912,Aygun,Zarbaliyeva,F,1987-07-31,SW506107D,34,EN4 8TA,EN4 8TA,54B Church Hill Road,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-29,2025-08-18,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-29,2025-05-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Daniel Bryars,,3166744818,Daniel,Bryars,M,1976-01-27,JE029850C,31,OX7 3NB,OX7 3NB,"Apple Brook House, Horse Shoe Lane",,99,2025-04-07,9,240,2025-03-31,10,,,1 checked out of 1,,4,7,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-30,2025-10-01,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-05-30,2025-05-30,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-30,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Dimitar Seraffimov,,3590751133,Dimitar,Seraffimov,M,2002-01-26,SW956183D,34,WC1B 3BA,WC1B 3BA,57 Great Russel St,,99,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-12,2025-06-14,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-06-12,2025-06-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-12,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Loredana-Otilia Gaspar,,9427314442,Loredana-Otilia ,Gaspar,F,1991-03-23,ST125677B,34,E16 2ER,E16 2ER,Wards Wharf Approach,,99,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,1,,,,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,,,,,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,,105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Kin Ting Kenton Kwok,,3984196600,Kin Ting Kenton,Kwok,M,2001-04-28,SX991543D,42,OX4 1XH,OX4 1XH,25 Ablett Close,,99,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,1,7,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-06-28,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-05-01,2025-05-01,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-01,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Maximillian Gorynski,,5439460593,Maximillian,Gorynski,M,1994-06-02,JZ287827D,34,E14 9DU,E14 9DU,"Flat 2104, Bagshaw Building, 1 Ward's Place",,99,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,3,8,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,,8,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-04-23,2025-04-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-23,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Coline Ritz,,9605342463,Coline,Ritz,F,2000-06-08,SY710642C,34,SW15 1LP,SW15 1LP,"44, Festing Road",,99,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,3,6,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-28,2025-09-08,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-05-28,2025-05-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Liam Flavin,,1940571218,Liam,Flavin,M,1996-12-23,PB753935D,98,SE22 8UL,SE22 8UL,56 woodwarde road,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-04,2025-09-06,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-06-04,2025-06-04,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-04,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Dimitrios Gaitanelis,,7956294222,Dimitrios,Gaitanelis,M,1991-02-16,SY619684A,34,N17 9PL,N17 9PL,92 Armadale Close,,98,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,4,7,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-08-15,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-04-28,2025-04-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Ardrit Ramadani,,9175496444,Ardrit,Ramadani,M,2000-03-04,SE367231D,99,EC1N 7SP,EC1N 7SP,Flat 10 scrope building,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-09,,8,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-06-09,2025-06-09,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-09,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Nnamdi Odozi,,5998002570,Nnamdi,Odozi,M,1978-03-27,PW962191D,44,HA8 8QW,HA8 8QW,242,,99,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,4,7,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-08-02,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-04-23,2025-04-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-23,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Emil Engdahl,,4895112925,Emil,Engdahl,M,2002-01-27,TK825404A,34,W6 8RA,W6 8RA,104 St Dunstans Road,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-30,2025-06-09,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-30,2025-05-30,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-30,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Yurii Oksamytnyi,,1869360817,Yurii,Oksamytnyi,M,1996-08-15,NJ930085B,34,SE19 3ST,SE19 3ST,16B Rockmount Road,,99,2025-04-07,9,240,2025-03-31,10,,,1 checked out of 1,,4,6,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-08-01,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-05-07,2025-05-07,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-07,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Guillaume Boniface,,3639246216,Guillaume,Boniface,M,1987-01-01,KC021176A,34,N4 2BN,N4 2BN,"Flat 47, Kimpton Court",,99,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-03,2025-08-27,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-06-03,2025-06-03,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-03,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Amy Freear,,7934238028,Amy,Freear,F,1998-03-07,PC811441B,31,N19 3AG,N19 3AG,21B Ashley Rd,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-06-09,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-12,2025-05-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-12,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Filippo Romeo,,5680467347,Filippo,Romeo,M,1995-08-08,NJ918327D,34,E1W 3DH,E1W 3DH,264 The Highway,,99,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-04,2025-09-05,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-07-04,2025-07-04,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-04,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Milo Rignell,,8938361038,Milo,Rignell,M,1996-10-21,PX059549B,31,W1G 8PD,W1G 8PD,19 Wimpole Mews,,99,2025-04-07,9,240,2025-03-31,10,,checked,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-05-23,2025-08-28,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059748,2025-04-15,2025-04-15,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-04-15,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -James Love,,1360520928,James ,Love,M,1997-08-16,PC244857B,31,SW19 5BD,SW19 5BD,20 Marryat rd,,12,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,3,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-06-16,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-19,2025-05-19,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-19,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -David Tian,,6800531544,David,Tian,M,1980-01-04,SG316422C,42,S10 5FE,S10 5FE,45 Evelyn Road,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-09,2025-10-24,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-07-09,2025-07-09,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-09,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Jasmine Edna Maslen,,5974616617,Jasmine Edna,Maslen,F,2002-10-20,PH862863D,31,LE3 0DG,LE3 0DG,91 Wilberforce Road,07342210105,99,2025-04-30,6,,2025-04-23,10,999999999,,0 checked out of 1,,1,5,,2025-05-07,10,999999999,8,,,1 checked out of 1,3,1,ZPROG001,2025-05-07,2027-05-06,36,25,2,N4 3HH,525,,,EPA0475,ACT,1,2025-05-07,,,105,TNP,1,2025-05-07,16150,TNP,2,2025-05-07,1850,1,,,,,,3,Z0001947,2025-05-07,2027-05-06,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Anton Dergunov,,6937430085,Anton,Dergunov,M,1984-03-31,SZ410920A,34,W3 8BJ,W3 8BJ,"20 Howell Court, Enfield Road",,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-18,2025-08-04,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-03,2025-07-03,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-03,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Helen Zhou,,6040749996,Helen,Zhou,F,1991-01-10,PA056085B,42,E1 3BT,E1 3BT,"Flat 14, 6 Trinity Mews, London",,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,3,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,2025-09-26,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Yali Pan,,4663077942,Yali,Pan,F,1992-08-03,SY399765B,42,B30 1PY,B30 1PY,23 Old Barn Road,,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,2025-10-06,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Adam Beedell,,9415346018,Adam,Beedell,M,1992-03-23,JN163565B,31,MK14 5PR,MK14 5PR,193 Hainault Avenue,,99,2025-06-02,6,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-08-04,2025-08-12,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-08-04,2025-08-04,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-08-04,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Andrei Zhirnov,,7415763326,Andrei,Zhirnov,M,1985-12-29,SX621622C,34,EX1 2EQ,EX1 2EQ,38 Portland street,,99,2025-06-02,10,240,2025-05-26,10,,,0 checked out of 1,,4,7,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Tak Leung Ben Liong,,2205319247,Tak Leung Ben,Liong,M,1978-02-13,SW960437B,42,TW10 7JT,TW10 7JT,32 Craig Road,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-08-15,2025-08-25,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-08-15,2025-08-15,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-08-15,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Ethan Edwards,,5198781168,Ethan,Edwards,M,1998-12-09,PE314192A,31,WR11 7PQ,WR11 7PQ,15 High Street,,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Hikaru Tsujimura,,4827588200,Hikaru,Tsujimura,M,1987-05-06,SN066939D,43,NW1 9NN,NW1 9NN,180 Royal College Street,,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,4,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-18,2025-07-07,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-06-25,2025-06-25,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-25,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -James Carter,,7236380988,James,Carter,M,1987-07-12,JH105351D,31, GL53 0AD, GL53 0AD,229 old bath road,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,3,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-23,2025-08-19,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-23,2025-07-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-23,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -David Edey,,1749317620,David,Edey,M,1993-08-06,JX404350C,31,E16 2GW,E16 2GW,"Flat 85, Boyd Building, 3 Hudson Way, Gallions Reach, London",,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,2025-09-24,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Andrew Phillipo,,4714678948,Andrew,Phillipo,M,1982-07-26,JJ946905B,31,E3 5PQ,E3 5PQ,"Flat 29 Dethick Court, Bow, London",,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Dong Cai,,7362065778,Dong,Cai,M,1969-09-04,SK311549B,42,TW9 1UY,TW9 1UY,50 ST MARYS GROVE,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Rasched Haidari,,3464555827,Rasched,Haidari,M,1997-11-14,SK952224A,43,SW9 9AB,SW9 9AB,"Flat 16 Blair House, Stockwell Gardens Estate",,98,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-08-15,2025-08-25,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-08-15,2025-08-15,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-08-15,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Daniel Goss,,3046987500,Daniel,Goss,M,1993-09-14,JX587400A,31,N5 1AU,N5 1AU,"150B Highbury Hill, London",,98,2025-06-02,9,240,2025-05-26,10,,,1 checked out of 1,,,8,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Ewan Beattie,,7190242618,Ewan,Beattie,M,1995-09-23,PW855476A,31,N16 0SH,N16 0SH,25 Sandbrook road,,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Qingyue Shi,,9028398634,Qingyue,Shi,F,1998-02-23,NJ149574C,42,SE1 6EH,SE1 6EH,8 Walworth Road Apt 2304,,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Roshan Beedassee,,6756417362,Roshan,Beedassee,M,1993-01-30,JW770674C,99,SW17 8TP,SW17 8TP,4 Eswyn Road,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,3,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Maria Sharif,,6644315363,Maria,Sharif,F,1999-04-04,sg594525b,46,ec1v 3su,ec1v 3su,"Flat 52, Gastigny House",,94,2025-06-02,10,240,2025-05-26,10,,,1 checked out of 1,,,7,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Arjuna James,,9963343448,Arjuna,James,M,1992-08-07,JW114679D,35,SE20 8DN,SE20 8DN,9 Orchard Grove,,99,2025-06-02,10,240,2025-05-26,10,,,1 checked out of 1,,,8,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Jacob Jenner,,8846584154,Jacob,Jenner,M,2000-01-17,SE423104A,31,W14 0RX,W14 0RX,"Flat 62, North End House, Fitzjames Avenue",,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Benjamin Williams,,1323288510,Benjamin,Williams,M,1995-11-14,PA573060A,31,SW11 3QY,SW11 3QY,"Flat 11, 347 York Road",,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-18,2025-08-11,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-06-11,2025-06-11,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-11,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Kadriye Turkcan,,3774260809,Kadriye,Turkcan,F,1984-06-26,SX246874C,34,E16 1DE,E16 1DE,23 Seagull Lane,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Hongyang Yan,,7046269733,Hongyang ,Yan,M,2004-01-08,SN380388A,42,N19 4HL,N19 4HL,30 Mitford Road,,94,2025-06-02,6,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-18,2025-08-10,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-06-30,2025-06-30,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-30,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Miguel Parracho,,1622761218,Miguel,Parracho,M,1993-06-11,SW226000A,34,E15 2JS,E15 2JS,Flat 32 Azura Court 48 Warton Road,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Prima Gouse,,5738286498,Prima,Gouse,F,2003-12-02,SH297795D,41,SL2 1TJ,SL2 1TJ,10 Aldridge Road,,99,2025-06-02,6,240,2025-05-26,10,,,1 checked out of 1,,,6,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-08-28,2025-08-28,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-08-28,2025-08-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-08-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Umut Sagir,,7713883281,Umut,Sagir,M,1985-08-12,NJ100217B,34,SW2 3JB,SW2 3JB,6 Kingsmead Rd,,99,2025-06-02,10,240,2025-05-26,10,,,1 checked out of 1,,,7,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-18,2025-08-29,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-06-17,2025-06-17,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-17,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Lawrence O'Keeffe,,1103502734,Lawrence,O'Keeffe,M,1984-10-24,JL433389B,99,SE16 5EL,SE16 5EL,flat 6,,4,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Joao Pedro Abrantes Esteves,,7975445834,Joao Pedro,Abrantes Esteves,M,1999-08-25,SX852620A,34,NW1 7HU,NW1 7HU,36 Arlington Rd,,99,2025-06-02,10,240,2025-05-26,10,,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-08-15,2025-08-21,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-08-15,2025-08-15,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-08-15,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Tyrone Nicholas,,5916734440,Tyrone,Nicholas,M,1974-05-24,SL879331D,43,CR0 7DJ,CR0 7DJ,31 Fernhurst Road,,15,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Ben Bethell,,8067037107,Ben,Bethell,M,1988-11-25,JT148133B,31,N17 7AD,N17 7AD,10 All Hallows ,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Chi Hay Clement Ha,,4442332303,Chi Hay Clement,Ha,M,1967-08-27,NJ157048A,42,KT4 7BF,KT4 7BF,17 Gunpowder Road,,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Marcin Tolysz,,7169147393,Marcin,Tolysz,M,1978-10-29,SG660291D,31,LU1 1XW,LU1 1XW,18 Startpoint,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Tao Zamorano,,9332032962,Tao,Zamorano,M,1989-02-21,SW456490C,38,CR0 1GL,CR0 1GL,Flat 109 Kindred House 25 Scarbrook Road 25 Scarbrook Road,,94,2025-06-02,8,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Melanie Wing Yin Wong,,4116303509,Melanie Wing Yin,Wong,F,1996-11-29,PC077721B,42,BH7 7JX,BH7 7JX,3 Vine Close,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Tomas Krajcoviech,,4231623782,Tomas,Krajcoviech,M,1999-09-26,RZ685453B,99,SE1 1EZ,SE1 1EZ,Redcross way,,98,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-31,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-31,2025-07-31,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-31,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Aparna Jayachandran Pillai,,6872178824,Aparna Jayachandran ,Pillai,F,2000-02-07,PP070200A,39,E2 0RB,E2 0RB,"Flat 21, Offenbach House, E2 0RB",,94,2025-06-02,10,240,2025-05-26,10,,,1 checked out of 1,,,7,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,2025-09-08,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Felipe Lavratti,,4950389903,Felipe,Lavratti,M,1985-12-09,SW118330C,34,NW5 2XE,NW5 2XE,38D Montpelier Grove,,99,2025-06-02,10,240,2025-05-26,10,,,1 checked out of 1,,,8,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,2025-09-01,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Christine Lush,,4843374732,Christine,Lush,F,1999-03-14,PE 64 31 46 C,34,SG12 9JP,SG12 9JP,"6 Fairway, Ware, Hertfordshire",07902460144,14,2025-04-30,9,,2025-04-23,11,,,0 checked out of 1,,,,2,2025-05-07,10,999999999,8,,,0 checked out of 1,3,1,ZPROG001,2025-05-07,2027-05-06,36,25,2,N4 3HH,525,,,EPA0475,ACT,1,2025-05-07,,,105,TNP,1,2025-05-07,16150,TNP,2,2025-05-07,1850,1,,,,,,3,Z0001947,2025-05-07,2027-05-06,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Stanley Nderu Mwangi,,2619816423,Stanley Nderu,Mwangi,M,1993-11-27,SL791381B,46,CR0 6XP,CR0 6XP,3 Redgrave Close,,99,2025-06-02,6,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-18,2025-08-01,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-06-11,2025-06-11,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-11,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Edgaras Aleliunas,,1503460508,Edgaras,Aleliunas,M,1992-10-02,SP353748A,34,NW2 5NB,NW2 5NB,174 Chapter road,,99,2025-09-01,97,,2025-08-25,10,999999999,,0 checked out of 1,,4,7,,2025-09-08,10,999999999,8,,,0 checked out of 1,1,1,ZPROG001,2025-09-08,2027-06-08,36,25,2,N4 3HH,450,,,EPA0475,ACT,1,2025-09-08,,,105,TNP,1,2025-09-08,15025,TNP,2,2025-09-08,1850,1,,,,,,3,Z0001947,2025-09-08,2027-06-08,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Natalia Rusu,,5541815176,Natalia,Rusu,F,1982-06-20,SZ265499D,34,RM14 1NH,RM14 1NH,44 Brunswick Avenue,,94,2023-01-05,98,,2022-12-29,11,,,0 checked out of 1,,,,1,2023-01-12,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-01-12,2024-07-11,36,25,2,N4 3HH,510,510,,EPA0001,ACT,1,2023-01-12,2025-01-27,,105,TNP,1,2023-01-12,16150,TNP,2,2023-01-12,1850,2,2024-09-17,2025-01-27,1,,PA,3,Z0001947,2023-01-12,2024-07-11,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2024-09-17,,1,,PA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Suraj Pun,,8220990928,Suraj,Pun,M,1994-10-04,SE689571D,43,HA0 2HF,HA0 2HF,4 Fernwood Avenue,,94,2023-01-05,4,,2022-12-29,11,,,0 checked out of 1,,,,1,2023-01-12,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-01-12,2024-03-11,36,25,2,N4 3HH,560,560,,EPA0001,ACT,1,2023-01-12,2024-08-01,,105,TNP,1,2023-01-12,9400,TNP,2,2023-01-12,1850,2,2024-04-27,2024-08-01,1,,ME,3,Z0001947,2023-01-12,2024-03-11,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2024-04-27,,1,,ME,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Georgia Elizabeth Whitney,,8771628079,Georgia Elizabeth,Whitney,F,1992-02-29,JJ679109B,31,SE21 8LA,SE21 8LA,219 Peabody Hill,,95,2023-01-05,9,,2022-12-29,11,,,0 checked out of 1,,,,1,2023-01-12,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-01-12,2024-07-11,36,25,2,N4 3HH,510,510,,EPA0001,ACT,1,2023-01-12,2025-02-06,,105,TNP,1,2023-01-12,16150,TNP,2,2023-01-12,1850,2,2024-10-28,2025-02-06,1,,ME,3,Z0001947,2023-01-12,2024-07-11,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2024-10-28,,1,,ME,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Dylan Harley Cobb,,8517581929,Dylan Harley,Cobb,M,1992-10-12,JW 342664 A,31,SE25 5BA,SE25 5BA,35 Birchanger Road,,94,2023-09-07,7,,2023-08-31,11,,,0 checked out of 1,,,,1,2023-09-14,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-09-14,2025-03-14,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2023-09-14,2024-07-03,,105,TNP,1,2023-09-14,16150,TNP,2,2023-09-14,1850,3,2024-07-03,,3,29,,3,Z0001947,2023-09-14,2025-03-14,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,3,2024-07-03,,3,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, \ No newline at end of file +Record - Airtable ID,Previous UKPRN,ULN,Given name,Family name,Sex ,Date of birth,NI number,Ethnic group,Prior post code,Post code,Street address ,Telephone number,Primary additional needs,Prior attainment date applies to,Prior attainment,Learning hours (skills bootcamp),Employment #1 date applies to,Employment status #1,Employer identifier #1 ,Small employer #1,Is the learner self employed? #1,Has the learner been made redundant? #1,Length of employment #1,Employment intensity indicator #1,Length of unemployment #1,Employment #2 date applies to,Employment status #2,Employer identifier #2,Employment intensity indicator #2,Has the learner been made redundant? #2,Is the learner self employed? #2,Small employer #2 ,Length of employment #2,Aim type (programme aim 1),Programme aim 1 Learning ref ,Start date (aim 1),Planned end date (aim 1),Funding module (aim 1),Programme type (aim 1),Apprentice standard (aim 1),Delivery postcode (aim 1),Planned hours (aim 1),Actual hours (aim 1),Contract Ref (aim 1),EPAO ID (aim 1),Contract type (aim 1),Contract type code (aim 1),Date applies from (aim1),Date applies to (aim 1),Funding indicator (aim 1),Source of funding (aim 1),Financial type 1 (aim 1),Financial code 1 (aim 1),Financial start date 1 (aim 1),Training price (aim 1),Financial type 2 (aim 1),Financial code 2 (aim 1),Financial start date 2 (aim 1),Total assessment price (aim 1),Completion status (aim 1),Actual end date (aim 1),Achievement date (aim 1),Outcome (aim 1),Withdrawal reason (aim 1),Outcome grade (aim 1),Aim type (programme aim 2),Programme aim 2 Learning ref ,Start date (aim 2),Planned end date (aim 2),Funding module (aim 2),Programme type (aim 2),Apprentice standard (aim 2),Delivery postcode (aim 2),Planned hours (aim2),Actual hours (aim 2),Contract ref (aim 2),EPAO ID (aim 2),Contract type (aim 2),Contract type code (aim 2),Date applies from (aim 2),Date applies to (aim 2),Funding indicator (aim 2),Source of funding (aim 2),Financial type 1 (aim 2),Financial code 1 (aim 2),Financial start date 1 (aim 2),Training price (aim 2),Financial type 2 (aim 2),Financial code 2 (aim 2),Financial start date 2 (aim 2),Total assessment price (aim 2),Completion status (aim 2),Actual end date (aim 2),Achievement date (aim 2),Outcome (aim 2),Withdrawal reason (aim 2),Outcome grade (aim 2),Aim type (programme aim 3),Programme aim 3 learning ref ,Start date (aim 3),Planned end date (aim 3),Funding module (aim 3),Programme type (aim 3),Apprentice standard (aim 3),Delivery postcode (aim 3),Planned hours (aim 3),Actual hours (aim 3),Contract ref (aim 3),EPAO ID (aim 3),Contract type (aim 3),Contract type code (aim 3),Date applies from (aim 3),Date applies to (aim 3),Funding indicator (aim 3),Source of funding (aim 3),Financial type 1 (aim 3),Financial code 1 (aim 3),Financial start date 1 (aim 3),Training price (aim 3),Financial type 2 (aim 3),Financial code 2 (aim 3),Financial start date 2 (aim 3),Total assessment price (aim 3),Completion status (aim 3),Actual end date (aim 3),Achievement date (aim 3),Withdrawal reason (aim 3),Outcome (aim 3),Outcome grade (aim 3),Aim type (programme aim 4),Programme aim 4 learning ref,Start date (aim 4),Planned end date (aim 4),Funding module (aim 4),Programme type (aim 4),Apprentice standard (aim 4),Delivery postcode (aim 4),Planned hours (aim 4),Actual hours (aim 4),Contract ref (aim 4),EPAO ID (aim 4),Contract type (aim 4),Contract type code (aim 4),Date applies from (aim 4),Date applies to (aim 4),Funding indicator (aim 4),Source of funding (aim 4),Financial type 1 (aim 4),Financial code 1 (aim 4),Financial start date 1 (aim 4),Training price (aim 4),Financial type 2 (aim 4),Financial code 2 (aim 4),Financial start date 2 (aim 4),Total assessment price (aim 4),Completion status (aim 4),Actual end date (aim 4),Achievement date (aim 4),Withdrawal reason (aim 4),Outcome (aim 4),Outcome grade (aim 4),Aim type (programme aim 5),Programme aim 5 learning ref ,Start date (aim 5),Planned end date (aim 5),Funding module (aim 5),Programme type (aim 5),Apprentice standard (aim 5),Delivery postcode (aim 5),Planned hours (aim 5),Actual hours (aim 5),Contract ref (aim 5),EPAO ID (aim 5),Contract type (aim 5),Contract type code (aim 5),Date applies from (aim 5),Date applies to (aim 5),Funding indicator (aim 5),Source of funding (aim 5),Financial type 1 (aim 5),Financial code 1 (aim 5),Financial start date 1 (aim 5),Training price (aim 5),Financial type 2 (aim 5),Financial code 2 (aim 5),Financial start date 2 (aim 5),Total assessment price (aim 5),Completion status (aim 5),Actual end date (aim 5),Achievement date (aim 5),Outcome (aim 5),Withdrawal reason (aim 5),Outcome grade (aim 5),Length of unemployment #2,Date applies to Employment status #3,Employment status #3,Employer identifier #3,Small employer #3,Self employed #3,Made Redundant #3,Length of employment #3,Employment hours #3,Length of unemployment #3,Date applies to Employment status #4,Employment status #4,Employer identifier #4,Small employer #4,Self employed #4,Made Redundant #4,Length of employment #4,Employment hours #4,Length of unemployment #4,Date applies to Employment status #5,Employment status #5,Employer identifier #5,Small employer #5,Self employed #5,Made Redundant #5,Length of employment #5,Employment hours #5,Length of unemployment #5 +Alexander Perez-Davies,,5796080759,Alexander ,Perez-Davies,M,1993-04-05,JX055947D,38,N16 7UJ,N16 7UJ,Flat 24 Morris Blitz Court,07525334311,99,2024-05-13,6,,2024-05-06,10,999999999,,0 checked out of 1,,2,8,,2024-05-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-20,2026-05-20,36,25,2,N4 3HH,504,505,,EPA0475,ACT,1,2024-05-20,2025-08-20,,105,TNP,1,2024-05-20,16150,TNP,2,2024-05-20,1850,2,2025-06-04,2025-08-20,1,,DE,3,Z0001947,2024-05-20,2026-05-20,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-06-04,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Guilherme Alexandre Santos Da Fonseca,,2316435334,Guilherme Alexandre,Santos Da Fonseca,M,1983-02-11,PX530942C,34,E9 5QN,E9 5QN,Flat 35 Fairmead House,07946487993,94,2024-05-13,6,,2024-05-06,10,999999999,,0 checked out of 1,,3,6,,2024-05-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-20,2026-05-20,36,25,2,N4 3HH,504,550,,EPA0475,ACT,1,2024-05-20,2025-08-27,,105,TNP,1,2024-05-20,16150,TNP,2,2024-05-20,1850,2,2025-06-04,2025-08-27,1,,DE,3,Z0001947,2024-05-20,2026-05-20,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-06-04,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Fearghal Simon Kavanagh,,3678180557,Fearghal Simon,Kavanagh,M,1991-03-19,SZ256677B,32,N19 5DL,N19 5DL,25 Girdlestone Walk,,12,2024-05-09,6,,2024-05-02,10,999999999,,0 checked out of 1,,3,8,,2024-05-16,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-16,2026-02-16,36,25,2,N4 3HH,504,554,,EPA0475,ACT,1,2024-05-16,2025-08-19,,105,TNP,1,2024-05-16,16150,TNP,2,2024-05-16,1850,2,2025-06-03,2025-08-19,1,,DE,3,Z0001947,2024-05-16,2026-02-16,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-06-03,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Halimah Manan,,2881077829,Halimah,Manan,M,1996-01-04,PA812868A,40,SE4 2AZ,SE4 2AZ,314 Brockley Road,,6,2024-05-09,9,,2024-05-02,10,999999999,,0 checked out of 1,,3,8,,2024-05-16,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-16,2026-02-16,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-05-16,,,105,TNP,1,2024-05-16,16150,TNP,2,2024-05-16,1850,1,,,,,,3,Z0001947,2024-05-16,2026-02-16,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-10-30,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Oskar Przybylski,,1710136412,Oskar,Przybylski,M,1995-01-03,SS176624A,34,SE16 4UT,SE16 4UT,"36 Pickwick House, George Row, London SE16 4UT",,99,2024-05-09,10,,2024-05-02,11,,,0 checked out of 1,,,,1,2024-05-16,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-16,2026-02-16,36,25,2,N4 3HH,504,554,,EPA0475,ACT,1,2024-05-16,2025-11-03,,105,TNP,1,2024-05-16,16150,TNP,2,2024-05-16,1850,2,2025-08-20,2025-11-03,1,,DE,3,Z0001947,2024-05-16,2026-02-16,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-08-20,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Alexander Rodriguez,,8586841632,Alexander,Rodriguez,M,1979-06-19,SP159186C,34,N7 7NE,N7 7NE,"72 Hornsey Road, N77NE",,99,2024-05-09,6,,2024-05-02,10,999999999,,0 checked out of 1,,4,6,,2024-05-16,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2024-05-16,2026-02-16,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-05-16,,,105,TNP,1,2024-05-16,16150,TNP,2,2024-05-16,1850,1,,,,,,3,Z0001947,2024-05-16,2026-02-16,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mohammed Salim Gajia,,3818866855,Mohammed Salim,Gajia,M,1998-11-22,pe 329693b,39,IG1 4LJ,IG1 4LJ,134 Wellesley Road,07599537784,10,2024-05-13,4,,2024-05-06,10,999999999,,0 checked out of 1,,2,8,,2024-05-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-20,2026-05-20,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-05-20,,,105,TNP,1,2024-05-20,16150,TNP,2,2024-05-20,1850,1,,,,,,3,Z0001947,2024-05-20,2026-05-20,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Levi Musa Rogers,,9707618956,Levi Musa,Rogers,M,2001-07-29,Ph119604A,38,E9 5DR,E9 5DR,"Flat 9, Presentation House",07939157314,99,2024-05-13,4,,2024-05-06,10,999999999,,0 checked out of 1,,3,8,,2024-05-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-05-20,2026-05-20,36,25,548,N4 3HH,504,,,EPA0475,ACT,1,2024-05-20,,,105,TNP,1,2024-05-20,15400,TNP,2,2024-05-20,1600,1,,,,,,3,Z0001946 ,2024-05-20,2026-05-20,36,25,548,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-10-24,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Riley O'Dwyer,,2777776074,Riley,O'Dwyer,M,2006-06-03,PL380683D,31,E5 8JJ,E5 8JJ,"Flat 2, Sheppey House",07376526238,99,2024-06-24,4,,2024-06-17,98,,,0 checked out of 1,,,,,2024-07-01,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-07-01,2026-07-01,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-07-01,,,105,TNP,1,2024-07-01,16150,TNP,2,2024-07-01,1850,1,,,,,,3,Z0001947,2024-07-01,2026-07-01,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Marika Bertelli,,7026723870,Marika,Bertelli,F,1987-05-13,SS520351D,34,E5 0TZ,E5 0TZ,"2 Yatesbury Court, Studley Close",07517782427,99,2024-09-09,10,,2024-09-02,10,999999999,,0 checked out of 1,,4,8,,2024-09-16,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-09-16,2026-03-16,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-09-16,,,105,TNP,1,2024-09-16,16150,TNP,2,2024-09-16,1850,1,,,,,,3,Z0001947,2024-09-16,2026-03-16,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-10-27,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +William Man,,9562002011,William,Man,M,1993-02-07,JW838085B,42,E10 6RJ,E10 6RJ,"29, Crawley Road",07447957768,95,2024-09-02,9,,2024-08-26,10,999999999,,0 checked out of 1,,4,5,,2024-09-09,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2024-09-09,2026-03-09,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-09-09,,,105,TNP,1,2024-09-09,16150,TNP,2,2024-09-09,1850,1,,,,,,3,Z0001947,2024-09-09,2026-03-09,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-10-06,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Bandana Singh,,2184831653,Bandana,Singh,F,1995-10-11,TL206065B,43,DA16 3DA,DA16 3DA,8 Wickham Street,,99,2024-02-26,9,240,2024-02-19,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-12,,3,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Igors Makaruks,,5767635365,Igors ,Makaruks,M,1984-04-25,SG252240A,99,NW3 1AU,NW3 1AU,"4 East View, Vale of Health",,99,2024-02-26,9,240,2024-02-19,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-12,,3,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Panagiotis Kazantzis,,4952874272,Panagiotis,Kazantzis,M,1995-08-03,SW942051D,34,SE15 4HN,SE15 4HN,"70A Fenwick Road, London",,9,2024-02-26,9,240,2024-02-19,10,999999999,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-26,2024-08-09,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059748,2024-04-19,2024-04-19,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-19,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mark Christopher Hodierne,,2818735199,Mark Christopher,Hodierne,M,1965-02-14,NE762561A,31,BN2 9TL,BN2 9TL,14 Cobden Road,,99,2024-02-26,10,240,2024-02-19,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-05-29,2024-07-04,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059747,2024-05-29,2024-05-29,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-05-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Maria Slobodina,,6270375591,Maria,Slobodina,F,1997-09-13,SW216940A,34,TW10 6QD,TW10 6QD,Onslow Avenue Mansions,,94,2024-02-26,4,240,2024-02-19,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-26,2024-04-09,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059749,2024-04-09,2024-04-09,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-09,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Karyna Nechyporuk,,2105122298,Karyna,Nechyporuk,F,2002-11-05,TL115636A,34,E3 5JN,E3 5JN,123 St Stephen’s Rd,,99,2024-02-26,9,240,2024-02-19,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-29,2024-07-02,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059747,2024-04-29,2024-04-29,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Paul William Evans,,7085111436,Paul William,Evans,M,1989-05-18,JP304330C,31,EN2 8DH,EN2 8DH,24 Chase Court Gardens,,99,2024-02-26,10,240,2024-02-19,10,999999999,checked,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-26,2024-08-01,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059748,2024-04-10,2024-04-10,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-10,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Omotomiwa Oluwatunmise Oredein,,4039352768,Omotomiwa Oluwatunmise,Oredein,M,1992-08-09,sg817425b,44,RG2 0NZ,RG2 0NZ,106 peregrine House ,,98,2024-02-26,10,240,2024-02-19,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-26,2024-04-16,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059747,2024-03-21,2024-03-21,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-03-21,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Alec Buchanan,,7890400291,Alec,Buchanan,M,1992-08-07,JW277074C,31,SW11 1QD,SW11 1QD,36C Comyn Road,,99,2024-02-26,9,240,2024-02-19,10,999999999,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-26,2024-05-21,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059748,2024-04-17,2024-04-17,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-04-17,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Olof Daniel Hall,,2743262817,Olof Daniel,Hall,M,1988-04-01,SN656988A,34,E15 1DX,E15 1DX,"3 Azure Building, 59 Great Eastern Road",,99,2024-02-26,9,240,2024-02-19,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-26,2024-04-08,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059747,2024-04-08,2024-04-08,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-08,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Harshil Joshi,,6334155465,Harshil,Joshi,M,1997-05-13,PW870059D,39,HA9 9EB,HA9 9EB,"14 Forty Lane, Wembley Park",,99,2024-02-26,9,240,2024-02-19,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-26,2024-04-13,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059747,2024-04-12,2024-04-12,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Oleksandr Diudiun,,5926820897,Oleksandr,Diudiun,M,1987-11-22,TJ148295D,34,SE11 5AT,SE11 5AT,"Flat 70, 7 Gasholder Place",,99,2024-02-26,10,240,2024-02-19,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-04-26,2024-04-09,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059749,2024-04-09,2024-04-09,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-09,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Albert Bezman,,8787077484,Albert,Bezman,M,1992-10-04,SL695864A,34,SE5 8LG,SE5 8LG,30 Grove Park,,99,2024-02-26,9,240,2024-02-19,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-03-04,2024-04-12,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-05-29,2024-07-02,1,,,3,Z0060387,2024-03-04,2024-04-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-04-12,,1,,,3,Z0059747,2024-05-29,2024-05-29,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-05-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Antonis Hadjipittas,,9402683703,Antonis,Hadjipittas,M,1992-09-29,NJ822967D,34,W2 2QN,W2 2QN,"247, Park West, Edgware road",,98,2024-10-07,10,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-02-18,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-11-11,2024-11-11,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-11-11,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mahasen Jayawickrama Gunawardena,,8609854530,Mahasen Jayawickrama,Gunawardena,M,1986-08-09,SE591074C,43,W8 4BG,W8 4BG,73C Kensington Church Street,,98,2024-10-07,6,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-01-20,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-28,2024-10-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Jigisha Pawar,,4325724116,Jigisha,Pawar,F,1988-02-16,SX961686C,39,HA8 6DN,HA8 6DN,30 Roch Avenue,,98,2024-10-07,10,240,2024-09-30,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2024-12-20,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2024-11-21,2024-11-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-11-21,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Farya Hussain,,6799197011,Farya,Hussain,F,1990-10-06,jm520327d,40,N15 5QA,N15 5QA,32 Cissbury Road,,99,2024-10-07,10,240,2024-09-30,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-15,2025-02-06,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2025-01-15,2025-01-15,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-01-15,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Marian-Robert Vava,,8606806993,Marian-Robert,Vava,M,1998-10-13,SZ811884A,34,N15 3SX,N15 3SX,10 Fermain Court North,,98,2024-10-07,10,240,2024-09-30,10,999999999,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-01-07,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-29,2024-10-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Samuel Vincent Rae,,5880018295,Samuel Vincent,Rae,M,1977-09-13,JW877164A,31,NW5 1LR,NW5 1LR,Flat 9 Heathview,,99,2024-10-07,10,240,2024-09-30,10,999999999,checked,0 checked out of 1,,3,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-12-06,2025-01-31,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059748,2024-10-28,2024-10-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-10-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Askar Sulaimanov,,8740250368,Askar,Sulaimanov,M,1995-12-12,SS417875D,43,NW6 5PW,NW6 5PW,45 Blake Court,,99,2024-10-07,9,240,2024-09-30,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-08,2025-03-31,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2025-01-08,2025-01-08,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-01-08,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Barbora Filova,,2414377223,Barbora,Filova,F,1988-12-23,SL455262C,34,SE5 8NN,SE5 8NN,50 Shenley road,,99,2024-10-07,10,240,2024-09-30,10,999999999,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-12-06,2025-01-22,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059748,2024-10-29,2024-10-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2024-10-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +John Robison Hoopes IV,,1577280007,John Robison,Hoopes IV,M,1987-10-23,SX924014C,34,N18 3BA,N18 3BA,30 Gerrard Road,,99,2024-10-07,10,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-01-09,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-30,2024-10-30,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-30,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Paul-Alberto Popescu,,4813888509,Paul-Alberto,Popescu,M,1996-10-02,SZ064142C,34,WC1H 9SE,WC1H 9SE,37 Tavistock Pl,,99,2024-10-07,9,240,2024-09-30,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-22,2025-03-11,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2024-10-28,2024-10-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Maxim Iwanskyj,,5788097931,Maxim,Iwanskyj,M,2002-08-08,PH716266C,34,NG2 7FJ,NG2 7FJ,2 Lansdowne Drive,,94,2024-10-07,9,240,2024-09-30,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-13,2025-02-18,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2025-01-13,2025-01-13,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-01-13,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Omar Eweis,,9036719231,Omar,Eweis,M,2001-08-26,PH158963D,47,TW14 9LZ,TW14 9LZ,41 Burns Avenue,,99,2024-10-07,10,240,2024-09-30,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-10,2025-01-10,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2025-01-10,2025-01-10,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-01-10,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Gurleen Kaur Vasir,,2603209468,Gurleen Kaur,Vasir,F,1998-03-31,PG473200A,39,IG3 9SP,IG3 9SP,20 Alloa Road ,,98,2024-10-07,10,240,2024-09-30,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-08,2025-02-25,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2025-01-08,2025-01-08,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-01-08,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Lydia Joan Farnham,,8917381528,Lydia Joan,Farnham,F,1998-06-22,PC975846C,31,SW4 8QL,SW4 8QL,"6 Cavendish Gardens, Trouville Road",,94,2024-10-07,9,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-01-08,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-30,2024-10-30,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-30,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Kaleb Michael Rogan Sofer,,9476057016,Kaleb Michael Rogan,Sofer,M,1994-11-06,JZ718492A,31,NW1 7SX,NW1 7SX,46 Regents Park Road,,99,2024-10-07,9,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-01-08,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-31,2024-10-31,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-31,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Sam Valentine Ocean Burcher,,8958323662,Sam Valentine Ocean,Burcher,M,1999-02-20,PE458469B,31,N19 5UE,N19 5UE,17 Greatfield Close,,99,2024-10-07,9,240,2024-09-30,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-01-08,2025-03-03,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059747,2025-01-08,2025-01-08,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-01-08,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Moulay-Karim Id-boufker,,6659560520,Moulay-Karim,Id-boufker,M,1983-12-06,SP023118C,98,N5 1UZ,N5 1UZ,30 Battledean Road,,99,2024-10-07,10,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-02-07,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-28,2024-10-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Leare Chimin Song,,8264205584,Leare Chimin,Song,F,1992-12-30,SN333021B,43,KT3 6RF,KT3 6RF,65 Blakes Avenue,,99,2024-10-07,9,240,2024-09-30,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2024-10-14,2024-12-06,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2024-12-06,2025-01-07,1,,,3,Z0060503,2024-10-14,2024-12-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-12-06,,1,,,3,Z0059749,2024-10-28,2024-10-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2024-10-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Theodoros Keloglou,,5191611747,Theodoros,Keloglou,M,1994-06-17,SY435354C,34,N1 5AE,N1 5AE,64 Hertford Road,,94,2023-03-13,6,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,,,EPA0475,ACT,1,2023-03-20,,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,1,,,,,,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-04-09,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Daniel Levy,,9465176213,Daniel,Levy,M,1998-12-22,PE526525B,98,N3 3QU,N3 3QU,44 East End Road,,99,2025-01-20,10,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-04-29,,8,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-04-29,2025-04-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +David Gareth Walters,,9960309400,David Gareth,Walters,M,1974-04-25,JA546910C,31,NW3 2RX,NW3 2RX,10 Heath Hurst Road,,98,2025-01-20,10,240,2025-01-13,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-29,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-03-15,2025-03-15,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-15,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Ermina Malaj,,2801162867,Ermina,Malaj,F,1997-03-10,PE879993B,34,N4 3PQ,N4 3PQ,20 Dellafield,,99,2025-01-20,9,240,2025-01-13,10,,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-10,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-03-18,2025-03-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-18,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Tolga Hasan Dur,,7517945148,Tolga Hasan,Dur,M,1995-01-28,SY794506C,98,NW1 8ER,NW1 8ER,"Flat 2, 10 Ferdinand Street",,94,2025-01-20,10,240,2025-01-13,10,,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-08,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-03-04,2025-03-04,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-04,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Cameron Boroumand,,6417981656,Cameron,Boroumand,M,2000-08-02,SC699905B,31,NE40 3XB,NE40 3XB,9 Curlew Close,,98,2025-01-20,9,240,2025-01-13,11,999999999,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-04-01,2025-04-01,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-04-01,2025-04-01,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-01,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Omoniigbehin-eni Adeyemo,,1969688113,Omoniigbehin-eni,Adeyemo,M,1988-02-29,PX870570C,36,SE4 1AG,SE4 1AG,57 Ehurst Road,,12,2025-01-20,10,240,2025-01-13,10,999999999,checked,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-03-21,2025-03-25,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059748,2025-02-03,2025-02-03,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-02-03,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Nicola Croce,,8021910649,Nicola,Croce,M,1993-05-14,NJ727717B,34,N1 0GJ,N1 0GJ,79 St Williams Court,,99,2025-01-20,10,240,2025-01-13,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-02,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-03-04,2025-03-04,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-04,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Sallar Ali Qazi,,9318695313,Sallar Ali,Qazi,M,1994-12-22,NJ015743D,40,W12 0FD,W12 0FD,"Flat 11, 88 Wood Lane",,98,2025-01-20,10,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-04,2025-07-01,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-05-04,2025-05-04,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-04,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Toluwalope Ojo,,4472251999,Toluwalope ,Ojo,F,2000-02-25,PG193951D,46,HA2 8QJ ,HA2 8QJ ,65 WINDSOR CRESCENT ,,99,2025-01-20,10,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-04-10,2025-07-24,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-04-10,2025-04-10,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-10,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Yulia Goryachev,,6842260573,Yulia,Goryachev,F,1981-07-15,ST719793B,34,N20 0QT,N20 0QT,16 Green Road,,98,2025-01-20,10,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-02,2025-04-02,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-05-02,2025-05-02,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-02,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Andreas Paxinos,,6349814958,Andreas,Paxinos,M,1994-09-01,SP663030C,34,SE1 5EB,SE1 5EB,"5 New Tannery Way, Apartment 11",,99,2025-01-20,10,240,2025-01-13,10,999999999,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-04-17,2025-04-17,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059748,2025-04-17,2025-04-17,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-04-17,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Thomas Harper,,8903972332,Thomas,Harper,M,1996-06-19,PB233792A,38,TW7 6BE,TW7 6BE,57 Church Street,,99,2025-01-20,6,240,2025-01-13,10,999999999,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-09,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-03-03,2025-03-03,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-03,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Nigel David Simon Kiernan,,2695489594,Nigel David Simon,Kiernan,M,1971-02-23,NW751336C,31,ME1 3AG,ME1 3AG,36 Priestfields,,14,2025-01-20,10,240,2025-01-13,10,,,1 checked out of 1,,1,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-04-22,2025-04-22,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-04-22,2025-04-22,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-22,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Harry Moss,,3022498348,Harry,Moss,M,1989-12-16,JS560178C,31,N19 4JN,N19 4JN,94 Alexander Road,,99,2025-01-20,10,240,2025-01-13,10,999999999,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-03-21,2025-04-23,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059748,2025-01-28,2025-01-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-01-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Oliver Joseph Maclean Ross,,6050639530,Oliver Joseph Maclean,Ross,M,2002-03-19,PH515793B,31,E2 7RU,E2 7RU,1 Shipton Street,,99,2025-01-20,10,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-08,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-03-06,2025-03-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-06,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Amirhossein Jabarivasal,,1394079566,Amirhossein,Jabarivasal,M,1994-12-05,SL532012A,43,NW9 4DF,NW9 4DF,"Flat 62, Umber House, 3 Lismore Boulevard",,99,2025-01-20,9,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-04-14,2025-04-14,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-04-03,2025-04-03,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-03,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Gianfranco Ameri,,9306105176,Gianfranco,Ameri,M,2002-08-09,SC799378C,31,SW3 4EP,SW3 4EP,41 Smith Street,,99,2025-01-20,10,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-04-02,2025-04-30,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-04-02,2025-04-02,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-02,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Oliver Federico,,1163999201,Oliver,Federico,M,2001-03-01,PG797065B,31,EC2A 3EN,EC2A 3EN,"Flat1, 1 Three Cups Alley, Fairchild Place",,12,2025-01-20,9,240,2025-01-13,10,,,1 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-03-21,2025-04-08,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059749,2025-03-06,2025-03-06,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-06,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Kate O'Brien,,8257599599,Kate,O'Brien,F,1992-03-07,SX015163D,32,N15 3TB,N15 3TB,21 Ritches rd,,12,2023-03-13,10,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,322,,EPA0475,ACT,1,2023-03-20,2024-10-01,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,6,2024-10-01,,3,,,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,6,2024-10-01,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Philippa Bywater,,6548628720,Philippa,Bywater,F,1992-06-17,JW 89 21 51 D,31,E10 6RN,E10 6RN,"23 Brennan House, 608 High Road Leyton, e10 6RN ",,94,2023-03-13,9,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,625,,EPA0475,ACT,1,2023-03-20,2025-10-16,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,2,2025-04-30,2025-10-16,1,,DE,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-04-30,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Harriet Owen,,2553336488,Harriet,Owen,F,1989-02-28,JJ124648A,31,SE15 1PX,SE15 1PX,88 Friary Road,,94,2023-03-13,10,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,,,EPA0475,ACT,1,2023-03-20,,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,1,,,,,,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-07-31,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Jacob Mitchell,,3018854224,Jacob,Mitchell,M,1996-07-30,PB 63 61 19 D,31,N19 3AY,N19 3AY,212A Camberwell New Road,,94,2023-03-13,10,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,638,,EPA0475,ACT,1,2023-03-20,2025-09-08,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,2,2025-06-30,2025-09-08,1,,DE,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-06-30,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Pastor Ignacio Jurado Traverso,,9418517913,Pastor Ignacio,Jurado Traverso,M,1973-08-01,SC796579D,34,BR6 0PX,BR6 0PX,57 Weststand Apartments ,,99,2023-03-13,97,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,,,EPA0475,ACT,1,2023-03-20,,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,1,,,,,,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-10-03,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Eade Moon Hemingway,,1003331709,Eade Moon,Hemingway,F,1992-08-06,JW713465B,31,N1 5FB,N1 5FB,Unit 4b Canalside studios,,94,2023-03-13,10,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,451,,EPA0475,ACT,1,2023-03-20,2024-06-18,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,6,2024-06-18,,3,,,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,6,2024-06-18,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Ali Versi,,6081018724,Ali,Versi,M,1990-05-01,JR 40 27 92 A,39,SW3 3BQ,SW3 3BQ,Flat 817 Nell Gwynn House,,95,2023-03-13,10,,2023-03-06,11,,,0 checked out of 1,,,,1,2023-03-20,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-03-20,2024-09-19,36,25,561,N4 3HH,420,,,EPA0475,ACT,1,2023-03-20,,,105,TNP,1,2023-03-20,14800,TNP,2,2023-03-20,2200,1,,,,,,3,Z0009088,2023-03-20,2024-09-19,36,25,561,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2025-07-29,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Adam samuel Gilbert,,9045178183,Adam samuel,Gilbert,M,1989-12-19,JP200156A,98,NW1 7BS,NW1 7BS,"Flat 412, Carlow House",,99,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-07-17,,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,1,,,,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-30,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Amber Rignell,,4720622398,Amber ,Rignell,F,1998-05-24,PX477294C,31,N1 5RL,N1 5RL,11 Mill Row,,94,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-07-17,,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,1,,,,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-29,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Aibek Sarimbekov,,8212934666,Aibek,Sarimbekov,M,1987-04-18,SX051127D,43,NW8 6JU,NW8 6JU,3 Wilkie house,,94,2023-07-10,10,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,310,,EPA0475,ACT,1,2023-07-17,2024-06-03,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,6,2024-06-03,,3,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,6,2024-06-03,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Owen Arthur Turner-Major,,4254215052,Owen Arthur,Turner-Major,M,1992-09-05,JN707571D,31,N6 6JJ,N6 6JJ,"16 West Hill Court, Millfield Lane",,94,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,415,,EPA0475,ACT,1,2023-07-17,2024-10-01,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,6,2024-10-01,,3,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,6,2024-10-01,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Musa Lala,,1569629578,Musa,Lala,M,2001-06-10,PH128596A,43,IG8 8EJ,IG8 8EJ,"1 Sands Way, Woodford, Woodford Green",,94,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-07-17,,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,1,,,,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-28,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Jon Ander Besga Aristizabal,,8575725164,Jon Ander,Besga Aristizabal,M,1992-02-14,SZ210151D,34,N1 7QQ,N1 7QQ,"Flat 28, Thaxted Court, 2 Murray Grove",,94,2023-07-10,6,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-07-17,,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,1,,,,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Anvar Abdullaev,,3664575708,Anvar,Abdullaev,M,1977-03-06,SL988225B,43,DA5 3LL,DA5 3LL,164 Murchison Avenue,,94,2023-07-10,10,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,598,,EPA0475,ACT,1,2023-07-17,2025-10-08,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,2,2025-07-29,2025-10-08,1,,DE,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-29,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Matthew Megarry,,8589841943,Matthew,Megarry,M,1985-04-09,JR 57 47 24 A,31,N15 4NL,N15 4NL,"Flat 2, 6 Wakefield Road, London, UK",,96,2023-07-10,10,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,961,,EPA0475,ACT,1,2023-07-17,2025-10-29,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,2,2025-07-29,2025-10-29,1,,DE,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-29,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Matthew Barry Hall,,1002015471,Matthew Barry,Hall,M,1990-05-04,JS345776A,31,HU12 8NH,HU12 8NH,"5 Chestnut Avenue, Hedon, Hull",,94,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-07-17,,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,1,,,,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-30,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Lok Ting Serena Chan,,8428255317,Lok Ting Serena,Chan,F,1997-10-22,ST990663D,42,NW9 7DS,NW9 7DS,"Flat 45 Greenshank House, 19 Moorhen Drive",,94,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,610,,EPA0475,ACT,1,2023-07-17,2025-05-27,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,2,2025-03-04,2025-05-27,1,,PA,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-03-04,,1,,PA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Efstathios Kapnidis,,5100802455,Efstathios,Kapnidis,M,1999-06-10,SY166459D,99,N1 6QD,N1 6QD,Flat 3 Arden House Arden Estate Hackney,,98,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,990,,EPA0475,ACT,1,2023-07-17,2025-07-29,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,2,2025-04-23,2025-07-29,1,,DE,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-04-23,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Ibrahim Kaan Keskin,,6672364276,Ibrahim Kaan,Keskin,M,1991-11-05,SX253433B,38,E16 1US,E16 1US,Apartment 1304,,99,2023-07-10,9,,2023-07-03,11,,,0 checked out of 1,,,,1,2023-07-17,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-07-17,2025-01-17,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-07-17,,,105,TNP,1,2023-07-17,14800,TNP,2,2023-07-17,2200,1,,,,,,3,Z0009088,2023-07-17,2025-01-17,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-10-06,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Aiaz Mamedov,,7380344683,Aiaz,Mamedov,M,1999-06-22,TL134666C,98,SW1P 4LA,SW1P 4LA,"Flat 101, Marsham Court",,98,2023-10-16,10,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,519,,EPA0475,ACT,1,2023-10-23,2025-07-11,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,2,2025-03-04,2025-07-11,1,,ME,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-03-04,,1,,ME,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Bachar Richard Kabalan,,2841623563,Bachar Richard,Kabalan,M,1989-08-16,SY421269B,47,E17 8AR,E17 8AR,90 clacton road,,99,2023-10-16,10,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-10-23,,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,1,,,,,,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +William Patrick Parker,,6352721418,William Patrick,Parker,M,1973-04-09,NZ426370D,31,ML6 7SA,ML6 7SA,16 Bridge Street,,94,2023-10-16,9,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,552,,EPA0475,ACT,1,2023-10-23,2025-10-29,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,2,2025-07-30,2025-10-29,1,,PA,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-30,,1,,PA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Matthew Gregory ,,4558044487,Matthew,Gregory ,M,1989-04-14,JG 46 28 60 A,31,N1 8QD,N1 8QD,1a Price House,,94,2023-10-16,10,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-10-23,,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,1,,,,,,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-09-30,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Navjot Sharma,,7798405819,Navjot,Sharma,F,1991-08-26,SY 56 64 91 D,39,SE7 7GG,SE7 7GG,4 Bowen Drive,,99,2023-10-16,9,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-10-23,2025-08-15,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,6,2025-08-15,,3,,,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,6,2025-08-15,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Birsen Yildiz,,4386689248,Birsen,Yildiz,F,1983-02-21,SK 89 28 61 B,34,SM1 2PS,SM1 2PS,55 Stayton Road,,99,2023-10-16,10,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,668,,EPA0475,ACT,1,2023-10-23,2025-10-16,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,2,2025-07-22,2025-10-16,1,,DE,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,2,2025-07-22,,1,,DE,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Halimat Afolabi,,2751620786,Halimat ,Afolabi,F,1994-03-26,jz938661B,44,SW2 3TS,SW2 3TS,102 Downton Avenue,,98,2023-10-16,10,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-10-23,,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,1,,,,,,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Shaheen Ahmed-Chowdhury,,7531093137,Shaheen,Ahmed-Chowdhury,M,1994-12-11,PA696495B,41,E15 1BQ,E15 1BQ,82 Gerry Raffles Square,,99,2023-10-16,10,,2023-10-09,11,,,0 checked out of 1,,,,1,2023-10-23,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-10-23,2025-04-23,36,25,561,SW8 2LY,420,,,EPA0475,ACT,1,2023-10-23,,,105,TNP,1,2023-10-23,14800,TNP,2,2023-10-23,2200,1,,,,,,3,Z0009088,2023-10-23,2025-04-23,36,25,561,SW8 2LY,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Jason Ross Warren,,5484836491,Jason Ross,Warren,M,1985-05-23,JW661714C,31,E17 8QJ,E17 8QJ,"36 Devonshire Road, London, E17 8QJ",07725913649,94,2024-09-02,10,,2024-08-26,10,999999999,,0 checked out of 1,,4,6,,2024-09-09,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2024-09-09,2026-06-09,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2024-09-09,,,105,TNP,1,2024-09-09,16150,TNP,2,2024-09-09,1850,1,,,,,,3,Z0001947,2024-09-09,2026-06-09,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Daniel Beattie,,1422984388,Daniel,Beattie,M,1971-05-13,NW789341B,31,SE23 3YL,SE23 3YL,15 Derby Hill Crescent,,99,2025-01-20,9,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,,2025-04-04,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,,,,,37,32,,,,,SBD-1232-674,,,,,,,105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Cameron Nimmo,,3344513922,Cameron,Nimmo,M,1999-03-16,PE510553B,31,N17 6AN,N17 6AN,19 Downhills Way,,99,2025-01-20,6,240,2025-01-13,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-01-27,2025-03-21,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-27,2025-05-27,1,,,3,Z0060503,2025-01-27,2025-03-21,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-03-21,,1,,,3,Z0059747,2025-05-13,2025-05-13,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-13,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Jack Casstles-Jones,,3346566810,Jack,Casstles-Jones,M,1997-06-19,PC 28 48 15 D,31,EN2 9AN,EN2 9AN,134 Clay Hill,07493021267,98,2024-12-30,9,,2024-12-23,10,999999999,,0 checked out of 1,,2,8,,2025-01-06,10,999999999,8,,,1 checked out of 1,3,1,ZPROG001,2025-01-06,2027-01-06,36,25,2,N4 3HH,600,,,EPA0475,ACT,1,2025-01-06,,,105,TNP,1,2025-01-06,16150,TNP,2,2025-01-06,1850,1,,,,,,3,Z0001947,2025-01-06,2027-01-06,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Maxime Lesley Downe,,1839356927,Maxime Lesley,Downe,M,1992-06-28,PA 849205 B,34,SW9 6HX,SW9 6HX,50A Vassall Road,07429445107,99,2024-12-30,10,,2024-12-23,10,999999999,,1 checked out of 1,,4,8,,2025-01-06,10,999999999,8,,,1 checked out of 1,3,1,ZPROG001,2025-01-06,2027-01-06,36,25,2,N4 3HH,600,,,EPA0475,ACT,1,2025-01-06,,,105,TNP,1,2025-01-06,16150,TNP,2,2025-01-06,1850,1,,,,,,3,Z0001947,2025-01-06,2027-01-06,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Evelyn Tan,,8678386834,Evelyn,Tan,F,1994-06-07,ST371059D,42,N1 5TF,N1 5TF,56 De Beauvoir Crescent,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-05-26,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-12,2025-05-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-12,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Andrea Della Corte,,9982196838,Andrea,Della Corte,M,1985-11-28,ST670753B,34,SE1 6FN,SE1 6FN,251 Southwark Bridge Road,,95,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-05,2025-06-07,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-06-05,2025-06-05,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-05,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Oliver Cumming,,8015817624,Oliver,Cumming,M,2002-02-24,SC301423D,31,SW4 6JB,SW4 6JB,15 Larkhall Rise,,12,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-29,2025-06-16,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-29,2025-05-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Neville Bryce,,3474125698,Neville,Bryce,M,1981-11-12,JL548962C,31,NW11 7BY,NW11 7BY,Flat 25 Corringham Court,,99,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,,8,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-13,2025-05-13,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-13,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Pyry Takala,,1086035436,Pyry,Takala,M,1986-10-02,ST254430C,34,NW8 7EW,NW8 7EW,Dufourstrasse 136,,99,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,2,8,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-16,2025-08-01,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-06-16,2025-06-16,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-16,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Artemis Ione Webster,,5138411534,Artemis Ione,Webster,F,2000-07-04,PG484601B,31,EC1Y 8JR,EC1Y 8JR,1 Roscoe Street,,94,2025-04-07,9,240,2025-03-31,10,,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-07-10,2025-08-28,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059748,2025-07-10,2025-07-10,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-07-10,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Kori George Rogers,,9917272770,Kori George,Rogers,M,1997-05-03,TH844278C,37,BA1 5TG,BA1 5TG,8 Lansdown Park,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-16,2025-07-23,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-06-16,2025-06-16,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-16,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Gaurav Gandhi,,1084566817,Gaurav,Gandhi,M,1980-07-12,SX706794C,39,TW7 4QW,TW7 4QW,7 Cranmore Avenue Isleworth,,98,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,4,6,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-08-05,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-04-28,2025-04-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Joshua Oyekunle,,2515780104,Joshua,Oyekunle,M,2003-03-23,PJ336579D,44,NW11 7SH,NW11 7SH,10 Park Drive,,94,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-09,2025-10-16,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-07-09,2025-07-09,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-09,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Aygun Zarbaliyeva,,3946096912,Aygun,Zarbaliyeva,F,1987-07-31,SW506107D,34,EN4 8TA,EN4 8TA,54B Church Hill Road,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-29,2025-08-18,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-29,2025-05-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Daniel Bryars,,3166744818,Daniel,Bryars,M,1976-01-27,JE029850C,31,OX7 3NB,OX7 3NB,"Apple Brook House, Horse Shoe Lane",,99,2025-04-07,9,240,2025-03-31,10,,,1 checked out of 1,,4,7,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-30,2025-10-01,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-05-30,2025-05-30,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-30,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Dimitar Seraffimov,,3590751133,Dimitar,Seraffimov,M,2002-01-26,SW956183D,34,WC1B 3BA,WC1B 3BA,57 Great Russel St,,99,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-12,2025-06-14,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-06-12,2025-06-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-12,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Loredana-Otilia Gaspar,,9427314442,Loredana-Otilia ,Gaspar,F,1991-03-23,ST125677B,34,E16 2ER,E16 2ER,Wards Wharf Approach,,99,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,1,,,,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,,,,,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,,105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Kin Ting Kenton Kwok,,3984196600,Kin Ting Kenton,Kwok,M,2001-04-28,SX991543D,42,OX4 1XH,OX4 1XH,25 Ablett Close,,99,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,1,7,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-06-28,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-05-01,2025-05-01,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-01,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Maximillian Gorynski,,5439460593,Maximillian,Gorynski,M,1994-06-02,JZ287827D,34,E14 9DU,E14 9DU,"Flat 2104, Bagshaw Building, 1 Ward's Place",,99,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,3,8,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,,8,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-04-23,2025-04-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-23,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Coline Ritz,,9605342463,Coline,Ritz,F,2000-06-08,SY710642C,34,SW15 1LP,SW15 1LP,"44, Festing Road",,99,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,3,6,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-28,2025-09-08,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-05-28,2025-05-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Liam Flavin,,1940571218,Liam,Flavin,M,1996-12-23,PB753935D,98,SE22 8UL,SE22 8UL,56 woodwarde road,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-04,2025-09-06,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-06-04,2025-06-04,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-04,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Dimitrios Gaitanelis,,7956294222,Dimitrios,Gaitanelis,M,1991-02-16,SY619684A,34,N17 9PL,N17 9PL,92 Armadale Close,,98,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,4,7,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-08-15,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-04-28,2025-04-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Ardrit Ramadani,,9175496444,Ardrit,Ramadani,M,2000-03-04,SE367231D,99,EC1N 7SP,EC1N 7SP,Flat 10 scrope building,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-09,,8,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-06-09,2025-06-09,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-09,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Nnamdi Odozi,,5998002570,Nnamdi,Odozi,M,1978-03-27,PW962191D,44,HA8 8QW,HA8 8QW,242,,99,2025-04-07,10,240,2025-03-31,10,,,1 checked out of 1,,4,7,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-08-02,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-04-23,2025-04-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-04-23,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Emil Engdahl,,4895112925,Emil,Engdahl,M,2002-01-27,TK825404A,34,W6 8RA,W6 8RA,104 St Dunstans Road,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-30,2025-06-09,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-30,2025-05-30,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-30,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Yurii Oksamytnyi,,1869360817,Yurii,Oksamytnyi,M,1996-08-15,NJ930085B,34,SE19 3ST,SE19 3ST,16B Rockmount Road,,99,2025-04-07,9,240,2025-03-31,10,,,1 checked out of 1,,4,6,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-08-01,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059749,2025-05-07,2025-05-07,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-07,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Guillaume Boniface,,3639246216,Guillaume,Boniface,M,1987-01-01,KC021176A,34,N4 2BN,N4 2BN,"Flat 47, Kimpton Court",,99,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-06-03,2025-08-27,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-06-03,2025-06-03,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-03,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Amy Freear,,7934238028,Amy,Freear,F,1998-03-07,PC811441B,31,N19 3AG,N19 3AG,21B Ashley Rd,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-06-09,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-12,2025-05-12,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-12,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Filippo Romeo,,5680467347,Filippo,Romeo,M,1995-08-08,NJ918327D,34,E1W 3DH,E1W 3DH,264 The Highway,,99,2025-04-07,9,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-04,2025-09-05,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-07-04,2025-07-04,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-04,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Milo Rignell,,8938361038,Milo,Rignell,M,1996-10-21,PX059549B,31,W1G 8PD,W1G 8PD,19 Wimpole Mews,,99,2025-04-07,9,240,2025-03-31,10,,checked,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-05-23,2025-08-28,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059748,2025-04-15,2025-04-15,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,2,105,,,,,,,,,2,2025-04-15,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +James Love,,1360520928,James ,Love,M,1997-08-16,PC244857B,31,SW19 5BD,SW19 5BD,20 Marryat rd,,12,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,3,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-05-23,2025-06-16,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-05-19,2025-05-19,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-19,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +David Tian,,6800531544,David,Tian,M,1980-01-04,SG316422C,42,S10 5FE,S10 5FE,45 Evelyn Road,,99,2025-04-07,10,240,2025-03-31,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-04-14,2025-05-23,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-09,2025-10-24,1,,,3,Z0060503,2025-04-14,2025-05-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-05-23,,1,,,3,Z0059747,2025-07-09,2025-07-09,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-09,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Jasmine Edna Maslen,,5974616617,Jasmine Edna,Maslen,F,2002-10-20,PH862863D,31,LE3 0DG,LE3 0DG,91 Wilberforce Road,07342210105,99,2025-04-30,6,,2025-04-23,10,999999999,,0 checked out of 1,,1,5,,2025-05-07,10,999999999,8,,,1 checked out of 1,3,1,ZPROG001,2025-05-07,2027-05-06,36,25,2,N4 3HH,525,,,EPA0475,ACT,1,2025-05-07,,,105,TNP,1,2025-05-07,16150,TNP,2,2025-05-07,1850,1,,,,,,3,Z0001947,2025-05-07,2027-05-06,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Anton Dergunov,,6937430085,Anton,Dergunov,M,1984-03-31,SZ410920A,34,W3 8BJ,W3 8BJ,"20 Howell Court, Enfield Road",,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-18,2025-08-04,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-03,2025-07-03,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-03,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Helen Zhou,,6040749996,Helen,Zhou,F,1991-01-10,PA056085B,42,E1 3BT,E1 3BT,"Flat 14, 6 Trinity Mews, London",,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,3,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,2025-09-26,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Yali Pan,,4663077942,Yali,Pan,F,1992-08-03,SY399765B,42,B30 1PY,B30 1PY,23 Old Barn Road,,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,2025-10-06,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Adam Beedell,,9415346018,Adam,Beedell,M,1992-03-23,JN163565B,31,MK14 5PR,MK14 5PR,193 Hainault Avenue,,99,2025-06-02,6,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-08-04,2025-08-12,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-08-04,2025-08-04,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-08-04,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Andrei Zhirnov,,7415763326,Andrei,Zhirnov,M,1985-12-29,SX621622C,34,EX1 2EQ,EX1 2EQ,38 Portland street,,99,2025-06-02,10,240,2025-05-26,10,,,0 checked out of 1,,4,7,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Tak Leung Ben Liong,,2205319247,Tak Leung Ben,Liong,M,1978-02-13,SW960437B,42,TW10 7JT,TW10 7JT,32 Craig Road,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-08-15,2025-08-25,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-08-15,2025-08-15,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-08-15,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Ethan Edwards,,5198781168,Ethan,Edwards,M,1998-12-09,PE314192A,31,WR11 7PQ,WR11 7PQ,15 High Street,,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Hikaru Tsujimura,,4827588200,Hikaru,Tsujimura,M,1987-05-06,SN066939D,43,NW1 9NN,NW1 9NN,180 Royal College Street,,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,4,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-18,2025-07-07,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-06-25,2025-06-25,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-25,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +James Carter,,7236380988,James,Carter,M,1987-07-12,JH105351D,31, GL53 0AD, GL53 0AD,229 old bath road,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,3,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-23,2025-08-19,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-23,2025-07-23,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-23,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +David Edey,,1749317620,David,Edey,M,1993-08-06,JX404350C,31,E16 2GW,E16 2GW,"Flat 85, Boyd Building, 3 Hudson Way, Gallions Reach, London",,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,2025-09-24,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Andrew Phillipo,,4714678948,Andrew,Phillipo,M,1982-07-26,JJ946905B,31,E3 5PQ,E3 5PQ,"Flat 29 Dethick Court, Bow, London",,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Dong Cai,,7362065778,Dong,Cai,M,1969-09-04,SK311549B,42,TW9 1UY,TW9 1UY,50 ST MARYS GROVE,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Rasched Haidari,,3464555827,Rasched,Haidari,M,1997-11-14,SK952224A,43,SW9 9AB,SW9 9AB,"Flat 16 Blair House, Stockwell Gardens Estate",,98,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-08-15,2025-08-25,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-08-15,2025-08-15,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-08-15,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Daniel Goss,,3046987500,Daniel,Goss,M,1993-09-14,JX587400A,31,N5 1AU,N5 1AU,"150B Highbury Hill, London",,98,2025-06-02,9,240,2025-05-26,10,,,1 checked out of 1,,,8,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Ewan Beattie,,7190242618,Ewan,Beattie,M,1995-09-23,PW855476A,31,N16 0SH,N16 0SH,25 Sandbrook road,,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Qingyue Shi,,9028398634,Qingyue,Shi,F,1998-02-23,NJ149574C,42,SE1 6EH,SE1 6EH,8 Walworth Road Apt 2304,,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Roshan Beedassee,,6756417362,Roshan,Beedassee,M,1993-01-30,JW770674C,99,SW17 8TP,SW17 8TP,4 Eswyn Road,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,3,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Maria Sharif,,6644315363,Maria,Sharif,F,1999-04-04,sg594525b,46,ec1v 3su,ec1v 3su,"Flat 52, Gastigny House",,94,2025-06-02,10,240,2025-05-26,10,,,1 checked out of 1,,,7,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Arjuna James,,9963343448,Arjuna,James,M,1992-08-07,JW114679D,35,SE20 8DN,SE20 8DN,9 Orchard Grove,,99,2025-06-02,10,240,2025-05-26,10,,,1 checked out of 1,,,8,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Jacob Jenner,,8846584154,Jacob,Jenner,M,2000-01-17,SE423104A,31,W14 0RX,W14 0RX,"Flat 62, North End House, Fitzjames Avenue",,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Benjamin Williams,,1323288510,Benjamin,Williams,M,1995-11-14,PA573060A,31,SW11 3QY,SW11 3QY,"Flat 11, 347 York Road",,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-18,2025-08-11,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-06-11,2025-06-11,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-11,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Kadriye Turkcan,,3774260809,Kadriye,Turkcan,F,1984-06-26,SX246874C,34,E16 1DE,E16 1DE,23 Seagull Lane,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Hongyang Yan,,7046269733,Hongyang ,Yan,M,2004-01-08,SN380388A,42,N19 4HL,N19 4HL,30 Mitford Road,,94,2025-06-02,6,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-18,2025-08-10,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-06-30,2025-06-30,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-30,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Miguel Parracho,,1622761218,Miguel,Parracho,M,1993-06-11,SW226000A,34,E15 2JS,E15 2JS,Flat 32 Azura Court 48 Warton Road,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Prima Gouse,,5738286498,Prima,Gouse,F,2003-12-02,SH297795D,41,SL2 1TJ,SL2 1TJ,10 Aldridge Road,,99,2025-06-02,6,240,2025-05-26,10,,,1 checked out of 1,,,6,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-08-28,2025-08-28,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-08-28,2025-08-28,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-08-28,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Umut Sagir,,7713883281,Umut,Sagir,M,1985-08-12,NJ100217B,34,SW2 3JB,SW2 3JB,6 Kingsmead Rd,,99,2025-06-02,10,240,2025-05-26,10,,,1 checked out of 1,,,7,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-18,2025-08-29,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-06-17,2025-06-17,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-17,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Lawrence O'Keeffe,,1103502734,Lawrence,O'Keeffe,M,1984-10-24,JL433389B,99,SE16 5EL,SE16 5EL,flat 6,,4,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Joao Pedro Abrantes Esteves,,7975445834,Joao Pedro,Abrantes Esteves,M,1999-08-25,SX852620A,34,NW1 7HU,NW1 7HU,36 Arlington Rd,,99,2025-06-02,10,240,2025-05-26,10,,,0 checked out of 1,,4,8,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-08-15,2025-08-21,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-08-15,2025-08-15,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-08-15,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Tyrone Nicholas,,5916734440,Tyrone,Nicholas,M,1974-05-24,SL879331D,43,CR0 7DJ,CR0 7DJ,31 Fernhurst Road,,15,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Ben Bethell,,8067037107,Ben,Bethell,M,1988-11-25,JT148133B,31,N17 7AD,N17 7AD,10 All Hallows ,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Chi Hay Clement Ha,,4442332303,Chi Hay Clement,Ha,M,1967-08-27,NJ157048A,42,KT4 7BF,KT4 7BF,17 Gunpowder Road,,99,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Marcin Tolysz,,7169147393,Marcin,Tolysz,M,1978-10-29,SG660291D,31,LU1 1XW,LU1 1XW,18 Startpoint,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Tao Zamorano,,9332032962,Tao,Zamorano,M,1989-02-21,SW456490C,38,CR0 1GL,CR0 1GL,Flat 109 Kindred House 25 Scarbrook Road 25 Scarbrook Road,,94,2025-06-02,8,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Melanie Wing Yin Wong,,4116303509,Melanie Wing Yin,Wong,F,1996-11-29,PC077721B,42,BH7 7JX,BH7 7JX,3 Vine Close,,99,2025-06-02,9,240,2025-05-26,11,,,0 checked out of 1,,,,2,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Tomas Krajcoviech,,4231623782,Tomas,Krajcoviech,M,1999-09-26,RZ685453B,99,SE1 1EZ,SE1 1EZ,Redcross way,,98,2025-06-02,10,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-31,,8,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-07-31,2025-07-31,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-31,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Aparna Jayachandran Pillai,,6872178824,Aparna Jayachandran ,Pillai,F,2000-02-07,PP070200A,39,E2 0RB,E2 0RB,"Flat 21, Offenbach House, E2 0RB",,94,2025-06-02,10,240,2025-05-26,10,,,1 checked out of 1,,,7,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,2025-09-08,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Felipe Lavratti,,4950389903,Felipe,Lavratti,M,1985-12-09,SW118330C,34,NW5 2XE,NW5 2XE,38D Montpelier Grove,,99,2025-06-02,10,240,2025-05-26,10,,,1 checked out of 1,,,8,,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-29,2025-09-01,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059749,2025-07-29,2025-07-29,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-29,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Christine Lush,,4843374732,Christine,Lush,F,1999-03-14,PE 64 31 46 C,34,SG12 9JP,SG12 9JP,"6 Fairway, Ware, Hertfordshire",07902460144,14,2025-04-30,9,,2025-04-23,11,,,0 checked out of 1,,,,2,2025-05-07,10,999999999,8,,,0 checked out of 1,3,1,ZPROG001,2025-05-07,2027-05-06,36,25,2,N4 3HH,525,,,EPA0475,ACT,1,2025-05-07,,,105,TNP,1,2025-05-07,16150,TNP,2,2025-05-07,1850,1,,,,,,3,Z0001947,2025-05-07,2027-05-06,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Stanley Nderu Mwangi,,2619816423,Stanley Nderu,Mwangi,M,1993-11-27,SL791381B,46,CR0 6XP,CR0 6XP,3 Redgrave Close,,99,2025-06-02,6,240,2025-05-26,11,,,0 checked out of 1,,,,1,,,,,,,,,1,ZPROG001,2025-06-09,2025-07-18,37,32,,EC1V 8BR,240,,SBD-1232-674,,,,,,1 ,105,,,,,,,,,2,2025-07-18,2025-08-01,1,,,3,Z0060503,2025-06-09,2025-07-18,37,32,,EC1V 8BR,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-07-18,,1,,,3,Z0059747,2025-06-11,2025-06-11,37,32,,SW8 2LY,,,SBD-1232-674,,,,,,1,105,,,,,,,,,2,2025-06-11,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Edgaras Aleliunas,,1503460508,Edgaras,Aleliunas,M,1992-10-02,SP353748A,34,NW2 5NB,NW2 5NB,174 Chapter road,,99,2025-09-01,97,,2025-08-25,10,999999999,,0 checked out of 1,,4,7,,2025-09-08,10,999999999,8,,,0 checked out of 1,1,1,ZPROG001,2025-09-08,2027-06-08,36,25,2,N4 3HH,450,,,EPA0475,ACT,1,2025-09-08,,,105,TNP,1,2025-09-08,15025,TNP,2,2025-09-08,1850,1,,,,,,3,Z0001947,2025-09-08,2027-06-08,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Natalia Rusu,,5541815176,Natalia,Rusu,F,1982-06-20,SZ265499D,34,RM14 1NH,RM14 1NH,44 Brunswick Avenue,,94,2023-01-05,98,,2022-12-29,11,,,0 checked out of 1,,,,1,2023-01-12,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-01-12,2024-07-11,36,25,2,N4 3HH,510,510,,EPA0001,ACT,1,2023-01-12,2025-01-27,,105,TNP,1,2023-01-12,16150,TNP,2,2023-01-12,1850,2,2024-09-17,2025-01-27,1,,PA,3,Z0001947,2023-01-12,2024-07-11,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2024-09-17,,1,,PA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Suraj Pun,,8220990928,Suraj,Pun,M,1994-10-04,SE689571D,43,HA0 2HF,HA0 2HF,4 Fernwood Avenue,,94,2023-01-05,4,,2022-12-29,11,,,0 checked out of 1,,,,1,2023-01-12,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-01-12,2024-03-11,36,25,2,N4 3HH,560,560,,EPA0001,ACT,1,2023-01-12,2024-08-01,,105,TNP,1,2023-01-12,9400,TNP,2,2023-01-12,1850,2,2024-04-27,2024-08-01,1,,ME,3,Z0001947,2023-01-12,2024-03-11,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2024-04-27,,1,,ME,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Georgia Elizabeth Whitney,,8771628079,Georgia Elizabeth,Whitney,F,1992-02-29,JJ679109B,31,SE21 8LA,SE21 8LA,219 Peabody Hill,,95,2023-01-05,9,,2022-12-29,11,,,0 checked out of 1,,,,1,2023-01-12,10,999999999,8,,,0 checked out of 1,4,1,ZPROG001,2023-01-12,2024-07-11,36,25,2,N4 3HH,510,510,,EPA0001,ACT,1,2023-01-12,2025-02-06,,105,TNP,1,2023-01-12,16150,TNP,2,2023-01-12,1850,2,2024-10-28,2025-02-06,1,,ME,3,Z0001947,2023-01-12,2024-07-11,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,2,2024-10-28,,1,,ME,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Dylan Harley Cobb,,8517581929,Dylan Harley,Cobb,M,1992-10-12,JW 342664 A,31,SE25 5BA,SE25 5BA,35 Birchanger Road,,94,2023-09-07,7,,2023-08-31,11,,,0 checked out of 1,,,,1,2023-09-14,10,999999999,8,,,1 checked out of 1,4,1,ZPROG001,2023-09-14,2025-03-14,36,25,2,N4 3HH,504,,,EPA0475,ACT,1,2023-09-14,2024-07-03,,105,TNP,1,2023-09-14,16150,TNP,2,2023-09-14,1850,3,2024-07-03,,3,29,,3,Z0001947,2023-09-14,2025-03-14,36,25,2,N4 3HH,,,,,,,,,,105,,,,,,,,,3,2024-07-03,,3,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, \ No newline at end of file diff --git a/docs/inputs/25_26 Export Columns Values.csv b/docs/inputs/25_26 Export Columns Values.csv new file mode 100644 index 0000000..2812eb1 --- /dev/null +++ b/docs/inputs/25_26 Export Columns Values.csv @@ -0,0 +1,220 @@ +Alexander Perez-Davies,, +5796080759, +Alexander , +Perez-Davies, +M, +1993-04-05, +JX055947D, +38, +N16 7UJ, +N16 7UJ, +Flat 24 Morris Blitz Court, +07525334311, +99, +2024-05-13, +6, +, +2024-05-06, +10, +999999999, +, +0 checked out of 1, +, +2, +8, +, +2024-05-20, +10, +999999999, +8, +, +, +0 checked out of 1, +4, +1, +ZPROG001, +2024-05-20, +2026-05-20, +36, +25, +2, +N4 3HH, +504, +505, +, +EPA0475, +ACT, +1, +2024-05-20, +2025-08-20, +, +105, +TNP, +1, +2024-05-20, +16150, +TNP, +2, +2024-05-20, +1850, +2, +2025-06-04, +2025-08-20, +1, +, +DE, +3, +Z0001947, +2024-05-20, +2026-05-20, +36, +25, +2, +N4 3HH, +, +, +, +, +, +, +, +, +, +105, +, +, +, +, +, +, +, +, +2, +2025-06-04, +, +1, +, +DE, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, diff --git a/docs/inputs/25_26 Export Columns.csv b/docs/inputs/25_26 Export Columns.csv new file mode 100644 index 0000000..eea1b01 --- /dev/null +++ b/docs/inputs/25_26 Export Columns.csv @@ -0,0 +1,221 @@ +Record - Airtable ID, Previous UKPRN, +ULN, +Given name, +Family name, +Sex , +Date of birth, +NI number, +Ethnic group, +Prior post code, +Post code, +Street address , +Telephone number, +Primary additional needs, +Prior attainment date applies to, +Prior attainment, +Learning hours (skills bootcamp), +Employment #1 date applies to, +Employment status #1, +Employer identifier #1 , +Small employer #1, +Is the learner self employed? #1, +Has the learner been made redundant? #1, +Length of employment #1, +Employment intensity indicator #1, +Length of unemployment #1, +Employment #2 date applies to, +Employment status #2, +Employer identifier #2, +Employment intensity indicator #2, +Has the learner been made redundant? #2, +Is the learner self employed? #2, +Small employer #2 , +Length of employment #2, +Aim type (programme aim 1), +Programme aim 1 Learning ref , +Start date (aim 1), +Planned end date (aim 1), +Funding module (aim 1), +Programme type (aim 1), +Apprentice standard (aim 1), +Delivery postcode (aim 1), +Planned hours (aim 1), +Actual hours (aim 1), +Contract Ref (aim 1), +EPAO ID (aim 1), +Contract type (aim 1), +Contract type code (aim 1), +Date applies from (aim1), +Date applies to (aim 1), +Funding indicator (aim 1), +Source of funding (aim 1), +Financial type 1 (aim 1), +Financial code 1 (aim 1), +Financial start date 1 (aim 1), +Training price (aim 1), +Financial type 2 (aim 1), +Financial code 2 (aim 1), +Financial start date 2 (aim 1), +Total assessment price (aim 1), +Completion status (aim 1), +Actual end date (aim 1), +Achievement date (aim 1), +Outcome (aim 1), +Withdrawal reason (aim 1), +Outcome grade (aim 1), +Aim type (programme aim 2), +Programme aim 2 Learning ref , +Start date (aim 2), +Planned end date (aim 2), +Funding module (aim 2), +Programme type (aim 2), +Apprentice standard (aim 2), +Delivery postcode (aim 2), +Planned hours (aim2), +Actual hours (aim 2), +Contract ref (aim 2), +EPAO ID (aim 2), +Contract type (aim 2), +Contract type code (aim 2), +Date applies from (aim 2), +Date applies to (aim 2), +Funding indicator (aim 2), +Source of funding (aim 2), +Financial type 1 (aim 2), +Financial code 1 (aim 2), +Financial start date 1 (aim 2), +Training price (aim 2), +Financial type 2 (aim 2), +Financial code 2 (aim 2), +Financial start date 2 (aim 2), +Total assessment price (aim 2), +Completion status (aim 2), +Actual end date (aim 2), +Achievement date (aim 2), +Outcome (aim 2), +Withdrawal reason (aim 2), +Outcome grade (aim 2), +Aim type (programme aim 3), +Programme aim 3 learning ref , +Start date (aim 3), +Planned end date (aim 3), +Funding module (aim 3), +Programme type (aim 3), +Apprentice standard (aim 3), +Delivery postcode (aim 3), +Planned hours (aim 3), +Actual hours (aim 3), +Contract ref (aim 3), +EPAO ID (aim 3), +Contract type (aim 3), +Contract type code (aim 3), +Date applies from (aim 3), +Date applies to (aim 3), +Funding indicator (aim 3), +Source of funding (aim 3), +Financial type 1 (aim 3), +Financial code 1 (aim 3), +Financial start date 1 (aim 3), +Training price (aim 3), +Financial type 2 (aim 3), +Financial code 2 (aim 3), +Financial start date 2 (aim 3), +Total assessment price (aim 3), +Completion status (aim 3), +Actual end date (aim 3), +Achievement date (aim 3), +Withdrawal reason (aim 3), +Outcome (aim 3), +Outcome grade (aim 3), +Aim type (programme aim 4), +Programme aim 4 learning ref, +Start date (aim 4), +Planned end date (aim 4), +Funding module (aim 4), +Programme type (aim 4), +Apprentice standard (aim 4), +Delivery postcode (aim 4), +Planned hours (aim 4), +Actual hours (aim 4), +Contract ref (aim 4), +EPAO ID (aim 4), +Contract type (aim 4), +Contract type code (aim 4), +Date applies from (aim 4), +Date applies to (aim 4), +Funding indicator (aim 4), +Source of funding (aim 4), +Financial type 1 (aim 4), +Financial code 1 (aim 4), +Financial start date 1 (aim 4), +Training price (aim 4), +Financial type 2 (aim 4), +Financial code 2 (aim 4), +Financial start date 2 (aim 4), +Total assessment price (aim 4), +Completion status (aim 4), +Actual end date (aim 4), +Achievement date (aim 4), +Withdrawal reason (aim 4), +Outcome (aim 4), +Outcome grade (aim 4), +Aim type (programme aim 5), +Programme aim 5 learning ref , +Start date (aim 5), +Planned end date (aim 5), +Funding module (aim 5), +Programme type (aim 5), +Apprentice standard (aim 5), +Delivery postcode (aim 5), +Planned hours (aim 5), +Actual hours (aim 5), +Contract ref (aim 5), +EPAO ID (aim 5), +Contract type (aim 5), +Contract type code (aim 5), +Date applies from (aim 5), +Date applies to (aim 5), +Funding indicator (aim 5), +Source of funding (aim 5), +Financial type 1 (aim 5), +Financial code 1 (aim 5), +Financial start date 1 (aim 5), +Training price (aim 5), +Financial type 2 (aim 5), +Financial code 2 (aim 5), +Financial start date 2 (aim 5), +Total assessment price (aim 5), +Completion status (aim 5), +Actual end date (aim 5), +Achievement date (aim 5), +Outcome (aim 5), +Withdrawal reason (aim 5), +Outcome grade (aim 5), +Length of unemployment #2, +Date applies to Employment status #3, +Employment status #3, +Employer identifier #3, +Small employer #3, +Self employed #3, +Made Redundant #3, +Length of employment #3, +Employment hours #3, +Length of unemployment #3, +Date applies to Employment status #4, +Employment status #4, +Employer identifier #4, +Small employer #4, +Self employed #4, +Made Redundant #4, +Length of employment #4, +Employment hours #4, +Length of unemployment #4, +Date applies to Employment status #5, +Employment status #5, +Employer identifier #5, +Small employer #5, +Self employed #5, +Made Redundant #5, +Length of employment #5, +Employment hours #5, +Length of unemployment #5, \ No newline at end of file diff --git a/docs/inputs/Status-Comparison.md b/docs/inputs/Status-Comparison.md new file mode 100644 index 0000000..79b7869 --- /dev/null +++ b/docs/inputs/Status-Comparison.md @@ -0,0 +1,77 @@ +# Employment Status Columns + +## Employment Status #X +1. Employment status #1 +2. Employment status #2 +3. Employment status lookup #3 + - *ignore* Employment status #3 +4. Employment status lookup #4 + - *ignore* Employment status #4 +5. Employment status lookup #5 + - *ignore* Employment status #5 + +## Employment #X Date Applies To +1. Employment #1 date applies to +2. Employment #2 date applies to +3. Date applies to Employment status #3 +4. Date applies to Employment status #4 +5. Date applies to Employment status #5 + +## Employer Identifier #X +1. Employer identifier #1 +2. Employer identifier #2 +3. Employer identifier #3 +4. Employer identifier #4 +5. Employer identifier #5 + +## Small Employer #X +1. Small employer #1 +2. Small employer #2 +3. Small employer #3 +4. Small employer #4 +5. Small employer #5 + +## Is the Learner Self-Employed? #X +1. Is the learner self employed? #1 +2. Is the learner self employed? #2 +3. Self employed #3 +4. Self employed #4 +5. Self employed #5 + +## Has the learner been made redundant? #X +1. Has the learner been made redundant? #1 +2. Has the learner been made redundant? #2 +3. Made Redundant #3 +4. Made Redundant #4 +5. Made Redundant #5 + +## Length of employment #X +1. Length of employment #1 +2. Length of employment #2 +3. Length of employment lookup #3 + - *ignore* Length of employment #3 +4. Length of employment lookup #4 + - *ignore* Length of employment #4 +5. Length of employment lookup #5 + - *ignore* Length of employment #5 + +## Employment intensity indicator #X +1. Employment intensity indicator #1 +2. Employment intensity indicator #2 +3. Employment hours lookup #3 + - *ignore* Employment hours #3 +4. Employment hours lookup #4 + - *ignore* Employment hours #4 +5. Employment hours lookup #5 + - *ignore* Employment hours #5 + +## Length of unemployment #X +1. Length of unemployment #1 +2. **TWO POSSIBLE FIELDS: Which is correct?** + - Length of Unemployment #2 + - Length of unemployment no #2 +3. Length of unemployment lookup #3 + - *ignore* Length of unemployment #3 +4. **MISSING** +5. Length of unemployment lookup #5 + - *ignore* Length of unemployment #5 \ No newline at end of file From 88e0ed7e7df92cc3388b6b7d3358d1971cdfd64c Mon Sep 17 00:00:00 2001 From: Jason Warren Date: Thu, 27 Nov 2025 18:47:14 +0000 Subject: [PATCH 08/10] feat: add optional employment status fields 3, 4 and 5 --- src/utils/buildEmploymentArray.js | 173 +++++++++++++++++++++++++----- 1 file changed, 148 insertions(+), 25 deletions(-) diff --git a/src/utils/buildEmploymentArray.js b/src/utils/buildEmploymentArray.js index d98382b..1e4a96c 100644 --- a/src/utils/buildEmploymentArray.js +++ b/src/utils/buildEmploymentArray.js @@ -1,74 +1,197 @@ function buildEmploymentArray(dataArray, i) { return [ - ...(dataArray[i][18] /* Employment Status #1 */ + ...(/* Employment Status #1 */ dataArray[i][18] ? [{ - EmpStat: dataArray[i][18], - DateEmpStatApp: dataArray[i][17], - EmpId: dataArray[i][19] || undefined, + /* Employment Status #1 */ EmpStat: dataArray[i][18], + /* Employment #1 date applies to */ DateEmpStatApp: dataArray[i][17], + /* Employer identifier #1 */ EmpId: dataArray[i][19] || undefined, EmploymentStatusMonitoring: [ - ...(dataArray[i][23] + ...(/* Length of employment #1 */ dataArray[i][23] + // Length of employment #1 ? [{ ESMType: "LOE", ESMCode: dataArray[i][23] }] : [] ), - ...(dataArray[i][24] + ...(/* Employment intensity indicator #1 */ dataArray[i][24] + // Employment intensity indicator #1 ? [{ ESMType: "EII", ESMCode: dataArray[i][24] }] : [] ), - ...(dataArray[i][25] + ...(/* Length of unemployment #1 */ dataArray[i][25] + // Length of unemployment #1 ? [{ ESMType: "LOU", ESMCode: dataArray[i][25] }] : [] ), - ...(dataArray[i][21] + ...(/* Is the learner self employed? #1 */ dataArray[i][21] ? [{ ESMType: "SEI", ESMCode: "1" }] : [] ), - ...(dataArray[i][20] + ...(/* Small employer #1 */ dataArray[i][20] ? [{ ESMType: "SEM", ESMCode: "1" }, { ESMType: "OET", ESMCode: "2" }] : [] ), - ...(dataArray[i][22] + ...(/* Has the learner been made redundant? #1 */ dataArray[i][22] ? [{ ESMType: "OET", ESMCode: "1" }] : [] ), ], }] - : [/* No Employment Status #1 */] + : [] ), - ...(dataArray[i][27] /* Employment Status #2 */ + ...(/* Employment Status #2 */ dataArray[i][27] ? [{ - EmpStat: dataArray[i][27], - DateEmpStatApp: dataArray[i][26], - EmpId: dataArray[i][28] || undefined, + /* Employment Status #2 */ EmpStat: dataArray[i][27], + /* Employment #2 date applies to */ DateEmpStatApp: dataArray[i][26], + /* Employer identifier 2 */ EmpId: dataArray[i][28] || undefined, EmploymentStatusMonitoring: [ - ...(dataArray[i][29] + ...(/* Length of employment #2 */ dataArray[i][33] + // Length of employment #2 + ? [{ ESMType: "LOE", ESMCode: dataArray[i][33] }] + : [] + ), + ...(/* Employment intensity indicator #2 */ dataArray[i][29] + // Employment intensity indicator #2 ? [{ ESMType: "EII", ESMCode: dataArray[i][29] }] : [] ), - ...(dataArray[i][33] - ? [{ ESMType: "LOE", ESMCode: dataArray[i][33] }] + ...(/* Length of unemployment #2 */ dataArray[i][194] + // Date applies to Employment status #2 + ? [{ ESMType: "LOU", ESMCode: dataArray[i][194] }] + : [] + ), + ...(/* Is the learner self employed? #2 */ dataArray[i][31] + ? [{ ESMType: "SEI", ESMCode: "1" }] + : [] + ), + ...(/* Small employer #2 */ dataArray[i][32] + ? [{ ESMType: "SEM", ESMCode: "1" }, { ESMType: "OET", ESMCode: "2" }] + : [] + ), + ...(/* Has the learner been made redundant? #2 */ dataArray[i][30] + ? [{ ESMType: "OET", ESMCode: "1" }] + : [] + ), + ], + }] + : [] + ), + ...(/* Employment Status #3 */ dataArray[i][196] + ? [{ + /* Employment Status #3 */ EmpStat: dataArray[i][196], + /* Date applies to Employment status #3 */ DateEmpStatApp: dataArray[i][195], + /* Employer identifier #3 */ EmpId: dataArray[i][197] || undefined, + EmploymentStatusMonitoring: [ + ...(/* Length of employment #3 */ dataArray[i][201] + // Length of employment #3 + ? [{ ESMType: "LOE", ESMCode: dataArray[i][201] }] : [] ), - ...(dataArray[i][195] - ? [{ ESMType: "LOU", ESMCode: dataArray[i][195] }] + ...(/* Employment intensity indicator #3 */ dataArray[i][--] + // Employment intensity indicator #3 + ? [{ ESMType: "EII", ESMCode: dataArray[i][--] }] : [] ), - ...(dataArray[i][31] + ...(/* Length of unemployment #3 */ dataArray[i][203] + // Date applies to Employment status # + ? [{ ESMType: "LOU", ESMCode: dataArray[i][203] }] + : [] + ), + ...(/* Is the learner self employed? #3 */ dataArray[i][199] ? [{ ESMType: "SEI", ESMCode: "1" }] : [] ), - ...(dataArray[i][32] + ...(/* Small employer #3 */ dataArray[i][198] ? [{ ESMType: "SEM", ESMCode: "1" }, { ESMType: "OET", ESMCode: "2" }] : [] ), - ...(dataArray[i][30] + ...(/* Has the learner been made redundant? #3 */ dataArray[i][200] ? [{ ESMType: "OET", ESMCode: "1" }] : [] ), ], }] - : [/* No Employment Status #2 */] + : [] + ), + ...(/* Employment Status #4 */ dataArray[i][205] + ? [{ + /* Employment Status #4 */ EmpStat: dataArray[i][205], + /* Employment #4 date applies to */ DateEmpStatApp: dataArray[i][204], + /* Employer identifier #4 */ EmpId: dataArray[i][206] || undefined, + EmploymentStatusMonitoring: [ + ...(/* Length of employment #4 */ dataArray[i][210] + // Length of employment #4 + ? [{ ESMType: "LOE", ESMCode: dataArray[i][--] }] + : [] + ), + ...(/* Employment intensity indicator #4 */ dataArray[i][--] + // Employment intensity indicator #4 + ? [{ ESMType: "EII", ESMCode: dataArray[i][--] }] + : [] + ), + ...(/* Length of unemployment #4 */ dataArray[i][212] + // Date applies to Employment status # + ? [{ ESMType: "LOU", ESMCode: dataArray[i][212] }] + : [] + ), + ...(/* Is the learner self employed? #4 */ dataArray[i][208] + ? [{ ESMType: "SEI", ESMCode: "1" }] + : [] + ), + ...(/* Small employer #4 */ dataArray[i][207] + ? [{ ESMType: "SEM", ESMCode: "1" }, { ESMType: "OET", ESMCode: "2" }] + : [] + ), + ...(/* Has the learner been made redundant? #4 */ dataArray[i][209] + ? [{ ESMType: "OET", ESMCode: "1" }] + : [] + ), + ], + }] + : [] + ), + ...(/* Employment Status #5 */ dataArray[i][214] + ? [{ + /* Employment Status #5 */ EmpStat: dataArray[i][214], + /* Employment #5 date applies to */ DateEmpStatApp: dataArray[i][213], + /* Employer identifier #5 */ EmpId: dataArray[i][215] || undefined, + EmploymentStatusMonitoring: [ + ...(/* Length of employment #5 */ dataArray[i][219] + // Length of employment # + ? [{ ESMType: "LOE", ESMCode: dataArray[i][--] }] + : [] + ), + ...(/* Employment intensity indicator #5 */ dataArray[i][--] + // Employment intensity indicator #5 + ? [{ ESMType: "EII", ESMCode: dataArray[i][--] }] + : [] + ), + ...(/* Length of unemployment #5 */ dataArray[i][221] + // Date applies to Employment status # + ? [{ ESMType: "LOU", ESMCode: dataArray[i][221] }] + : [] + ), + ...(/* Is the learner self employed? #5 */ dataArray[i][217] + ? [{ ESMType: "SEI", ESMCode: "1" }] + : [] + ), + ...(/* Small employer #5 */ dataArray[i][216] + ? [{ ESMType: "SEM", ESMCode: "1" }, { ESMType: "OET", ESMCode: "2" }] + : [] + ), + ...(/* Has the learner been made redundant? #5 */ dataArray[i][218] + ? [{ ESMType: "OET", ESMCode: "1" }] + : [] + ), + ], + }] + : [] ), ] } -module.exports = { buildEmploymentArray }; +/** TODO + * 3 | 114 | 116 | Employment Intensity + * 4 | 140 | 142 | Employment Intensity + * 5 | 184 | 186 | Employment Intensity +*/ + +module.exports = { buildEmploymentArray }; \ No newline at end of file From 66b198894c50ed95d53995140999ecfad89ff373 Mon Sep 17 00:00:00 2001 From: Jason Warren Date: Thu, 27 Nov 2025 18:49:22 +0000 Subject: [PATCH 09/10] docs: rename docs --- ...6 Export Columns.csv => 25_26 Columns.csv} | 0 docs/inputs/25_26 Export A.csv | 234 ------------------ .../{25_26 Export B.csv => 25_26 Export.csv} | 0 ...rt Columns Values.csv => 25_26 Values.csv} | 0 4 files changed, 234 deletions(-) rename docs/inputs/{25_26 Export Columns.csv => 25_26 Columns.csv} (100%) delete mode 100644 docs/inputs/25_26 Export A.csv rename docs/inputs/{25_26 Export B.csv => 25_26 Export.csv} (100%) rename docs/inputs/{25_26 Export Columns Values.csv => 25_26 Values.csv} (100%) diff --git a/docs/inputs/25_26 Export Columns.csv b/docs/inputs/25_26 Columns.csv similarity index 100% rename from docs/inputs/25_26 Export Columns.csv rename to docs/inputs/25_26 Columns.csv diff --git a/docs/inputs/25_26 Export A.csv b/docs/inputs/25_26 Export A.csv deleted file mode 100644 index 7224a81..0000000 --- a/docs/inputs/25_26 Export A.csv +++ /dev/null @@ -1,234 +0,0 @@ -Record - Airtable ID, -Previous UKPRN, -ULN, -Given name, -Family name, -Sex , -Date of birth, -NI number, -Ethnic group, -Prior post code, -Post code, -Street address , -Telephone number, -Primary additional needs, -Prior attainment date applies to, -Prior attainment, -Learning hours (skills bootcamp), -Employment #1 date applies to, -Employment status #1, -Employer identifier #1 , -Small employer #1, -Is the learner self employed? #1, -Has the learner been made redundant? #1, -Length of employment #1, -Employment intensity indicator #1, -Length of unemployment #1, -Employment #2 date applies to, -Employment status #2, -Employer identifier #2, -Employment intensity indicator #2, -Has the learner been made redundant? #2, -Is the learner self employed? #2, -Small employer #2 , -Length of employment #2, -Aim type (programme aim 1), -Programme aim 1 Learning ref , -Start date (aim 1), -Planned end date (aim 1), -Funding module (aim 1), -Programme type (aim 1), -Apprentice standard (aim 1), -Delivery postcode (aim 1), -Planned hours (aim 1), -Actual hours (aim 1), -Contract Ref (aim 1), -EPAO ID (aim 1), -Contract type (aim 1), -Contract type code (aim 1), -Date applies from (aim1), -Date applies to (aim 1), -Funding indicator (aim 1), -Source of funding (aim 1), -Financial type 1 (aim 1), -Financial code 1 (aim 1), -Financial start date 1 (aim 1), -Training price (aim 1), -Financial type 2 (aim 1), -Financial code 2 (aim 1), -Financial start date 2 (aim 1), -Total assessment price (aim 1), -Completion status (aim 1), -Actual end date (aim 1), -Achievement date (aim 1), -Outcome (aim 1), -Withdrawal reason (aim 1), -Outcome grade (aim 1), -Aim type (programme aim 2), -Programme aim 2 Learning ref , -Start date (aim 2), -Planned end date (aim 2), -Funding module (aim 2), -Programme type (aim 2), -Apprentice standard (aim 2), -Delivery postcode (aim 2), -Planned hours (aim2), -Actual hours (aim 2), -Contract ref (aim 2), -EPAO ID (aim 2), -Contract type (aim 2), -Contract type code (aim 2), -Date applies from (aim 2), -Date applies to (aim 2), -Funding indicator (aim 2), -Source of funding (aim 2), -Financial type 1 (aim 2), -Financial code 1 (aim 2), -Financial start date 1 (aim 2), -Training price (aim 2), -Financial type 2 (aim 2), -Financial code 2 (aim 2), -Financial start date 2 (aim 2), -Total assessment price (aim 2), -Completion status (aim 2), -Actual end date (aim 2), -Achievement date (aim 2), -Outcome (aim 2), -Withdrawal reason (aim 2), -Outcome grade (aim 2), -Aim type (programme aim 3), -Programme aim 3 learning ref , -Start date (aim 3), -Planned end date (aim 3), -Funding module (aim 3), -Programme type (aim 3), -Apprentice standard (aim 3), -Delivery postcode (aim 3), -Planned hours (aim 3), -Actual hours (aim 3), -Contract ref (aim 3), -EPAO ID (aim 3), -Contract type (aim 3), -Contract type code (aim 3), -Date applies from (aim 3), -Date applies to (aim 3), -Funding indicator (aim 3), -Source of funding (aim 3), -Financial type 1 (aim 3), -Financial code 1 (aim 3), -Financial start date 1 (aim 3), -Training price (aim 3), -Financial type 2 (aim 3), -Financial code 2 (aim 3), -Financial start date 2 (aim 3), -Total assessment price (aim 3), -Completion status (aim 3), -Actual end date (aim 3), -Achievement date (aim 3), -Withdrawal reason (aim 3), -Outcome (aim 3), -Outcome grade (aim 3), -Aim type (programme aim 4), -Programme aim 4 learning ref, -Start date (aim 4), -Planned end date (aim 4), -Funding module (aim 4), -Programme type (aim 4), -Apprentice standard (aim 4), -Delivery postcode (aim 4), -Planned hours (aim 4), -Actual hours (aim 4), -Contract ref (aim 4), -EPAO ID (aim 4), -Contract type (aim 4), -Contract type code (aim 4), -Date applies from (aim 4), -Date applies to (aim 4), -Funding indicator (aim 4), -Source of funding (aim 4), -Financial type 1 (aim 4), -Financial code 1 (aim 4), -Financial start date 1 (aim 4), -Training price (aim 4), -Financial type 2 (aim 4), -Financial code 2 (aim 4), -Financial start date 2 (aim 4), -Total assessment price (aim 4), -Completion status (aim 4), -Actual end date (aim 4), -Achievement date (aim 4), -Withdrawal reason (aim 4), -Outcome (aim 4), -Outcome grade (aim 4), -Aim type (programme aim 5), -Programme aim 5 learning ref , -Start date (aim 5), -Planned end date (aim 5), -Funding module (aim 5), -Programme type (aim 5), -Apprentice standard (aim 5), -Delivery postcode (aim 5), -Planned hours (aim 5), -Actual hours (aim 5), -Contract ref (aim 5), -EPAO ID (aim 5), -Contract type (aim 5), -Contract type code (aim 5), -Date applies from (aim 5), -Date applies to (aim 5), -Funding indicator (aim 5), -Source of funding (aim 5), -Financial type 1 (aim 5), -Financial code 1 (aim 5), -Financial start date 1 (aim 5), -Training price (aim 5), -Financial type 2 (aim 5), -Financial code 2 (aim 5), -Financial start date 2 (aim 5), -Total assessment price (aim 5), -Completion status (aim 5), -Actual end date (aim 5), -Achievement date (aim 5), -Outcome (aim 5), -Withdrawal reason (aim 5), -Outcome grade (aim 5), -Length of Unemployment #2, -Length of unemployment no #2, -Date applies to Employment status #3, -Employment status lookup #3, -Employment status #3, -Employer identifier #3, -Small employer #3, -Self employed #3, -Made Redundant #3, -Length of employment lookup #3, -Length of employment #3, -Employment hours lookup #3, -Employment hours #3, -Length of unemployment lookup #3, -Length of unemployment #3, -Date applies to Employment status #4, -Employment status lookup #4, -Employment status #4, -Employer identifier #4, -Small employer #4, -Self employed #4, -Made Redundant #4, -Length of employment lookup #4, -Length of employment #4, -Employment hours lookup #4, -Employment hours #4, -Date applies to Employment status #5, -Employment status lookup #5, -Employment status #5, -Employer identifier #5, -Small employer #5, -Self employed #5, -Made Redundant #5, -Length of employment lookup #5, -Length of employment #5, -Employment hours lookup #5, -Employment hours #5, -Length of unemployment lookup #5, - -Length of unemployment #5 \ No newline at end of file diff --git a/docs/inputs/25_26 Export B.csv b/docs/inputs/25_26 Export.csv similarity index 100% rename from docs/inputs/25_26 Export B.csv rename to docs/inputs/25_26 Export.csv diff --git a/docs/inputs/25_26 Export Columns Values.csv b/docs/inputs/25_26 Values.csv similarity index 100% rename from docs/inputs/25_26 Export Columns Values.csv rename to docs/inputs/25_26 Values.csv From e083e36a731ae1b9bc2532970ae2d31f7efb7876 Mon Sep 17 00:00:00 2001 From: Jason Warren Date: Thu, 27 Nov 2025 18:57:21 +0000 Subject: [PATCH 10/10] fix: update employment intensity values --- src/utils/buildEmploymentArray.js | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/src/utils/buildEmploymentArray.js b/src/utils/buildEmploymentArray.js index 1e4a96c..c0f7858 100644 --- a/src/utils/buildEmploymentArray.js +++ b/src/utils/buildEmploymentArray.js @@ -85,9 +85,9 @@ function buildEmploymentArray(dataArray, i) { ? [{ ESMType: "LOE", ESMCode: dataArray[i][201] }] : [] ), - ...(/* Employment intensity indicator #3 */ dataArray[i][--] + ...(/* Employment intensity indicator #3 */ dataArray[i][202] // Employment intensity indicator #3 - ? [{ ESMType: "EII", ESMCode: dataArray[i][--] }] + ? [{ ESMType: "EII", ESMCode: dataArray[i][202] }] : [] ), ...(/* Length of unemployment #3 */ dataArray[i][203] @@ -119,12 +119,12 @@ function buildEmploymentArray(dataArray, i) { EmploymentStatusMonitoring: [ ...(/* Length of employment #4 */ dataArray[i][210] // Length of employment #4 - ? [{ ESMType: "LOE", ESMCode: dataArray[i][--] }] + ? [{ ESMType: "LOE", ESMCode: dataArray[i][210] }] : [] ), - ...(/* Employment intensity indicator #4 */ dataArray[i][--] + ...(/* Employment intensity indicator #4 */ dataArray[i][211] // Employment intensity indicator #4 - ? [{ ESMType: "EII", ESMCode: dataArray[i][--] }] + ? [{ ESMType: "EII", ESMCode: dataArray[i][211] }] : [] ), ...(/* Length of unemployment #4 */ dataArray[i][212] @@ -156,12 +156,12 @@ function buildEmploymentArray(dataArray, i) { EmploymentStatusMonitoring: [ ...(/* Length of employment #5 */ dataArray[i][219] // Length of employment # - ? [{ ESMType: "LOE", ESMCode: dataArray[i][--] }] + ? [{ ESMType: "LOE", ESMCode: dataArray[i][219] }] : [] ), - ...(/* Employment intensity indicator #5 */ dataArray[i][--] + ...(/* Employment intensity indicator #5 */ dataArray[i][220] // Employment intensity indicator #5 - ? [{ ESMType: "EII", ESMCode: dataArray[i][--] }] + ? [{ ESMType: "EII", ESMCode: dataArray[i][220] }] : [] ), ...(/* Length of unemployment #5 */ dataArray[i][221] @@ -188,10 +188,4 @@ function buildEmploymentArray(dataArray, i) { ] } -/** TODO - * 3 | 114 | 116 | Employment Intensity - * 4 | 140 | 142 | Employment Intensity - * 5 | 184 | 186 | Employment Intensity -*/ - module.exports = { buildEmploymentArray }; \ No newline at end of file