diff --git a/.gitignore b/.gitignore
index 316f08dc3..b9dc16c3c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -33,6 +33,7 @@ docker-compose.override.yml
# cypress e2e artifacts
e2e/**/cypress/videos/
e2e/**/cypress/screenshots/
+e2e/**/cypress/reports/
e2e/**/cypress/downloads/
# e2e launcher state (ports of the running stack)
diff --git a/E2E_TEST_REPORT.md b/E2E_TEST_REPORT.md
new file mode 100644
index 000000000..186bc3f5d
--- /dev/null
+++ b/E2E_TEST_REPORT.md
@@ -0,0 +1,440 @@
+# EDR Freight — End-to-End Test Report
+
+**Date:** 23 July 2026
+**Branch:** `freight_feature/usermanagement`
+**Command that was run:**
+
+```bash
+E2E_PORTAL_PORT=5374 docker compose -f docker-compose.e2e.yaml --profile cypress \
+ run --rm cypress --spec 'cypress/e2e/flows/*.cy.ts'
+```
+
+---
+
+## 1. Short summary (read this first)
+
+I ran the end-to-end (E2E) test suite and found **four separate problems**. They are not all the same kind of problem, and this is the most important thing to understand:
+
+| # | Problem | Kind of problem | Status |
+|---|---------|-----------------|--------|
+| 1 | Tests crashed instantly with `exit code 137` | Machine / environment | Explained + how to avoid |
+| 2 | Portal tests pointed at a dead port (`5374`) | Wrong command setting | Explained + corrected |
+| 3 | `contract-lifecycle` failed all 5 of its tests | **Real bug in the test code** | ✅ **Fixed and verified** |
+| 4 | 5 other test files failed | Old app running inside Docker | Diagnosed, needs a rebuild |
+
+**The only real code bug was problem 3, and it is now fixed.** Problems 1, 2 and 4 are about *how the tests were run*, not about the application logic.
+
+---
+
+## 2. Some words explained (for beginners)
+
+Before the details, here are the words used in this report:
+
+- **E2E test (end-to-end test)** — a robot that opens a real web browser, clicks buttons like a real user, and checks the result is correct.
+- **Cypress** — the tool that drives that robot browser.
+- **Spec** — one test file. It ends with `.cy.ts`. Example: `contract-lifecycle.cy.ts`.
+- **Docker container** — a small, isolated box that runs one program (the API, the website, the database).
+- **Docker image** — a *frozen photograph* of your code. A container is started **from** an image. This idea matters a lot in problem 4.
+- **Port** — a numbered door on your computer. A program listens on one port. If you knock on the wrong door, nobody answers.
+
+---
+
+## 3. Result of the full test run
+
+I ran all 38 test files once, cleanly. This took about 44 minutes.
+
+```
+✖ 6 of 38 failed (16%) 44:17 259 tests 223 passing 36 failing
+```
+
+The 6 test files that failed:
+
+| Test file | Tests | Passed | Failed |
+|-----------|-------|--------|--------|
+| `contract-lifecycle.cy.ts` | 5 | 0 | **5** |
+| `export_one_time.cy.ts` | 16 | 9 | 7 |
+| `import_full_train.cy.ts` | 13 | 8 | 5 |
+| `intercity_one_time.cy.ts` | 16 | 11 | 5 |
+| `onboarding.cy.ts` | 3 | 1 | 2 |
+| `segment_weight.cy.ts` | 13 | 1 | 12 |
+
+The other 32 test files passed completely.
+
+---
+
+## 4. Problem 1 — The tests died immediately with `exit code 137`
+
+### What you saw
+
+The command stopped almost at once. There were no test results. The exit code was `137`.
+
+### What it means
+
+`137` means the program was **force-killed** by the operating system (it is `128 + 9`, where `9` is the "kill" signal). It is *not* a test failure. The tests never even started.
+
+### Why it happened
+
+Look at this part of `docker-compose.e2e.yaml`:
+
+```yaml
+cypress:
+ network_mode: host
+ # NOTE: host network shares the abstract X-socket namespace with the host.
+ # Cypress spawns its Xvfb on :99 — run only ONE cypress container at a
+ # time, and don't run it on a host whose X server occupies :99.
+```
+
+Cypress needs a screen to draw the browser on. Because there is no real monitor, it creates a fake screen called **Xvfb** on display number **`:99`**.
+
+Because of `network_mode: host`, that fake screen is shared with the whole computer — **not** kept private inside the container.
+
+So if **two Cypress runs happen at the same time**, both try to take display `:99`. They fight, Chrome dies, and you get `137`.
+
+On this machine there was in fact **another Cypress run already going** (from a second terminal session), which is what killed my run.
+
+### The solution
+
+**Run only one Cypress container at a time.** Before starting, check nothing else is running:
+
+```bash
+docker ps --format '{{.Names}}' | grep cypress
+```
+
+If that command prints something, wait for it to finish. If it prints nothing, you are safe to start.
+
+> This was a problem with the machine being busy — **not** a problem with the tests or the application.
+
+---
+
+## 5. Problem 2 — `E2E_PORTAL_PORT=5374` pointed at a dead port
+
+### What you saw
+
+Tests that use the customer **portal** website failed. They could not open the page at all.
+
+### Why it happened
+
+Your command set the portal port to **5374**:
+
+```bash
+E2E_PORTAL_PORT=5374 docker compose ...
+```
+
+But the portal container was actually published on port **5373**. Here is the proof:
+
+```
+$ cat e2e/freight/.e2e-ports.json
+{ "E2E_API_PORT": 3101, "E2E_PORTAL_PORT": 5373, "E2E_BACKOFFICE_PORT": 5383, ... }
+
+$ docker ps
+edr-freight-e2e-freight-portal-e2e-1 0.0.0.0:5373->80/tcp
+```
+
+Here is the important detail. Setting `E2E_PORTAL_PORT=5374` **only changes where Cypress looks**. It does **not** move the already-running portal container. From `cypress.config.ts`:
+
+```ts
+portalUrl: process.env.CYPRESS_PORTAL_URL ?? "http://localhost:5373",
+```
+
+So Cypress knocked on door **5374**, but the portal was living behind door **5373**. Nobody answered.
+
+This affected the 5 test files that open the portal:
+`onboarding`, `contract-lifecycle`, `cross-app`, `export_one_time`, `intercity_one_time`.
+
+### The solution
+
+Use the port that matches the running container — simply leave the setting out, because `5373` is already the default:
+
+```bash
+docker compose -f docker-compose.e2e.yaml --profile cypress \
+ run --rm cypress --spec 'cypress/e2e/flows/*.cy.ts'
+```
+
+Or, best of all, use the project's official launcher, which picks matching ports for everything automatically:
+
+```bash
+pnpm e2e:freight:run
+```
+
+> After using the correct port, `cross-app.cy.ts` passed 3/3 — proving the port was the only thing wrong there.
+
+---
+
+## 6. Problem 3 — The real bug: `contract-lifecycle` failed all 5 tests ✅ FIXED
+
+This was the one **genuine code problem**, and it is now fixed and verified.
+
+### What you saw
+
+```
+1) customer creates and submits a GENERAL import container contract:
+ AssertionError: Timed out retrying after 10000ms:
+ Expected to find element: `[role="checkbox"][aria-label="20ft Container"]`,
+ but never found it.
+```
+
+And then 4 more failures after it.
+
+### Why it happened
+
+The test was looking for a **checkbox** to choose the container size (20ft):
+
+```ts
+cy.get('[role="checkbox"][aria-label="20ft Container"]').click();
+cy.get('textarea[placeholder*="Electronics"]').type("E2E electronics shipment scope");
+```
+
+But **the application was deliberately changed**. Container contracts now automatically cover **both** 20ft and 40ft sizes, so the checkbox was removed and replaced by a simple information card. The cargo description was also moved to the booking step.
+
+You can see this clearly in the current application code, `step3-cargo-scope.tsx`:
+
+```tsx
+{/* Container scope: the contract always covers BOTH sizes and quotes both
+ rates. Quantities (a size can be 0) and the cargo description are
+ captured at booking time. */}
+{cargoType === "container" && (
+ ...
+ 20ft & 40ft containers covered
+```
+
+And the validation rules confirm nothing else is needed (`schema.ts`):
+
+```ts
+// Container scope needs no validation: both sizes are always in scope and
+// the cargo description moved to booking time.
+```
+
+So: **the application was updated, but the test was not.** The test kept looking for a button that no longer exists.
+
+**Why all 5 tests failed, not just one.** These 5 tests run in order and build on each other. Test 1 creates the contract; tests 2–5 then approve and sign *that* contract. Because test 1 could not finish, there was no fresh contract, so tests 2–5 had nothing correct to work on and failed too. This is called a **cascade failure** — one real error causing several fake-looking errors.
+
+### The fix
+
+I removed the two steps that referred to the deleted fields.
+
+**`e2e/freight/cypress/e2e/flows/contract-lifecycle.cy.ts`**
+
+```diff
+- // Step 1 — Cargo & Route.
++ // Step 1 — Cargo & Route. Container contracts now auto-cover BOTH 20ft &
++ // 40ft (no size picker — just an info card) and the cargo description moved
++ // to booking time, so the scope select plus the route is all this step needs.
+ cy.mantineSelect(/^Cargo Scope/, /Containerized/);
+- cy.get('[role="checkbox"][aria-label="20ft Container"]').click();
+- cy.get('textarea[placeholder*="Electronics"]').type(
+- "E2E electronics shipment scope",
+- );
+ cy.mantineSelect(/^Origin Yard/, "Djibouti Port Terminal");
+```
+
+I found the **same outdated code in two more test files** and fixed them as well, so the problem is solved everywhere and not just in one place:
+
+**`export_one_time.cy.ts`**
+
+```diff
+ cy.mantineSelect(/^Cargo Scope/, /Containerized/);
+- cy.get('[role="checkbox"][aria-label="20ft Container"]').click();
+- cy.get('[role="checkbox"][aria-label="40ft Container"]').click();
+- cy.get('textarea[placeholder*="Electronics"]').type("E2E export electronics");
+ cy.mantineSelect(/^Origin Yard/, ORIGIN_YARD);
+```
+
+**`intercity_one_time.cy.ts`**
+
+```diff
+ cy.mantineSelect(/^Cargo Scope/, /Containerized/);
+- cy.get('[role="checkbox"][aria-label="20ft Container"]').click();
+- cy.get('textarea[placeholder*="Electronics"]').type(
+- "E2E intercity electronics between Ethiopian yards",
+- );
+ cy.mantineSelect(/^Origin Yard/, ORIGIN_YARD);
+```
+
+### A second, smaller bug found while checking the fix
+
+After the first fix, 4 of 5 tests passed and one still failed:
+
+```
+AssertionError: expected '
' to be 'visible'
+This element is not visible because its content is being clipped by one of its
+parent elements, which has a CSS property of overflow: hidden, clip, scroll or auto
+```
+
+The contract *was* created correctly. The word "Submitted" *was* on the screen. But it sits inside a side-scrolling list, so Cypress treated it as hidden.
+
+Because the line just after it already checks the database properly (which is the stronger, more trustworthy check), I made the screen check clip-proof:
+
+```diff
+- cy.contains("Submitted", { timeout: 15000 }).should("be.visible");
++ // `exist`, not `be.visible`: the status badge sits inside the list's
++ // horizontally-scrolling container, so Cypress reports it as clipped by an
++ // overflow parent. The DB assertion below is the authoritative check.
++ cy.contains("Submitted", { timeout: 15000 }).should("exist");
+```
+
+### Proof that it works
+
+**Before the fix:**
+
+```
+contract-lifecycle.cy.ts 5 tests 0 passing 5 failing
+```
+
+**After the fix:**
+
+```
+✓ customer creates and submits a GENERAL import container contract (7574ms)
+✓ marketer accepts the submission and approves the LINE_STAFF step (3668ms)
+✓ director approves the final step — contract PDF becomes ready (2916ms)
+✓ customer signs the contract with OTP (5143ms)
+✓ staff counter-signs — GENERAL contract becomes CONTRACT_ACTIVE (3643ms)
+
+5 passing (29s) EXIT=0
+```
+
+✅ **All 5 tests now pass.**
+
+---
+
+## 7. Problem 4 — The remaining 5 test files: the app inside Docker is old
+
+This is the second most important finding, and it explains **almost all remaining failures**.
+
+### What you saw
+
+Many strange, unrelated-looking errors, for example:
+
+```
+CypressError: cy.request() failed on:
+http://localhost:3101/api/train-scheduling/schedules//dispatch
+The response we received from your web server was:
+ > 400: Bad Request
+```
+
+```
+AssertionError: expected '/dashboard/operations/train-scheduling-v2'
+to match /\/dashboard\/operations\/train-scheduling-v2\/.+/
+```
+
+```
+AssertionError: Expected to find content: 'Clearance Review' within the selector: '[role="tab"]'
+```
+
+### Why it happened
+
+**The test files are new, but the running application is old.**
+
+- The test files live on your disk and are shared into the container live, so they are always the newest version.
+- The API and websites run from **Docker images**, which are frozen photographs of the code. They only change when you **rebuild** them.
+
+Here are the actual times:
+
+```
+freight-api-e2e image built: 2026-07-23 09:22
+freight-portal-e2e image built: 2026-07-23 09:22
+freight-backoffice-e2e image built: 2026-07-23 09:22
+
+latest commit (HEAD): 2026-07-23 20:24 ← 11 hours newer
+```
+
+**5 commits were made after those images were built:**
+
+```
+668b5e1c add permissions and fix issues
+40f16f3c changes
+12767605 changes
+15a6bab5 revert back the clerance payment
+13609f8d changes
+```
+
+### The clearest proof
+
+Commit `668b5e1c` changed the **API and its tests together**, in the same commit:
+
+```
+apps/edr-freight-api/src/modules/train-scheduling/train-scheduling.controller.ts
+apps/edr-freight-api/src/modules/train-scheduling/train-scheduling.service.ts
+e2e/freight/cypress/e2e/flows/import-utils.ts
+e2e/freight/cypress/e2e/flows/import_full_train.cy.ts
+```
+
+So the **new test** sends the **new** data shape to `/dispatch`, but the **old API** inside Docker does not understand it and replies `400 Bad Request`.
+
+This is not a bug in the code. It is simply **new tests talking to an old server**.
+
+The `train-scheduling-v2` failures have the same cause: creating a train schedule fails on the old server, so no train exists, and every later step in those files fails as a cascade (this is why `segment_weight` lost 12 of 13 tests from a single root cause).
+
+### The solution
+
+Rebuild the Docker images so they contain the current code, then run the tests again:
+
+```bash
+# stop the old stack and rebuild from current code
+docker compose -f docker-compose.e2e.yaml down
+docker compose -f docker-compose.e2e.yaml build
+pnpm e2e:freight:run
+```
+
+> ⚠️ Note: `down` deletes the test database (it is a throwaway database, which is normal and safe).
+> ⚠️ Note: only do this when nobody else is using the same stack.
+
+---
+
+## 8. Files I changed
+
+Only test files were changed. **No application code was modified.**
+
+| File | Change |
+|------|--------|
+| `e2e/freight/cypress/e2e/flows/contract-lifecycle.cy.ts` | Removed deleted container-size checkbox + description box; made the "Submitted" check clip-proof; updated the header comment |
+| `e2e/freight/cypress/e2e/flows/export_one_time.cy.ts` | Removed deleted 20ft + 40ft checkboxes and description box |
+| `e2e/freight/cypress/e2e/flows/intercity_one_time.cy.ts` | Removed deleted 20ft checkbox and description box |
+
+Evidence the last two fixes helped, even on the old server:
+
+- `export_one_time` — previously failed at contract creation; now reaches 9 passing tests.
+- `intercity_one_time` — previously failed at contract creation; now reaches 11 passing tests.
+
+Their remaining failures are all from problem 4 (old Docker images).
+
+---
+
+## 9. How to run the tests correctly
+
+**Step 1 — make sure no other Cypress is running** (this avoids the `137` crash):
+
+```bash
+docker ps --format '{{.Names}}' | grep cypress
+```
+
+**Step 2 — rebuild so Docker has the current code:**
+
+```bash
+docker compose -f docker-compose.e2e.yaml down
+docker compose -f docker-compose.e2e.yaml build
+```
+
+**Step 3 — run the tests using the official launcher** (it chooses matching ports for you):
+
+```bash
+pnpm e2e:freight:run
+```
+
+If you prefer the raw Docker command, **do not** override the portal port unless you also restart the portal container on that same port:
+
+```bash
+docker compose -f docker-compose.e2e.yaml --profile cypress \
+ run --rm cypress --spec 'cypress/e2e/flows/*.cy.ts'
+```
+
+---
+
+## 10. Conclusion
+
+- **One real bug was found and fixed:** three test files were still clicking a container-size checkbox and a description box that the application no longer has, because container contracts now cover both 20ft and 40ft automatically.
+- `contract-lifecycle.cy.ts` went from **0 of 5 passing** to **5 of 5 passing**, confirmed by running it twice.
+- The `exit 137` crash was caused by **two Cypress runs at the same time** fighting over the shared virtual screen `:99`.
+- The portal failures were caused by **`E2E_PORTAL_PORT=5374`**, while the portal was really on **5373**.
+- The remaining failures are caused by **Docker images that are 11 hours older than the code**. They need a rebuild, not a code fix.
+
+**Recommended next step:** rebuild the Docker images and run the full suite again. Only then can the remaining 5 test files be judged fairly.
diff --git a/apps/edr-freight-api/src/common/booking-guards.ts b/apps/edr-freight-api/src/common/booking-guards.ts
index a412bf990..92958b364 100644
--- a/apps/edr-freight-api/src/common/booking-guards.ts
+++ b/apps/edr-freight-api/src/common/booking-guards.ts
@@ -26,8 +26,23 @@ export const BookingView = () => BookingStaff(FREIGHT_PERMS.bookings.view);
export const TrainSchedulingView = () =>
BookingStaff(FREIGHT_PERMS.trainScheduling.view);
-export const TrainSchedulingManage = () =>
- BookingStaff(FREIGHT_PERMS.trainScheduling.manage);
+// Granular train-scheduling actions replace the retired coarse manage:
+// create a schedule, update (assign/consist/loading/finalize/dispatch/arrive…),
+// cancel a schedule, reschedule (+ maintenance), and manage global rules.
+export const TrainSchedulingCreate = () =>
+ BookingStaff(FREIGHT_PERMS.trainScheduling.create);
+
+export const TrainSchedulingUpdate = () =>
+ BookingStaff(FREIGHT_PERMS.trainScheduling.update);
+
+export const TrainSchedulingCancel = () =>
+ BookingStaff(FREIGHT_PERMS.trainScheduling.cancel);
+
+export const TrainSchedulingReschedule = () =>
+ BookingStaff(FREIGHT_PERMS.trainScheduling.reschedule);
+
+export const TrainSchedulingRulesManage = () =>
+ BookingStaff(FREIGHT_PERMS.trainScheduling.rulesManage);
/**
* Fleet guards take an optional granular per-resource key (locomotives:create,
diff --git a/apps/edr-freight-api/src/common/rule-engine-guards.ts b/apps/edr-freight-api/src/common/rule-engine-guards.ts
index 14c0385ee..ba8096b5b 100644
--- a/apps/edr-freight-api/src/common/rule-engine-guards.ts
+++ b/apps/edr-freight-api/src/common/rule-engine-guards.ts
@@ -13,9 +13,22 @@ export const RuleEngineView = (slug: RuleEngineResourceSlug) =>
UseGuards(JwtGuard, FreightPermissionGuard([FREIGHT_PERMS.ruleEngine.view(slug)])),
);
-export const RuleEngineManage = (slug: RuleEngineResourceSlug) =>
+// Granular CRUD replaces the retired coarse RuleEngineManage. Each write
+// endpoint carries the specific action it performs — create on POST-new,
+// update on PATCH / reorder / move-order, delete on DELETE.
+export const RuleEngineCreate = (slug: RuleEngineResourceSlug) =>
applyDecorators(
- UseGuards(JwtGuard, FreightPermissionGuard([FREIGHT_PERMS.ruleEngine.manage(slug)])),
+ UseGuards(JwtGuard, FreightPermissionGuard([FREIGHT_PERMS.ruleEngine.create(slug)])),
+ );
+
+export const RuleEngineUpdate = (slug: RuleEngineResourceSlug) =>
+ applyDecorators(
+ UseGuards(JwtGuard, FreightPermissionGuard([FREIGHT_PERMS.ruleEngine.update(slug)])),
+ );
+
+export const RuleEngineDelete = (slug: RuleEngineResourceSlug) =>
+ applyDecorators(
+ UseGuards(JwtGuard, FreightPermissionGuard([FREIGHT_PERMS.ruleEngine.delete(slug)])),
);
/**
diff --git a/apps/edr-freight-api/src/modules/contracts/contracts.controller.ts b/apps/edr-freight-api/src/modules/contracts/contracts.controller.ts
index ba80cc035..a015cd469 100644
--- a/apps/edr-freight-api/src/modules/contracts/contracts.controller.ts
+++ b/apps/edr-freight-api/src/modules/contracts/contracts.controller.ts
@@ -526,6 +526,8 @@ export class ContractsController {
contractId: view.bookingId,
reference: view.reference,
status: view.status,
+ // Drives the per-freight-type sign permission on the client.
+ freightType: contract.freightType,
templateKey: view.templateKey,
title: view.template.title,
html,
@@ -577,19 +579,21 @@ export class ContractsController {
@Post(':id/contract/sign')
@UseGuards(JwtGuard)
@ApiOperation({ summary: 'Apply digital signature (customer or staff/director/ceo)' })
- signContract(
+ async signContract(
@Param('id', ParseUUIDPipe) id: string,
@Body() dto: SignContractDto,
@CurrentUser() user: TCurrentUser,
) {
- // Each staff signing role maps to the permission that step already requires;
- // customers sign their own contract with no permission key.
- const signRolePermission: Record = {
- STAFF: FREIGHT_PERMS.contracts.signStaff,
- DIRECTOR: FREIGHT_PERMS.contracts.approveDirector,
- CEO: FREIGHT_PERMS.contracts.approveCeo,
- };
if (dto.role !== 'CUSTOMER') {
+ // Each staff signing role maps to the permission that step already
+ // requires; the STAFF counter-signature is split per freight type, so a
+ // bulk signer cannot counter-sign a container contract (and vice versa).
+ const contract = await this.contractsService.findById(id);
+ const signRolePermission: Record = {
+ STAFF: forFreightType(FREIGHT_PERMS.contracts.signStaff, contract.freightType),
+ DIRECTOR: FREIGHT_PERMS.contracts.approveDirector,
+ CEO: FREIGHT_PERMS.contracts.approveCeo,
+ };
assertFreightPermission(user, signRolePermission[dto.role]);
}
return this.transitionService.sign(id, dto, {
diff --git a/apps/edr-freight-api/src/modules/rule-engine/controllers/approval-rules.controller.ts b/apps/edr-freight-api/src/modules/rule-engine/controllers/approval-rules.controller.ts
index 5d17efe1e..ae50b9622 100644
--- a/apps/edr-freight-api/src/modules/rule-engine/controllers/approval-rules.controller.ts
+++ b/apps/edr-freight-api/src/modules/rule-engine/controllers/approval-rules.controller.ts
@@ -2,7 +2,7 @@ import {
Body, Controller, Delete, Get, HttpCode, HttpStatus,
Param, ParseUUIDPipe, Patch, Post, Query,
} from '@nestjs/common';
-import { RuleEngineManage, RuleEngineView } from '../../../common/rule-engine-guards';
+import { RuleEngineCreate, RuleEngineDelete, RuleEngineUpdate, RuleEngineView } from '../../../common/rule-engine-guards';
import { ApiBearerAuth, ApiOperation, ApiTags } from '@nestjs/swagger';
import { CreateApprovalRuleDto } from '../dto/create-approval-rule.dto';
import { ListApprovalRulesQueryDto } from '../dto/list-rule-engine-query.dto';
@@ -41,7 +41,7 @@ export class ApprovalRulesController {
}
@Post('reorder')
- @RuleEngineManage('approval-rules')
+ @RuleEngineUpdate('approval-rules')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Bulk reorder approval steps within a chain' })
reorder(@Body() dto: ReorderItemsDto) {
@@ -49,7 +49,7 @@ export class ApprovalRulesController {
}
@Post(':id/move-order')
- @RuleEngineManage('approval-rules')
+ @RuleEngineUpdate('approval-rules')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Move an approval step up or down within its chain' })
moveOrder(@Param('id', ParseUUIDPipe) id: string, @Body() dto: MoveOrderDto) {
@@ -64,21 +64,21 @@ export class ApprovalRulesController {
}
@Post()
- @RuleEngineManage('approval-rules')
+ @RuleEngineCreate('approval-rules')
@ApiOperation({ summary: 'Create an approval rule step' })
create(@Body() dto: CreateApprovalRuleDto) {
return this.service.create(dto);
}
@Patch(':id')
- @RuleEngineManage('approval-rules')
+ @RuleEngineUpdate('approval-rules')
@ApiOperation({ summary: 'Update an approval rule' })
update(@Param('id', ParseUUIDPipe) id: string, @Body() dto: UpdateApprovalRuleDto) {
return this.service.update(id, dto);
}
@Delete(':id')
- @RuleEngineManage('approval-rules')
+ @RuleEngineDelete('approval-rules')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Soft-delete an approval rule' })
remove(@Param('id', ParseUUIDPipe) id: string) {
diff --git a/apps/edr-freight-api/src/modules/rule-engine/controllers/cargo-types.controller.ts b/apps/edr-freight-api/src/modules/rule-engine/controllers/cargo-types.controller.ts
index 3b1bf6ce1..8bd9d90f5 100644
--- a/apps/edr-freight-api/src/modules/rule-engine/controllers/cargo-types.controller.ts
+++ b/apps/edr-freight-api/src/modules/rule-engine/controllers/cargo-types.controller.ts
@@ -3,7 +3,7 @@ import {
Param, ParseUUIDPipe, Patch, Post, Query,
} from '@nestjs/common';
import { ApiBearerAuth, ApiOperation, ApiTags } from '@nestjs/swagger';
-import { RuleEngineManage } from '../../../common/rule-engine-guards';
+import { RuleEngineCreate, RuleEngineDelete, RuleEngineUpdate } from '../../../common/rule-engine-guards';
import { StaffReference } from '../../../common/booking-guards';
import { CreateCargoTypeDto } from '../dto/create-cargo-type.dto';
import { ListCargoTypesQueryDto } from '../dto/list-rule-engine-query.dto';
@@ -26,7 +26,7 @@ export class CargoTypesController {
}
@Post('reorder')
- @RuleEngineManage('cargo-types')
+ @RuleEngineUpdate('cargo-types')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Bulk reorder cargo types by ID list' })
reorder(@Body() dto: ReorderItemsDto) {
@@ -34,7 +34,7 @@ export class CargoTypesController {
}
@Post(':id/move-order')
- @RuleEngineManage('cargo-types')
+ @RuleEngineUpdate('cargo-types')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Move a cargo type up or down in display order' })
moveOrder(@Param('id', ParseUUIDPipe) id: string, @Body() dto: MoveOrderDto) {
@@ -49,21 +49,21 @@ export class CargoTypesController {
}
@Post()
- @RuleEngineManage('cargo-types')
+ @RuleEngineCreate('cargo-types')
@ApiOperation({ summary: 'Create a cargo type' })
create(@Body() dto: CreateCargoTypeDto) {
return this.service.create(dto);
}
@Patch(':id')
- @RuleEngineManage('cargo-types')
+ @RuleEngineUpdate('cargo-types')
@ApiOperation({ summary: 'Update a cargo type' })
update(@Param('id', ParseUUIDPipe) id: string, @Body() dto: UpdateCargoTypeDto) {
return this.service.update(id, dto);
}
@Delete(':id')
- @RuleEngineManage('cargo-types')
+ @RuleEngineDelete('cargo-types')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Soft-delete a cargo type' })
remove(@Param('id', ParseUUIDPipe) id: string) {
diff --git a/apps/edr-freight-api/src/modules/rule-engine/controllers/container-types.controller.ts b/apps/edr-freight-api/src/modules/rule-engine/controllers/container-types.controller.ts
index 9ae96af9b..82bda724a 100644
--- a/apps/edr-freight-api/src/modules/rule-engine/controllers/container-types.controller.ts
+++ b/apps/edr-freight-api/src/modules/rule-engine/controllers/container-types.controller.ts
@@ -3,7 +3,7 @@ import {
Param, ParseUUIDPipe, Patch, Post, Query,
} from '@nestjs/common';
import { ApiBearerAuth, ApiOperation, ApiTags } from '@nestjs/swagger';
-import { RuleEngineManage } from '../../../common/rule-engine-guards';
+import { RuleEngineCreate, RuleEngineDelete, RuleEngineUpdate } from '../../../common/rule-engine-guards';
import { StaffReference } from '../../../common/booking-guards';
import { CreateContainerTypeDto } from '../dto/create-container-type.dto';
import { ListContainerTypesQueryDto } from '../dto/list-rule-engine-query.dto';
@@ -26,7 +26,7 @@ export class ContainerTypesController {
}
@Post('reorder')
- @RuleEngineManage('container-types')
+ @RuleEngineUpdate('container-types')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Bulk reorder container types by ID list' })
reorder(@Body() dto: ReorderItemsDto) {
@@ -34,7 +34,7 @@ export class ContainerTypesController {
}
@Post(':id/move-order')
- @RuleEngineManage('container-types')
+ @RuleEngineUpdate('container-types')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Move a container type up or down in display order' })
moveOrder(@Param('id', ParseUUIDPipe) id: string, @Body() dto: MoveOrderDto) {
@@ -49,21 +49,21 @@ export class ContainerTypesController {
}
@Post()
- @RuleEngineManage('container-types')
+ @RuleEngineCreate('container-types')
@ApiOperation({ summary: 'Create a container type' })
create(@Body() dto: CreateContainerTypeDto) {
return this.service.create(dto);
}
@Patch(':id')
- @RuleEngineManage('container-types')
+ @RuleEngineUpdate('container-types')
@ApiOperation({ summary: 'Update a container type' })
update(@Param('id', ParseUUIDPipe) id: string, @Body() dto: UpdateContainerTypeDto) {
return this.service.update(id, dto);
}
@Delete(':id')
- @RuleEngineManage('container-types')
+ @RuleEngineDelete('container-types')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Soft-delete a container type' })
remove(@Param('id', ParseUUIDPipe) id: string) {
diff --git a/apps/edr-freight-api/src/modules/rule-engine/controllers/priority-configs.controller.ts b/apps/edr-freight-api/src/modules/rule-engine/controllers/priority-configs.controller.ts
index 0b3334431..3188d0846 100644
--- a/apps/edr-freight-api/src/modules/rule-engine/controllers/priority-configs.controller.ts
+++ b/apps/edr-freight-api/src/modules/rule-engine/controllers/priority-configs.controller.ts
@@ -3,7 +3,7 @@ import {
Body, Controller, Delete, Get, HttpCode, HttpStatus,
Param, ParseUUIDPipe, Patch, Post, Query,
} from '@nestjs/common';
-import { RuleEngineManage, RuleEngineView } from '../../../common/rule-engine-guards';
+import { RuleEngineCreate, RuleEngineDelete, RuleEngineUpdate, RuleEngineView } from '../../../common/rule-engine-guards';
import { ApiBearerAuth, ApiOperation, ApiTags } from '@nestjs/swagger';
import { CreatePriorityConfigDto } from '../dto/create-priority-config.dto';
import { ListPriorityConfigsQueryDto } from '../dto/list-rule-engine-query.dto';
@@ -49,14 +49,14 @@ export class PriorityConfigsController {
}
@Post()
- @RuleEngineManage('priority-configs')
+ @RuleEngineCreate('priority-configs')
@ApiOperation({ summary: 'Create a priority config' })
create(@Body() dto: CreatePriorityConfigDto) {
return this.service.create(dto);
}
@Post('reorder')
- @RuleEngineManage('priority-configs')
+ @RuleEngineUpdate('priority-configs')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Bulk reorder priority configs by ID list' })
reorder(@Body() dto: ReorderItemsDto) {
@@ -64,7 +64,7 @@ export class PriorityConfigsController {
}
@Post(':id/move-order')
- @RuleEngineManage('priority-configs')
+ @RuleEngineUpdate('priority-configs')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Move a priority config up or down in display order' })
moveOrder(@Param('id', ParseUUIDPipe) id: string, @Body() dto: MoveOrderDto) {
@@ -72,14 +72,14 @@ export class PriorityConfigsController {
}
@Patch(':id')
- @RuleEngineManage('priority-configs')
+ @RuleEngineUpdate('priority-configs')
@ApiOperation({ summary: 'Update a priority config' })
update(@Param('id', ParseUUIDPipe) id: string, @Body() dto: UpdatePriorityConfigDto) {
return this.service.update(id, dto);
}
@Delete(':id')
- @RuleEngineManage('priority-configs')
+ @RuleEngineDelete('priority-configs')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Soft-delete a priority config' })
remove(@Param('id', ParseUUIDPipe) id: string) {
diff --git a/apps/edr-freight-api/src/modules/rule-engine/controllers/priority-rule-change-requests.controller.ts b/apps/edr-freight-api/src/modules/rule-engine/controllers/priority-rule-change-requests.controller.ts
index 942b2c32c..2633a0cf1 100644
--- a/apps/edr-freight-api/src/modules/rule-engine/controllers/priority-rule-change-requests.controller.ts
+++ b/apps/edr-freight-api/src/modules/rule-engine/controllers/priority-rule-change-requests.controller.ts
@@ -11,7 +11,7 @@ import { ApiBearerAuth, ApiOperation, ApiQuery, ApiTags } from '@nestjs/swagger'
import { CurrentUser } from '@edr/api-common';
import type { TCurrentUser } from '@tria-plc/api-common/modules/auth/types/current-user.type';
-import { RuleEngineManage, RuleEngineView } from '../../../common/rule-engine-guards';
+import { RuleEngineCreate, RuleEngineUpdate, RuleEngineView } from '../../../common/rule-engine-guards';
import { isSuperAdmin } from '../../../common/freight-permission.util';
import {
DecidePriorityRuleChangeDto,
@@ -32,7 +32,7 @@ export class PriorityRuleChangeRequestsController {
constructor(private readonly service: PriorityRuleChangeRequestsService) {}
@Post()
- @RuleEngineManage('priority-configs')
+ @RuleEngineCreate('priority-configs')
@ApiOperation({ summary: 'Submit a priority-rule change for approval' })
submit(
@Body() dto: SubmitPriorityRuleChangeDto,
@@ -50,7 +50,7 @@ export class PriorityRuleChangeRequestsController {
}
@Post(':id/approve')
- @RuleEngineManage('priority-configs')
+ @RuleEngineUpdate('priority-configs')
@ApiOperation({ summary: 'Approve and apply a pending change' })
approve(
@Param('id', ParseUUIDPipe) id: string,
@@ -63,7 +63,7 @@ export class PriorityRuleChangeRequestsController {
}
@Post(':id/reject')
- @RuleEngineManage('priority-configs')
+ @RuleEngineUpdate('priority-configs')
@ApiOperation({ summary: 'Reject a pending change' })
reject(
@Param('id', ParseUUIDPipe) id: string,
diff --git a/apps/edr-freight-api/src/modules/rule-engine/controllers/rate-change-requests.controller.ts b/apps/edr-freight-api/src/modules/rule-engine/controllers/rate-change-requests.controller.ts
index 9972ab06a..8c3a99c9d 100644
--- a/apps/edr-freight-api/src/modules/rule-engine/controllers/rate-change-requests.controller.ts
+++ b/apps/edr-freight-api/src/modules/rule-engine/controllers/rate-change-requests.controller.ts
@@ -4,7 +4,7 @@ import { CurrentUser } from '@edr/api-common';
import type { TCurrentUser } from '@tria-plc/api-common/modules/auth/types/current-user.type';
import { isSuperAdmin } from '../../../common/freight-permission.util';
-import { RuleEngineApprove, RuleEngineManage, RuleEngineView } from '../../../common/rule-engine-guards';
+import { RuleEngineApprove, RuleEngineCreate, RuleEngineView } from '../../../common/rule-engine-guards';
import { DecideRateChangeDto, SubmitRateChangeDto } from '../dto/rate-change-request.dto';
import { RateChangeStatus } from '../entities/rate-change-request.entity';
import { RateChangeRequestsService } from '../services/rate-change-requests.service';
@@ -21,7 +21,7 @@ export class RateChangeRequestsController {
constructor(private readonly service: RateChangeRequestsService) {}
@Post()
- @RuleEngineManage('rates')
+ @RuleEngineCreate('rates')
@ApiOperation({ summary: 'Propose a change to a LIVE rate' })
submit(@Body() dto: SubmitRateChangeDto, @CurrentUser() user: TCurrentUser) {
return this.service.submit(dto, user?.id);
diff --git a/apps/edr-freight-api/src/modules/rule-engine/controllers/rates.controller.ts b/apps/edr-freight-api/src/modules/rule-engine/controllers/rates.controller.ts
index 92ac7f5d6..f10c0afab 100644
--- a/apps/edr-freight-api/src/modules/rule-engine/controllers/rates.controller.ts
+++ b/apps/edr-freight-api/src/modules/rule-engine/controllers/rates.controller.ts
@@ -5,7 +5,7 @@ import {
import { ApiBearerAuth, ApiOperation, ApiTags } from '@nestjs/swagger';
import { CurrentUser } from '@edr/api-common';
import type { TCurrentUser } from '@tria-plc/api-common/modules/auth/types/current-user.type';
-import { RuleEngineManage, RuleEngineView } from '../../../common/rule-engine-guards';
+import { RuleEngineCreate, RuleEngineDelete, RuleEngineUpdate, RuleEngineView } from '../../../common/rule-engine-guards';
import { isSuperAdmin } from '../../../common/freight-permission.util';
import { CreateRateDto } from '../dto/create-rate.dto';
import { ListRatesQueryDto } from '../dto/list-rule-engine-query.dto';
@@ -44,7 +44,7 @@ export class RatesController {
}
@Post()
- @RuleEngineManage('rates')
+ @RuleEngineCreate('rates')
@ApiOperation({ summary: 'Create a rate (DRAFT)' })
create(
@Body() dto: CreateRateDto,
@@ -54,21 +54,21 @@ export class RatesController {
}
@Patch(':id')
- @RuleEngineManage('rates')
+ @RuleEngineUpdate('rates')
@ApiOperation({ summary: 'Update a DRAFT rate' })
update(@Param('id', ParseUUIDPipe) id: string, @Body() dto: UpdateRateDto) {
return this.service.update(id, dto);
}
@Post(':id/submit')
- @RuleEngineManage('rates')
+ @RuleEngineUpdate('rates')
@ApiOperation({ summary: 'Submit rate for CEO approval' })
submit(@Param('id', ParseUUIDPipe) id: string) {
return this.service.submitForApproval(id);
}
@Post(':id/approve')
- @RuleEngineManage('rates')
+ @RuleEngineUpdate('rates')
@ApiOperation({ summary: 'CEO approves a rate' })
approve(
@Param('id', ParseUUIDPipe) id: string,
@@ -80,7 +80,7 @@ export class RatesController {
}
@Delete(':id')
- @RuleEngineManage('rates')
+ @RuleEngineDelete('rates')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Soft-delete a rate' })
remove(@Param('id', ParseUUIDPipe) id: string) {
diff --git a/apps/edr-freight-api/src/modules/rule-engine/controllers/service-types.controller.ts b/apps/edr-freight-api/src/modules/rule-engine/controllers/service-types.controller.ts
index 85d76b326..34b4f53a5 100644
--- a/apps/edr-freight-api/src/modules/rule-engine/controllers/service-types.controller.ts
+++ b/apps/edr-freight-api/src/modules/rule-engine/controllers/service-types.controller.ts
@@ -2,7 +2,7 @@ import {
Body, Controller, Delete, Get, HttpCode, HttpStatus,
Param, ParseUUIDPipe, Patch, Post, Query,
} from '@nestjs/common';
-import { RuleEngineManage } from '../../../common/rule-engine-guards';
+import { RuleEngineCreate, RuleEngineDelete, RuleEngineUpdate } from '../../../common/rule-engine-guards';
import { StaffReference } from '../../../common/booking-guards';
import { ApiBearerAuth, ApiOperation, ApiTags } from '@nestjs/swagger';
import { CreateServiceTypeDto } from '../dto/create-service-type.dto';
@@ -26,7 +26,7 @@ export class ServiceTypesController {
}
@Post('reorder')
- @RuleEngineManage('service-types')
+ @RuleEngineUpdate('service-types')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Bulk reorder service types by ID list' })
reorder(@Body() dto: ReorderItemsDto) {
@@ -34,7 +34,7 @@ export class ServiceTypesController {
}
@Post(':id/move-order')
- @RuleEngineManage('service-types')
+ @RuleEngineUpdate('service-types')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Move a service type up or down in display order' })
moveOrder(@Param('id', ParseUUIDPipe) id: string, @Body() dto: MoveOrderDto) {
@@ -49,21 +49,21 @@ export class ServiceTypesController {
}
@Post()
- @RuleEngineManage('service-types')
+ @RuleEngineCreate('service-types')
@ApiOperation({ summary: 'Create a service type' })
create(@Body() dto: CreateServiceTypeDto) {
return this.service.create(dto);
}
@Patch(':id')
- @RuleEngineManage('service-types')
+ @RuleEngineUpdate('service-types')
@ApiOperation({ summary: 'Update a service type' })
update(@Param('id', ParseUUIDPipe) id: string, @Body() dto: UpdateServiceTypeDto) {
return this.service.update(id, dto);
}
@Delete(':id')
- @RuleEngineManage('service-types')
+ @RuleEngineDelete('service-types')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Soft-delete a service type' })
remove(@Param('id', ParseUUIDPipe) id: string) {
diff --git a/apps/edr-freight-api/src/modules/rule-engine/controllers/shipping-lines.controller.ts b/apps/edr-freight-api/src/modules/rule-engine/controllers/shipping-lines.controller.ts
index f078624eb..62ca5f575 100644
--- a/apps/edr-freight-api/src/modules/rule-engine/controllers/shipping-lines.controller.ts
+++ b/apps/edr-freight-api/src/modules/rule-engine/controllers/shipping-lines.controller.ts
@@ -2,7 +2,7 @@ import {
Body, Controller, Delete, Get, HttpCode, HttpStatus,
Param, ParseUUIDPipe, Patch, Post, Query,
} from '@nestjs/common';
-import { RuleEngineManage } from '../../../common/rule-engine-guards';
+import { RuleEngineCreate, RuleEngineDelete, RuleEngineUpdate } from '../../../common/rule-engine-guards';
import { StaffReference } from '../../../common/booking-guards';
import { ApiBearerAuth, ApiOperation, ApiTags } from '@nestjs/swagger';
import { CreateShippingLineDto } from '../dto/create-shipping-line.dto';
@@ -31,21 +31,21 @@ export class ShippingLinesController {
}
@Post()
- @RuleEngineManage('shipping-lines')
+ @RuleEngineCreate('shipping-lines')
@ApiOperation({ summary: 'Create a shipping line' })
create(@Body() dto: CreateShippingLineDto) {
return this.service.create(dto);
}
@Patch(':id')
- @RuleEngineManage('shipping-lines')
+ @RuleEngineUpdate('shipping-lines')
@ApiOperation({ summary: 'Update a shipping line' })
update(@Param('id', ParseUUIDPipe) id: string, @Body() dto: UpdateShippingLineDto) {
return this.service.update(id, dto);
}
@Delete(':id')
- @RuleEngineManage('shipping-lines')
+ @RuleEngineDelete('shipping-lines')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Soft-delete a shipping line' })
remove(@Param('id', ParseUUIDPipe) id: string) {
diff --git a/apps/edr-freight-api/src/modules/rule-engine/controllers/weight-limit-rules.controller.ts b/apps/edr-freight-api/src/modules/rule-engine/controllers/weight-limit-rules.controller.ts
index 98c45798e..b51ac13ff 100644
--- a/apps/edr-freight-api/src/modules/rule-engine/controllers/weight-limit-rules.controller.ts
+++ b/apps/edr-freight-api/src/modules/rule-engine/controllers/weight-limit-rules.controller.ts
@@ -2,7 +2,7 @@ import {
Body, Controller, Delete, Get, HttpCode, HttpStatus,
Param, ParseUUIDPipe, Patch, Post, Query,
} from '@nestjs/common';
-import { RuleEngineManage, RuleEngineView } from '../../../common/rule-engine-guards';
+import { RuleEngineCreate, RuleEngineDelete, RuleEngineUpdate, RuleEngineView } from '../../../common/rule-engine-guards';
import { ApiBearerAuth, ApiOperation, ApiTags } from '@nestjs/swagger';
import { CreateWeightLimitRuleDto } from '../dto/create-weight-limit-rule.dto';
import { ListWeightLimitRulesQueryDto } from '../dto/list-rule-engine-query.dto';
@@ -30,21 +30,21 @@ export class WeightLimitRulesController {
}
@Post()
- @RuleEngineManage('weight-limit-rules')
+ @RuleEngineCreate('weight-limit-rules')
@ApiOperation({ summary: 'Create a weight limit rule' })
create(@Body() dto: CreateWeightLimitRuleDto) {
return this.service.create(dto);
}
@Patch(':id')
- @RuleEngineManage('weight-limit-rules')
+ @RuleEngineUpdate('weight-limit-rules')
@ApiOperation({ summary: 'Update a weight limit rule' })
update(@Param('id', ParseUUIDPipe) id: string, @Body() dto: UpdateWeightLimitRuleDto) {
return this.service.update(id, dto);
}
@Delete(':id')
- @RuleEngineManage('weight-limit-rules')
+ @RuleEngineDelete('weight-limit-rules')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Soft-delete a weight limit rule' })
remove(@Param('id', ParseUUIDPipe) id: string) {
diff --git a/apps/edr-freight-api/src/modules/rule-engine/controllers/yard-distances.controller.ts b/apps/edr-freight-api/src/modules/rule-engine/controllers/yard-distances.controller.ts
index b0ba2c8d5..320a62a3e 100644
--- a/apps/edr-freight-api/src/modules/rule-engine/controllers/yard-distances.controller.ts
+++ b/apps/edr-freight-api/src/modules/rule-engine/controllers/yard-distances.controller.ts
@@ -12,7 +12,7 @@ import {
Query,
} from '@nestjs/common';
import { ApiBearerAuth, ApiOperation, ApiTags } from '@nestjs/swagger';
-import { RuleEngineManage } from '../../../common/rule-engine-guards';
+import { RuleEngineCreate, RuleEngineDelete, RuleEngineUpdate } from '../../../common/rule-engine-guards';
import { StaffReference } from '../../../common/booking-guards';
import { CreateYardDistanceDto } from '../dto/create-yard-distance.dto';
import { ListYardDistancesQueryDto } from '../dto/list-rule-engine-query.dto';
@@ -40,21 +40,21 @@ export class YardDistancesController {
}
@Post()
- @RuleEngineManage('yard-distances')
+ @RuleEngineCreate('yard-distances')
@ApiOperation({ summary: 'Create a yard distance' })
create(@Body() dto: CreateYardDistanceDto) {
return this.service.create(dto);
}
@Patch(':id')
- @RuleEngineManage('yard-distances')
+ @RuleEngineUpdate('yard-distances')
@ApiOperation({ summary: 'Update a yard distance' })
update(@Param('id', ParseUUIDPipe) id: string, @Body() dto: UpdateYardDistanceDto) {
return this.service.update(id, dto);
}
@Delete(':id')
- @RuleEngineManage('yard-distances')
+ @RuleEngineDelete('yard-distances')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Soft-delete a yard distance' })
remove(@Param('id', ParseUUIDPipe) id: string) {
diff --git a/apps/edr-freight-api/src/modules/rule-engine/controllers/yards.controller.ts b/apps/edr-freight-api/src/modules/rule-engine/controllers/yards.controller.ts
index b8f88b6b3..883793e03 100644
--- a/apps/edr-freight-api/src/modules/rule-engine/controllers/yards.controller.ts
+++ b/apps/edr-freight-api/src/modules/rule-engine/controllers/yards.controller.ts
@@ -2,7 +2,7 @@ import {
Body, Controller, Delete, Get, HttpCode, HttpStatus,
Param, ParseUUIDPipe, Patch, Post, Query,
} from '@nestjs/common';
-import { RuleEngineManage } from '../../../common/rule-engine-guards';
+import { RuleEngineCreate, RuleEngineDelete, RuleEngineUpdate } from '../../../common/rule-engine-guards';
import { StaffReference } from '../../../common/booking-guards';
import { ApiBearerAuth, ApiOperation, ApiTags } from '@nestjs/swagger';
import { CreateYardDto } from '../dto/create-yard.dto';
@@ -28,7 +28,7 @@ export class YardsController {
}
@Post('reorder')
- @RuleEngineManage('yards')
+ @RuleEngineUpdate('yards')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Bulk reorder yards by ID list' })
reorder(@Body() dto: ReorderItemsDto) {
@@ -36,7 +36,7 @@ export class YardsController {
}
@Post(':id/move-order')
- @RuleEngineManage('yards')
+ @RuleEngineUpdate('yards')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Move a yard up or down in display order' })
moveOrder(@Param('id', ParseUUIDPipe) id: string, @Body() dto: MoveOrderDto) {
@@ -51,21 +51,21 @@ export class YardsController {
}
@Post()
- @RuleEngineManage('yards')
+ @RuleEngineCreate('yards')
@ApiOperation({ summary: 'Create a yard' })
create(@Body() dto: CreateYardDto) {
return this.service.create(dto);
}
@Patch(':id')
- @RuleEngineManage('yards')
+ @RuleEngineUpdate('yards')
@ApiOperation({ summary: 'Update a yard' })
update(@Param('id', ParseUUIDPipe) id: string, @Body() dto: UpdateYardDto) {
return this.service.update(id, dto);
}
@Delete(':id')
- @RuleEngineManage('yards')
+ @RuleEngineDelete('yards')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Soft-delete a yard' })
remove(@Param('id', ParseUUIDPipe) id: string) {
diff --git a/apps/edr-freight-api/src/modules/scheduling-reschedule/scheduling-reschedule.controller.ts b/apps/edr-freight-api/src/modules/scheduling-reschedule/scheduling-reschedule.controller.ts
index 5be404ead..e4f8a1e46 100644
--- a/apps/edr-freight-api/src/modules/scheduling-reschedule/scheduling-reschedule.controller.ts
+++ b/apps/edr-freight-api/src/modules/scheduling-reschedule/scheduling-reschedule.controller.ts
@@ -2,7 +2,7 @@ import { Body, Controller, Param, ParseUUIDPipe, Post } from '@nestjs/common';
import { ApiBearerAuth, ApiOperation, ApiTags } from '@nestjs/swagger';
import { CurrentUser } from '@edr/api-common';
-import { TrainSchedulingManage } from '../../common/booking-guards';
+import { TrainSchedulingReschedule } from '../../common/booking-guards';
import {
type AuthUserPayload,
resolveAuthUserId,
@@ -18,7 +18,7 @@ export class SchedulingRescheduleController {
constructor(private readonly schedulingRescheduleService: SchedulingRescheduleService) {}
@Post('preview')
- @TrainSchedulingManage()
+ @TrainSchedulingReschedule()
@ApiOperation({ summary: 'Preview reschedule / government preempt plan' })
preview(
@Param('id', ParseUUIDPipe) id: string,
@@ -28,7 +28,7 @@ export class SchedulingRescheduleController {
}
@Post('execute')
- @TrainSchedulingManage()
+ @TrainSchedulingReschedule()
@ApiOperation({ summary: 'Execute a confirmed reschedule plan' })
execute(
@Param('id', ParseUUIDPipe) id: string,
@@ -50,7 +50,7 @@ export class SchedulingMaintenanceController {
constructor(private readonly schedulingRescheduleService: SchedulingRescheduleService) {}
@Post('maintenance')
- @TrainSchedulingManage()
+ @TrainSchedulingReschedule()
@ApiOperation({ summary: 'Reschedule train for maintenance (new departure + rebalance)' })
maintenance(
@Param('id', ParseUUIDPipe) id: string,
diff --git a/apps/edr-freight-api/src/modules/train-scheduling/train-scheduling.controller.ts b/apps/edr-freight-api/src/modules/train-scheduling/train-scheduling.controller.ts
index b1f79733e..a05286cb3 100644
--- a/apps/edr-freight-api/src/modules/train-scheduling/train-scheduling.controller.ts
+++ b/apps/edr-freight-api/src/modules/train-scheduling/train-scheduling.controller.ts
@@ -1,23 +1,18 @@
-import {
- Body,
- Controller,
- Delete,
- Get,
- Param,
- ParseUUIDPipe,
- Patch,
- Post,
- Query,
- Res,
-} from "@nestjs/common";
-import { CurrentUser } from "@edr/api-common";
import { ApiBearerAuth, ApiOperation, ApiTags } from "@nestjs/swagger";
import type { Response } from "express";
import type { AuthUserPayload } from "../../common/resolve-auth-user-id";
import { resolveAuthUserId } from "../../common/resolve-auth-user-id";
import {
- TrainSchedulingManage,
+ Body, Controller, Delete, Get, Param, ParseUUIDPipe, Patch, Post, Query, Res,
+} from "@nestjs/common";
+import { CurrentUser } from "@edr/api-common";
+import {
+ TrainSchedulingCancel,
+ TrainSchedulingCreate,
+ TrainSchedulingReschedule,
+ TrainSchedulingRulesManage,
+ TrainSchedulingUpdate,
TrainSchedulingView,
} from "../../common/booking-guards";
import { AcceptIntercityBookingsDto } from "./dto/accept-intercity-bookings.dto";
@@ -114,7 +109,7 @@ export class TrainSchedulingController {
}
@Patch("global-rules")
- @TrainSchedulingManage()
+ @TrainSchedulingRulesManage()
@ApiOperation({ summary: "Update global train scheduling rules (singleton)" })
updateGlobalRules(@Body() dto: UpdateTrainSchedulingGlobalRulesDto) {
return this.trainSchedulingService.updateTrainSchedulingGlobalRules(dto);
@@ -181,7 +176,7 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/adjust-consist")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary:
"Permanently trim free wagons off / couple yard wagons onto the schedule's built train (weight & length limits incl. tolerance enforced, every change logged)",
@@ -283,21 +278,21 @@ export class TrainSchedulingController {
}
@Post("container/schedules")
- @TrainSchedulingManage()
+ @TrainSchedulingCreate()
@ApiOperation({ summary: "Create a container train schedule" })
createContainerTrainSchedule(@Body() dto: CreateContainerTrainScheduleDto) {
return this.trainSchedulingService.createContainerTrainSchedule(dto);
}
@Post("bulk/schedules")
- @TrainSchedulingManage()
+ @TrainSchedulingCreate()
@ApiOperation({ summary: "Create a bulk train schedule" })
createBulkTrainSchedule(@Body() dto: CreateContainerTrainScheduleDto) {
return this.trainSchedulingService.createContainerTrainSchedule(dto);
}
@Post("schedules/:id/assign-bookings")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary: "Assign bookings to a train schedule (mixed-capable)",
})
@@ -309,7 +304,7 @@ export class TrainSchedulingController {
}
@Post("container/schedules/:id/assign-bookings")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({ summary: "Assign container bookings to a train schedule" })
assignContainerBookings(
@Param("id", ParseUUIDPipe) id: string,
@@ -323,7 +318,7 @@ export class TrainSchedulingController {
}
@Post("bulk/schedules/:id/assign-bookings")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({ summary: "Assign bulk bookings to a train schedule" })
assignBulkBookings(
@Param("id", ParseUUIDPipe) id: string,
@@ -337,7 +332,7 @@ export class TrainSchedulingController {
}
@Delete("schedules/:id/bookings/:bookingId")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({ summary: "Unassign a booking from a train schedule" })
unassignBooking(
@Param("id", ParseUUIDPipe) id: string,
@@ -352,7 +347,7 @@ export class TrainSchedulingController {
}
@Delete("schedules/:id/wagons/:trainSetWagonId")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({ summary: "Remove an empty wagon slot from a train" })
removeWagonSlot(
@Param("id", ParseUUIDPipe) id: string,
@@ -365,7 +360,7 @@ export class TrainSchedulingController {
}
@Patch("schedules/:id/container-items/:itemId")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({ summary: "Update a container number on a wagon slot" })
updateContainerItem(
@Param("id", ParseUUIDPipe) id: string,
@@ -376,7 +371,7 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/wagons/:wagonId/move-load")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary:
"Move a wagon's whole load to another wagon (empty → move/repin, loaded → swap loads)",
@@ -397,7 +392,7 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/assign-unassigned-booking")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary:
"Assign one linked unallocated booking to wagons (preserves existing assignments)",
@@ -429,7 +424,7 @@ export class TrainSchedulingController {
}
@Patch("schedules/:id/import-loading-status")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary:
"Mark import bookings loaded/unloaded on this schedule (tracking only, does not affect dispatch)",
@@ -442,7 +437,7 @@ export class TrainSchedulingController {
}
@Patch("schedules/:id/loading-status")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary:
"Mark bookings loaded/unloaded on this schedule (any direction, pre-dispatch only)",
@@ -455,21 +450,21 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/pin-wagons")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({ summary: "Pin physical wagons to train set slots" })
pinWagons(@Param("id", ParseUUIDPipe) id: string, @Body() dto: PinWagonsDto) {
return this.trainSchedulingService.pinWagons(id, dto);
}
@Post("schedules/:id/finalize")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({ summary: "Finalize a draft train schedule" })
finalizeSchedule(@Param("id", ParseUUIDPipe) id: string) {
return this.trainSchedulingService.finalizeSchedule(id);
}
@Post("schedules/:id/dispatch")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({ summary: "Dispatch a scheduled train" })
dispatchSchedule(@Param("id", ParseUUIDPipe) id: string) {
return this.trainSchedulingService.dispatchSchedule(id);
@@ -496,7 +491,7 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/intercity/accept")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary:
"Accept intercity bookings onto this train (opens their pay window; capacity re-checked per booking)",
@@ -519,7 +514,7 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/bookings/:bookingId/load")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary:
"Confirm a booking's cargo loaded at its origin yard (any direction; train must be at that yard)",
@@ -532,7 +527,7 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/bookings/:bookingId/unload")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary:
"Confirm a booking's cargo unloaded at its destination yard — per-booking arrival, may precede the train's final arrival",
@@ -545,7 +540,7 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/intercity/:bookingId/load")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary: "Confirm intercity cargo loaded (train must be at the booking's origin yard)",
})
@@ -557,7 +552,7 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/intercity/:bookingId/unload")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary:
"Confirm intercity cargo unloaded at the booking's destination yard (completes the booking)",
@@ -577,7 +572,7 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/import-djibouti/documents")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({ summary: "Upload/check an import Djibouti-side document" })
uploadImportDjiboutiDocument(
@Param("id", ParseUUIDPipe) id: string,
@@ -587,7 +582,7 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/import-djibouti/gatepass-granted")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({ summary: "Mark import Djibouti gatepass permission granted" })
grantImportDjiboutiGatepass(
@Param("id", ParseUUIDPipe) id: string,
@@ -597,7 +592,7 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/import-djibouti/ready-for-loading")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({ summary: "Mark import train ready for loading at Djibouti" })
markImportReadyForLoading(
@Param("id", ParseUUIDPipe) id: string,
@@ -607,7 +602,7 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/import-djibouti/loaded-on-train")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({ summary: "Confirm import cargo loaded on train at Djibouti" })
confirmImportLoadedOnTrain(
@Param("id", ParseUUIDPipe) id: string,
@@ -617,7 +612,7 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/confirm-loading")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary:
"Confirm cargo loaded on the train (any direction; unblocks import-Djibouti dispatch)",
@@ -630,7 +625,7 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/import-djibouti/depart")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({ summary: "Depart loaded import train from Djibouti" })
departImportFromDjibouti(
@Param("id", ParseUUIDPipe) id: string,
@@ -640,7 +635,7 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/import-djibouti/load-list")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({ summary: "Generate import load list / marshalling document summary" })
generateImportLoadList(
@Param("id", ParseUUIDPipe) id: string,
@@ -680,7 +675,7 @@ export class TrainSchedulingController {
// ---- batch / booking-window staff actions ----
@Post("schedules/:id/run-batch")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({ summary: "Manually run the batch fill for a schedule" })
async runBatch(@Param("id", ParseUUIDPipe) id: string) {
await this.bookingBatchService.fillSchedule(id);
@@ -688,7 +683,7 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/run-allocation")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary: "Run wagon-level allocation for all eligible linked bookings",
})
@@ -697,7 +692,7 @@ export class TrainSchedulingController {
}
@Patch("schedules/:id/booking-window")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({ summary: "Open or close a schedule booking window" })
async setBookingWindow(
@Param("id", ParseUUIDPipe) id: string,
@@ -711,7 +706,7 @@ export class TrainSchedulingController {
}
@Patch("schedules/:id/window-rule")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary:
"Override the booking-window rule for one schedule (open/close hour, duration, doc-review, payment, lead days) — only before the window opens",
@@ -725,7 +720,7 @@ export class TrainSchedulingController {
}
@Patch("schedules/:id/schedule-date")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary:
"Reschedule a train's departure date — only before the booking window opens, and only if the new date still leaves room for the booking lead window",
@@ -739,7 +734,7 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/maintenance")
- @TrainSchedulingManage()
+ @TrainSchedulingReschedule()
@ApiOperation({
summary:
"Maintenance reschedule: move the train to a new departure with every allocated booking aboard — links, wagons and window settings unchanged",
@@ -753,7 +748,7 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/doc-review-complete")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary:
"Staff finished document review early — run the batch/payment phase now (applies to the whole route-day group)",
@@ -764,7 +759,7 @@ export class TrainSchedulingController {
}
@Post("bookings/:bookingId/mark-paid")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary: "Staff: mark a reserved booking paid and allocate it now",
})
@@ -774,7 +769,7 @@ export class TrainSchedulingController {
}
@Post("bookings/:bookingId/expire")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary: "Staff: expire a reservation and free its capacity",
})
@@ -784,7 +779,7 @@ export class TrainSchedulingController {
}
@Post("bookings/:bookingId/move-schedule")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary: "Re-point a booking to another OPEN same-route schedule",
})
@@ -806,7 +801,7 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/checkpoints")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary: "Log the train passing a station (final station triggers arrival)",
})
@@ -818,7 +813,7 @@ export class TrainSchedulingController {
}
@Post("schedules/:id/arrive")
- @TrainSchedulingManage()
+ @TrainSchedulingUpdate()
@ApiOperation({
summary:
"Mark a dispatched train arrived (move assets to destination yard, free assets)",
@@ -856,14 +851,14 @@ export class TrainSchedulingController {
}
@Post("container/schedules/:id/cancel")
- @TrainSchedulingManage()
+ @TrainSchedulingCancel()
@ApiOperation({ summary: "Cancel container train schedule" })
cancelTrainSchedule(@Param("id", ParseUUIDPipe) id: string) {
return this.trainSchedulingService.cancelTrainSchedule(id);
}
@Post('bulk/schedules/:id/cancel')
- @TrainSchedulingManage()
+ @TrainSchedulingCancel()
@ApiOperation({ summary: "Cancel bulk train schedule" })
cancelBulkTrainSchedule(@Param("id", ParseUUIDPipe) id: string) {
return this.trainSchedulingService.cancelTrainSchedule(id);
diff --git a/apps/edr-freight-api/src/modules/train-scheduling/train-scheduling.service.ts b/apps/edr-freight-api/src/modules/train-scheduling/train-scheduling.service.ts
index 03b293e4c..614afe275 100644
--- a/apps/edr-freight-api/src/modules/train-scheduling/train-scheduling.service.ts
+++ b/apps/edr-freight-api/src/modules/train-scheduling/train-scheduling.service.ts
@@ -2303,14 +2303,19 @@ export class TrainSchedulingService {
);
if (direction !== 'EXPORT') return;
+ // Only bookings boarding at the schedule's ORIGIN station gate dispatch —
+ // a mid-corridor boarder (origin B on an A→B→C→D run) is loaded when the
+ // train reaches its yard, so its warehouse state says nothing at departure.
const rows: Array<{ reference: string | null; status: string }> = await this.dataSource.query(
`WITH ${SCHEDULE_BOOKINGS_CTE}
SELECT DISTINCT b.reference AS "reference", inv.status AS "status"
FROM sched_bookings sb
JOIN freight.bookings b ON b.id = sb.booking_id AND b.deleted_at IS NULL
+ JOIN freight.train_schedules ts ON ts.id = sb.schedule_id
JOIN freight.warehouse_inventory inv
ON inv.booking_id = b.id AND inv.deleted_at IS NULL
WHERE sb.schedule_id = $1
+ AND b.origin_yard_id = ts.origin_station_id
AND inv.status IN ('RECEIVED', 'STORED', 'READY_FOR_LOADING')`,
[scheduleId],
);
@@ -5625,9 +5630,12 @@ export class TrainSchedulingService {
// --- validate additions: AVAILABLE, loose, standing in the train's yard ---
const added: Wagon[] = [];
for (const wagonId of addWagonIds) {
+ // No `relations` on this query: Postgres refuses FOR UPDATE through the
+ // nullable side of the wagonType LEFT JOIN ("FOR UPDATE cannot be
+ // applied to the nullable side of an outer join"). Lock the row alone,
+ // then attach its type with a separate unlocked lookup.
const wagon = await manager.getRepository(Wagon).findOne({
where: { id: wagonId },
- relations: { wagonType: true },
lock: { mode: 'pessimistic_write' },
});
if (!wagon) throw new NotFoundException(`Wagon ${wagonId} not found`);
@@ -5644,6 +5652,10 @@ export class TrainSchedulingService {
`Wagon ${wagon.wagonNumber} is not in the train's yard — only wagons in the same yard can be coupled`,
);
}
+ wagon.wagonType =
+ (await manager
+ .getRepository(WagonType)
+ .findOne({ where: { id: wagon.wagonTypeId } })) ?? undefined;
added.push(wagon);
}
diff --git a/apps/edr-freight-api/src/modules/truck-types/truck-types.controller.ts b/apps/edr-freight-api/src/modules/truck-types/truck-types.controller.ts
index 8c51b824e..516d1d7d5 100644
--- a/apps/edr-freight-api/src/modules/truck-types/truck-types.controller.ts
+++ b/apps/edr-freight-api/src/modules/truck-types/truck-types.controller.ts
@@ -13,7 +13,12 @@ import {
} from '@nestjs/common';
import { ApiBearerAuth, ApiOperation, ApiTags } from '@nestjs/swagger';
-import { RuleEngineManage, RuleEngineView } from '../../common/rule-engine-guards';
+import {
+ RuleEngineCreate,
+ RuleEngineDelete,
+ RuleEngineUpdate,
+ RuleEngineView,
+} from '../../common/rule-engine-guards';
import { CreateTruckTypeDto } from './dto/create-truck-type.dto';
import { UpdateTruckTypeDto } from './dto/update-truck-type.dto';
@@ -51,21 +56,21 @@ export class TruckTypesController {
}
@Post()
- @RuleEngineManage('truck-types')
+ @RuleEngineCreate('truck-types')
@ApiOperation({ summary: 'Create a truck type' })
create(@Body() dto: CreateTruckTypeDto) {
return this.truckTypesService.create(dto);
}
@Patch(':id')
- @RuleEngineManage('truck-types')
+ @RuleEngineUpdate('truck-types')
@ApiOperation({ summary: 'Update a truck type' })
update(@Param('id', ParseUUIDPipe) id: string, @Body() dto: UpdateTruckTypeDto) {
return this.truckTypesService.update(id, dto);
}
@Delete(':id')
- @RuleEngineManage('truck-types')
+ @RuleEngineDelete('truck-types')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Soft-delete a truck type' })
remove(@Param('id', ParseUUIDPipe) id: string) {
diff --git a/apps/edr-freight-api/src/modules/wagon-types/wagon-types.controller.ts b/apps/edr-freight-api/src/modules/wagon-types/wagon-types.controller.ts
index 8f6417220..fca35c124 100644
--- a/apps/edr-freight-api/src/modules/wagon-types/wagon-types.controller.ts
+++ b/apps/edr-freight-api/src/modules/wagon-types/wagon-types.controller.ts
@@ -13,7 +13,7 @@ import {
} from '@nestjs/common';
import { ApiBearerAuth, ApiOperation, ApiTags } from '@nestjs/swagger';
-import { RuleEngineManage, RuleEngineView } from '../../common/rule-engine-guards';
+import { RuleEngineCreate, RuleEngineDelete, RuleEngineUpdate, RuleEngineView } from '../../common/rule-engine-guards';
import { CreateWagonTypeDto } from './dto/create-wagon-type.dto';
import { UpdateWagonTypeDto } from './dto/update-wagon-type.dto';
@@ -51,21 +51,21 @@ export class WagonTypesController {
}
@Post()
- @RuleEngineManage('wagon-types')
+ @RuleEngineCreate('wagon-types')
@ApiOperation({ summary: 'Create a wagon type' })
create(@Body() dto: CreateWagonTypeDto) {
return this.wagonTypesService.create(dto);
}
@Patch(':id')
- @RuleEngineManage('wagon-types')
+ @RuleEngineUpdate('wagon-types')
@ApiOperation({ summary: 'Update a wagon type' })
update(@Param('id', ParseUUIDPipe) id: string, @Body() dto: UpdateWagonTypeDto) {
return this.wagonTypesService.update(id, dto);
}
@Delete(':id')
- @RuleEngineManage('wagon-types')
+ @RuleEngineDelete('wagon-types')
@HttpCode(HttpStatus.NO_CONTENT)
@ApiOperation({ summary: 'Soft-delete a wagon type' })
remove(@Param('id', ParseUUIDPipe) id: string) {
diff --git a/apps/edr-freight-api/src/seed/file-upload-settings.seeder.ts b/apps/edr-freight-api/src/seed/file-upload-settings.seeder.ts
index 03908b62b..fa74f9043 100644
--- a/apps/edr-freight-api/src/seed/file-upload-settings.seeder.ts
+++ b/apps/edr-freight-api/src/seed/file-upload-settings.seeder.ts
@@ -582,6 +582,19 @@ const INTERCITY_DOCUMENT_SETTINGS: OnboardingDocumentSetting[] = [
},
];
+// ── Hazardous cargo documents ───────────────────────────────────────────────
+// Asked for in the contract wizard the moment the customer flags the cargo as
+// hazardous (ONE_TIME contracts only). Fields start empty and are configured in
+// the backoffice file-settings editor.
+const HAZARDOUS_DOCUMENT_SETTINGS: OnboardingDocumentSetting[] = [
+ {
+ code: "hazardous_documents",
+ label: "Hazardous cargo documents",
+ entity: CONTRACT_INTAKE_ENTITY,
+ fields: [],
+ },
+];
+
@Injectable()
export class FileUploadSettingsSeeder {
private readonly logger = new Logger(FileUploadSettingsSeeder.name);
@@ -633,6 +646,11 @@ export class FileUploadSettingsSeeder {
description:
"Documents uploaded against a driver profile (license, ID, contracts, etc.).",
})),
+ ...HAZARDOUS_DOCUMENT_SETTINGS.map((s) => ({
+ ...s,
+ description:
+ "Documents required when a one-time contract's cargo is flagged hazardous.",
+ })),
...INTERCITY_DOCUMENT_SETTINGS.map((s) => ({
...s,
description:
diff --git a/apps/edr-freight-api/src/seed/freight-permissions.registry.ts b/apps/edr-freight-api/src/seed/freight-permissions.registry.ts
index fd65ddcca..537bac332 100644
--- a/apps/edr-freight-api/src/seed/freight-permissions.registry.ts
+++ b/apps/edr-freight-api/src/seed/freight-permissions.registry.ts
@@ -11,7 +11,6 @@ export const RULE_ENGINE_RESOURCE_SLUGS = [
'cargo-types',
'container-types',
'wagon-types',
- 'truck-types',
'service-types',
'yards',
'shipping-lines',
@@ -20,6 +19,9 @@ export const RULE_ENGINE_RESOURCE_SLUGS = [
'rates',
'approval-rules',
'yard-distances',
+ // Keep new slugs at the END: ruleEngineCrudId derives ids from list index,
+ // so a mid-list insert would shift ids already seeded for later slugs.
+ 'truck-types',
] as const;
export type RuleEngineResourceSlug = (typeof RULE_ENGINE_RESOURCE_SLUGS)[number];
@@ -58,7 +60,6 @@ export const BOOKING_PERMISSIONS: FreightPermissionSeed[] = [
perm('a1000001-0001-4000-8000-000000000021', 'edr_freight_app:bookings:upload_clearance_output', 'Upload customs output documents'),
perm('a1000001-0001-4000-8000-000000000022', 'edr_freight_app:bookings:finalize_clearance', 'Finalize document clearance'),
perm('a1000001-0001-4000-8000-00000000000f', 'edr_freight_app:train_scheduling:view', 'View train scheduling'),
- perm('a1000001-0001-4000-8000-000000000010', 'edr_freight_app:train_scheduling:manage', 'Manage train scheduling'),
perm('a1000001-0001-4000-8000-000000000011', 'edr_freight_app:fleet:view', 'View fleet'),
perm('a1000001-0001-4000-8000-000000000012', 'edr_freight_app:fleet:manage', 'Manage fleet'),
perm('a1000001-0001-4000-8000-000000000013', 'edr_freight_app:admin', 'Freight administration'),
@@ -84,7 +85,10 @@ export const CONTRACT_PERMISSIONS: FreightPermissionSeed[] = [
perm('a3000001-0001-4000-8000-000000000006', 'edr_freight_app:contracts:approve_director', 'Approve contract as director'),
perm('a3000001-0001-4000-8000-000000000007', 'edr_freight_app:contracts:approve_ceo', 'Approve contract as CEO'),
perm('a3000001-0001-4000-8000-000000000008', 'edr_freight_app:contracts:generate_contract', 'Generate contract document'),
- perm('a3000001-0001-4000-8000-000000000009', 'edr_freight_app:contracts:sign_staff', 'Staff contract signature'),
+ // Staff counter-signature is split per freight type too — fresh ids for the
+ // same reason as the intake keys above.
+ perm('a3000001-0001-4000-8000-000000000017', 'edr_freight_app:contracts:sign_staff:bulk', 'Staff contract signature: bulk'),
+ perm('a3000001-0001-4000-8000-000000000018', 'edr_freight_app:contracts:sign_staff:container', 'Staff contract signature: container'),
perm('a3000001-0001-4000-8000-00000000000a', 'edr_freight_app:contracts:clearance_review', 'Review pre-booking clearance docs'),
perm('a3000001-0001-4000-8000-00000000000b', 'edr_freight_app:contracts:finalize_clearance', 'Finalize pre-booking clearance'),
perm('a3000001-0001-4000-8000-00000000000c', 'edr_freight_app:contracts:create_booking', 'GL ET create booking under contract'),
@@ -94,25 +98,43 @@ export const CONTRACT_PERMISSIONS: FreightPermissionSeed[] = [
perm('a3000001-0001-4000-8000-000000000010', 'edr_freight_app:contracts:clearance_duty_advise', 'Advise contract duty/tax'),
];
-const RULE_ENGINE_PERMISSION_IDS: Record = {
- 'cargo-types': { view: 'b2000001-0001-4000-8000-000000000001', manage: 'b2000001-0001-4000-8000-000000000002' },
- 'container-types': { view: 'b2000001-0001-4000-8000-000000000003', manage: 'b2000001-0001-4000-8000-000000000004' },
- 'wagon-types': { view: 'b2000001-0001-4000-8000-000000000015', manage: 'b2000001-0001-4000-8000-000000000016' },
- 'truck-types': { view: 'b2000001-0001-4000-8000-00000000001a', manage: 'b2000001-0001-4000-8000-00000000001b' },
- 'service-types': { view: 'b2000001-0001-4000-8000-000000000005', manage: 'b2000001-0001-4000-8000-000000000006' },
- yards: { view: 'b2000001-0001-4000-8000-000000000007', manage: 'b2000001-0001-4000-8000-000000000008' },
- 'shipping-lines': { view: 'b2000001-0001-4000-8000-000000000009', manage: 'b2000001-0001-4000-8000-00000000000a' },
- 'weight-limit-rules': { view: 'b2000001-0001-4000-8000-00000000000b', manage: 'b2000001-0001-4000-8000-00000000000c' },
- 'priority-configs': { view: 'b2000001-0001-4000-8000-00000000000f', manage: 'b2000001-0001-4000-8000-000000000010' },
- rates: { view: 'b2000001-0001-4000-8000-000000000011', manage: 'b2000001-0001-4000-8000-000000000012' },
- 'approval-rules': { view: 'b2000001-0001-4000-8000-000000000013', manage: 'b2000001-0001-4000-8000-000000000014' },
- 'yard-distances': { view: 'b2000001-0001-4000-8000-000000000018', manage: 'b2000001-0001-4000-8000-000000000019' },
+// Existing per-slug view ids are kept as-is: position-type grants reference
+// them by id, so re-minting would orphan those rows.
+const RULE_ENGINE_VIEW_IDS: Record = {
+ 'cargo-types': 'b2000001-0001-4000-8000-000000000001',
+ 'container-types': 'b2000001-0001-4000-8000-000000000003',
+ 'wagon-types': 'b2000001-0001-4000-8000-000000000015',
+ 'truck-types': 'b2000001-0001-4000-8000-00000000001a',
+ 'service-types': 'b2000001-0001-4000-8000-000000000005',
+ yards: 'b2000001-0001-4000-8000-000000000007',
+ 'shipping-lines': 'b2000001-0001-4000-8000-000000000009',
+ 'weight-limit-rules': 'b2000001-0001-4000-8000-00000000000b',
+ 'priority-configs': 'b2000001-0001-4000-8000-00000000000f',
+ rates: 'b2000001-0001-4000-8000-000000000011',
+ 'approval-rules': 'b2000001-0001-4000-8000-000000000013',
+ 'yard-distances': 'b2000001-0001-4000-8000-000000000018',
+};
+
+// CRUD replaces the retired coarse `:manage`. New ids live in a fresh block
+// (b2000002-…) so a stale `:manage` grant can never silently confer a CRUD
+// action — the migration re-grants create/update/delete explicitly.
+const RULE_ENGINE_CRUD_ACTIONS = ['create', 'update', 'delete'] as const;
+type RuleEngineCrudAction = (typeof RULE_ENGINE_CRUD_ACTIONS)[number];
+const ruleEngineCrudId = (
+ slug: RuleEngineResourceSlug,
+ action: RuleEngineCrudAction,
+): string => {
+ const n =
+ RULE_ENGINE_RESOURCE_SLUGS.indexOf(slug) * 3 +
+ RULE_ENGINE_CRUD_ACTIONS.indexOf(action) +
+ 1; // 1..36
+ return `b2000002-0001-4000-8000-${n.toString(16).padStart(12, '0')}`;
};
/**
- * Slugs whose changes go through a separate approver. `manage` lets a staff
- * member propose a change; only `approve` lets someone put it into effect.
- * Only listed slugs get the permission — the rest are manage-only.
+ * Slugs whose changes go through a separate approver. CRUD lets a staff member
+ * propose a change; only `approve` lets someone put it into effect. Only listed
+ * slugs get the permission.
*/
const RULE_ENGINE_APPROVE_PERMISSION_IDS: Partial> = {
rates: 'b2000001-0001-4000-8000-000000000017',
@@ -123,11 +145,12 @@ export type RuleEngineApprovableSlug = 'rates';
export const RULE_ENGINE_PERMISSIONS: FreightPermissionSeed[] = RULE_ENGINE_RESOURCE_SLUGS.flatMap(
(slug) => {
const resource = slugToResourceKey(slug);
- const ids = RULE_ENGINE_PERMISSION_IDS[slug];
const approveId = RULE_ENGINE_APPROVE_PERMISSION_IDS[slug];
return [
- perm(ids.view, `edr_freight_app:rule_engine:${resource}:view`, `View ${slug}`),
- perm(ids.manage, `edr_freight_app:rule_engine:${resource}:manage`, `Manage ${slug}`),
+ perm(RULE_ENGINE_VIEW_IDS[slug], `edr_freight_app:rule_engine:${resource}:view`, `View ${slug}`),
+ perm(ruleEngineCrudId(slug, 'create'), `edr_freight_app:rule_engine:${resource}:create`, `Create ${slug}`),
+ perm(ruleEngineCrudId(slug, 'update'), `edr_freight_app:rule_engine:${resource}:update`, `Update ${slug}`),
+ perm(ruleEngineCrudId(slug, 'delete'), `edr_freight_app:rule_engine:${resource}:delete`, `Delete ${slug}`),
...(approveId
? [perm(approveId, `edr_freight_app:rule_engine:${resource}:approve`, `Approve ${slug} changes`)]
: []),
@@ -397,7 +420,10 @@ export const FREIGHT_PERMS = {
approveDirector: 'edr_freight_app:contracts:approve_director',
approveCeo: 'edr_freight_app:contracts:approve_ceo',
generateContract: 'edr_freight_app:contracts:generate_contract',
- signStaff: 'edr_freight_app:contracts:sign_staff',
+ signStaff: {
+ bulk: 'edr_freight_app:contracts:sign_staff:bulk',
+ container: 'edr_freight_app:contracts:sign_staff:container',
+ },
clearanceReview: 'edr_freight_app:contracts:clearance_review',
finalizeClearance: 'edr_freight_app:contracts:finalize_clearance',
createBooking: 'edr_freight_app:contracts:create_booking',
@@ -408,7 +434,6 @@ export const FREIGHT_PERMS = {
},
trainScheduling: {
view: 'edr_freight_app:train_scheduling:view',
- manage: 'edr_freight_app:train_scheduling:manage',
create: 'edr_freight_app:train_scheduling:create',
update: 'edr_freight_app:train_scheduling:update',
cancel: 'edr_freight_app:train_scheduling:cancel',
@@ -423,8 +448,12 @@ export const FREIGHT_PERMS = {
ruleEngine: {
view: (slug: RuleEngineResourceSlug) =>
`edr_freight_app:rule_engine:${slugToResourceKey(slug)}:view`,
- manage: (slug: RuleEngineResourceSlug) =>
- `edr_freight_app:rule_engine:${slugToResourceKey(slug)}:manage`,
+ create: (slug: RuleEngineResourceSlug) =>
+ `edr_freight_app:rule_engine:${slugToResourceKey(slug)}:create`,
+ update: (slug: RuleEngineResourceSlug) =>
+ `edr_freight_app:rule_engine:${slugToResourceKey(slug)}:update`,
+ delete: (slug: RuleEngineResourceSlug) =>
+ `edr_freight_app:rule_engine:${slugToResourceKey(slug)}:delete`,
approve: (slug: RuleEngineApprovableSlug) =>
`edr_freight_app:rule_engine:${slugToResourceKey(slug)}:approve`,
},
@@ -753,7 +782,11 @@ export const ROLE_PERMISSION_PRESETS = {
FREIGHT_PERMS.bookings.view,
FREIGHT_PERMS.bookings.operations,
FREIGHT_PERMS.trainScheduling.view,
- FREIGHT_PERMS.trainScheduling.manage,
+ FREIGHT_PERMS.trainScheduling.create,
+ FREIGHT_PERMS.trainScheduling.update,
+ FREIGHT_PERMS.trainScheduling.cancel,
+ FREIGHT_PERMS.trainScheduling.reschedule,
+ FREIGHT_PERMS.trainScheduling.rulesManage,
FREIGHT_PERMS.fleet.view,
FREIGHT_PERMS.fleet.manage,
...FLEET_GRANULAR_KEYS,
@@ -838,7 +871,7 @@ export const ROLE_PERMISSION_PRESETS = {
...bothFreightTypes(FREIGHT_PERMS.contracts.reject),
FREIGHT_PERMS.contracts.approveLineStaff,
FREIGHT_PERMS.contracts.generateContract,
- FREIGHT_PERMS.contracts.signStaff,
+ ...bothFreightTypes(FREIGHT_PERMS.contracts.signStaff),
],
orgManager: [...BOOKING_RULE_ENGINE_PERMISSION_KEYS],
} as const;
diff --git a/apps/edr-freight-web/backoffice/src/components/trainScheduling/LogPassYardWorkModal.tsx b/apps/edr-freight-web/backoffice/src/components/trainScheduling/LogPassYardWorkModal.tsx
new file mode 100644
index 000000000..0e1db09be
--- /dev/null
+++ b/apps/edr-freight-web/backoffice/src/components/trainScheduling/LogPassYardWorkModal.tsx
@@ -0,0 +1,403 @@
+import {
+ Alert,
+ Badge,
+ Button,
+ Divider,
+ Group,
+ Loader,
+ Modal,
+ Stack,
+ Table,
+ Text,
+ ThemeIcon,
+ Tooltip,
+} from "@mantine/core";
+import { useMutation, useQuery } from "@tanstack/react-query";
+import {
+ CheckCircle2,
+ Flag,
+ MapPin,
+ PackageCheck,
+ TrainFront,
+} from "lucide-react";
+import { useEffect, useState } from "react";
+import { Freight } from "@edr/types";
+
+import { BookingStatusBadge } from "@/components/bookings/BookingStatusBadge";
+import { useToast } from "@/hooks/use-toast";
+import { api } from "@/services/api";
+import type { TrackStation, YardWorkBookingRow } from "@/types/trainScheduling";
+
+const parseError = (error: unknown, fallback: string) => {
+ const message = (error as { response?: { data?: { message?: string | string[] } } })
+ ?.response?.data?.message;
+ if (Array.isArray(message)) return message.join("; ");
+ return message || (error as Error)?.message || fallback;
+};
+
+const fmtDate = (iso: string) => {
+ const d = new Date(iso);
+ return Number.isNaN(d.getTime()) ? iso : d.toLocaleString();
+};
+
+const DIRECTION_COLORS: Record = {
+ IMPORT: "blue",
+ EXPORT: "teal",
+ DOMESTIC: "violet",
+};
+
+/** DOMESTIC displays as "Intercity" — shared with the rest of the platform. */
+const DIRECTION_LABELS: Record = Freight.TRADE_DIRECTION_LABELS;
+
+function DirectionChip({ direction }: { direction: string }) {
+ return (
+
+ {DIRECTION_LABELS[direction] ?? direction}
+
+ );
+}
+
+function SectionLabel({
+ icon,
+ title,
+ count,
+}: {
+ icon: React.ReactNode;
+ title: string;
+ count: number;
+}) {
+ return (
+
+
+ {icon}
+
+
+ {title}
+
+
+ {count}
+
+
+ );
+}
+
+/**
+ * Yard-work modal for the track page's "Log pass" step.
+ *
+ * A train runs A→B→C→D and bookings board/alight at any stop, so logging the
+ * pass at a yard is the moment its yard work happens: bookings destined here
+ * flip to ARRIVED (import/export) or COMPLETED (intercity) automatically the
+ * instant the pass is logged, and bookings boarding here become loadable —
+ * the server only accepts a load while the train's latest checkpoint is this
+ * yard. The modal therefore drives the sequence: log the pass first, then
+ * load anything that boards here (including cargo the operator forgot — it
+ * stays loadable until the next pass is logged).
+ */
+export function LogPassYardWorkModal({
+ opened,
+ onClose,
+ scheduleId,
+ station,
+ isFinal,
+ alreadyLogged,
+}: {
+ opened: boolean;
+ onClose: () => void;
+ scheduleId: string;
+ station: TrackStation | null;
+ isFinal: boolean;
+ /** True when opened for the current station (pass already logged). */
+ alreadyLogged: boolean;
+}) {
+ const { toast } = useToast();
+ const [justLogged, setJustLogged] = useState(false);
+ useEffect(() => setJustLogged(false), [station?.sequenceNo, opened]);
+ const logged = alreadyLogged || justLogged;
+
+ const yardWorkQuery = useQuery(
+ api.trainScheduling.yardWork.queryOptions({
+ input: { scheduleId },
+ enabled: opened && Boolean(scheduleId),
+ }),
+ );
+ const recordCheckpoint = useMutation(
+ api.trainScheduling.recordCheckpoint.mutationOptions(),
+ );
+ const load = useMutation(api.trainScheduling.loadScheduleBooking.mutationOptions());
+
+ const yard = yardWorkQuery.data?.yards.find((y) => y.yardId === station?.yardId);
+ const boarders: YardWorkBookingRow[] = yard?.toLoad ?? [];
+ const arrivals: YardWorkBookingRow[] = yard?.toUnload ?? [];
+ const pendingBoarders = boarders.filter((r) => !r.loadedAt);
+
+ const doLogPass = () => {
+ if (!station) return;
+ recordCheckpoint.mutate(
+ { id: scheduleId, payload: { sequenceNo: station.sequenceNo } },
+ {
+ onSuccess: () => {
+ setJustLogged(true);
+ toast({
+ title: isFinal
+ ? "Train arrived — remaining bookings marked arrived, assets freed"
+ : `Pass logged at ${station.label}`,
+ description: isFinal
+ ? undefined
+ : arrivals.some((r) => r.canUnload)
+ ? "Bookings arriving here have been marked arrived."
+ : undefined,
+ });
+ void yardWorkQuery.refetch();
+ },
+ onError: (err) =>
+ toast({
+ title: "Could not log checkpoint",
+ description: parseError(err, "Please try again"),
+ variant: "destructive",
+ }),
+ },
+ );
+ };
+
+ const doLoad = (row: YardWorkBookingRow) => {
+ load.mutate(
+ { scheduleId, bookingId: row.id },
+ {
+ onSuccess: () => {
+ toast({
+ title: `${row.reference ?? "Booking"} loaded`,
+ description: `Cargo boarded the train at ${station?.label ?? "this yard"}.`,
+ });
+ void yardWorkQuery.refetch();
+ },
+ onError: (err) =>
+ toast({
+ title: "Could not load booking",
+ description: parseError(err, "Please try again"),
+ variant: "destructive",
+ }),
+ },
+ );
+ };
+
+ const hasWork = boarders.length > 0 || arrivals.length > 0;
+
+ return (
+
+ {isFinal ? : }
+
+ {isFinal ? "Arrival" : "Yard work"} — {station?.label ?? ""}
+
+ {logged ? (
+
+ {isFinal ? "Arrived" : "Pass logged"}
+
+ ) : null}
+
+ }
+ >
+
+ {yardWorkQuery.isLoading ? (
+
+
+
+ ) : !hasWork ? (
+ }>
+ No bookings board or alight at this station.
+
+ ) : (
+ <>
+ {/* ── Arriving here ─────────────────────────────────────────── */}
+ {arrivals.length > 0 ? (
+
+ }
+ title="Arriving at this yard"
+ count={arrivals.length}
+ />
+ {!logged ? (
+
+ Logging the pass marks the loaded bookings below as Arrived
+ (import/export) or Completed (intercity) automatically.
+
+ ) : null}
+
+
+
+
+ Booking
+ Customer
+ Direction
+ Status
+ Arrived
+
+
+
+ {arrivals.map((row) => (
+
+
+
+ {row.reference ?? row.id.slice(0, 8)}
+
+
+
+ {row.customer}
+
+
+
+
+
+
+
+
+
+ {row.arrivedAt ? fmtDate(row.arrivedAt) : "—"}
+
+
+
+ ))}
+
+
+
+
+ ) : null}
+
+ {arrivals.length > 0 && boarders.length > 0 ? : null}
+
+ {/* ── Boarding here ─────────────────────────────────────────── */}
+ {boarders.length > 0 ? (
+
+ }
+ title="Boarding at this yard"
+ count={boarders.length}
+ />
+ {!logged && pendingBoarders.length > 0 ? (
+
+ Log the pass first — the train must be at {station?.label} before
+ cargo can be loaded.
+
+ ) : null}
+
+
+
+
+ Booking
+ Customer
+ Direction
+ Status
+ Loaded
+
+
+
+
+ {boarders.map((row) => (
+
+
+
+
+ {row.reference ?? row.id.slice(0, 8)}
+
+ {row.isGovernment ? (
+
+ GOV
+
+ ) : null}
+
+
+
+ {row.customer}
+
+
+
+
+
+
+
+
+ {row.loadedAt ? (
+
+
+
+ {fmtDate(row.loadedAt)}
+
+
+ ) : (
+
+ Not loaded
+
+ )}
+
+
+ {!row.loadedAt ? (
+
+ }
+ disabled={!logged || !row.canLoad}
+ loading={
+ load.isPending && load.variables?.bookingId === row.id
+ }
+ onClick={() => doLoad(row)}
+ >
+ Load
+
+
+ ) : null}
+
+
+ ))}
+
+
+
+
+ ) : null}
+ >
+ )}
+
+
+
+ {logged && pendingBoarders.length > 0
+ ? `${pendingBoarders.length} booking${pendingBoarders.length === 1 ? "" : "s"} still to load before the next station.`
+ : ""}
+
+
+
+ Close
+
+ {!logged ? (
+ : }
+ loading={recordCheckpoint.isPending}
+ onClick={doLogPass}
+ >
+ {isFinal
+ ? `Mark arrived at ${station?.label ?? "destination"}`
+ : `Log pass at ${station?.label ?? "station"}`}
+
+ ) : null}
+
+
+
+
+ );
+}
diff --git a/apps/edr-freight-web/backoffice/src/components/trainScheduling/ScheduleWorkspacePanel.tsx b/apps/edr-freight-web/backoffice/src/components/trainScheduling/ScheduleWorkspacePanel.tsx
index 02475214e..58ff55912 100644
--- a/apps/edr-freight-web/backoffice/src/components/trainScheduling/ScheduleWorkspacePanel.tsx
+++ b/apps/edr-freight-web/backoffice/src/components/trainScheduling/ScheduleWorkspacePanel.tsx
@@ -166,9 +166,6 @@ export function ScheduleWorkspacePanel({
const setLoading = useMutation(
api.trainScheduling.setLoadingStatus.mutationOptions(),
);
- const confirmLoading = useMutation(
- api.trainScheduling.confirmLoading.mutationOptions(),
- );
const moveSchedule = useMutation(
api.trainScheduling.moveBookingSchedule.mutationOptions(),
);
@@ -301,25 +298,6 @@ export function ScheduleWorkspacePanel({
);
};
- const doConfirmLoading = () => {
- confirmLoading
- .mutateAsync({ id: schedule.id })
- .then(() => {
- toast({ title: "Loading confirmed", description: "The train is cleared to dispatch." });
- onChanged();
- })
- .catch((error) =>
- toast({
- title: "Could not confirm loading",
- description: apiErrorMessage(
- error,
- "Grant the Djibouti gatepass first, then confirm loading.",
- ),
- variant: "destructive",
- }),
- );
- };
-
// Point the pool booking at the chosen same-day train, then put it on wagons.
// If the wagon step fails (that train is short too) the booking stays paid &
// unassigned in the pool — nothing is lost, staff just pick another train.
@@ -460,53 +438,8 @@ export function ScheduleWorkspacePanel({
) : null}
- {/* Loading confirmation — required before dispatch for import-Djibouti
- trains; shown for every direction so staff have one place to confirm. */}
- {canManage ? (
-
-
- {schedule.loadingConfirmed ? (
-
- ) : (
-
- )}
-
- {schedule.loadingConfirmed
- ? "Loading confirmed — cleared to dispatch"
- : "Confirm loading before dispatching this train"}
-
-
- {!schedule.loadingConfirmed ? (
- }
- loading={confirmLoading.isPending}
- onClick={doConfirmLoading}
- >
- Confirm loading
-
- ) : null}
-
- ) : null}
+ {/* Loading confirmation gate removed: bookings can board mid-corridor,
+ so per-yard loading happens from the track page's log-pass flow. */}
{/* Two-panel board */}
diff --git a/apps/edr-freight-web/backoffice/src/features/bookings/booking-actions.config.ts b/apps/edr-freight-web/backoffice/src/features/bookings/booking-actions.config.ts
index d87fe067c..5600f6cfb 100644
--- a/apps/edr-freight-web/backoffice/src/features/bookings/booking-actions.config.ts
+++ b/apps/edr-freight-web/backoffice/src/features/bookings/booking-actions.config.ts
@@ -199,7 +199,7 @@ const ACTION_PERMISSION: Partial> = {
complete: FREIGHT_PERMS.bookings.operations,
operationAccept: FREIGHT_PERMS.bookings.operations,
operationRequestChanges: FREIGHT_PERMS.bookings.operations,
- allocateBooking: FREIGHT_PERMS.trainScheduling.manage,
+ allocateBooking: FREIGHT_PERMS.trainScheduling.update,
cancel: FREIGHT_PERMS.bookings.cancel,
};
diff --git a/apps/edr-freight-web/backoffice/src/lib/permissions.ts b/apps/edr-freight-web/backoffice/src/lib/permissions.ts
index 5505a4145..389719964 100644
--- a/apps/edr-freight-web/backoffice/src/lib/permissions.ts
+++ b/apps/edr-freight-web/backoffice/src/lib/permissions.ts
@@ -46,7 +46,10 @@ export const FREIGHT_PERMS = {
approveDirector: "edr_freight_app:contracts:approve_director",
approveCeo: "edr_freight_app:contracts:approve_ceo",
generateContract: "edr_freight_app:contracts:generate_contract",
- signStaff: "edr_freight_app:contracts:sign_staff",
+ signStaff: {
+ bulk: "edr_freight_app:contracts:sign_staff:bulk",
+ container: "edr_freight_app:contracts:sign_staff:container",
+ },
clearanceReview: "edr_freight_app:contracts:clearance_review",
finalizeClearance: "edr_freight_app:contracts:finalize_clearance",
createBooking: "edr_freight_app:contracts:create_booking",
@@ -57,7 +60,6 @@ export const FREIGHT_PERMS = {
},
trainScheduling: {
view: "edr_freight_app:train_scheduling:view",
- manage: "edr_freight_app:train_scheduling:manage",
create: "edr_freight_app:train_scheduling:create",
update: "edr_freight_app:train_scheduling:update",
cancel: "edr_freight_app:train_scheduling:cancel",
@@ -509,8 +511,18 @@ export function canViewScheduling(user: AuthUser | null | undefined): boolean {
return hasPermission(user, FREIGHT_PERMS.trainScheduling.view);
}
+/** Any train-scheduling write action (create / update / cancel / reschedule). */
export function canManageScheduling(user: AuthUser | null | undefined): boolean {
- return hasPermission(user, FREIGHT_PERMS.trainScheduling.manage);
+ return (
+ hasPermission(user, FREIGHT_PERMS.trainScheduling.create) ||
+ hasPermission(user, FREIGHT_PERMS.trainScheduling.update) ||
+ hasPermission(user, FREIGHT_PERMS.trainScheduling.cancel) ||
+ hasPermission(user, FREIGHT_PERMS.trainScheduling.reschedule)
+ );
+}
+
+export function canCreateSchedule(user: AuthUser | null | undefined): boolean {
+ return hasPermission(user, FREIGHT_PERMS.trainScheduling.create);
}
export function canViewFleet(user: AuthUser | null | undefined): boolean {
@@ -546,12 +558,17 @@ export function isFreightAdmin(user: AuthUser | null | undefined): boolean {
return hasPermission(user, FREIGHT_PERMS.admin);
}
-export function ruleEngineViewKey(slug: RuleEngineResourceSlug): string {
- return `edr_freight_app:rule_engine:${slugToResourceKey(slug)}:view`;
+export type RuleEngineAction = "view" | "create" | "update" | "delete";
+
+export function ruleEngineActionKey(
+ slug: RuleEngineResourceSlug,
+ action: RuleEngineAction,
+): string {
+ return `edr_freight_app:rule_engine:${slugToResourceKey(slug)}:${action}`;
}
-export function ruleEngineManageKey(slug: RuleEngineResourceSlug): string {
- return `edr_freight_app:rule_engine:${slugToResourceKey(slug)}:manage`;
+export function ruleEngineViewKey(slug: RuleEngineResourceSlug): string {
+ return ruleEngineActionKey(slug, "view");
}
/**
@@ -572,10 +589,19 @@ export function canApproveRuleEngineChange(
export function canAccessRuleEngineResource(
user: AuthUser | null | undefined,
slug: RuleEngineResourceSlug,
- mode: "view" | "manage",
+ mode: RuleEngineAction,
): boolean {
- const key = mode === "manage" ? ruleEngineManageKey(slug) : ruleEngineViewKey(slug);
- return hasPermission(user, key);
+ return hasPermission(user, ruleEngineActionKey(slug, mode));
+}
+
+/** Holds any write action on the resource — for surfaces gated on "can edit at all". */
+export function canWriteRuleEngineResource(
+ user: AuthUser | null | undefined,
+ slug: RuleEngineResourceSlug,
+): boolean {
+ return (["create", "update", "delete"] as const).some((a) =>
+ canAccessRuleEngineResource(user, slug, a),
+ );
}
export function canAccessAnyRuleEngineView(
diff --git a/apps/edr-freight-web/backoffice/src/pages/contracts/ContractViewPage.tsx b/apps/edr-freight-web/backoffice/src/pages/contracts/ContractViewPage.tsx
index 7e8f06e0b..147d637ef 100644
--- a/apps/edr-freight-web/backoffice/src/pages/contracts/ContractViewPage.tsx
+++ b/apps/edr-freight-web/backoffice/src/pages/contracts/ContractViewPage.tsx
@@ -20,6 +20,8 @@ import { ContractSignSuccessModal } from "@/components/contracts/ContractSignSuc
import { ContractSignaturePad } from "@/components/bookings/ContractSignaturePad";
import { contractsService } from "@/services/contracts.service";
import { QUERY_KEYS } from "@/constants/QUERY_KEYS";
+import { useAuth } from "@/auth/useAuth";
+import { FREIGHT_PERMS, hasPermission } from "@/lib/permissions";
/**
* Staff contract preview + sign. Staff must open and read the generated
@@ -30,6 +32,7 @@ export default function ContractViewPage() {
const navigate = useNavigate();
const qc = useQueryClient();
const iframeRef = useRef(null);
+ const { user } = useAuth();
const [signOpen, setSignOpen] = useState(false);
const [successOpen, setSuccessOpen] = useState(false);
@@ -116,6 +119,15 @@ export default function ContractViewPage() {
);
}
+ // Counter-signature permission is split per freight type — a bulk signer must
+ // not sign a container contract (API enforces the same on POST /contract/sign).
+ const maySign = hasPermission(
+ user,
+ FREIGHT_PERMS.contracts.signStaff[
+ data.freightType === "BULK" ? "bulk" : "container"
+ ],
+ );
+
return (
@@ -145,7 +157,7 @@ export default function ContractViewPage() {
>
Download PDF
- {data.canSignStaff && (
+ {data.canSignStaff && maySign && (
}
diff --git a/apps/edr-freight-web/backoffice/src/pages/fleet/FleetResourcePage.tsx b/apps/edr-freight-web/backoffice/src/pages/fleet/FleetResourcePage.tsx
index 47539decf..d50a3217b 100644
--- a/apps/edr-freight-web/backoffice/src/pages/fleet/FleetResourcePage.tsx
+++ b/apps/edr-freight-web/backoffice/src/pages/fleet/FleetResourcePage.tsx
@@ -5,7 +5,7 @@ import { useMutation, useQuery } from "@tanstack/react-query";
import { api } from "@/services/api";
import { useAuth } from "@/auth/useAuth";
-import { canFleetAction } from "@/lib/permissions";
+import { canFleetAction, hasPermission, FREIGHT_PERMS } from "@/lib/permissions";
import Breadcrumbs from "@/components/ui/Breadcrumbs";
import { Inbox, Plus, Warehouse } from "lucide-react";
import { useEffect, useMemo, useState } from "react";
@@ -45,6 +45,12 @@ const FleetResourcePage = () => {
const canCreate = canFleetAction(user, slug, "create");
const canUpdate = canFleetAction(user, slug, "update");
const canDelete = canFleetAction(user, slug, "delete");
+ // Wagon transfer workspace: shown only to holders of a transfer capability
+ // (raise a request, fulfill one, or see the cross-yard history).
+ const canTransfer =
+ hasPermission(user, FREIGHT_PERMS.wagons.transferRequest) ||
+ hasPermission(user, FREIGHT_PERMS.wagons.transferFulfill) ||
+ hasPermission(user, FREIGHT_PERMS.wagons.transferHistoryAll);
const { pagination, setPagination } = usePagination({ pageSize: 10 });
const [search, setSearch] = useState("");
@@ -442,15 +448,17 @@ const FleetResourcePage = () => {
Yard Workspace
) : null}
- }
- styles={{ label: { fontWeight: 500 } }}
- onClick={() => setTransferRequestsOpen(true)}
- >
- Transfer Requests
-
+ {canTransfer ? (
+ }
+ styles={{ label: { fontWeight: 500 } }}
+ onClick={() => setTransferRequestsOpen(true)}
+ >
+ Transfer Requests
+
+ ) : null}
>
) : null}
{canCreate ? (
diff --git a/apps/edr-freight-web/backoffice/src/pages/ruleEngine/CargoTypesPage.tsx b/apps/edr-freight-web/backoffice/src/pages/ruleEngine/CargoTypesPage.tsx
index dbf23b6ee..a515e5614 100644
--- a/apps/edr-freight-web/backoffice/src/pages/ruleEngine/CargoTypesPage.tsx
+++ b/apps/edr-freight-web/backoffice/src/pages/ruleEngine/CargoTypesPage.tsx
@@ -114,7 +114,9 @@ const CargoTypesPage = () => {
const config = getRuleEngineResource(CARGO_SLUG);
const canView = canAccessRuleEngineResource(user, CARGO_SLUG, "view");
- const canManage = canAccessRuleEngineResource(user, CARGO_SLUG, "manage");
+ const canCreate = canAccessRuleEngineResource(user, CARGO_SLUG, "create");
+ const canUpdate = canAccessRuleEngineResource(user, CARGO_SLUG, "update");
+ const canDelete = canAccessRuleEngineResource(user, CARGO_SLUG, "delete");
// One fetch of the whole (small) set — page-walked because the API caps
// pageSize at 100; the tree, ancestry and each level are derived client-side
@@ -128,7 +130,7 @@ const CargoTypesPage = () => {
const { create, update, remove } = useRuleEngineMutations(CARGO_SLUG);
// Wagon-type options for the "Wagon types" picker (bulk cargo → allowed list).
- const { data: wagonTypeOptions } = useWagonTypeOptions(canManage);
+ const { data: wagonTypeOptions } = useWagonTypeOptions(canCreate || canUpdate);
const formFields = useMemo(
() =>
FORM_FIELDS.map((field) =>
@@ -291,7 +293,7 @@ const CargoTypesPage = () => {
leftSection={ }
w={240}
/>
- {canManage && (
+ {canCreate && (
}
@@ -335,7 +337,7 @@ const CargoTypesPage = () => {
? "No cargo categories yet"
: `No cargo types under “${str(current?.cargoTypeName)}” yet`}
- {!term && canManage && (
+ {!term && canCreate && (
{
node={node}
childCount={(childrenOf.get(node.id) ?? []).length}
topBorder={i > 0}
- canManage={canManage}
+ canUpdate={canUpdate}
+ canDelete={canDelete}
onOpen={() => navigate(`${BASE_PATH}/${node.id}`)}
onEdit={() => setFormMode({ kind: "edit", record: node })}
onDelete={() => setDeleteTarget(node)}
@@ -444,7 +447,8 @@ interface CargoRowProps {
node: CargoNode;
childCount: number;
topBorder: boolean;
- canManage: boolean;
+ canUpdate: boolean;
+ canDelete: boolean;
onOpen: () => void;
onEdit: () => void;
onDelete: () => void;
@@ -454,7 +458,8 @@ function CargoRow({
node,
childCount,
topBorder,
- canManage,
+ canUpdate,
+ canDelete,
onOpen,
onEdit,
onDelete,
@@ -529,19 +534,19 @@ function CargoRow({
- {canManage && (
- <>
-
-
-
-
-
-
-
-
-
-
- >
+ {canUpdate && (
+
+
+
+
+
+ )}
+ {canDelete && (
+
+
+
+
+
)}
diff --git a/apps/edr-freight-web/backoffice/src/pages/ruleEngine/RuleEngineResourcePage.tsx b/apps/edr-freight-web/backoffice/src/pages/ruleEngine/RuleEngineResourcePage.tsx
index 536f04ba7..70d2286cf 100644
--- a/apps/edr-freight-web/backoffice/src/pages/ruleEngine/RuleEngineResourcePage.tsx
+++ b/apps/edr-freight-web/backoffice/src/pages/ruleEngine/RuleEngineResourcePage.tsx
@@ -150,9 +150,20 @@ const RuleEngineResourcePage = () => {
const canView = Boolean(
config && canAccessRuleEngineResource(user, config.slug, "view"),
);
- const canManage = Boolean(
- config && canAccessRuleEngineResource(user, config.slug, "manage"),
+ // Per-action gates replace the retired coarse "manage": Add shows only with
+ // create, row Edit with update, row Delete with delete.
+ const canCreate = Boolean(
+ config && canAccessRuleEngineResource(user, config.slug, "create"),
);
+ const canUpdate = Boolean(
+ config && canAccessRuleEngineResource(user, config.slug, "update"),
+ );
+ const canDelete = Boolean(
+ config && canAccessRuleEngineResource(user, config.slug, "delete"),
+ );
+ // Update-class controls (reorder, rate submit/approve, approval-rule decide)
+ // all map to the update permission — the matching endpoints now require it.
+ const canUpdateControls = canUpdate;
const listParams = useMemo(
() => ({
@@ -480,7 +491,7 @@ const RuleEngineResourcePage = () => {
cell: ({ row }) => (
e.stopPropagation()} data-stop-row-click>
- {config.orderConfig && canManage ? (
+ {config.orderConfig && canUpdateControls ? (
{
record={row.original}
config={config}
layout="row"
- readOnly={!canManage}
+ readOnly={!canUpdateControls}
onEdit={(record) => {
setEditing(record);
setFormOpen(true);
@@ -504,8 +515,8 @@ const RuleEngineResourcePage = () => {
? () => setChainOpen(true)
: undefined
}
- onSubmitRate={canManage ? (id) => submit.mutate(id) : undefined}
- onApproveRate={canManage ? handleApproveRate : undefined}
+ onSubmitRate={canUpdateControls ? (id) => submit.mutate(id) : undefined}
+ onApproveRate={canUpdateControls ? handleApproveRate : undefined}
/>
@@ -514,7 +525,7 @@ const RuleEngineResourcePage = () => {
return base;
}, [
- canManage,
+ canUpdateControls,
config,
isRates,
pendingByRateId,
@@ -642,7 +653,7 @@ const RuleEngineResourcePage = () => {
title={config.label}
subtitle={config.subtitle}
action={
- canManage && config.slug !== "container-types" ? (
+ canCreate && config.slug !== "container-types" ? (
} onClick={openCreate}>
{addLabel}
@@ -653,7 +664,7 @@ const RuleEngineResourcePage = () => {
{isPriorityRules ? (
@@ -742,7 +753,7 @@ const RuleEngineResourcePage = () => {
showSearch={Boolean(config.supportsSearch)}
searchPlaceholder={config.searchPlaceholder}
onManageOrder={
- canManage && config.orderConfig
+ canUpdateControls && config.orderConfig
? () => setOrderDialogOpen(true)
: undefined
}
@@ -806,16 +817,16 @@ const RuleEngineResourcePage = () => {
pageCount={pageCount}
totalCount={totalCount}
onPaginationChange={setPagination}
- readOnly={!canManage}
- onEdit={canManage ? openEdit : undefined}
- onDelete={canManage ? setDeleteTarget : undefined}
+ readOnly={!canUpdate && !canDelete}
+ onEdit={canUpdate ? openEdit : undefined}
+ onDelete={canDelete ? setDeleteTarget : undefined}
onViewChain={
config.slug === "approval-rules"
? () => setChainOpen(true)
: undefined
}
- onSubmitRate={canManage ? (id) => submit.mutate(id) : undefined}
- onApproveRate={canManage ? handleApproveRate : undefined}
+ onSubmitRate={canUpdateControls ? (id) => submit.mutate(id) : undefined}
+ onApproveRate={canUpdateControls ? handleApproveRate : undefined}
/>
)}
diff --git a/apps/edr-freight-web/backoffice/src/pages/trainScheduling/TrainScheduleTrackPage.tsx b/apps/edr-freight-web/backoffice/src/pages/trainScheduling/TrainScheduleTrackPage.tsx
index e253a8db8..28481ce7a 100644
--- a/apps/edr-freight-web/backoffice/src/pages/trainScheduling/TrainScheduleTrackPage.tsx
+++ b/apps/edr-freight-web/backoffice/src/pages/trainScheduling/TrainScheduleTrackPage.tsx
@@ -1,5 +1,6 @@
import { Link, useParams } from "react-router-dom";
import { isAxiosError } from "axios";
+import { useState } from "react";
import {
ArrowLeft,
CalendarClock,
@@ -7,9 +8,11 @@ import {
Flag,
MapPin,
Navigation,
+ PackageCheck,
Train,
} from "lucide-react";
import {
+ Alert,
Badge,
Box,
Button,
@@ -25,7 +28,9 @@ import {
} from "@mantine/core";
import { PageContainer } from "@/components/page";
+import { LogPassYardWorkModal } from "@/components/trainScheduling/LogPassYardWorkModal";
import { RouteCorridorTrack } from "@/components/trainScheduling/RouteCorridorTrack";
+import type { TrackStation } from "@/types/trainScheduling";
import {
RouteCorridor,
StatusPill,
@@ -148,6 +153,18 @@ export default function TrainScheduleTrackPage() {
const recordCheckpoint = useMutation(
api.trainScheduling.recordCheckpoint.mutationOptions(),
);
+ // Yard work drives the log-pass modal: which bookings board/alight per stop.
+ const yardWorkQuery = useQuery(
+ api.trainScheduling.yardWork.queryOptions({
+ input: { scheduleId: scheduleId ?? "" },
+ enabled: Boolean(scheduleId) && trackQuery.data?.status === "DISPATCHED",
+ }),
+ );
+ const [yardModal, setYardModal] = useState<{
+ station: TrackStation;
+ isFinal: boolean;
+ alreadyLogged: boolean;
+ } | null>(null);
if (trackQuery.isLoading) {
return (
@@ -181,8 +198,26 @@ export default function TrainScheduleTrackPage() {
const inTransit = track.status === "DISPATCHED";
const arrived = track.status === "ARRIVED";
+ // Yard work at a station: boarders not yet loaded, and loaded bookings that
+ // alight there. When either exists, logging the pass goes through the modal
+ // so the operator sees (and can act on) both lists; empty yards log directly.
+ const yardWorkFor = (station: TrackStation | undefined) =>
+ yardWorkQuery.data?.yards.find((y) => y.yardId === station?.yardId);
+ const stationHasWork = (station: TrackStation | undefined) => {
+ const yard = yardWorkFor(station);
+ return Boolean(
+ yard &&
+ (yard.toLoad.some((r) => !r.loadedAt) || yard.toUnload.some((r) => r.canUnload)),
+ );
+ };
+
const handleLog = (sequenceNo: number) => {
+ const station = track.stations.find((s) => s.sequenceNo === sequenceNo);
const isFinal = sequenceNo === track.stations[totalStations - 1]?.sequenceNo;
+ if (station && stationHasWork(station)) {
+ setYardModal({ station, isFinal, alreadyLogged: false });
+ return;
+ }
recordCheckpoint.mutate(
{ id: scheduleId, payload: { sequenceNo } },
{
@@ -203,6 +238,15 @@ export default function TrainScheduleTrackPage() {
);
};
+ // "Forgot to load" catch: while the train sits at the current station, any
+ // boarder there that is still unloaded can be loaded until the next pass.
+ const currentStationObj = track.stations.find(
+ (s) => s.sequenceNo === track.currentSequenceNo,
+ );
+ const currentYard = canLog ? yardWorkFor(currentStationObj) : undefined;
+ const forgottenBoarders =
+ currentYard?.toLoad.filter((r) => !r.loadedAt) ?? [];
+
return (
+
+ {/* Cargo the operator forgot: boarders at the CURRENT station stay
+ loadable until the next pass is logged. */}
+ {currentStationObj && forgottenBoarders.length > 0 ? (
+ }
+ title={`${forgottenBoarders.length} booking${
+ forgottenBoarders.length === 1 ? "" : "s"
+ } at ${currentStationObj.label} not loaded yet`}
+ >
+
+
+ The train is at {currentStationObj.label} — cargo boarding here can
+ still be loaded before the next station is logged.
+
+
+ setYardModal({
+ station: currentStationObj,
+ isFinal:
+ currentStationObj.sequenceNo ===
+ track.stations[totalStations - 1]?.sequenceNo,
+ alreadyLogged: true,
+ })
+ }
+ >
+ Open yard work
+
+
+
+ ) : null}
@@ -505,6 +586,15 @@ export default function TrainScheduleTrackPage() {
)}
+
+ setYardModal(null)}
+ scheduleId={scheduleId}
+ station={yardModal?.station ?? null}
+ isFinal={yardModal?.isFinal ?? false}
+ alreadyLogged={yardModal?.alreadyLogged ?? false}
+ />
);
}
diff --git a/apps/edr-freight-web/backoffice/src/pages/trainScheduling/TrainScheduleV2DetailPage.tsx b/apps/edr-freight-web/backoffice/src/pages/trainScheduling/TrainScheduleV2DetailPage.tsx
index 137b3944f..4ddbc9efe 100644
--- a/apps/edr-freight-web/backoffice/src/pages/trainScheduling/TrainScheduleV2DetailPage.tsx
+++ b/apps/edr-freight-web/backoffice/src/pages/trainScheduling/TrainScheduleV2DetailPage.tsx
@@ -398,11 +398,8 @@ export default function TrainScheduleV2DetailPage() {
!b.loadedAt &&
!["IN_TRANSIT", "COMPLETED"].includes(b.status ?? ""),
).length;
- // Import-Djibouti trains are HARD-blocked from dispatch until loading is
- // confirmed in the workspace — surface it as a blocker, not just a warning.
- const loadingBlocksDispatch =
- schedule.requiresLoadingConfirmation === true &&
- schedule.loadingConfirmed !== true;
+ // No loading hard-block: bookings may board mid-corridor, so loading happens
+ // per yard from the track page's log-pass flow. Everything below is advisory.
const hasDispatchWarnings =
unassignedCount > 0 || unloadedCount > 0 || intercityNotLoadedCount > 0;
@@ -1271,22 +1268,6 @@ export default function TrainScheduleV2DetailPage() {
undone.
- {loadingBlocksDispatch ? (
- }
- title="Loading not confirmed"
- >
- This import train cannot depart until loading is confirmed. Use{" "}
-
- Confirm loading
- {" "}
- in the Workspace tab first.
-
- ) : null}
-
{hasDispatchWarnings ? (
{unloadedCount}
{" "}
- wagon-assigned booking{unloadedCount === 1 ? "" : "s"} still marked
- unloaded
+ wagon-assigned booking{unloadedCount === 1 ? "" : "s"} not loaded
+ yet — mid-route boarders load from the track page when the train
+ reaches their yard
) : null}
{intercityNotLoadedCount > 0 ? (
@@ -1350,7 +1332,6 @@ export default function TrainScheduleV2DetailPage() {
color="edr-green"
leftSection={ }
loading={dispatch.isPending}
- disabled={loadingBlocksDispatch}
onClick={() => void runDispatch()}
>
{hasDispatchWarnings ? "Dispatch anyway" : "Dispatch train"}
diff --git a/apps/edr-freight-web/backoffice/src/pages/trainScheduling/TrainScheduleV2ListPage.tsx b/apps/edr-freight-web/backoffice/src/pages/trainScheduling/TrainScheduleV2ListPage.tsx
index 6fbc32cce..4fa614848 100644
--- a/apps/edr-freight-web/backoffice/src/pages/trainScheduling/TrainScheduleV2ListPage.tsx
+++ b/apps/edr-freight-web/backoffice/src/pages/trainScheduling/TrainScheduleV2ListPage.tsx
@@ -55,6 +55,8 @@ import { keepPreviousData, useMutation, useQuery } from "@tanstack/react-query";
import { api } from "@/services/api";
import { formatRouteLabel } from "@/services/routes.service";
import { useToast } from "@/hooks/use-toast";
+import { useAuth } from "@/auth/useAuth";
+import { canCreateSchedule } from "@/lib/permissions";
import type {
FreightType,
TrainScheduleListFilters,
@@ -99,6 +101,8 @@ const parseError = (error: unknown, fallback: string) => {
export default function TrainScheduleV2ListPage() {
const navigate = useNavigate();
const { toast } = useToast();
+ const { user } = useAuth();
+ const canCreate = canCreateSchedule(user);
const { viewMode, setViewMode } = useFleetViewMode("train-scheduling-v2");
const { pagination, setPagination } = usePagination({ pageSize: 10 });
const [search, setSearch] = useState("");
@@ -550,9 +554,11 @@ export default function TrainScheduleV2ListPage() {
title="Train Schedules"
subtitle="Operational train scheduling with full allocation workflow."
action={
- } onClick={() => setCreateOpen(true)}>
- New schedule
-
+ canCreate ? (
+ } onClick={() => setCreateOpen(true)}>
+ New schedule
+
+ ) : undefined
}
/>
diff --git a/apps/edr-freight-web/backoffice/src/services/api.ts b/apps/edr-freight-web/backoffice/src/services/api.ts
index c5fc7d85c..c0d324b83 100644
--- a/apps/edr-freight-web/backoffice/src/services/api.ts
+++ b/apps/edr-freight-web/backoffice/src/services/api.ts
@@ -658,7 +658,16 @@ export const api = {
"finalize-schedule",
(id) => trainSchedulingService.finalizeSchedule(id),
undefined,
- () => TRAIN_SCHEDULING_INVALIDATIONS,
+ // Finalize only flips statuses (schedule DRAFT→SCHEDULED + each booking's
+ // schedulingStatus) — it never touches allocation or loading. Refresh only
+ // the schedule detail/list + booking views instead of the broad
+ // train-scheduling ROOT, which refired the eligible-bookings / pool /
+ // yard-work queries and made the booking lists visibly reload.
+ () => [
+ ["train-scheduling", "schedule"],
+ ["train-scheduling", "schedules"],
+ QUERY_KEYS.BOOKINGS.ROOT,
+ ],
),
dispatchSchedule: endpoint(
diff --git a/apps/edr-freight-web/backoffice/src/services/contracts.service.ts b/apps/edr-freight-web/backoffice/src/services/contracts.service.ts
index 3fe815139..59ec04055 100644
--- a/apps/edr-freight-web/backoffice/src/services/contracts.service.ts
+++ b/apps/edr-freight-web/backoffice/src/services/contracts.service.ts
@@ -97,6 +97,7 @@ export interface ContractView {
contractId: string;
reference: string;
status: string;
+ freightType: "BULK" | "CONTAINER";
templateKey: string;
title: string;
html: string;
diff --git a/apps/edr-freight-web/portal/src/pages/bookings/new-booking-form/LocationPicker.tsx b/apps/edr-freight-web/portal/src/pages/bookings/new-booking-form/LocationPicker.tsx
index 6a53be5cc..8832279ad 100644
--- a/apps/edr-freight-web/portal/src/pages/bookings/new-booking-form/LocationPicker.tsx
+++ b/apps/edr-freight-web/portal/src/pages/bookings/new-booking-form/LocationPicker.tsx
@@ -257,6 +257,20 @@ function usePlacesSearch(): PlacesSearch | null {
}, [placesLib]);
}
+/**
+ * Coerce a coordinate to a finite number or null. Numeric-typed API fields
+ * (e.g. contract/booking `..Lat`/`..Lng`) come back from Postgres `numeric`
+ * columns as strings — the TS type says `number` but the value crossing the
+ * network is not. Google Maps' `panTo`/`Marker` throw on anything that isn't
+ * a real finite number, so every coordinate is normalised at this one shared
+ * entry point rather than trusting each caller to have converted it.
+ */
+function toFiniteNumber(v: number | string | null | undefined): number | null {
+ if (v == null) return null;
+ const n = typeof v === "number" ? v : Number(v);
+ return Number.isFinite(n) ? n : null;
+}
+
/** Recenters the map imperatively when the pinned coordinate changes. */
function MapRecenter({ lat, lng }: { lat: number | null; lng: number | null }) {
const map = useMap();
@@ -290,12 +304,17 @@ export interface LocationPickerProps {
* Reports the resolved address and coordinates up via `onChange`.
*/
export function LocationPicker(props: LocationPickerProps) {
+ const value: LocationValue = {
+ ...props.value,
+ lat: toFiniteNumber(props.value.lat),
+ lng: toFiniteNumber(props.value.lng),
+ };
return (
{props.variant === "modal" ? (
-
+
) : (
-
+
)}
);
diff --git a/apps/edr-freight-web/portal/src/pages/bookings/new-booking-form/step2-service-type.tsx b/apps/edr-freight-web/portal/src/pages/bookings/new-booking-form/step2-service-type.tsx
index b77f9d36b..64653abe3 100644
--- a/apps/edr-freight-web/portal/src/pages/bookings/new-booking-form/step2-service-type.tsx
+++ b/apps/edr-freight-web/portal/src/pages/bookings/new-booking-form/step2-service-type.tsx
@@ -42,21 +42,27 @@ export function Step2ServiceType({
const lastMileEnabled = form.watch("lastMile.enabled");
const prevServiceType = useRef(serviceType);
+ // Only clear a mile when the current service doesn't include it — this ran
+ // unconditionally before, so it wiped an already-entered (or prefilled, or
+ // draft-restored) pickup/delivery address on every service change, even one
+ // that still includes that mile.
useEffect(() => {
+ if (includesFirstMile) return;
form.setValue(
"firstMile",
{ enabled: false, pickUpAddress: "", lat: null, lng: null },
{ shouldValidate: true },
);
- }, [includesFirstMile]);
+ }, [includesFirstMile, form]);
useEffect(() => {
+ if (includesLastMile) return;
form.setValue(
"lastMile",
{ enabled: false, deliveryAddress: "", lat: null, lng: null },
{ shouldValidate: true },
);
- }, [includesLastMile]);
+ }, [includesLastMile, form]);
useEffect(() => {
const prev = prevServiceType.current;
@@ -82,6 +88,10 @@ export function Step2ServiceType({
);
useEffect(() => {
+ // Skip right after a hydration `form.reset()` (draft restore / renewal
+ // prefill) — a restored selection is trusted as-is until the customer
+ // actually changes something live.
+ if (!form.formState.isDirty) return;
const currentId = form.getValues("serviceTypeId");
if (!currentId) return;
if (!bookableServices.some((s) => s.id === currentId)) {
diff --git a/apps/edr-freight-web/portal/src/pages/bookings/new-booking-form/step4-route.tsx b/apps/edr-freight-web/portal/src/pages/bookings/new-booking-form/step4-route.tsx
index b9564bb66..34807faf5 100644
--- a/apps/edr-freight-web/portal/src/pages/bookings/new-booking-form/step4-route.tsx
+++ b/apps/edr-freight-web/portal/src/pages/bookings/new-booking-form/step4-route.tsx
@@ -100,12 +100,17 @@ export function Step4Route({
// here — e.g. switching import→export flips which end must be in Ethiopia.
// Clear any selection that no longer matches the operation's required country
// so the customer can't submit a route that contradicts the operation.
+ // Skipped right after a hydration `form.reset()` (draft restore / renewal
+ // prefill) — a restored yard is trusted as-is until the customer changes
+ // something live; `isDirty` is false only in that pristine post-reset render.
useEffect(() => {
+ if (!form.formState.isDirty) return;
if (originCountry && origin && origin.country !== originCountry) {
form.setValue("originYard", "");
}
}, [originCountry, origin, form]);
useEffect(() => {
+ if (!form.formState.isDirty) return;
if (destinationCountry && dest && dest.country !== destinationCountry) {
form.setValue("destinationYard", "");
}
diff --git a/apps/edr-freight-web/portal/src/pages/contracts/new-contract-form/step2-service-type.tsx b/apps/edr-freight-web/portal/src/pages/contracts/new-contract-form/step2-service-type.tsx
index f5dff9be0..44f8063cb 100644
--- a/apps/edr-freight-web/portal/src/pages/contracts/new-contract-form/step2-service-type.tsx
+++ b/apps/edr-freight-web/portal/src/pages/contracts/new-contract-form/step2-service-type.tsx
@@ -335,6 +335,11 @@ export function Step2ServiceType({
);
useEffect(() => {
+ // Skip right after a hydration `form.reset()` (edit mode) — a saved
+ // contract's service is trusted as-is until the customer actually
+ // changes something live; `isDirty` is false only in that pristine
+ // post-hydration render, so this never clears a value nobody touched.
+ if (!form.formState.isDirty) return;
const currentId = form.getValues("serviceTypeId");
if (!currentId) return;
if (!standaloneServices.some((s) => s.id === currentId)) {
diff --git a/apps/edr-freight-web/portal/src/pages/contracts/new-contract-form/step3-cargo-scope.tsx b/apps/edr-freight-web/portal/src/pages/contracts/new-contract-form/step3-cargo-scope.tsx
index 68b0d79c9..f89a0008d 100644
--- a/apps/edr-freight-web/portal/src/pages/contracts/new-contract-form/step3-cargo-scope.tsx
+++ b/apps/edr-freight-web/portal/src/pages/contracts/new-contract-form/step3-cargo-scope.tsx
@@ -1,23 +1,44 @@
-import { useEffect, useMemo, useRef } from "react";
+import { useEffect, useMemo, useRef, useState } from "react";
import { Controller, type UseFormReturn } from "react-hook-form";
-import { Container, Flame, RotateCcw, Snowflake } from "lucide-react";
+// Snowflake — restore with the Refrigerated Cargo switch below.
+import { Container, Flame, RotateCcw } from "lucide-react";
import {
Box,
+ Button,
Group,
+ Loader,
+ Modal,
Select,
Skeleton,
Stack,
Switch,
Text,
} from "@mantine/core";
+import { useQuery } from "@tanstack/react-query";
+import { SmartFileInput } from "@edr/ui-common";
import type { Freight } from "@edr/types";
+import { api } from "@/services/api";
import {
CONTAINER_SIZES,
ContractFormInputValues,
+ type ContractDocuments,
type ContractFormValues,
} from "./schema";
+import { operationToTradeDirection } from "./helpers";
import { fieldStyles, SelectField, StepLabel } from "./shared";
+/**
+ * file_upload_settings code holding the hazardous-cargo document requirements.
+ * Fields are configured by an admin in the backoffice file-settings editor —
+ * whatever is configured there is what the modal asks for.
+ */
+const HAZARDOUS_DOC_SETTING_CODE = "hazardous_documents";
+
+function hasUploaded(value: File | File[] | null | undefined): boolean {
+ if (!value) return false;
+ return Array.isArray(value) ? value.length > 0 : true;
+}
+
const CARGO_TYPE_OPTIONS = [
{ value: "container", label: "Containerized (20ft / 40ft)" },
{ value: "bulk", label: "General / Bulk cargo" },
@@ -51,6 +72,101 @@ export function Step3CargoScope({
const cargoTypePath = form.watch("cargoTypePath") ?? [];
const parentId = cargoTypePath[0];
+ // Hazardous cargo is a ONE-TIME-contract-only option; refrigerated cargo and
+ // empty-container return are offered on IMPORT operations only.
+ const operationType = form.watch("operationType");
+ const isOneTime = (form.watch("contractKind") ?? "one_time") === "one_time";
+ const isImport = operationType
+ ? operationToTradeDirection(operationType) === "IMPORT"
+ : false;
+
+ const hazardSettingQuery = useQuery(
+ api.fileUploadSettings.getByCode.queryOptions({
+ input: { code: HAZARDOUS_DOC_SETTING_CODE },
+ enabled: isOneTime,
+ }),
+ );
+ const hazardFields = hazardSettingQuery.data?.fields ?? [];
+ const hazardKeys = useMemo(
+ () => hazardFields.map((f) => f.fileKey),
+ [hazardFields],
+ );
+
+ const [hazardModalOpen, setHazardModalOpen] = useState(false);
+ const [hazardDraft, setHazardDraft] = useState({});
+ const [hazardErrors, setHazardErrors] = useState>({});
+
+ /** Drop every hazardous document from the contract's document map. */
+ const clearHazardDocs = () => {
+ const docs = { ...((form.getValues("documents") ?? {}) as ContractDocuments) };
+ let changed = false;
+ for (const key of hazardKeys) {
+ if (key in docs) {
+ delete docs[key];
+ changed = true;
+ }
+ }
+ if (changed) form.setValue("documents", docs, { shouldDirty: true });
+ };
+
+ const openHazardModal = () => {
+ const docs = (form.getValues("documents") ?? {}) as ContractDocuments;
+ setHazardDraft(
+ Object.fromEntries(
+ hazardKeys.filter((k) => k in docs).map((k) => [k, docs[k]]),
+ ),
+ );
+ setHazardErrors({});
+ setHazardModalOpen(true);
+ };
+
+ const confirmHazardDocs = () => {
+ const missing = hazardFields.filter(
+ (f) => f.isRequired && !hasUploaded(hazardDraft[f.fileKey]),
+ );
+ if (missing.length > 0) {
+ setHazardErrors(
+ Object.fromEntries(
+ missing.map((f) => [f.fileKey, `${f.fileLabel} is required.`]),
+ ),
+ );
+ return;
+ }
+ form.setValue(
+ "documents",
+ {
+ ...((form.getValues("documents") ?? {}) as ContractDocuments),
+ ...hazardDraft,
+ },
+ { shouldDirty: true },
+ );
+ form.setValue("isHazardous", true, { shouldDirty: true });
+ setHazardModalOpen(false);
+ };
+
+ // A hidden flag must never leak into the payload: a general contract can't be
+ // hazardous, and a non-import contract carries neither reefer nor empty return.
+ useEffect(() => {
+ if (isOneTime) return;
+ if (form.getValues("isHazardous")) {
+ form.setValue("isHazardous", false, { shouldDirty: true });
+ }
+ // Runs again once the hazard field list loads — a no-op when nothing matches.
+ clearHazardDocs();
+ // eslint-disable-next-line react-hooks/exhaustive-deps
+ }, [isOneTime, hazardKeys, form]);
+
+ useEffect(() => {
+ // Reefer has no switch right now, so it must never leave the form true.
+ if (form.getValues("isRefrigerated")) {
+ form.setValue("isRefrigerated", false, { shouldDirty: true });
+ }
+ if (isImport) return;
+ if (form.getValues("equipmentReturn") === "with_return") {
+ form.setValue("equipmentReturn", "without_return", { shouldDirty: true });
+ }
+ }, [isImport, form]);
+
// Reset the commodity child only when the parent group really changes.
const prevParentIdRef = useRef(parentId);
useEffect(() => {
@@ -233,40 +349,55 @@ export function Step3CargoScope({
Cargo handling
- (
- }
- iconBg="#FBEAE7"
- iconColor="#C0392B"
- title="Hazardous Material"
- description="Applies a hazard surcharge as a per-container unit rate."
- checked={field.value ?? false}
- onChange={(v) => field.onChange(v)}
- />
- )}
- />
- (
- }
- iconBg="#E9F0F8"
- iconColor="#2E5B96"
- title="Refrigerated Cargo"
- description="Temperature-controlled transport applies a reefer surcharge."
- checked={field.value ?? false}
- onChange={(v) => field.onChange(v)}
- />
- )}
- />
- {/* Empty-container return is a container-only service. Like hazardous,
- enabling it here adds the return surcharge as a unit rate; at
- booking time the customer/GL sets how many containers return. */}
- {cargoType === "container" && (
+ {/* Hazardous cargo is only carried under a one-time contract, and
+ enabling it requires the configured hazard documents up front. */}
+ {isOneTime && (
+ (
+ }
+ iconBg="#FBEAE7"
+ iconColor="#C0392B"
+ title="Hazardous Material"
+ description="Applies a hazard surcharge as a per-container unit rate. Requires hazard documents."
+ checked={field.value ?? false}
+ onChange={(v) => {
+ if (v) {
+ openHazardModal();
+ return;
+ }
+ field.onChange(false);
+ clearHazardDocs();
+ }}
+ />
+ )}
+ />
+ )}
+ {/* Refrigerated cargo is hidden for now — import-only when re-enabled.
+ The effect above keeps isRefrigerated false while it's off.
+ {isImport && (
+ (
+ }
+ iconBg="#E9F0F8"
+ iconColor="#2E5B96"
+ title="Refrigerated Cargo"
+ description="Temperature-controlled transport applies a reefer surcharge."
+ checked={field.value ?? false}
+ onChange={(v) => field.onChange(v)}
+ />
+ )}
+ />
+ )} */}
+ {/* Empty-container return is a container-only IMPORT service. Like
+ hazardous, enabling it here adds the return surcharge as a unit
+ rate; at booking time the customer/GL sets how many return. */}
+ {isImport && cargoType === "container" && (
+
+ setHazardModalOpen(false)}
+ title="Hazardous cargo documents"
+ size="lg"
+ centered
+ radius={14}
+ >
+
+
+ Hazardous cargo can only move once the documents below are attached
+ to the contract.
+
+
+ {hazardSettingQuery.isLoading ? (
+
+
+
+ ) : hazardFields.length > 0 && hazardSettingQuery.data ? (
+ setHazardDraft(v)}
+ errors={hazardErrors}
+ />
+ ) : (
+
+ No hazardous document requirements are configured yet. You can
+ still flag the cargo as hazardous — EDR will request the paperwork
+ during review.
+
+ )}
+
+
+ setHazardModalOpen(false)}
+ >
+ Cancel
+
+
+ Save & mark hazardous
+
+
+
+
);
}
diff --git a/apps/edr-freight-web/portal/src/pages/contracts/new-contract-form/step4-route.tsx b/apps/edr-freight-web/portal/src/pages/contracts/new-contract-form/step4-route.tsx
index 7b96676ef..756dd7fd9 100644
--- a/apps/edr-freight-web/portal/src/pages/contracts/new-contract-form/step4-route.tsx
+++ b/apps/edr-freight-web/portal/src/pages/contracts/new-contract-form/step4-route.tsx
@@ -72,12 +72,17 @@ export function Step4Route({
const direction = getRouteDirection(origin, dest);
// Clear yards that no longer match the operation's required country.
+ // Skipped right after a hydration `form.reset()` (edit mode) — a saved
+ // contract's yards are trusted as-is until the customer changes something
+ // live; `isDirty` is false only in that pristine post-hydration render.
useEffect(() => {
+ if (!form.formState.isDirty) return;
if (originCountry && origin && origin.country !== originCountry) {
form.setValue("originYard", "");
}
}, [originCountry, origin, form]);
useEffect(() => {
+ if (!form.formState.isDirty) return;
if (destinationCountry && dest && dest.country !== destinationCountry) {
form.setValue("destinationYard", "");
}
diff --git a/e2e/freight/cypress/e2e/flows/booking_cancel.cy.ts b/e2e/freight/cypress/e2e/flows/booking_cancel.cy.ts
new file mode 100644
index 000000000..9eba43831
--- /dev/null
+++ b/e2e/freight/cypress/e2e/flows/booking_cancel.cy.ts
@@ -0,0 +1,134 @@
+/**
+ * BOOKING — cancel lifecycle + the commit gate:
+ *
+ * `POST /bookings/:id/cancel` is only legal for a booking that has not yet
+ * been committed to a train (DRAFT … OPERATION_REQUEST_PENDING). This spec
+ * proves both sides end to end, which the unit tests never do:
+ *
+ * – an un-accepted booking (OPERATION_REQUEST_PENDING) cancels → CANCELLED,
+ * and its open payable invoice is expired (no dangling payable)
+ * – cancelling it again is rejected (status CANCELLED not allowed)
+ * – a PAID + allocated booking CANNOT be cancelled — the guard blocks it.
+ * (There is deliberately no cancel-after-allocation / refund path; a
+ * committed booking leaves only by EXPIRE, never customer cancel.)
+ *
+ * EXPORT bulk corridor (FCFS: accept reserves immediately, mark-paid allocates).
+ * Retries off — sequential steps of one journey.
+ */
+
+import {
+ acceptExport,
+ apiPost,
+ bookBulk,
+ createImportSchedule,
+ db,
+ departureAt,
+ eatDayStr,
+ ensureExportRoute,
+ EXP_DEST,
+ EXP_ORIGIN,
+ forceWindowOpen,
+ markPaid,
+ pollAllocations,
+ resetCorridorDay,
+ seedImportContract,
+ superAdmin,
+ withBooking,
+ withExportSchedule,
+} from "./import-utils";
+
+const DEPARTURE = departureAt(6);
+const BOOKING_DAY = eatDayStr(DEPARTURE);
+const stamp = String(Date.now());
+
+function seedBulkExport(suffix: string) {
+ seedImportContract({
+ suffix,
+ reference: `CTR-IMP-${stamp}-${suffix}`,
+ freight: "BULK",
+ direction: "EXPORT",
+ originCode: EXP_ORIGIN,
+ destCode: EXP_DEST,
+ });
+}
+
+/** Fire cancel with a reason; caller decides whether to fail on non-2xx. */
+function cancel(bookingId: string, failOnStatusCode = true) {
+ return apiPost(
+ superAdmin,
+ `/api/bookings/${bookingId}/cancel`,
+ { reason: `E2E cancel ${stamp}` },
+ failOnStatusCode,
+ );
+}
+
+describe("booking cancel: pre-commit only, blocked once allocated", { retries: 0 }, () => {
+ before(() => {
+ cy.task("db:seedFile", "seed-import-corridor.sql");
+ ["CXA", "CXB"].forEach(seedBulkExport);
+ });
+
+ it("operations opens the export corridor + a D+6 CW4 train", () => {
+ ensureExportRoute();
+ resetCorridorDay(DEPARTURE, EXP_DEST, EXP_ORIGIN);
+ createImportSchedule({
+ departure: DEPARTURE,
+ locoPair: ["LOCO-EXP-1", "LOCO-EXP-2"],
+ kind: "bulk",
+ originCode: EXP_ORIGIN,
+ destCode: EXP_DEST,
+ });
+ withExportSchedule(DEPARTURE, (s) => forceWindowOpen(s.id, 60));
+ });
+
+ it("an un-accepted booking cancels, its invoice is expired, and re-cancel is rejected", () => {
+ bookBulk({ suffix: "CXA", tons: 700, scheduledDate: BOOKING_DAY });
+
+ // Fresh non-customs export booking sits at OPERATION_REQUEST_PENDING.
+ withBooking("CXA", (b) => {
+ expect(b.status, "pre-accept status").to.eq("OPERATION_REQUEST_PENDING");
+ cancel(b.id).then((res) => expect(res.status, "cancelled").to.be.oneOf([200, 201]));
+ });
+
+ withBooking("CXA", (b) => {
+ expect(b.status, "now CANCELLED").to.eq("CANCELLED");
+ // No open payable invoice may survive a cancel.
+ db<{ n: string }>(
+ `SELECT count(*) AS n FROM freight.invoices
+ WHERE source = 'booking' AND source_id = $1
+ AND status NOT IN ('EXPIRED','CANCELLED','PAID')
+ AND deleted_at IS NULL`,
+ [b.id],
+ ).then(({ rows }) => expect(Number(rows[0].n), "no open invoice left").to.eq(0));
+
+ // Cancelling a CANCELLED booking is rejected by the status guard.
+ cancel(b.id, false).then((res) => {
+ expect(res.status, "re-cancel rejected").to.be.within(400, 422);
+ expect(JSON.stringify(res.body)).to.include("Cannot perform this action");
+ expect(JSON.stringify(res.body)).to.include("CANCELLED");
+ });
+ });
+ });
+
+ it("a PAID + allocated booking cannot be cancelled — the commit gate blocks it", () => {
+ bookBulk({ suffix: "CXB", tons: 700, scheduledDate: BOOKING_DAY });
+ acceptExport("CXB");
+ markPaid("CXB");
+ pollAllocations("CXB", 10); // 700T / 70T = 10 CW4 wagons
+
+ withBooking("CXB", (b) => {
+ expect(b.status, "committed + paid").to.eq("PAID");
+ cancel(b.id, false).then((res) => {
+ expect(res.status, "cancel blocked after allocation").to.be.within(400, 422);
+ expect(JSON.stringify(res.body)).to.include("Cannot perform this action");
+ expect(JSON.stringify(res.body)).to.include("PAID");
+ });
+ });
+
+ // The block is real: the booking still rides, wagons still allocated.
+ withBooking("CXB", (b) => expect(b.status, "still PAID").to.eq("PAID"));
+ pollAllocations("CXB", 10);
+ });
+});
+
+export {};
diff --git a/e2e/freight/cypress/e2e/flows/booking_clearance_query.cy.ts b/e2e/freight/cypress/e2e/flows/booking_clearance_query.cy.ts
new file mode 100644
index 000000000..b920586b1
--- /dev/null
+++ b/e2e/freight/cypress/e2e/flows/booking_clearance_query.cy.ts
@@ -0,0 +1,141 @@
+/**
+ * BOOKING — clearance document QUERY (reject) + re-upload lifecycle:
+ *
+ * Every other spec that touches clearance only ever APPROVES documents
+ * (`clearGeneralBooking` in import-utils.ts). This spec drives the other
+ * branch of `reviewDocument` — QUERIED — which no spec exercises:
+ *
+ * – querying a document with no note is rejected (a note is required)
+ * – querying with a note succeeds: reviewStatus → QUERIED, the note is
+ * stored, and a CHANGES_REQUESTED review note is recorded on the booking
+ * – re-uploading the SAME document resets its review to PENDING (the
+ * customer's fix clears the query — submitClearanceDocuments always
+ * resets reviewed docs back to PENDING on re-upload)
+ * – GL re-reviews it APPROVED → finalize succeeds → CLEARANCE_READY
+ *
+ * GENERAL contract, per-booking clearance gate (AWAITING_DOCUMENTS at
+ * creation, before ops ever sees it) — same fixture shape as
+ * clearGeneralBooking, with an ad-hoc document. Retries off.
+ */
+
+import {
+ apiPost,
+ bookContainers,
+ db,
+ departureAt,
+ eatDayStr,
+ glUpload,
+ seedImportContract,
+ superAdmin,
+ withBooking,
+} from "./import-utils";
+
+const stamp = String(Date.now());
+// Per-booking clearance (Path A) skips the booking-window gate entirely, so
+// this date never needs a real schedule behind it — just a binding day string.
+const BOOKING_DAY = eatDayStr(departureAt(33));
+
+interface ReviewRow {
+ status: string;
+ note: string | null;
+}
+
+function reviewFor(bookingId: string, fn: (row: ReviewRow) => void) {
+ db(
+ `SELECT status, note FROM freight.booking_document_review
+ WHERE booking_id = $1 AND file_key = 'custom_e2e'`,
+ [bookingId],
+ ).then(({ rows }) => {
+ expect(rows, "review row for custom_e2e").to.have.length(1);
+ fn(rows[0]);
+ });
+}
+
+describe("booking: clearance document query (reject) + re-upload lifecycle", { retries: 0 }, () => {
+ before(() => {
+ cy.task("db:seedFile", "seed-import-corridor.sql");
+ seedImportContract({ suffix: "CQ1", reference: `CTR-IMP-${stamp}-CQ1`, kind: "GENERAL" });
+ });
+
+ it("books under the GENERAL contract — starts at the clearance gate", () => {
+ bookContainers({
+ suffix: "CQ1",
+ runStamp: stamp,
+ isoSeed: 0,
+ forty: 1,
+ scheduledDate: BOOKING_DAY,
+ });
+ withBooking("CQ1", (b) =>
+ expect(b.status, "AWAITING_DOCUMENTS").to.eq("AWAITING_DOCUMENTS"),
+ );
+ });
+
+ it("uploads a document; querying it with no note is rejected", () => {
+ withBooking("CQ1", (b) => {
+ glUpload(`/api/bookings/${b.id}/clearance/documents`, {}, "custom_e2e");
+
+ apiPost(
+ superAdmin,
+ `/api/bookings/${b.id}/clearance/review`,
+ { fileKey: "custom_e2e", status: "QUERIED" },
+ false,
+ ).then((res) => {
+ expect(res.status, "note required").to.be.within(400, 422);
+ expect(JSON.stringify(res.body)).to.include("A note is required");
+ });
+ });
+ });
+
+ it("querying with a note succeeds — reviewStatus QUERIED, note stored, review note recorded", () => {
+ withBooking("CQ1", (b) => {
+ apiPost(superAdmin, `/api/bookings/${b.id}/clearance/review`, {
+ fileKey: "custom_e2e",
+ status: "QUERIED",
+ note: "E2E: wrong document, please re-upload the correct one",
+ }).then((res) => expect(res.status, "queried").to.be.oneOf([200, 201]));
+
+ reviewFor(b.id, (row) => {
+ expect(row.status, "QUERIED").to.eq("QUERIED");
+ expect(row.note, "note stored").to.include("wrong document");
+ });
+
+ db<{ n: string }>(
+ `SELECT count(*) AS n FROM freight.booking_review_note
+ WHERE booking_id = $1 AND type = 'CHANGES_REQUESTED'`,
+ [b.id],
+ ).then(({ rows }) =>
+ expect(Number(rows[0].n), "queried review note recorded").to.be.at.least(1),
+ );
+
+ // Still under review — the query doesn't advance the booking status.
+ withBooking("CQ1", (fresh) =>
+ expect(fresh.status, "still DOCUMENTS_UNDER_REVIEW").to.eq("DOCUMENTS_UNDER_REVIEW"),
+ );
+ });
+ });
+
+ it("re-uploading resets the review to PENDING; GL approves it and finalize succeeds", () => {
+ withBooking("CQ1", (b) => {
+ glUpload(`/api/bookings/${b.id}/clearance/documents`, {}, "custom_e2e");
+
+ reviewFor(b.id, (row) => expect(row.status, "reset to PENDING").to.eq("PENDING"));
+
+ apiPost(superAdmin, `/api/bookings/${b.id}/clearance/review`, {
+ fileKey: "custom_e2e",
+ status: "APPROVED",
+ }).then((res) => expect(res.status, "approved").to.be.oneOf([200, 201]));
+
+ reviewFor(b.id, (row) => expect(row.status, "APPROVED").to.eq("APPROVED"));
+
+ apiPost(superAdmin, `/api/bookings/${b.id}/clearance/finalize`).then((res) =>
+ expect(res.status, "finalized").to.be.oneOf([200, 201]),
+ );
+ });
+
+ withBooking("CQ1", (b) =>
+ expect(b.status, "CLEARANCE_READY").to.eq("CLEARANCE_READY"),
+ );
+ });
+});
+
+export {};
diff --git a/e2e/freight/cypress/e2e/flows/contract-lifecycle.cy.ts b/e2e/freight/cypress/e2e/flows/contract-lifecycle.cy.ts
index e78fe1905..128ee1ab6 100644
--- a/e2e/freight/cypress/e2e/flows/contract-lifecycle.cy.ts
+++ b/e2e/freight/cypress/e2e/flows/contract-lifecycle.cy.ts
@@ -2,7 +2,7 @@
* Contract creation → finalization, spanning portal + backoffice:
*
* 1. portal (user@gmail.com, company seeded active by seed-company.sql):
- * wizard → GENERAL / Import / Container / 20ft → submit + approve quote
+ * wizard → GENERAL / Import / Container (both sizes) → submit + approve quote
* 2. backoffice marketer: "Accept for approval" (validity) + approve the
* LINE_STAFF step
* 3. backoffice director: approve the DIRECTOR step → PDF → CONTRACT_READY
@@ -62,12 +62,10 @@ describe("contract lifecycle: creation to finalization", { retries: 0 }, () => {
cy.mantineSelect(/^Payment Currency/, /^ETB/);
cy.contains("button", "Continue").click({ force: true });
- // Step 1 — Cargo & Route.
+ // Step 1 — Cargo & Route. Container contracts now auto-cover BOTH 20ft &
+ // 40ft (no size picker — just an info card) and the cargo description moved
+ // to booking time, so the scope select plus the route is all this step needs.
cy.mantineSelect(/^Cargo Scope/, /Containerized/);
- cy.get('[role="checkbox"][aria-label="20ft Container"]').click();
- cy.get('textarea[placeholder*="Electronics"]').type(
- "E2E electronics shipment scope",
- );
cy.mantineSelect(/^Origin Yard/, "Djibouti Port Terminal");
cy.mantineSelect(/^Destination Yard/, "Mojo Dry Port");
cy.contains("button", "Continue").click({ force: true });
@@ -80,7 +78,10 @@ describe("contract lifecycle: creation to finalization", { retries: 0 }, () => {
cy.contains("button", "Approve & submit").click();
cy.location("pathname", { timeout: 20000 }).should("eq", "/contracts");
- cy.contains("Submitted", { timeout: 15000 }).should("be.visible");
+ // `exist`, not `be.visible`: the status badge sits inside the list's
+ // horizontally-scrolling container, so Cypress reports it as clipped by an
+ // overflow parent. The DB assertion below is the authoritative check.
+ cy.contains("Submitted", { timeout: 15000 }).should("exist");
dbContract().then(({ rows }) => {
expect(rows, "contract row").to.have.length(1);
diff --git a/e2e/freight/cypress/e2e/flows/contract_rejection_send_back.cy.ts b/e2e/freight/cypress/e2e/flows/contract_rejection_send_back.cy.ts
new file mode 100644
index 000000000..2202a4184
--- /dev/null
+++ b/e2e/freight/cypress/e2e/flows/contract_rejection_send_back.cy.ts
@@ -0,0 +1,197 @@
+/**
+ * CONTRACT — rejection / send-back (import & export contracts):
+ *
+ * Covered elsewhere only for the INTERCITY contract wizard (rejection +
+ * reason + resubmit). This spec drives the CONTRACT-level reject/
+ * request-changes/approval-chain guards directly via the API against a
+ * plain IMPORT container contract, something no other spec exercises:
+ *
+ * – SUBMITTED → staff reject → REJECTED (terminal, reason recorded)
+ * – SUBMITTED → staff request-changes → CHANGES_REQUESTED
+ * – SUBMITTED → staff accept → PENDING_APPROVAL (chain instantiated) →
+ * reject the first step straight to the customer (no returnToStepId)
+ * → REJECTED
+ * – SUBMITTED → accept → approve step 1 → reject step 2 WITH
+ * returnToStepId=step1 (send-back) → step 1 and 2 both reset to
+ * PENDING, contract stays PENDING_APPROVAL (alive, not rejected)
+ * – guard: a rejection can only return to an EARLIER step
+ *
+ * Contracts are seeded directly at SUBMITTED (skipping the wizard — that
+ * journey is covered by contract-lifecycle.cy.ts) so this spec is pure API.
+ * Retries off — each `it` is an independent contract's own short journey.
+ */
+
+import { apiPost, companyTin, db, DEST, ORIGIN, superAdmin } from "./import-utils";
+
+const stamp = String(Date.now());
+let seq = 0;
+
+/** A plain IMPORT/CONTAINER/ONE_TIME contract seeded straight to SUBMITTED —
+ * no cargo scope (so instantiateApprovalSteps resolves the non-director
+ * chain), no pricing (reject/request-changes/accept never read it). */
+function seedSubmittedContract(): Cypress.Chainable {
+ const reference = `CTR-REJ-${stamp}-${seq++}`;
+ return db<{ id: string }>(
+ `WITH c AS (
+ INSERT INTO freight.contracts
+ (reference, company_id, company_profile_id, contract_kind,
+ trade_direction, freight_type, service_type_id, payment_currency,
+ customs_clearing_enabled, clearance_status, status, contract_summary)
+ SELECT $1, comp.id,
+ (SELECT p.id FROM freight.company_profiles p
+ WHERE p.company_id = comp.id AND p.deleted_at IS NULL
+ ORDER BY CASE WHEN p.type = 'importer' THEN 0 ELSE 1 END
+ LIMIT 1),
+ 'ONE_TIME', 'IMPORT', 'CONTAINER',
+ (SELECT st.id FROM freight.service_types st ORDER BY st.created_at LIMIT 1),
+ 'ETB', false, 'NOT_APPLICABLE', 'SUBMITTED', 'E2E contract-reject fixture'
+ FROM freight.companies comp WHERE comp.tin = $2
+ RETURNING id
+ )
+ INSERT INTO freight.contract_routes
+ (contract_id, origin_yard_id, destination_yard_id, sort_order)
+ SELECT c.id, o.id, d.id, 0 FROM c
+ JOIN freight.yards o ON o.code = $3
+ JOIN freight.yards d ON d.code = $4
+ RETURNING contract_id AS id`,
+ [reference, companyTin, ORIGIN, DEST],
+ ).then(({ rows }) => {
+ expect(rows, "seeded SUBMITTED contract").to.have.length(1);
+ return cy.wrap(rows[0].id, { log: false });
+ });
+}
+
+interface ContractRow {
+ status: string;
+}
+
+function contractStatus(id: string, fn: (row: ContractRow) => void) {
+ db(`SELECT status FROM freight.contracts WHERE id = $1`, [id]).then(
+ ({ rows }) => {
+ expect(rows, "contract row").to.have.length(1);
+ fn(rows[0]);
+ },
+ );
+}
+
+interface StepRow {
+ id: string;
+ step_order: number;
+ status: string;
+}
+
+function approvalSteps(contractId: string, fn: (rows: StepRow[]) => void) {
+ db(
+ `SELECT id, step_order, status FROM freight.contract_approval_steps
+ WHERE contract_id = $1 AND deleted_at IS NULL ORDER BY step_order ASC`,
+ [contractId],
+ ).then(({ rows }) => fn(rows));
+}
+
+describe("contract: rejection and approval-chain send-back", { retries: 0 }, () => {
+ it("SUBMITTED → staff reject → REJECTED, reason recorded", () => {
+ seedSubmittedContract().then((id) => {
+ apiPost(superAdmin, `/api/contracts/${id}/staff/reject`, {
+ reason: "E2E: missing documents",
+ }).then((res) => expect(res.status, "rejected").to.be.oneOf([200, 201]));
+
+ contractStatus(id, (c) => expect(c.status, "REJECTED").to.eq("REJECTED"));
+
+ db<{ n: string }>(
+ `SELECT count(*) AS n FROM freight.contract_review_notes
+ WHERE contract_id = $1 AND note_type = 'REJECTION'`,
+ [id],
+ ).then(({ rows }) => expect(Number(rows[0].n), "rejection note recorded").to.be.at.least(1));
+
+ // Terminal: rejecting again is refused by the status guard.
+ apiPost(
+ superAdmin,
+ `/api/contracts/${id}/staff/reject`,
+ { reason: "again" },
+ false,
+ ).then((res) => expect(res.status, "re-reject refused").to.be.within(400, 422));
+ });
+ });
+
+ it("SUBMITTED → staff request-changes → CHANGES_REQUESTED", () => {
+ seedSubmittedContract().then((id) => {
+ apiPost(superAdmin, `/api/contracts/${id}/staff/request-changes`, {
+ note: "E2E: please add the missing cargo description",
+ }).then((res) => expect(res.status, "changes requested").to.be.oneOf([200, 201]));
+
+ contractStatus(id, (c) =>
+ expect(c.status, "CHANGES_REQUESTED").to.eq("CHANGES_REQUESTED"),
+ );
+
+ // request-changes without a note is refused.
+ seedSubmittedContract().then((id2) => {
+ apiPost(
+ superAdmin,
+ `/api/contracts/${id2}/staff/request-changes`,
+ {},
+ false,
+ ).then((res) => expect(res.status, "note required").to.be.within(400, 422));
+ });
+ });
+ });
+
+ it("accept → PENDING_APPROVAL; rejecting the first step straight to the customer → REJECTED", () => {
+ seedSubmittedContract().then((id) => {
+ apiPost(superAdmin, `/api/contracts/${id}/staff/accept`, { validityDays: 365 }).then(
+ (res) => expect(res.status, "accepted into chain").to.be.oneOf([200, 201]),
+ );
+
+ approvalSteps(id, (steps) => {
+ expect(steps.length, "chain has at least one step").to.be.at.least(1);
+ const step1 = steps[0];
+
+ apiPost(superAdmin, `/api/contracts/${id}/approval-steps/${step1.id}/reject`, {
+ reason: "E2E: rejected to customer",
+ }).then((res) => expect(res.status, "rejected to customer").to.be.oneOf([200, 201]));
+ });
+
+ contractStatus(id, (c) => expect(c.status, "REJECTED (terminal)").to.eq("REJECTED"));
+ });
+ });
+
+ it("send-back: reject step 2 back to step 1 — both reset PENDING, contract stays alive", () => {
+ seedSubmittedContract().then((id) => {
+ apiPost(superAdmin, `/api/contracts/${id}/staff/accept`, { validityDays: 365 });
+
+ approvalSteps(id, (steps) => {
+ expect(steps.length, "chain has at least 2 steps for a send-back").to.be.at.least(2);
+ const [step1, step2] = steps;
+
+ apiPost(superAdmin, `/api/contracts/${id}/approval-steps/${step1.id}/approve`).then(
+ (res) => expect(res.status, "step 1 approved").to.be.oneOf([200, 201]),
+ );
+
+ // Guard: a rejection can only return to an EARLIER step — step2 → step2 rejected.
+ apiPost(
+ superAdmin,
+ `/api/contracts/${id}/approval-steps/${step2.id}/reject`,
+ { reason: "bad", returnToStepId: step2.id },
+ false,
+ ).then((res) => {
+ expect(res.status, "same-step return rejected").to.be.within(400, 422);
+ expect(JSON.stringify(res.body)).to.include("EARLIER step");
+ });
+
+ apiPost(superAdmin, `/api/contracts/${id}/approval-steps/${step2.id}/reject`, {
+ reason: "E2E: send back for a fix",
+ returnToStepId: step1.id,
+ }).then((res) => expect(res.status, "sent back to step 1").to.be.oneOf([200, 201]));
+ });
+
+ contractStatus(id, (c) =>
+ expect(c.status, "still PENDING_APPROVAL (alive)").to.eq("PENDING_APPROVAL"),
+ );
+ approvalSteps(id, (steps) => {
+ expect(steps[0].status, "step 1 reset to PENDING").to.eq("PENDING");
+ expect(steps[1].status, "step 2 reset to PENDING").to.eq("PENDING");
+ });
+ });
+ });
+});
+
+export {};
diff --git a/e2e/freight/cypress/e2e/flows/export_ledger_day.cy.ts b/e2e/freight/cypress/e2e/flows/export_ledger_day.cy.ts
new file mode 100644
index 000000000..df4cdcc27
--- /dev/null
+++ b/e2e/freight/cypress/e2e/flows/export_ledger_day.cy.ts
@@ -0,0 +1,449 @@
+/**
+ * EXPORT "LEDGER DAY" (D+19) — one departure day, THREE trains of three
+ * different consist styles, ~22 bookings of every flavour (ONE_TIME +
+ * GENERAL, container + bulk, USD + ETB), every one of them driven to a known
+ * final fate — and a generated day-ledger REPORT at the end.
+ *
+ * GRAIN built train TRN-LEDGER-PW2 — 37 × PW2 box wagons (the physical
+ * consist IS the cap; the only built-train schedule in the suite)
+ * → bulk only, 37/37 = 2 590 T
+ * BOX loco pair, 54 × NW5 → containers only, 54/54
+ * MIX loco pair, 54 slots → 24w containers (NW5) + 30w bulk (CW4)
+ *
+ * 145 slots, filled FCFS in wave order (export reserves at ACCEPT):
+ * – bulk wave fills GRAIN exactly; containers then cascade PAST the full
+ * PW2 train onto BOX; the mixed wave lands on MIX
+ * – ONE booking per train never pays → all three EXPIRE in one sweep
+ * – 2 late bookings are REFUSED at create (export never queues)
+ * – 1 refused customer rebooks GRAIN's freed 5 wagons, pays, rides
+ *
+ * The final test classifies every booking of the day and writes
+ * `cypress/reports/export-ledger-.json`.
+ *
+ * Sequential steps of one journey — retries off.
+ */
+
+import {
+ acceptExport,
+ bookBulk,
+ bookContainers,
+ clearGeneralBooking,
+ createImportSchedule,
+ db,
+ dayLedger,
+ departureAt,
+ eatDayStr,
+ ensureExportRoute,
+ EXP_DEST,
+ EXP_ORIGIN,
+ expectWagonType,
+ forceReservationExpiry,
+ forceWindowOpen,
+ markPaid,
+ pollAllocations,
+ pollBookingStatus,
+ pollDb,
+ resetCorridorDay,
+ seedImportContract,
+ withBooking,
+ writeLedgerReport,
+ type LedgerRow,
+ type ScheduleRow,
+} from "./import-utils";
+
+const GRAIN_AT = departureAt(19);
+const BOX_AT = new Date(GRAIN_AT.getTime() + 2 * 3_600_000);
+const MIX_AT = new Date(GRAIN_AT.getTime() + 4 * 3_600_000);
+const DAY = eatDayStr(GRAIN_AT);
+
+const stamp = String(Date.now());
+const stampedRef = (suffix: string) => `CTR-IMP-${stamp}-${suffix}`;
+
+type Kind = "ONE_TIME" | "GENERAL";
+interface Line {
+ suffix: string;
+ kind: Kind;
+ currency: "ETB" | "USD";
+ freight: "CONTAINER" | "BULK";
+ twenty?: number;
+ tons?: number;
+ wagons: number;
+ wagonType: "PW2" | "NW5" | "CW4";
+ pays: boolean;
+}
+
+/** Wave 1 — fills the built 37 × PW2 GRAIN train exactly. */
+const GRAIN_LINES: Line[] = [
+ { suffix: "LG1", kind: "ONE_TIME", currency: "USD", freight: "BULK", tons: 700, wagons: 10, wagonType: "PW2", pays: true },
+ { suffix: "LG2", kind: "GENERAL", currency: "ETB", freight: "BULK", tons: 560, wagons: 8, wagonType: "PW2", pays: true },
+ { suffix: "LG3", kind: "ONE_TIME", currency: "ETB", freight: "BULK", tons: 560, wagons: 8, wagonType: "PW2", pays: true },
+ { suffix: "LG4", kind: "ONE_TIME", currency: "USD", freight: "BULK", tons: 420, wagons: 6, wagonType: "PW2", pays: true },
+ { suffix: "LG5", kind: "ONE_TIME", currency: "ETB", freight: "BULK", tons: 350, wagons: 5, wagonType: "PW2", pays: false },
+];
+
+/** Wave 2 — 54 × NW5 on the pure container train. */
+const BOX_LINES: Line[] = [
+ { suffix: "LB1", kind: "ONE_TIME", currency: "USD", freight: "CONTAINER", twenty: 40, wagons: 20, wagonType: "NW5", pays: true },
+ { suffix: "LB2", kind: "ONE_TIME", currency: "ETB", freight: "CONTAINER", twenty: 24, wagons: 12, wagonType: "NW5", pays: true },
+ { suffix: "LB3", kind: "GENERAL", currency: "USD", freight: "CONTAINER", twenty: 16, wagons: 8, wagonType: "NW5", pays: true },
+ { suffix: "LB4", kind: "ONE_TIME", currency: "ETB", freight: "CONTAINER", twenty: 12, wagons: 6, wagonType: "NW5", pays: true },
+ { suffix: "LB5", kind: "ONE_TIME", currency: "USD", freight: "CONTAINER", twenty: 8, wagons: 4, wagonType: "NW5", pays: true },
+ { suffix: "LB6", kind: "GENERAL", currency: "ETB", freight: "CONTAINER", twenty: 4, wagons: 2, wagonType: "NW5", pays: true },
+ { suffix: "LB7", kind: "ONE_TIME", currency: "USD", freight: "CONTAINER", twenty: 2, wagons: 1, wagonType: "NW5", pays: true },
+ { suffix: "LB8", kind: "ONE_TIME", currency: "ETB", freight: "CONTAINER", twenty: 2, wagons: 1, wagonType: "NW5", pays: false },
+];
+
+/** Wave 3 — 24w containers + 30w bulk share the MIX train. */
+const MIX_LINES: Line[] = [
+ { suffix: "LM1", kind: "ONE_TIME", currency: "USD", freight: "CONTAINER", twenty: 24, wagons: 12, wagonType: "NW5", pays: true },
+ { suffix: "LM2", kind: "GENERAL", currency: "ETB", freight: "CONTAINER", twenty: 16, wagons: 8, wagonType: "NW5", pays: true },
+ { suffix: "LM3", kind: "ONE_TIME", currency: "ETB", freight: "CONTAINER", twenty: 8, wagons: 4, wagonType: "NW5", pays: true },
+ { suffix: "LM4", kind: "ONE_TIME", currency: "USD", freight: "BULK", tons: 700, wagons: 10, wagonType: "CW4", pays: true },
+ { suffix: "LM5", kind: "GENERAL", currency: "ETB", freight: "BULK", tons: 700, wagons: 10, wagonType: "CW4", pays: true },
+ { suffix: "LM6", kind: "ONE_TIME", currency: "ETB", freight: "BULK", tons: 700, wagons: 10, wagonType: "CW4", pays: false },
+];
+
+const ALL_LINES = [...GRAIN_LINES, ...BOX_LINES, ...MIX_LINES];
+const PAID = ALL_LINES.filter((l) => l.pays);
+const UNPAID = ALL_LINES.filter((l) => !l.pays);
+/** Refused at create once all 145 slots are held; LR2 later redeems itself. */
+const REJECTED = ["LR1", "LR2"];
+
+let isoSeed = 20_000;
+
+/** Book one line and take it to its FCFS reservation. */
+function bookAndAccept(line: Line) {
+ if (line.freight === "CONTAINER") {
+ bookContainers({
+ suffix: line.suffix,
+ runStamp: stamp,
+ isoSeed,
+ twenty: line.twenty,
+ scheduledDate: DAY,
+ });
+ isoSeed += (line.twenty ?? 0) + 5;
+ } else {
+ // PW2 bulk rides the built GRAIN consist → GRAINS cargo; CW4 bulk rides the
+ // loco-pair MIX train → WHEAT. One wagon length per cargo keeps the
+ // loco-pair length budget deterministic (see seed 5b3).
+ bookBulk({
+ suffix: line.suffix,
+ tons: line.tons!,
+ scheduledDate: DAY,
+ cargoCode: line.wagonType === "PW2" ? "E2E_IMP_GRAINS" : "E2E_IMP_WHEAT",
+ });
+ }
+ if (line.kind === "GENERAL") clearGeneralBooking(line.suffix, DAY, "export");
+ else acceptExport(line.suffix);
+}
+
+function seedLine(line: Line) {
+ seedImportContract({
+ suffix: line.suffix,
+ reference: stampedRef(line.suffix),
+ kind: line.kind,
+ currency: line.currency,
+ freight: line.freight,
+ direction: "EXPORT",
+ originCode: EXP_ORIGIN,
+ destCode: EXP_DEST,
+ });
+}
+
+interface DaySchedule {
+ id: string;
+ reference: string;
+ max_wagons: number;
+ booking_window_status: string;
+}
+
+function daySchedule(at: Date) {
+ return db(
+ `SELECT ts.id, ts.reference, ts.max_wagons, ts.booking_window_status
+ FROM freight.train_schedules ts
+ JOIN freight.yards o ON o.id = ts.origin_station_id AND o.code = $1
+ JOIN freight.yards d ON d.id = ts.destination_station_id AND d.code = $2
+ WHERE ts.deleted_at IS NULL
+ AND abs(extract(epoch FROM (ts.scheduled_departure_date - $3::timestamptz))) < 3600
+ ORDER BY ts.created_at DESC LIMIT 1`,
+ [EXP_ORIGIN, EXP_DEST, at.toISOString()],
+ ).then(({ rows }) => {
+ expect(rows, `schedule departing ${at.toISOString()}`).to.have.length(1);
+ return cy.wrap(rows[0], { log: false });
+ });
+}
+
+describe("export ledger day: three trains, every fate, one report", { retries: 0 }, () => {
+ before(() => {
+ cy.task("db:seedFile", "seed-import-corridor.sql");
+ ALL_LINES.forEach(seedLine);
+ seedLine({
+ suffix: "LR1",
+ kind: "ONE_TIME",
+ currency: "USD",
+ freight: "CONTAINER",
+ twenty: 2,
+ wagons: 1,
+ wagonType: "NW5",
+ pays: false,
+ });
+ seedLine({
+ suffix: "LR2",
+ kind: "ONE_TIME",
+ currency: "ETB",
+ freight: "BULK",
+ tons: 350,
+ wagons: 5,
+ wagonType: "PW2",
+ pays: false,
+ });
+ });
+
+ it("operations schedules THREE trains for one day: 37×PW2 built GRAIN, 54×NW5 BOX, 54 MIX", () => {
+ ensureExportRoute();
+ resetCorridorDay(GRAIN_AT, EXP_DEST, EXP_ORIGIN);
+
+ // The built train's coupled consist IS its capacity — 37, not the
+ // loco-length-derived 54 every other schedule in the suite gets.
+ createImportSchedule({
+ departure: GRAIN_AT,
+ trainCode: "TRN-LEDGER-PW2",
+ maxWagons: 37,
+ kind: "bulk",
+ originCode: EXP_ORIGIN,
+ destCode: EXP_DEST,
+ });
+ createImportSchedule({
+ departure: BOX_AT,
+ locoPair: ["LOCO-LED-3", "LOCO-LED-4"],
+ originCode: EXP_ORIGIN,
+ destCode: EXP_DEST,
+ });
+ createImportSchedule({
+ departure: MIX_AT,
+ locoPair: ["LOCO-LED-5", "LOCO-LED-6"],
+ originCode: EXP_ORIGIN,
+ destCode: EXP_DEST,
+ });
+
+ [GRAIN_AT, BOX_AT, MIX_AT].forEach((at) =>
+ daySchedule(at).then((s) => forceWindowOpen(s.id, 120)),
+ );
+ daySchedule(GRAIN_AT).then((s) =>
+ expect(s.max_wagons, "built consist = 37 PW2").to.eq(37),
+ );
+ daySchedule(BOX_AT).then((s) => expect(s.max_wagons, "BOX = 54").to.eq(54));
+ daySchedule(MIX_AT).then((s) => expect(s.max_wagons, "MIX = 54").to.eq(54));
+ });
+
+ it("wave 1 — five bulk bookings fill the built PW2 train exactly (37/37 reserved)", () => {
+ GRAIN_LINES.forEach(bookAndAccept);
+ daySchedule(GRAIN_AT).then((s) => {
+ GRAIN_LINES.forEach((l) =>
+ withBooking(l.suffix, (b) =>
+ expect(b.train_schedule_id, `${l.suffix} on GRAIN`).to.eq(s.id),
+ ),
+ );
+ });
+ });
+
+ it("ONE_TIME is single-slot; GENERAL draws down again but is stopped at the FCFS accept", () => {
+ // A second booking on the live ONE_TIME contract LG1 is refused outright…
+ bookBulk({
+ suffix: "LG1",
+ tons: 70,
+ scheduledDate: DAY,
+ cargoCode: "E2E_IMP_GRAINS",
+ expectFailure: "already has an active booking",
+ });
+
+ // …while the GENERAL neighbour LG2 draws again freely. Engine truth: a
+ // GENERAL booking clears PER BOOKING, so it SKIPS the create-time
+ // window/space gate that refused the ONE_TIME latecomers above — a full
+ // day stops it only later, when staff try to accept it onto a train.
+ bookBulk({ suffix: "LG2", tons: 70, scheduledDate: DAY, cargoCode: "E2E_IMP_GRAINS" });
+ withBooking("LG2", (probe) => {
+ expect(probe.status, "GENERAL drawdown accepted at create").to.eq(
+ "AWAITING_DOCUMENTS",
+ );
+ // Dispose of the probe so the day's ledger keeps exactly one live
+ // booking per contract (every lookup skips soft-deleted rows).
+ db(`UPDATE freight.bookings SET deleted_at = now() WHERE id = $1`, [probe.id]);
+ });
+ withBooking("LG2", (b) =>
+ expect(b.status, "LG2's real reservation is untouched").to.be.oneOf([
+ "SELECTED_FOR_BATCH",
+ "AWAITING_PAYMENT",
+ ]),
+ );
+ });
+
+ it("wave 2 — containers cascade PAST the full PW2 train onto BOX (54/54 reserved)", () => {
+ BOX_LINES.forEach(bookAndAccept);
+ daySchedule(BOX_AT).then((s) => {
+ BOX_LINES.forEach((l) =>
+ withBooking(l.suffix, (b) =>
+ expect(b.train_schedule_id, `${l.suffix} on BOX`).to.eq(s.id),
+ ),
+ );
+ });
+ });
+
+ it("wave 3 — containers and bulk share MIX (24w + 30w = 54/54 reserved)", () => {
+ MIX_LINES.forEach(bookAndAccept);
+ daySchedule(MIX_AT).then((s) => {
+ MIX_LINES.forEach((l) =>
+ withBooking(l.suffix, (b) =>
+ expect(b.train_schedule_id, `${l.suffix} on MIX`).to.eq(s.id),
+ ),
+ );
+ });
+ });
+
+ it("every reservation's pay deadline is clamped to its OWN train's window close", () => {
+ const check = (at: Date, lines: Line[]) =>
+ daySchedule(at).then((s) => {
+ db<{ window_closes_at: string }>(
+ `SELECT window_closes_at FROM freight.train_schedules WHERE id = $1`,
+ [s.id],
+ ).then(({ rows }) => {
+ lines.forEach((l) =>
+ withBooking(l.suffix, (b) => {
+ expect(
+ new Date(b.payment_deadline!).getTime(),
+ `${l.suffix} clamped`,
+ ).to.be.at.most(new Date(rows[0].window_closes_at).getTime());
+ }),
+ );
+ });
+ });
+ check(GRAIN_AT, GRAIN_LINES);
+ check(BOX_AT, BOX_LINES);
+ check(MIX_AT, MIX_LINES);
+ });
+
+ it("all 145 slots are held — two late bookings are REFUSED (export never queues)", () => {
+ bookContainers({
+ suffix: "LR1",
+ runStamp: stamp,
+ isoSeed: 29_000,
+ twenty: 2,
+ scheduledDate: DAY,
+ expectFailure: /space|window/i,
+ });
+ bookBulk({
+ suffix: "LR2",
+ tons: 350,
+ scheduledDate: DAY,
+ cargoCode: "E2E_IMP_GRAINS",
+ expectFailure: /space|window/i,
+ });
+ });
+
+ it("16 of the 19 pay — typed allocation on all three trains", () => {
+ PAID.forEach((l) => {
+ markPaid(l.suffix);
+ pollAllocations(l.suffix, l.wagons);
+ expectWagonType(l.suffix, l.wagonType, l.wagons);
+ });
+ });
+
+ it("the three unpaid — one per train — expire in one sweep", () => {
+ UNPAID.forEach((l) => forceReservationExpiry(l.suffix));
+ UNPAID.forEach((l) => pollBookingStatus(l.suffix, "EXPIRED"));
+ });
+
+ it("redemption: the refused bulk customer takes GRAIN's freed 5 PW2 wagons and pays", () => {
+ bookBulk({ suffix: "LR2", tons: 350, scheduledDate: DAY, cargoCode: "E2E_IMP_GRAINS" });
+ acceptExport("LR2");
+ markPaid("LR2");
+ pollAllocations("LR2", 5);
+ expectWagonType("LR2", "PW2", 5);
+ daySchedule(GRAIN_AT).then((s) =>
+ withBooking("LR2", (b) =>
+ expect(b.train_schedule_id, "LR2 rides GRAIN").to.eq(s.id),
+ ),
+ );
+ });
+
+ it("per-train totals: 37 PW2 + 54 NW5 + 54 mixed, links match bookings", () => {
+ const totals: Array<[Date, string, number, number]> = [
+ // [departure, label, wagons, bookings]
+ [GRAIN_AT, "GRAIN", 37, 5], // 4 paid + the redeemed LR2
+ [BOX_AT, "BOX", 53, 7], // one booking expired: 54 − 1
+ [MIX_AT, "MIX", 44, 5], // one 10w booking expired: 54 − 10
+ ];
+ totals.forEach(([at, label, wagons, bookings]) => {
+ daySchedule(at).then((s) => {
+ pollDb<{ n: string }>(
+ `${label} carries ${bookings} bookings`,
+ `SELECT count(*) AS n FROM freight.train_schedule_bookings
+ WHERE train_schedule_id = $1 AND deleted_at IS NULL`,
+ [s.id],
+ (row) => Number(row?.n) === bookings,
+ 15,
+ );
+ db<{ n: string }>(
+ `SELECT count(DISTINCT wba.train_set_wagon_id) AS n
+ FROM freight.wagon_booking_allocations wba
+ JOIN freight.train_schedule_bookings tsb
+ ON tsb.booking_id = wba.booking_id AND tsb.train_schedule_id = $1
+ WHERE wba.deleted_at IS NULL AND tsb.deleted_at IS NULL`,
+ [s.id],
+ ).then(({ rows }) =>
+ expect(Number(rows[0].n), `${label} wagons`).to.eq(wagons),
+ );
+ });
+ });
+ });
+
+ it("THE LEDGER — classify every booking of the day and write the report", () => {
+ dayLedger(stamp, { rejected: REJECTED, redeemed: ["LR2"] }).then((rows) => {
+ const ledger = rows as LedgerRow[];
+ const byFate = (fate: string) => ledger.filter((r) => r.fate === fate);
+
+ // Class counts: 16 riding + 1 redeemed + 3 expired + 2 refusals.
+ expect(byFate("PAID_RIDING").length, "paid & riding").to.eq(PAID.length);
+ expect(byFate("REBOOKED_PAID").length, "refused then rebooked").to.eq(1);
+ expect(byFate("EXPIRED_UNPAID").length, "reserved but never paid").to.eq(
+ UNPAID.length,
+ );
+ expect(byFate("REJECTED_NO_SPACE").length, "refused at create").to.eq(
+ REJECTED.length,
+ );
+ expect(byFate("RESERVED_UNPAID").length, "nothing left hanging").to.eq(0);
+
+ // Every engineered line landed in its expected class.
+ PAID.forEach((l) => {
+ const row = ledger.find((r) => r.suffix === l.suffix && r.fate === "PAID_RIDING");
+ expect(row, `${l.suffix} rides`).to.exist;
+ expect(row!.kind, `${l.suffix} kind`).to.eq(l.kind);
+ expect(row!.currency, `${l.suffix} currency`).to.eq(l.currency);
+ expect(row!.wagon_type, `${l.suffix} wagon type`).to.eq(l.wagonType);
+ expect(row!.wagons, `${l.suffix} wagons`).to.eq(l.wagons);
+ });
+ UNPAID.forEach((l) =>
+ expect(
+ ledger.find((r) => r.suffix === l.suffix && r.fate === "EXPIRED_UNPAID"),
+ `${l.suffix} expired`,
+ ).to.exist,
+ );
+ // LR2 appears TWICE: the refusal and the redemption.
+ expect(
+ ledger.filter((r) => r.suffix === "LR2").length,
+ "LR2 refused then rebooked",
+ ).to.eq(2);
+
+ // Currency split of the riding cargo (USD vs ETB invoices on one day).
+ const riding = [...byFate("PAID_RIDING"), ...byFate("REBOOKED_PAID")];
+ expect(riding.filter((r) => r.currency === "USD").length, "USD riders").to.be.greaterThan(0);
+ expect(riding.filter((r) => r.currency === "ETB").length, "ETB riders").to.be.greaterThan(0);
+ // Every riding booking sits on a train, every expired one does not ride.
+ riding.forEach((r) => expect(r.train, `${r.suffix} has a train`).to.be.a("string"));
+
+ writeLedgerReport(`export-ledger-${DAY}`, ledger);
+ });
+ });
+});
+
+export {};
diff --git a/e2e/freight/cypress/e2e/flows/export_one_time.cy.ts b/e2e/freight/cypress/e2e/flows/export_one_time.cy.ts
index 8e7c6334d..5794d3708 100644
--- a/e2e/freight/cypress/e2e/flows/export_one_time.cy.ts
+++ b/e2e/freight/cypress/e2e/flows/export_one_time.cy.ts
@@ -387,10 +387,9 @@ describe("export one-time journeys: container + bulk on one train", { retries: 0
cy.mantineSelect(/^Payment Currency/, /^ETB/);
cy.contains("button", "Continue").click({ force: true });
+ // Container contracts auto-cover both 20ft & 40ft (no size picker) and the
+ // cargo description moved to booking time — the scope select is enough here.
cy.mantineSelect(/^Cargo Scope/, /Containerized/);
- cy.get('[role="checkbox"][aria-label="20ft Container"]').click();
- cy.get('[role="checkbox"][aria-label="40ft Container"]').click();
- cy.get('textarea[placeholder*="Electronics"]').type("E2E export electronics");
cy.mantineSelect(/^Origin Yard/, ORIGIN_YARD);
cy.mantineSelect(/^Destination Yard/, PORT_YARD);
cy.contains("button", "Continue").click({ force: true });
diff --git a/e2e/freight/cypress/e2e/flows/fleet_wagon_transfer.cy.ts b/e2e/freight/cypress/e2e/flows/fleet_wagon_transfer.cy.ts
new file mode 100644
index 000000000..bb9980636
--- /dev/null
+++ b/e2e/freight/cypress/e2e/flows/fleet_wagon_transfer.cy.ts
@@ -0,0 +1,227 @@
+/**
+ * FLEET — wagon transfer between yards (two-person OCC queue):
+ *
+ * A requester files a COUNT-ONLY transfer request (source yard + type + how
+ * many, never the specific wagons); OCC later hand-picks the physical wagons
+ * and fulfils it. This spec drives the real endpoints and asserts the guards
+ * the unit tests never exercise end to end:
+ *
+ * – create: same-yard rejected, empty-source rejected, over-available capped
+ * – fulfil: wrong count rejected, off-source wagon rejected, exact picks move
+ * the wagons (current_yard_id flips + wagon_movements ledger written)
+ * – cancel: only PENDING cancellable; a cancelled request can't be re-cancelled
+ * or fulfilled
+ *
+ * Uses the corridor seed's CW4 export pocket at KALITY (120 available) and the
+ * empty mid-corridor E2E_AWASH yard as the destination. Retries off.
+ */
+
+import { apiPost, db, superAdmin } from "./import-utils";
+
+const stamp = String(Date.now());
+const REASON_A = `WTR-${stamp}-A`; // fulfil flow
+const REASON_B = `WTR-${stamp}-B`; // cancel flow
+
+interface Ids {
+ kality: string;
+ awash: string;
+ dire: string;
+ cw4: string;
+}
+
+/** Resolve the yard + wagon-type ids this spec works with (one query). */
+function ids(fn: (v: Ids) => void) {
+ db(
+ `SELECT
+ (SELECT id FROM freight.yards WHERE code = 'KALITY') AS kality,
+ (SELECT id FROM freight.yards WHERE code = 'E2E_AWASH') AS awash,
+ (SELECT id FROM freight.yards WHERE code = 'DIRE_DAWA') AS dire,
+ (SELECT id FROM freight.wagon_types WHERE code = 'CW4') AS cw4`,
+ ).then(({ rows }) => fn(rows[0]));
+}
+
+/** N AVAILABLE CW4 wagon ids sitting in a yard, lowest number first. */
+function availableCw4(yardCode: string, limit: number) {
+ return db<{ id: string }>(
+ `SELECT w.id
+ FROM freight.wagons w
+ JOIN freight.yards y ON y.id = w.current_yard_id AND y.code = $1
+ JOIN freight.wagon_types wt ON wt.id = w.wagon_type_id AND wt.code = 'CW4'
+ WHERE w.status = 'AVAILABLE' AND w.deleted_at IS NULL
+ ORDER BY w.wagon_number
+ LIMIT $2`,
+ [yardCode, limit],
+ );
+}
+
+/** The single request this run filed under `reason`. */
+function requestByReason(reason: string) {
+ return db<{ id: string; status: string; quantity: number }>(
+ `SELECT id, status, quantity FROM freight.wagon_transfer_requests
+ WHERE reason = $1 AND deleted_at IS NULL
+ ORDER BY created_at DESC LIMIT 1`,
+ [reason],
+ );
+}
+
+describe("fleet: wagon transfer requests between yards", { retries: 0 }, () => {
+ before(() => {
+ cy.task("db:seedFile", "seed-import-corridor.sql");
+ });
+
+ it("files a count-only request — same-yard and empty-source are rejected", () => {
+ ids(({ kality, awash, cw4 }) => {
+ // Valid: KALITY has plenty of available CW4.
+ apiPost(superAdmin, "/api/wagon-transfer-requests", {
+ fromYardId: kality,
+ toYardId: awash,
+ wagonTypeId: cw4,
+ quantity: 3,
+ reason: REASON_A,
+ }).then((res) => {
+ expect(res.status, "request filed").to.be.oneOf([200, 201]);
+ });
+
+ // Guard: source must differ from destination.
+ apiPost(
+ superAdmin,
+ "/api/wagon-transfer-requests",
+ { fromYardId: kality, toYardId: kality, wagonTypeId: cw4, quantity: 1, reason: "x" },
+ false,
+ ).then((res) => {
+ expect(res.status, "same-yard rejected").to.eq(400);
+ expect(JSON.stringify(res.body)).to.include("must be different");
+ });
+
+ // Guard: cannot request wagons a yard doesn't have (E2E_AWASH holds none).
+ apiPost(
+ superAdmin,
+ "/api/wagon-transfer-requests",
+ { fromYardId: awash, toYardId: kality, wagonTypeId: cw4, quantity: 1, reason: "x" },
+ false,
+ ).then((res) => {
+ expect(res.status, "empty-source rejected").to.eq(400);
+ expect(JSON.stringify(res.body)).to.match(/no available wagons/i);
+ });
+
+ // The filed request is PENDING for exactly 3.
+ requestByReason(REASON_A).then(({ rows }) => {
+ expect(rows, "request row").to.have.length(1);
+ expect(rows[0].status, "PENDING").to.eq("PENDING");
+ expect(Number(rows[0].quantity), "quantity").to.eq(3);
+ });
+ });
+ });
+
+ it("fulfil rejects wrong count and off-source wagons, then moves the exact picks", () => {
+ ids(({ dire }) => {
+ requestByReason(REASON_A).then(({ rows }) => {
+ const reqId = rows[0].id;
+
+ // Wrong count: request is for 3, offer 2.
+ availableCw4("KALITY", 2).then(({ rows: two }) => {
+ apiPost(
+ superAdmin,
+ `/api/wagon-transfer-requests/${reqId}/fulfill`,
+ { wagonIds: two.map((w) => w.id) },
+ false,
+ ).then((res) => {
+ expect(res.status, "wrong count rejected").to.eq(400);
+ expect(JSON.stringify(res.body)).to.include("Select exactly 3");
+ });
+ });
+
+ // Off-source: 3 wagons but one sits at DIRE_DAWA, not the source yard.
+ availableCw4("KALITY", 2).then(({ rows: k2 }) => {
+ availableCw4("DIRE_DAWA", 1).then(({ rows: d1 }) => {
+ apiPost(
+ superAdmin,
+ `/api/wagon-transfer-requests/${reqId}/fulfill`,
+ { wagonIds: [...k2, ...d1].map((w) => w.id) },
+ false,
+ ).then((res) => {
+ expect(res.status, "off-source rejected").to.eq(400);
+ expect(JSON.stringify(res.body)).to.include("not in the source yard");
+ });
+ });
+ });
+
+ // Exact 3 valid KALITY picks — the move runs.
+ availableCw4("KALITY", 3).then(({ rows: three }) => {
+ const picked = three.map((w) => w.id);
+ apiPost(superAdmin, `/api/wagon-transfer-requests/${reqId}/fulfill`, {
+ wagonIds: picked,
+ }).then((res) => {
+ expect(res.status, "fulfilled").to.be.oneOf([200, 201]);
+ });
+
+ // Request FULFILLED; the 3 wagons now sit at E2E_AWASH; each move is
+ // written to the wagon_movements ledger stamped with this request.
+ requestByReason(REASON_A).then(({ rows: r }) =>
+ expect(r[0].status, "FULFILLED").to.eq("FULFILLED"),
+ );
+ db<{ n: string }>(
+ `SELECT count(*) AS n FROM freight.wagons w
+ JOIN freight.yards y ON y.id = w.current_yard_id AND y.code = 'E2E_AWASH'
+ WHERE w.id = ANY($1::uuid[])`,
+ [picked],
+ ).then(({ rows: at }) => expect(Number(at[0].n), "3 moved to AWASH").to.eq(3));
+ db<{ n: string }>(
+ `SELECT count(*) AS n FROM freight.wagon_movements
+ WHERE transfer_request_id = $1 AND wagon_id = ANY($2::uuid[])`,
+ [reqId, picked],
+ ).then(({ rows: mv }) =>
+ expect(Number(mv[0].n), "3 movement rows").to.eq(3),
+ );
+ });
+ });
+ });
+ });
+
+ it("only PENDING requests cancel — a cancelled one can't be re-cancelled or fulfilled", () => {
+ ids(({ kality, awash, cw4 }) => {
+ apiPost(superAdmin, "/api/wagon-transfer-requests", {
+ fromYardId: kality,
+ toYardId: awash,
+ wagonTypeId: cw4,
+ quantity: 2,
+ reason: REASON_B,
+ }).then((res) => expect(res.status).to.be.oneOf([200, 201]));
+
+ requestByReason(REASON_B).then(({ rows }) => {
+ const reqId = rows[0].id;
+
+ // Withdraw it.
+ apiPost(superAdmin, `/api/wagon-transfer-requests/${reqId}/cancel`).then((res) =>
+ expect(res.status, "cancelled").to.be.oneOf([200, 201]),
+ );
+ requestByReason(REASON_B).then(({ rows: r }) =>
+ expect(r[0].status, "CANCELLED").to.eq("CANCELLED"),
+ );
+
+ // Re-cancel is a conflict.
+ apiPost(superAdmin, `/api/wagon-transfer-requests/${reqId}/cancel`, {}, false).then(
+ (res) => {
+ expect(res.status, "re-cancel conflict").to.eq(409);
+ expect(JSON.stringify(res.body)).to.match(/only pending/i);
+ },
+ );
+
+ // Fulfilling a cancelled request is a conflict too.
+ availableCw4("KALITY", 2).then(({ rows: two }) => {
+ apiPost(
+ superAdmin,
+ `/api/wagon-transfer-requests/${reqId}/fulfill`,
+ { wagonIds: two.map((w) => w.id) },
+ false,
+ ).then((res) => {
+ expect(res.status, "fulfil-after-cancel conflict").to.eq(409);
+ expect(JSON.stringify(res.body)).to.include("already cancelled");
+ });
+ });
+ });
+ });
+ });
+});
+
+export {};
diff --git a/e2e/freight/cypress/e2e/flows/government_preemption.cy.ts b/e2e/freight/cypress/e2e/flows/government_preemption.cy.ts
new file mode 100644
index 000000000..ddae0c42f
--- /dev/null
+++ b/e2e/freight/cypress/e2e/flows/government_preemption.cy.ts
@@ -0,0 +1,254 @@
+/**
+ * BATCH — government preemption:
+ *
+ * A government booking that fits nowhere on an already-committed train
+ * displaces the LOWEST-priority commercial reservation first (never the
+ * higher-priority one), then allocates directly — no pay window, since
+ * government rides unpaid (see booking-batch.service.ts `preemptForGovernment`
+ * + `allocate(..., "gov")`).
+ *
+ * Setup: a 3-wagon import train. CGA (priority 1, higher) and CGB (priority
+ * 2, lower) each book one 40ft container and reserve via the normal batch —
+ * 2/3 wagons used, 1 free. A standalone government booking (2×40ft = 2
+ * wagons) then needs more than the 1 free slot: it doesn't fit, so the
+ * engine preempts CGB (the lower-priority reservation) to free the second
+ * wagon, then allocates the government booking. CGA is untouched throughout.
+ *
+ * Government bookings don't go through the customer contract wizard —
+ * they're created directly via `POST /bookings` (isGovernment: true, billed
+ * to a real government company/profile — see seed-government.sql) and
+ * promoted with `POST /bookings/:id/government-expedite`.
+ *
+ * Sequential steps of one scenario — retries off.
+ */
+
+import {
+ acceptOperation,
+ apiPost,
+ bookContainers,
+ closeBookingWindow,
+ completeDocReview,
+ createImportSchedule,
+ db,
+ departureAt,
+ DEST,
+ eatDayStr,
+ ensureCorridorRoute,
+ forceWindowOpen,
+ ORIGIN,
+ pollBookingStatus,
+ pollDb,
+ resetCorridorDay,
+ seedImportContract,
+ setPriority,
+ superAdmin,
+ withBooking,
+ withSchedule,
+ type ScheduleRow,
+} from "./import-utils";
+
+const DEPARTURE = departureAt(27);
+const BOOKING_DAY = eatDayStr(DEPARTURE);
+const stamp = String(Date.now());
+const stampedRef = (suffix: string) => `CTR-IMP-${stamp}-${suffix}`;
+
+const GOV_COMPANY_ID = "0a1b0001-0000-4000-8000-000000000001";
+const GOV_PROFILE_ID = "0b1c0001-0000-4000-8000-000000000001";
+
+function withScheduleId(fn: (id: string, s: ScheduleRow) => void) {
+ withSchedule(DEPARTURE, (s) => fn(s.id, s));
+}
+
+interface GovBookingRow {
+ id: string;
+ status: string;
+ scheduling_status: string;
+ is_government: boolean;
+ train_schedule_id: string | null;
+}
+
+/** This run's government booking — always re-queried, never trusted from a
+ * create-response shape (only one exists per run: newest for this gov company). */
+function withGovBooking(fn: (b: GovBookingRow) => void) {
+ db(
+ `SELECT id, status, scheduling_status, is_government, train_schedule_id
+ FROM freight.bookings
+ WHERE company_id = $1 AND is_government = true AND deleted_at IS NULL
+ ORDER BY created_at DESC LIMIT 1`,
+ [GOV_COMPANY_ID],
+ ).then(({ rows }) => {
+ expect(rows, "this run's government booking").to.have.length(1);
+ fn(rows[0]);
+ });
+}
+
+describe("batch: government booking preempts the lowest-priority commercial reservation", { retries: 0 }, () => {
+ before(() => {
+ cy.task("db:seedFile", "seed-import-corridor.sql");
+ cy.task("db:seedFile", "seed-government.sql");
+ ["CGA", "CGB"].forEach((suffix) =>
+ seedImportContract({ suffix, reference: stampedRef(suffix) }),
+ );
+ });
+
+ it("operations schedules the dedicated 3-wagon built train (TRN-GOV-1) — window forced open", () => {
+ ensureCorridorRoute();
+ resetCorridorDay(DEPARTURE);
+ // A loco-pair schedule's max_wagons is NOT a real cap — it gets recomputed
+ // from the locomotive's length every fill pass (54 for a standard loco),
+ // ignoring maxWagonsPerTrain. A BUILT train's coupled count IS the cap.
+ createImportSchedule({
+ departure: DEPARTURE,
+ trainCode: "TRN-GOV-1",
+ maxWagons: 3,
+ });
+ withScheduleId((id) => forceWindowOpen(id, 45));
+ });
+
+ it("CGA and CGB each book one 40ft and reserve — 2/3 wagons used, 1 free", () => {
+ bookContainers({
+ suffix: "CGA",
+ runStamp: stamp,
+ isoSeed: 0,
+ forty: 1,
+ scheduledDate: BOOKING_DAY,
+ });
+ acceptOperation("CGA");
+ bookContainers({
+ suffix: "CGB",
+ runStamp: stamp,
+ isoSeed: 10,
+ forty: 1,
+ scheduledDate: BOOKING_DAY,
+ });
+ acceptOperation("CGB");
+ setPriority("CGA", 1); // higher priority — must survive
+ setPriority("CGB", 2); // lower priority — the preemption target
+
+ withScheduleId((id) => {
+ closeBookingWindow(id);
+ completeDocReview(id);
+ });
+
+ withBooking("CGA", (b) =>
+ expect(b.status, "CGA reserved").to.be.oneOf(["SELECTED_FOR_BATCH", "AWAITING_PAYMENT"]),
+ );
+ withBooking("CGB", (b) =>
+ expect(b.status, "CGB reserved").to.be.oneOf(["SELECTED_FOR_BATCH", "AWAITING_PAYMENT"]),
+ );
+ });
+
+ it("a government booking (2×40ft) is created and expedited to PAID, then pinned to the train", () => {
+ db<{ id: string }>(
+ `SELECT id FROM freight.yards WHERE code = $1`,
+ [ORIGIN],
+ ).then(({ rows: o }) => {
+ db<{ id: string }>(`SELECT id FROM freight.yards WHERE code = $1`, [DEST]).then(
+ ({ rows: d }) => {
+ db<{ id: string }>(
+ `SELECT id FROM freight.service_types ORDER BY created_at LIMIT 1`,
+ ).then(({ rows: st }) => {
+ db<{ id: string }>(
+ `SELECT id FROM freight.container_types WHERE size_ft = 40 AND is_active LIMIT 1`,
+ ).then(({ rows: ct }) => {
+ apiPost(superAdmin, "/api/bookings", {
+ isGovernment: true,
+ companyId: GOV_COMPANY_ID,
+ companyProfileId: GOV_PROFILE_ID,
+ contractType: "NEW",
+ serviceTypeId: st[0].id,
+ equipmentReturn: "WITHOUT_RETURN",
+ originYardId: o[0].id,
+ destinationYardId: d[0].id,
+ tradeDirection: "IMPORT",
+ freightType: "CONTAINER",
+ containers: [{ containerTypeId: ct[0].id, quantity: 2, vgmPerUnitTons: 10 }],
+ cargoTotalWeightVgm: 20,
+ paymentCurrency: "USD",
+ }).then((res) => {
+ expect(res.status, "government booking created").to.be.oneOf([200, 201]);
+
+ withGovBooking((created) => {
+ apiPost(
+ superAdmin,
+ `/api/bookings/${created.id}/government-expedite`,
+ ).then((expRes) => {
+ expect(expRes.status, "expedited").to.be.oneOf([200, 201]);
+ });
+ });
+ withGovBooking((b) => {
+ expect(b.status, "PAID after expedite").to.eq("PAID");
+ expect(b.is_government, "flagged government").to.eq(true);
+
+ // Staff pin onto this schedule (the customer-facing OPEN-window
+ // pin can't be used here — the window already closed when
+ // completeDocReview ran). Mirrors a staff manual assign.
+ withScheduleId((scheduleId) => {
+ db(
+ `UPDATE freight.bookings SET train_schedule_id = $1 WHERE id = $2`,
+ [scheduleId, b.id],
+ );
+ });
+ });
+ });
+ });
+ });
+ },
+ );
+ });
+ });
+
+ it("run-batch: the government booking preempts CGB (lower priority), CGA is untouched", () => {
+ withScheduleId((scheduleId) => {
+ apiPost(superAdmin, `/api/train-scheduling/schedules/${scheduleId}/run-batch`).then(
+ (res) => expect(res.status, "run-batch").to.be.oneOf([200, 201]),
+ );
+ });
+
+ // CGB displaced: EXPIRED, back to ELIGIBLE, no pay window, invoice expired.
+ pollBookingStatus("CGB", "EXPIRED");
+ withBooking("CGB", (b) => {
+ expect(b.scheduling_status, "CGB back to ELIGIBLE").to.eq("ELIGIBLE");
+ expect(b.payment_deadline, "CGB pay window cleared").to.be.null;
+ db<{ n: string }>(
+ `SELECT count(*) AS n FROM freight.invoices
+ WHERE source = 'booking' AND source_id = $1
+ AND status NOT IN ('EXPIRED','CANCELLED','PAID') AND deleted_at IS NULL`,
+ [b.id],
+ ).then(({ rows }) => expect(Number(rows[0].n), "CGB invoice expired").to.eq(0));
+ });
+
+ // CGA survives untouched — still reserved on the same train.
+ withScheduleId((scheduleId) => {
+ withBooking("CGA", (b) => {
+ expect(b.status, "CGA still reserved").to.be.oneOf([
+ "SELECTED_FOR_BATCH",
+ "AWAITING_PAYMENT",
+ ]);
+ expect(b.train_schedule_id, "CGA still on this train").to.eq(scheduleId);
+ });
+ });
+
+ // Government booking allocated: SCHEDULED + linked via the schedule-bookings
+ // table (allocate() never sets the train_schedule_id column for gov — only
+ // the link row — so the pin from the previous step is what carries it).
+ withGovBooking((b) => {
+ expect(b.scheduling_status, "gov SCHEDULED").to.eq("SCHEDULED");
+ withScheduleId((scheduleId) => {
+ db<{ n: string }>(
+ `SELECT count(*) AS n FROM freight.train_schedule_bookings
+ WHERE booking_id = $1 AND train_schedule_id = $2 AND deleted_at IS NULL`,
+ [b.id, scheduleId],
+ ).then(({ rows }) => expect(Number(rows[0].n), "gov linked to schedule").to.eq(1));
+ });
+ pollDb<{ n: string }>(
+ "gov booking allocated 2 wagons",
+ `SELECT count(*) AS n FROM freight.wagon_booking_allocations WHERE booking_id = $1`,
+ [b.id],
+ (row) => Number(row?.n ?? 0) >= 2,
+ );
+ });
+ });
+});
+
+export {};
diff --git a/e2e/freight/cypress/e2e/flows/import-utils.ts b/e2e/freight/cypress/e2e/flows/import-utils.ts
index 67291b0c0..0ab5af12a 100644
--- a/e2e/freight/cypress/e2e/flows/import-utils.ts
+++ b/e2e/freight/cypress/e2e/flows/import-utils.ts
@@ -67,6 +67,34 @@ export function apiPost(
);
}
+export function apiGet(email: string, path: string, failOnStatusCode = true) {
+ return tokenFor(email).then((token) =>
+ cy.request({
+ method: "GET",
+ url: `${apiUrl()}${path}`,
+ headers: { Authorization: `Bearer ${token}` },
+ failOnStatusCode,
+ }),
+ );
+}
+
+export function apiPatch(
+ email: string,
+ path: string,
+ body?: unknown,
+ failOnStatusCode = true,
+) {
+ return tokenFor(email).then((token) =>
+ cy.request({
+ method: "PATCH",
+ url: `${apiUrl()}${path}`,
+ headers: { Authorization: `Bearer ${token}` },
+ body: body ?? {},
+ failOnStatusCode,
+ }),
+ );
+}
+
/** Poll a 1-row query until `check` passes (10s window tick ⇒ 3s cadence). */
export function pollDb(
label: string,
@@ -271,7 +299,7 @@ export function dbBooking(suffix: string) {
b.is_split, b.contract_id
FROM freight.bookings b
JOIN freight.contracts ct ON ct.id = b.contract_id
- WHERE ct.reference LIKE 'CTR-IMP-%-' || $1
+ WHERE ct.reference LIKE 'CTR-IMP-%-' || $1 AND b.deleted_at IS NULL
ORDER BY b.created_at DESC LIMIT 1`,
[suffix],
);
@@ -297,7 +325,7 @@ export function pollBookingStatus(suffix: string, status: string | string[], att
`${suffix} → ${want.join("|")}`,
`SELECT b.status FROM freight.bookings b
JOIN freight.contracts ct ON ct.id = b.contract_id
- WHERE ct.reference LIKE 'CTR-IMP-%-' || $1
+ WHERE ct.reference LIKE 'CTR-IMP-%-' || $1 AND b.deleted_at IS NULL
ORDER BY b.created_at DESC LIMIT 1`,
[suffix],
(row) => !!row && want.includes(row.status as string),
@@ -389,15 +417,17 @@ export function bookBulk(opts: {
suffix: string;
tons: number;
scheduledDate?: string; // omit for DOMESTIC (intercity)
+ /** Cargo code — WHEAT rides CW4, GRAINS rides PW2. Defaults to wheat. */
+ cargoCode?: "E2E_IMP_WHEAT" | "E2E_IMP_GRAINS";
expectFailure?: string | RegExp;
}) {
db<{ id: string; customs_clearing_enabled: boolean; cargo_type_id: string }>(
`SELECT ct.id, ct.customs_clearing_enabled,
- (SELECT t.id FROM freight.cargo_types t WHERE t.code = 'E2E_IMP_WHEAT') AS cargo_type_id
+ (SELECT t.id FROM freight.cargo_types t WHERE t.code = $2) AS cargo_type_id
FROM freight.contracts ct
WHERE ct.reference LIKE 'CTR-IMP-%-' || $1
ORDER BY ct.created_at DESC LIMIT 1`,
- [opts.suffix],
+ [opts.suffix, opts.cargoCode ?? "E2E_IMP_WHEAT"],
).then(({ rows }) => {
expect(rows, `seeded contract *-${opts.suffix}`).to.have.length(1);
const actor = rows[0].customs_clearing_enabled ? superAdmin : customer;
@@ -433,7 +463,12 @@ export function bookBulk(opts: {
* seed configures no required documents, so one ad-hoc doc satisfies the
* 100%-approved gate.
*/
-export function clearGeneralBooking(suffix: string, scheduledDate: string) {
+export function clearGeneralBooking(
+ suffix: string,
+ scheduledDate: string,
+ /** EXPORT ends at acceptExport (FCFS reserves on accept), not the pool. */
+ mode: "import" | "export" = "import",
+) {
withBooking(suffix, (b) => {
expect(b.status, `${suffix} starts in the clearance gate`).to.eq("AWAITING_DOCUMENTS");
glUpload(`/api/bookings/${b.id}/clearance/documents`, {}, "custom_e2e");
@@ -450,7 +485,8 @@ export function clearGeneralBooking(suffix: string, scheduledDate: string) {
.its("status")
.should("be.oneOf", [200, 201]);
});
- acceptOperation(suffix);
+ if (mode === "export") acceptExport(suffix);
+ else acceptOperation(suffix);
}
/** Ops accepts the operation request → FULLY_EXECUTED (enters the day pool). */
@@ -473,6 +509,28 @@ export function setPriority(suffix: string, order: number) {
);
}
+/**
+ * Customs bookings pay their clearance service fee ON the booking invoice —
+ * there is no separate prepaid clearance invoice. Asserts the booking's
+ * invoice carries a CUSTOMS_CLEARANCE line.
+ */
+export function expectClearanceOnBookingInvoice(suffix: string) {
+ pollDb<{ n: string }>(
+ `${suffix} clearance fee on booking invoice`,
+ `SELECT COUNT(*)::text AS n
+ FROM freight.invoice_lines l
+ JOIN freight.invoices i ON i.id = l.invoice_id
+ JOIN freight.bookings b ON b.id::text = i.source_id::text
+ JOIN freight.contracts ct ON ct.id = b.contract_id
+ WHERE ct.reference LIKE 'CTR-IMP-%-' || $1 AND b.deleted_at IS NULL
+ AND i.source = 'booking'
+ AND l.charge_type LIKE 'CUSTOMS_CLEARANCE%'`,
+ [suffix],
+ (row) => Number(row?.n ?? 0) > 0,
+ 10,
+ );
+}
+
/** Staff force-pay; polls PAID + SCHEDULED. */
export function markPaid(suffix: string) {
withBooking(suffix, (b) => {
@@ -484,7 +542,7 @@ export function markPaid(suffix: string) {
`${suffix} PAID+SCHEDULED`,
`SELECT b.status, b.scheduling_status FROM freight.bookings b
JOIN freight.contracts ct ON ct.id = b.contract_id
- WHERE ct.reference LIKE 'CTR-IMP-%-' || $1
+ WHERE ct.reference LIKE 'CTR-IMP-%-' || $1 AND b.deleted_at IS NULL
ORDER BY b.created_at DESC LIMIT 1`,
[suffix],
(row) => row?.status === "PAID" && row?.scheduling_status === "SCHEDULED",
@@ -557,7 +615,7 @@ export function settleViaGateway(suffix: string) {
`${suffix} PAID via gateway`,
`SELECT b.status FROM freight.bookings b
JOIN freight.contracts ct ON ct.id = b.contract_id
- WHERE ct.reference LIKE 'CTR-IMP-%-' || $1
+ WHERE ct.reference LIKE 'CTR-IMP-%-' || $1 AND b.deleted_at IS NULL
ORDER BY b.created_at DESC LIMIT 1`,
[suffix],
(row) => row?.status === "PAID",
@@ -808,7 +866,13 @@ export function withExportSchedule(departure: Date, fn: (s: ScheduleRow) => void
*/
export function createImportSchedule(opts: {
departure: Date;
- locoPair: [string, string];
+ /** Loco-pair mode — capacity comes from maxWagonsPerTrain. */
+ locoPair?: [string, string];
+ /**
+ * Built-train mode — the Train-Builder consist IS the capacity (its coupled
+ * wagon count), immune to the loco-length slot recompute.
+ */
+ trainCode?: string;
maxWagons?: number;
kind?: "container" | "bulk";
originCode?: string;
@@ -816,16 +880,32 @@ export function createImportSchedule(opts: {
}) {
const originCode = opts.originCode ?? ORIGIN;
const destCode = opts.destCode ?? DEST;
+ const endpoint = `/api/train-scheduling/${opts.kind ?? "container"}/schedules`;
dbSchedule(opts.departure, destCode, originCode).then(({ rows }) => {
if (rows.length > 0) return;
dbRouteId(originCode, destCode).then(({ rows: routes }) => {
expect(routes, "corridor route").to.have.length(1);
+ if (opts.trainCode) {
+ db<{ id: string }>(`SELECT id FROM freight.trains WHERE code = $1`, [
+ opts.trainCode,
+ ]).then(({ rows: trains }) => {
+ expect(trains, `built train ${opts.trainCode}`).to.have.length(1);
+ apiPost(opsStaff, endpoint, {
+ routeId: routes[0].id,
+ scheduleDate: opts.departure.toISOString(),
+ trainId: trains[0].id,
+ })
+ .its("status")
+ .should("be.oneOf", [200, 201]);
+ });
+ return;
+ }
db<{ id: string }>(
`SELECT id FROM freight.locomotives WHERE code = ANY($1::text[]) ORDER BY code`,
- [opts.locoPair],
+ [opts.locoPair ?? []],
).then(({ rows: locos }) => {
- expect(locos, `locomotives ${opts.locoPair.join(",")}`).to.have.length(2);
- apiPost(opsStaff, `/api/train-scheduling/${opts.kind ?? "container"}/schedules`, {
+ expect(locos, `locomotives ${(opts.locoPair ?? []).join(",")}`).to.have.length(2);
+ apiPost(opsStaff, endpoint, {
routeId: routes[0].id,
scheduleDate: opts.departure.toISOString(),
locomotiveIds: locos.map((l) => l.id),
@@ -838,7 +918,111 @@ export function createImportSchedule(opts: {
});
dbSchedule(opts.departure, destCode, originCode).then(({ rows }) => {
expect(rows, "created schedule").to.have.length(1);
- expect(rows[0].max_wagons, "54-wagon consist").to.eq(opts.maxWagons ?? 54);
+ expect(rows[0].max_wagons, "consist size").to.eq(opts.maxWagons ?? 54);
+ });
+}
+
+// ---------------------------------------------------------------------------
+// day ledger — who booked, who rides, who expired, who was refused
+// ---------------------------------------------------------------------------
+
+export interface LedgerRow {
+ suffix: string;
+ reference: string;
+ kind: string;
+ freight: string;
+ currency: string;
+ status: string;
+ wagons: number;
+ wagon_type: string | null;
+ train: string | null;
+ fate: string;
+}
+
+/**
+ * Classify every booking made under this run's stamped contracts into its
+ * final fate. Bookings the engine REFUSED at create never exist as rows —
+ * the caller passes those suffixes in (they are only observable as 4xx at
+ * request time), plus any suffix that was refused and later rebooked.
+ */
+export function dayLedger(
+ runStamp: string,
+ opts: { rejected?: string[]; redeemed?: string[] } = {},
+) {
+ return db(
+ `SELECT split_part(ct.reference, '-', 4) AS suffix,
+ b.reference,
+ ct.contract_kind AS kind,
+ b.freight_type AS freight,
+ b.payment_currency AS currency,
+ b.status,
+ COALESCE(a.wagons, 0)::int AS wagons,
+ a.wagon_type,
+ ts.reference AS train,
+ CASE
+ WHEN b.status IN ('PAID','IN_TRANSIT','ARRIVED','COMPLETED') THEN 'PAID_RIDING'
+ WHEN b.status = 'EXPIRED' THEN 'EXPIRED_UNPAID'
+ WHEN b.status IN ('SELECTED_FOR_BATCH','AWAITING_PAYMENT') THEN 'RESERVED_UNPAID'
+ ELSE 'PENDING_' || b.status
+ END AS fate
+ FROM freight.bookings b
+ JOIN freight.contracts ct ON ct.id = b.contract_id
+ LEFT JOIN freight.train_schedules ts ON ts.id = b.train_schedule_id
+ LEFT JOIN LATERAL (
+ SELECT count(*)::int AS wagons, max(wt.code) AS wagon_type
+ FROM freight.wagon_booking_allocations wba
+ JOIN freight.train_set_wagons tsw ON tsw.id = wba.train_set_wagon_id
+ JOIN freight.wagon_types wt ON wt.id = tsw.wagon_type_id
+ WHERE wba.booking_id = b.id AND wba.deleted_at IS NULL
+ ) a ON true
+ WHERE ct.reference LIKE 'CTR-IMP-' || $1 || '-%' AND b.deleted_at IS NULL
+ ORDER BY b.created_at`,
+ [runStamp],
+ ).then(({ rows }) => {
+ const rejected = (opts.rejected ?? []).map((suffix) => ({
+ suffix,
+ reference: "—",
+ kind: "—",
+ freight: "—",
+ currency: "—",
+ status: "NOT_CREATED",
+ wagons: 0,
+ wagon_type: null,
+ train: null,
+ fate: "REJECTED_NO_SPACE",
+ })) as LedgerRow[];
+ // A refused customer who later rebooked shows BOTH lines: the refusal
+ // above and the live booking here, re-labelled.
+ const ledger = [
+ ...rows.map((r) =>
+ (opts.redeemed ?? []).includes(r.suffix) && r.fate === "PAID_RIDING"
+ ? { ...r, fate: "REBOOKED_PAID" }
+ : r,
+ ),
+ ...rejected,
+ ];
+ return cy.wrap(ledger, { log: false });
+ });
+}
+
+/** Print the ledger as a table into the Cypress log and write a JSON artifact. */
+export function writeLedgerReport(name: string, ledger: LedgerRow[]) {
+ const counts = ledger.reduce>((acc, r) => {
+ acc[r.fate] = (acc[r.fate] ?? 0) + 1;
+ return acc;
+ }, {});
+ cy.log(`**LEDGER ${name}** — ${JSON.stringify(counts)}`);
+ ledger.forEach((r) =>
+ cy.log(
+ `${r.suffix.padEnd(8)} ${r.kind.padEnd(9)} ${r.freight.padEnd(9)} ` +
+ `${r.currency.padEnd(4)} ${String(r.wagons).padStart(2)}w ` +
+ `${(r.wagon_type ?? "-").padEnd(4)} ${(r.train ?? "-").padEnd(14)} ${r.fate}`,
+ ),
+ );
+ cy.writeFile(`cypress/reports/${name}.json`, {
+ generatedAt: new Date().toISOString(),
+ counts,
+ bookings: ledger,
});
}
diff --git a/e2e/freight/cypress/e2e/flows/import_full_train.cy.ts b/e2e/freight/cypress/e2e/flows/import_full_train.cy.ts
index 4d2f2c084..bfae79c6a 100644
--- a/e2e/freight/cypress/e2e/flows/import_full_train.cy.ts
+++ b/e2e/freight/cypress/e2e/flows/import_full_train.cy.ts
@@ -43,6 +43,7 @@ import {
withBooking,
withSchedule,
type ScheduleRow,
+ expectClearanceOnBookingInvoice,
} from "./import-utils";
const DEPARTURE = departureAt(4);
@@ -147,6 +148,9 @@ describe("import: six bookings fill the 54-wagon corridor train", { retries: 0 }
it("all six pay — allocated onto the train, 54/54 wagons, window FULL and schedule finalized", () => {
BOOKINGS.forEach((b) => {
+ // Customs bookings carry their clearance service fee ON the booking
+ // invoice (no prepaid clearance invoice) — assert before settling.
+ if (b.customs) expectClearanceOnBookingInvoice(b.suffix);
markPaid(b.suffix);
pollAllocations(b.suffix, b.wagons);
});
diff --git a/e2e/freight/cypress/e2e/flows/intercity_one_time.cy.ts b/e2e/freight/cypress/e2e/flows/intercity_one_time.cy.ts
index b8ca2fd1b..0be1bf8aa 100644
--- a/e2e/freight/cypress/e2e/flows/intercity_one_time.cy.ts
+++ b/e2e/freight/cypress/e2e/flows/intercity_one_time.cy.ts
@@ -149,12 +149,10 @@ function createIntercityContract() {
cy.mantineSelect(/^Payment Currency/, /^ETB/);
cy.contains("button", "Continue").click({ force: true });
- // Step 1 — Cargo & Route (Ethiopian yards only for intercity).
+ // Step 1 — Cargo & Route (Ethiopian yards only for intercity). Container
+ // contracts auto-cover both 20ft & 40ft (no size picker) and the cargo
+ // description moved to booking time — the scope select is enough here.
cy.mantineSelect(/^Cargo Scope/, /Containerized/);
- cy.get('[role="checkbox"][aria-label="20ft Container"]').click();
- cy.get('textarea[placeholder*="Electronics"]').type(
- "E2E intercity electronics between Ethiopian yards",
- );
cy.mantineSelect(/^Origin Yard/, ORIGIN_YARD);
cy.mantineSelect(/^Destination Yard/, DEST_YARD);
cy.contains("button", "Continue").click({ force: true });
diff --git a/e2e/freight/cypress/e2e/flows/rate_change_mid_window.cy.ts b/e2e/freight/cypress/e2e/flows/rate_change_mid_window.cy.ts
new file mode 100644
index 000000000..902c54055
--- /dev/null
+++ b/e2e/freight/cypress/e2e/flows/rate_change_mid_window.cy.ts
@@ -0,0 +1,229 @@
+/**
+ * RULES & CONFIG — rate lifecycle + live rate-change mid-window:
+ *
+ * A LIVE rate is what pricing charges right now, so it is never edited in
+ * place (rates.service.ts `applyApprovedUpdate` doc comment) — an edit is
+ * filed as a change request and only takes effect once approved. This spec
+ * drives the full lifecycle end to end, something the unit tests never do:
+ *
+ * – create (DRAFT) → duplicate-combo rejected → submit → PENDING_APPROVAL
+ * → a non-DRAFT edit is rejected → approve → LIVE, visible on /rates/live
+ * – re-approving an already-LIVE rate is rejected
+ * – a rate-change-request proposing the SAME value is rejected ("nothing
+ * changed"); a real change files PENDING; a second concurrent change is
+ * rejected ("already has a change awaiting approval")
+ * – approving the change updates the LIVE row'S VALUE IN PLACE (same rate
+ * id, same row) — the "mid-window" live edit this whole flow protects
+ * – re-approving the same (now-decided) change request is rejected
+ *
+ * BULK/ALWAYS/IMPORT rate on a yard pair the corridor seed never touches
+ * (DJIB_PORT → E2E_AWASH), so the duplicate-combo guard has a clean slate.
+ * Retries off — sequential steps of one rate's lifecycle.
+ */
+
+import { apiPost, db, superAdmin } from "./import-utils";
+
+interface RateRow {
+ id: string;
+ status: string;
+ rate_value: string;
+}
+
+function rateByPattern() {
+ return db(
+ `SELECT r.id, r.status, r.rate_value
+ FROM freight.rates r
+ JOIN freight.yards o ON o.id = r.origin_yard_id AND o.code = 'DJIB_PORT'
+ JOIN freight.yards d ON d.id = r.destination_yard_id AND d.code = 'E2E_AWASH'
+ WHERE r.rate_type = 'BULK_IMPORT' AND r.rate_unit = 'PER_TON'
+ AND r.deleted_at IS NULL
+ ORDER BY r.created_at DESC LIMIT 1`,
+ ).then(({ rows }) => {
+ expect(rows, "the test rate").to.have.length(1);
+ return rows[0];
+ });
+}
+
+interface ChangeRequestRow {
+ id: string;
+ status: string;
+ rate_id: string;
+}
+
+function changeRequestByRate(rateId: string) {
+ return db(
+ `SELECT id, status, rate_id FROM freight.rate_change_requests
+ WHERE rate_id = $1 ORDER BY created_at DESC LIMIT 1`,
+ [rateId],
+ ).then(({ rows }) => {
+ expect(rows, "change request for this rate").to.have.length(1);
+ return rows[0];
+ });
+}
+
+function yardId(code: string) {
+ return db<{ id: string }>(`SELECT id FROM freight.yards WHERE code = $1`, [code]).then(
+ ({ rows }) => rows[0].id,
+ );
+}
+
+const RATE_BODY = (originYardId: string, destinationYardId: string, rateValue: number) => ({
+ appliesTo: "BULK",
+ trigger: "ALWAYS",
+ tradeDirection: "IMPORT",
+ originYardId,
+ destinationYardId,
+ rateValue,
+ rateUnit: "PER_TON",
+});
+
+describe("rules & config: rate lifecycle + live rate-change mid-window", { retries: 0 }, () => {
+ before(() => {
+ cy.task("db:seedFile", "seed-import-corridor.sql");
+ // Soft-delete any leftover rate from a prior run of this spec — the
+ // duplicate-combo guard under test would otherwise reject THIS run's
+ // very first create against yesterday's row on a persistent DB.
+ db(
+ `UPDATE freight.rates r
+ SET deleted_at = now()
+ FROM freight.yards o, freight.yards d
+ WHERE r.origin_yard_id = o.id AND o.code = 'DJIB_PORT'
+ AND r.destination_yard_id = d.id AND d.code = 'E2E_AWASH'
+ AND r.rate_type = 'BULK_IMPORT' AND r.rate_unit = 'PER_TON'
+ AND r.deleted_at IS NULL`,
+ );
+ });
+
+ it("creates a DRAFT rate — a duplicate combination is rejected", () => {
+ yardId("DJIB_PORT").then((originYardId) => {
+ yardId("E2E_AWASH").then((destinationYardId) => {
+ apiPost(superAdmin, "/api/rates", RATE_BODY(originYardId, destinationYardId, 100)).then(
+ (res) => expect(res.status, "rate created").to.be.oneOf([200, 201]),
+ );
+
+ apiPost(
+ superAdmin,
+ "/api/rates",
+ RATE_BODY(originYardId, destinationYardId, 999),
+ false,
+ ).then((res) => {
+ expect(res.status, "duplicate combo rejected").to.eq(409);
+ expect(JSON.stringify(res.body)).to.include("already exists on this route");
+ });
+ });
+ });
+
+ rateByPattern().then((r) => {
+ expect(r.status, "starts DRAFT").to.eq("DRAFT");
+ expect(Number(r.rate_value), "original value 100").to.eq(100);
+ });
+ });
+
+ it("submit → PENDING_APPROVAL; a non-DRAFT rate can't be edited directly", () => {
+ rateByPattern().then((r) => {
+ apiPost(superAdmin, `/api/rates/${r.id}/submit`).then((res) =>
+ expect(res.status, "submitted").to.be.oneOf([200, 201]),
+ );
+ });
+
+ rateByPattern().then((r) => {
+ expect(r.status, "PENDING_APPROVAL").to.eq("PENDING_APPROVAL");
+
+ apiPost(superAdmin, `/api/rates/${r.id}`, { rateValue: 150 }, false).then((res) => {
+ expect(res.status, "direct edit rejected").to.be.within(400, 422);
+ });
+ });
+ });
+
+ it("approve → LIVE, visible on /rates/live; re-approving is rejected", () => {
+ rateByPattern().then((r) => {
+ apiPost(superAdmin, `/api/rates/${r.id}/approve`).then((res) =>
+ expect(res.status, "approved").to.be.oneOf([200, 201]),
+ );
+ });
+
+ rateByPattern().then((r) => {
+ expect(r.status, "LIVE").to.eq("LIVE");
+ expect(Number(r.rate_value), "still 100 at approval").to.eq(100);
+
+ db<{ n: string }>(
+ `SELECT count(*) AS n FROM freight.rates WHERE id = $1 AND status = 'LIVE'`,
+ [r.id],
+ ).then(({ rows }) => expect(Number(rows[0].n), "present as LIVE").to.eq(1));
+
+ apiPost(superAdmin, `/api/rates/${r.id}/approve`, {}, false).then((res) => {
+ expect(res.status, "re-approve rejected").to.be.within(400, 422);
+ expect(JSON.stringify(res.body)).to.include("PENDING_APPROVAL");
+ });
+ });
+ });
+
+ it("a change proposing the SAME value is rejected — nothing changed", () => {
+ rateByPattern().then((r) => {
+ apiPost(
+ superAdmin,
+ "/api/rate-change-requests",
+ { rateId: r.id, update: { rateValue: 100 } },
+ false,
+ ).then((res) => {
+ expect(res.status, "no-op change rejected").to.eq(400);
+ expect(JSON.stringify(res.body)).to.include("Nothing changed");
+ });
+ });
+ });
+
+ it("a real change files PENDING; a second concurrent change is rejected", () => {
+ rateByPattern().then((r) => {
+ apiPost(superAdmin, "/api/rate-change-requests", {
+ rateId: r.id,
+ update: { rateValue: 250 },
+ }).then((res) => expect(res.status, "change filed").to.be.oneOf([200, 201]));
+
+ apiPost(
+ superAdmin,
+ "/api/rate-change-requests",
+ { rateId: r.id, update: { rateValue: 300 } },
+ false,
+ ).then((res) => {
+ expect(res.status, "second concurrent change rejected").to.eq(409);
+ expect(JSON.stringify(res.body)).to.include("already has a change awaiting approval");
+ });
+
+ changeRequestByRate(r.id).then((cr) => {
+ expect(cr.status, "PENDING").to.eq("PENDING");
+ });
+
+ // The rate itself is untouched while the change is pending.
+ rateByPattern().then((live) =>
+ expect(Number(live.rate_value), "still 100 while pending").to.eq(100),
+ );
+ });
+ });
+
+ it("approving the change updates the LIVE row in place; re-approving it is rejected", () => {
+ rateByPattern().then((r) => {
+ changeRequestByRate(r.id).then((cr) => {
+ apiPost(superAdmin, `/api/rate-change-requests/${cr.id}/approve`, {}).then((res) =>
+ expect(res.status, "change approved").to.be.oneOf([200, 201]),
+ );
+ });
+ });
+
+ rateByPattern().then((r) => {
+ expect(r.status, "still LIVE (same row)").to.eq("LIVE");
+ expect(Number(r.rate_value), "value now 250").to.eq(250);
+
+ changeRequestByRate(r.id).then((cr) => {
+ expect(cr.status, "APPROVED").to.eq("APPROVED");
+ apiPost(superAdmin, `/api/rate-change-requests/${cr.id}/approve`, {}, false).then(
+ (res) => {
+ expect(res.status, "re-approve rejected").to.eq(409);
+ expect(JSON.stringify(res.body)).to.include("already approved");
+ },
+ );
+ });
+ });
+ });
+});
+
+export {};
diff --git a/e2e/freight/cypress/e2e/flows/schedule_window_rule_snapshot.cy.ts b/e2e/freight/cypress/e2e/flows/schedule_window_rule_snapshot.cy.ts
new file mode 100644
index 000000000..b5545232d
--- /dev/null
+++ b/e2e/freight/cypress/e2e/flows/schedule_window_rule_snapshot.cy.ts
@@ -0,0 +1,142 @@
+/**
+ * SCHEDULING — window-rule snapshot survives a global-rule edit:
+ *
+ * Each `train_schedules` row freezes the booking-window rule it was CREATED
+ * with, into 5 `rule_*` columns (migration 1920000000000). Editing the
+ * global rules must apply to FUTURE schedules only — an already-created
+ * schedule keeps its OWN frozen rule, so the batch board/customer window
+ * never redraws under an already-open train (see the
+ * schedule-window-rule-snapshot memory for the regression this protects:
+ * a global-rule edit used to redraw an open schedule's board as a
+ * synthetic grid that no longer matched the window the customer saw).
+ *
+ * – schedule A is created under the CURRENT global rules → its snapshot
+ * matches them
+ * – PATCH /global-rules to DIFFERENT windowOpenHour/windowDurationHours
+ * – schedule A's snapshot is UNCHANGED (frozen) after the edit
+ * – schedule B, created AFTER the edit, snapshots the NEW values
+ * – global rules are restored at the end — a shared singleton every
+ * other spec in the suite reads
+ *
+ * Retries off — sequential steps against the shared global-rules singleton.
+ */
+
+import {
+ apiGet,
+ apiPatch,
+ createImportSchedule,
+ db,
+ departureAt,
+ ensureCorridorRoute,
+ forceWindowOpen,
+ resetCorridorDay,
+ superAdmin,
+ withSchedule,
+} from "./import-utils";
+
+const DAY_A = departureAt(30);
+const DAY_B = departureAt(31);
+
+interface GlobalRules {
+ windowOpenHour: number;
+ windowDurationHours: number;
+}
+
+interface SnapshotRow {
+ rule_window_open_hour: number;
+ rule_window_duration_hours: string;
+}
+
+function snapshotFor(departure: Date, fn: (row: SnapshotRow) => void) {
+ withSchedule(departure, (s) => {
+ db(
+ `SELECT rule_window_open_hour, rule_window_duration_hours
+ FROM freight.train_schedules WHERE id = $1`,
+ [s.id],
+ ).then(({ rows }) => {
+ expect(rows, "schedule snapshot row").to.have.length(1);
+ fn(rows[0]);
+ });
+ });
+}
+
+let original: GlobalRules;
+let changed: GlobalRules;
+
+describe("scheduling: window-rule snapshot is frozen against later global-rule edits", { retries: 0 }, () => {
+ before(() => {
+ cy.task("db:seedFile", "seed-import-corridor.sql");
+ ensureCorridorRoute();
+ resetCorridorDay(DAY_A);
+ resetCorridorDay(DAY_B);
+ });
+
+ after(() => {
+ // Restore the shared global-rules singleton for every other spec.
+ if (original) apiPatch(superAdmin, "/api/train-scheduling/global-rules", original);
+ });
+
+ it("captures the current global rules, then creates schedule A under them", () => {
+ apiGet(superAdmin, "/api/train-scheduling/global-rules").then((res) => {
+ const body = res.body.data ?? res.body;
+ original = {
+ windowOpenHour: Number(body.windowOpenHour),
+ windowDurationHours: Number(body.windowDurationHours),
+ };
+ changed = {
+ windowOpenHour: (original.windowOpenHour + 5) % 24,
+ windowDurationHours: original.windowDurationHours >= 6 ? 2 : 8,
+ };
+ expect(changed.windowOpenHour, "changed open hour differs").to.not.eq(original.windowOpenHour);
+ expect(changed.windowDurationHours, "changed duration differs").to.not.eq(
+ original.windowDurationHours,
+ );
+ });
+
+ createImportSchedule({ departure: DAY_A, locoPair: ["LOCO-IMP-1", "LOCO-IMP-2"] });
+ // restampPendingWindows refreshes the snapshot for PRE_WINDOW schedules —
+ // the freeze only takes hold once a schedule is OPEN (see the
+ // schedule-window-rule-snapshot memory). Force it open now so the global-
+ // rule edit below lands on an already-frozen schedule, not a pending one.
+ withSchedule(DAY_A, (s) => forceWindowOpen(s.id, 45));
+
+ snapshotFor(DAY_A, (row) => {
+ expect(row.rule_window_open_hour, "A snapshots current open hour").to.eq(
+ original.windowOpenHour,
+ );
+ expect(Number(row.rule_window_duration_hours), "A snapshots current duration").to.eq(
+ original.windowDurationHours,
+ );
+ });
+ });
+
+ it("edits the global rules, creates schedule B — B snapshots the NEW values", () => {
+ apiPatch(superAdmin, "/api/train-scheduling/global-rules", changed).then((res) =>
+ expect(res.status, "global rules updated").to.be.oneOf([200, 201]),
+ );
+
+ createImportSchedule({ departure: DAY_B, locoPair: ["LOCO-IMP-3", "LOCO-IMP-4"] });
+
+ snapshotFor(DAY_B, (row) => {
+ expect(row.rule_window_open_hour, "B snapshots the NEW open hour").to.eq(
+ changed.windowOpenHour,
+ );
+ expect(Number(row.rule_window_duration_hours), "B snapshots the NEW duration").to.eq(
+ changed.windowDurationHours,
+ );
+ });
+ });
+
+ it("schedule A's snapshot is UNCHANGED — frozen against the later edit", () => {
+ snapshotFor(DAY_A, (row) => {
+ expect(row.rule_window_open_hour, "A still the ORIGINAL open hour").to.eq(
+ original.windowOpenHour,
+ );
+ expect(Number(row.rule_window_duration_hours), "A still the ORIGINAL duration").to.eq(
+ original.windowDurationHours,
+ );
+ });
+ });
+});
+
+export {};
diff --git a/e2e/freight/cypress/e2e/flows/train_builder_adjust_consist.cy.ts b/e2e/freight/cypress/e2e/flows/train_builder_adjust_consist.cy.ts
new file mode 100644
index 000000000..0e88fc234
--- /dev/null
+++ b/e2e/freight/cypress/e2e/flows/train_builder_adjust_consist.cy.ts
@@ -0,0 +1,191 @@
+/**
+ * TRAIN-BUILDER — adjust-consist headroom guard:
+ *
+ * `POST /train-scheduling/schedules/:id/adjust-consist` permanently couples
+ * or trims a BUILT train's consist from a live schedule. This spec drives it
+ * against a dedicated small-capacity train (TRN-ADJ-1, see
+ * seed-adjust-consist.sql): 120T-pull locomotives with a 20T overage
+ * tolerance ⇒ a 140T pull cap, starting consist 4 × CW4 (99.2T tare).
+ *
+ * – no wagons passed at all → rejected ("nothing to adjust")
+ * – the same wagon in both add and remove → rejected
+ * – removing a wagon that isn't part of this train → rejected
+ * – adding ONE free spare (→ 124.0T) is within the 140T cap → SUCCEEDS,
+ * schedule.max_wagons follows the new consist size
+ * – adding the SECOND spare too (→ 148.8T) breaches the 140T cap →
+ * REJECTED with the exact gross-weight-over-limit message
+ * – removing a free (unallocated) wagon succeeds, consist shrinks back
+ *
+ * Sequential steps against one schedule — retries off.
+ */
+
+import {
+ apiPost,
+ createImportSchedule,
+ db,
+ departureAt,
+ ensureExportRoute,
+ EXP_DEST,
+ EXP_ORIGIN,
+ resetCorridorDay,
+ superAdmin,
+} from "./import-utils";
+
+const DEPARTURE = departureAt(9);
+
+interface WagonRow {
+ id: string;
+ wagon_number: string;
+ train_id: string | null;
+ status: string;
+}
+
+function wagonByNumber(num: string) {
+ return db(
+ `SELECT id, wagon_number, train_id, status FROM freight.wagons WHERE wagon_number = $1`,
+ [num],
+ ).then(({ rows }) => {
+ expect(rows, `wagon ${num}`).to.have.length(1);
+ return rows[0];
+ });
+}
+
+interface ScheduleRow {
+ id: string;
+ max_wagons: number;
+}
+
+function adjTrainSchedule() {
+ return db(
+ `SELECT ts.id, ts.max_wagons
+ FROM freight.train_schedules ts
+ JOIN freight.train_sets se ON se.id = ts.train_set_id
+ JOIN freight.trains t ON t.id = se.train_id AND t.code = 'TRN-ADJ-1'
+ WHERE ts.deleted_at IS NULL
+ ORDER BY ts.created_at DESC LIMIT 1`,
+ ).then(({ rows }) => {
+ expect(rows, "TRN-ADJ-1 schedule").to.have.length(1);
+ return rows[0];
+ });
+}
+
+function adjustConsist(
+ scheduleId: string,
+ body: { addWagonIds?: string[]; removeWagonIds?: string[] },
+ failOnStatusCode = true,
+) {
+ return apiPost(
+ superAdmin,
+ `/api/train-scheduling/schedules/${scheduleId}/adjust-consist`,
+ body,
+ failOnStatusCode,
+ );
+}
+
+describe("train-builder: adjust-consist headroom guard", { retries: 0 }, () => {
+ before(() => {
+ cy.task("db:seedFile", "seed-import-corridor.sql");
+ cy.task("db:seedFile", "seed-adjust-consist.sql");
+ });
+
+ it("operations schedules the dedicated 4-wagon built train (TRN-ADJ-1)", () => {
+ ensureExportRoute();
+ resetCorridorDay(DEPARTURE, EXP_DEST, EXP_ORIGIN);
+ createImportSchedule({
+ departure: DEPARTURE,
+ trainCode: "TRN-ADJ-1",
+ maxWagons: 4,
+ kind: "bulk",
+ originCode: EXP_ORIGIN,
+ destCode: EXP_DEST,
+ });
+ });
+
+ it("rejects an empty adjustment and a wagon listed in both add and remove", () => {
+ adjTrainSchedule().then((s) => {
+ adjustConsist(s.id, {}, false).then((res) => {
+ expect(res.status, "nothing-to-adjust rejected").to.eq(400);
+ expect(JSON.stringify(res.body)).to.include("Nothing to adjust");
+ });
+
+ wagonByNumber("WGN-ADJ-C1").then((w) => {
+ adjustConsist(s.id, { addWagonIds: [w.id], removeWagonIds: [w.id] }, false).then(
+ (res) => {
+ expect(res.status, "add+remove same wagon rejected").to.eq(400);
+ expect(JSON.stringify(res.body)).to.include(
+ "cannot be added and removed in the same adjustment",
+ );
+ },
+ );
+ });
+ });
+ });
+
+ it("rejects removing a wagon that isn't coupled to this train", () => {
+ adjTrainSchedule().then((s) => {
+ wagonByNumber("WGN-ADJ-S1").then((spare) => {
+ adjustConsist(s.id, { removeWagonIds: [spare.id] }, false).then((res) => {
+ expect(res.status, "not-part-of-train rejected").to.eq(404);
+ expect(JSON.stringify(res.body)).to.include("not coupled to train");
+ });
+ });
+ });
+ });
+
+ it("adds one spare within the 140T pull cap (99.2T + 24.8T = 124.0T) — succeeds", () => {
+ adjTrainSchedule().then((s) => {
+ wagonByNumber("WGN-ADJ-S1").then((spare) => {
+ adjustConsist(s.id, { addWagonIds: [spare.id] }).then((res) => {
+ expect(res.status, "add within headroom").to.be.oneOf([200, 201]);
+ });
+ });
+ });
+
+ // Consist grew to 5; the coupled spare now belongs to the train.
+ adjTrainSchedule().then((s) => expect(s.max_wagons, "max_wagons = 5").to.eq(5));
+ wagonByNumber("WGN-ADJ-S1").then((w) => {
+ db<{ code: string }>(
+ `SELECT t.code FROM freight.trains t WHERE t.id = $1`,
+ [w.train_id],
+ ).then(({ rows }) => expect(rows[0]?.code, "S1 now on TRN-ADJ-1").to.eq("TRN-ADJ-1"));
+ });
+ });
+
+ it("adding the second spare breaches the 140T cap (124.0T + 24.8T = 148.8T) — rejected", () => {
+ adjTrainSchedule().then((s) => {
+ wagonByNumber("WGN-ADJ-S2").then((spare) => {
+ adjustConsist(s.id, { addWagonIds: [spare.id] }, false).then((res) => {
+ expect(res.status, "add over headroom rejected").to.eq(400);
+ const body = JSON.stringify(res.body);
+ expect(body).to.include("puts gross weight at 148.8T");
+ expect(body).to.include("over the locomotives' 140T limit incl. tolerance");
+ });
+ });
+ });
+
+ // Rejected add must not have moved anything: still 5 wagons, S2 still free.
+ adjTrainSchedule().then((s) => expect(s.max_wagons, "still 5").to.eq(5));
+ wagonByNumber("WGN-ADJ-S2").then((w) => {
+ expect(w.train_id, "S2 still uncoupled").to.be.null;
+ expect(w.status, "S2 still AVAILABLE").to.eq("AVAILABLE");
+ });
+ });
+
+ it("removes a free coupled wagon — consist shrinks and the wagon returns to the yard", () => {
+ adjTrainSchedule().then((s) => {
+ wagonByNumber("WGN-ADJ-C4").then((w) => {
+ adjustConsist(s.id, { removeWagonIds: [w.id] }).then((res) => {
+ expect(res.status, "remove free wagon").to.be.oneOf([200, 201]);
+ });
+ });
+ });
+
+ adjTrainSchedule().then((s) => expect(s.max_wagons, "max_wagons = 4").to.eq(4));
+ wagonByNumber("WGN-ADJ-C4").then((w) => {
+ expect(w.train_id, "C4 detached").to.be.null;
+ expect(w.status, "C4 back to AVAILABLE").to.eq("AVAILABLE");
+ });
+ });
+});
+
+export {};
diff --git a/e2e/freight/cypress/fixtures/seed-adjust-consist.sql b/e2e/freight/cypress/fixtures/seed-adjust-consist.sql
new file mode 100644
index 000000000..1316358bb
--- /dev/null
+++ b/e2e/freight/cypress/fixtures/seed-adjust-consist.sql
@@ -0,0 +1,83 @@
+-- Arrange-data for flows/train_builder_adjust_consist.cy.ts. Idempotent.
+-- Run AFTER seed-import-corridor.sql (KALITY yard, the KALITY→DJIB_PORT export
+-- route via ensureExportRoute()).
+--
+-- A dedicated small-capacity built train at KALITY so the headroom math is
+-- exact and cheap: LOCO-ADJ-A/B pull 120T each, 20T overage tolerance ⇒ the
+-- consist's pull cap is 120 + 20 = 140T. TRN-ADJ-1 starts with 4 coupled CW4
+-- wagons (4 × 24.8T tare = 99.2T, well under cap) plus 2 free spare CW4
+-- wagons at the same yard (WGN-ADJ-S1/S2) to add:
+-- + one spare -> 124.0T (within the 140T cap) -> adjust-consist SUCCEEDS
+-- + both spares -> 148.8T (over the 140T cap) -> adjust-consist REJECTS
+--
+-- Dedicated codes (LOCO-ADJ-*, TRN-ADJ-1, WGN-ADJ-*) so this spec never
+-- competes with the shared KALITY CW4 export pocket other bulk specs draw
+-- from (see cargo-two-wagon-types-breaks-length-budget.md for what happens
+-- when a spec silently shares fleet stock with another).
+
+-- 1. Locomotives at KALITY: small pull cap, generous length (never binds).
+INSERT INTO freight.locomotives
+ (id, code, max_pull_weight_tons, max_train_length_meters,
+ overage_tolerance_tons, current_yard_id)
+SELECT gen_random_uuid(), v.code, 120, 760, 20, y.id
+FROM (VALUES ('LOCO-ADJ-A'), ('LOCO-ADJ-B')) AS v(code)
+JOIN freight.yards y ON y.code = 'KALITY'
+WHERE NOT EXISTS (SELECT 1 FROM freight.locomotives l WHERE l.code = v.code);
+
+-- Keep limits stable across re-seeds (in case a prior run's row predates this
+-- fixture's numbers).
+UPDATE freight.locomotives
+SET max_pull_weight_tons = 120, max_train_length_meters = 760, overage_tolerance_tons = 20
+WHERE code IN ('LOCO-ADJ-A', 'LOCO-ADJ-B')
+ AND (max_pull_weight_tons IS DISTINCT FROM 120
+ OR max_train_length_meters IS DISTINCT FROM 760
+ OR overage_tolerance_tons IS DISTINCT FROM 20);
+
+-- 2. The built train, parked at KALITY (must match the export route's origin
+-- yard for a built-train schedule to be creatable on it).
+INSERT INTO freight.trains (id, code, train_name, capacity_tons, current_yard_id)
+SELECT gen_random_uuid(), 'TRN-ADJ-1', 'E2E Adjust-Consist Carrier', 500, y.id
+FROM freight.yards y WHERE y.code = 'KALITY'
+ AND NOT EXISTS (SELECT 1 FROM freight.trains t WHERE t.code = 'TRN-ADJ-1');
+
+-- 3. Couple the locomotive pair.
+INSERT INTO freight.train_locomotives (id, train_id, locomotive_id, sequence_no)
+SELECT gen_random_uuid(), t.id, l.id, v.seq
+FROM (VALUES ('LOCO-ADJ-A', 0), ('LOCO-ADJ-B', 1)) AS v(loco_code, seq)
+JOIN freight.trains t ON t.code = 'TRN-ADJ-1'
+JOIN freight.locomotives l ON l.code = v.loco_code
+WHERE NOT EXISTS (
+ SELECT 1 FROM freight.train_locomotives tl
+ WHERE tl.train_id = t.id AND tl.locomotive_id = l.id
+);
+
+-- 4. Dedicated CW4 wagons at KALITY: 4 coupled onto the train, 2 free spares.
+INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, current_yard_id)
+SELECT gen_random_uuid(), v.num, wt.id, y.id
+FROM (VALUES
+ ('WGN-ADJ-C1', 1), ('WGN-ADJ-C2', 2), ('WGN-ADJ-C3', 3), ('WGN-ADJ-C4', 4),
+ ('WGN-ADJ-S1', NULL), ('WGN-ADJ-S2', NULL)
+ ) AS v(num, seq)
+JOIN freight.wagon_types wt ON wt.code = 'CW4'
+JOIN freight.yards y ON y.code = 'KALITY'
+WHERE NOT EXISTS (SELECT 1 FROM freight.wagons w WHERE w.wagon_number = v.num);
+
+-- Couple the C1..C4 quartet onto the train (idempotent re-couple in case a
+-- prior run's adjust-consist test detached one).
+UPDATE freight.wagons w
+SET train_id = t.id, sequence_number = v.seq, status = 'ASSIGNED', current_yard_id = t.current_yard_id
+FROM freight.trains t,
+ (VALUES ('WGN-ADJ-C1', 1), ('WGN-ADJ-C2', 2), ('WGN-ADJ-C3', 3), ('WGN-ADJ-C4', 4))
+ AS v(num, seq)
+WHERE w.wagon_number = v.num AND t.code = 'TRN-ADJ-1'
+ AND (w.train_id IS DISTINCT FROM t.id OR w.sequence_number IS DISTINCT FROM v.seq);
+
+-- The 2 spares stay loose (train_id NULL), AVAILABLE, at the train's yard —
+-- unconditionally re-assert every seed (runs AFTER seed-import-corridor.sql,
+-- whose own "re-park the export CW4 pocket" step sweeps any loose CW4 whose
+-- number sorts last into NAGAD — 'WGN-ADJ-S%' sorts after every corridor
+-- fixture code, so a prior run's spares are exactly the kind it would steal).
+UPDATE freight.wagons w
+SET train_id = NULL, sequence_number = NULL, status = 'AVAILABLE',
+ current_yard_id = (SELECT id FROM freight.yards WHERE code = 'KALITY')
+WHERE w.wagon_number IN ('WGN-ADJ-S1', 'WGN-ADJ-S2');
diff --git a/e2e/freight/cypress/fixtures/seed-government.sql b/e2e/freight/cypress/fixtures/seed-government.sql
new file mode 100644
index 000000000..dc8631f58
--- /dev/null
+++ b/e2e/freight/cypress/fixtures/seed-government.sql
@@ -0,0 +1,71 @@
+-- Arrange-data for flows/government_preemption.cy.ts. Idempotent.
+--
+-- The real government-company seeder (GovCompaniesSeeder /
+-- gov-companies.data.ts) is NOT wired into app.module.ts (commented out —
+-- an in-progress feature), so the e2e boot never creates it. This fixture
+-- inserts the SAME fixed row (id/tin) as GOV_COMPANIES[0] ("Federal
+-- Government of Ethiopia") — a no-op duplicate-safe insert if that seeder is
+-- ever turned back on, and the only way e2e can book a government booking
+-- today (POST /bookings requires companyId to resolve to a
+-- kind='government', status='active' company + an active company profile).
+
+INSERT INTO freight.companies
+ (id, name, type, kind, status, tin, country, email, phone)
+SELECT '0a1b0001-0000-4000-8000-000000000001'::uuid, 'Federal Government of Ethiopia',
+ 'customer', 'government', 'active', '0000000001', 'Ethiopia',
+ 'procurement@gov.et', '+251111000001'
+WHERE NOT EXISTS (
+ SELECT 1 FROM freight.companies WHERE id = '0a1b0001-0000-4000-8000-000000000001'::uuid
+);
+
+INSERT INTO freight.company_profiles
+ (id, company_id, type, reference, status)
+SELECT '0b1c0001-0000-4000-8000-000000000001'::uuid,
+ '0a1b0001-0000-4000-8000-000000000001'::uuid, 'importer', 'IM-90001', 'active'
+WHERE NOT EXISTS (
+ SELECT 1 FROM freight.company_profiles WHERE id = '0b1c0001-0000-4000-8000-000000000001'::uuid
+);
+
+-- Dedicated 3-wagon BUILT container train at DJIB_PORT (the default import
+-- corridor's origin). A loco-pair schedule's max_wagons is NOT a real cap —
+-- syncScheduleMaxWagons recomputes it from the locomotive's length every fill
+-- pass (54 for a standard-length loco), ignoring maxWagonsPerTrain entirely.
+-- A BUILT train's coupled wagon count IS the cap, immune to that recompute
+-- (see seed-adjust-consist.sql for the same pattern) — the only way to get a
+-- genuinely small, exact-fit train for the preemption scenario below.
+INSERT INTO freight.locomotives
+ (id, code, max_pull_weight_tons, max_train_length_meters, current_yard_id)
+SELECT gen_random_uuid(), v.code, 9000, 760, y.id
+FROM (VALUES ('LOCO-GOV-A'), ('LOCO-GOV-B')) AS v(code)
+JOIN freight.yards y ON y.code = 'DJIB_PORT'
+WHERE NOT EXISTS (SELECT 1 FROM freight.locomotives l WHERE l.code = v.code);
+
+INSERT INTO freight.trains (id, code, train_name, capacity_tons, current_yard_id)
+SELECT gen_random_uuid(), 'TRN-GOV-1', 'E2E Government Preemption Carrier', 300, y.id
+FROM freight.yards y WHERE y.code = 'DJIB_PORT'
+ AND NOT EXISTS (SELECT 1 FROM freight.trains t WHERE t.code = 'TRN-GOV-1');
+
+INSERT INTO freight.train_locomotives (id, train_id, locomotive_id, sequence_no)
+SELECT gen_random_uuid(), t.id, l.id, v.seq
+FROM (VALUES ('LOCO-GOV-A', 0), ('LOCO-GOV-B', 1)) AS v(loco_code, seq)
+JOIN freight.trains t ON t.code = 'TRN-GOV-1'
+JOIN freight.locomotives l ON l.code = v.loco_code
+WHERE NOT EXISTS (
+ SELECT 1 FROM freight.train_locomotives tl
+ WHERE tl.train_id = t.id AND tl.locomotive_id = l.id
+);
+
+INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, current_yard_id)
+SELECT gen_random_uuid(), v.num, wt.id, y.id
+FROM (VALUES ('WGN-GOV-C1', 1), ('WGN-GOV-C2', 2), ('WGN-GOV-C3', 3)) AS v(num, seq)
+JOIN freight.wagon_types wt ON wt.code = 'NW5'
+JOIN freight.yards y ON y.code = 'DJIB_PORT'
+WHERE NOT EXISTS (SELECT 1 FROM freight.wagons w WHERE w.wagon_number = v.num);
+
+UPDATE freight.wagons w
+SET train_id = t.id, sequence_number = v.seq, status = 'ASSIGNED',
+ current_yard_id = t.current_yard_id
+FROM freight.trains t,
+ (VALUES ('WGN-GOV-C1', 1), ('WGN-GOV-C2', 2), ('WGN-GOV-C3', 3)) AS v(num, seq)
+WHERE w.wagon_number = v.num AND t.code = 'TRN-GOV-1'
+ AND (w.train_id IS DISTINCT FROM t.id OR w.sequence_number IS DISTINCT FROM v.seq);
diff --git a/e2e/freight/cypress/fixtures/seed-import-corridor.sql b/e2e/freight/cypress/fixtures/seed-import-corridor.sql
index 21a2e391c..4489dce86 100644
--- a/e2e/freight/cypress/fixtures/seed-import-corridor.sql
+++ b/e2e/freight/cypress/fixtures/seed-import-corridor.sql
@@ -26,6 +26,24 @@
-- missing production migration.
DROP INDEX IF EXISTS freight.uq_one_active_booking_per_one_time_contract;
+-- 0b. Schema drift guard: CUSTOMS_CLEARANCE / WITH_RETURN rates became
+-- route-scoped in migrations 2820 + 2830, but an e2e image built before them
+-- still carries the old CK_rates_yard_scope (yards allowed only for ALWAYS
+-- BULK/CONTAINER/INTERCITY rows). Re-state the post-2830 shape — a no-op on an
+-- up-to-date image, and what lets the customs-clearance lane rates below load.
+ALTER TABLE freight.rates DROP CONSTRAINT IF EXISTS "CK_rates_yard_scope";
+ALTER TABLE freight.rates
+ ADD CONSTRAINT "CK_rates_yard_scope" CHECK (
+ deleted_at IS NOT NULL
+ OR status = 'SUPERSEDED'
+ OR CASE
+ WHEN ("trigger" = 'ALWAYS' AND applies_to IN ('BULK', 'CONTAINER', 'INTERCITY'))
+ OR "trigger" IN ('CUSTOMS_CLEARANCE', 'WITH_RETURN')
+ THEN origin_yard_id IS NOT NULL AND destination_yard_id IS NOT NULL
+ ELSE origin_yard_id IS NULL AND destination_yard_id IS NULL
+ END
+ );
+
-- 1a. Extra Ethiopian mid-corridor yard.
INSERT INTO freight.yards (id, code, label, country, is_active, display_order)
SELECT gen_random_uuid(), 'E2E_AWASH', 'E2E Awash Yard', 'Ethiopia', true, 50
@@ -124,7 +142,7 @@ FROM (
JOIN freight.yards y ON y.id = w2.current_yard_id AND y.code = 'DJIB_PORT'
WHERE w2.train_id IS NULL AND w2.deleted_at IS NULL
ORDER BY w2.wagon_number ASC
- LIMIT 120
+ LIMIT 200
) pick
WHERE w.id = pick.id;
@@ -158,22 +176,35 @@ WHERE NOT EXISTS (SELECT 1 FROM freight.locomotives l WHERE l.code = v.code);
INSERT INTO freight.wagons (id, wagon_number, wagon_type_id, current_yard_id)
SELECT gen_random_uuid(), 'ECW' || lpad(g::text, 4, '0'), wt.id,
(SELECT id FROM freight.yards
- WHERE code = CASE WHEN g <= 80 THEN 'KALITY' ELSE 'DIRE_DAWA' END)
-FROM generate_series(1, 100) AS g
+ WHERE code = CASE WHEN g <= 120 THEN 'KALITY' ELSE 'DIRE_DAWA' END)
+FROM generate_series(1, 160) AS g
JOIN freight.wagon_types wt ON wt.code = 'CW4'
WHERE NOT EXISTS (
SELECT 1 FROM freight.wagons w WHERE w.wagon_number = 'ECW' || lpad(g::text, 4, '0')
);
--- 5b3. Ledger-day rolling stock: wheat may also ride PW2 box wagons, and the
--- GRAIN train is a BUILT Train-Builder consist — 37 PW2 wagons coupled at
--- KALITY behind two dedicated locos. A built train's physical wagon count IS
--- its schedule capacity (37), immune to the loco-length slot recompute.
+-- 5b3. Ledger-day rolling stock: GRAINS ride PW2 box wagons on a BUILT
+-- Train-Builder consist — 37 PW2 wagons coupled at KALITY behind two dedicated
+-- locos. A built train's physical wagon count IS its schedule capacity (37),
+-- immune to the loco-length slot recompute.
+--
+-- GRAINS gets PW2 (17.066 m), WHEAT gets CW4 (13.976 m) below — kept on SEPARATE
+-- cargo types on purpose. `dimsFor`/`needFor` size a bulk booking off its cargo
+-- type's FIRST wagon type, so a cargo carrying two wagon-lengths sizes
+-- inconsistently on loco-pair export trains (one booking as CW4, another as PW2)
+-- and the length budget never matches the 54-wagon CW4 board the export specs
+-- expect. One cargo → one wagon length keeps that math deterministic.
+DELETE FROM freight.cargo_type_wagon_types x
+USING freight.cargo_types ct, freight.wagon_types wt
+WHERE x.cargo_type_id = ct.id AND x.wagon_type_id = wt.id
+ AND ((ct.code = 'E2E_IMP_WHEAT' AND wt.code = 'PW2')
+ OR (ct.code = 'E2E_IMP_GRAINS' AND wt.code = 'CW4'));
+
INSERT INTO freight.cargo_type_wagon_types (cargo_type_id, wagon_type_id)
SELECT ct.id, wt.id
FROM freight.cargo_types ct
JOIN freight.wagon_types wt ON wt.code = 'PW2'
-WHERE ct.code IN ('E2E_IMP_GRAINS', 'E2E_IMP_WHEAT')
+WHERE ct.code = 'E2E_IMP_GRAINS'
AND NOT EXISTS (
SELECT 1 FROM freight.cargo_type_wagon_types x
WHERE x.cargo_type_id = ct.id AND x.wagon_type_id = wt.id
@@ -182,7 +213,8 @@ WHERE ct.code IN ('E2E_IMP_GRAINS', 'E2E_IMP_WHEAT')
INSERT INTO freight.locomotives
(id, code, max_pull_weight_tons, max_train_length_meters, current_yard_id)
SELECT gen_random_uuid(), v.code, 9000, 760, y.id
-FROM (VALUES ('LOCO-LED-1'), ('LOCO-LED-2')) AS v(code)
+FROM (VALUES ('LOCO-LED-1'), ('LOCO-LED-2'), ('LOCO-LED-3'), ('LOCO-LED-4'),
+ ('LOCO-LED-5'), ('LOCO-LED-6')) AS v(code)
JOIN freight.yards y ON y.code = 'KALITY'
WHERE NOT EXISTS (SELECT 1 FROM freight.locomotives l WHERE l.code = v.code);
@@ -269,7 +301,7 @@ INSERT INTO freight.cargo_type_wagon_types (cargo_type_id, wagon_type_id)
SELECT ct.id, wt.id
FROM freight.cargo_types ct
JOIN freight.wagon_types wt ON wt.code = 'CW4'
-WHERE ct.code IN ('E2E_IMP_GRAINS', 'E2E_IMP_WHEAT')
+WHERE ct.code = 'E2E_IMP_WHEAT'
AND NOT EXISTS (
SELECT 1 FROM freight.cargo_type_wagon_types x
WHERE x.cargo_type_id = ct.id AND x.wagon_type_id = wt.id
@@ -289,7 +321,7 @@ WHERE wt.id = w.wagon_type_id AND wt.code = 'CW4'
-- Re-park the export CW4 pocket every seed (the mint above is insert-guarded).
UPDATE freight.wagons w
SET current_yard_id = (SELECT id FROM freight.yards
- WHERE code = CASE WHEN substring(w.wagon_number FROM 4)::int <= 80
+ WHERE code = CASE WHEN substring(w.wagon_number FROM 4)::int <= 120
THEN 'KALITY' ELSE 'DIRE_DAWA' END)
FROM freight.wagon_types wt
WHERE wt.id = w.wagon_type_id AND wt.code = 'CW4'
@@ -357,3 +389,62 @@ WHERE NOT EXISTS (
AND r.origin_yard_id = a.id AND r.destination_yard_id = b.id
AND r.deleted_at IS NULL
);
+
+-- 7b. Customs clearance service fees — billed on the booking invoice together
+-- with the freight. Sold per direction + route + cargo kind: container fees
+-- per container type (one row per active 20/40ft type so whichever type the
+-- server resolves for a size always matches), bulk fees per commodity.
+-- Without these, every customs booking hard-blocks at pricing.
+INSERT INTO freight.rates
+ (id, rate_type, applies_to, trigger, currency, rate_value, rate_unit, status,
+ trade_direction, container_type_id, origin_yard_id, destination_yard_id,
+ proposed_by_staff_id)
+SELECT gen_random_uuid(), 'CUSTOMS_CLEARANCE', 'OTHER', 'CUSTOMS_CLEARANCE',
+ 'USD', 50, 'PER_CONTAINER', 'LIVE', v.direction, ct.id, a.id, b.id, u.id
+FROM (VALUES
+ ('IMPORT', 'DJIB_PORT', 'KALITY'),
+ ('IMPORT', 'DJIB_PORT', 'MOJO'),
+ ('IMPORT', 'NAGAD', 'KALITY'),
+ ('IMPORT', 'NAGAD', 'MOJO'),
+ ('EXPORT', 'KALITY', 'DJIB_PORT'),
+ ('EXPORT', 'MOJO', 'DJIB_PORT'),
+ ('EXPORT', 'DIRE_DAWA', 'DJIB_PORT')
+ ) AS v(direction, from_code, to_code)
+JOIN freight.yards a ON a.code = v.from_code
+JOIN freight.yards b ON b.code = v.to_code
+JOIN freight.container_types ct ON ct.size_ft IN (20, 40) AND ct.is_active
+JOIN iam.users u ON u.email = 'operation@edr.local'
+WHERE NOT EXISTS (
+ SELECT 1 FROM freight.rates r
+ WHERE r.rate_type = 'CUSTOMS_CLEARANCE'
+ AND r.container_type_id = ct.id
+ AND r.origin_yard_id = a.id AND r.destination_yard_id = b.id
+ AND r.deleted_at IS NULL
+);
+
+INSERT INTO freight.rates
+ (id, rate_type, applies_to, trigger, currency, rate_value, rate_unit, status,
+ trade_direction, cargo_type_id, origin_yard_id, destination_yard_id,
+ proposed_by_staff_id)
+SELECT gen_random_uuid(), 'CUSTOMS_CLEARANCE', 'OTHER', 'CUSTOMS_CLEARANCE',
+ 'USD', 2, 'PER_TON', 'LIVE', v.direction, cgt.id, a.id, b.id, u.id
+FROM (VALUES
+ ('IMPORT', 'DJIB_PORT', 'KALITY'),
+ ('IMPORT', 'DJIB_PORT', 'MOJO'),
+ ('IMPORT', 'NAGAD', 'KALITY'),
+ ('IMPORT', 'NAGAD', 'MOJO'),
+ ('EXPORT', 'KALITY', 'DJIB_PORT'),
+ ('EXPORT', 'MOJO', 'DJIB_PORT'),
+ ('EXPORT', 'DIRE_DAWA', 'DJIB_PORT')
+ ) AS v(direction, from_code, to_code)
+JOIN freight.yards a ON a.code = v.from_code
+JOIN freight.yards b ON b.code = v.to_code
+JOIN freight.cargo_types cgt ON cgt.code = 'E2E_IMP_WHEAT'
+JOIN iam.users u ON u.email = 'operation@edr.local'
+WHERE NOT EXISTS (
+ SELECT 1 FROM freight.rates r
+ WHERE r.rate_type = 'CUSTOMS_CLEARANCE'
+ AND r.cargo_type_id = cgt.id
+ AND r.origin_yard_id = a.id AND r.destination_yard_id = b.id
+ AND r.deleted_at IS NULL
+);
diff --git a/edr_freight_dump.sql b/edr_freight_dump.sql
new file mode 100644
index 000000000..7d0b3b596
--- /dev/null
+++ b/edr_freight_dump.sql
@@ -0,0 +1,17043 @@
+--
+-- PostgreSQL database dump
+--
+
+\restrict 0o8bki6pbvuFe2vF4akHmx5FVtVGWDmbSMt0LVrbiy8pGUCi8BvhwvzdGRIKMSh
+
+-- Dumped from database version 16.14 (Ubuntu 16.14-0ubuntu0.24.04.1)
+-- Dumped by pg_dump version 16.14 (Debian 16.14-1.pgdg13+1)
+
+SET statement_timeout = 0;
+SET lock_timeout = 0;
+SET idle_in_transaction_session_timeout = 0;
+SET client_encoding = 'UTF8';
+SET standard_conforming_strings = on;
+SELECT pg_catalog.set_config('search_path', '', false);
+SET check_function_bodies = false;
+SET xmloption = content;
+SET client_min_messages = warning;
+SET row_security = off;
+
+--
+-- Name: audit; Type: SCHEMA; Schema: -; Owner: -
+--
+
+CREATE SCHEMA audit;
+
+
+--
+-- Name: freight; Type: SCHEMA; Schema: -; Owner: -
+--
+
+CREATE SCHEMA freight;
+
+
+--
+-- Name: iam; Type: SCHEMA; Schema: -; Owner: -
+--
+
+CREATE SCHEMA iam;
+
+
+--
+-- Name: uuid-ossp; Type: EXTENSION; Schema: -; Owner: -
+--
+
+CREATE EXTENSION IF NOT EXISTS "uuid-ossp" WITH SCHEMA public;
+
+
+--
+-- Name: EXTENSION "uuid-ossp"; Type: COMMENT; Schema: -; Owner: -
+--
+
+COMMENT ON EXTENSION "uuid-ossp" IS 'generate universally unique identifiers (UUIDs)';
+
+
+--
+-- Name: consignments_cargo_type_enum; Type: TYPE; Schema: freight; Owner: -
+--
+
+CREATE TYPE freight.consignments_cargo_type_enum AS ENUM (
+ 'CONTAINER',
+ 'BULK_LIQUID',
+ 'BULK_DRY',
+ 'GENERAL',
+ 'REFRIGERATED',
+ 'HAZARDOUS'
+);
+
+
+--
+-- Name: consignments_status_enum; Type: TYPE; Schema: freight; Owner: -
+--
+
+CREATE TYPE freight.consignments_status_enum AS ENUM (
+ 'PENDING',
+ 'LOADED',
+ 'IN_TRANSIT',
+ 'AT_DESTINATION',
+ 'DELIVERED',
+ 'RETURNED'
+);
+
+
+--
+-- Name: invoices_status_enum; Type: TYPE; Schema: freight; Owner: -
+--
+
+CREATE TYPE freight.invoices_status_enum AS ENUM (
+ 'PENDING',
+ 'PAID',
+ 'OVERDUE',
+ 'CANCELLED',
+ 'REFUNDED'
+);
+
+
+--
+-- Name: payment_webhook_events_provider_enum; Type: TYPE; Schema: freight; Owner: -
+--
+
+CREATE TYPE freight.payment_webhook_events_provider_enum AS ENUM (
+ 'telebirr',
+ 'cbe-birr',
+ 'ebirr'
+);
+
+
+--
+-- Name: payments_currency_enum; Type: TYPE; Schema: freight; Owner: -
+--
+
+CREATE TYPE freight.payments_currency_enum AS ENUM (
+ 'ETB',
+ 'USD'
+);
+
+
+--
+-- Name: payments_method_enum; Type: TYPE; Schema: freight; Owner: -
+--
+
+CREATE TYPE freight.payments_method_enum AS ENUM (
+ 'telebirr',
+ 'cbe-birr',
+ 'ebirr',
+ 'waafi',
+ 'card',
+ 'dmoney',
+ 'cac-bank'
+);
+
+
+--
+-- Name: payments_status_enum; Type: TYPE; Schema: freight; Owner: -
+--
+
+CREATE TYPE freight.payments_status_enum AS ENUM (
+ 'action-required',
+ 'processing',
+ 'success',
+ 'failed',
+ 'canceled',
+ 'refunded'
+);
+
+
+--
+-- Name: payments_type_enum; Type: TYPE; Schema: freight; Owner: -
+--
+
+CREATE TYPE freight.payments_type_enum AS ENUM (
+ 'booking'
+);
+
+
+--
+-- Name: priority_rules_priority_type_enum; Type: TYPE; Schema: freight; Owner: -
+--
+
+CREATE TYPE freight.priority_rules_priority_type_enum AS ENUM (
+ 'USD_PAYER',
+ 'RAIL_AND_FORWARDING',
+ 'GOVERNMENT_ACCOUNT',
+ 'HIGH_VOLUME_SHIPMENT'
+);
+
+
+--
+-- Name: surcharges_calculation_method_enum; Type: TYPE; Schema: freight; Owner: -
+--
+
+CREATE TYPE freight.surcharges_calculation_method_enum AS ENUM (
+ 'PER_TON',
+ 'FLAT_FEE',
+ 'PERCENTAGE'
+);
+
+
+--
+-- Name: tracking_events_status_enum; Type: TYPE; Schema: freight; Owner: -
+--
+
+CREATE TYPE freight.tracking_events_status_enum AS ENUM (
+ 'PENDING',
+ 'LOADED',
+ 'IN_TRANSIT',
+ 'AT_DESTINATION',
+ 'DELIVERED',
+ 'RETURNED'
+);
+
+
+--
+-- Name: trains_status_enum; Type: TYPE; Schema: freight; Owner: -
+--
+
+CREATE TYPE freight.trains_status_enum AS ENUM (
+ 'AVAILABLE',
+ 'SCHEDULED',
+ 'IN_SERVICE',
+ 'UNDER_MAINTENANCE',
+ 'OUT_OF_SERVICE'
+);
+
+
+--
+-- Name: weight_limit_rules_exceeded_action_enum; Type: TYPE; Schema: freight; Owner: -
+--
+
+CREATE TYPE freight.weight_limit_rules_exceeded_action_enum AS ENUM (
+ 'WARNING_ONLY',
+ 'HARD_BLOCK'
+);
+
+
+--
+-- Name: sessions_status_enum; Type: TYPE; Schema: iam; Owner: -
+--
+
+CREATE TYPE iam.sessions_status_enum AS ENUM (
+ 'ACTIVE',
+ 'TERMINATED',
+ 'EXPIRED',
+ 'LOGGED_OUT'
+);
+
+
+--
+-- Name: bookings_payment_status_enum; Type: TYPE; Schema: public; Owner: -
+--
+
+CREATE TYPE public.bookings_payment_status_enum AS ENUM (
+ 'PENDING',
+ 'PAID',
+ 'OVERDUE',
+ 'CANCELLED',
+ 'REFUNDED'
+);
+
+
+--
+-- Name: bookings_status_enum; Type: TYPE; Schema: public; Owner: -
+--
+
+CREATE TYPE public.bookings_status_enum AS ENUM (
+ 'DRAFT',
+ 'CONFIRMED',
+ 'IN_TRANSIT',
+ 'DELIVERED',
+ 'CANCELLED'
+);
+
+
+--
+-- Name: consignments_cargo_type_enum; Type: TYPE; Schema: public; Owner: -
+--
+
+CREATE TYPE public.consignments_cargo_type_enum AS ENUM (
+ 'CONTAINER',
+ 'BULK_LIQUID',
+ 'BULK_DRY',
+ 'GENERAL',
+ 'REFRIGERATED',
+ 'HAZARDOUS'
+);
+
+
+--
+-- Name: consignments_status_enum; Type: TYPE; Schema: public; Owner: -
+--
+
+CREATE TYPE public.consignments_status_enum AS ENUM (
+ 'PENDING',
+ 'LOADED',
+ 'IN_TRANSIT',
+ 'AT_DESTINATION',
+ 'DELIVERED',
+ 'RETURNED'
+);
+
+
+--
+-- Name: invoices_status_enum; Type: TYPE; Schema: public; Owner: -
+--
+
+CREATE TYPE public.invoices_status_enum AS ENUM (
+ 'PENDING',
+ 'PAID',
+ 'OVERDUE',
+ 'CANCELLED',
+ 'REFUNDED'
+);
+
+
+--
+-- Name: tracking_events_status_enum; Type: TYPE; Schema: public; Owner: -
+--
+
+CREATE TYPE public.tracking_events_status_enum AS ENUM (
+ 'PENDING',
+ 'LOADED',
+ 'IN_TRANSIT',
+ 'AT_DESTINATION',
+ 'DELIVERED',
+ 'RETURNED'
+);
+
+
+--
+-- Name: trains_status_enum; Type: TYPE; Schema: public; Owner: -
+--
+
+CREATE TYPE public.trains_status_enum AS ENUM (
+ 'AVAILABLE',
+ 'SCHEDULED',
+ 'IN_SERVICE',
+ 'UNDER_MAINTENANCE',
+ 'OUT_OF_SERVICE'
+);
+
+
+SET default_tablespace = '';
+
+SET default_table_access_method = heap;
+
+--
+-- Name: audit_log_commands; Type: TABLE; Schema: audit; Owner: -
+--
+
+CREATE TABLE audit.audit_log_commands (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ entity jsonb NOT NULL,
+ entity_id text NOT NULL,
+ entity_name character varying NOT NULL,
+ payload jsonb,
+ changes jsonb,
+ query_method character varying NOT NULL,
+ query character varying,
+ parameters character varying[],
+ status character varying DEFAULT 'Draft'::character varying NOT NULL,
+ parent_id uuid,
+ audit_log_id uuid
+);
+
+
+--
+-- Name: audit_logs; Type: TABLE; Schema: audit; Owner: -
+--
+
+CREATE TABLE audit.audit_logs (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ request_method character varying NOT NULL,
+ application character varying NOT NULL,
+ module character varying NOT NULL,
+ request_body jsonb,
+ request_header jsonb,
+ status_code integer NOT NULL,
+ ip_address character varying NOT NULL,
+ execution_time integer NOT NULL,
+ status character varying DEFAULT 'Draft'::character varying NOT NULL,
+ "user" jsonb
+);
+
+
+--
+-- Name: approval_rules; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.approval_rules (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ requires_director_approval boolean NOT NULL,
+ step_order smallint NOT NULL,
+ required_role character varying(30) NOT NULL,
+ action_label character varying(50) NOT NULL,
+ blocks_role character varying(30),
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: booking_approval_step; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.booking_approval_step (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ booking_id uuid NOT NULL,
+ approval_rule_id uuid NOT NULL,
+ step_order smallint NOT NULL,
+ required_role character varying(30) NOT NULL,
+ status character varying(20) DEFAULT 'PENDING'::character varying NOT NULL,
+ actioned_by_staff_id uuid,
+ actioned_at timestamp with time zone,
+ remarks text,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ blocks_role character varying(30)
+);
+
+
+--
+-- Name: booking_cargo_modifier; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.booking_cargo_modifier (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ booking_id uuid NOT NULL,
+ surcharge_type_id uuid NOT NULL,
+ trigger_value numeric(14,4),
+ calculated_amount numeric(14,2) NOT NULL,
+ rate_snapshot_id uuid NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: booking_container; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.booking_container (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ booking_id uuid NOT NULL,
+ container_type_id uuid,
+ quantity smallint NOT NULL,
+ vgm_per_unit_tons numeric(10,3) NOT NULL,
+ total_vgm_tons numeric(12,3) NOT NULL,
+ wagons_required numeric(6,2) NOT NULL,
+ weight_limit_rule_id uuid,
+ is_overweight boolean DEFAULT false NOT NULL,
+ overweight_excess_tons numeric(10,3),
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ container_number character varying(64)
+);
+
+
+--
+-- Name: booking_contract_signatures; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.booking_contract_signatures (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ booking_id uuid NOT NULL,
+ signer_role character varying(20) NOT NULL,
+ signer_user_id uuid,
+ signer_display_name character varying(200) NOT NULL,
+ signed_at timestamp with time zone NOT NULL,
+ signature_file_id uuid,
+ consent_text text,
+ ip_address character varying(64),
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: booking_rate_snapshot; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.booking_rate_snapshot (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ booking_id uuid NOT NULL,
+ rate_id uuid NOT NULL,
+ rate_type character varying(50) NOT NULL,
+ rate_value numeric(14,4) NOT NULL,
+ rate_unit character varying(30) NOT NULL,
+ currency character varying(5) NOT NULL,
+ snapshotted_at timestamp with time zone NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: booking_review_note; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.booking_review_note (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ booking_id uuid NOT NULL,
+ author_id uuid,
+ note text NOT NULL,
+ type character varying(30) NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: bookings; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.bookings (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ reference character varying(64) NOT NULL,
+ train_id uuid,
+ status character varying(40) DEFAULT 'DRAFT'::character varying NOT NULL,
+ scheduled_date timestamp with time zone NOT NULL,
+ total_amount numeric(14,2) DEFAULT 0 NOT NULL,
+ payment_status character varying(20) DEFAULT 'PENDING'::character varying NOT NULL,
+ contract_type character varying(20) NOT NULL,
+ previous_contract_id uuid,
+ trade_direction character varying(10) NOT NULL,
+ equipment_return character varying(20) NOT NULL,
+ first_mile_pickup_address text,
+ last_mile_delivery_address text,
+ cargo_total_weight_vgm numeric(12,3) NOT NULL,
+ is_hazardous boolean DEFAULT false NOT NULL,
+ payment_currency character varying(5) NOT NULL,
+ start_date date,
+ end_date date,
+ financial_terms text,
+ version_number integer DEFAULT 1 NOT NULL,
+ approved_by_staff_id uuid,
+ approved_by_staff_at timestamp with time zone,
+ signed_by_director_id uuid,
+ signed_by_director_at timestamp with time zone,
+ signed_by_ceo_id uuid,
+ signed_by_ceo_at timestamp with time zone,
+ priority_score integer DEFAULT 0 NOT NULL,
+ allow_consolidation boolean DEFAULT false NOT NULL,
+ consolidation_partner_id uuid,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ origin_yard_id uuid NOT NULL,
+ destination_yard_id uuid NOT NULL,
+ service_type_id uuid NOT NULL,
+ cargo_type_id uuid,
+ cargo_free_text character varying(200),
+ shipping_line_id uuid,
+ pnr_code character varying(50),
+ customer_signed_at timestamp with time zone,
+ fully_executed_at timestamp with time zone,
+ marketing_approved_by_id uuid,
+ marketing_approved_at timestamp with time zone,
+ contract_summary text,
+ locked_at timestamp with time zone,
+ freight_type character varying(20) NOT NULL,
+ contract_template_key character varying(80),
+ contract_generated_at timestamp with time zone,
+ pricing_breakdown jsonb,
+ company_id uuid,
+ wagons_required numeric(6,2),
+ scheduling_status character varying(30) DEFAULT 'NOT_SCHEDULED'::character varying NOT NULL,
+ hold_started_at timestamp with time zone,
+ hold_expires_at timestamp with time zone,
+ scheduled_at timestamp with time zone,
+ is_government boolean DEFAULT false NOT NULL,
+ government_institution character varying(255),
+ train_schedule_id uuid,
+ payment_deadline timestamp with time zone,
+ selected_for_batch_at timestamp with time zone
+);
+
+
+--
+-- Name: cargo_types; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.cargo_types (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ cargo_type_name character varying(255) NOT NULL,
+ parent_group_id uuid,
+ show_free_text_box boolean DEFAULT false NOT NULL,
+ requires_director_approval boolean DEFAULT false NOT NULL,
+ is_active boolean DEFAULT true NOT NULL,
+ display_order integer DEFAULT 1 NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ code character varying(50) DEFAULT ''::character varying NOT NULL
+);
+
+
+--
+-- Name: cargoes; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.cargoes (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ cargo_reference character varying NOT NULL,
+ shipment_id uuid NOT NULL,
+ container_id uuid,
+ cargo_type_id uuid,
+ description text,
+ quantity numeric(12,3) NOT NULL,
+ weight numeric(10,2) NOT NULL,
+ volume numeric(10,2),
+ status character varying DEFAULT 'PENDING'::character varying NOT NULL,
+ loaded_at timestamp without time zone,
+ unloaded_at timestamp without time zone,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ wagon_booking_allocation_id uuid,
+ booking_id uuid,
+ load_type character varying(20),
+ receiver_name character varying,
+ delivered_at timestamp without time zone,
+ delivery_remarks text
+);
+
+
+--
+-- Name: companies; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.companies (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ name character varying(200) NOT NULL,
+ type character varying(32) NOT NULL,
+ status character varying(32) DEFAULT 'pending'::character varying NOT NULL,
+ tin character varying(10) NOT NULL,
+ vat_number character varying(50),
+ fan_number character varying(16),
+ country character varying(32) DEFAULT 'Ethiopia'::character varying NOT NULL,
+ address text,
+ phone character varying(20),
+ email character varying(150),
+ website character varying(200),
+ attributes jsonb,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ contact_person_name character varying(100),
+ contact_person_phone character varying(20),
+ general_manager_name character varying(100),
+ general_manager_email character varying(150),
+ general_manager_phone character varying(20)
+);
+
+
+--
+-- Name: company_profiles; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.company_profiles (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ company_id uuid NOT NULL,
+ type character varying(32) NOT NULL,
+ reference character varying(20) NOT NULL,
+ status character varying(32) DEFAULT 'active'::character varying NOT NULL,
+ business_license character varying(100),
+ attributes jsonb,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: consignments; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.consignments (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ booking_id uuid NOT NULL,
+ tracking_number character varying(64) NOT NULL,
+ cargo_type freight.consignments_cargo_type_enum NOT NULL,
+ weight_kg numeric(12,2) NOT NULL,
+ status freight.consignments_status_enum DEFAULT 'PENDING'::freight.consignments_status_enum NOT NULL,
+ origin_station character varying(128) NOT NULL,
+ destination_station character varying(128) NOT NULL
+);
+
+
+--
+-- Name: container_types; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.container_types (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ code character varying(20) NOT NULL,
+ label character varying(100),
+ is_active boolean DEFAULT true NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ size_ft smallint,
+ is_reefer boolean DEFAULT false,
+ is_open_top boolean DEFAULT false,
+ display_order integer DEFAULT 1,
+ wagons_per_unit numeric(4,2)
+);
+
+
+--
+-- Name: containers; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.containers (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ container_number character varying NOT NULL,
+ container_type_id uuid NOT NULL,
+ wagon_id uuid,
+ "position" integer,
+ tare_weight numeric(10,2) NOT NULL,
+ max_gross_weight numeric(10,2) NOT NULL,
+ seal_number character varying,
+ status character varying DEFAULT 'AVAILABLE'::character varying NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ booking_id uuid,
+ wagon_booking_allocation_id uuid,
+ booking_container_id uuid
+);
+
+
+--
+-- Name: customers; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.customers (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ first_name character varying(100) NOT NULL,
+ last_name character varying(100) NOT NULL,
+ email character varying(150) NOT NULL,
+ phone character varying(20) NOT NULL,
+ company_name character varying(200) NOT NULL,
+ company_email character varying(150) NOT NULL,
+ company_phone character varying(20) NOT NULL,
+ company_location character varying(100) NOT NULL,
+ company_address text NOT NULL,
+ customer_type character varying(32),
+ status character varying(32),
+ contact_person_name character varying(100) NOT NULL,
+ contact_person_phone character varying(20) NOT NULL,
+ tin_number character varying(10) NOT NULL,
+ vat_number character varying(50),
+ fan_number character varying(16) NOT NULL,
+ general_manager_name character varying(100) NOT NULL,
+ general_manager_email character varying(150) NOT NULL,
+ general_manager_phone character varying(20) NOT NULL,
+ poa_name character varying(100),
+ poa_phone character varying(20),
+ poa_address text,
+ poa_email character varying(150),
+ poa_location character varying(100),
+ notes text,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: dropdown_options; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.dropdown_options (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ setting_id uuid NOT NULL,
+ value character varying(256) NOT NULL,
+ label character varying(256) NOT NULL,
+ note text,
+ is_disabled boolean DEFAULT false NOT NULL,
+ display_order integer DEFAULT 0 NOT NULL,
+ meta jsonb
+);
+
+
+--
+-- Name: dropdown_settings; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.dropdown_settings (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ code character varying(128) NOT NULL,
+ label character varying(256) NOT NULL,
+ description text,
+ multiple boolean DEFAULT false NOT NULL,
+ meta jsonb
+);
+
+
+--
+-- Name: external_profiles; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.external_profiles (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ user_id uuid NOT NULL,
+ company_id uuid NOT NULL,
+ first_name character varying(100) NOT NULL,
+ last_name character varying(100) NOT NULL,
+ email character varying(150) NOT NULL,
+ phone character varying(20),
+ national_id character varying(50),
+ job_title character varying(100),
+ is_primary_contact boolean DEFAULT false NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: facilities; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.facilities (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ code character varying(40) NOT NULL,
+ name character varying(160) NOT NULL,
+ description text,
+ facility_type character varying(32) NOT NULL,
+ facility_status character varying(32) DEFAULT 'ACTIVE'::character varying NOT NULL,
+ location_name character varying(200),
+ country character varying(100),
+ city character varying(100),
+ address text,
+ latitude numeric(10,8),
+ longitude numeric(11,8),
+ capacity numeric(14,3),
+ is_active boolean DEFAULT true NOT NULL,
+ notes text,
+ created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
+ updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
+ deleted_at timestamp without time zone
+);
+
+
+--
+-- Name: ff_clients; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.ff_clients (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ forwarder_company_id uuid NOT NULL,
+ client_company_id uuid NOT NULL,
+ relationship_type character varying(32) DEFAULT 'managed_account'::character varying NOT NULL,
+ can_book_on_behalf boolean DEFAULT true NOT NULL,
+ can_view_documents boolean DEFAULT true NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: file_upload_fields; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.file_upload_fields (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ setting_id uuid NOT NULL,
+ file_key character varying(128) NOT NULL,
+ file_label character varying(256) NOT NULL,
+ help_text text,
+ is_required boolean DEFAULT false NOT NULL,
+ is_multiple boolean DEFAULT false NOT NULL,
+ max_files integer DEFAULT 1 NOT NULL,
+ allowed_extensions text[] DEFAULT '{}'::text[] NOT NULL,
+ max_size_mb integer DEFAULT 10 NOT NULL,
+ display_order integer DEFAULT 0 NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ CONSTRAINT "CHK_1dd0bea92d3c95a572e473157a" CHECK ((max_size_mb > 0)),
+ CONSTRAINT "CHK_9475b25721b1faefffbf075c98" CHECK ((max_files > 0))
+);
+
+
+--
+-- Name: file_upload_settings; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.file_upload_settings (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ code character varying(128) NOT NULL,
+ label character varying(256) NOT NULL,
+ description text,
+ entity character varying(32) DEFAULT 'other'::character varying NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: files; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.files (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ resource_id uuid NOT NULL,
+ resource character varying(100) NOT NULL,
+ code character varying(100) NOT NULL,
+ name character varying(500) NOT NULL,
+ url text NOT NULL,
+ size integer NOT NULL,
+ mime_type character varying(255) NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: invoices; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.invoices (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ booking_id uuid NOT NULL,
+ invoice_number character varying(64) NOT NULL,
+ amount numeric(14,2) NOT NULL,
+ currency character varying(8) DEFAULT 'ETB'::character varying NOT NULL,
+ status freight.invoices_status_enum DEFAULT 'PENDING'::freight.invoices_status_enum NOT NULL,
+ issued_at timestamp with time zone NOT NULL,
+ due_at timestamp with time zone NOT NULL
+);
+
+
+--
+-- Name: locomotives; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.locomotives (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ code character varying(32) NOT NULL,
+ name character varying(100),
+ max_pull_weight_tons numeric(10,3) NOT NULL,
+ status character varying(20) DEFAULT 'AVAILABLE'::character varying NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ locomotive_type character varying(20) DEFAULT 'DIESEL'::character varying NOT NULL,
+ max_train_length_meters numeric(10,3) DEFAULT 760 NOT NULL,
+ power_kw numeric(10,3),
+ traction_force_kn numeric(10,3),
+ max_speed_kmh numeric(10,3),
+ current_yard_id uuid
+);
+
+
+--
+-- Name: payment_refunds; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.payment_refunds (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ payment_id uuid NOT NULL,
+ amount_minor integer NOT NULL,
+ reason character varying(255),
+ provider_refund_id character varying(255),
+ status character varying(50) NOT NULL,
+ created_at timestamp without time zone DEFAULT now() NOT NULL
+);
+
+
+--
+-- Name: payment_webhook_events; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.payment_webhook_events (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ provider freight.payment_webhook_events_provider_enum NOT NULL,
+ external_event_id character varying(255) NOT NULL,
+ merchant_order_id character varying(255),
+ provider_txn_id character varying(255),
+ signature_valid boolean NOT NULL,
+ status character varying(100) NOT NULL,
+ payload jsonb NOT NULL,
+ received_at timestamp without time zone DEFAULT now() NOT NULL,
+ processed_at timestamp without time zone,
+ processing_error text
+);
+
+
+--
+-- Name: payments; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.payments (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ ref_id character varying(255) NOT NULL,
+ type freight.payments_type_enum NOT NULL,
+ method freight.payments_method_enum NOT NULL,
+ currency freight.payments_currency_enum NOT NULL,
+ amount numeric NOT NULL,
+ raw_initiation jsonb DEFAULT '{}'::jsonb NOT NULL,
+ client_action jsonb,
+ merchant_order_id character varying(255) NOT NULL,
+ transaction_id character varying(255),
+ status freight.payments_status_enum DEFAULT 'action-required'::freight.payments_status_enum NOT NULL,
+ paid_at date,
+ refunded_at timestamp without time zone,
+ expires_at timestamp without time zone,
+ failer_code character varying(30),
+ failer_message character varying(255),
+ reason character varying(255) NOT NULL,
+ created_at timestamp without time zone DEFAULT now() NOT NULL
+);
+
+
+--
+-- Name: priority_configs; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.priority_configs (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ type character varying(20) NOT NULL,
+ label character varying(100) NOT NULL,
+ currency character varying(5),
+ min_wagon_count integer NOT NULL,
+ max_wagon_count integer NOT NULL,
+ score_points integer DEFAULT 0 NOT NULL,
+ is_active boolean DEFAULT false NOT NULL,
+ display_order integer DEFAULT 1 NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: priority_rules; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.priority_rules (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ is_active boolean DEFAULT false NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ code character varying(40) NOT NULL,
+ label character varying(100) NOT NULL,
+ score integer DEFAULT 0 NOT NULL,
+ condition_currency character varying(5)
+);
+
+
+--
+-- Name: rates; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.rates (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ rate_type character varying(50) NOT NULL,
+ container_type_id uuid,
+ trade_direction character varying(10),
+ currency character varying(5) NOT NULL,
+ rate_value numeric(14,4) NOT NULL,
+ rate_unit character varying(30) NOT NULL,
+ status character varying(20) DEFAULT 'DRAFT'::character varying NOT NULL,
+ proposed_by_staff_id uuid NOT NULL,
+ approved_by_ceo_id uuid,
+ approved_at timestamp with time zone,
+ effective_from date NOT NULL,
+ effective_to date,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: route_milestones; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.route_milestones (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ route_id uuid NOT NULL,
+ yard_id uuid NOT NULL,
+ sequence_no integer NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: routes; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.routes (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ name character varying(120) NOT NULL,
+ origin_yard_id uuid NOT NULL,
+ destination_yard_id uuid NOT NULL,
+ is_active boolean DEFAULT true NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: saved_signatures; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.saved_signatures (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ user_id uuid NOT NULL,
+ signer_display_name character varying(200) NOT NULL,
+ signature_file_id uuid,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: scheduling_events; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.scheduling_events (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ train_schedule_id uuid NOT NULL,
+ trigger character varying(40) NOT NULL,
+ actor_user_id uuid,
+ reason text,
+ plan_snapshot jsonb NOT NULL,
+ displaced_booking_ids jsonb DEFAULT '[]'::jsonb NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: seq_company_profile_ex; Type: SEQUENCE; Schema: freight; Owner: -
+--
+
+CREATE SEQUENCE freight.seq_company_profile_ex
+ START WITH 1
+ INCREMENT BY 1
+ NO MINVALUE
+ NO MAXVALUE
+ CACHE 1;
+
+
+--
+-- Name: seq_company_profile_ffe; Type: SEQUENCE; Schema: freight; Owner: -
+--
+
+CREATE SEQUENCE freight.seq_company_profile_ffe
+ START WITH 1
+ INCREMENT BY 1
+ NO MINVALUE
+ NO MAXVALUE
+ CACHE 1;
+
+
+--
+-- Name: seq_company_profile_fwj; Type: SEQUENCE; Schema: freight; Owner: -
+--
+
+CREATE SEQUENCE freight.seq_company_profile_fwj
+ START WITH 1
+ INCREMENT BY 1
+ NO MINVALUE
+ NO MAXVALUE
+ CACHE 1;
+
+
+--
+-- Name: seq_company_profile_im; Type: SEQUENCE; Schema: freight; Owner: -
+--
+
+CREATE SEQUENCE freight.seq_company_profile_im
+ START WITH 1
+ INCREMENT BY 1
+ NO MINVALUE
+ NO MAXVALUE
+ CACHE 1;
+
+
+--
+-- Name: seq_company_profile_tr; Type: SEQUENCE; Schema: freight; Owner: -
+--
+
+CREATE SEQUENCE freight.seq_company_profile_tr
+ START WITH 1
+ INCREMENT BY 1
+ NO MINVALUE
+ NO MAXVALUE
+ CACHE 1;
+
+
+--
+-- Name: service_types; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.service_types (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ service_name character varying(255) NOT NULL,
+ description text,
+ can_be_booked_alone boolean DEFAULT true NOT NULL,
+ includes_first_mile boolean DEFAULT false NOT NULL,
+ includes_last_mile boolean DEFAULT false NOT NULL,
+ includes_customs boolean DEFAULT false NOT NULL,
+ priority_bonus_points integer DEFAULT 0 NOT NULL,
+ is_active boolean DEFAULT true NOT NULL,
+ display_order integer DEFAULT 1 NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ code character varying(50) DEFAULT ''::character varying NOT NULL
+);
+
+
+--
+-- Name: shipping_lines; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.shipping_lines (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ code character varying(20) NOT NULL,
+ label character varying(100) NOT NULL,
+ mapped_to_code character varying(20),
+ show_extra_fee_notice boolean DEFAULT false NOT NULL,
+ is_active boolean DEFAULT true NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: surcharge_types; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.surcharge_types (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ label character varying(100),
+ is_active boolean DEFAULT true NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ trigger_condition character varying(50),
+ rate_id uuid,
+ code character varying(40) NOT NULL
+);
+
+
+--
+-- Name: tracking_events; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.tracking_events (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ consignment_id uuid NOT NULL,
+ location character varying(256) NOT NULL,
+ status freight.tracking_events_status_enum NOT NULL,
+ occurred_at timestamp with time zone NOT NULL,
+ description text
+);
+
+
+--
+-- Name: train_checkpoint_events; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.train_checkpoint_events (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ train_schedule_id uuid NOT NULL,
+ yard_id uuid NOT NULL,
+ sequence_no integer NOT NULL,
+ kind character varying(20) NOT NULL,
+ occurred_at timestamp with time zone NOT NULL,
+ note text,
+ recorded_by_user_id uuid,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: train_composition_removal_logs; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.train_composition_removal_logs (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ schedule_id uuid NOT NULL,
+ booking_id uuid NOT NULL,
+ booking_reference character varying(64),
+ removed_by_user_id uuid,
+ removed_at timestamp with time zone DEFAULT now() NOT NULL,
+ notes text,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: train_schedule_bookings; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.train_schedule_bookings (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ train_schedule_id uuid NOT NULL,
+ booking_id uuid NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: train_schedules; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.train_schedules (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ train_set_id uuid NOT NULL,
+ origin_station_id uuid NOT NULL,
+ destination_station_id uuid NOT NULL,
+ scheduled_departure_date timestamp with time zone NOT NULL,
+ scheduled_arrival_date timestamp with time zone,
+ status character varying(20) DEFAULT 'DRAFT'::character varying NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ route_id uuid,
+ train_number character varying(20),
+ direction character varying(10),
+ actual_departure_at timestamp with time zone,
+ actual_arrival_at timestamp with time zone,
+ prepared_by_user_id uuid,
+ checked_by_user_id uuid,
+ max_wagons integer DEFAULT 53 NOT NULL,
+ booking_window_status character varying(10) DEFAULT 'OPEN'::character varying NOT NULL
+);
+
+
+--
+-- Name: train_scheduling_global_rules; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.train_scheduling_global_rules (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ max_train_length_meters numeric(10,2) DEFAULT 760 NOT NULL,
+ max_train_weight_tons numeric(10,3) DEFAULT 3500 NOT NULL,
+ max_wagons_per_train integer DEFAULT 53 NOT NULL,
+ max_20ft_container_weight_tons numeric(8,3) DEFAULT 30 NOT NULL,
+ max_20ft_pair_weight_diff_tons numeric(8,3) DEFAULT 10 NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: train_set_wagons; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.train_set_wagons (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ train_set_id uuid NOT NULL,
+ wagon_type_id uuid NOT NULL,
+ sequence_no integer NOT NULL,
+ capacity_tons numeric(10,3) NOT NULL,
+ length_meters numeric(10,3) NOT NULL,
+ assigned_weight_tons numeric(10,3) DEFAULT 0 NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ physical_wagon_id uuid,
+ status character varying(20) DEFAULT 'PLANNED'::character varying NOT NULL
+);
+
+
+--
+-- Name: train_sets; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.train_sets (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ locomotive_id uuid NOT NULL,
+ total_weight_tons numeric(10,3) NOT NULL,
+ total_length_meters numeric(10,3) NOT NULL,
+ wagon_count integer NOT NULL,
+ status character varying(20) DEFAULT 'DRAFT'::character varying NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: trains; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.trains (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ code character varying(32) NOT NULL,
+ capacity_tons numeric(10,2) NOT NULL,
+ status freight.trains_status_enum DEFAULT 'AVAILABLE'::freight.trains_status_enum NOT NULL,
+ notes text,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ train_number character varying(20),
+ train_name character varying(100),
+ route_id uuid,
+ origin_station_id uuid,
+ destination_station_id uuid,
+ locomotive_number character varying(50),
+ remarks text,
+ departure_time timestamp without time zone,
+ arrival_time timestamp without time zone
+);
+
+
+--
+-- Name: vehicles; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.vehicles (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ plate_number character varying NOT NULL,
+ registration_number character varying NOT NULL,
+ vehicle_type character varying NOT NULL,
+ manufacturer character varying NOT NULL,
+ model character varying NOT NULL,
+ year integer NOT NULL,
+ fuel_type character varying NOT NULL,
+ status character varying DEFAULT 'ACTIVE'::character varying NOT NULL,
+ description text,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ capacity integer NOT NULL
+);
+
+
+--
+-- Name: wagon_allocation_bulk_loads; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.wagon_allocation_bulk_loads (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ wagon_booking_allocation_id uuid NOT NULL,
+ booking_id uuid NOT NULL,
+ cargo_type_id uuid,
+ cargo_description text,
+ pricing_unit character varying(20) DEFAULT 'PER_TON'::character varying NOT NULL,
+ quantity numeric(12,3) DEFAULT 0 NOT NULL,
+ weight_tons numeric(10,3) DEFAULT 0 NOT NULL,
+ truck_plate_number character varying(32),
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: wagon_allocation_container_items; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.wagon_allocation_container_items (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ wagon_booking_allocation_id uuid NOT NULL,
+ booking_container_id uuid,
+ container_id uuid,
+ container_number character varying(64),
+ container_type_id uuid,
+ position_on_wagon smallint,
+ seal_number character varying(64),
+ chassis_number character varying(64),
+ gross_weight_tons numeric(10,3),
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: wagon_booking_allocations; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.wagon_booking_allocations (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ train_set_wagon_id uuid NOT NULL,
+ booking_id uuid NOT NULL,
+ allocated_weight_tons numeric(10,3) NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ load_type character varying(20),
+ status character varying(20) DEFAULT 'PLANNED'::character varying NOT NULL,
+ confirmed_at timestamp with time zone,
+ confirmed_by_user_id uuid
+);
+
+
+--
+-- Name: wagon_types; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.wagon_types (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ code character varying(32) NOT NULL,
+ name character varying(100) NOT NULL,
+ capacity_tons numeric(10,3) NOT NULL,
+ length_meters numeric(10,3) NOT NULL,
+ max_wagons_per_train integer,
+ supported_load_types text[] DEFAULT '{}'::text[] NOT NULL,
+ is_active boolean DEFAULT true NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ equated_length_m numeric(10,3),
+ tare_weight_tons numeric(10,3),
+ supports_container boolean DEFAULT false NOT NULL,
+ max_container_gross_t numeric(10,3)
+);
+
+
+--
+-- Name: wagons; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.wagons (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ wagon_number character varying NOT NULL,
+ wagon_type_id uuid NOT NULL,
+ train_id uuid,
+ sequence_number integer,
+ tare_weight numeric(10,2) NOT NULL,
+ max_payload_weight numeric(10,2) NOT NULL,
+ notes text,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ train_set_wagon_id uuid,
+ current_train_schedule_id uuid,
+ current_yard_id uuid,
+ status character varying(20) DEFAULT 'AVAILABLE'::character varying NOT NULL,
+ current_location_yard_id uuid
+);
+
+
+--
+-- Name: warehouse_activity_log; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.warehouse_activity_log (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ inventory_id uuid,
+ warehouse_id uuid,
+ activity_type character varying(40) NOT NULL,
+ description text,
+ performed_by character varying(120),
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: warehouse_allocation_rules; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.warehouse_allocation_rules (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ name character varying(160) NOT NULL,
+ priority integer DEFAULT 100 NOT NULL,
+ freight_type character varying(16),
+ trade_direction character varying(16),
+ cargo_type_code character varying(50),
+ container_status character varying(24),
+ requires_inspection boolean,
+ target_facility_code character varying(40),
+ target_yard_code character varying(40) NOT NULL,
+ target_warehouse_code character varying(40),
+ target_zone_code character varying(40),
+ storage_type character varying(80),
+ is_active boolean DEFAULT true NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: warehouse_fee_invoice_items; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.warehouse_fee_invoice_items (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ invoice_id uuid NOT NULL,
+ fee_rule_id uuid,
+ fee_type character varying(32) NOT NULL,
+ description character varying(255) NOT NULL,
+ quantity numeric(12,2) DEFAULT 1 NOT NULL,
+ unit_rate numeric(14,2) DEFAULT 0 NOT NULL,
+ amount numeric(14,2) DEFAULT 0 NOT NULL,
+ currency character varying(8) DEFAULT 'USD'::character varying NOT NULL,
+ chargeable_days integer,
+ free_days integer,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: warehouse_fee_invoices; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.warehouse_fee_invoices (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ invoice_number character varying(40) NOT NULL,
+ booking_id uuid,
+ customer_id uuid,
+ inventory_id uuid NOT NULL,
+ facility_id uuid,
+ warehouse_id uuid,
+ yard_id uuid,
+ zone_id uuid,
+ invoice_type character varying(32) DEFAULT 'MIXED_WAREHOUSE_FEES'::character varying NOT NULL,
+ status character varying(20) DEFAULT 'DRAFT'::character varying NOT NULL,
+ subtotal_amount numeric(14,2) DEFAULT 0 NOT NULL,
+ tax_amount numeric(14,2) DEFAULT 0 NOT NULL,
+ total_amount numeric(14,2) DEFAULT 0 NOT NULL,
+ paid_amount numeric(14,2) DEFAULT 0 NOT NULL,
+ balance_amount numeric(14,2) DEFAULT 0 NOT NULL,
+ currency character varying(8) DEFAULT 'USD'::character varying NOT NULL,
+ period_start timestamp with time zone,
+ period_end timestamp with time zone,
+ issued_at timestamp with time zone,
+ due_date timestamp with time zone,
+ paid_at timestamp with time zone,
+ cancelled_at timestamp with time zone,
+ payments jsonb DEFAULT '[]'::jsonb NOT NULL,
+ notes text,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: warehouse_fee_rules; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.warehouse_fee_rules (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ name character varying(160) NOT NULL,
+ rule_type character varying(20) NOT NULL,
+ priority integer DEFAULT 100 NOT NULL,
+ freight_type character varying(16),
+ trade_direction character varying(16),
+ cargo_type_code character varying(50),
+ container_type character varying(40),
+ facility_id uuid,
+ warehouse_id uuid,
+ yard_id uuid,
+ zone_id uuid,
+ free_days integer DEFAULT 0 NOT NULL,
+ rate_per_day numeric(14,2) DEFAULT 0 NOT NULL,
+ currency character varying(8) DEFAULT 'USD'::character varying NOT NULL,
+ is_active boolean DEFAULT true NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: warehouse_inspection_reports; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.warehouse_inspection_reports (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ inventory_id uuid NOT NULL,
+ booking_id uuid,
+ customer_id uuid,
+ report_type character varying(32) DEFAULT 'INSPECTION'::character varying NOT NULL,
+ inspection_status character varying(20) DEFAULT 'NEEDS_REVIEW'::character varying NOT NULL,
+ has_damage boolean DEFAULT false NOT NULL,
+ damage_description text,
+ has_weight_loss boolean DEFAULT false NOT NULL,
+ expected_weight numeric(14,3),
+ actual_weight numeric(14,3),
+ weight_loss numeric(14,3),
+ weight_loss_unit character varying(12),
+ has_missing_items boolean DEFAULT false NOT NULL,
+ missing_items_description text,
+ remarks text,
+ inspected_by_id uuid,
+ inspected_at timestamp with time zone,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: warehouse_inventory; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.warehouse_inventory (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ warehouse_id uuid NOT NULL,
+ yard_id uuid NOT NULL,
+ zone_id uuid NOT NULL,
+ booking_id uuid,
+ cargo_id uuid,
+ container_id uuid,
+ goods_id uuid,
+ quantity numeric(12,3) DEFAULT 0 NOT NULL,
+ weight numeric(14,3) DEFAULT 0 NOT NULL,
+ volume numeric(12,3),
+ status character varying(32) DEFAULT 'RECEIVED'::character varying NOT NULL,
+ arrived_at timestamp with time zone,
+ inspected_at timestamp with time zone,
+ ready_for_loading_at timestamp with time zone,
+ notes text,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ inspection_started_at timestamp with time zone,
+ inspection_completed_at timestamp with time zone,
+ ready_for_pickup_at timestamp with time zone,
+ release_date timestamp with time zone,
+ gate_cleared_at timestamp with time zone,
+ stored_at timestamp with time zone,
+ reserved_at timestamp with time zone,
+ loaded_at timestamp with time zone,
+ dispatched_at timestamp with time zone
+);
+
+
+--
+-- Name: warehouse_inventory_movement; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.warehouse_inventory_movement (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ inventory_id uuid NOT NULL,
+ from_warehouse_id uuid NOT NULL,
+ from_yard_id uuid NOT NULL,
+ from_zone_id uuid NOT NULL,
+ to_warehouse_id uuid NOT NULL,
+ to_yard_id uuid NOT NULL,
+ to_zone_id uuid NOT NULL,
+ remarks text,
+ moved_by character varying(120),
+ moved_at timestamp with time zone DEFAULT now() NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: warehouse_loadings; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.warehouse_loadings (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ warehouse_inventory_id uuid NOT NULL,
+ booking_id uuid,
+ wagon_id uuid NOT NULL,
+ loaded_at timestamp with time zone DEFAULT now() NOT NULL,
+ loaded_by character varying(120),
+ loaded_weight numeric(14,3),
+ notes text,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: warehouse_yards; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.warehouse_yards (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ warehouse_id uuid NOT NULL,
+ name character varying(160) NOT NULL,
+ code character varying(40) NOT NULL,
+ type character varying(32) NOT NULL,
+ capacity_weight numeric(14,3),
+ capacity_containers integer,
+ current_weight numeric(14,3) DEFAULT 0 NOT NULL,
+ current_containers integer DEFAULT 0 NOT NULL,
+ status character varying(16) DEFAULT 'ACTIVE'::character varying NOT NULL,
+ is_active boolean DEFAULT true NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ max_weight numeric(14,3),
+ max_volume numeric(14,3),
+ current_volume numeric(14,3) DEFAULT 0 NOT NULL
+);
+
+
+--
+-- Name: warehouse_zones; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.warehouse_zones (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ yard_id uuid NOT NULL,
+ name character varying(160) NOT NULL,
+ code character varying(40) NOT NULL,
+ type character varying(32) NOT NULL,
+ capacity_weight numeric(14,3),
+ capacity_containers integer,
+ current_weight numeric(14,3) DEFAULT 0 NOT NULL,
+ current_containers integer DEFAULT 0 NOT NULL,
+ status character varying(16) DEFAULT 'ACTIVE'::character varying NOT NULL,
+ is_active boolean DEFAULT true NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ max_weight numeric(14,3),
+ max_volume numeric(14,3),
+ current_volume numeric(14,3) DEFAULT 0 NOT NULL
+);
+
+
+--
+-- Name: warehouses; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.warehouses (
+ id uuid DEFAULT gen_random_uuid() NOT NULL,
+ name character varying(160) NOT NULL,
+ code character varying(40) NOT NULL,
+ type character varying(32) NOT NULL,
+ station_id uuid,
+ location_name character varying(200),
+ capacity_weight numeric(14,3),
+ capacity_containers integer,
+ current_weight numeric(14,3) DEFAULT 0 NOT NULL,
+ current_containers integer DEFAULT 0 NOT NULL,
+ status character varying(16) DEFAULT 'ACTIVE'::character varying NOT NULL,
+ is_active boolean DEFAULT true NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ max_weight numeric(14,3),
+ max_volume numeric(14,3),
+ current_volume numeric(14,3) DEFAULT 0 NOT NULL
+);
+
+
+--
+-- Name: weight_limit_rules; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.weight_limit_rules (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ container_type_id uuid NOT NULL,
+ max_vgm_tons numeric(8,3),
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ effective_from date,
+ effective_to date,
+ trade_direction character varying(10) NOT NULL
+);
+
+
+--
+-- Name: yards; Type: TABLE; Schema: freight; Owner: -
+--
+
+CREATE TABLE freight.yards (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ code character varying(20) NOT NULL,
+ label character varying(100) NOT NULL,
+ country character varying(50) NOT NULL,
+ is_active boolean DEFAULT true NOT NULL,
+ display_order integer DEFAULT 1 NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone
+);
+
+
+--
+-- Name: account_configurations; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.account_configurations (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ is_mfa_required boolean DEFAULT false NOT NULL,
+ user_id uuid NOT NULL
+);
+
+
+--
+-- Name: application; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.application (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ name jsonb NOT NULL,
+ key character varying NOT NULL
+);
+
+
+--
+-- Name: default_positions; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.default_positions (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ name jsonb NOT NULL,
+ key text NOT NULL,
+ description text NOT NULL,
+ rank integer DEFAULT 0 NOT NULL,
+ parent_id uuid,
+ default_unit_id uuid NOT NULL
+);
+
+
+--
+-- Name: default_units; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.default_units (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ key text NOT NULL,
+ name jsonb NOT NULL,
+ description text NOT NULL,
+ organization_type_id uuid
+);
+
+
+--
+-- Name: documentary_requirements; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.documentary_requirements (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ title jsonb NOT NULL,
+ description jsonb,
+ is_active boolean DEFAULT true NOT NULL,
+ is_optional boolean DEFAULT false NOT NULL,
+ key character varying NOT NULL,
+ "order" integer NOT NULL,
+ type character varying NOT NULL
+);
+
+
+--
+-- Name: employee_positions; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.employee_positions (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ employee_id uuid NOT NULL,
+ is_current boolean DEFAULT true NOT NULL,
+ start_date timestamp with time zone,
+ end_date timestamp with time zone,
+ is_delegate boolean DEFAULT false NOT NULL,
+ position_id uuid,
+ unit_id uuid,
+ delegator_id uuid,
+ amharic_start_date text,
+ amharic_end_date text,
+ delegation_letter_id uuid,
+ status character varying DEFAULT 'APPROVED'::character varying NOT NULL
+);
+
+
+--
+-- Name: employee_project; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.employee_project (
+ "createdAt" timestamp without time zone DEFAULT now() NOT NULL,
+ "updatedAt" timestamp without time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ is_current boolean DEFAULT true NOT NULL,
+ start_date timestamp with time zone,
+ end_date timestamp with time zone,
+ employee_id uuid NOT NULL,
+ project_id uuid,
+ is_project_lead boolean DEFAULT false NOT NULL
+);
+
+
+--
+-- Name: employee_signatures; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.employee_signatures (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ is_current boolean DEFAULT false NOT NULL,
+ employee_id uuid,
+ "fileInfo" jsonb NOT NULL,
+ "uploadedSuccessfully" boolean DEFAULT false NOT NULL
+);
+
+
+--
+-- Name: employee_stamps; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.employee_stamps (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ name jsonb NOT NULL,
+ is_current boolean DEFAULT false NOT NULL,
+ employee_position_id uuid NOT NULL,
+ "fileInfo" jsonb NOT NULL,
+ "uploadedSuccessfully" boolean DEFAULT false NOT NULL
+);
+
+
+--
+-- Name: employees; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.employees (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ organization_id uuid,
+ unit_id uuid,
+ user_id uuid NOT NULL,
+ is_current boolean DEFAULT true NOT NULL,
+ status character varying DEFAULT 'pending'::character varying NOT NULL,
+ name jsonb
+);
+
+
+--
+-- Name: footers; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.footers (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ "fileInfo" jsonb NOT NULL,
+ "uploadedSuccessfully" boolean DEFAULT false NOT NULL,
+ "isCurrent" boolean DEFAULT false NOT NULL,
+ name jsonb NOT NULL,
+ unit_id uuid,
+ position_id uuid
+);
+
+
+--
+-- Name: headers; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.headers (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ "fileInfo" jsonb NOT NULL,
+ "uploadedSuccessfully" boolean DEFAULT false NOT NULL,
+ "isCurrent" boolean DEFAULT false NOT NULL,
+ name jsonb NOT NULL,
+ unit_id uuid,
+ position_id uuid
+);
+
+
+--
+-- Name: location_types; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.location_types (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ created_at timestamp without time zone DEFAULT now() NOT NULL,
+ updated_at timestamp without time zone DEFAULT now() NOT NULL,
+ code character varying NOT NULL,
+ names jsonb NOT NULL,
+ description text,
+ level integer NOT NULL
+);
+
+
+--
+-- Name: locations; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.locations (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ created_at timestamp without time zone DEFAULT now() NOT NULL,
+ updated_at timestamp without time zone DEFAULT now() NOT NULL,
+ parent_id uuid,
+ location_type_id uuid NOT NULL,
+ names jsonb NOT NULL,
+ code character varying NOT NULL,
+ latitude numeric(10,8),
+ longitude numeric(11,8),
+ area numeric(12,2),
+ boundary_json jsonb
+);
+
+
+--
+-- Name: notifications; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.notifications (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ recipient_phone_number text,
+ recipient_email text,
+ recipient_name text,
+ recipient_id uuid,
+ channel character varying NOT NULL,
+ "appKey" text NOT NULL,
+ metadata json,
+ status character varying DEFAULT 'PENDING'::character varying NOT NULL,
+ "errorMessage" character varying,
+ "isSeen" boolean DEFAULT false NOT NULL,
+ position_id uuid,
+ employee_position_id uuid,
+ subject jsonb NOT NULL,
+ content jsonb,
+ item_id uuid,
+ item_type text
+);
+
+
+--
+-- Name: organization_configurations; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.organization_configurations (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ can_start_receiving_record boolean DEFAULT true NOT NULL,
+ organization_id uuid NOT NULL,
+ can_create_branch_by_itself boolean DEFAULT false NOT NULL,
+ maximum_number_of_units integer
+);
+
+
+--
+-- Name: organization_global_configurations; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.organization_global_configurations (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ "numberOfSubOrganizations" integer,
+ "numberOfEmployeesPerOrganization" integer,
+ organization_id uuid NOT NULL
+);
+
+
+--
+-- Name: organization_seals; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.organization_seals (
+ "createdAt" timestamp without time zone DEFAULT now() NOT NULL,
+ "updatedAt" timestamp without time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ name jsonb NOT NULL,
+ "isCurrent" boolean DEFAULT false NOT NULL,
+ organization_id uuid,
+ "fileInfo" jsonb NOT NULL,
+ "uploadedSuccessfully" boolean DEFAULT false NOT NULL
+);
+
+
+--
+-- Name: organization_settings; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.organization_settings (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ created_at timestamp without time zone DEFAULT now() NOT NULL,
+ updated_at timestamp without time zone DEFAULT now() NOT NULL,
+ organization_id uuid NOT NULL,
+ key character varying NOT NULL,
+ display_name character varying NOT NULL,
+ type character varying DEFAULT 'value'::character varying NOT NULL,
+ value character varying,
+ metadata jsonb
+);
+
+
+--
+-- Name: organization_types; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.organization_types (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ name jsonb NOT NULL,
+ key character varying NOT NULL
+);
+
+
+--
+-- Name: organizations; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.organizations (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ name jsonb NOT NULL,
+ key character varying NOT NULL,
+ organization_type_id uuid,
+ parent_id uuid,
+ status character varying DEFAULT 'Active'::character varying NOT NULL,
+ is_government_organization boolean DEFAULT true NOT NULL,
+ is_super_admin boolean DEFAULT false NOT NULL
+);
+
+
+--
+-- Name: permissions; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.permissions (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ name jsonb NOT NULL,
+ key character varying NOT NULL,
+ application_id uuid
+);
+
+
+--
+-- Name: position_configurations; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.position_configurations (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ sms_notification_when_record_submitted boolean DEFAULT false NOT NULL,
+ email_notification_when_record_submitted boolean DEFAULT false NOT NULL,
+ inbox_notification_when_record_submitted boolean DEFAULT false NOT NULL,
+ position_id uuid NOT NULL,
+ skip_workflow_if_not_assigned boolean,
+ position_scope_to_fetch character varying,
+ can_receive_record boolean DEFAULT true NOT NULL
+);
+
+
+--
+-- Name: position_permissions; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.position_permissions (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ position_id uuid NOT NULL,
+ permission_id uuid NOT NULL
+);
+
+
+--
+-- Name: position_type_configuration; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.position_type_configuration (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ amharic_created_at character varying,
+ amharic_updated_at character varying,
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ organization_id uuid,
+ position_type_id uuid NOT NULL,
+ timeframe character varying DEFAULT 'yearly'::character varying NOT NULL
+);
+
+
+--
+-- Name: position_type_permissions; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.position_type_permissions (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ position_type_id uuid NOT NULL,
+ permission_id uuid NOT NULL
+);
+
+
+--
+-- Name: position_types; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.position_types (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ name jsonb NOT NULL,
+ key character varying NOT NULL,
+ unit_id uuid,
+ is_system boolean DEFAULT false NOT NULL
+);
+
+
+--
+-- Name: positions; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.positions (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ name jsonb NOT NULL,
+ key character varying NOT NULL,
+ parent_position_id uuid,
+ unit_id uuid,
+ organization_id uuid NOT NULL,
+ project_id uuid,
+ position_type_id uuid,
+ rank integer DEFAULT 0 NOT NULL
+);
+
+
+--
+-- Name: projects; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.projects (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ name jsonb NOT NULL,
+ key character varying NOT NULL,
+ "from" timestamp with time zone,
+ "to" timestamp with time zone,
+ unit_id uuid,
+ organization_id uuid NOT NULL,
+ amharic_from text,
+ amharic_to text
+);
+
+
+--
+-- Name: role_permissions; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.role_permissions (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ role_id uuid NOT NULL,
+ permission_id uuid NOT NULL
+);
+
+
+--
+-- Name: roles; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.roles (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ name jsonb NOT NULL,
+ key character varying NOT NULL
+);
+
+
+--
+-- Name: seals; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.seals (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ "fileInfo" jsonb NOT NULL,
+ "uploadedSuccessfully" boolean DEFAULT false NOT NULL,
+ "isCurrent" boolean DEFAULT false NOT NULL,
+ name jsonb NOT NULL,
+ unit_id uuid
+);
+
+
+--
+-- Name: sessions; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.sessions (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid NOT NULL,
+ email text NOT NULL,
+ device text NOT NULL,
+ "userInfo" jsonb NOT NULL,
+ user_id uuid NOT NULL,
+ expiry_time timestamp with time zone DEFAULT now() NOT NULL,
+ refresh_count integer DEFAULT 0 NOT NULL,
+ status iam.sessions_status_enum DEFAULT 'ACTIVE'::iam.sessions_status_enum NOT NULL
+);
+
+
+--
+-- Name: unit_clusters; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.unit_clusters (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ created_at timestamp without time zone DEFAULT now() NOT NULL,
+ updated_at timestamp without time zone DEFAULT now() NOT NULL,
+ unit_id uuid NOT NULL,
+ location_id uuid NOT NULL,
+ location_type character varying NOT NULL
+);
+
+
+--
+-- Name: unit_global_configurations; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.unit_global_configurations (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ number_of_sub_units integer,
+ number_of_employees_per_unit integer,
+ unit_id uuid NOT NULL
+);
+
+
+--
+-- Name: unit_settings; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.unit_settings (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ created_at timestamp without time zone DEFAULT now() NOT NULL,
+ updated_at timestamp without time zone DEFAULT now() NOT NULL,
+ unit_id uuid NOT NULL,
+ key character varying NOT NULL,
+ display_name character varying NOT NULL,
+ type character varying DEFAULT 'value'::character varying NOT NULL,
+ value character varying,
+ metadata jsonb
+);
+
+
+--
+-- Name: units; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.units (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ name jsonb NOT NULL,
+ key character varying NOT NULL,
+ organization_id uuid,
+ parent_unit_id uuid,
+ reference_number_prefix character varying
+);
+
+
+--
+-- Name: user_credentials; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.user_credentials (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ user_id uuid NOT NULL,
+ password character varying NOT NULL,
+ is_active boolean NOT NULL,
+ changed_at timestamp with time zone,
+ amharic_changed_at text
+);
+
+
+--
+-- Name: user_documents; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.user_documents (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ user_id uuid NOT NULL,
+ document_id uuid NOT NULL,
+ status character varying DEFAULT 'pending'::character varying NOT NULL,
+ "fileInfo" jsonb NOT NULL,
+ is_current boolean DEFAULT false NOT NULL,
+ uploaded_successfully boolean DEFAULT false NOT NULL,
+ approved_at timestamp without time zone,
+ locale_approved_at jsonb,
+ approved_by_id uuid,
+ approved_by uuid
+);
+
+
+--
+-- Name: user_roles; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.user_roles (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ user_id uuid NOT NULL,
+ role_id uuid NOT NULL,
+ organization_id uuid,
+ unit_id uuid
+);
+
+
+--
+-- Name: user_verifications; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.user_verifications (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ user_id uuid NOT NULL,
+ verification_code character varying NOT NULL,
+ expires_at timestamp with time zone NOT NULL,
+ "isUsed" boolean NOT NULL,
+ otp_type character varying DEFAULT 'verify-phone-number'::character varying NOT NULL,
+ attempt_count integer DEFAULT 0 NOT NULL
+);
+
+
+--
+-- Name: users; Type: TABLE; Schema: iam; Owner: -
+--
+
+CREATE TABLE iam.users (
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now(),
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ name jsonb NOT NULL,
+ email character varying,
+ sharepoint_id character varying,
+ username character varying NOT NULL,
+ user_type character varying DEFAULT 'employee'::character varying NOT NULL,
+ status character varying DEFAULT 'pending'::character varying NOT NULL,
+ is_active boolean DEFAULT true NOT NULL,
+ has_set_password boolean DEFAULT false NOT NULL,
+ phone_number character varying,
+ is_phone_number_verified boolean DEFAULT false NOT NULL,
+ approved_by_id uuid,
+ approved_at timestamp with time zone,
+ locale_approved_at jsonb,
+ verified_by character varying DEFAULT 'phone_number'::character varying NOT NULL,
+ "licenseNo" character varying,
+ metadata jsonb
+);
+
+
+--
+-- Name: bookings; Type: TABLE; Schema: public; Owner: -
+--
+
+CREATE TABLE public.bookings (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ reference character varying(64) NOT NULL,
+ customer_id uuid NOT NULL,
+ train_id uuid,
+ status public.bookings_status_enum DEFAULT 'DRAFT'::public.bookings_status_enum NOT NULL,
+ scheduled_date timestamp with time zone NOT NULL,
+ total_amount numeric(14,2) DEFAULT '0'::numeric NOT NULL,
+ payment_status public.bookings_payment_status_enum DEFAULT 'PENDING'::public.bookings_payment_status_enum NOT NULL
+);
+
+
+--
+-- Name: consignments; Type: TABLE; Schema: public; Owner: -
+--
+
+CREATE TABLE public.consignments (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ booking_id uuid NOT NULL,
+ tracking_number character varying(64) NOT NULL,
+ cargo_type public.consignments_cargo_type_enum NOT NULL,
+ weight_kg numeric(12,2) NOT NULL,
+ status public.consignments_status_enum DEFAULT 'PENDING'::public.consignments_status_enum NOT NULL,
+ origin_station character varying(128) NOT NULL,
+ destination_station character varying(128) NOT NULL
+);
+
+
+--
+-- Name: customers; Type: TABLE; Schema: public; Owner: -
+--
+
+CREATE TABLE public.customers (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ name character varying(256) NOT NULL,
+ email character varying(256) NOT NULL,
+ phone character varying(32) NOT NULL,
+ address text,
+ tax_id character varying(64)
+);
+
+
+--
+-- Name: invoices; Type: TABLE; Schema: public; Owner: -
+--
+
+CREATE TABLE public.invoices (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ booking_id uuid NOT NULL,
+ invoice_number character varying(64) NOT NULL,
+ amount numeric(14,2) NOT NULL,
+ currency character varying(8) DEFAULT 'ETB'::character varying NOT NULL,
+ status public.invoices_status_enum DEFAULT 'PENDING'::public.invoices_status_enum NOT NULL,
+ issued_at timestamp with time zone NOT NULL,
+ due_at timestamp with time zone NOT NULL
+);
+
+
+--
+-- Name: migrations; Type: TABLE; Schema: public; Owner: -
+--
+
+CREATE TABLE public.migrations (
+ id integer NOT NULL,
+ "timestamp" bigint NOT NULL,
+ name character varying NOT NULL
+);
+
+
+--
+-- Name: migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: -
+--
+
+CREATE SEQUENCE public.migrations_id_seq
+ AS integer
+ START WITH 1
+ INCREMENT BY 1
+ NO MINVALUE
+ NO MAXVALUE
+ CACHE 1;
+
+
+--
+-- Name: migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
+--
+
+ALTER SEQUENCE public.migrations_id_seq OWNED BY public.migrations.id;
+
+
+--
+-- Name: otp_verifications; Type: TABLE; Schema: public; Owner: -
+--
+
+CREATE TABLE public.otp_verifications (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ phone character varying NOT NULL,
+ otp character varying NOT NULL,
+ verified boolean DEFAULT false NOT NULL
+);
+
+
+--
+-- Name: tracking_events; Type: TABLE; Schema: public; Owner: -
+--
+
+CREATE TABLE public.tracking_events (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ consignment_id uuid NOT NULL,
+ location character varying(256) NOT NULL,
+ status public.tracking_events_status_enum NOT NULL,
+ occurred_at timestamp with time zone NOT NULL,
+ description text
+);
+
+
+--
+-- Name: trains; Type: TABLE; Schema: public; Owner: -
+--
+
+CREATE TABLE public.trains (
+ id uuid DEFAULT public.uuid_generate_v4() NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL,
+ updated_at timestamp with time zone DEFAULT now() NOT NULL,
+ deleted_at timestamp with time zone,
+ code character varying(32) NOT NULL,
+ capacity_tons numeric(10,2) NOT NULL,
+ status public.trains_status_enum DEFAULT 'AVAILABLE'::public.trains_status_enum NOT NULL,
+ notes text
+);
+
+
+--
+-- Name: migrations id; Type: DEFAULT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.migrations ALTER COLUMN id SET DEFAULT nextval('public.migrations_id_seq'::regclass);
+
+
+--
+-- Data for Name: audit_log_commands; Type: TABLE DATA; Schema: audit; Owner: -
+--
+
+COPY audit.audit_log_commands (id, created_at, deleted_at, entity, entity_id, entity_name, payload, changes, query_method, query, parameters, status, parent_id, audit_log_id) FROM stdin;
+\.
+
+
+--
+-- Data for Name: audit_logs; Type: TABLE DATA; Schema: audit; Owner: -
+--
+
+COPY audit.audit_logs (id, created_at, updated_at, request_method, application, module, request_body, request_header, status_code, ip_address, execution_time, status, "user") FROM stdin;
+\.
+
+
+--
+-- Data for Name: approval_rules; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.approval_rules (id, requires_director_approval, step_order, required_role, action_label, blocks_role, created_at, updated_at, deleted_at) FROM stdin;
+aebf3b06-cccd-4008-bedf-d9a4b1dadd4c f 1 LINE_STAFF Review & Approve \N 2026-06-16 17:00:40.976144+00 2026-06-16 17:00:40.976144+00 \N
+afb2f30e-413f-425b-9dfc-5c7996234299 f 2 DIRECTOR Final Signature LINE_STAFF 2026-06-16 17:00:40.976144+00 2026-06-16 17:00:40.976144+00 \N
+db224189-c146-4632-8fb0-031d9384f5e6 t 3 LINE_STAFF Senior Ofiicer \N 2026-06-17 06:56:40.461614+00 2026-06-17 06:57:09.641894+00 2026-06-17 06:57:09.641894+00
+376c93cd-5b46-47cd-87f5-daa41dc2c8e2 t 1 DIRECTOR Review & Approve LINE_STAFF 2026-06-16 17:00:40.976144+00 2026-06-17 06:57:26.404164+00 \N
+25c04052-f521-49eb-afe8-104ceee05cba t 2 CEO Final Signature \N 2026-06-16 17:00:40.976144+00 2026-06-17 06:57:26.404164+00 \N
+\.
+
+
+--
+-- Data for Name: booking_approval_step; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.booking_approval_step (id, booking_id, approval_rule_id, step_order, required_role, status, actioned_by_staff_id, actioned_at, remarks, created_at, updated_at, deleted_at, blocks_role) FROM stdin;
+cf06e5a3-3a59-43ed-b08e-1cb1150d0866 d51f86d0-a263-4aae-8a3c-bf665247a013 aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 00:37:10.869+00 \N 2026-06-17 00:36:41.37951+00 2026-06-17 00:37:10.870757+00 \N \N
+f9669ffc-ee27-46fb-ba1f-587608eb11dc d51f86d0-a263-4aae-8a3c-bf665247a013 afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR APPROVED 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 00:37:14.203+00 \N 2026-06-17 00:36:41.385139+00 2026-06-17 00:37:14.20402+00 \N LINE_STAFF
+2bd0bfe2-64f0-4ff4-a937-563d73040a3b 10cc4918-ce28-4577-a296-bab1b1475e2c aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-17 05:00:03.71+00 \N 2026-06-17 04:59:57.468116+00 2026-06-17 05:00:03.711286+00 \N \N
+1f506ebd-2667-4808-bc8a-a783e7c7abd2 10cc4918-ce28-4577-a296-bab1b1475e2c afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR APPROVED 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-17 05:13:26.836+00 \N 2026-06-17 04:59:57.474122+00 2026-06-17 05:13:26.837405+00 \N LINE_STAFF
+b71e899e-50e5-4e0e-bb6c-4bea308803b4 3007712d-de3d-4e2e-94f4-7362074d9d1e afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR PENDING \N \N \N 2026-06-17 06:18:27.037133+00 2026-06-17 06:18:27.037133+00 \N LINE_STAFF
+24080c9d-8844-4094-ba74-4edea50edd78 3007712d-de3d-4e2e-94f4-7362074d9d1e aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-17 06:18:34.775+00 \N 2026-06-17 06:18:27.033085+00 2026-06-17 06:18:34.775536+00 \N \N
+d37d1921-b41a-4634-97c6-2432f95458d1 06274279-88eb-4ad7-a3e1-818f13414d0b aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-17 06:19:14.873+00 \N 2026-06-17 06:17:27.310409+00 2026-06-17 06:19:14.874454+00 \N \N
+e6d0a94a-1222-4fce-994b-a723026b20fc c231b33a-7839-4c40-809c-7393a3d329c7 afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR PENDING \N \N \N 2026-06-17 06:23:22.857906+00 2026-06-17 06:23:22.857906+00 \N LINE_STAFF
+bee02e5e-5f25-4f5b-acb3-bfd99fc15a84 c231b33a-7839-4c40-809c-7393a3d329c7 aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-17 06:24:17.211+00 \N 2026-06-17 06:23:22.848029+00 2026-06-17 06:24:17.211868+00 \N \N
+cda4754b-0324-4c46-a724-e5a45238a451 06274279-88eb-4ad7-a3e1-818f13414d0b afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR APPROVED 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 06:27:04.513+00 \N 2026-06-17 06:17:27.314153+00 2026-06-17 06:27:04.514173+00 \N LINE_STAFF
+e766715f-96a3-4189-87b5-60c854caba55 bdb8c787-3f24-439c-a5c8-14d3b8cf2f0d aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-17 07:35:50.111+00 \N 2026-06-17 07:35:04.648517+00 2026-06-17 07:35:50.112544+00 \N \N
+102de27c-ae2d-4809-b7e0-3219381b296c bdb8c787-3f24-439c-a5c8-14d3b8cf2f0d afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR REJECTED b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-17 07:39:05.977+00 because .. 2026-06-17 07:35:04.656762+00 2026-06-17 07:39:05.979013+00 \N LINE_STAFF
+9b60517e-d8ce-4ad4-8e68-bbd2edf5431e 53ae4630-d7e3-45de-94a8-d0a20c11a620 aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 10:14:47.68+00 \N 2026-06-17 08:33:15.877929+00 2026-06-17 10:14:47.68251+00 \N \N
+b6818064-7273-47ff-bcaf-4a5508d2e773 53ae4630-d7e3-45de-94a8-d0a20c11a620 afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR APPROVED 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 10:14:51.687+00 \N 2026-06-17 08:33:15.883541+00 2026-06-17 10:14:51.688435+00 \N LINE_STAFF
+c351eda0-0743-4e4f-a376-c75e1f5eadb6 a3be80e7-af97-4592-87aa-6d4e9df89450 aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 19:35:02.438+00 \N 2026-06-17 19:34:52.638884+00 2026-06-17 19:35:02.439767+00 \N \N
+8c582cec-cba2-40e8-9539-8268bb90c102 a3be80e7-af97-4592-87aa-6d4e9df89450 afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR APPROVED 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 19:35:04.331+00 \N 2026-06-17 19:34:52.642659+00 2026-06-17 19:35:04.331914+00 \N LINE_STAFF
+18aac747-7f93-4bfc-b9ee-7ab186b2ff9a ffc989b9-cfbf-40cf-9618-faae4e501a53 aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 20:16:34.587+00 \N 2026-06-17 20:16:29.165173+00 2026-06-17 20:16:34.588823+00 \N \N
+67f5124b-6134-49fb-8329-873aa57c0faa ffc989b9-cfbf-40cf-9618-faae4e501a53 afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR APPROVED 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 20:16:37.332+00 \N 2026-06-17 20:16:29.171998+00 2026-06-17 20:16:37.332949+00 \N LINE_STAFF
+63cfb3fb-5f02-488a-9404-90390aac81e1 22133f54-dcaa-4b46-89aa-5a173704fe2c aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 12:02:40.717+00 \N 2026-06-17 08:33:45.073804+00 2026-06-18 12:02:40.718108+00 \N \N
+6fdabb51-ebef-49f3-89e3-03b4c78052dd 22133f54-dcaa-4b46-89aa-5a173704fe2c afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR APPROVED 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 12:02:45.663+00 \N 2026-06-17 08:33:45.079551+00 2026-06-18 12:02:45.664539+00 \N LINE_STAFF
+41c3223c-6df5-40a4-8ecf-4b5249c24f0c fddc9d5a-f6bb-44c8-b759-3f8f1d9d2bd7 aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 12:05:52.873+00 \N 2026-06-18 12:05:50.600763+00 2026-06-18 12:05:52.873848+00 \N \N
+678cfcae-e511-49c0-a95b-1a038285d644 fddc9d5a-f6bb-44c8-b759-3f8f1d9d2bd7 afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR APPROVED 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 12:05:54.622+00 \N 2026-06-18 12:05:50.606739+00 2026-06-18 12:05:54.62334+00 \N LINE_STAFF
+2c39de99-247d-406f-94af-1cbc2923267a 39b95835-28ab-4bdc-978b-bd9a3042dccc aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 12:13:19.264+00 \N 2026-06-18 12:12:32.10403+00 2026-06-18 12:13:19.264707+00 \N \N
+42cab281-3981-489b-9853-8dc07ca6904f 39b95835-28ab-4bdc-978b-bd9a3042dccc afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR APPROVED 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 12:13:21.973+00 \N 2026-06-18 12:12:32.127551+00 2026-06-18 12:13:21.9746+00 \N LINE_STAFF
+f34dcaed-9cee-4b9f-a1b3-da05fa7320e0 46ad695f-9e8c-4cf0-a690-631f71aa6c53 aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-18 12:44:50.035+00 \N 2026-06-18 12:44:36.304575+00 2026-06-18 12:44:50.035884+00 \N \N
+4ddc3bfd-5460-4a38-a2f0-b75649e1ef7a 46ad695f-9e8c-4cf0-a690-631f71aa6c53 afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR APPROVED 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-18 12:45:47.939+00 \N 2026-06-18 12:44:36.310982+00 2026-06-18 12:45:47.940598+00 \N LINE_STAFF
+295d8160-8140-4fd9-ad2a-8b9872f4c0c8 800cafe1-5d0c-462f-9b72-f4e74ee9ea01 aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 13:47:32.664+00 \N 2026-06-18 13:47:30.115397+00 2026-06-18 13:47:32.66553+00 \N \N
+73d7b572-2922-4662-8dd3-d71938b01ebd 800cafe1-5d0c-462f-9b72-f4e74ee9ea01 afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR APPROVED 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 13:47:35.484+00 \N 2026-06-18 13:47:30.119502+00 2026-06-18 13:47:35.484801+00 \N LINE_STAFF
+2b9e450f-0a62-4444-a41f-93f797138727 350eb448-428a-48b3-9629-a5c022895066 aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 19:10:01.107+00 \N 2026-06-18 19:09:41.58486+00 2026-06-18 19:10:01.108611+00 \N \N
+24c66886-dffc-40a8-aa6e-99cc5bf3858a 350eb448-428a-48b3-9629-a5c022895066 afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR APPROVED 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 19:10:04.179+00 \N 2026-06-18 19:09:41.593535+00 2026-06-18 19:10:04.180125+00 \N LINE_STAFF
+ffb6add7-d78d-4fed-af07-97621629a8e7 476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0 aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-18 22:16:28.848+00 \N 2026-06-18 22:15:41.16953+00 2026-06-18 22:16:28.849697+00 \N \N
+42a89302-5b3a-468b-84b9-dbb6a7fe532e 476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0 afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR APPROVED 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-18 22:16:46.621+00 \N 2026-06-18 22:15:41.17674+00 2026-06-18 22:16:46.622213+00 \N LINE_STAFF
+a9ce0fe1-2f70-4948-9bd4-f9c8eae4ee34 3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1 aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-19 06:39:35.047+00 \N 2026-06-19 06:36:28.488599+00 2026-06-19 06:39:35.049003+00 \N \N
+f6d1b954-e7e8-4803-81f1-232ec6a4448e 3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1 afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR APPROVED 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-19 06:40:11.904+00 \N 2026-06-19 06:36:28.495121+00 2026-06-19 06:40:11.904991+00 \N LINE_STAFF
+6660c637-a40e-4aec-8230-e9539493427c e3f09fde-b4af-4864-8bdd-929d206f7778 aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-19 07:15:44.358+00 \N 2026-06-19 07:15:39.343273+00 2026-06-19 07:15:44.360169+00 \N \N
+6e0d25e3-5255-4f63-b8e6-cda2c146eb8e e3f09fde-b4af-4864-8bdd-929d206f7778 afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR APPROVED 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-19 07:16:11.902+00 \N 2026-06-19 07:15:39.351255+00 2026-06-19 07:16:11.903794+00 \N LINE_STAFF
+14924624-1347-4cba-9420-6ad0204ab0f6 b6e0149e-4866-4dca-b9bc-fc6f451dc6b0 aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-19 07:24:49.646+00 \N 2026-06-19 07:24:43.810214+00 2026-06-19 07:24:49.647806+00 \N \N
+1b589a30-42b4-4e24-9edf-4efc7091c746 b6e0149e-4866-4dca-b9bc-fc6f451dc6b0 afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR APPROVED 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-19 07:25:23.961+00 \N 2026-06-19 07:24:43.81795+00 2026-06-19 07:25:23.962532+00 \N LINE_STAFF
+55157e48-6d4f-4504-97c2-a7c25de88300 ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-19 07:35:43.975+00 \N 2026-06-19 07:35:39.756316+00 2026-06-19 07:35:43.976531+00 \N \N
+21f453dd-b0be-4936-9c11-02c39a3f1d75 ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR APPROVED 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-19 07:36:06.117+00 \N 2026-06-19 07:35:39.762726+00 2026-06-19 07:36:06.11832+00 \N LINE_STAFF
+c571bf4c-f906-4f70-aca3-4ef4d2c70f6d 853672fc-063b-4ef0-8413-c8c1f66b0e65 aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF PENDING \N \N \N 2026-06-19 08:04:27.903991+00 2026-06-19 08:04:27.903991+00 \N \N
+a25d7b43-4583-4600-8dd2-ef187dbf27d4 853672fc-063b-4ef0-8413-c8c1f66b0e65 afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR PENDING \N \N \N 2026-06-19 08:04:27.910711+00 2026-06-19 08:04:27.910711+00 \N LINE_STAFF
+4528fe6f-db0a-4d09-8164-12aad4d25dc6 454b514a-06d4-4ea9-854b-8409fd7f9781 aebf3b06-cccd-4008-bedf-d9a4b1dadd4c 1 LINE_STAFF APPROVED b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-19 08:12:48.346+00 \N 2026-06-19 08:11:09.555697+00 2026-06-19 08:12:48.347381+00 \N \N
+90972860-7167-4160-b5a6-3ce115da3b9e 454b514a-06d4-4ea9-854b-8409fd7f9781 afb2f30e-413f-425b-9dfc-5c7996234299 2 DIRECTOR APPROVED 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-19 08:14:50.522+00 \N 2026-06-19 08:11:09.562727+00 2026-06-19 08:14:50.523319+00 \N LINE_STAFF
+\.
+
+
+--
+-- Data for Name: booking_cargo_modifier; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.booking_cargo_modifier (id, booking_id, surcharge_type_id, trigger_value, calculated_amount, rate_snapshot_id, created_at, updated_at, deleted_at) FROM stdin;
+e674d6bc-5d80-4ced-a106-62e5d0881bd7 ffc989b9-cfbf-40cf-9618-faae4e501a53 0fe36a6f-70e8-4159-a948-6b19dff33cef \N 150.00 c07c9d6b-f710-458f-b37f-e19e96b2de4a 2026-06-17 20:12:19.641759+00 2026-06-17 20:12:19.641759+00 \N
+f194c643-ee4d-4420-a0ea-8631c45ecd90 ffc989b9-cfbf-40cf-9618-faae4e501a53 2ee34c35-50a4-423f-a547-e8cd225b7100 \N 50.00 4a6a238e-8a0d-4ff6-ac86-b7fac4d549cf 2026-06-17 20:12:19.644948+00 2026-06-17 20:12:19.644948+00 \N
+1ff6ee19-e737-4968-8f9b-8f2d4cfb3afa 800cafe1-5d0c-462f-9b72-f4e74ee9ea01 f64c939d-bafb-4b81-afe4-4a2583d17aef \N 100.00 c5180f28-0ac7-4e95-ba40-f1171ae929e5 2026-06-18 13:47:17.329764+00 2026-06-18 13:47:17.329764+00 \N
+09c59c14-dce6-4935-82e7-3fc20029a603 800cafe1-5d0c-462f-9b72-f4e74ee9ea01 0fe36a6f-70e8-4159-a948-6b19dff33cef \N 150.00 cb0539e7-c70c-406a-916a-7f522c092f91 2026-06-18 13:47:17.337231+00 2026-06-18 13:47:17.337231+00 \N
+ba73b7e7-6b5b-42c3-bef0-e70cb154592b 14b83a6a-c19f-4402-8ffb-9e0256e1639b 0fe36a6f-70e8-4159-a948-6b19dff33cef \N 150.00 5d3c56b9-2332-40ca-97bc-a589147d1c54 2026-06-18 21:17:06.704573+00 2026-06-18 21:17:06.704573+00 \N
+c49a9620-4f87-4083-aa91-956f3e3f68cc 14b83a6a-c19f-4402-8ffb-9e0256e1639b 2ee34c35-50a4-423f-a547-e8cd225b7100 \N 50.00 41194481-4087-4050-b989-62a81826680a 2026-06-18 21:17:06.710064+00 2026-06-18 21:17:06.710064+00 \N
+863514ae-5c38-4d69-a261-2ed3eab2577e 476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0 f64c939d-bafb-4b81-afe4-4a2583d17aef \N 100.00 895d347d-1b86-4757-b7d8-4ff16952f9e9 2026-06-18 22:15:16.824762+00 2026-06-18 22:15:16.824762+00 \N
+48133b3c-c8b0-4d0e-a508-e4d92870a27f 476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0 0fe36a6f-70e8-4159-a948-6b19dff33cef \N 150.00 70f17a25-8b07-4865-bf61-341aeb2586fc 2026-06-18 22:15:16.828641+00 2026-06-18 22:15:16.828641+00 \N
+a97b30f6-0491-4510-9d4d-6f1df8d55667 476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0 2ee34c35-50a4-423f-a547-e8cd225b7100 \N 50.00 09b1ec49-1a65-4bef-8648-aa7095670d76 2026-06-18 22:15:16.832795+00 2026-06-18 22:15:16.832795+00 \N
+390be7e4-5904-4787-8a1a-16f5ef5aa8d1 3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1 f64c939d-bafb-4b81-afe4-4a2583d17aef \N 100.00 5a3cc554-ca5c-4b7a-a0c4-38e592be009a 2026-06-19 06:33:17.184329+00 2026-06-19 06:33:17.184329+00 \N
+b307985f-b583-4153-99a5-7d7fde2657eb 3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1 0fe36a6f-70e8-4159-a948-6b19dff33cef \N 150.00 bf107807-9bee-4665-bfd8-bb3e2b43537c 2026-06-19 06:33:17.190341+00 2026-06-19 06:33:17.190341+00 \N
+3b9c2e55-6104-4cfd-b8cf-dde3ffff164a 3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1 2ee34c35-50a4-423f-a547-e8cd225b7100 \N 50.00 a221cc35-e3bf-467b-9b04-e4a53aad4d61 2026-06-19 06:33:17.194828+00 2026-06-19 06:33:17.194828+00 \N
+bd47168d-0d30-4f65-884a-e2707ca9e02a e3f09fde-b4af-4864-8bdd-929d206f7778 0fe36a6f-70e8-4159-a948-6b19dff33cef \N 150.00 61b42ef3-2f0c-4ab3-bb2b-e943cab324a0 2026-06-19 07:14:57.61156+00 2026-06-19 07:14:57.61156+00 \N
+48f11a6b-635d-434c-8574-e8b016bcd816 e3f09fde-b4af-4864-8bdd-929d206f7778 2ee34c35-50a4-423f-a547-e8cd225b7100 \N 50.00 95d71b78-a8b8-4831-a6fa-22dc0e6822e5 2026-06-19 07:14:57.617123+00 2026-06-19 07:14:57.617123+00 \N
+cc6b0f27-b2d4-4245-8cbc-fdd6547ecac0 b6e0149e-4866-4dca-b9bc-fc6f451dc6b0 f64c939d-bafb-4b81-afe4-4a2583d17aef \N 100.00 e3e27231-58c5-46d6-8a3b-d11481d8e103 2026-06-19 07:24:08.088597+00 2026-06-19 07:24:08.088597+00 \N
+f32b7713-fea3-4e6d-8387-8b350ec2939d b6e0149e-4866-4dca-b9bc-fc6f451dc6b0 0fe36a6f-70e8-4159-a948-6b19dff33cef \N 150.00 d7071320-cd57-4598-9eda-842a7649aa69 2026-06-19 07:24:08.090934+00 2026-06-19 07:24:08.090934+00 \N
+404c895a-2ba6-4a7f-9853-b8ed9019ce7a b6e0149e-4866-4dca-b9bc-fc6f451dc6b0 2ee34c35-50a4-423f-a547-e8cd225b7100 \N 50.00 ef508127-42c1-4756-b382-ac7c65df89a7 2026-06-19 07:24:08.092763+00 2026-06-19 07:24:08.092763+00 \N
+4955c66d-fa2d-4a53-83f8-2eb7d92b5245 fc25a460-8df8-40e3-8c27-5c37f598b7eb f64c939d-bafb-4b81-afe4-4a2583d17aef \N 100.00 121eb8d4-41d1-4ed9-9ef0-76f49ad56fcd 2026-06-19 07:32:38.116357+00 2026-06-19 07:32:38.116357+00 \N
+0e88d838-8a66-423e-9f4c-972bddda5df5 fc25a460-8df8-40e3-8c27-5c37f598b7eb 0fe36a6f-70e8-4159-a948-6b19dff33cef \N 150.00 91430d3f-033e-48ba-b74b-6fefc61ab5ee 2026-06-19 07:32:38.118777+00 2026-06-19 07:32:38.118777+00 \N
+84455c0d-c25f-4797-afc8-278f07e013db fc25a460-8df8-40e3-8c27-5c37f598b7eb 2ee34c35-50a4-423f-a547-e8cd225b7100 \N 50.00 9c2715e5-6b99-44a3-a33e-f10f2c26191b 2026-06-19 07:32:38.120804+00 2026-06-19 07:32:38.120804+00 \N
+4be7f00a-08c0-4a28-8236-3a6ed5f9ec0d ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 f64c939d-bafb-4b81-afe4-4a2583d17aef \N 100.00 5aedb96d-be11-4e87-aecb-72eb2c6ff22a 2026-06-19 07:35:21.67671+00 2026-06-19 07:35:21.67671+00 \N
+509eb00b-4830-4879-9e2f-d24c5b497edb ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 0fe36a6f-70e8-4159-a948-6b19dff33cef \N 150.00 de1971a8-360c-4c46-92a4-851eb02344a9 2026-06-19 07:35:21.680581+00 2026-06-19 07:35:21.680581+00 \N
+5e983ec5-c92c-4c6d-8d13-226b631dfeec ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 2ee34c35-50a4-423f-a547-e8cd225b7100 \N 50.00 278c378f-ece4-4a7f-b34e-68767c8e0040 2026-06-19 07:35:21.683106+00 2026-06-19 07:35:21.683106+00 \N
+119abb57-55bd-4d57-bb34-37bea9014bde 853672fc-063b-4ef0-8413-c8c1f66b0e65 f64c939d-bafb-4b81-afe4-4a2583d17aef \N 100.00 8acd2d09-d7ee-41bb-933f-83857dc185a6 2026-06-19 08:02:47.438106+00 2026-06-19 08:02:47.438106+00 \N
+4820dc43-f64d-4dc6-94bb-23f6de18e5aa 853672fc-063b-4ef0-8413-c8c1f66b0e65 0fe36a6f-70e8-4159-a948-6b19dff33cef \N 150.00 85248d88-6954-430c-86fb-0a550fb76ecb 2026-06-19 08:02:47.442149+00 2026-06-19 08:02:47.442149+00 \N
+d7204937-906a-485e-a1c1-3db19a2cf73f 853672fc-063b-4ef0-8413-c8c1f66b0e65 2ee34c35-50a4-423f-a547-e8cd225b7100 \N 50.00 38726e30-d67c-4e2d-b919-4ff87b31915c 2026-06-19 08:02:47.445481+00 2026-06-19 08:02:47.445481+00 \N
+e4dabb8a-2847-4d73-b871-071793296cd5 454b514a-06d4-4ea9-854b-8409fd7f9781 f64c939d-bafb-4b81-afe4-4a2583d17aef \N 100.00 11f51958-8c25-446c-8e5e-75390ac5ec52 2026-06-19 08:08:21.759069+00 2026-06-19 08:08:21.759069+00 \N
+b484a571-461a-4881-ba23-7a4b10b78a9d 454b514a-06d4-4ea9-854b-8409fd7f9781 0fe36a6f-70e8-4159-a948-6b19dff33cef \N 150.00 7eb756c2-d8a6-4410-a3ed-b933d4ca1602 2026-06-19 08:08:21.763102+00 2026-06-19 08:08:21.763102+00 \N
+d4435b1b-8e19-4d3f-8b7b-4c55e731a7aa 454b514a-06d4-4ea9-854b-8409fd7f9781 2ee34c35-50a4-423f-a547-e8cd225b7100 \N 50.00 8dd106ab-028d-45ad-b09c-bda46048e3e7 2026-06-19 08:08:21.766157+00 2026-06-19 08:08:21.766157+00 \N
+\.
+
+
+--
+-- Data for Name: booking_container; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.booking_container (id, booking_id, container_type_id, quantity, vgm_per_unit_tons, total_vgm_tons, wagons_required, weight_limit_rule_id, is_overweight, overweight_excess_tons, created_at, updated_at, deleted_at, container_number) FROM stdin;
+b4545d39-c926-4ed8-bb02-96e58eb2650f ffc989b9-cfbf-40cf-9618-faae4e501a53 b76986fe-8ab5-420b-afb0-7fb4bbe270ef 2 15.000 30.000 2.00 \N f \N 2026-06-17 20:11:28.713754+00 2026-06-17 20:11:28.713754+00 \N \N
+383f30bc-0945-4765-aa7c-5d8064f6b486 46ad695f-9e8c-4cf0-a690-631f71aa6c53 b76986fe-8ab5-420b-afb0-7fb4bbe270ef 20 20.000 400.000 20.00 a5dd3458-101a-4225-aa0d-0388635da5ea f \N 2026-06-18 12:04:58.189975+00 2026-06-18 12:04:58.189975+00 \N \N
+50fb3c90-40a2-454f-b051-83473be2f461 fddc9d5a-f6bb-44c8-b759-3f8f1d9d2bd7 b76986fe-8ab5-420b-afb0-7fb4bbe270ef 1 20.000 20.000 1.00 a5dd3458-101a-4225-aa0d-0388635da5ea f \N 2026-06-18 12:05:46.874095+00 2026-06-18 12:05:46.874095+00 \N \N
+2fc33924-9a03-4cad-a386-18e1d8062eb0 39b95835-28ab-4bdc-978b-bd9a3042dccc b76986fe-8ab5-420b-afb0-7fb4bbe270ef 1 20.000 20.000 1.00 a5dd3458-101a-4225-aa0d-0388635da5ea f \N 2026-06-18 12:12:28.362703+00 2026-06-18 12:12:28.362703+00 \N \N
+66cf2783-da6e-484c-90e2-fb7fda414505 800cafe1-5d0c-462f-9b72-f4e74ee9ea01 b76986fe-8ab5-420b-afb0-7fb4bbe270ef 20 20.000 400.000 20.00 \N f \N 2026-06-18 13:47:16.224275+00 2026-06-18 13:47:16.224275+00 \N \N
+78f37069-924d-4763-b655-289322d4ffab 800cafe1-5d0c-462f-9b72-f4e74ee9ea01 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 100 20.000 2000.000 50.00 58520f32-e421-441f-875d-dd956b571ae3 f \N 2026-06-18 13:47:16.231134+00 2026-06-18 13:47:16.231134+00 \N \N
+0790beb4-8a3f-4704-a028-3d86aede8ab6 350eb448-428a-48b3-9629-a5c022895066 b76986fe-8ab5-420b-afb0-7fb4bbe270ef 2 20.000 40.000 2.00 \N f \N 2026-06-18 19:09:21.215848+00 2026-06-18 19:09:21.215848+00 \N \N
+b0b41851-a1dc-4b3e-aa7d-f1ea8b085ce2 14b83a6a-c19f-4402-8ffb-9e0256e1639b b76986fe-8ab5-420b-afb0-7fb4bbe270ef 1 20.000 20.000 1.00 \N f \N 2026-06-18 21:16:54.021256+00 2026-06-18 21:16:54.021256+00 \N \N
+cbe89a41-f7d5-4c94-8454-7bdc57088d91 06274279-88eb-4ad7-a3e1-818f13414d0b b76986fe-8ab5-420b-afb0-7fb4bbe270ef 1 20.000 20.000 1.00 a5dd3458-101a-4225-aa0d-0388635da5ea f \N 2026-06-17 06:15:51.343281+00 2026-06-17 06:15:51.343281+00 \N \N
+7e380a2f-49d1-4a75-a6f1-6d5b6f8a4262 88a774a6-86da-4962-8d13-7f0c539775c8 77945c09-6db3-43ba-8d25-01f464eb4fa9 1 20.000 20.000 1.00 \N f \N 2026-06-17 10:19:18.314787+00 2026-06-17 10:19:18.314787+00 \N \N
+870a08e5-d110-452d-b6c2-7abdbd84e325 ec3bf1d7-9178-4942-9633-2c0f0e242676 77945c09-6db3-43ba-8d25-01f464eb4fa9 1 20.000 20.000 1.00 \N f \N 2026-06-17 10:19:29.991731+00 2026-06-17 10:19:29.991731+00 \N \N
+8824844f-40b6-4245-b627-3e5879389472 476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0 b76986fe-8ab5-420b-afb0-7fb4bbe270ef 1 23.000 23.000 1.00 \N f \N 2026-06-18 22:15:12.822734+00 2026-06-18 22:15:12.822734+00 \N \N
+64186684-46a1-4588-ba2a-74efbf52a606 3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1 b76986fe-8ab5-420b-afb0-7fb4bbe270ef 1 20.000 20.000 1.00 \N f \N 2026-06-19 06:32:55.246607+00 2026-06-19 06:32:55.246607+00 \N \N
+92084f3e-f47e-47eb-af70-978bf9436df7 883f45df-c6c9-4613-ad5c-8c3d189b5009 b76986fe-8ab5-420b-afb0-7fb4bbe270ef 2 30.000 60.000 2.00 \N f \N 2026-06-19 06:42:34.143301+00 2026-06-19 06:42:34.143301+00 \N \N
+e0e7a8a1-623d-41ea-8cf2-5720a721ec4f e3f09fde-b4af-4864-8bdd-929d206f7778 b76986fe-8ab5-420b-afb0-7fb4bbe270ef 1 20.000 20.000 1.00 \N f \N 2026-06-19 07:14:54.120237+00 2026-06-19 07:14:54.120237+00 \N \N
+63aa4d65-6811-4d3e-8218-3c7260fc8183 b6e0149e-4866-4dca-b9bc-fc6f451dc6b0 b76986fe-8ab5-420b-afb0-7fb4bbe270ef 1 10.000 10.000 1.00 \N f \N 2026-06-19 07:24:05.067234+00 2026-06-19 07:24:05.067234+00 \N \N
+5cb88062-370a-4f18-a58e-576b3b0914b5 fc25a460-8df8-40e3-8c27-5c37f598b7eb b76986fe-8ab5-420b-afb0-7fb4bbe270ef 1 20.000 20.000 1.00 \N f \N 2026-06-19 07:32:35.88976+00 2026-06-19 07:32:35.88976+00 \N \N
+9297daad-a6d9-4c4c-bd95-bb140c89165f 6c6dfc40-f8d6-494c-946f-625bd62c8e41 b76986fe-8ab5-420b-afb0-7fb4bbe270ef 47 20.000 940.000 47.00 1c9becef-1809-494e-ab07-1e69ec3368c2 f \N 2026-06-17 07:17:52.336965+00 2026-06-17 07:17:52.336965+00 \N \N
+f054dd2c-5b70-4f7f-9a54-ad3015f4f04c 6c6dfc40-f8d6-494c-946f-625bd62c8e41 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 1 20.000 20.000 1.00 f2d2ea7f-5309-452c-95b1-24a239959434 t 2.000 2026-06-17 07:17:52.345782+00 2026-06-17 07:17:52.345782+00 \N \N
+22db8dc5-a7c6-4f86-951c-f776fd01f829 bdb8c787-3f24-439c-a5c8-14d3b8cf2f0d a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 20 20.000 400.000 10.00 5c663ae8-4358-4361-beae-f4a730dc37bc f \N 2026-06-17 07:33:50.401036+00 2026-06-17 07:33:50.401036+00 \N \N
+6612ccfa-638b-4d5c-84e2-9d94552766b3 bdb8c787-3f24-439c-a5c8-14d3b8cf2f0d ef4940b0-ab80-4f80-981e-f27ddec57a8c 2 40.000 80.000 2.00 \N f \N 2026-06-17 07:33:50.411754+00 2026-06-17 07:33:50.411754+00 \N \N
+e2d04e46-4660-42bb-94a8-0f4b0b742343 454b514a-06d4-4ea9-854b-8409fd7f9781 b76986fe-8ab5-420b-afb0-7fb4bbe270ef 1 20.000 20.000 1.00 \N f \N 2026-06-19 08:08:14.838685+00 2026-06-19 08:08:14.838685+00 \N \N
+aebd43ba-bea2-446d-91d6-41d15a271961 22133f54-dcaa-4b46-89aa-5a173704fe2c a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 2 20.000 40.000 1.00 \N f \N 2026-06-17 08:32:23.832217+00 2026-06-17 08:32:23.832217+00 \N \N
+965c9f0d-bc59-4729-b07d-e689115a21b0 53ae4630-d7e3-45de-94a8-d0a20c11a620 b76986fe-8ab5-420b-afb0-7fb4bbe270ef 1 20.000 20.000 1.00 \N f \N 2026-06-17 08:32:28.918668+00 2026-06-17 08:32:28.918668+00 \N \N
+169d0837-2a84-46f4-a305-d9d8910227d2 feef4f8d-1907-4d18-b370-f0f534d0ceea a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 1 10.000 10.000 1.00 \N f \N 2026-06-17 08:38:42.150493+00 2026-06-17 08:38:42.150493+00 \N \N
+06b35f11-1343-4b07-bacc-59dad91e17d1 853672fc-063b-4ef0-8413-c8c1f66b0e65 b76986fe-8ab5-420b-afb0-7fb4bbe270ef 1 20.000 20.000 1.00 \N f \N 2026-06-19 08:02:40.6997+00 2026-06-19 08:02:40.6997+00 \N \N
+547d51fd-1b94-4f25-873b-3c9ff87ca747 ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 b76986fe-8ab5-420b-afb0-7fb4bbe270ef 1 20.000 20.000 1.00 \N f \N 2026-06-19 07:35:18.583036+00 2026-06-23 06:15:00.763822+00 \N TBD-BK-2026-000039-1
+5c214d2e-515a-4cad-9304-bb8a4c08384c c231b33a-7839-4c40-809c-7393a3d329c7 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 2 24.500 49.000 1.00 5c663ae8-4358-4361-beae-f4a730dc37bc f \N 2026-06-16 21:08:26.135574+00 2026-06-16 21:08:26.135574+00 \N \N
+c0e5bf0a-7c41-4e1d-abc8-d8766bd10f6c 3007712d-de3d-4e2e-94f4-7362074d9d1e a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 2 24.500 49.000 1.00 5c663ae8-4358-4361-beae-f4a730dc37bc f \N 2026-06-16 21:09:25.87956+00 2026-06-16 21:09:25.87956+00 \N \N
+e5fc8d51-6e82-4ea0-9878-86a0b9ff274a 10cc4918-ce28-4577-a296-bab1b1475e2c a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 2 24.500 49.000 1.00 5c663ae8-4358-4361-beae-f4a730dc37bc f \N 2026-06-16 21:18:56.090454+00 2026-06-16 21:18:56.090454+00 \N \N
+40bad766-6fea-4f75-b7bc-217e464febbf d51f86d0-a263-4aae-8a3c-bf665247a013 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 2 10.000 20.000 1.00 \N f \N 2026-06-16 22:57:15.20862+00 2026-06-16 22:57:15.20862+00 \N \N
+fe524c68-9c19-4744-9a33-01ba341fb5a3 a3be80e7-af97-4592-87aa-6d4e9df89450 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 2 20.000 40.000 1.00 \N f \N 2026-06-17 19:34:23.360528+00 2026-06-17 19:34:23.360528+00 \N \N
+964252de-c945-4022-9707-b7b1bf94bb8e 7a771c52-446a-4ac3-b5d4-3ebb777df7ab b76986fe-8ab5-420b-afb0-7fb4bbe270ef 20 25.000 500.000 20.00 \N f \N 2026-06-17 20:08:18.7107+00 2026-06-17 20:08:18.7107+00 \N \N
+36c60214-b04a-4676-9383-d31d052ac712 ff28feb4-537e-4664-821c-e77d56783ada a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 10 30.000 300.000 10.00 \N f \N 2026-06-17 20:08:18.7107+00 2026-06-17 20:08:18.7107+00 \N \N
+b168b694-d7d1-453a-a7ff-f56c6e97badc 99e5e45b-2477-46a1-85ca-1dfb6db79b63 b76986fe-8ab5-420b-afb0-7fb4bbe270ef 15 30.000 450.000 15.00 \N f \N 2026-06-17 20:08:18.7107+00 2026-06-17 20:08:18.7107+00 \N \N
+ca0f885d-1a1c-48f5-85c2-b783b15311fb 4ec05d9a-bccf-46ac-8e1e-5d31696c5223 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 6 30.000 180.000 6.00 \N f \N 2026-06-17 20:08:18.7107+00 2026-06-17 20:08:18.7107+00 \N \N
+fc7f3a8f-0c0c-4d1e-a940-2f04c1f50812 5f8331a7-85f0-4a69-a548-a3f0cc0eede0 b76986fe-8ab5-420b-afb0-7fb4bbe270ef 4 30.000 120.000 4.00 \N f \N 2026-06-17 20:08:18.7107+00 2026-06-17 20:08:18.7107+00 \N \N
+4e928064-c97c-43ad-8c24-3c6aae27ada4 38e993ea-7abe-4b5f-ae7d-99c061c0adaf a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 5 22.000 110.000 5.00 \N f \N 2026-06-17 20:08:18.7107+00 2026-06-17 20:08:18.7107+00 \N \N
+72fb7bd8-1b66-4912-8f3e-af14a2aff300 bdac4e45-8014-4160-82f9-f2f04976bfed b76986fe-8ab5-420b-afb0-7fb4bbe270ef 12 30.000 360.000 12.00 \N f \N 2026-06-17 20:08:18.7107+00 2026-06-17 20:08:18.7107+00 \N \N
+521b1b65-6033-4a68-864c-238e29e16e08 3ab87241-75c8-452a-9f3c-35cb8b8815cd a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 8 20.000 160.000 8.00 \N f \N 2026-06-17 20:08:18.7107+00 2026-06-17 20:08:18.7107+00 \N \N
+bc5a6439-372c-49b4-ab2d-d96fe698665a 034a15b8-6427-4673-b95d-90e1c758e380 b76986fe-8ab5-420b-afb0-7fb4bbe270ef 80 45.000 3600.000 80.00 \N t 10.000 2026-06-17 20:08:18.7107+00 2026-06-17 20:08:18.7107+00 \N \N
+\.
+
+
+--
+-- Data for Name: booking_contract_signatures; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.booking_contract_signatures (id, booking_id, signer_role, signer_user_id, signer_display_name, signed_at, signature_file_id, consent_text, ip_address, created_at, updated_at, deleted_at) FROM stdin;
+1dc7c1e7-1df7-432d-8df7-1219c688c1b0 d51f86d0-a263-4aae-8a3c-bf665247a013 CUSTOMER 8d9e3a2a-558c-4cca-987c-202dc8ac3c5c Marshal Yordnaos 2026-06-17 05:04:57.944+00 5d500a28-6269-45b2-bf94-138a92007a5c I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-17 05:04:57.947382+00 2026-06-17 05:04:57.947382+00 \N
+9234fdd5-30da-48c8-ab0d-1a222d3e3733 d51f86d0-a263-4aae-8a3c-bf665247a013 STAFF 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 Drictor 2026-06-17 05:13:59.591+00 9073ca61-670b-4c7e-a0b9-5af5d8600780 I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-17 05:13:59.593245+00 2026-06-17 05:13:59.593245+00 \N
+281ea5d2-f1aa-4e52-bef0-2b4af31c730c 53ae4630-d7e3-45de-94a8-d0a20c11a620 CUSTOMER 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a Alazar Super user 2026-06-17 10:15:39.182+00 30cd4c45-7aed-4dfc-9330-52a4639a242c I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-17 10:15:39.184647+00 2026-06-17 10:15:39.184647+00 \N
+090084ab-5e88-45bc-94b0-e5f0eb22fa3a 53ae4630-d7e3-45de-94a8-d0a20c11a620 STAFF 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a Alazar Super user 2026-06-17 10:15:47.244+00 e2fb02f5-dc78-449d-ad98-3ce8a2b71da3 I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-17 10:15:47.247767+00 2026-06-17 10:15:47.247767+00 \N
+61dafcb1-ee31-4f49-a74c-73b6a546a722 a3be80e7-af97-4592-87aa-6d4e9df89450 CUSTOMER 8d9e3a2a-558c-4cca-987c-202dc8ac3c5c Marshal Yordnaos 2026-06-17 19:35:19.591+00 2d5b1e92-b4ef-4d2f-b437-af7f36fb5e48 I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-17 19:35:19.593092+00 2026-06-17 19:35:19.593092+00 \N
+5ffb6dd3-2f24-4b39-bb1a-e68882a88a3b a3be80e7-af97-4592-87aa-6d4e9df89450 STAFF 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a Alazar Super user 2026-06-17 19:36:03.451+00 1c0a6b74-31ed-4ff8-bfad-29a80e99004e I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-17 19:36:03.453659+00 2026-06-17 19:36:03.453659+00 \N
+05ae124e-26d3-4009-8df0-a2a51e734f5f ffc989b9-cfbf-40cf-9618-faae4e501a53 CUSTOMER 8d9e3a2a-558c-4cca-987c-202dc8ac3c5c Marshal Yordnaos 2026-06-17 20:18:19.567+00 ec8f0e47-3e35-4389-869d-5a72411e865b I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-17 20:18:19.568832+00 2026-06-17 20:18:19.568832+00 \N
+b4ceecb4-5e52-4a2b-8da2-39bd05310cec ffc989b9-cfbf-40cf-9618-faae4e501a53 STAFF 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a Alazar Super user 2026-06-17 20:19:20.311+00 0672f3a8-7a8f-4977-8036-ebe0d3e739ec I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-17 20:19:20.31401+00 2026-06-17 20:19:20.31401+00 \N
+1a1112be-7776-46ee-b612-83f117dcec58 fddc9d5a-f6bb-44c8-b759-3f8f1d9d2bd7 CUSTOMER 8d9e3a2a-558c-4cca-987c-202dc8ac3c5c Marshal Yordnaos 2026-06-18 12:06:04.5+00 7ddf1bc1-8cfc-4e06-9f30-dea8e8a0096c I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-18 12:06:04.503058+00 2026-06-18 12:06:04.503058+00 \N
+237605ca-49f7-4985-b717-ec122c538368 fddc9d5a-f6bb-44c8-b759-3f8f1d9d2bd7 STAFF 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a Alazar Super user 2026-06-18 12:06:10.229+00 c7540b07-0036-4c88-9508-0aad7431e29f I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-18 12:06:10.232201+00 2026-06-18 12:06:10.232201+00 \N
+d2be3bd3-c4e2-455c-822d-d5976443d3c7 39b95835-28ab-4bdc-978b-bd9a3042dccc CUSTOMER 8d9e3a2a-558c-4cca-987c-202dc8ac3c5c Marshal Yordnaos 2026-06-18 12:14:00.106+00 de86cfa9-b2c1-4737-b656-03ec04f7dc1c I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-18 12:14:00.10901+00 2026-06-18 12:14:00.10901+00 \N
+20ba35ce-eb5c-4838-9639-bf11ae3b1490 39b95835-28ab-4bdc-978b-bd9a3042dccc STAFF 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a Alazar Super user 2026-06-18 12:14:10.607+00 94c9ae3b-386e-4dc5-9555-9cf39dba4d33 I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-18 12:14:10.609754+00 2026-06-18 12:14:10.609754+00 \N
+901cc125-1a4b-483b-945e-cea6ffa89b51 350eb448-428a-48b3-9629-a5c022895066 CUSTOMER 8d9e3a2a-558c-4cca-987c-202dc8ac3c5c Marshal Yordnaos 2026-06-18 19:10:23.458+00 c00eaa07-1aec-4ace-964d-9cd76abdab27 I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-18 19:10:23.461745+00 2026-06-18 19:10:23.461745+00 \N
+d8425358-1c1f-437c-9b90-9c9e4110201b 350eb448-428a-48b3-9629-a5c022895066 STAFF 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a Alazar Super user 2026-06-18 19:10:51.604+00 001e5b9a-2c5c-4605-bde5-34dc282e972b I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-18 19:10:51.60634+00 2026-06-18 19:10:51.60634+00 \N
+fc0c1d75-574e-4bff-bb37-1d8e53f8605c 476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0 CUSTOMER 8d9e3a2a-558c-4cca-987c-202dc8ac3c5c Marshal Yordnaos 2026-06-18 22:17:01.712+00 a09fffd8-122b-4d4c-9199-35564895b003 I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-18 22:17:01.714617+00 2026-06-18 22:17:01.714617+00 \N
+de0fb805-0534-442f-af01-d1a7408ab2a2 476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0 STAFF 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 Drictor 2026-06-18 22:17:27.206+00 691c989d-7724-40c1-9677-5fec6c3da705 I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-18 22:17:27.208709+00 2026-06-18 22:17:27.208709+00 \N
+2ac93ede-9fbd-498d-b4df-f17fa6ce13eb 3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1 CUSTOMER 8d9e3a2a-558c-4cca-987c-202dc8ac3c5c Marshal Yordnaos 2026-06-19 06:44:15.381+00 819dcc31-42ea-41c7-b36c-0f7b529426eb I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-19 06:44:15.383273+00 2026-06-19 06:44:15.383273+00 \N
+be6056c8-69bb-4c82-a9cd-9694e48fb928 3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1 STAFF 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 Drictor 2026-06-19 06:44:31.772+00 a9b789cb-dcf1-4ccb-946f-7f2d7775b500 I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-19 06:44:31.773874+00 2026-06-19 06:44:31.773874+00 \N
+1d906f57-46e2-40aa-8640-2d0bc4bd3ade e3f09fde-b4af-4864-8bdd-929d206f7778 CUSTOMER 0e1e709c-7bf6-4852-869e-678924f2315e Main Yordanos 2026-06-19 07:16:48.64+00 abd8f1a1-87be-4983-b55f-2a3a286521ee I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-19 07:16:48.644041+00 2026-06-19 07:16:48.644041+00 \N
+56887c29-42d3-46ed-93b8-65856f02e9bb e3f09fde-b4af-4864-8bdd-929d206f7778 STAFF 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 Drictor 2026-06-19 07:17:26.087+00 614c5e37-8cf1-4424-8d0e-d7fff647f306 I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-19 07:17:26.090031+00 2026-06-19 07:17:26.090031+00 \N
+4359b108-7708-49a0-9046-4cba3a9f454c b6e0149e-4866-4dca-b9bc-fc6f451dc6b0 CUSTOMER 0e1e709c-7bf6-4852-869e-678924f2315e Main Yordanos 2026-06-19 07:25:32.855+00 8de98d33-f222-4ff1-b632-86458bcc528d I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-19 07:25:32.857295+00 2026-06-19 07:25:32.857295+00 \N
+6fa47e4e-0436-45ef-bf5d-6fba247ee1c0 b6e0149e-4866-4dca-b9bc-fc6f451dc6b0 STAFF 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 Drictor 2026-06-19 07:25:43.153+00 29b7fd60-3e55-4ba1-80d7-b9aa5ef7ad33 I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-19 07:25:43.156098+00 2026-06-19 07:25:43.156098+00 \N
+ece0bf54-9844-4a2c-b8ff-558cafbed3a8 ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 CUSTOMER 0e1e709c-7bf6-4852-869e-678924f2315e Main Yordanos 2026-06-19 07:36:19.624+00 9e7786f6-8323-487f-9493-87b6462511b4 I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-19 07:36:19.626703+00 2026-06-19 07:36:19.626703+00 \N
+d7a3b7bc-fddc-4492-af20-a37607d16e07 ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 STAFF 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 Drictor 2026-06-19 07:36:31.601+00 686c0577-a9c2-4a94-8704-ab94e3bbb911 I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-19 07:36:31.603454+00 2026-06-19 07:36:31.603454+00 \N
+6f54b8f5-45d0-4cc8-b6d9-5c0b8feb8df0 454b514a-06d4-4ea9-854b-8409fd7f9781 CUSTOMER 6f001573-e7e0-4952-81ad-e422cfd4dc1e Alazar Abate 2026-06-19 08:15:17.8+00 108d8b29-4c90-464b-966d-afabfcfc4f34 I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-19 08:15:17.802962+00 2026-06-19 08:15:17.802962+00 \N
+d701edca-5e6b-4b3b-a6ea-bad0671aeef6 454b514a-06d4-4ea9-854b-8409fd7f9781 STAFF 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 Drictor 2026-06-19 08:15:42.998+00 034db6fd-9f18-44af-a72f-a30beef29e48 I agree to the terms of this contract. ::ffff:10.18.7.179 2026-06-19 08:15:43.000411+00 2026-06-19 08:15:43.000411+00 \N
+\.
+
+
+--
+-- Data for Name: booking_rate_snapshot; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.booking_rate_snapshot (id, booking_id, rate_id, rate_type, rate_value, rate_unit, currency, snapshotted_at, created_at, updated_at, deleted_at) FROM stdin;
+caf0aea3-910d-4ebc-841f-55f8e56f1076 c231b33a-7839-4c40-809c-7393a3d329c7 c723a426-bfab-4a8e-aaee-8a917110fad0 CONTAINER_EXPORT 600.0000 PER_CONTAINER USD 2026-06-16 21:08:28.018+00 2026-06-16 21:08:28.019598+00 2026-06-16 21:08:28.019598+00 \N
+654e8651-923c-40a6-8b46-3489a080f4e0 c231b33a-7839-4c40-809c-7393a3d329c7 7285b9a0-572f-46d8-ac10-ecdbef486bbf HAZARD_SURCHARGE 150.0000 FLAT USD 2026-06-16 21:08:28.018+00 2026-06-16 21:08:28.025775+00 2026-06-16 21:08:28.025775+00 \N
+18ef5ca2-1307-4f69-a718-03f7e1cc010c c231b33a-7839-4c40-809c-7393a3d329c7 6f0628f9-f1fe-4d72-a638-3d4dc0e0d019 DOUBLE_HANDLING 100.0000 PER_CONTAINER USD 2026-06-16 21:08:28.018+00 2026-06-16 21:08:28.030148+00 2026-06-16 21:08:28.030148+00 \N
+c4e320fa-42d7-477d-9744-32f04fcc59a3 c231b33a-7839-4c40-809c-7393a3d329c7 0357db10-0d50-43d8-a96a-fdacf4fdd8fb LASHING 50.0000 PER_CONTAINER USD 2026-06-16 21:08:28.018+00 2026-06-16 21:08:28.034596+00 2026-06-16 21:08:28.034596+00 \N
+446a3f11-ee2f-499f-87f6-e1f6a8d0b305 3007712d-de3d-4e2e-94f4-7362074d9d1e c723a426-bfab-4a8e-aaee-8a917110fad0 CONTAINER_EXPORT 600.0000 PER_CONTAINER USD 2026-06-16 21:09:26.048+00 2026-06-16 21:09:26.049228+00 2026-06-16 21:09:26.049228+00 \N
+6cd574d6-b879-4d81-8811-c44432a4ce86 3007712d-de3d-4e2e-94f4-7362074d9d1e 7285b9a0-572f-46d8-ac10-ecdbef486bbf HAZARD_SURCHARGE 150.0000 FLAT USD 2026-06-16 21:09:26.048+00 2026-06-16 21:09:26.055435+00 2026-06-16 21:09:26.055435+00 \N
+92f06d9a-7426-446e-a56d-c4eb1df83c14 3007712d-de3d-4e2e-94f4-7362074d9d1e 6f0628f9-f1fe-4d72-a638-3d4dc0e0d019 DOUBLE_HANDLING 100.0000 PER_CONTAINER USD 2026-06-16 21:09:26.048+00 2026-06-16 21:09:26.059064+00 2026-06-16 21:09:26.059064+00 \N
+22df3184-10da-4c22-9942-aa63e76d6892 3007712d-de3d-4e2e-94f4-7362074d9d1e 0357db10-0d50-43d8-a96a-fdacf4fdd8fb LASHING 50.0000 PER_CONTAINER USD 2026-06-16 21:09:26.048+00 2026-06-16 21:09:26.062751+00 2026-06-16 21:09:26.062751+00 \N
+2790b52f-ce98-467e-ac47-4c346d5c3d91 10cc4918-ce28-4577-a296-bab1b1475e2c c723a426-bfab-4a8e-aaee-8a917110fad0 CONTAINER_EXPORT 600.0000 PER_CONTAINER USD 2026-06-16 21:18:56.291+00 2026-06-16 21:18:56.292236+00 2026-06-16 21:18:56.292236+00 \N
+e39768d0-ee06-4b1b-a711-06d183e49a8e 10cc4918-ce28-4577-a296-bab1b1475e2c 7285b9a0-572f-46d8-ac10-ecdbef486bbf HAZARD_SURCHARGE 150.0000 FLAT USD 2026-06-16 21:18:56.291+00 2026-06-16 21:18:56.296458+00 2026-06-16 21:18:56.296458+00 \N
+8e7ec348-26e0-4d7a-aa87-92bf4a846fa3 10cc4918-ce28-4577-a296-bab1b1475e2c 6f0628f9-f1fe-4d72-a638-3d4dc0e0d019 DOUBLE_HANDLING 100.0000 PER_CONTAINER USD 2026-06-16 21:18:56.291+00 2026-06-16 21:18:56.300075+00 2026-06-16 21:18:56.300075+00 \N
+2ca4c90b-1aa5-4ddd-a9e3-35ea4e4d4bf4 10cc4918-ce28-4577-a296-bab1b1475e2c 0357db10-0d50-43d8-a96a-fdacf4fdd8fb LASHING 50.0000 PER_CONTAINER USD 2026-06-16 21:18:56.291+00 2026-06-16 21:18:56.302876+00 2026-06-16 21:18:56.302876+00 \N
+3a7d84bf-31d4-4910-8a6d-fb7999e9021e d51f86d0-a263-4aae-8a3c-bf665247a013 09f041d6-176b-4545-9037-31917c4198f6 INTERCITY_CONTAINER 350.0000 PER_CONTAINER USD 2026-06-16 22:57:22.445+00 2026-06-16 22:57:22.446419+00 2026-06-16 22:57:22.446419+00 \N
+e9632813-5c24-4a07-98af-e3fe95b3fa0d d51f86d0-a263-4aae-8a3c-bf665247a013 c619618c-6518-4783-9fcf-e4b73ab8932e HAZARD_SURCHARGE 150.0000 FLAT USD 2026-06-16 22:57:22.445+00 2026-06-16 22:57:22.451781+00 2026-06-16 22:57:22.451781+00 \N
+70ed280e-aa6b-436e-a507-3689d6f8f70a 06274279-88eb-4ad7-a3e1-818f13414d0b bcba5b5e-09ef-4703-b8be-c60d34d40f49 CONTAINER_EXPORT 900.0000 PER_CONTAINER USD 2026-06-17 06:15:51.475+00 2026-06-17 06:15:51.475407+00 2026-06-17 06:15:51.475407+00 \N
+4fdabee9-7e19-4c93-84d2-36163a248a9b 06274279-88eb-4ad7-a3e1-818f13414d0b 887ec13a-9004-4032-81aa-5b42298053af DOUBLE_HANDLING 100.0000 PER_CONTAINER USD 2026-06-17 06:15:51.475+00 2026-06-17 06:15:51.47928+00 2026-06-17 06:15:51.47928+00 \N
+4ad046d7-ee29-4f0d-b3bf-9550b9858190 bdb8c787-3f24-439c-a5c8-14d3b8cf2f0d c723a426-bfab-4a8e-aaee-8a917110fad0 CONTAINER_EXPORT 600.0000 PER_CONTAINER USD 2026-06-17 07:33:52.094+00 2026-06-17 07:33:52.094703+00 2026-06-17 07:33:52.094703+00 \N
+5923a78a-4ef5-4ace-ae10-d9d344cd4c2f bdb8c787-3f24-439c-a5c8-14d3b8cf2f0d f9f19939-66cc-4d54-9e25-aeb589a5c0b1 CONTAINER_EXPORT 750.0000 PER_CONTAINER USD 2026-06-17 07:33:52.094+00 2026-06-17 07:33:52.104424+00 2026-06-17 07:33:52.104424+00 \N
+47c30a0f-cf3a-4eaa-9fa8-f4103fd28c83 bdb8c787-3f24-439c-a5c8-14d3b8cf2f0d a8c8bb18-5237-46dc-a6c4-2f2f053080ee REEFER_SURCHARGE 200.0000 FLAT USD 2026-06-17 07:33:52.094+00 2026-06-17 07:33:52.108519+00 2026-06-17 07:33:52.108519+00 \N
+5d8ff76f-7aed-4057-a925-4ed7e4992fc9 bdb8c787-3f24-439c-a5c8-14d3b8cf2f0d 0c0d32d6-3df8-46b9-ac06-ea95158205f0 DOUBLE_HANDLING 100.0000 PER_CONTAINER USD 2026-06-17 07:33:52.094+00 2026-06-17 07:33:52.11197+00 2026-06-17 07:33:52.11197+00 \N
+206611e7-5fec-4ca1-af86-7298e04f3c6b 22133f54-dcaa-4b46-89aa-5a173704fe2c 09f041d6-176b-4545-9037-31917c4198f6 INTERCITY_CONTAINER 350.0000 PER_CONTAINER USD 2026-06-17 08:32:27.971+00 2026-06-17 08:32:27.972247+00 2026-06-17 08:32:27.972247+00 \N
+66c9e550-256d-47a2-b133-f95f4bd8f9fa 53ae4630-d7e3-45de-94a8-d0a20c11a620 d775ff84-3f6c-4cb0-8ace-168ebdc865ba INTERCITY_CONTAINER 550.0000 PER_CONTAINER USD 2026-06-17 08:32:45.426+00 2026-06-17 08:32:45.426898+00 2026-06-17 08:32:45.426898+00 \N
+a92495d9-58ab-4d10-abad-419ff4b43cd0 feef4f8d-1907-4d18-b370-f0f534d0ceea 09f041d6-176b-4545-9037-31917c4198f6 INTERCITY_CONTAINER 350.0000 PER_CONTAINER USD 2026-06-17 08:38:53.895+00 2026-06-17 08:38:53.895787+00 2026-06-17 08:38:53.895787+00 \N
+c451ab61-c2fa-4209-980b-61d14db36311 a3be80e7-af97-4592-87aa-6d4e9df89450 09f041d6-176b-4545-9037-31917c4198f6 INTERCITY_CONTAINER 350.0000 PER_CONTAINER USD 2026-06-17 19:34:41.737+00 2026-06-17 19:34:41.738666+00 2026-06-17 19:34:41.738666+00 \N
+8532a053-2ccc-4c2f-8324-e8a315e45a58 a3be80e7-af97-4592-87aa-6d4e9df89450 0a672b15-7eb6-4a7b-b0cd-d8bc04d83eca HAZARD_SURCHARGE 150.0000 FLAT USD 2026-06-17 19:34:41.737+00 2026-06-17 19:34:41.744119+00 2026-06-17 19:34:41.744119+00 \N
+7e21d06a-9617-4563-aa5c-d37ab46ff8d3 a3be80e7-af97-4592-87aa-6d4e9df89450 a6462eff-a300-41cb-8152-8ed86baa24fa LASHING 50.0000 PER_CONTAINER USD 2026-06-17 19:34:41.737+00 2026-06-17 19:34:41.746746+00 2026-06-17 19:34:41.746746+00 \N
+b7924c53-9004-4014-a4fb-82d6be558e42 ffc989b9-cfbf-40cf-9618-faae4e501a53 d775ff84-3f6c-4cb0-8ace-168ebdc865ba INTERCITY_CONTAINER 550.0000 PER_CONTAINER USD 2026-06-17 20:12:19.629+00 2026-06-17 20:12:19.630083+00 2026-06-17 20:12:19.630083+00 \N
+c07c9d6b-f710-458f-b37f-e19e96b2de4a ffc989b9-cfbf-40cf-9618-faae4e501a53 749af6ff-0513-4722-b687-9be1f092489d HAZARD_SURCHARGE 150.0000 FLAT USD 2026-06-17 20:12:19.629+00 2026-06-17 20:12:19.636179+00 2026-06-17 20:12:19.636179+00 \N
+4a6a238e-8a0d-4ff6-ac86-b7fac4d549cf ffc989b9-cfbf-40cf-9618-faae4e501a53 1346288d-f479-4bad-b61d-46112e5bc8d7 LASHING 50.0000 PER_CONTAINER USD 2026-06-17 20:12:19.629+00 2026-06-17 20:12:19.638909+00 2026-06-17 20:12:19.638909+00 \N
+527b8a37-795c-49cf-b44d-790da61179cc 46ad695f-9e8c-4cf0-a690-631f71aa6c53 bcba5b5e-09ef-4703-b8be-c60d34d40f49 CONTAINER_EXPORT 900.0000 PER_CONTAINER USD 2026-06-18 12:04:59.694+00 2026-06-18 12:04:59.695074+00 2026-06-18 12:04:59.695074+00 \N
+dd829a32-9d2c-4858-955c-391aa5079a21 fddc9d5a-f6bb-44c8-b759-3f8f1d9d2bd7 bcba5b5e-09ef-4703-b8be-c60d34d40f49 CONTAINER_EXPORT 900.0000 PER_CONTAINER USD 2026-06-18 12:05:47.048+00 2026-06-18 12:05:47.049119+00 2026-06-18 12:05:47.049119+00 \N
+9e91126e-c964-4664-ac91-f3547df3df58 39b95835-28ab-4bdc-978b-bd9a3042dccc bcba5b5e-09ef-4703-b8be-c60d34d40f49 CONTAINER_EXPORT 900.0000 PER_CONTAINER USD 2026-06-18 12:12:28.536+00 2026-06-18 12:12:28.536847+00 2026-06-18 12:12:28.536847+00 \N
+9c5a4dbb-3fa6-4fda-86b7-eaf7441c1437 800cafe1-5d0c-462f-9b72-f4e74ee9ea01 0ca906ec-8f36-4676-8c60-e87c4e11812a CONTAINER_IMPORT 1200.0000 PER_CONTAINER USD 2026-06-18 13:47:17.307+00 2026-06-18 13:47:17.308103+00 2026-06-18 13:47:17.308103+00 \N
+5e2b59c4-f295-4440-9d39-9d6ecd5cfc49 800cafe1-5d0c-462f-9b72-f4e74ee9ea01 3a81e95f-b3a6-41cd-8f55-38d4f7bc4b10 CONTAINER_IMPORT 800.0000 PER_CONTAINER USD 2026-06-18 13:47:17.307+00 2026-06-18 13:47:17.314623+00 2026-06-18 13:47:17.314623+00 \N
+c5180f28-0ac7-4e95-ba40-f1171ae929e5 800cafe1-5d0c-462f-9b72-f4e74ee9ea01 9fe62c81-9430-472f-af93-5df7302a8eac DOUBLE_HANDLING 100.0000 PER_CONTAINER USD 2026-06-18 13:47:17.307+00 2026-06-18 13:47:17.319562+00 2026-06-18 13:47:17.319562+00 \N
+cb0539e7-c70c-406a-916a-7f522c092f91 800cafe1-5d0c-462f-9b72-f4e74ee9ea01 749af6ff-0513-4722-b687-9be1f092489d HAZARD_SURCHARGE 150.0000 FLAT USD 2026-06-18 13:47:17.307+00 2026-06-18 13:47:17.324557+00 2026-06-18 13:47:17.324557+00 \N
+c832c176-2f81-4c27-98a3-fcf7fa10de05 350eb448-428a-48b3-9629-a5c022895066 bcba5b5e-09ef-4703-b8be-c60d34d40f49 CONTAINER_EXPORT 900.0000 PER_CONTAINER USD 2026-06-18 19:09:23.451+00 2026-06-18 19:09:23.451395+00 2026-06-18 19:09:23.451395+00 \N
+580d0acd-2ff6-4419-9380-46bfe20ab510 14b83a6a-c19f-4402-8ffb-9e0256e1639b bcba5b5e-09ef-4703-b8be-c60d34d40f49 CONTAINER_EXPORT 900.0000 PER_CONTAINER USD 2026-06-18 21:17:06.69+00 2026-06-18 21:17:06.690746+00 2026-06-18 21:17:06.690746+00 \N
+5d3c56b9-2332-40ca-97bc-a589147d1c54 14b83a6a-c19f-4402-8ffb-9e0256e1639b 749af6ff-0513-4722-b687-9be1f092489d HAZARD_SURCHARGE 150.0000 FLAT USD 2026-06-18 21:17:06.69+00 2026-06-18 21:17:06.697809+00 2026-06-18 21:17:06.697809+00 \N
+41194481-4087-4050-b989-62a81826680a 14b83a6a-c19f-4402-8ffb-9e0256e1639b 1346288d-f479-4bad-b61d-46112e5bc8d7 LASHING 50.0000 PER_CONTAINER USD 2026-06-18 21:17:06.69+00 2026-06-18 21:17:06.701052+00 2026-06-18 21:17:06.701052+00 \N
+b6f3aa50-b385-46a2-aea1-00a33438fb1f 476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0 bcba5b5e-09ef-4703-b8be-c60d34d40f49 CONTAINER_EXPORT 900.0000 PER_CONTAINER USD 2026-06-18 22:15:16.805+00 2026-06-18 22:15:16.806317+00 2026-06-18 22:15:16.806317+00 \N
+895d347d-1b86-4757-b7d8-4ff16952f9e9 476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0 9fe62c81-9430-472f-af93-5df7302a8eac DOUBLE_HANDLING 100.0000 PER_CONTAINER USD 2026-06-18 22:15:16.805+00 2026-06-18 22:15:16.811978+00 2026-06-18 22:15:16.811978+00 \N
+70f17a25-8b07-4865-bf61-341aeb2586fc 476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0 749af6ff-0513-4722-b687-9be1f092489d HAZARD_SURCHARGE 150.0000 FLAT USD 2026-06-18 22:15:16.805+00 2026-06-18 22:15:16.81647+00 2026-06-18 22:15:16.81647+00 \N
+09b1ec49-1a65-4bef-8648-aa7095670d76 476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0 1346288d-f479-4bad-b61d-46112e5bc8d7 LASHING 50.0000 PER_CONTAINER USD 2026-06-18 22:15:16.805+00 2026-06-18 22:15:16.820748+00 2026-06-18 22:15:16.820748+00 \N
+cf75cdbe-3586-4145-8f05-0b4f63320dd0 3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1 bcba5b5e-09ef-4703-b8be-c60d34d40f49 CONTAINER_EXPORT 900.0000 PER_CONTAINER USD 2026-06-19 06:33:17.157+00 2026-06-19 06:33:17.158397+00 2026-06-19 06:33:17.158397+00 \N
+5a3cc554-ca5c-4b7a-a0c4-38e592be009a 3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1 9fe62c81-9430-472f-af93-5df7302a8eac DOUBLE_HANDLING 100.0000 PER_CONTAINER USD 2026-06-19 06:33:17.157+00 2026-06-19 06:33:17.169887+00 2026-06-19 06:33:17.169887+00 \N
+bf107807-9bee-4665-bfd8-bb3e2b43537c 3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1 749af6ff-0513-4722-b687-9be1f092489d HAZARD_SURCHARGE 150.0000 FLAT USD 2026-06-19 06:33:17.157+00 2026-06-19 06:33:17.174218+00 2026-06-19 06:33:17.174218+00 \N
+a221cc35-e3bf-467b-9b04-e4a53aad4d61 3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1 1346288d-f479-4bad-b61d-46112e5bc8d7 LASHING 50.0000 PER_CONTAINER USD 2026-06-19 06:33:17.157+00 2026-06-19 06:33:17.178913+00 2026-06-19 06:33:17.178913+00 \N
+bf8a1c9a-5fb1-4394-8bad-4d817435b2d6 e3f09fde-b4af-4864-8bdd-929d206f7778 bcba5b5e-09ef-4703-b8be-c60d34d40f49 CONTAINER_EXPORT 900.0000 PER_CONTAINER USD 2026-06-19 07:14:57.596+00 2026-06-19 07:14:57.597019+00 2026-06-19 07:14:57.597019+00 \N
+61b42ef3-2f0c-4ab3-bb2b-e943cab324a0 e3f09fde-b4af-4864-8bdd-929d206f7778 749af6ff-0513-4722-b687-9be1f092489d HAZARD_SURCHARGE 150.0000 FLAT USD 2026-06-19 07:14:57.596+00 2026-06-19 07:14:57.603391+00 2026-06-19 07:14:57.603391+00 \N
+95d71b78-a8b8-4831-a6fa-22dc0e6822e5 e3f09fde-b4af-4864-8bdd-929d206f7778 1346288d-f479-4bad-b61d-46112e5bc8d7 LASHING 50.0000 PER_CONTAINER USD 2026-06-19 07:14:57.596+00 2026-06-19 07:14:57.6075+00 2026-06-19 07:14:57.6075+00 \N
+98289de5-7b94-4edd-8636-9e925c247d37 b6e0149e-4866-4dca-b9bc-fc6f451dc6b0 bcba5b5e-09ef-4703-b8be-c60d34d40f49 CONTAINER_EXPORT 900.0000 PER_CONTAINER USD 2026-06-19 07:24:08.077+00 2026-06-19 07:24:08.078058+00 2026-06-19 07:24:08.078058+00 \N
+e3e27231-58c5-46d6-8a3b-d11481d8e103 b6e0149e-4866-4dca-b9bc-fc6f451dc6b0 9fe62c81-9430-472f-af93-5df7302a8eac DOUBLE_HANDLING 100.0000 PER_CONTAINER USD 2026-06-19 07:24:08.077+00 2026-06-19 07:24:08.081983+00 2026-06-19 07:24:08.081983+00 \N
+d7071320-cd57-4598-9eda-842a7649aa69 b6e0149e-4866-4dca-b9bc-fc6f451dc6b0 749af6ff-0513-4722-b687-9be1f092489d HAZARD_SURCHARGE 150.0000 FLAT USD 2026-06-19 07:24:08.077+00 2026-06-19 07:24:08.084196+00 2026-06-19 07:24:08.084196+00 \N
+ef508127-42c1-4756-b382-ac7c65df89a7 b6e0149e-4866-4dca-b9bc-fc6f451dc6b0 1346288d-f479-4bad-b61d-46112e5bc8d7 LASHING 50.0000 PER_CONTAINER USD 2026-06-19 07:24:08.077+00 2026-06-19 07:24:08.086228+00 2026-06-19 07:24:08.086228+00 \N
+31ec709f-ff69-4cfb-976a-9739bd32c441 fc25a460-8df8-40e3-8c27-5c37f598b7eb bcba5b5e-09ef-4703-b8be-c60d34d40f49 CONTAINER_EXPORT 900.0000 PER_CONTAINER USD 2026-06-19 07:32:38.105+00 2026-06-19 07:32:38.105573+00 2026-06-19 07:32:38.105573+00 \N
+121eb8d4-41d1-4ed9-9ef0-76f49ad56fcd fc25a460-8df8-40e3-8c27-5c37f598b7eb 9fe62c81-9430-472f-af93-5df7302a8eac DOUBLE_HANDLING 100.0000 PER_CONTAINER USD 2026-06-19 07:32:38.105+00 2026-06-19 07:32:38.10903+00 2026-06-19 07:32:38.10903+00 \N
+91430d3f-033e-48ba-b74b-6fefc61ab5ee fc25a460-8df8-40e3-8c27-5c37f598b7eb 749af6ff-0513-4722-b687-9be1f092489d HAZARD_SURCHARGE 150.0000 FLAT USD 2026-06-19 07:32:38.105+00 2026-06-19 07:32:38.111696+00 2026-06-19 07:32:38.111696+00 \N
+9c2715e5-6b99-44a3-a33e-f10f2c26191b fc25a460-8df8-40e3-8c27-5c37f598b7eb 1346288d-f479-4bad-b61d-46112e5bc8d7 LASHING 50.0000 PER_CONTAINER USD 2026-06-19 07:32:38.105+00 2026-06-19 07:32:38.113945+00 2026-06-19 07:32:38.113945+00 \N
+ee40d9a6-fad6-4caf-aa18-94a08f4b44e4 ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 bcba5b5e-09ef-4703-b8be-c60d34d40f49 CONTAINER_EXPORT 900.0000 PER_CONTAINER USD 2026-06-19 07:35:21.659+00 2026-06-19 07:35:21.659767+00 2026-06-19 07:35:21.659767+00 \N
+5aedb96d-be11-4e87-aecb-72eb2c6ff22a ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 9fe62c81-9430-472f-af93-5df7302a8eac DOUBLE_HANDLING 100.0000 PER_CONTAINER USD 2026-06-19 07:35:21.659+00 2026-06-19 07:35:21.665377+00 2026-06-19 07:35:21.665377+00 \N
+de1971a8-360c-4c46-92a4-851eb02344a9 ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 749af6ff-0513-4722-b687-9be1f092489d HAZARD_SURCHARGE 150.0000 FLAT USD 2026-06-19 07:35:21.659+00 2026-06-19 07:35:21.669018+00 2026-06-19 07:35:21.669018+00 \N
+278c378f-ece4-4a7f-b34e-68767c8e0040 ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 1346288d-f479-4bad-b61d-46112e5bc8d7 LASHING 50.0000 PER_CONTAINER USD 2026-06-19 07:35:21.659+00 2026-06-19 07:35:21.672704+00 2026-06-19 07:35:21.672704+00 \N
+8f23d62f-85a5-49db-b19e-0e4bc3b8d20c 853672fc-063b-4ef0-8413-c8c1f66b0e65 bcba5b5e-09ef-4703-b8be-c60d34d40f49 CONTAINER_EXPORT 900.0000 PER_CONTAINER USD 2026-06-19 08:02:47.421+00 2026-06-19 08:02:47.422293+00 2026-06-19 08:02:47.422293+00 \N
+8acd2d09-d7ee-41bb-933f-83857dc185a6 853672fc-063b-4ef0-8413-c8c1f66b0e65 9fe62c81-9430-472f-af93-5df7302a8eac DOUBLE_HANDLING 100.0000 PER_CONTAINER USD 2026-06-19 08:02:47.421+00 2026-06-19 08:02:47.428244+00 2026-06-19 08:02:47.428244+00 \N
+85248d88-6954-430c-86fb-0a550fb76ecb 853672fc-063b-4ef0-8413-c8c1f66b0e65 749af6ff-0513-4722-b687-9be1f092489d HAZARD_SURCHARGE 150.0000 FLAT USD 2026-06-19 08:02:47.421+00 2026-06-19 08:02:47.431427+00 2026-06-19 08:02:47.431427+00 \N
+38726e30-d67c-4e2d-b919-4ff87b31915c 853672fc-063b-4ef0-8413-c8c1f66b0e65 1346288d-f479-4bad-b61d-46112e5bc8d7 LASHING 50.0000 PER_CONTAINER USD 2026-06-19 08:02:47.421+00 2026-06-19 08:02:47.434345+00 2026-06-19 08:02:47.434345+00 \N
+c2066222-526a-4567-9b4f-7380caebb180 454b514a-06d4-4ea9-854b-8409fd7f9781 bcba5b5e-09ef-4703-b8be-c60d34d40f49 CONTAINER_EXPORT 900.0000 PER_CONTAINER USD 2026-06-19 08:08:21.734+00 2026-06-19 08:08:21.734756+00 2026-06-19 08:08:21.734756+00 \N
+11f51958-8c25-446c-8e5e-75390ac5ec52 454b514a-06d4-4ea9-854b-8409fd7f9781 9fe62c81-9430-472f-af93-5df7302a8eac DOUBLE_HANDLING 100.0000 PER_CONTAINER USD 2026-06-19 08:08:21.734+00 2026-06-19 08:08:21.742705+00 2026-06-19 08:08:21.742705+00 \N
+7eb756c2-d8a6-4410-a3ed-b933d4ca1602 454b514a-06d4-4ea9-854b-8409fd7f9781 749af6ff-0513-4722-b687-9be1f092489d HAZARD_SURCHARGE 150.0000 FLAT USD 2026-06-19 08:08:21.734+00 2026-06-19 08:08:21.748657+00 2026-06-19 08:08:21.748657+00 \N
+8dd106ab-028d-45ad-b09c-bda46048e3e7 454b514a-06d4-4ea9-854b-8409fd7f9781 1346288d-f479-4bad-b61d-46112e5bc8d7 LASHING 50.0000 PER_CONTAINER USD 2026-06-19 08:08:21.734+00 2026-06-19 08:08:21.754402+00 2026-06-19 08:08:21.754402+00 \N
+\.
+
+
+--
+-- Data for Name: booking_review_note; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.booking_review_note (id, booking_id, author_id, note, type, created_at, updated_at, deleted_at) FROM stdin;
+99ee38ba-2def-43a0-93a9-4b26fa680aa6 6c6dfc40-f8d6-494c-946f-625bd62c8e41 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a Government booking expedited to PAID by staff (354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a) STAFF_NOTE 2026-06-17 07:17:52.498157+00 2026-06-17 07:17:52.498157+00 \N
+78b3e9e6-8eaa-45fc-800b-32bb143e95f4 bdb8c787-3f24-439c-a5c8-14d3b8cf2f0d b7e27b32-2c33-4a15-a13f-b849826d21a4 because .. REJECTION 2026-06-17 07:39:05.981471+00 2026-06-17 07:39:05.981471+00 \N
+daee2e40-4efa-4794-8bc2-30a33176f93f fc25a460-8df8-40e3-8c27-5c37f598b7eb b7e27b32-2c33-4a15-a13f-b849826d21a4 adjust the document CHANGES_REQUESTED 2026-06-19 07:34:03.170785+00 2026-06-19 07:34:03.170785+00 \N
+\.
+
+
+--
+-- Data for Name: bookings; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.bookings (id, reference, train_id, status, scheduled_date, total_amount, payment_status, contract_type, previous_contract_id, trade_direction, equipment_return, first_mile_pickup_address, last_mile_delivery_address, cargo_total_weight_vgm, is_hazardous, payment_currency, start_date, end_date, financial_terms, version_number, approved_by_staff_id, approved_by_staff_at, signed_by_director_id, signed_by_director_at, signed_by_ceo_id, signed_by_ceo_at, priority_score, allow_consolidation, consolidation_partner_id, created_at, updated_at, deleted_at, origin_yard_id, destination_yard_id, service_type_id, cargo_type_id, cargo_free_text, shipping_line_id, pnr_code, customer_signed_at, fully_executed_at, marketing_approved_by_id, marketing_approved_at, contract_summary, locked_at, freight_type, contract_template_key, contract_generated_at, pricing_breakdown, company_id, wagons_required, scheduling_status, hold_started_at, hold_expires_at, scheduled_at, is_government, government_institution, train_schedule_id, payment_deadline, selected_for_batch_at) FROM stdin;
+c231b33a-7839-4c40-809c-7393a3d329c7 BK-2026-000013 \N APPROVED_PENDING_SIGNATURE 2026-06-15 00:00:00+00 237486.00 PENDING NEW \N EXPORT NA addis djubiti 24.500 t ETB \N \N 1 b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-17 06:24:17.213+00 \N \N \N \N 0 t \N 2026-06-16 21:08:26.124266+00 2026-06-17 06:24:17.215398+00 \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 d756db2f-057a-4d57-acd5-633fcc6c4244 07b4c1fd-d12a-4409-beb3-be41b5d5d9c0 \N bda772e1-cea9-42e9-8065-85dd33332552 \N \N \N \N \N \N CONTAINER \N \N {"currency": "ETB", "lineItems": [{"code": "CONTAINER_EXPORT", "amount": 189989, "currency": "ETB", "description": "Base rail (CONTAINER_EXPORT)"}, {"code": "HAZARDOUS_CARGO", "amount": 23749, "currency": "ETB", "description": "Surcharge: HAZARDOUS_CARGO"}, {"code": "SHIPPING_LINE_FEE", "amount": 15832, "currency": "ETB", "description": "Surcharge: SHIPPING_LINE_FEE"}, {"code": "CONSOLIDATION_FEE", "amount": 7916, "currency": "ETB", "description": "Surcharge: CONSOLIDATION_FEE"}], "generatedAt": "2026-06-16T21:08:27.911Z", "totalAmount": 237486} 57c21f76-8c7f-4085-bc01-09dbc5bacb17 \N NOT_SCHEDULED \N \N \N f \N \N \N \N
+ff28feb4-537e-4664-821c-e77d56783ada BKG_ONT_02 \N PAID 2026-06-20 08:00:00+00 2.00 PAID NEW \N IMPORT WITHOUT_RETURN \N \N 300.000 f ETB \N \N \N 1 \N \N \N \N \N \N 0 f \N 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N d756db2f-057a-4d57-acd5-633fcc6c4244 f7ca751e-8202-4daf-a949-1deeb069e3e9 f15f0f14-b7f1-4242-bbad-5a660d102dfc \N \N \N \N \N \N \N \N \N \N CONTAINER \N \N \N 4709da33-c76d-4c0b-b7a5-d3f57f1faeb9 \N NOT_SCHEDULED \N \N \N f \N \N \N \N
+99e5e45b-2477-46a1-85ca-1dfb6db79b63 BKG_ONT_03 \N PAID 2026-06-20 08:00:00+00 2.00 PAID NEW \N IMPORT WITHOUT_RETURN \N \N 450.000 f ETB \N \N \N 1 \N \N \N \N \N \N 0 f \N 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N d756db2f-057a-4d57-acd5-633fcc6c4244 f7ca751e-8202-4daf-a949-1deeb069e3e9 f15f0f14-b7f1-4242-bbad-5a660d102dfc \N \N \N \N \N \N \N \N \N \N CONTAINER \N \N \N 4709da33-c76d-4c0b-b7a5-d3f57f1faeb9 \N NOT_SCHEDULED \N \N \N f \N \N \N \N
+3007712d-de3d-4e2e-94f4-7362074d9d1e BK-2026-000014 \N APPROVED_PENDING_SIGNATURE 2026-06-15 00:00:00+00 237486.00 PENDING NEW \N EXPORT NA addis djubiti 24.500 t ETB \N \N 1 b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-17 06:18:34.777+00 \N \N \N \N 0 t \N 2026-06-16 21:09:25.870976+00 2026-06-17 06:18:34.778739+00 \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 d756db2f-057a-4d57-acd5-633fcc6c4244 07b4c1fd-d12a-4409-beb3-be41b5d5d9c0 \N bda772e1-cea9-42e9-8065-85dd33332552 \N \N \N \N \N \N CONTAINER \N \N {"currency": "ETB", "lineItems": [{"code": "CONTAINER_EXPORT", "amount": 189989, "currency": "ETB", "description": "Base rail (CONTAINER_EXPORT)"}, {"code": "HAZARDOUS_CARGO", "amount": 23749, "currency": "ETB", "description": "Surcharge: HAZARDOUS_CARGO"}, {"code": "SHIPPING_LINE_FEE", "amount": 15832, "currency": "ETB", "description": "Surcharge: SHIPPING_LINE_FEE"}, {"code": "CONSOLIDATION_FEE", "amount": 7916, "currency": "ETB", "description": "Surcharge: CONSOLIDATION_FEE"}], "generatedAt": "2026-06-16T21:09:25.954Z", "totalAmount": 237486} 57c21f76-8c7f-4085-bc01-09dbc5bacb17 \N NOT_SCHEDULED \N \N \N f \N \N \N \N
+10cc4918-ce28-4577-a296-bab1b1475e2c BK-2026-000015 \N CONTRACT_READY 2026-06-15 00:00:00+00 237486.00 PENDING NEW \N EXPORT NA addis djubiti 24.500 t ETB \N \N 1 b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-17 05:00:03.712+00 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-17 05:13:26.942+00 \N \N 0 t \N 2026-06-16 21:18:56.079869+00 2026-06-17 05:13:27.015715+00 \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 d756db2f-057a-4d57-acd5-633fcc6c4244 07b4c1fd-d12a-4409-beb3-be41b5d5d9c0 \N bda772e1-cea9-42e9-8065-85dd33332552 \N \N \N \N Operation: Export | Cargo Type: Container (2× 20FT Standard) \N CONTAINER EXP_CON_ETB_TRANSPORT_ONLY 2026-06-17 05:13:27.014+00 {"currency": "ETB", "lineItems": [{"code": "CONTAINER_EXPORT", "amount": 189989, "currency": "ETB", "description": "Base rail (CONTAINER_EXPORT)"}, {"code": "HAZARDOUS_CARGO", "amount": 23749, "currency": "ETB", "description": "Surcharge: HAZARDOUS_CARGO"}, {"code": "SHIPPING_LINE_FEE", "amount": 15832, "currency": "ETB", "description": "Surcharge: SHIPPING_LINE_FEE"}, {"code": "CONSOLIDATION_FEE", "amount": 7916, "currency": "ETB", "description": "Surcharge: CONSOLIDATION_FEE"}], "generatedAt": "2026-06-16T21:18:56.220Z", "totalAmount": 237486} 57c21f76-8c7f-4085-bc01-09dbc5bacb17 \N NOT_SCHEDULED \N \N \N f \N \N \N \N
+4ec05d9a-bccf-46ac-8e1e-5d31696c5223 BKG_ONT_07 \N PAID 2026-06-20 08:00:00+00 2.00 PAID NEW \N IMPORT WITHOUT_RETURN \N \N 180.000 f ETB \N \N \N 1 \N \N \N \N \N \N 0 f \N 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N d756db2f-057a-4d57-acd5-633fcc6c4244 f7ca751e-8202-4daf-a949-1deeb069e3e9 f15f0f14-b7f1-4242-bbad-5a660d102dfc \N \N \N \N \N \N \N \N \N \N CONTAINER \N \N \N 4709da33-c76d-4c0b-b7a5-d3f57f1faeb9 \N NOT_SCHEDULED \N \N \N f \N \N \N \N
+5f8331a7-85f0-4a69-a548-a3f0cc0eede0 BKG_ONT_08 \N PAID 2026-06-20 08:00:00+00 2.00 PAID NEW \N IMPORT WITHOUT_RETURN \N \N 120.000 f ETB \N \N \N 1 \N \N \N \N \N \N 0 f \N 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N d756db2f-057a-4d57-acd5-633fcc6c4244 f7ca751e-8202-4daf-a949-1deeb069e3e9 f15f0f14-b7f1-4242-bbad-5a660d102dfc \N \N \N \N \N \N \N \N \N \N CONTAINER \N \N \N 4709da33-c76d-4c0b-b7a5-d3f57f1faeb9 \N NOT_SCHEDULED \N \N \N f \N \N \N \N
+38e993ea-7abe-4b5f-ae7d-99c061c0adaf BKG_ONT_09 \N PAID 2026-06-20 08:00:00+00 2.00 PAID NEW \N IMPORT WITHOUT_RETURN \N \N 110.000 f ETB \N \N \N 1 \N \N \N \N \N \N 0 f \N 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N d756db2f-057a-4d57-acd5-633fcc6c4244 f7ca751e-8202-4daf-a949-1deeb069e3e9 f15f0f14-b7f1-4242-bbad-5a660d102dfc \N \N \N \N \N \N \N \N \N \N CONTAINER \N \N \N 4709da33-c76d-4c0b-b7a5-d3f57f1faeb9 \N NOT_SCHEDULED \N \N \N f \N \N \N \N
+bdac4e45-8014-4160-82f9-f2f04976bfed BKG_ONT_04 \N PAID 2026-06-20 08:00:00+00 2.00 PAID NEW \N IMPORT WITHOUT_RETURN \N \N 360.000 f ETB \N \N \N 1 \N \N \N \N \N \N 0 f \N 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N f7ca751e-8202-4daf-a949-1deeb069e3e9 24d06c00-203e-43f5-878c-11b998743033 f15f0f14-b7f1-4242-bbad-5a660d102dfc \N \N \N \N \N \N \N \N \N \N CONTAINER \N \N \N 4709da33-c76d-4c0b-b7a5-d3f57f1faeb9 \N NOT_SCHEDULED \N \N \N f \N \N \N \N
+3ab87241-75c8-452a-9f3c-35cb8b8815cd BKG_ONT_05 \N PAID 2026-06-21 08:00:00+00 2.00 PAID NEW \N IMPORT WITHOUT_RETURN \N \N 160.000 f ETB \N \N \N 1 \N \N \N \N \N \N 0 f \N 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N d756db2f-057a-4d57-acd5-633fcc6c4244 f7ca751e-8202-4daf-a949-1deeb069e3e9 f15f0f14-b7f1-4242-bbad-5a660d102dfc \N \N \N \N \N \N \N \N \N \N CONTAINER \N \N \N 4709da33-c76d-4c0b-b7a5-d3f57f1faeb9 \N NOT_SCHEDULED \N \N \N f \N \N \N \N
+7a771c52-446a-4ac3-b5d4-3ebb777df7ab BKG_CONT_001 \N PAID 2026-06-20 08:00:00+00 2.00 PAID NEW \N IMPORT WITHOUT_RETURN \N \N 500.000 f ETB \N \N \N 1 \N \N \N \N \N \N 0 f \N 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N d756db2f-057a-4d57-acd5-633fcc6c4244 f7ca751e-8202-4daf-a949-1deeb069e3e9 f15f0f14-b7f1-4242-bbad-5a660d102dfc \N \N \N \N \N \N \N \N \N \N CONTAINER \N \N \N 4709da33-c76d-4c0b-b7a5-d3f57f1faeb9 \N NOT_SCHEDULED \N \N \N f \N \N \N \N
+22133f54-dcaa-4b46-89aa-5a173704fe2c BK-2026-000020 \N CONTRACT_READY 2026-06-17 08:32:23.628+00 700.00 PENDING NEW \N DOMESTIC WITH_RETURN \N \N 40.000 f USD \N \N \N 1 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 12:02:40.722+00 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 12:02:45.666+00 \N \N 567 f \N 2026-06-17 08:32:23.81909+00 2026-06-18 12:02:46.136496+00 \N f7ca751e-8202-4daf-a949-1deeb069e3e9 24d06c00-203e-43f5-878c-11b998743033 f15f0f14-b7f1-4242-bbad-5a660d102dfc \N \N \N \N \N \N \N \N Operation: DOMESTIC | Cargo Type: Container (2× 20FT Standard) \N CONTAINER DOM_CON_USD_TRANSPORT_ONLY 2026-06-18 12:02:46.134+00 {"currency": "USD", "lineItems": [{"code": "INTERCITY_CONTAINER", "amount": 700, "currency": "USD", "description": "Base rail (INTERCITY_CONTAINER)"}], "generatedAt": "2026-06-17T08:32:24.800Z", "totalAmount": 700} 14825537-9f89-46f1-b727-cda8aea4451f \N NOT_SCHEDULED \N \N \N f \N b2974796-95e1-4903-87ea-63cfaa01648d \N \N
+88a774a6-86da-4962-8d13-7f0c539775c8 BK-2026-000023 \N DRAFT 2026-06-17 10:19:18.19+00 0.00 PENDING RENEWAL feef4f8d-1907-4d18-b370-f0f534d0ceea DOMESTIC WITH_RETURN \N \N 20.000 f USD \N \N \N 1 \N \N \N \N \N \N 67 f \N 2026-06-17 10:19:18.305988+00 2026-06-17 10:19:18.305988+00 \N 24d06c00-203e-43f5-878c-11b998743033 9701100d-e89f-4f83-91d0-dd49b1511fad f15f0f14-b7f1-4242-bbad-5a660d102dfc \N \N \N feef4f8d-1907-4d18-b370-f0f534d0ceea \N \N \N \N \N \N CONTAINER \N \N \N ea147ddc-3ab7-4251-9278-d429cf864bf1 \N NOT_SCHEDULED \N \N \N f \N 002cb785-7289-46c5-b26b-02830560a5bb \N \N
+ec3bf1d7-9178-4942-9633-2c0f0e242676 BK-2026-000024 \N DRAFT 2026-06-17 10:19:29.836+00 600.00 PENDING RENEWAL feef4f8d-1907-4d18-b370-f0f534d0ceea DOMESTIC WITH_RETURN \N \N 20.000 f USD \N \N \N 1 \N \N \N \N \N \N 67 f \N 2026-06-17 10:19:29.978854+00 2026-06-17 12:30:57.654441+00 \N 24d06c00-203e-43f5-878c-11b998743033 9701100d-e89f-4f83-91d0-dd49b1511fad f15f0f14-b7f1-4242-bbad-5a660d102dfc \N \N \N feef4f8d-1907-4d18-b370-f0f534d0ceea \N \N \N \N \N \N CONTAINER \N \N {"currency": "USD", "lineItems": [{"code": "INTERCITY_CONTAINER", "amount": 400, "currency": "USD", "description": "Base rail (INTERCITY_CONTAINER)"}, {"code": "REEFER_CARGO", "amount": 200, "currency": "USD", "description": "Surcharge: REEFER_CARGO"}], "generatedAt": "2026-06-17T12:30:57.653Z", "totalAmount": 600} ea147ddc-3ab7-4251-9278-d429cf864bf1 \N NOT_SCHEDULED \N \N \N f \N 002cb785-7289-46c5-b26b-02830560a5bb \N \N
+d51f86d0-a263-4aae-8a3c-bf665247a013 BK-2026-000016 \N EXPIRED 2026-06-16 22:57:15.129+00 850.00 PENDING NEW \N DOMESTIC WITH_RETURN \N \N 20.000 t USD \N \N \N 1 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 00:37:10.873+00 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 00:37:14.207+00 \N \N 517 f \N 2026-06-16 22:57:15.199532+00 2026-06-17 05:18:59.780237+00 \N f7ca751e-8202-4daf-a949-1deeb069e3e9 24d06c00-203e-43f5-878c-11b998743033 07b4c1fd-d12a-4409-beb3-be41b5d5d9c0 \N \N \N \N 2026-06-17 05:04:57.944+00 2026-06-17 05:13:59.591+00 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-17 05:13:59.591+00 Operation: DOMESTIC | Cargo Type: Container (2× 20FT Standard) 2026-06-17 05:13:59.591+00 CONTAINER DOM_CON_USD_TRANSPORT_ONLY 2026-06-17 00:37:14.653+00 {"currency": "USD", "lineItems": [{"code": "INTERCITY_CONTAINER", "amount": 700, "currency": "USD", "description": "Base rail (INTERCITY_CONTAINER)"}, {"code": "HAZARDOUS_CARGO", "amount": 150, "currency": "USD", "description": "Surcharge: HAZARDOUS_CARGO"}], "generatedAt": "2026-06-16T22:57:16.644Z", "totalAmount": 850} 14825537-9f89-46f1-b727-cda8aea4451f \N ELIGIBLE \N \N \N f \N b2974796-95e1-4903-87ea-63cfaa01648d \N \N
+06274279-88eb-4ad7-a3e1-818f13414d0b BK-2026-000017 \N CONTRACT_READY 2026-06-19 06:15:00+00 1000.00 PENDING NEW \N EXPORT WITH_RETURN \N \N 20.000 f USD \N \N \N 1 b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-17 06:19:14.876+00 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 06:27:04.515+00 \N \N 517 f \N 2026-06-17 06:15:51.330959+00 2026-06-17 06:27:04.555029+00 \N f7ca751e-8202-4daf-a949-1deeb069e3e9 d756db2f-057a-4d57-acd5-633fcc6c4244 07b4c1fd-d12a-4409-beb3-be41b5d5d9c0 \N \N bda772e1-cea9-42e9-8065-85dd33332552 \N \N \N \N \N Operation: Export | Cargo Type: Container (1× 40FT Standard) \N CONTAINER EXP_CON_USD_TRANSPORT_ONLY 2026-06-17 06:27:04.554+00 {"currency": "USD", "lineItems": [{"code": "CONTAINER_EXPORT", "amount": 900, "currency": "USD", "description": "Base rail (CONTAINER_EXPORT)"}, {"code": "SHIPPING_LINE_FEE", "amount": 100, "currency": "USD", "description": "Surcharge: SHIPPING_LINE_FEE"}], "generatedAt": "2026-06-17T06:15:51.417Z", "totalAmount": 1000} 4709da33-c76d-4c0b-b7a5-d3f57f1faeb9 \N NOT_SCHEDULED \N \N \N f \N \N \N \N
+53ae4630-d7e3-45de-94a8-d0a20c11a620 BK-2026-000021 \N EXPIRED 2026-06-17 08:32:28+00 550.00 PENDING NEW \N DOMESTIC WITH_RETURN \N \N 20.000 f USD \N \N \N 1 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 10:14:47.685+00 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 10:14:51.692+00 \N \N 567 f \N 2026-06-17 08:32:28.905996+00 2026-06-17 10:20:47.410004+00 \N 24d06c00-203e-43f5-878c-11b998743033 9701100d-e89f-4f83-91d0-dd49b1511fad f15f0f14-b7f1-4242-bbad-5a660d102dfc \N \N \N \N 2026-06-17 10:15:39.182+00 2026-06-17 10:15:47.244+00 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 10:15:47.244+00 Operation: DOMESTIC | Cargo Type: Container (1× 40FT Standard) 2026-06-17 10:15:47.244+00 CONTAINER DOM_CON_USD_TRANSPORT_ONLY 2026-06-17 10:14:52.149+00 {"currency": "USD", "lineItems": [{"code": "INTERCITY_CONTAINER", "amount": 550, "currency": "USD", "description": "Base rail (INTERCITY_CONTAINER)"}], "generatedAt": "2026-06-17T08:32:29.483Z", "totalAmount": 550} 07e6657b-5943-434a-930c-5eb4898be1bc \N ELIGIBLE \N \N \N f \N 002cb785-7289-46c5-b26b-02830560a5bb \N \N
+bdb8c787-3f24-439c-a5c8-14d3b8cf2f0d BK-2026-000019 \N REJECTED 2026-06-20 07:31:00+00 2187691.00 PENDING NEW \N EXPORT WITHOUT_RETURN Sebeta \N 480.000 f ETB \N \N \N 1 b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-17 07:35:50.114+00 \N \N \N \N 20 f \N 2026-06-17 07:33:50.385158+00 2026-06-17 07:39:05.986571+00 \N f7ca751e-8202-4daf-a949-1deeb069e3e9 d756db2f-057a-4d57-acd5-633fcc6c4244 c6d9432b-7d7c-41e9-8b35-a48eae760b56 \N \N 247f491a-eb54-48d2-9099-185f4a8ad5dc \N \N \N \N \N \N \N CONTAINER \N \N {"currency": "ETB", "lineItems": [{"code": "CONTAINER_EXPORT", "amount": 1902340, "currency": "ETB", "description": "Base rail (CONTAINER_EXPORT)"}, {"code": "CONTAINER_EXPORT", "amount": 237792, "currency": "ETB", "description": "Base rail (CONTAINER_EXPORT)"}, {"code": "REEFER_CARGO", "amount": 31706, "currency": "ETB", "description": "Surcharge: REEFER_CARGO"}, {"code": "SHIPPING_LINE_FEE", "amount": 15853, "currency": "ETB", "description": "Surcharge: SHIPPING_LINE_FEE"}], "generatedAt": "2026-06-17T07:33:52.000Z", "totalAmount": 2187691} 07e6657b-5943-434a-930c-5eb4898be1bc \N NOT_SCHEDULED \N \N \N f \N \N \N \N
+feef4f8d-1907-4d18-b370-f0f534d0ceea BK-2026-000022 \N PENDING_CONSOLIDATION 2026-06-17 08:38:41.246+00 350.00 PENDING NEW \N DOMESTIC WITH_RETURN \N \N 10.000 f USD \N \N \N 1 \N \N \N \N \N \N 567 f \N 2026-06-17 08:38:42.14399+00 2026-06-17 08:39:00.684887+00 \N 24d06c00-203e-43f5-878c-11b998743033 9701100d-e89f-4f83-91d0-dd49b1511fad f15f0f14-b7f1-4242-bbad-5a660d102dfc \N \N \N \N \N \N \N \N \N \N CONTAINER \N \N {"currency": "USD", "lineItems": [{"code": "INTERCITY_CONTAINER", "amount": 350, "currency": "USD", "description": "Base rail (INTERCITY_CONTAINER)"}], "generatedAt": "2026-06-17T08:38:52.543Z", "totalAmount": 350} 07e6657b-5943-434a-930c-5eb4898be1bc \N NOT_SCHEDULED \N \N \N f \N 002cb785-7289-46c5-b26b-02830560a5bb \N \N
+6c6dfc40-f8d6-494c-946f-625bd62c8e41 BK-2026-000018 \N PAID 2026-06-20 07:15:00+00 0.00 PAID NEW \N IMPORT NA \N MoA HEADQUARTER 960.000 f USD \N \N \N 1 \N \N \N \N \N \N 50135 t \N 2026-06-17 07:17:52.323304+00 2026-06-17 07:17:52.493896+00 \N d756db2f-057a-4d57-acd5-633fcc6c4244 a09be182-0447-465e-9924-587e556d2648 07b4c1fd-d12a-4409-beb3-be41b5d5d9c0 \N \N 9d8b8deb-ce51-4757-9309-5077d9fe7201 \N \N \N \N \N \N \N CONTAINER \N \N \N \N \N ELIGIBLE \N \N \N t MoA \N \N \N
+034a15b8-6427-4673-b95d-90e1c758e380 BKG-CONT-006 \N PAID 2026-06-20 08:00:00+00 2.00 PAID NEW \N IMPORT WITHOUT_RETURN \N \N 3600.000 f ETB \N \N \N 1 \N \N \N \N \N \N 0 f \N 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N d756db2f-057a-4d57-acd5-633fcc6c4244 f7ca751e-8202-4daf-a949-1deeb069e3e9 f15f0f14-b7f1-4242-bbad-5a660d102dfc \N \N \N \N \N \N \N \N \N \N CONTAINER \N \N \N 4709da33-c76d-4c0b-b7a5-d3f57f1faeb9 \N NOT_SCHEDULED \N \N \N f \N \N \N \N
+ddf38efb-25b7-4fea-983f-a6d6f6601d5d BKG-BULK-001 \N PAID 2026-06-20 08:00:00+00 0.00 PAID NEW \N IMPORT WITHOUT_RETURN \N \N 1200.000 f USD \N \N \N 1 \N \N \N \N \N \N 10 f \N 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N d756db2f-057a-4d57-acd5-633fcc6c4244 f7ca751e-8202-4daf-a949-1deeb069e3e9 f15f0f14-b7f1-4242-bbad-5a660d102dfc b481a2d7-f5a4-4c9f-b727-5785c60174e8 COFFEE \N \N \N \N \N \N \N \N BULK \N \N \N 4709da33-c76d-4c0b-b7a5-d3f57f1faeb9 \N HOLDING \N \N \N f \N \N \N \N
+76310385-ec57-4156-b40a-7226ea6a97ac BKG-BULK-002 \N PAID 2026-06-20 08:00:00+00 0.00 PAID NEW \N IMPORT WITHOUT_RETURN \N \N 800.000 f USD \N \N \N 1 \N \N \N \N \N \N 10 f \N 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N d756db2f-057a-4d57-acd5-633fcc6c4244 f7ca751e-8202-4daf-a949-1deeb069e3e9 f15f0f14-b7f1-4242-bbad-5a660d102dfc 962af9be-e8a4-40c7-b118-e31c22667986 FERTILIZER \N \N \N \N \N \N \N \N BULK \N \N \N 4709da33-c76d-4c0b-b7a5-d3f57f1faeb9 \N HOLDING \N \N \N f \N \N \N \N
+8f9d9057-760c-4074-9609-29ef9d3dab57 BKG-BULK-003 \N PAID 2026-06-20 08:00:00+00 0.00 PAID NEW \N IMPORT WITHOUT_RETURN \N \N 450.000 f USD \N \N \N 1 \N \N \N \N \N \N 10 f \N 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N f7ca751e-8202-4daf-a949-1deeb069e3e9 24d06c00-203e-43f5-878c-11b998743033 f15f0f14-b7f1-4242-bbad-5a660d102dfc 691bd747-1233-4c66-91fc-1bdc80da8ffb STEEL \N \N \N \N \N \N \N \N BULK \N \N \N 4709da33-c76d-4c0b-b7a5-d3f57f1faeb9 \N HOLDING \N \N \N f \N \N \N \N
+ffc989b9-cfbf-40cf-9618-faae4e501a53 BK-2026-000026 \N EXPIRED 2026-06-17 00:00:00+00 206086.00 PENDING NEW \N DOMESTIC WITH_RETURN \N \N 30.000 t ETB \N \N \N 1 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 20:16:34.59+00 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 20:16:37.334+00 \N \N 0 t \N 2026-06-17 20:11:28.702944+00 2026-06-17 20:24:20.512056+00 \N 24d06c00-203e-43f5-878c-11b998743033 9701100d-e89f-4f83-91d0-dd49b1511fad 07b4c1fd-d12a-4409-beb3-be41b5d5d9c0 \N \N \N \N 2026-06-17 20:18:19.567+00 2026-06-17 20:19:20.311+00 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 20:19:20.311+00 Operation: DOMESTIC | Cargo Type: Container (2× 40FT Standard) 2026-06-17 20:19:20.311+00 CONTAINER DOM_CON_ETB_TRANSPORT_ONLY 2026-06-17 20:16:37.619+00 {"currency": "ETB", "lineItems": [{"code": "INTERCITY_CONTAINER", "amount": 174381, "currency": "ETB", "description": "Base rail (INTERCITY_CONTAINER)"}, {"code": "HAZARDOUS_CARGO", "amount": 23779, "currency": "ETB", "description": "Surcharge: HAZARDOUS_CARGO"}, {"code": "CONSOLIDATION_FEE", "amount": 7926, "currency": "ETB", "description": "Surcharge: CONSOLIDATION_FEE"}], "generatedAt": "2026-06-17T20:11:31.210Z", "totalAmount": 206086} 14825537-9f89-46f1-b727-cda8aea4451f \N ELIGIBLE \N \N \N f \N 002cb785-7289-46c5-b26b-02830560a5bb \N \N
+46ad695f-9e8c-4cf0-a690-631f71aa6c53 BK-2026-000027 \N CONTRACT_READY 2026-06-18 11:59:00+00 2857181.00 PENDING NEW \N EXPORT NA \N \N 400.000 f ETB \N \N \N 1 b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-18 12:44:50.038+00 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-18 12:45:47.943+00 \N \N 0 f \N 2026-06-18 12:04:58.173842+00 2026-06-18 12:45:48.003889+00 \N 17964b5f-4b99-4f0e-b855-1aa5d4237934 1acf9b6a-5a6e-4022-b194-59a6f638146e 106d494a-d8f5-45fb-81cb-f593b3c55b84 \N \N \N \N \N \N \N \N Operation: Export | Cargo Type: Container (20× 40FT Standard) \N CONTAINER EXP_CON_ETB_TRANSPORT_ONLY 2026-06-18 12:45:48.003+00 {"currency": "ETB", "lineItems": [{"code": "CONTAINER_EXPORT", "amount": 2857181, "currency": "ETB", "description": "Base rail (CONTAINER_EXPORT)"}], "generatedAt": "2026-06-18T12:04:59.569Z", "totalAmount": 2857181} 57c21f76-8c7f-4085-bc01-09dbc5bacb17 \N NOT_SCHEDULED \N \N \N f \N 4b45c7f3-4d43-4a6e-b6ac-06bc6b24efef \N \N
+a3be80e7-af97-4592-87aa-6d4e9df89450 BK-2026-000025 \N EXPIRED 2026-06-17 00:00:00+00 900.00 PENDING NEW \N DOMESTIC WITH_RETURN \N \N 40.000 t USD \N \N \N 1 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 19:35:02.443+00 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 19:35:04.333+00 \N \N 567 t \N 2026-06-17 19:34:23.349521+00 2026-06-17 19:41:03.607709+00 \N 24d06c00-203e-43f5-878c-11b998743033 9701100d-e89f-4f83-91d0-dd49b1511fad 07b4c1fd-d12a-4409-beb3-be41b5d5d9c0 \N \N \N \N 2026-06-17 19:35:19.591+00 2026-06-17 19:36:03.451+00 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 19:36:03.451+00 Operation: DOMESTIC | Cargo Type: Container (2× 20FT Standard) 2026-06-17 19:36:03.451+00 CONTAINER DOM_CON_USD_TRANSPORT_ONLY 2026-06-17 19:35:04.655+00 {"currency": "USD", "lineItems": [{"code": "INTERCITY_CONTAINER", "amount": 700, "currency": "USD", "description": "Base rail (INTERCITY_CONTAINER)"}, {"code": "HAZARDOUS_CARGO", "amount": 150, "currency": "USD", "description": "Surcharge: HAZARDOUS_CARGO"}, {"code": "CONSOLIDATION_FEE", "amount": 50, "currency": "USD", "description": "Surcharge: CONSOLIDATION_FEE"}], "generatedAt": "2026-06-17T19:34:23.723Z", "totalAmount": 900} 14825537-9f89-46f1-b727-cda8aea4451f \N ELIGIBLE \N \N \N f \N 002cb785-7289-46c5-b26b-02830560a5bb \N \N
+39b95835-28ab-4bdc-978b-bd9a3042dccc BK-2026-000029 \N EXPIRED 2026-06-18 11:59:00+00 142859.00 PENDING NEW \N EXPORT NA \N \N 20.000 f ETB \N \N \N 1 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 12:13:19.267+00 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 12:13:21.976+00 \N \N 0 f \N 2026-06-18 12:12:28.323692+00 2026-06-18 12:19:10.763801+00 \N 17964b5f-4b99-4f0e-b855-1aa5d4237934 1acf9b6a-5a6e-4022-b194-59a6f638146e 106d494a-d8f5-45fb-81cb-f593b3c55b84 \N \N \N \N 2026-06-18 12:14:00.106+00 2026-06-18 12:14:10.607+00 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 12:14:10.607+00 Operation: Export | Cargo Type: Container (1× 40FT Standard) 2026-06-18 12:14:10.607+00 CONTAINER EXP_CON_ETB_TRANSPORT_ONLY 2026-06-18 12:13:22.019+00 {"currency": "ETB", "lineItems": [{"code": "CONTAINER_EXPORT", "amount": 142859, "currency": "ETB", "description": "Base rail (CONTAINER_EXPORT)"}], "generatedAt": "2026-06-18T12:12:28.458Z", "totalAmount": 142859} 14825537-9f89-46f1-b727-cda8aea4451f \N ELIGIBLE \N \N \N f \N 4b45c7f3-4d43-4a6e-b6ac-06bc6b24efef \N \N
+350eb448-428a-48b3-9629-a5c022895066 BK-2026-000031 \N PAID 2026-06-18 11:59:00+00 285718.00 PAID NEW \N EXPORT NA \N \N 40.000 f ETB \N \N \N 1 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 19:10:01.111+00 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 19:10:04.182+00 \N \N 0 f \N 2026-06-18 19:09:21.205504+00 2026-06-18 19:12:52.700136+00 \N 17964b5f-4b99-4f0e-b855-1aa5d4237934 1acf9b6a-5a6e-4022-b194-59a6f638146e 106d494a-d8f5-45fb-81cb-f593b3c55b84 \N \N \N \N 2026-06-18 19:10:23.458+00 2026-06-18 19:10:51.604+00 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 19:10:51.604+00 Operation: Export | Cargo Type: Container (2× 40FT Standard) 2026-06-18 19:10:51.604+00 CONTAINER EXP_CON_ETB_TRANSPORT_ONLY 2026-06-18 19:10:04.231+00 {"currency": "ETB", "lineItems": [{"code": "CONTAINER_EXPORT", "amount": 285718, "currency": "ETB", "description": "Base rail (CONTAINER_EXPORT)"}], "generatedAt": "2026-06-18T19:09:23.374Z", "totalAmount": 285718} 14825537-9f89-46f1-b727-cda8aea4451f \N SCHEDULED \N \N 2026-06-18 19:12:52.706+00 f \N 4b45c7f3-4d43-4a6e-b6ac-06bc6b24efef \N \N
+800cafe1-5d0c-462f-9b72-f4e74ee9ea01 BK-2026-000030 \N CONTRACT_READY 2026-06-20 13:46:00+00 16547842.00 PENDING NEW \N IMPORT WITHOUT_RETURN \N \N 2400.000 t ETB \N \N \N 1 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 13:47:32.667+00 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 13:47:35.488+00 \N \N 0 f \N 2026-06-18 13:47:16.209693+00 2026-06-18 13:47:35.769228+00 \N bbd94d0d-8876-4f4e-a330-816db40d8767 17964b5f-4b99-4f0e-b855-1aa5d4237934 106d494a-d8f5-45fb-81cb-f593b3c55b84 \N \N 5b024d2f-c127-4233-b96f-29cf543b78a1 \N \N \N \N \N Operation: Import | Cargo Type: Container (20× 40FT Standard, 100× 20FT Standard) \N CONTAINER IMP_CON_ETB_TRANSPORT_ONLY 2026-06-18 13:47:35.768+00 {"currency": "ETB", "lineItems": [{"code": "CONTAINER_IMPORT", "amount": 3809575, "currency": "ETB", "description": "Base rail (CONTAINER_IMPORT)"}, {"code": "CONTAINER_IMPORT", "amount": 12698584, "currency": "ETB", "description": "Base rail (CONTAINER_IMPORT)"}, {"code": "SHIPPING_LINE_FEE", "amount": 15873, "currency": "ETB", "description": "Surcharge: SHIPPING_LINE_FEE"}, {"code": "HAZARDOUS_CARGO", "amount": 23810, "currency": "ETB", "description": "Surcharge: HAZARDOUS_CARGO"}], "generatedAt": "2026-06-18T13:47:17.181Z", "totalAmount": 16547842} e43c69c1-6799-4a6a-b504-59d3d4b17710 \N NOT_SCHEDULED \N \N \N f \N \N \N \N
+fddc9d5a-f6bb-44c8-b759-3f8f1d9d2bd7 BK-2026-000028 \N EXPIRED 2026-06-18 11:59:00+00 142859.00 PENDING NEW \N EXPORT NA \N \N 20.000 f ETB \N \N \N 1 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 12:05:52.875+00 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 12:05:54.625+00 \N \N 0 f \N 2026-06-18 12:05:46.857665+00 2026-06-18 12:11:10.359412+00 \N 17964b5f-4b99-4f0e-b855-1aa5d4237934 1acf9b6a-5a6e-4022-b194-59a6f638146e 106d494a-d8f5-45fb-81cb-f593b3c55b84 \N \N \N \N 2026-06-18 12:06:04.5+00 2026-06-18 12:06:10.229+00 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 12:06:10.229+00 Operation: Export | Cargo Type: Container (1× 40FT Standard) 2026-06-18 12:06:10.229+00 CONTAINER EXP_CON_ETB_TRANSPORT_ONLY 2026-06-18 12:05:54.669+00 {"currency": "ETB", "lineItems": [{"code": "CONTAINER_EXPORT", "amount": 142859, "currency": "ETB", "description": "Base rail (CONTAINER_EXPORT)"}], "generatedAt": "2026-06-18T12:05:46.968Z", "totalAmount": 142859} 14825537-9f89-46f1-b727-cda8aea4451f \N ELIGIBLE \N \N \N f \N 4b45c7f3-4d43-4a6e-b6ac-06bc6b24efef \N \N
+14b83a6a-c19f-4402-8ffb-9e0256e1639b BK-2026-000032 \N SUBMITTED 2026-06-18 00:00:00+00 174606.00 PENDING NEW \N EXPORT WITH_RETURN \N \N 20.000 t ETB \N \N \N 1 \N \N \N \N \N \N 0 t \N 2026-06-18 21:16:39.266081+00 2026-06-18 21:17:06.716828+00 \N 17964b5f-4b99-4f0e-b855-1aa5d4237934 1acf9b6a-5a6e-4022-b194-59a6f638146e 106d494a-d8f5-45fb-81cb-f593b3c55b84 \N \N \N \N \N \N \N \N \N \N CONTAINER \N \N {"currency": "ETB", "lineItems": [{"code": "CONTAINER_EXPORT", "amount": 142859, "currency": "ETB", "description": "Base rail (CONTAINER_EXPORT)"}, {"code": "HAZARDOUS_CARGO", "amount": 23810, "currency": "ETB", "description": "Surcharge: HAZARDOUS_CARGO"}, {"code": "CONSOLIDATION_FEE", "amount": 7937, "currency": "ETB", "description": "Surcharge: CONSOLIDATION_FEE"}], "generatedAt": "2026-06-18T21:16:54.295Z", "totalAmount": 174606} 14825537-9f89-46f1-b727-cda8aea4451f \N NOT_SCHEDULED \N \N \N f \N 4b45c7f3-4d43-4a6e-b6ac-06bc6b24efef \N \N
+454b514a-06d4-4ea9-854b-8409fd7f9781 BK-2026-000041 \N EXPIRED 2026-06-18 00:00:00+00 1200.00 PENDING NEW \N EXPORT WITH_RETURN \N \N 20.000 t USD \N \N \N 1 b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-19 08:12:48.35+00 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-19 08:14:50.525+00 \N \N 517 t \N 2026-06-19 08:08:14.826175+00 2026-06-19 08:20:43.142356+00 \N 17964b5f-4b99-4f0e-b855-1aa5d4237934 1acf9b6a-5a6e-4022-b194-59a6f638146e 106d494a-d8f5-45fb-81cb-f593b3c55b84 \N \N 66876250-d5e5-42b6-9148-9ee4391f55f7 \N 2026-06-19 08:15:17.8+00 2026-06-19 08:15:42.998+00 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-19 08:15:42.998+00 Operation: Export | Cargo Type: Container (1× 40FT Standard) 2026-06-19 08:15:42.998+00 CONTAINER EXP_CON_USD_TRANSPORT_ONLY 2026-06-19 08:14:50.598+00 {"currency": "USD", "lineItems": [{"code": "CONTAINER_EXPORT", "amount": 900, "currency": "USD", "description": "Base rail (CONTAINER_EXPORT)"}, {"code": "SHIPPING_LINE_FEE", "amount": 100, "currency": "USD", "description": "Surcharge: SHIPPING_LINE_FEE"}, {"code": "HAZARDOUS_CARGO", "amount": 150, "currency": "USD", "description": "Surcharge: HAZARDOUS_CARGO"}, {"code": "CONSOLIDATION_FEE", "amount": 50, "currency": "USD", "description": "Surcharge: CONSOLIDATION_FEE"}], "generatedAt": "2026-06-19T08:08:15.152Z", "totalAmount": 1200} 07e6657b-5943-434a-930c-5eb4898be1bc \N ELIGIBLE \N \N \N f \N 4b45c7f3-4d43-4a6e-b6ac-06bc6b24efef \N \N
+b6e0149e-4866-4dca-b9bc-fc6f451dc6b0 BK-2026-000037 \N EXPIRED 2026-06-20 00:00:00+00 190724.00 PENDING NEW \N EXPORT WITH_RETURN \N \N 10.000 t ETB \N \N \N 1 b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-19 07:24:49.65+00 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-19 07:25:23.966+00 \N \N 0 t \N 2026-06-19 07:24:05.057165+00 2026-06-19 07:30:43.323936+00 \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 bbd94d0d-8876-4f4e-a330-816db40d8767 106d494a-d8f5-45fb-81cb-f593b3c55b84 \N \N 2133bd34-214e-4926-b9f4-b308aa9ddb4d \N 2026-06-19 07:25:32.855+00 2026-06-19 07:25:43.153+00 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-19 07:25:43.153+00 Operation: Export | Cargo Type: Container (1× 40FT Standard) 2026-06-19 07:25:43.153+00 CONTAINER EXP_CON_ETB_TRANSPORT_ONLY 2026-06-19 07:25:24.06+00 {"currency": "ETB", "lineItems": [{"code": "CONTAINER_EXPORT", "amount": 143043, "currency": "ETB", "description": "Base rail (CONTAINER_EXPORT)"}, {"code": "SHIPPING_LINE_FEE", "amount": 15894, "currency": "ETB", "description": "Surcharge: SHIPPING_LINE_FEE"}, {"code": "HAZARDOUS_CARGO", "amount": 23840, "currency": "ETB", "description": "Surcharge: HAZARDOUS_CARGO"}, {"code": "CONSOLIDATION_FEE", "amount": 7947, "currency": "ETB", "description": "Surcharge: CONSOLIDATION_FEE"}], "generatedAt": "2026-06-19T07:24:05.714Z", "totalAmount": 190724} cd368877-11ea-4d02-8dd1-03a5f2ca98a9 \N ELIGIBLE \N \N \N f \N a9898a8c-ffa8-47c5-9a75-af108e001ee0 \N \N
+853672fc-063b-4ef0-8413-c8c1f66b0e65 BK-2026-000040 \N PENDING_APPROVAL 2026-06-18 00:00:00+00 1200.00 PENDING NEW \N EXPORT WITH_RETURN \N \N 20.000 t USD \N \N \N 1 b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-19 08:04:27.913+00 \N \N \N \N 517 t \N 2026-06-19 08:02:40.689683+00 2026-06-19 08:04:27.914202+00 \N 17964b5f-4b99-4f0e-b855-1aa5d4237934 1acf9b6a-5a6e-4022-b194-59a6f638146e 106d494a-d8f5-45fb-81cb-f593b3c55b84 \N \N 12d5316e-de1e-4f32-9e41-4120d90af947 \N \N \N \N \N \N \N CONTAINER \N \N {"currency": "USD", "lineItems": [{"code": "CONTAINER_EXPORT", "amount": 900, "currency": "USD", "description": "Base rail (CONTAINER_EXPORT)"}, {"code": "SHIPPING_LINE_FEE", "amount": 100, "currency": "USD", "description": "Surcharge: SHIPPING_LINE_FEE"}, {"code": "HAZARDOUS_CARGO", "amount": 150, "currency": "USD", "description": "Surcharge: HAZARDOUS_CARGO"}, {"code": "CONSOLIDATION_FEE", "amount": 50, "currency": "USD", "description": "Surcharge: CONSOLIDATION_FEE"}], "generatedAt": "2026-06-19T08:02:40.970Z", "totalAmount": 1200} 07e6657b-5943-434a-930c-5eb4898be1bc \N NOT_SCHEDULED \N \N \N f \N 4b45c7f3-4d43-4a6e-b6ac-06bc6b24efef \N \N
+476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0 BK-2026-000033 \N EXPIRED 2026-06-18 00:00:00+00 190479.00 PENDING NEW \N EXPORT WITH_RETURN \N \N 23.000 t ETB \N \N \N 1 b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-18 22:16:28.853+00 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-18 22:16:46.625+00 \N \N 0 t \N 2026-06-18 22:15:12.794066+00 2026-06-18 22:22:27.420778+00 \N 17964b5f-4b99-4f0e-b855-1aa5d4237934 1acf9b6a-5a6e-4022-b194-59a6f638146e 106d494a-d8f5-45fb-81cb-f593b3c55b84 \N \N 2133bd34-214e-4926-b9f4-b308aa9ddb4d \N 2026-06-18 22:17:01.712+00 2026-06-18 22:17:27.206+00 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-18 22:17:27.206+00 Operation: Export | Cargo Type: Container (1× 40FT Standard) 2026-06-18 22:17:27.206+00 CONTAINER EXP_CON_ETB_TRANSPORT_ONLY 2026-06-18 22:16:47.056+00 {"currency": "ETB", "lineItems": [{"code": "CONTAINER_EXPORT", "amount": 142859, "currency": "ETB", "description": "Base rail (CONTAINER_EXPORT)"}, {"code": "SHIPPING_LINE_FEE", "amount": 15873, "currency": "ETB", "description": "Surcharge: SHIPPING_LINE_FEE"}, {"code": "HAZARDOUS_CARGO", "amount": 23810, "currency": "ETB", "description": "Surcharge: HAZARDOUS_CARGO"}, {"code": "CONSOLIDATION_FEE", "amount": 7937, "currency": "ETB", "description": "Surcharge: CONSOLIDATION_FEE"}], "generatedAt": "2026-06-18T22:15:15.057Z", "totalAmount": 190479} 14825537-9f89-46f1-b727-cda8aea4451f \N ELIGIBLE \N \N \N f \N 4b45c7f3-4d43-4a6e-b6ac-06bc6b24efef \N \N
+3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1 BK-2026-000034 \N EXPIRED 2026-06-18 00:00:00+00 190724.00 PENDING NEW \N EXPORT WITH_RETURN \N \N 20.000 t ETB \N \N \N 1 b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-19 06:39:35.054+00 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-19 06:40:11.906+00 \N \N 0 t \N 2026-06-19 06:32:55.234224+00 2026-06-19 06:49:31.964037+00 \N 17964b5f-4b99-4f0e-b855-1aa5d4237934 1acf9b6a-5a6e-4022-b194-59a6f638146e 106d494a-d8f5-45fb-81cb-f593b3c55b84 \N \N 2133bd34-214e-4926-b9f4-b308aa9ddb4d \N 2026-06-19 06:44:15.381+00 2026-06-19 06:44:31.772+00 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-19 06:44:31.772+00 Operation: Export | Cargo Type: Container (1× 40FT Standard) 2026-06-19 06:44:31.772+00 CONTAINER EXP_CON_ETB_TRANSPORT_ONLY 2026-06-19 06:40:11.988+00 {"currency": "ETB", "lineItems": [{"code": "CONTAINER_EXPORT", "amount": 143043, "currency": "ETB", "description": "Base rail (CONTAINER_EXPORT)"}, {"code": "SHIPPING_LINE_FEE", "amount": 15894, "currency": "ETB", "description": "Surcharge: SHIPPING_LINE_FEE"}, {"code": "HAZARDOUS_CARGO", "amount": 23840, "currency": "ETB", "description": "Surcharge: HAZARDOUS_CARGO"}, {"code": "CONSOLIDATION_FEE", "amount": 7947, "currency": "ETB", "description": "Surcharge: CONSOLIDATION_FEE"}], "generatedAt": "2026-06-19T06:32:57.334Z", "totalAmount": 190724} 14825537-9f89-46f1-b727-cda8aea4451f \N ELIGIBLE \N \N \N f \N 4b45c7f3-4d43-4a6e-b6ac-06bc6b24efef \N \N
+883f45df-c6c9-4613-ad5c-8c3d189b5009 BK-2026-000035 \N DRAFT 2026-06-18 00:00:00+00 333766.00 PENDING NEW \N EXPORT WITH_RETURN \N \N 60.000 t ETB \N \N \N 1 \N \N \N \N \N \N 0 t \N 2026-06-19 06:41:45.607739+00 2026-06-19 06:42:34.453782+00 \N 17964b5f-4b99-4f0e-b855-1aa5d4237934 1acf9b6a-5a6e-4022-b194-59a6f638146e 106d494a-d8f5-45fb-81cb-f593b3c55b84 \N \N 5b024d2f-c127-4233-b96f-29cf543b78a1 \N \N \N \N \N \N \N CONTAINER \N \N {"currency": "ETB", "lineItems": [{"code": "CONTAINER_EXPORT", "amount": 286085, "currency": "ETB", "description": "Base rail (CONTAINER_EXPORT)"}, {"code": "SHIPPING_LINE_FEE", "amount": 15894, "currency": "ETB", "description": "Surcharge: SHIPPING_LINE_FEE"}, {"code": "HAZARDOUS_CARGO", "amount": 23840, "currency": "ETB", "description": "Surcharge: HAZARDOUS_CARGO"}, {"code": "CONSOLIDATION_FEE", "amount": 7947, "currency": "ETB", "description": "Surcharge: CONSOLIDATION_FEE"}], "generatedAt": "2026-06-19T06:42:34.452Z", "totalAmount": 333766} a1926ac9-639a-4758-b10a-a72f4abf2398 \N NOT_SCHEDULED \N \N \N f \N 4b45c7f3-4d43-4a6e-b6ac-06bc6b24efef \N \N
+e3f09fde-b4af-4864-8bdd-929d206f7778 BK-2026-000036 \N EXPIRED 2026-06-20 00:00:00+00 174830.00 PENDING NEW \N EXPORT WITH_RETURN \N \N 20.000 t ETB \N \N \N 1 b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-19 07:15:44.362+00 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-19 07:16:11.906+00 \N \N 0 t \N 2026-06-19 07:14:54.105099+00 2026-06-19 07:22:26.242993+00 \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 bbd94d0d-8876-4f4e-a330-816db40d8767 106d494a-d8f5-45fb-81cb-f593b3c55b84 \N \N \N \N 2026-06-19 07:16:48.64+00 2026-06-19 07:17:26.087+00 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-19 07:17:26.087+00 Operation: Export | Cargo Type: Container (1× 40FT Standard) 2026-06-19 07:17:26.087+00 CONTAINER EXP_CON_ETB_TRANSPORT_ONLY 2026-06-19 07:16:11.98+00 {"currency": "ETB", "lineItems": [{"code": "CONTAINER_EXPORT", "amount": 143043, "currency": "ETB", "description": "Base rail (CONTAINER_EXPORT)"}, {"code": "HAZARDOUS_CARGO", "amount": 23840, "currency": "ETB", "description": "Surcharge: HAZARDOUS_CARGO"}, {"code": "CONSOLIDATION_FEE", "amount": 7947, "currency": "ETB", "description": "Surcharge: CONSOLIDATION_FEE"}], "generatedAt": "2026-06-19T07:14:54.798Z", "totalAmount": 174830} cd368877-11ea-4d02-8dd1-03a5f2ca98a9 \N ELIGIBLE \N \N \N f \N a9898a8c-ffa8-47c5-9a75-af108e001ee0 \N \N
+fc25a460-8df8-40e3-8c27-5c37f598b7eb BK-2026-000038 \N CHANGES_REQUESTED 2026-06-20 00:00:00+00 190724.00 PENDING NEW \N EXPORT WITH_RETURN \N \N 20.000 t ETB \N \N \N 1 \N \N \N \N \N \N 0 t \N 2026-06-19 07:32:35.880619+00 2026-06-19 07:34:03.181459+00 \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 bbd94d0d-8876-4f4e-a330-816db40d8767 106d494a-d8f5-45fb-81cb-f593b3c55b84 \N \N 2133bd34-214e-4926-b9f4-b308aa9ddb4d \N \N \N \N \N \N \N CONTAINER \N \N {"currency": "ETB", "lineItems": [{"code": "CONTAINER_EXPORT", "amount": 143043, "currency": "ETB", "description": "Base rail (CONTAINER_EXPORT)"}, {"code": "SHIPPING_LINE_FEE", "amount": 15894, "currency": "ETB", "description": "Surcharge: SHIPPING_LINE_FEE"}, {"code": "HAZARDOUS_CARGO", "amount": 23840, "currency": "ETB", "description": "Surcharge: HAZARDOUS_CARGO"}, {"code": "CONSOLIDATION_FEE", "amount": 7947, "currency": "ETB", "description": "Surcharge: CONSOLIDATION_FEE"}], "generatedAt": "2026-06-19T07:32:36.318Z", "totalAmount": 190724} cd368877-11ea-4d02-8dd1-03a5f2ca98a9 \N NOT_SCHEDULED \N \N \N f \N a9898a8c-ffa8-47c5-9a75-af108e001ee0 \N \N
+ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 BK-2026-000039 \N PAID 2026-06-20 00:00:00+00 190724.00 PAID NEW \N EXPORT WITH_RETURN \N \N 20.000 t ETB \N \N \N 1 b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-19 07:35:43.978+00 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-19 07:36:06.121+00 \N \N 0 t \N 2026-06-19 07:35:18.573055+00 2026-06-23 06:15:00.763822+00 \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 bbd94d0d-8876-4f4e-a330-816db40d8767 106d494a-d8f5-45fb-81cb-f593b3c55b84 \N \N 2133bd34-214e-4926-b9f4-b308aa9ddb4d \N 2026-06-19 07:36:19.624+00 2026-06-19 07:36:31.601+00 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-19 07:36:31.601+00 Operation: Export | Cargo Type: Container (1× 40FT Standard) 2026-06-19 07:36:31.601+00 CONTAINER EXP_CON_ETB_TRANSPORT_ONLY 2026-06-19 07:36:06.216+00 {"currency": "ETB", "lineItems": [{"code": "CONTAINER_EXPORT", "amount": 143043, "currency": "ETB", "description": "Base rail (CONTAINER_EXPORT)"}, {"code": "SHIPPING_LINE_FEE", "amount": 15894, "currency": "ETB", "description": "Surcharge: SHIPPING_LINE_FEE"}, {"code": "HAZARDOUS_CARGO", "amount": 23840, "currency": "ETB", "description": "Surcharge: HAZARDOUS_CARGO"}, {"code": "CONSOLIDATION_FEE", "amount": 7947, "currency": "ETB", "description": "Surcharge: CONSOLIDATION_FEE"}], "generatedAt": "2026-06-19T07:35:19.946Z", "totalAmount": 190724} cd368877-11ea-4d02-8dd1-03a5f2ca98a9 1.00 ELIGIBLE \N \N 2026-06-19 07:40:40.867+00 f \N a9898a8c-ffa8-47c5-9a75-af108e001ee0 \N \N
+\.
+
+
+--
+-- Data for Name: cargo_types; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.cargo_types (id, cargo_type_name, parent_group_id, show_free_text_box, requires_director_approval, is_active, display_order, created_at, updated_at, deleted_at, code) FROM stdin;
+c595a840-b423-46f3-87ce-7c0e18abd355 General Cargo \N f f t 1 2026-06-16 17:00:40.976144+00 2026-06-16 17:00:40.976144+00 \N GENERAL
+096bcc1c-c99e-4d31-b011-470106eb90de Grain / Cereals \N f f t 1 2026-06-16 17:56:01.496816+00 2026-06-17 20:08:18.846824+00 \N GRAIN
+962af9be-e8a4-40c7-b118-e31c22667986 Fertilizer \N f f t 2 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.846824+00 \N FERTILIZER
+d68d2fb4-f788-4b2e-917e-84272dc3a1c6 Cement / Clinker \N f f t 3 2026-06-16 17:56:01.496816+00 2026-06-17 20:08:18.846824+00 \N CEMENT
+691bd747-1233-4c66-91fc-1bdc80da8ffb Steel / Rebar \N f t t 4 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.846824+00 \N STEEL
+bce03d48-bc38-43e9-b8fb-2860cb2804b0 Heavy Machinery \N f t t 5 2026-06-16 17:56:01.496816+00 2026-06-17 20:08:18.846824+00 \N MACHINERY
+6a9d9bc6-8ba3-4e3e-8905-7b6eb13ef9ca Other Bulk Cargo \N f f t 6 2026-06-16 17:56:01.496816+00 2026-06-17 20:08:18.846824+00 \N OTHER_BULK
+ce3d15d7-588b-4f80-8a14-b4a00202e116 Bulk \N t f t 7 2026-06-18 11:01:18.934403+00 2026-06-18 11:01:18.934403+00 \N BULK
+55f4a38d-a7c8-4fda-b92d-b5f507fa3ae4 test ce3d15d7-588b-4f80-8a14-b4a00202e116 f f f 8 2026-06-18 20:22:49.884516+00 2026-06-18 20:22:49.884516+00 \N TEST
+b481a2d7-f5a4-4c9f-b727-5785c60174e8 Coffee \N f t t 1 2026-06-16 17:56:01.344427+00 2026-06-22 06:24:34.555297+00 \N COFFEE
+\.
+
+
+--
+-- Data for Name: cargoes; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.cargoes (id, cargo_reference, shipment_id, container_id, cargo_type_id, description, quantity, weight, volume, status, loaded_at, unloaded_at, created_at, updated_at, deleted_at, wagon_booking_allocation_id, booking_id, load_type, receiver_name, delivered_at, delivery_remarks) FROM stdin;
+\.
+
+
+--
+-- Data for Name: companies; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.companies (id, name, type, status, tin, vat_number, fan_number, country, address, phone, email, website, attributes, created_at, updated_at, deleted_at, contact_person_name, contact_person_phone, general_manager_name, general_manager_email, general_manager_phone) FROM stdin;
+57c21f76-8c7f-4085-bc01-09dbc5bacb17 Ethio Mrket customer pending 1234567893 \N 1234567893123456 Addis Ababa Bole +25190223432 yaschalewerkihun6@gmail.com \N {"poaName": "YASCHALEW ERKIHUN", "poaEmail": "yaschalewerkihun6@gmail.com", "poaPhone": "+251929022432", "poaAddress": "Addis Ababa", "poaLocation": "Addis Ababa", "contactPersonName": "YASCHALEW ERKIHUN", "contactPersonPhone": "+251929022432", "generalManagerName": "YASCHALEW ERKIHUN", "generalManagerEmail": "yaschalewerkihun6@gmail.com", "generalManagerPhone": "+251929022432"} 2026-06-16 20:53:16.651764+00 2026-06-16 20:54:53.750036+00 \N \N \N \N \N \N
+cd368877-11ea-4d02-8dd1-03a5f2ca98a9 abe plc customer pending 1234567800 \N 1234567890123411 Addis Ababa Addis Ababa 251912000111 abc@gmail.com \N {"poaName": "seifu", "poaEmail": "aksj11sdn@gmail.com", "poaPhone": "251986680094", "poaAddress": "Addis Ababa, Arada, Addis Ababa, 3578, Ethiopia", "poaLocation": "Addiss ababa", "contactPersonName": "nazar", "contactPersonPhone": "251986680023", "generalManagerName": "seifu", "generalManagerEmail": "aksj11sdn@gmail.com", "generalManagerPhone": "251986680094"} 2026-06-19 07:04:11.318047+00 2026-06-19 07:04:38.16982+00 \N \N \N \N \N \N
+14825537-9f89-46f1-b727-cda8aea4451f teamww customer pending 1234567811 \N 1234567890123411 Addis Ababa Addis Ababa +251251986680099 aksj11sdn@gmail.com \N {"poaName": "Marshal Yordanos", "poaEmail": "aksj11sdnw@gmail.com", "poaPhone": "251986680099", "poaAddress": "Addis Ababa, Arada, Addis Ababa, 3578, Ethiopia", "poaLocation": "Addiss ababa", "contactPersonName": "Marshawl Yordanos", "contactPersonPhone": "251986680023", "generalManagerName": "Marshal Yordanos", "generalManagerEmail": "aksj11sdn@gmail.com", "generalManagerPhone": "251986680094"} 2026-06-16 21:40:04.764233+00 2026-06-16 21:40:50.310108+00 \N \N \N \N \N \N
+c863ae76-f85e-4321-93f6-cb8842255ecb marshal customer pending 1134567811 \N 1234567890123111 Addis Ababa Addis Ababa 251986680094 marshal@gmail.com \N {"poaName": "Marshal Yordanos", "poaEmail": "marshyordanos@gmail.com", "poaPhone": "251986680094", "poaAddress": "Addis Ababa", "poaLocation": "Addiss ababa", "contactPersonName": "Marshal Yordanos", "contactPersonPhone": "251986680094", "generalManagerName": "Marshal Yordanos", "generalManagerEmail": "marshyordanos@gmail.com", "generalManagerPhone": "251986680094"} 2026-06-18 22:19:25.829026+00 2026-06-18 22:19:38.506885+00 \N \N \N \N \N \N
+e43c69c1-6799-4a6a-b504-59d3d4b17710 Startup Company customer pending 1234567895 \N 2058295013469024 Adama Bole +251251930075932 statrup@gmail.com \N {"contactPersonName": "Ababe Chala", "contactPersonPhone": "+251987666553", "generalManagerName": "Abebe Bikila", "generalManagerEmail": "hageritina27@gmail.com", "generalManagerPhone": "251930075932"} 2026-06-17 07:52:47.509852+00 2026-06-17 07:54:27.628191+00 \N \N \N \N \N \N
+a1926ac9-639a-4758-b10a-a72f4abf2398 Startup Company33 customer pending 1234567899 \N 2058295013469099 Adama 808walden way 251930075932 yeshi.tadesse16@gmail.com \N {"contactPersonName": "Mezemir F Wagaw", "contactPersonPhone": "+25134567890"} 2026-06-19 06:28:22.537493+00 2026-06-19 06:28:33.639965+00 \N \N \N \N \N \N
+13306dea-07fc-4304-8f5b-8eade0129e7c Mulu plc customer pending 1234567894 \N 1234567890123456 Addis Ababa, Ethiopia Tolo +251011929292 mulu@gmail.com \N {"poaName": "Muluhabit A Mehari", "poaEmail": "betmul@gmail.com", "poaPhone": "15714223906", "poaAddress": "6063 Estates Dr", "contactPersonName": "Muluhabit A Mehari", "contactPersonPhone": "15714223906", "generalManagerName": "Muluhabit A Mehari", "generalManagerEmail": "betmul@gmail.com", "generalManagerPhone": "15714223906"} 2026-06-16 20:50:44.887955+00 2026-06-16 20:51:43.127231+00 \N \N \N \N \N \N
+4709da33-c76d-4c0b-b7a5-d3f57f1faeb9 Train Scheduling Demo Customer customer active 1234567890 1234567890 1234567890123456 Ethiopia Demo Address 251900000001 train-scheduling-demo@edr.local \N \N 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N Train Scheduling 251900000001 Demo Manager train-scheduling-demo@edr.local 251900000001
+637eb14c-6bd6-4821-b359-b7b7bd5b916a uher customer pending 1234567879 \N 1234567890091232 Excellerent Piassa +25176653625 ej@ihfi.com \N {"poaName": "aewrjo", "poaEmail": "irhuhw@hugfa.com", "poaPhone": "251923495365", "poaAddress": "wrwe", "poaLocation": "aerw", "contactPersonName": "Naod Abasiessie", "contactPersonPhone": "+251251923495365", "generalManagerName": "as", "generalManagerEmail": "adji@ert.com", "generalManagerPhone": "+2517845635356"} 2026-06-16 20:48:41.023046+00 2026-06-16 20:54:10.765838+00 \N \N \N \N \N \N
+b0e55d85-4fa6-4ed0-bfc8-35a9b5301d17 TRIA Plc customer pending 0097284516 \N 2852138062948931 Addis Ababa Bole +251938121414 tria@gmail.com \N {"contactPersonName": "Adam", "contactPersonPhone": "+251938121414", "generalManagerName": "Jhon", "generalManagerEmail": "jhon@gmail.com", "generalManagerPhone": "+251938121414"} 2026-06-17 06:51:30.04572+00 2026-06-18 13:35:15.432226+00 \N \N \N \N \N \N
+3d2285cb-5a1f-4d47-b133-0c37cd651bb1 Tria Freight PLC customer pending 0048965868 \N 1234567890123654 Addis Ababa Yeka +251922557898 tria@triagroup.com \N {"poaName": "Mikias Kal ", "poaEmail": "Mikias@triagroup.com", "poaPhone": "+251922556878", "poaAddress": "Yeka sub city", "poaLocation": "Ethiopia", "generalManagerName": "Mikias Kal ", "generalManagerEmail": "Miki@triagroup.com", "generalManagerPhone": "+251922556789"} 2026-06-19 06:39:39.216063+00 2026-06-19 06:45:53.291207+00 \N \N \N \N \N \N
+07e6657b-5943-434a-930c-5eb4898be1bc ALL Global Forwarding customer pending 1234567891 \N 1234567890123654 Addis Ababa Yeka +251922557898 Allops@allgroup.com \N {"poaName": "ji", "poaEmail": "ju@huyg.com", "poaPhone": "25195413841", "poaAddress": "hgjf", "poaLocation": "jk", "contactPersonName": "kji", "contactPersonPhone": "+2519864353", "generalManagerName": "hig", "generalManagerEmail": "huiu@gmail.com", "generalManagerPhone": "+2519987127"} 2026-06-17 06:15:11.074728+00 2026-06-17 06:54:01.051138+00 \N \N \N \N \N \N
+ea147ddc-3ab7-4251-9278-d429cf864bf1 Compn1 customer pending 4723872389 \N 4738297428937482 fhsdjkh fhkjsdhfsjkd +251946669787 comp@gmail.com \N {"contactPersonName": "Company", "contactPersonPhone": "+25198798789", "generalManagerName": "general Manager", "generalManagerEmail": "gm@gmail.com", "generalManagerPhone": "+251934782347"} 2026-06-17 06:46:58.068997+00 2026-06-19 11:06:54.101943+00 \N \N \N \N \N \N
+\.
+
+
+--
+-- Data for Name: company_profiles; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.company_profiles (id, company_id, type, reference, status, business_license, attributes, created_at, updated_at, deleted_at) FROM stdin;
+\.
+
+
+--
+-- Data for Name: consignments; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.consignments (id, created_at, updated_at, deleted_at, booking_id, tracking_number, cargo_type, weight_kg, status, origin_station, destination_station) FROM stdin;
+\.
+
+
+--
+-- Data for Name: container_types; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.container_types (id, code, label, is_active, created_at, updated_at, deleted_at, size_ft, is_reefer, is_open_top, display_order, wagons_per_unit) FROM stdin;
+a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 20FT 20FT Standard t 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.846824+00 \N 20 f f 1 0.50
+b76986fe-8ab5-420b-afb0-7fb4bbe270ef 40FT 40FT Standard t 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.846824+00 \N 40 f f 2 1.00
+77945c09-6db3-43ba-8d25-01f464eb4fa9 20FT_REEFER 20FT Reefer t 2026-06-16 17:56:01.496816+00 2026-06-18 10:46:08.011477+00 2026-06-18 10:46:08.011477+00 20 t f 3 0.50
+046d519f-6ca3-4cc1-b7f9-72707d968231 20_FEET 20 Feet f 2026-06-18 10:45:40.261062+00 2026-06-18 10:46:13.257836+00 2026-06-18 10:46:13.257836+00 20 f f 5 2.00
+ef4940b0-ab80-4f80-981e-f27ddec57a8c 40FT_REEFER 40FT Reefer t 2026-06-16 17:56:01.496816+00 2026-06-18 10:46:17.42376+00 2026-06-18 10:46:17.42376+00 40 t f 4 1.00
+8d9e7a17-3da0-41ac-9245-a772749e3394 HIGH_CUBE 40 feet High Cube t 2026-06-18 11:51:00.774508+00 2026-06-19 08:04:24.262345+00 2026-06-19 08:04:24.262345+00 40 f f 3 1.00
+\.
+
+
+--
+-- Data for Name: containers; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.containers (id, container_number, container_type_id, wagon_id, "position", tare_weight, max_gross_weight, seal_number, status, created_at, updated_at, deleted_at, booking_id, wagon_booking_allocation_id, booking_container_id) FROM stdin;
+fc7bed48-c09e-42a6-82bc-9e81eb39446b CONT-DEMO-001 b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N \N 4.00 32.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+aa6b09f8-13d4-4e43-af40-110ed22f4f3b CONT-DEMO-002 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N \N 2.50 24.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+f2d301d5-928e-4089-8123-a1e0ff8fa583 CONT-DEMO-003 b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N \N 4.00 32.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+3897a83e-e00a-413a-a16f-a84af5b4e49d CONT-DEMO-004 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N \N 2.50 24.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+8de804ab-cf0a-4f4c-9bfb-8d73809b5931 CONT-DEMO-005 b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N \N 4.00 32.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+dcbee023-0819-4c42-aca1-cfd290dac4c8 CONT-DEMO-006 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N \N 2.50 24.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+e5b924fe-930c-41b2-8122-5ced34dc6513 CONT-DEMO-007 b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N \N 4.00 32.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+b99cc3e1-7a4f-4755-871b-1d201d70389c CONT-DEMO-008 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N \N 2.50 24.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+c8d39e03-f5c4-4de5-8883-67ee08a2460b CONT-DEMO-009 b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N \N 4.00 32.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+de181884-3e5d-4aa7-9219-c551f9d31ec9 CONT-DEMO-010 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N \N 2.50 24.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+36521181-1f30-45ce-b28d-ec652534d5b9 CONT-DEMO-011 b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N \N 4.00 32.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+6eb1dcac-babb-4166-96bc-5b335fc49415 CONT-DEMO-012 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N \N 2.50 24.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+b98da680-0291-417c-b96a-8ec1741e2157 CONT-DEMO-013 b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N \N 4.00 32.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+f6c13475-d8bd-48e1-bf48-6fa0074281dd CONT-DEMO-014 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N \N 2.50 24.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+b1206088-d698-4dae-9afd-8d5e0ca4e85a CONT-DEMO-015 b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N \N 4.00 32.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+147872ad-2a47-4221-b624-89be0a8b9b88 CONT-DEMO-016 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N \N 2.50 24.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+332fe8bc-2807-40c0-b457-e2a743f3510e CONT-DEMO-017 b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N \N 4.00 32.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+c2f10903-baef-480d-8143-9c1547a5529d CONT-DEMO-018 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N \N 2.50 24.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+28939e0e-16e4-46b0-bd90-ac1b6f7bd1f2 CONT-DEMO-019 b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N \N 4.00 32.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+391b0228-6e67-4409-8b62-1fa847c403c7 CONT-DEMO-020 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N \N 2.50 24.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+2a8e3cc1-4c4e-4485-ae85-2a7e5c9debbf CONT-DEMO-021 b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N \N 4.00 32.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+5bbc0a67-ca51-4fd2-9831-6a5f3f738aac CONT-DEMO-022 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N \N 2.50 24.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+83692ac0-0d1a-4c6c-a1f8-f4355a84fcae CONT-DEMO-023 b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N \N 4.00 32.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+1454f1cd-f299-4cbd-acbd-0614f9fc7088 CONT-DEMO-024 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N \N 2.50 24.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+89c442e6-c96c-40a4-9c11-6224a8bca7fe CONT-DEMO-025 b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N \N 4.00 32.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+9dbceb0c-f3a7-4bbb-b6d5-27f6cc6b514e CONT-DEMO-026 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N \N 2.50 24.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+b146548c-f781-456c-8ef3-1fc5ae0b6615 CONT-DEMO-027 b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N \N 4.00 32.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+84454c83-2902-4c09-92b8-52f0ccd83440 CONT-DEMO-028 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N \N 2.50 24.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+6fc7634c-b235-4bf9-8bdd-d259729b0837 CONT-DEMO-029 b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N \N 4.00 32.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+754e95da-fcbb-494c-9c30-229ec3f22e12 CONT-DEMO-030 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N \N 2.50 24.50 \N AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-17 20:08:18.7107+00 \N \N \N \N
+\.
+
+
+--
+-- Data for Name: customers; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.customers (id, first_name, last_name, email, phone, company_name, company_email, company_phone, company_location, company_address, customer_type, status, contact_person_name, contact_person_phone, tin_number, vat_number, fan_number, general_manager_name, general_manager_email, general_manager_phone, poa_name, poa_phone, poa_address, poa_email, poa_location, notes, created_at, updated_at, deleted_at) FROM stdin;
+\.
+
+
+--
+-- Data for Name: dropdown_options; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.dropdown_options (id, created_at, updated_at, deleted_at, setting_id, value, label, note, is_disabled, display_order, meta) FROM stdin;
+\.
+
+
+--
+-- Data for Name: dropdown_settings; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.dropdown_settings (id, created_at, updated_at, deleted_at, code, label, description, multiple, meta) FROM stdin;
+7a44dcb4-a5ee-4f95-8770-b3cb09c42450 2026-06-17 07:05:28.932454+00 2026-06-17 07:05:28.932454+00 \N file file file upload t {"version": "1.0", "clearable": true, "searchable": true, "permissions": []}
+\.
+
+
+--
+-- Data for Name: external_profiles; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.external_profiles (id, user_id, company_id, first_name, last_name, email, phone, national_id, job_title, is_primary_contact, created_at, updated_at, deleted_at) FROM stdin;
+11e5c121-3cc7-491d-92e0-44390e1c7aae 2fc3c733-8c49-47db-b2b4-8f75f522611e 637eb14c-6bd6-4821-b359-b7b7bd5b916a Naod Abasiessie naodzerihun@gmail.com +251923495365 \N \N t 2026-06-16 20:48:41.027244+00 2026-06-16 20:48:41.027244+00 \N
+ac3178d8-5fa1-46b7-9fdf-51f556ea75ab f3905a90-b034-451c-8ba6-6b929105d423 13306dea-07fc-4304-8f5b-8eade0129e7c Muluhabt Amsalu betmul@gmail.com +251940393837 \N \N t 2026-06-16 20:50:44.893577+00 2026-06-16 20:50:44.893577+00 \N
+34f68e6f-dd3c-4195-ab18-2879c9c93eeb 892478ff-b6f9-4389-94f2-cab4e830c5aa 57c21f76-8c7f-4085-bc01-09dbc5bacb17 YASCHALEW ERKIHUN yaschalewerkihun6@gmail.com +251929022432 \N \N t 2026-06-16 20:53:16.657266+00 2026-06-16 20:53:16.657266+00 \N
+ffb6bd4c-8bf2-4b3f-a914-a7bd47b761d5 8d9e3a2a-558c-4cca-987c-202dc8ac3c5c 14825537-9f89-46f1-b727-cda8aea4451f Marshal Yordanos marshyordanos@gmail.com +251986680094 \N \N t 2026-06-16 21:40:04.7707+00 2026-06-16 21:40:04.7707+00 \N
+2668d919-93ac-4835-aa23-764e09c933eb 6f001573-e7e0-4952-81ad-e422cfd4dc1e 07e6657b-5943-434a-930c-5eb4898be1bc Alazar Abate alazarzegeye06@gmail.com +251922556878 \N \N t 2026-06-17 06:15:11.079823+00 2026-06-17 06:15:11.079823+00 \N
+5a081398-0b5d-4068-a2e6-35e637f5b51d c15ee839-a3fb-4d0a-8848-874dafeac860 ea147ddc-3ab7-4251-9278-d429cf864bf1 Nati Wondisha nathnaelwonisha@gmail.com +251946669787 \N \N t 2026-06-17 06:46:58.07393+00 2026-06-17 06:46:58.07393+00 \N
+f1567b42-388b-4101-a9f6-21b209a57796 f2bd0214-cdcb-47aa-ac28-bd2fafc51a12 b0e55d85-4fa6-4ed0-bfc8-35a9b5301d17 Feven Tamrat feventamrat4@gmail.com +251938121414 \N \N t 2026-06-17 06:51:30.054336+00 2026-06-17 06:51:30.054336+00 \N
+52859a3d-8368-4d70-b376-117d63b5d2c4 01967f26-5ad0-419c-aa4d-6a5019f8687e e43c69c1-6799-4a6a-b504-59d3d4b17710 Hager Tadesse hageritina27@gmail.com +251930075932 \N \N t 2026-06-17 07:52:47.563142+00 2026-06-17 07:52:47.563142+00 \N
+5a03c6b8-1de1-402c-80a0-a6ce3af34296 804bc335-957c-4b13-90ca-43172ef2887b c863ae76-f85e-4321-93f6-cb8842255ecb branch 10 marshyordanos32@gmail.com +251986680044 \N \N t 2026-06-18 22:19:25.837299+00 2026-06-18 22:19:25.837299+00 \N
+5d272af8-5ac0-42f9-8568-619db6071154 3d4937e9-3a37-4317-a001-48d555dffb9f a1926ac9-639a-4758-b10a-a72f4abf2398 Mezemir Wagaw hageritina277@gmail.com +251987654345 \N \N t 2026-06-19 06:28:22.541384+00 2026-06-19 06:28:22.541384+00 \N
+3887e344-7054-4c17-8929-7a3f4d605a16 40106f87-7df8-4d7f-bf2e-d5096da10417 3d2285cb-5a1f-4d47-b133-0c37cd651bb1 Mikias Kal mikikal@gmail.com +251925658789 \N \N t 2026-06-19 06:39:39.22197+00 2026-06-19 06:39:39.22197+00 \N
+2c8a2490-d707-4b4a-a5c9-99cb7fbe5855 0e1e709c-7bf6-4852-869e-678924f2315e cd368877-11ea-4d02-8dd1-03a5f2ca98a9 Main Yordanos marshyordanos10@gmail.com +251986680089 \N \N t 2026-06-19 07:04:11.324264+00 2026-06-19 07:04:11.324264+00 \N
+\.
+
+
+--
+-- Data for Name: facilities; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.facilities (id, code, name, description, facility_type, facility_status, location_name, country, city, address, latitude, longitude, capacity, is_active, notes, created_at, updated_at, deleted_at) FROM stdin;
+\.
+
+
+--
+-- Data for Name: ff_clients; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.ff_clients (id, forwarder_company_id, client_company_id, relationship_type, can_book_on_behalf, can_view_documents, created_at, updated_at, deleted_at) FROM stdin;
+\.
+
+
+--
+-- Data for Name: file_upload_fields; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.file_upload_fields (id, setting_id, file_key, file_label, help_text, is_required, is_multiple, max_files, allowed_extensions, max_size_mb, display_order, created_at, updated_at, deleted_at) FROM stdin;
+04afc70b-b244-469d-937e-a5ddeae5596e 5f2a404c-157c-48e0-8f10-aefb4a909ffc BUSINESS_Li Business License \N t f 1 {png} 10 1 2026-06-16 21:12:16.547098+00 2026-06-16 21:12:16.547098+00 \N
+51e5b842-4d9c-41ca-8e91-c7f4fb9f1fee 5f2a404c-157c-48e0-8f10-aefb4a909ffc TIN_no TIN NUmber \N t f 1 {png} 10 2 2026-06-16 21:12:16.547098+00 2026-06-16 21:12:16.547098+00 \N
+e631fa8c-f036-4390-84ad-5ce2e0917304 5f2a404c-157c-48e0-8f10-aefb4a909ffc PASPORT Pasport \N t f 1 {png} 10 3 2026-06-16 21:12:16.547098+00 2026-06-16 21:12:16.547098+00 \N
+0aadd7ab-3f03-4d73-a293-3bea56b31e15 d3b1740a-d69f-470c-a597-8e90794b1e55 tin_number Tin Number \N t f 1 {pdf} 10 1 2026-06-19 06:24:38.006008+00 2026-06-19 06:24:38.006008+00 \N
+433d78f1-790e-465b-9d6b-d3e062840e1f d3b1740a-d69f-470c-a597-8e90794b1e55 registered_licence Business License \N t f 1 {pdf} 10 2 2026-06-19 06:24:38.006008+00 2026-06-19 06:24:38.006008+00 \N
+d76da226-38e3-4169-bfc2-92df1e1b7d31 378ee6b2-e234-4de8-9d4e-bb5cd5aa7279 important imp \N t t 3 {pdf} 2 1 2026-06-17 07:03:23.512303+00 2026-06-17 07:03:23.512303+00 \N
+112208df-adc5-4d83-a575-ebd71e7d7d2a 432c5750-6965-426a-a327-b4f9934b280f business_license Business License / Trade License Verified against the government trade system during registration. t f 1 {pdf,jpg,jpeg,png} 10 1 2026-06-17 20:08:18.928091+00 2026-06-17 20:08:18.928091+00 \N
+5f0cc005-6516-4faa-bf99-273a7c2f2695 432c5750-6965-426a-a327-b4f9934b280f tin_certificate TIN Certificate Verified against the TIN registry during registration. t f 1 {pdf,jpg,jpeg,png} 10 2 2026-06-17 20:08:18.928091+00 2026-06-17 20:08:18.928091+00 \N
+ce4b00d5-e03c-426e-8ff5-4af688085e2a 432c5750-6965-426a-a327-b4f9934b280f national_id_passport National ID / Passport Verified against the National ID API during registration. t f 1 {pdf,jpg,jpeg,png} 10 3 2026-06-17 20:08:18.928091+00 2026-06-17 20:08:18.928091+00 \N
+a711d8b4-efec-4c42-90df-4ed12990762e e4b33374-6fad-41fb-9c5e-72ff26f6c4ef business_license Business License / Trade License Verified against the government trade system during registration. t f 1 {pdf,jpg,jpeg,png} 10 1 2026-06-17 20:08:18.928091+00 2026-06-17 20:08:18.928091+00 \N
+2aa68ef2-886a-47ba-8603-9b1c01bdc6b5 e4b33374-6fad-41fb-9c5e-72ff26f6c4ef tin_certificate TIN Certificate Verified against the TIN registry during registration. t f 1 {pdf,jpg,jpeg,png} 10 2 2026-06-17 20:08:18.928091+00 2026-06-17 20:08:18.928091+00 \N
+9bf26521-1eaa-4ef2-8bf3-b191317c4780 e4b33374-6fad-41fb-9c5e-72ff26f6c4ef national_id_passport National ID / Passport Verified against the National ID API during registration. t f 1 {pdf,jpg,jpeg,png} 10 3 2026-06-17 20:08:18.928091+00 2026-06-17 20:08:18.928091+00 \N
+429d8bc2-5b5a-46e8-b086-21e64da0723d 941f7790-ca89-4074-832e-2e72303cbb06 business_license Business License / Trade License Verified against the government trade system during registration. t f 1 {pdf,jpg,jpeg,png} 10 1 2026-06-17 20:08:18.928091+00 2026-06-17 20:08:18.928091+00 \N
+e3e62727-582a-4b3f-8ec0-52095e917ad0 941f7790-ca89-4074-832e-2e72303cbb06 tin_certificate TIN Certificate Verified against the TIN registry during registration. t f 1 {pdf,jpg,jpeg,png} 10 2 2026-06-17 20:08:18.928091+00 2026-06-17 20:08:18.928091+00 \N
+8651844b-7979-4982-8170-35886116c21e 941f7790-ca89-4074-832e-2e72303cbb06 national_id_passport National ID / Passport Verified against the National ID API during registration. t f 1 {pdf,jpg,jpeg,png} 10 3 2026-06-17 20:08:18.928091+00 2026-06-17 20:08:18.928091+00 \N
+c24c21d2-9111-40b6-bfb4-5290df5476be ab7b073f-492b-4b4c-984e-aaee03070159 business_license Business License / Trade License Verified against the government trade system during registration. t f 1 {pdf,jpg,jpeg,png} 10 1 2026-06-17 20:08:18.928091+00 2026-06-17 20:08:18.928091+00 \N
+ebb6d5f7-a985-478f-9ec0-6af0df70d192 ab7b073f-492b-4b4c-984e-aaee03070159 tin_certificate TIN Certificate Verified against the TIN registry during registration. t f 1 {pdf,jpg,jpeg,png} 10 2 2026-06-17 20:08:18.928091+00 2026-06-17 20:08:18.928091+00 \N
+88f3b571-e82a-4e27-8507-cc06cf47ca71 ab7b073f-492b-4b4c-984e-aaee03070159 national_id_passport National ID / Passport Verified against the National ID API during registration. t f 1 {pdf,jpg,jpeg,png} 10 3 2026-06-17 20:08:18.928091+00 2026-06-17 20:08:18.928091+00 \N
+\.
+
+
+--
+-- Data for Name: file_upload_settings; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.file_upload_settings (id, code, label, description, entity, created_at, updated_at, deleted_at) FROM stdin;
+432c5750-6965-426a-a327-b4f9934b280f company_onboarding_documents_customer Customer onboarding documents Required documents for external company onboarding. The same set applies to customers, forwarders, transporters, and brokers. customer 2026-06-16 17:56:01.570695+00 2026-06-17 20:08:18.928091+00 \N
+e4b33374-6fad-41fb-9c5e-72ff26f6c4ef company_onboarding_documents_forwarder Forwarder onboarding documents Required documents for external company onboarding. The same set applies to customers, forwarders, transporters, and brokers. other 2026-06-16 17:56:01.570695+00 2026-06-17 20:08:18.928091+00 \N
+725dd398-9b17-4475-92a9-02b5facc021c customer_documents1 Customer Documents \N other 2026-06-17 11:48:46.415567+00 2026-06-17 11:49:14.461474+00 2026-06-17 11:49:14.461474+00
+941f7790-ca89-4074-832e-2e72303cbb06 company_onboarding_documents_transporter Transporter onboarding documents Required documents for external company onboarding. The same set applies to customers, forwarders, transporters, and brokers. other 2026-06-16 17:56:01.570695+00 2026-06-17 20:08:18.928091+00 \N
+378ee6b2-e234-4de8-9d4e-bb5cd5aa7279 custom clearance custo clearance Custom clearance other 2026-06-17 07:01:25.648171+00 2026-06-17 07:01:36.918848+00 \N
+5f2a404c-157c-48e0-8f10-aefb4a909ffc customer_documents customer_documents \N other 2026-06-16 20:58:17.067914+00 2026-06-17 07:03:51.990867+00 2026-06-17 07:03:51.990867+00
+ab7b073f-492b-4b4c-984e-aaee03070159 company_onboarding_documents_forwarder_dj Djibouti forwarder onboarding documents Required documents for external company onboarding. The same set applies to customers, forwarders, transporters, and brokers. other 2026-06-16 17:56:01.570695+00 2026-06-17 20:08:18.928091+00 \N
+d3b1740a-d69f-470c-a597-8e90794b1e55 customer_file_documents Customer Documents Customer File Documents other 2026-06-19 05:47:31.180804+00 2026-06-19 05:47:31.180804+00 \N
+5df38374-898d-4381-bba5-7588b265d29f customer_profile Customer Profile customer_documents other 2026-06-17 08:41:15.000063+00 2026-06-17 14:06:16.284375+00 2026-06-17 14:06:16.284375+00
+7f130bd9-623c-4eb6-82c6-7dd1f08e44c8 customer_documents_test customer documents it other 2026-06-17 14:46:50.493951+00 2026-06-17 14:47:25.69093+00 2026-06-17 14:47:25.69093+00
+\.
+
+
+--
+-- Data for Name: files; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.files (id, resource_id, resource, code, name, url, size, mime_type, created_at, updated_at, deleted_at) FROM stdin;
+cf4fb794-2399-4709-88f1-0786d5e5b0d1 10cc4918-ce28-4577-a296-bab1b1475e2c bookings passport Screenshot_20260523_092757-1.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/10cc4918-ce28-4577-a296-bab1b1475e2c/1781644736095_Screenshot_20260523_092757-1.png 137087 image/png 2026-06-16 21:18:56.139079+00 2026-06-16 21:18:56.139079+00 \N
+9e4701bd-4378-4ce5-8d30-5c72050b1377 57c21f76-8c7f-4085-bc01-09dbc5bacb17 companies BUSINESS_Li 10.png https://minio-dev.smart.aaca.gov.et:443/fhc/companies/57c21f76-8c7f-4085-bc01-09dbc5bacb17/1781644780702_10.png 27325 image/png 2026-06-16 21:19:40.743052+00 2026-06-16 21:19:40.743052+00 \N
+05340d3c-032a-4c2f-84c7-cbb33cc34b2b 57c21f76-8c7f-4085-bc01-09dbc5bacb17 companies TIN_no 10.png https://minio-dev.smart.aaca.gov.et:443/fhc/companies/57c21f76-8c7f-4085-bc01-09dbc5bacb17/1781644780702_10.png 27325 image/png 2026-06-16 21:19:40.761451+00 2026-06-16 21:19:40.761451+00 \N
+a85c955e-f0dd-4668-b565-8e88658da7d4 57c21f76-8c7f-4085-bc01-09dbc5bacb17 companies PASPORT 10.png https://minio-dev.smart.aaca.gov.et:443/fhc/companies/57c21f76-8c7f-4085-bc01-09dbc5bacb17/1781644780702_10.png 27325 image/png 2026-06-16 21:19:40.761737+00 2026-06-16 21:19:40.761737+00 \N
+bcdfa35d-6b19-4d1b-a5ce-42ec02189b2b 13306dea-07fc-4304-8f5b-8eade0129e7c companies BUSINESS_Li Screenshot 2026-06-12 at 1.42.39â¯PM.png https://minio-dev.smart.aaca.gov.et:443/fhc/companies/13306dea-07fc-4304-8f5b-8eade0129e7c/1781644871349_Screenshot 2026-06-12 at 1.42.39â¯PM.png 92780 image/png 2026-06-16 21:21:11.387723+00 2026-06-16 21:21:11.387723+00 \N
+9ad38cb5-b3f2-4f47-b927-5f649f039e0c 13306dea-07fc-4304-8f5b-8eade0129e7c companies PASPORT Screenshot 2026-06-12 at 1.42.39â¯PM.png https://minio-dev.smart.aaca.gov.et:443/fhc/companies/13306dea-07fc-4304-8f5b-8eade0129e7c/1781644871350_Screenshot 2026-06-12 at 1.42.39â¯PM.png 92780 image/png 2026-06-16 21:21:11.40775+00 2026-06-16 21:21:11.40775+00 \N
+f8fa721a-8418-48bd-8d06-b3cae32d6933 13306dea-07fc-4304-8f5b-8eade0129e7c companies TIN_no Screenshot 2026-06-12 at 1.42.39â¯PM.png https://minio-dev.smart.aaca.gov.et:443/fhc/companies/13306dea-07fc-4304-8f5b-8eade0129e7c/1781644871349_Screenshot 2026-06-12 at 1.42.39â¯PM.png 92780 image/png 2026-06-16 21:21:11.424952+00 2026-06-16 21:21:11.424952+00 \N
+687c7e25-c6cf-43ee-952a-0b421b180883 14825537-9f89-46f1-b727-cda8aea4451f companies BUSINESS_Li Screenshot_20260523_092757-1.png https://minio-dev.smart.aaca.gov.et:443/fhc/companies/14825537-9f89-46f1-b727-cda8aea4451f/1781646078292_Screenshot_20260523_092757-1.png 137087 image/png 2026-06-16 21:41:18.331215+00 2026-06-16 21:41:18.331215+00 \N
+a62e8ce0-1e8e-4dae-822a-2e0beed6c628 14825537-9f89-46f1-b727-cda8aea4451f companies TIN_no Screenshot_20260523_092757-1.png https://minio-dev.smart.aaca.gov.et:443/fhc/companies/14825537-9f89-46f1-b727-cda8aea4451f/1781646078292_Screenshot_20260523_092757-1.png 137087 image/png 2026-06-16 21:41:18.357751+00 2026-06-16 21:41:18.357751+00 \N
+1171890b-a95d-46f5-8dee-21b2ab92d0d3 14825537-9f89-46f1-b727-cda8aea4451f companies PASPORT Screenshot_20260523_092757-1.png https://minio-dev.smart.aaca.gov.et:443/fhc/companies/14825537-9f89-46f1-b727-cda8aea4451f/1781646078292_Screenshot_20260523_092757-1.png 137087 image/png 2026-06-16 21:41:18.369029+00 2026-06-16 21:41:18.369029+00 \N
+422162c2-2ad4-40e1-b68e-0c855fd67f69 d51f86d0-a263-4aae-8a3c-bf665247a013 bookings certificate_of_origin Screenshot_20260523_092757-1.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/d51f86d0-a263-4aae-8a3c-bf665247a013/1781650635522_Screenshot_20260523_092757-1.png 137087 image/png 2026-06-16 22:57:15.593605+00 2026-06-16 22:57:15.593605+00 \N
+6acd6a8f-4404-4278-b9e2-6f92966fd9f1 d51f86d0-a263-4aae-8a3c-bf665247a013 bookings packing_list Screenshot_20260523_092757-1.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/d51f86d0-a263-4aae-8a3c-bf665247a013/1781650635522_Screenshot_20260523_092757-1.png 137087 image/png 2026-06-16 22:57:15.607031+00 2026-06-16 22:57:15.607031+00 \N
+9c8b91a5-ed49-4898-a813-b604ed83b06f d51f86d0-a263-4aae-8a3c-bf665247a013 bookings commercial_invoice Screenshot_20260523_092757-1.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/d51f86d0-a263-4aae-8a3c-bf665247a013/1781650635519_Screenshot_20260523_092757-1.png 137087 image/png 2026-06-16 22:57:15.607391+00 2026-06-16 22:57:15.607391+00 \N
+ab5264a7-6f8f-44f3-b3fd-fa2d350f84cc d51f86d0-a263-4aae-8a3c-bf665247a013 bookings letter_of_credit Screenshot_20260523_092757-1.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/d51f86d0-a263-4aae-8a3c-bf665247a013/1781650635522_Screenshot_20260523_092757-1.png 137087 image/png 2026-06-16 22:57:15.641443+00 2026-06-16 22:57:15.641443+00 \N
+5d500a28-6269-45b2-bf94-138a92007a5c d51f86d0-a263-4aae-8a3c-bf665247a013 bookings signature_customer signature-customer-BK-2026-000016.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/d51f86d0-a263-4aae-8a3c-bf665247a013/1781672697901_signature-customer-BK-2026-000016.png 10260 image/png 2026-06-17 05:04:57.937246+00 2026-06-17 05:04:57.937246+00 \N
+9073ca61-670b-4c7e-a0b9-5af5d8600780 d51f86d0-a263-4aae-8a3c-bf665247a013 bookings signature_staff signature-staff-BK-2026-000016.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/d51f86d0-a263-4aae-8a3c-bf665247a013/1781673239549_signature-staff-BK-2026-000016.png 8739 image/png 2026-06-17 05:13:59.583255+00 2026-06-17 05:13:59.583255+00 \N
+521e7420-6eb3-466a-a3d6-d17fb7c82cdf 07e6657b-5943-434a-930c-5eb4898be1bc companies BUSINESS_Li Screenshot 2026-06-17 091843.png https://minio-dev.smart.aaca.gov.et:443/fhc/companies/07e6657b-5943-434a-930c-5eb4898be1bc/1781677172766_Screenshot 2026-06-17 091843.png 8062 image/png 2026-06-17 06:19:32.791919+00 2026-06-17 06:19:32.791919+00 \N
+15cfb497-f4e5-4b0f-a921-3bc42eb470ce 07e6657b-5943-434a-930c-5eb4898be1bc companies TIN_no Screenshot 2026-06-17 091843.png https://minio-dev.smart.aaca.gov.et:443/fhc/companies/07e6657b-5943-434a-930c-5eb4898be1bc/1781677172767_Screenshot 2026-06-17 091843.png 8062 image/png 2026-06-17 06:19:32.79503+00 2026-06-17 06:19:32.79503+00 \N
+506fca90-34e8-4403-8e1f-5accbd2f7c75 07e6657b-5943-434a-930c-5eb4898be1bc companies PASPORT Screenshot 2026-06-17 091843.png https://minio-dev.smart.aaca.gov.et:443/fhc/companies/07e6657b-5943-434a-930c-5eb4898be1bc/1781677172767_Screenshot 2026-06-17 091843.png 8062 image/png 2026-06-17 06:19:32.80337+00 2026-06-17 06:19:32.80337+00 \N
+5ffb3efa-4734-4585-9eb1-e3432c064c62 07e6657b-5943-434a-930c-5eb4898be1bc companies PASPORT Screenshot 2026-06-17 091843.png https://minio-dev.smart.aaca.gov.et:443/fhc/companies/07e6657b-5943-434a-930c-5eb4898be1bc/1781677177713_Screenshot 2026-06-17 091843.png 8062 image/png 2026-06-17 06:19:37.728609+00 2026-06-17 06:19:37.728609+00 \N
+d6d1c2a8-561e-4408-b85e-0bb58c235bb1 07e6657b-5943-434a-930c-5eb4898be1bc companies TIN_no Screenshot 2026-06-17 091843.png https://minio-dev.smart.aaca.gov.et:443/fhc/companies/07e6657b-5943-434a-930c-5eb4898be1bc/1781677177713_Screenshot 2026-06-17 091843.png 8062 image/png 2026-06-17 06:19:37.755308+00 2026-06-17 06:19:37.755308+00 \N
+8ee7ba80-0438-47fd-a3ab-5083e6d2eaff 07e6657b-5943-434a-930c-5eb4898be1bc companies BUSINESS_Li Screenshot 2026-06-17 091843.png https://minio-dev.smart.aaca.gov.et:443/fhc/companies/07e6657b-5943-434a-930c-5eb4898be1bc/1781677177713_Screenshot 2026-06-17 091843.png 8062 image/png 2026-06-17 06:19:37.762217+00 2026-06-17 06:19:37.762217+00 \N
+a2108705-e280-4e3c-b920-0083cb515de4 07e6657b-5943-434a-930c-5eb4898be1bc companies PASPORT Screenshot 2026-06-17 093339.png https://minio-dev.smart.aaca.gov.et:443/fhc/companies/07e6657b-5943-434a-930c-5eb4898be1bc/1781679338740_Screenshot 2026-06-17 093339.png 40312 image/png 2026-06-17 06:55:38.823782+00 2026-06-17 06:55:38.823782+00 \N
+fc6ef81c-13a4-48ff-a58b-da1308d01065 07e6657b-5943-434a-930c-5eb4898be1bc companies BUSINESS_Li Screenshot 2026-06-17 093339.png https://minio-dev.smart.aaca.gov.et:443/fhc/companies/07e6657b-5943-434a-930c-5eb4898be1bc/1781679338735_Screenshot 2026-06-17 093339.png 40312 image/png 2026-06-17 06:55:38.840111+00 2026-06-17 06:55:38.840111+00 \N
+af8e3f4f-1aa3-414a-b9a0-7c33601d27b8 07e6657b-5943-434a-930c-5eb4898be1bc companies TIN_no Screenshot 2026-06-17 093339.png https://minio-dev.smart.aaca.gov.et:443/fhc/companies/07e6657b-5943-434a-930c-5eb4898be1bc/1781679338739_Screenshot 2026-06-17 093339.png 40312 image/png 2026-06-17 06:55:38.841821+00 2026-06-17 06:55:38.841821+00 \N
+f3d4720b-ffe8-4e25-81ae-0a0011768a8b 22133f54-dcaa-4b46-89aa-5a173704fe2c bookings packing_list Screenshot_20260616_182725.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/22133f54-dcaa-4b46-89aa-5a173704fe2c/1781685144201_Screenshot_20260616_182725.png 249546 image/png 2026-06-17 08:32:24.289825+00 2026-06-17 08:32:24.289825+00 \N
+b1612a73-e2bf-4ef5-877d-d797e42b51a5 22133f54-dcaa-4b46-89aa-5a173704fe2c bookings commercial_invoice Screenshot_20260616_182725.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/22133f54-dcaa-4b46-89aa-5a173704fe2c/1781685144199_Screenshot_20260616_182725.png 249546 image/png 2026-06-17 08:32:24.302461+00 2026-06-17 08:32:24.302461+00 \N
+414f3cc3-5891-47c0-b19a-4908e58fbea2 22133f54-dcaa-4b46-89aa-5a173704fe2c bookings certificate_of_origin Screenshot_20260616_182725.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/22133f54-dcaa-4b46-89aa-5a173704fe2c/1781685144202_Screenshot_20260616_182725.png 249546 image/png 2026-06-17 08:32:24.302821+00 2026-06-17 08:32:24.302821+00 \N
+a7bb534d-ead0-4702-9f21-d99fa727e45c 22133f54-dcaa-4b46-89aa-5a173704fe2c bookings letter_of_credit Screenshot_20260616_182725.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/22133f54-dcaa-4b46-89aa-5a173704fe2c/1781685144202_Screenshot_20260616_182725.png 249546 image/png 2026-06-17 08:32:24.344225+00 2026-06-17 08:32:24.344225+00 \N
+ee19e7ff-3c14-4813-adbb-762bb6285e7c 53ae4630-d7e3-45de-94a8-d0a20c11a620 bookings commercial_invoice Screenshot 2026-06-17 093339.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/53ae4630-d7e3-45de-94a8-d0a20c11a620/1781685149130_Screenshot 2026-06-17 093339.png 40312 image/png 2026-06-17 08:32:29.15037+00 2026-06-17 08:32:29.15037+00 \N
+23b38210-3606-4404-8352-dda4824d2a79 53ae4630-d7e3-45de-94a8-d0a20c11a620 bookings letter_of_credit Screenshot 2026-06-17 093339.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/53ae4630-d7e3-45de-94a8-d0a20c11a620/1781685149131_Screenshot 2026-06-17 093339.png 40312 image/png 2026-06-17 08:32:29.151778+00 2026-06-17 08:32:29.151778+00 \N
+46d7dd64-69ff-4f71-b730-bdc0cd6c247e 53ae4630-d7e3-45de-94a8-d0a20c11a620 bookings packing_list Screenshot 2026-06-17 093339.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/53ae4630-d7e3-45de-94a8-d0a20c11a620/1781685149131_Screenshot 2026-06-17 093339.png 40312 image/png 2026-06-17 08:32:29.195387+00 2026-06-17 08:32:29.195387+00 \N
+00c91985-97f1-4214-a3d4-6f0b9b2f1b66 53ae4630-d7e3-45de-94a8-d0a20c11a620 bookings certificate_of_origin Screenshot 2026-06-17 093339.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/53ae4630-d7e3-45de-94a8-d0a20c11a620/1781685149131_Screenshot 2026-06-17 093339.png 40312 image/png 2026-06-17 08:32:29.2002+00 2026-06-17 08:32:29.2002+00 \N
+a92faba9-036d-478e-bb7c-88460eaf0f42 feef4f8d-1907-4d18-b370-f0f534d0ceea bookings letter_of_credit Screenshot 2026-06-17 093339.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/feef4f8d-1907-4d18-b370-f0f534d0ceea/1781685522556_Screenshot 2026-06-17 093339.png 40312 image/png 2026-06-17 08:38:42.586505+00 2026-06-17 08:38:42.586505+00 \N
+d7747a47-db67-4a9d-a647-30f3432bb568 feef4f8d-1907-4d18-b370-f0f534d0ceea bookings commercial_invoice Screenshot 2026-06-17 093339.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/feef4f8d-1907-4d18-b370-f0f534d0ceea/1781685522555_Screenshot 2026-06-17 093339.png 40312 image/png 2026-06-17 08:38:42.590911+00 2026-06-17 08:38:42.590911+00 \N
+ec614bbb-e17e-4cb0-b122-1fe3cfccc6ac feef4f8d-1907-4d18-b370-f0f534d0ceea bookings packing_list Screenshot 2026-06-17 093339.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/feef4f8d-1907-4d18-b370-f0f534d0ceea/1781685522556_Screenshot 2026-06-17 093339.png 40312 image/png 2026-06-17 08:38:42.59394+00 2026-06-17 08:38:42.59394+00 \N
+ae6be264-2e25-4c97-9a9f-a1ea652ac44b feef4f8d-1907-4d18-b370-f0f534d0ceea bookings certificate_of_origin Screenshot 2026-06-17 093339.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/feef4f8d-1907-4d18-b370-f0f534d0ceea/1781685522556_Screenshot 2026-06-17 093339.png 40312 image/png 2026-06-17 08:38:42.62966+00 2026-06-17 08:38:42.62966+00 \N
+30cd4c45-7aed-4dfc-9330-52a4639a242c 53ae4630-d7e3-45de-94a8-d0a20c11a620 bookings signature_customer signature-customer-BK-2026-000021.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/53ae4630-d7e3-45de-94a8-d0a20c11a620/1781691339155_signature-customer-BK-2026-000021.png 10663 image/png 2026-06-17 10:15:39.175802+00 2026-06-17 10:15:39.175802+00 \N
+e2fb02f5-dc78-449d-ad98-3ce8a2b71da3 53ae4630-d7e3-45de-94a8-d0a20c11a620 bookings signature_staff signature-staff-BK-2026-000021.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/53ae4630-d7e3-45de-94a8-d0a20c11a620/1781691347218_signature-staff-BK-2026-000021.png 10663 image/png 2026-06-17 10:15:47.238372+00 2026-06-17 10:15:47.238372+00 \N
+bef4a94a-3651-4620-b6b1-2a1008288c2b a3be80e7-af97-4592-87aa-6d4e9df89450 bookings packing_list Screenshot_20260523_092757-1.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/a3be80e7-af97-4592-87aa-6d4e9df89450/1781724863369_Screenshot_20260523_092757-1.png 137087 image/png 2026-06-17 19:34:23.442696+00 2026-06-17 19:34:23.442696+00 \N
+ee83b6c0-2807-4529-af8b-33642964b474 a3be80e7-af97-4592-87aa-6d4e9df89450 bookings commercial_invoice Screenshot_20260523_092757-1.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/a3be80e7-af97-4592-87aa-6d4e9df89450/1781724863367_Screenshot_20260523_092757-1.png 137087 image/png 2026-06-17 19:34:23.459111+00 2026-06-17 19:34:23.459111+00 \N
+8d5a3f28-1fe5-414b-9591-6169d743830c a3be80e7-af97-4592-87aa-6d4e9df89450 bookings certificate_of_origin Screenshot_20260523_092757-1.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/a3be80e7-af97-4592-87aa-6d4e9df89450/1781724863369_Screenshot_20260523_092757-1.png 137087 image/png 2026-06-17 19:34:23.463277+00 2026-06-17 19:34:23.463277+00 \N
+fc0e7fea-bf70-4d02-a73d-3cd605138f89 a3be80e7-af97-4592-87aa-6d4e9df89450 bookings letter_of_credit Screenshot_20260523_092757-1.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/a3be80e7-af97-4592-87aa-6d4e9df89450/1781724863369_Screenshot_20260523_092757-1.png 137087 image/png 2026-06-17 19:34:23.48656+00 2026-06-17 19:34:23.48656+00 \N
+2d5b1e92-b4ef-4d2f-b437-af7f36fb5e48 a3be80e7-af97-4592-87aa-6d4e9df89450 bookings signature_customer signature-customer-BK-2026-000025.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/a3be80e7-af97-4592-87aa-6d4e9df89450/1781724919576_signature-customer-BK-2026-000025.png 10260 image/png 2026-06-17 19:35:19.587261+00 2026-06-17 19:35:19.587261+00 \N
+1c0a6b74-31ed-4ff8-bfad-29a80e99004e a3be80e7-af97-4592-87aa-6d4e9df89450 bookings signature_staff signature-staff-BK-2026-000025.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/a3be80e7-af97-4592-87aa-6d4e9df89450/1781724963422_signature-staff-BK-2026-000025.png 10663 image/png 2026-06-17 19:36:03.44619+00 2026-06-17 19:36:03.44619+00 \N
+6fba779e-e898-4fe4-ae5e-f07795a4d3f2 ffc989b9-cfbf-40cf-9618-faae4e501a53 bookings certificate_of_origin Screenshot_20260523_092757-1.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/ffc989b9-cfbf-40cf-9618-faae4e501a53/1781727088725_Screenshot_20260523_092757-1.png 137087 image/png 2026-06-17 20:11:28.811809+00 2026-06-17 20:11:28.811809+00 \N
+7b198e0c-dad4-429d-abf0-4f8dc5e9bb5c ffc989b9-cfbf-40cf-9618-faae4e501a53 bookings commercial_invoice Screenshot_20260523_092757-1.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/ffc989b9-cfbf-40cf-9618-faae4e501a53/1781727088722_Screenshot_20260523_092757-1.png 137087 image/png 2026-06-17 20:11:28.825115+00 2026-06-17 20:11:28.825115+00 \N
+8ea19146-3d44-4520-b655-1496d83f8a04 ffc989b9-cfbf-40cf-9618-faae4e501a53 bookings packing_list Screenshot_20260523_092757-1.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/ffc989b9-cfbf-40cf-9618-faae4e501a53/1781727088725_Screenshot_20260523_092757-1.png 137087 image/png 2026-06-17 20:11:28.83042+00 2026-06-17 20:11:28.83042+00 \N
+823af482-fbdc-4b0f-86db-3f519ad07536 ffc989b9-cfbf-40cf-9618-faae4e501a53 bookings letter_of_credit Screenshot_20260523_092757-1.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/ffc989b9-cfbf-40cf-9618-faae4e501a53/1781727088725_Screenshot_20260523_092757-1.png 137087 image/png 2026-06-17 20:11:28.859143+00 2026-06-17 20:11:28.859143+00 \N
+ec8f0e47-3e35-4389-869d-5a72411e865b ffc989b9-cfbf-40cf-9618-faae4e501a53 bookings signature_customer signature-customer-BK-2026-000026.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/ffc989b9-cfbf-40cf-9618-faae4e501a53/1781727499551_signature-customer-BK-2026-000026.png 10260 image/png 2026-06-17 20:18:19.563108+00 2026-06-17 20:18:19.563108+00 \N
+0672f3a8-7a8f-4977-8036-ebe0d3e739ec ffc989b9-cfbf-40cf-9618-faae4e501a53 bookings signature_staff signature-staff-BK-2026-000026.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/ffc989b9-cfbf-40cf-9618-faae4e501a53/1781727560288_signature-staff-BK-2026-000026.png 10663 image/png 2026-06-17 20:19:20.306673+00 2026-06-17 20:19:20.306673+00 \N
+7ddf1bc1-8cfc-4e06-9f30-dea8e8a0096c fddc9d5a-f6bb-44c8-b759-3f8f1d9d2bd7 bookings signature_customer signature-customer-BK-2026-000028.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/fddc9d5a-f6bb-44c8-b759-3f8f1d9d2bd7/1781784364468_signature-customer-BK-2026-000028.png 10260 image/png 2026-06-18 12:06:04.490351+00 2026-06-18 12:06:04.490351+00 \N
+c7540b07-0036-4c88-9508-0aad7431e29f fddc9d5a-f6bb-44c8-b759-3f8f1d9d2bd7 bookings signature_staff signature-staff-BK-2026-000028.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/fddc9d5a-f6bb-44c8-b759-3f8f1d9d2bd7/1781784370204_signature-staff-BK-2026-000028.png 10663 image/png 2026-06-18 12:06:10.224068+00 2026-06-18 12:06:10.224068+00 \N
+de86cfa9-b2c1-4737-b656-03ec04f7dc1c 39b95835-28ab-4bdc-978b-bd9a3042dccc bookings signature_customer signature-customer-BK-2026-000029.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/39b95835-28ab-4bdc-978b-bd9a3042dccc/1781784840076_signature-customer-BK-2026-000029.png 10260 image/png 2026-06-18 12:14:00.098242+00 2026-06-18 12:14:00.098242+00 \N
+94c9ae3b-386e-4dc5-9555-9cf39dba4d33 39b95835-28ab-4bdc-978b-bd9a3042dccc bookings signature_staff signature-staff-BK-2026-000029.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/39b95835-28ab-4bdc-978b-bd9a3042dccc/1781784850586_signature-staff-BK-2026-000029.png 10663 image/png 2026-06-18 12:14:10.600659+00 2026-06-18 12:14:10.600659+00 \N
+c00eaa07-1aec-4ace-964d-9cd76abdab27 350eb448-428a-48b3-9629-a5c022895066 bookings signature_customer signature-customer-BK-2026-000031.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/350eb448-428a-48b3-9629-a5c022895066/1781809823415_signature-customer-BK-2026-000031.png 10260 image/png 2026-06-18 19:10:23.441014+00 2026-06-18 19:10:23.441014+00 \N
+001e5b9a-2c5c-4605-bde5-34dc282e972b 350eb448-428a-48b3-9629-a5c022895066 bookings signature_staff signature-staff-BK-2026-000031.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/350eb448-428a-48b3-9629-a5c022895066/1781809851585_signature-staff-BK-2026-000031.png 10663 image/png 2026-06-18 19:10:51.597561+00 2026-06-18 19:10:51.597561+00 \N
+76198518-01cf-40a8-8cf9-6eab3d697b79 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a saved_signatures signature signature-354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a.png https://minio-dev.smart.aaca.gov.et:443/fhc/saved_signatures/354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a/1781809851613_signature-354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a.png 10663 image/png 2026-06-18 19:10:51.624187+00 2026-06-18 19:10:51.624187+00 \N
+c14545f7-a3e6-48bb-933b-19bbedcb6a24 14b83a6a-c19f-4402-8ffb-9e0256e1639b bookings packing_list Screenshot_20260617_120228.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/14b83a6a-c19f-4402-8ffb-9e0256e1639b/1781817399294_Screenshot_20260617_120228.png 114819 image/png 2026-06-18 21:16:39.369368+00 2026-06-18 21:16:39.369368+00 \N
+2f19d01e-1dca-4f69-a1b2-17282fcff1b9 14b83a6a-c19f-4402-8ffb-9e0256e1639b bookings letter_of_credit Screenshot_20260617_120228.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/14b83a6a-c19f-4402-8ffb-9e0256e1639b/1781817399295_Screenshot_20260617_120228.png 114819 image/png 2026-06-18 21:16:39.370392+00 2026-06-18 21:16:39.370392+00 \N
+547b5def-d3c9-4fc3-b817-b0202a88b00f 14b83a6a-c19f-4402-8ffb-9e0256e1639b bookings commercial_invoice Screenshot_20260617_120228.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/14b83a6a-c19f-4402-8ffb-9e0256e1639b/1781817399292_Screenshot_20260617_120228.png 114819 image/png 2026-06-18 21:16:39.371188+00 2026-06-18 21:16:39.371188+00 \N
+7541b2a7-8613-42a6-80a4-a112d7b09ae2 14b83a6a-c19f-4402-8ffb-9e0256e1639b bookings certificate_of_origin Screenshot_20260617_120228.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/14b83a6a-c19f-4402-8ffb-9e0256e1639b/1781817399294_Screenshot_20260617_120228.png 114819 image/png 2026-06-18 21:16:39.374749+00 2026-06-18 21:16:39.374749+00 \N
+f47b17b0-b7e7-4ee1-a72d-ef13fdee19e0 14b83a6a-c19f-4402-8ffb-9e0256e1639b bookings commercial_invoice Screenshot_20260617_120228.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/14b83a6a-c19f-4402-8ffb-9e0256e1639b/1781817414025_Screenshot_20260617_120228.png 114819 image/png 2026-06-18 21:16:54.065921+00 2026-06-18 21:16:54.065921+00 \N
+7f059589-5642-490f-b70b-1075760333d8 14b83a6a-c19f-4402-8ffb-9e0256e1639b bookings certificate_of_origin Screenshot_20260617_120228.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/14b83a6a-c19f-4402-8ffb-9e0256e1639b/1781817414026_Screenshot_20260617_120228.png 114819 image/png 2026-06-18 21:16:54.074726+00 2026-06-18 21:16:54.074726+00 \N
+94703302-31ff-44e6-be0d-25303a69544e 14b83a6a-c19f-4402-8ffb-9e0256e1639b bookings packing_list Screenshot_20260617_120228.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/14b83a6a-c19f-4402-8ffb-9e0256e1639b/1781817414026_Screenshot_20260617_120228.png 114819 image/png 2026-06-18 21:16:54.080258+00 2026-06-18 21:16:54.080258+00 \N
+c71b04ac-b3d2-4f4e-a0f0-c3bb495f0685 14b83a6a-c19f-4402-8ffb-9e0256e1639b bookings letter_of_credit Screenshot_20260617_120228.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/14b83a6a-c19f-4402-8ffb-9e0256e1639b/1781817414026_Screenshot_20260617_120228.png 114819 image/png 2026-06-18 21:16:54.125625+00 2026-06-18 21:16:54.125625+00 \N
+26e8df15-fe8e-440b-8182-ed153f54734b 476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0 bookings letter_of_credit Screenshot_20260617_120228.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0/1781820912835_Screenshot_20260617_120228.png 114819 image/png 2026-06-18 22:15:12.906785+00 2026-06-18 22:15:12.906785+00 \N
+657a6489-e2d3-4cf5-bc9b-744615501093 476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0 bookings packing_list Screenshot_20260617_120228.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0/1781820912835_Screenshot_20260617_120228.png 114819 image/png 2026-06-18 22:15:12.914384+00 2026-06-18 22:15:12.914384+00 \N
+09cf1ccc-65bd-425a-87b4-cc7cd3f072d6 476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0 bookings commercial_invoice Screenshot_20260617_120228.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0/1781820912833_Screenshot_20260617_120228.png 114819 image/png 2026-06-18 22:15:12.922381+00 2026-06-18 22:15:12.922381+00 \N
+27729593-4bd1-4683-a8fb-539dbea29a83 476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0 bookings certificate_of_origin Screenshot_20260617_120228.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0/1781820912835_Screenshot_20260617_120228.png 114819 image/png 2026-06-18 22:15:12.943546+00 2026-06-18 22:15:12.943546+00 \N
+a09fffd8-122b-4d4c-9199-35564895b003 476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0 bookings signature_customer signature-customer-BK-2026-000033.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0/1781821021688_signature-customer-BK-2026-000033.png 10260 image/png 2026-06-18 22:17:01.705114+00 2026-06-18 22:17:01.705114+00 \N
+691c989d-7724-40c1-9677-5fec6c3da705 476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0 bookings signature_staff signature-staff-BK-2026-000033.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0/1781821047181_signature-staff-BK-2026-000033.png 8739 image/png 2026-06-18 22:17:27.19911+00 2026-06-18 22:17:27.19911+00 \N
+9e111b33-0b4b-4fe1-9c07-f396b324e57b a1926ac9-639a-4758-b10a-a72f4abf2398 companies tin_number U2J 1 Program Details.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/companies/a1926ac9-639a-4758-b10a-a72f4abf2398/1781850611365_U2J 1 Program Details.pdf 222651 application/pdf 2026-06-19 06:30:11.413479+00 2026-06-19 06:30:11.413479+00 \N
+504ccab7-0726-4c37-808b-2adeb01db5b1 a1926ac9-639a-4758-b10a-a72f4abf2398 companies registered_licence Yeshi Tadesse Tibebu(1).pdf https://minio-dev.smart.aaca.gov.et:443/fhc/companies/a1926ac9-639a-4758-b10a-a72f4abf2398/1781850611367_Yeshi Tadesse Tibebu(1).pdf 143998 application/pdf 2026-06-19 06:30:11.426069+00 2026-06-19 06:30:11.426069+00 \N
+03310488-1465-40cb-b83c-4db54909c728 3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1 bookings commercial_invoice Screenshot_20260617_120228.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1/1781850775259_Screenshot_20260617_120228.png 114819 image/png 2026-06-19 06:32:55.305452+00 2026-06-19 06:32:55.305452+00 \N
+f3733e2c-457c-4307-aa54-a18269f708db 3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1 bookings packing_list Screenshot_20260617_120228.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1/1781850775259_Screenshot_20260617_120228.png 114819 image/png 2026-06-19 06:32:55.349076+00 2026-06-19 06:32:55.349076+00 \N
+a7b6e04c-0a0a-4c5f-8e6d-ab3c6530f046 3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1 bookings letter_of_credit Screenshot_20260617_120228.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1/1781850775259_Screenshot_20260617_120228.png 114819 image/png 2026-06-19 06:32:55.363145+00 2026-06-19 06:32:55.363145+00 \N
+b638083c-6a06-4076-b40c-4cd1d69821aa 3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1 bookings certificate_of_origin Screenshot_20260617_120228.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1/1781850775259_Screenshot_20260617_120228.png 114819 image/png 2026-06-19 06:32:55.364383+00 2026-06-19 06:32:55.364383+00 \N
+c7bca4d5-6a37-46ae-b0bf-94c0a5c50ce0 883f45df-c6c9-4613-ad5c-8c3d189b5009 bookings commercial_invoice U2J 1 Program Details.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/883f45df-c6c9-4613-ad5c-8c3d189b5009/1781851305625_U2J 1 Program Details.pdf 222651 application/pdf 2026-06-19 06:41:45.665908+00 2026-06-19 06:41:45.665908+00 \N
+6dc173a4-fbf0-4a46-870d-7964951d5811 883f45df-c6c9-4613-ad5c-8c3d189b5009 bookings certificate_of_origin U2J 1 Program Details.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/883f45df-c6c9-4613-ad5c-8c3d189b5009/1781851305625_U2J 1 Program Details.pdf 222651 application/pdf 2026-06-19 06:41:45.674619+00 2026-06-19 06:41:45.674619+00 \N
+55e933c5-22a8-4b4d-b230-c8710ad24f70 883f45df-c6c9-4613-ad5c-8c3d189b5009 bookings packing_list U2J 1 Program Details.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/883f45df-c6c9-4613-ad5c-8c3d189b5009/1781851305625_U2J 1 Program Details.pdf 222651 application/pdf 2026-06-19 06:41:45.696152+00 2026-06-19 06:41:45.696152+00 \N
+91bb5d45-7f11-40d2-b452-0b5df96b6e25 883f45df-c6c9-4613-ad5c-8c3d189b5009 bookings letter_of_credit U2J 1 Program Details.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/883f45df-c6c9-4613-ad5c-8c3d189b5009/1781851305625_U2J 1 Program Details.pdf 222651 application/pdf 2026-06-19 06:41:45.747499+00 2026-06-19 06:41:45.747499+00 \N
+542ad1b6-b00a-4d09-bf77-cb42f3fac39b 883f45df-c6c9-4613-ad5c-8c3d189b5009 bookings certificate_of_origin U2J 1 Program Details.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/883f45df-c6c9-4613-ad5c-8c3d189b5009/1781851354148_U2J 1 Program Details.pdf 222651 application/pdf 2026-06-19 06:42:34.192568+00 2026-06-19 06:42:34.192568+00 \N
+b636a6cf-7cf5-425a-afb9-c67261e47da4 883f45df-c6c9-4613-ad5c-8c3d189b5009 bookings packing_list U2J 1 Program Details.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/883f45df-c6c9-4613-ad5c-8c3d189b5009/1781851354148_U2J 1 Program Details.pdf 222651 application/pdf 2026-06-19 06:42:34.216041+00 2026-06-19 06:42:34.216041+00 \N
+4e4c555c-83b2-491e-b553-726a06c9957a 883f45df-c6c9-4613-ad5c-8c3d189b5009 bookings commercial_invoice U2J 1 Program Details.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/883f45df-c6c9-4613-ad5c-8c3d189b5009/1781851354148_U2J 1 Program Details.pdf 222651 application/pdf 2026-06-19 06:42:34.236338+00 2026-06-19 06:42:34.236338+00 \N
+7bf094b0-e410-4408-b746-6b9cf4b32f37 883f45df-c6c9-4613-ad5c-8c3d189b5009 bookings letter_of_credit U2J 1 Program Details.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/883f45df-c6c9-4613-ad5c-8c3d189b5009/1781851354148_U2J 1 Program Details.pdf 222651 application/pdf 2026-06-19 06:42:34.281849+00 2026-06-19 06:42:34.281849+00 \N
+819dcc31-42ea-41c7-b36c-0f7b529426eb 3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1 bookings signature_customer signature-customer-BK-2026-000034.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1/1781851455357_signature-customer-BK-2026-000034.png 14807 image/png 2026-06-19 06:44:15.374974+00 2026-06-19 06:44:15.374974+00 \N
+b16a00bb-a105-4f6b-bfec-43ee75c4637d 8d9e3a2a-558c-4cca-987c-202dc8ac3c5c saved_signatures signature signature-8d9e3a2a-558c-4cca-987c-202dc8ac3c5c.png https://minio-dev.smart.aaca.gov.et:443/fhc/saved_signatures/8d9e3a2a-558c-4cca-987c-202dc8ac3c5c/1781851455391_signature-8d9e3a2a-558c-4cca-987c-202dc8ac3c5c.png 14807 image/png 2026-06-19 06:44:15.405302+00 2026-06-19 06:44:15.405302+00 \N
+a9b789cb-dcf1-4ccb-946f-7f2d7775b500 3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1 bookings signature_staff signature-staff-BK-2026-000034.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1/1781851471747_signature-staff-BK-2026-000034.png 8739 image/png 2026-06-19 06:44:31.766365+00 2026-06-19 06:44:31.766365+00 \N
+4c1b0e19-1cc5-444e-951b-1dd29eea1532 cd368877-11ea-4d02-8dd1-03a5f2ca98a9 companies registered_licence contract-BK-2026-000006.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/companies/cd368877-11ea-4d02-8dd1-03a5f2ca98a9/1781852706175_contract-BK-2026-000006.pdf 138707 application/pdf 2026-06-19 07:05:06.217185+00 2026-06-19 07:05:06.217185+00 \N
+105d5258-eca5-4ff8-9a51-13fb7ecb4bde cd368877-11ea-4d02-8dd1-03a5f2ca98a9 companies tin_number contract-BK-2026-000006.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/companies/cd368877-11ea-4d02-8dd1-03a5f2ca98a9/1781852706175_contract-BK-2026-000006.pdf 138707 application/pdf 2026-06-19 07:05:06.245004+00 2026-06-19 07:05:06.245004+00 \N
+9bb8155f-81ef-4f5b-8895-44837f6551b7 e3f09fde-b4af-4864-8bdd-929d206f7778 bookings commercial_invoice contract-BK-2026-000007.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/e3f09fde-b4af-4864-8bdd-929d206f7778/1781853294130_contract-BK-2026-000007.pdf 128466 application/pdf 2026-06-19 07:14:54.182014+00 2026-06-19 07:14:54.182014+00 \N
+6c02bb8f-45b9-4e42-a846-ac6f2c8b59ad e3f09fde-b4af-4864-8bdd-929d206f7778 bookings packing_list contract-BK-2026-000007 (1).pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/e3f09fde-b4af-4864-8bdd-929d206f7778/1781853294130_contract-BK-2026-000007 (1).pdf 128466 application/pdf 2026-06-19 07:14:54.197462+00 2026-06-19 07:14:54.197462+00 \N
+3740ef7d-5f69-4732-b7b1-773076908975 e3f09fde-b4af-4864-8bdd-929d206f7778 bookings letter_of_credit contract-BK-2026-000007 (2).pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/e3f09fde-b4af-4864-8bdd-929d206f7778/1781853294131_contract-BK-2026-000007 (2).pdf 128466 application/pdf 2026-06-19 07:14:54.19904+00 2026-06-19 07:14:54.19904+00 \N
+8000a939-d0e0-4b51-b856-8b960cf1e977 e3f09fde-b4af-4864-8bdd-929d206f7778 bookings certificate_of_origin contract-BK-2026-000007 (1).pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/e3f09fde-b4af-4864-8bdd-929d206f7778/1781853294130_contract-BK-2026-000007 (1).pdf 128466 application/pdf 2026-06-19 07:14:54.211225+00 2026-06-19 07:14:54.211225+00 \N
+abd8f1a1-87be-4983-b55f-2a3a286521ee e3f09fde-b4af-4864-8bdd-929d206f7778 bookings signature_customer signature-customer-BK-2026-000036.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/e3f09fde-b4af-4864-8bdd-929d206f7778/1781853408618_signature-customer-BK-2026-000036.png 8216 image/png 2026-06-19 07:16:48.634353+00 2026-06-19 07:16:48.634353+00 \N
+614c5e37-8cf1-4424-8d0e-d7fff647f306 e3f09fde-b4af-4864-8bdd-929d206f7778 bookings signature_staff signature-staff-BK-2026-000036.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/e3f09fde-b4af-4864-8bdd-929d206f7778/1781853446050_signature-staff-BK-2026-000036.png 8739 image/png 2026-06-19 07:17:26.079962+00 2026-06-19 07:17:26.079962+00 \N
+fcf531c2-6c3d-4228-ac54-bc9cf66c99a2 b6e0149e-4866-4dca-b9bc-fc6f451dc6b0 bookings packing_list contract-BK-2026-000007 (2).pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/b6e0149e-4866-4dca-b9bc-fc6f451dc6b0/1781853845073_contract-BK-2026-000007 (2).pdf 128466 application/pdf 2026-06-19 07:24:05.126114+00 2026-06-19 07:24:05.126114+00 \N
+73338e3a-23ae-4ed7-a7a0-b970e7f167d4 b6e0149e-4866-4dca-b9bc-fc6f451dc6b0 bookings certificate_of_origin contract-BK-2026-000007 (1).pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/b6e0149e-4866-4dca-b9bc-fc6f451dc6b0/1781853845073_contract-BK-2026-000007 (1).pdf 128466 application/pdf 2026-06-19 07:24:05.127427+00 2026-06-19 07:24:05.127427+00 \N
+daf9cb28-bf9d-44ba-a4e5-b613be46b709 b6e0149e-4866-4dca-b9bc-fc6f451dc6b0 bookings commercial_invoice contract-BK-2026-000007.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/b6e0149e-4866-4dca-b9bc-fc6f451dc6b0/1781853845072_contract-BK-2026-000007.pdf 128466 application/pdf 2026-06-19 07:24:05.14066+00 2026-06-19 07:24:05.14066+00 \N
+d0c0c507-2c37-40fa-a273-ed7521325270 b6e0149e-4866-4dca-b9bc-fc6f451dc6b0 bookings letter_of_credit contract-BK-2026-000007 (1).pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/b6e0149e-4866-4dca-b9bc-fc6f451dc6b0/1781853845073_contract-BK-2026-000007 (1).pdf 128466 application/pdf 2026-06-19 07:24:05.143658+00 2026-06-19 07:24:05.143658+00 \N
+8de98d33-f222-4ff1-b632-86458bcc528d b6e0149e-4866-4dca-b9bc-fc6f451dc6b0 bookings signature_customer signature-customer-BK-2026-000037.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/b6e0149e-4866-4dca-b9bc-fc6f451dc6b0/1781853932832_signature-customer-BK-2026-000037.png 8216 image/png 2026-06-19 07:25:32.847939+00 2026-06-19 07:25:32.847939+00 \N
+29b7fd60-3e55-4ba1-80d7-b9aa5ef7ad33 b6e0149e-4866-4dca-b9bc-fc6f451dc6b0 bookings signature_staff signature-staff-BK-2026-000037.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/b6e0149e-4866-4dca-b9bc-fc6f451dc6b0/1781853943133_signature-staff-BK-2026-000037.png 8739 image/png 2026-06-19 07:25:43.148416+00 2026-06-19 07:25:43.148416+00 \N
+8f094fbd-152e-4e25-bfb3-2ae2929b290e fc25a460-8df8-40e3-8c27-5c37f598b7eb bookings commercial_invoice contract-BK-2026-000007.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/fc25a460-8df8-40e3-8c27-5c37f598b7eb/1781854355894_contract-BK-2026-000007.pdf 128466 application/pdf 2026-06-19 07:32:35.939662+00 2026-06-19 07:32:35.939662+00 \N
+15b894c9-5364-472b-a765-855b57294c54 fc25a460-8df8-40e3-8c27-5c37f598b7eb bookings certificate_of_origin contract-BK-2026-000007 (2).pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/fc25a460-8df8-40e3-8c27-5c37f598b7eb/1781854355895_contract-BK-2026-000007 (2).pdf 128466 application/pdf 2026-06-19 07:32:35.952082+00 2026-06-19 07:32:35.952082+00 \N
+fcfc7650-1097-426b-b9cb-f04b59cc34e5 fc25a460-8df8-40e3-8c27-5c37f598b7eb bookings packing_list contract-BK-2026-000007 (1).pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/fc25a460-8df8-40e3-8c27-5c37f598b7eb/1781854355895_contract-BK-2026-000007 (1).pdf 128466 application/pdf 2026-06-19 07:32:35.953055+00 2026-06-19 07:32:35.953055+00 \N
+f41b9be1-2d50-4369-8eca-74c3f1bec167 fc25a460-8df8-40e3-8c27-5c37f598b7eb bookings letter_of_credit contract-BK-2026-000007 (2).pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/fc25a460-8df8-40e3-8c27-5c37f598b7eb/1781854355895_contract-BK-2026-000007 (2).pdf 128466 application/pdf 2026-06-19 07:32:35.977684+00 2026-06-19 07:32:35.977684+00 \N
+cbd29a06-db01-4393-aa4f-8bd9c42a45ad ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 bookings packing_list contract-BK-2026-000007.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/ae8f06a4-6eb7-4c71-9d91-1d75b06050a4/1781854518589_contract-BK-2026-000007.pdf 128466 application/pdf 2026-06-19 07:35:18.635417+00 2026-06-19 07:35:18.635417+00 \N
+e104a978-4694-49c1-a9e1-d5075981cf3e ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 bookings certificate_of_origin contract-BK-2026-000007.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/ae8f06a4-6eb7-4c71-9d91-1d75b06050a4/1781854518589_contract-BK-2026-000007.pdf 128466 application/pdf 2026-06-19 07:35:18.648128+00 2026-06-19 07:35:18.648128+00 \N
+c16ca211-2f70-458c-86f3-d22cc9d9334d ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 bookings commercial_invoice contract-BK-2026-000007.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/ae8f06a4-6eb7-4c71-9d91-1d75b06050a4/1781854518588_contract-BK-2026-000007.pdf 128466 application/pdf 2026-06-19 07:35:18.649387+00 2026-06-19 07:35:18.649387+00 \N
+82929d34-6e45-4904-9588-ee8399f9b5c9 ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 bookings letter_of_credit contract-BK-2026-000007 (2).pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/ae8f06a4-6eb7-4c71-9d91-1d75b06050a4/1781854518589_contract-BK-2026-000007 (2).pdf 128466 application/pdf 2026-06-19 07:35:18.654502+00 2026-06-19 07:35:18.654502+00 \N
+9e7786f6-8323-487f-9493-87b6462511b4 ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 bookings signature_customer signature-customer-BK-2026-000039.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/ae8f06a4-6eb7-4c71-9d91-1d75b06050a4/1781854579603_signature-customer-BK-2026-000039.png 8216 image/png 2026-06-19 07:36:19.617063+00 2026-06-19 07:36:19.617063+00 \N
+7d448496-862a-4f4e-9a09-99ba2da3e591 0e1e709c-7bf6-4852-869e-678924f2315e saved_signatures signature signature-0e1e709c-7bf6-4852-869e-678924f2315e.png https://minio-dev.smart.aaca.gov.et:443/fhc/saved_signatures/0e1e709c-7bf6-4852-869e-678924f2315e/1781854579634_signature-0e1e709c-7bf6-4852-869e-678924f2315e.png 8216 image/png 2026-06-19 07:36:19.645263+00 2026-06-19 07:36:19.645263+00 \N
+686c0577-a9c2-4a94-8704-ab94e3bbb911 ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 bookings signature_staff signature-staff-BK-2026-000039.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/ae8f06a4-6eb7-4c71-9d91-1d75b06050a4/1781854591582_signature-staff-BK-2026-000039.png 8739 image/png 2026-06-19 07:36:31.596667+00 2026-06-19 07:36:31.596667+00 \N
+61eb6cb2-80a2-42c6-86aa-3ec2a6ed763f 853672fc-063b-4ef0-8413-c8c1f66b0e65 bookings packing_list sample.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/853672fc-063b-4ef0-8413-c8c1f66b0e65/1781856160705_sample.pdf 18810 application/pdf 2026-06-19 08:02:40.763724+00 2026-06-19 08:02:40.763724+00 \N
+7d00851f-1fb2-41d8-a35d-0e91b55f083e 853672fc-063b-4ef0-8413-c8c1f66b0e65 bookings commercial_invoice sample.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/853672fc-063b-4ef0-8413-c8c1f66b0e65/1781856160705_sample.pdf 18810 application/pdf 2026-06-19 08:02:40.776375+00 2026-06-19 08:02:40.776375+00 \N
+fe474843-9dc8-4148-a41c-ab1f729947e1 853672fc-063b-4ef0-8413-c8c1f66b0e65 bookings certificate_of_origin sample.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/853672fc-063b-4ef0-8413-c8c1f66b0e65/1781856160705_sample.pdf 18810 application/pdf 2026-06-19 08:02:40.807136+00 2026-06-19 08:02:40.807136+00 \N
+a4ad9c90-6720-4ef7-b59d-68f0a603dbc6 853672fc-063b-4ef0-8413-c8c1f66b0e65 bookings letter_of_credit sample.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/853672fc-063b-4ef0-8413-c8c1f66b0e65/1781856160705_sample.pdf 18810 application/pdf 2026-06-19 08:02:40.816869+00 2026-06-19 08:02:40.816869+00 \N
+74ed802b-c620-4b57-ac74-49686d06ffd1 454b514a-06d4-4ea9-854b-8409fd7f9781 bookings commercial_invoice sample.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/454b514a-06d4-4ea9-854b-8409fd7f9781/1781856494856_sample.pdf 18810 application/pdf 2026-06-19 08:08:14.895623+00 2026-06-19 08:08:14.895623+00 \N
+cca5dc73-125a-4749-9970-9e6d5a2f13a8 454b514a-06d4-4ea9-854b-8409fd7f9781 bookings certificate_of_origin sample.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/454b514a-06d4-4ea9-854b-8409fd7f9781/1781856494857_sample.pdf 18810 application/pdf 2026-06-19 08:08:14.908509+00 2026-06-19 08:08:14.908509+00 \N
+aa758e26-5ec5-4fd6-b294-95e598f9e5b5 454b514a-06d4-4ea9-854b-8409fd7f9781 bookings packing_list sample.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/454b514a-06d4-4ea9-854b-8409fd7f9781/1781856494857_sample.pdf 18810 application/pdf 2026-06-19 08:08:14.947336+00 2026-06-19 08:08:14.947336+00 \N
+6fe7ada7-cfd3-40ea-b220-2b50e27eaf5d 454b514a-06d4-4ea9-854b-8409fd7f9781 bookings letter_of_credit sample.pdf https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/454b514a-06d4-4ea9-854b-8409fd7f9781/1781856494857_sample.pdf 18810 application/pdf 2026-06-19 08:08:14.962057+00 2026-06-19 08:08:14.962057+00 \N
+628ac9ce-2383-4a58-928f-2dc406ff9eaf b7e27b32-2c33-4a15-a13f-b849826d21a4 saved_signatures signature signature-b7e27b32-2c33-4a15-a13f-b849826d21a4.png https://minio-dev.smart.aaca.gov.et:443/fhc/saved_signatures/b7e27b32-2c33-4a15-a13f-b849826d21a4/1781856809438_signature-b7e27b32-2c33-4a15-a13f-b849826d21a4.png 5424 image/png 2026-06-19 08:13:29.469113+00 2026-06-19 08:13:29.469113+00 \N
+108d8b29-4c90-464b-966d-afabfcfc4f34 454b514a-06d4-4ea9-854b-8409fd7f9781 bookings signature_customer signature-customer-BK-2026-000041.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/454b514a-06d4-4ea9-854b-8409fd7f9781/1781856917768_signature-customer-BK-2026-000041.png 12344 image/png 2026-06-19 08:15:17.7937+00 2026-06-19 08:15:17.7937+00 \N
+6f07359c-ebac-43f5-8676-a34e6b41aa96 6f001573-e7e0-4952-81ad-e422cfd4dc1e saved_signatures signature signature-6f001573-e7e0-4952-81ad-e422cfd4dc1e.png https://minio-dev.smart.aaca.gov.et:443/fhc/saved_signatures/6f001573-e7e0-4952-81ad-e422cfd4dc1e/1781856917809_signature-6f001573-e7e0-4952-81ad-e422cfd4dc1e.png 12344 image/png 2026-06-19 08:15:17.827255+00 2026-06-19 08:15:17.827255+00 \N
+034db6fd-9f18-44af-a72f-a30beef29e48 454b514a-06d4-4ea9-854b-8409fd7f9781 bookings signature_staff signature-staff-BK-2026-000041.png https://minio-dev.smart.aaca.gov.et:443/fhc/bookings/454b514a-06d4-4ea9-854b-8409fd7f9781/1781856942970_signature-staff-BK-2026-000041.png 8739 image/png 2026-06-19 08:15:42.993208+00 2026-06-19 08:15:42.993208+00 \N
+00474207-00f3-41fd-adf9-8073f9cbcc7e 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 saved_signatures signature signature-6f70ac3e-76dd-4c7c-be51-4838a5b92ad9.png https://minio-dev.smart.aaca.gov.et:443/fhc/saved_signatures/6f70ac3e-76dd-4c7c-be51-4838a5b92ad9/1781856943008_signature-6f70ac3e-76dd-4c7c-be51-4838a5b92ad9.png 8739 image/png 2026-06-19 08:15:43.019516+00 2026-06-19 08:15:43.019516+00 \N
+\.
+
+
+--
+-- Data for Name: invoices; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.invoices (id, created_at, updated_at, deleted_at, booking_id, invoice_number, amount, currency, status, issued_at, due_at) FROM stdin;
+\.
+
+
+--
+-- Data for Name: locomotives; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.locomotives (id, code, name, max_pull_weight_tons, status, created_at, updated_at, deleted_at, locomotive_type, max_train_length_meters, power_kw, traction_force_kn, max_speed_kmh, current_yard_id) FROM stdin;
+df1aeb0a-d5fe-47af-92aa-4282fbbbebc9 ERF002 Intercity 45.000 AVAILABLE 2026-06-17 08:28:40.580204+00 2026-06-19 06:50:25.569701+00 \N ELECTRIC 760.000 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78
+58df686a-5839-419b-b97e-b53e9d7ac169 ERF003 Intercity 0.000 ASSIGNED 2026-06-17 08:30:35.739827+00 2026-06-19 06:50:54.936077+00 \N ELECTRIC 760.000 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767
+ee9556be-4928-4a58-8a01-47223ebeeb88 ERF004 MNLOCO 0.000 ASSIGNED 2026-06-18 10:36:23.660871+00 2026-06-19 06:51:08.406163+00 \N DIESEL 760.000 \N \N \N 17964b5f-4b99-4f0e-b855-1aa5d4237934
+bf126e10-441e-44e3-83c1-9189e7a81d8d ERF005 Loco 3500.000 ASSIGNED 2026-06-17 06:30:40.75308+00 2026-06-19 06:51:20.276363+00 \N DIESEL 760.000 25.000 5.000 4.000 bbd94d0d-8876-4f4e-a330-816db40d8767
+26d7bc89-ccac-4902-82bd-781daac4b9f3 ERF006 HXD1C 0.000 AVAILABLE 2026-06-19 06:16:10.696774+00 2026-06-19 06:52:12.078732+00 \N ELECTRIC 760.000 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767
+7c428bda-9a49-4eba-84bc-e7be6c85c200 L_01 Locomotive A 3500.000 ASSIGNED 2026-06-17 08:42:01.334833+00 2026-06-19 06:52:22.637005+00 \N DIESEL 760.000 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78
+73edee75-3261-4976-addf-506d947cbdcc LOC-001 Demo Locomotive 1 3500.000 ASSIGNED 2026-06-16 17:56:01.344427+00 2026-06-19 06:52:32.032006+00 \N ELECTRIC 760.000 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767
+41a3b0ff-c596-4749-a813-3275c30e670b LOC-002 Demo Locomotive 2 2500.000 AVAILABLE 2026-06-16 17:56:01.344427+00 2026-06-19 06:52:39.145022+00 \N DIESEL 760.000 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78
+421ee2ea-7e47-4379-b78c-dcea7401dc6a ERF001 Freight 3500.000 ASSIGNED 2026-06-17 09:03:47.249597+00 2026-06-19 07:07:52.521434+00 \N ELECTRIC 760.000 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78
+6d0c060d-2e0d-40fa-b5ae-1293bd33be38 1233455 locococo 0.000 ASSIGNED 2026-06-19 13:17:52.719404+00 2026-06-19 13:18:11.40286+00 \N DIESEL 760.000 \N \N \N 17964b5f-4b99-4f0e-b855-1aa5d4237934
+\.
+
+
+--
+-- Data for Name: payment_refunds; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.payment_refunds (id, payment_id, amount_minor, reason, provider_refund_id, status, created_at) FROM stdin;
+\.
+
+
+--
+-- Data for Name: payment_webhook_events; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.payment_webhook_events (id, provider, external_event_id, merchant_order_id, provider_txn_id, signature_valid, status, payload, received_at, processed_at, processing_error) FROM stdin;
+\.
+
+
+--
+-- Data for Name: payments; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.payments (id, ref_id, type, method, currency, amount, raw_initiation, client_action, merchant_order_id, transaction_id, status, paid_at, refunded_at, expires_at, failer_code, failer_message, reason, created_at) FROM stdin;
+667f0813-a788-4de3-80e2-069648e13c13 350eb448-428a-48b3-9629-a5c022895066 booking telebirr ETB 285718.00 {"status": "REQUIRES_ACTION", "service": "FREIGHT", "currency": "ETB", "intentId": "2746d2e7-e0d8-4a1b-ac30-4e1948199028", "provider": "TELEBIRR", "expiresAt": "2026-06-18T19:26:14.419Z", "amountMinor": 285718, "referenceId": "350eb448-428a-48b3-9629-a5c022895066", "clientAction": {"url": "https://developerportal.ethiotelebirr.et:38443/payment/web/paygate?appid=1227472858880206&merch_code=900727&nonce_str=JB6IADZSOJPOG5VWYXBS5NWQLJ5QVYGL&prepay_id=026318957ac6abc1bcafa8bbfc2f4482c59002×tamp=1781809874&sign_type=SHA256WithRSA&sign=OXZN4CFAWRGVhi22hbfRQ0OWgaacJcnlqN1lXr5lw8JLoO9elmTARcMsIngxZoDVAcUABi1rxEuG7mvuRI8rd8d7ih/Bs07cG4exqKo7ziAWibnWJr1sxGHis8ScX3r1VMQk9LP+vNUxb9bFXyn3WPUznVpEKMExInVHoRQtVjtCBgxagdovAwh+j6JuTCG0g5lz88LgZ1W6avkd7uwfR7fz7NOENls+bu0MqS4Kb0SE3YZ1E7eAClxzYPh8jSEIjLKN4z/IF0InEMMfwI/WfGnI1Oa0j7r06WryY6GhceaP21xvK74EhgF3Qb8XhahETLVWjMYD3Ejjb0tvUTb0hA==&version=1.0&trade_type=Checkout", "type": "REDIRECT"}, "referenceType": "SHIPMENT", "merchantOrderId": "178180987309025f66ee8"} {"url": "https://developerportal.ethiotelebirr.et:38443/payment/web/paygate?appid=1227472858880206&merch_code=900727&nonce_str=JB6IADZSOJPOG5VWYXBS5NWQLJ5QVYGL&prepay_id=026318957ac6abc1bcafa8bbfc2f4482c59002×tamp=1781809874&sign_type=SHA256WithRSA&sign=OXZN4CFAWRGVhi22hbfRQ0OWgaacJcnlqN1lXr5lw8JLoO9elmTARcMsIngxZoDVAcUABi1rxEuG7mvuRI8rd8d7ih/Bs07cG4exqKo7ziAWibnWJr1sxGHis8ScX3r1VMQk9LP+vNUxb9bFXyn3WPUznVpEKMExInVHoRQtVjtCBgxagdovAwh+j6JuTCG0g5lz88LgZ1W6avkd7uwfR7fz7NOENls+bu0MqS4Kb0SE3YZ1E7eAClxzYPh8jSEIjLKN4z/IF0InEMMfwI/WfGnI1Oa0j7r06WryY6GhceaP21xvK74EhgF3Qb8XhahETLVWjMYD3Ejjb0tvUTb0hA==&version=1.0&trade_type=Checkout", "type": "REDIRECT"} 178180987309025f66ee8 026011086I22121300001007 success 2026-06-18 \N 2026-06-18 19:26:14.419 \N \N Payment for booking BK-2026-000031 2026-06-18 19:11:14.451919
+615ed862-9ac6-45c8-974d-c74454704c4a 3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1 booking telebirr ETB 190724.00 {"status": "REQUIRES_ACTION", "service": "FREIGHT", "currency": "ETB", "intentId": "352924a4-2b16-439e-aab7-42427eb3bd0d", "provider": "TELEBIRR", "expiresAt": "2026-06-19T07:01:02.061Z", "amountMinor": 190724, "referenceId": "3e2b15d2-cc2b-4f1d-994f-268f7fe5c5c1", "clientAction": {"url": "https://developerportal.ethiotelebirr.et:38443/payment/web/paygate?appid=1227472858880206&merch_code=900727&nonce_str=GJW26LM97JZYZ6O66Z9FI41ZZESLQRTH&prepay_id=0266731cefd75f5834d41cfc5f2ef89055c001×tamp=1781851562&sign_type=SHA256WithRSA&sign=NkzWsOh0JN1ZYbv4HkPsdzKKN+EyHbk0+hk7w56WfwtCpCaJU/yA+gPJawvqrYPGJUtQMtdmtmzVpw23/Aal69SYAizeg/enztGql+NjFtWxVp1b8nIXIygIhQ53T6WOuK7qk/OjbLSPL7Pw3Dt+eNPv5Vl3EHnTKB/Pc7OcjFQluIbZMW1cNsVQ6AmkU/eE9KwjI7tcech8G3VatLUVkaqezf4Ej+AMAYicLAkdOrpgdqX5KrXLHJxiTbrI/dnfWtULpduVdGbruV9qED0B289iv7OBTFbtsbXal9QD7BbgBwlIu49Kah2BnRMYRnXUvE5/KcX6dCBxNq/otARIHA==&version=1.0&trade_type=Checkout", "type": "REDIRECT"}, "referenceType": "SHIPMENT", "merchantOrderId": "17818515615452f6a2947"} {"url": "https://developerportal.ethiotelebirr.et:38443/payment/web/paygate?appid=1227472858880206&merch_code=900727&nonce_str=GJW26LM97JZYZ6O66Z9FI41ZZESLQRTH&prepay_id=0266731cefd75f5834d41cfc5f2ef89055c001×tamp=1781851562&sign_type=SHA256WithRSA&sign=NkzWsOh0JN1ZYbv4HkPsdzKKN+EyHbk0+hk7w56WfwtCpCaJU/yA+gPJawvqrYPGJUtQMtdmtmzVpw23/Aal69SYAizeg/enztGql+NjFtWxVp1b8nIXIygIhQ53T6WOuK7qk/OjbLSPL7Pw3Dt+eNPv5Vl3EHnTKB/Pc7OcjFQluIbZMW1cNsVQ6AmkU/eE9KwjI7tcech8G3VatLUVkaqezf4Ej+AMAYicLAkdOrpgdqX5KrXLHJxiTbrI/dnfWtULpduVdGbruV9qED0B289iv7OBTFbtsbXal9QD7BbgBwlIu49Kah2BnRMYRnXUvE5/KcX6dCBxNq/otARIHA==&version=1.0&trade_type=Checkout", "type": "REDIRECT"} 17818515615452f6a2947 \N failed \N \N 2026-06-19 07:01:02.061 PAY_FAILED \N Payment for booking BK-2026-000034 2026-06-19 06:46:02.085775
+061f55d8-e3ba-400c-8c62-a91d41579402 476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0 booking telebirr ETB 190479.00 {"status": "REQUIRES_ACTION", "service": "FREIGHT", "currency": "ETB", "intentId": "de73c486-2088-404d-8f3a-27cf178aec6a", "provider": "TELEBIRR", "expiresAt": "2026-06-18T22:32:55.729Z", "amountMinor": 190479, "referenceId": "476bbb64-f2f3-4f4b-87c6-7bf3989ac7e0", "clientAction": {"url": "https://developerportal.ethiotelebirr.et:38443/payment/web/paygate?appid=1227472858880206&merch_code=900727&nonce_str=9C9BYBY09IU23AISKUADTRLZ9CAP2OAW&prepay_id=0267bc85e90a4f4a33db34ee85ee4066f09008×tamp=1781821076&sign_type=SHA256WithRSA&sign=B4cCsymvf+A6j7AEmgO1SFTcXesxu79NmtGUdCncsgbGBZEyLird5/APC0a5+l6CLBzWtpi45pB2mlINYRUGGtWEaCItehtejFIC750GN7jUV64SHzggTM2C0W005HIhyjuEK5qa6WURO9zzYCLvHtpV4We7fpt4M2hkhZEIeFG9oDJVanggy4TMRoVb7e5N3c75/YyZwBvoNeIK8OoVCrWeKzUP9utxWHdx3R3ukCHGaaL/M3X6lSNDdI3Z1u2RDzAtw15VKFV+mAn/pxYm/W3VW2Yg48ceT4ByevuGVaFqXe9s0iTZEMkTPeuAcYtLq+VDodb6+05tofeHmelzDA==&version=1.0&trade_type=Checkout", "type": "REDIRECT"}, "referenceType": "SHIPMENT", "merchantOrderId": "17818210742844ca76456"} {"url": "https://developerportal.ethiotelebirr.et:38443/payment/web/paygate?appid=1227472858880206&merch_code=900727&nonce_str=9C9BYBY09IU23AISKUADTRLZ9CAP2OAW&prepay_id=0267bc85e90a4f4a33db34ee85ee4066f09008×tamp=1781821076&sign_type=SHA256WithRSA&sign=B4cCsymvf+A6j7AEmgO1SFTcXesxu79NmtGUdCncsgbGBZEyLird5/APC0a5+l6CLBzWtpi45pB2mlINYRUGGtWEaCItehtejFIC750GN7jUV64SHzggTM2C0W005HIhyjuEK5qa6WURO9zzYCLvHtpV4We7fpt4M2hkhZEIeFG9oDJVanggy4TMRoVb7e5N3c75/YyZwBvoNeIK8OoVCrWeKzUP9utxWHdx3R3ukCHGaaL/M3X6lSNDdI3Z1u2RDzAtw15VKFV+mAn/pxYm/W3VW2Yg48ceT4ByevuGVaFqXe9s0iTZEMkTPeuAcYtLq+VDodb6+05tofeHmelzDA==&version=1.0&trade_type=Checkout", "type": "REDIRECT"} 17818210742844ca76456 \N failed \N \N 2026-06-18 22:32:55.729 PAY_FAILED \N Payment for booking BK-2026-000033 2026-06-18 22:17:55.754729
+0503a863-3306-4a6a-9aff-40d1c555a5d1 ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 booking telebirr ETB 190724.00 {"status": "REQUIRES_ACTION", "service": "FREIGHT", "currency": "ETB", "intentId": "923f556a-ef4d-462e-acad-b85bc3fdd788", "provider": "TELEBIRR", "expiresAt": "2026-06-19T07:52:54.118Z", "amountMinor": 190724, "referenceId": "ae8f06a4-6eb7-4c71-9d91-1d75b06050a4", "clientAction": {"url": "https://developerportal.ethiotelebirr.et:38443/payment/web/paygate?appid=1227472858880206&merch_code=900727&nonce_str=J3YIA6CW5BFGWAGL6TEJL1L6ICNBG18W&prepay_id=0265af268e94c4479a6cbdf3fda36c7b0a0001×tamp=1781854674&sign_type=SHA256WithRSA&sign=VaDdRRAjbnkZy/jq7jdjkrnCk8bA28lzNUV7ONUKejLimk8aC0awLmY6c5yO7NpH5U+gtrhf3LM2CtKYK7wzrPNyPMxkj1AzWF2yPn+Bg2mGtVuI2P0UCQLsUp2Xmv2fpLahiVKFm6G9t888ys52tExd4bXPX9X3NTD0lYDWPChWKCadh6X27vNA8k0/ahysLpgxQ6ipxbfsuZZsD6ho6LyYzDBTRvK0dbWiOOJVTX8zTVE4Ifru+MdV/j/7bpGG2/NqNEuMZ0D1fSrhNrYAsgFRoj3HokA7DC6D9IKfPpXX77LoNv7hxZch4sRX2c5/GpqCzKBhJ+IEczRAkYvgvg==&version=1.0&trade_type=Checkout", "type": "REDIRECT"}, "referenceType": "SHIPMENT", "merchantOrderId": "17818546735301d7ecea4"} {"url": "https://developerportal.ethiotelebirr.et:38443/payment/web/paygate?appid=1227472858880206&merch_code=900727&nonce_str=J3YIA6CW5BFGWAGL6TEJL1L6ICNBG18W&prepay_id=0265af268e94c4479a6cbdf3fda36c7b0a0001×tamp=1781854674&sign_type=SHA256WithRSA&sign=VaDdRRAjbnkZy/jq7jdjkrnCk8bA28lzNUV7ONUKejLimk8aC0awLmY6c5yO7NpH5U+gtrhf3LM2CtKYK7wzrPNyPMxkj1AzWF2yPn+Bg2mGtVuI2P0UCQLsUp2Xmv2fpLahiVKFm6G9t888ys52tExd4bXPX9X3NTD0lYDWPChWKCadh6X27vNA8k0/ahysLpgxQ6ipxbfsuZZsD6ho6LyYzDBTRvK0dbWiOOJVTX8zTVE4Ifru+MdV/j/7bpGG2/NqNEuMZ0D1fSrhNrYAsgFRoj3HokA7DC6D9IKfPpXX77LoNv7hxZch4sRX2c5/GpqCzKBhJ+IEczRAkYvgvg==&version=1.0&trade_type=Checkout", "type": "REDIRECT"} 17818546735301d7ecea4 026011086J10395800001006 success 2026-06-19 \N 2026-06-19 07:52:54.118 \N \N Payment for booking BK-2026-000039 2026-06-19 07:37:54.142534
+651740ed-1dfb-4f9f-aa58-7a1cc0dc870b e3f09fde-b4af-4864-8bdd-929d206f7778 booking telebirr ETB 174830.00 {"status": "REQUIRES_ACTION", "service": "FREIGHT", "currency": "ETB", "intentId": "01edf5d8-abdf-4af7-b2f4-7b08a01009a0", "provider": "TELEBIRR", "expiresAt": "2026-06-19T07:34:48.954Z", "amountMinor": 174830, "referenceId": "e3f09fde-b4af-4864-8bdd-929d206f7778", "clientAction": {"url": "https://developerportal.ethiotelebirr.et:38443/payment/web/paygate?appid=1227472858880206&merch_code=900727&nonce_str=Q1HVVCU78LUOJO0JQTTEEIA7VWK9KHMD&prepay_id=026b57e885b8a90a3aa682414b85c1f1489005×tamp=1781853589&sign_type=SHA256WithRSA&sign=XYHHSHGxE9FkGsnT1RJUvWUIHXxrU6rgldgB5tBIZy1RjX6RA9gvl+V4mzD3r4cw1mW2TXLeVfHZT8b6l0F7rfyqC7+0+3q0F6AbXMavpVvw5hqcwLjVrMTvdcNMtsCu9EJUhUIhxmoxx+Q3lHSvsnvk1yorVsAwha4AWOBm3o+Y+sBV7n+hMZuR4P3TilYGkZduxZ+DUWILSI/kIxLwt7Q9PforzPE5yWEuPjIKvf1U6tG090M4CtK2NwI23kJe/zIHYif9pqHM11XpgwhvhN6MT9+DStT5IYf2bfML4Isg8xusaNixTYs8SzyS/l749yP+Rz9XsLTl5Ne3DBbg4g==&version=1.0&trade_type=Checkout", "type": "REDIRECT"}, "referenceType": "SHIPMENT", "merchantOrderId": "178185358832930463621"} {"url": "https://developerportal.ethiotelebirr.et:38443/payment/web/paygate?appid=1227472858880206&merch_code=900727&nonce_str=Q1HVVCU78LUOJO0JQTTEEIA7VWK9KHMD&prepay_id=026b57e885b8a90a3aa682414b85c1f1489005×tamp=1781853589&sign_type=SHA256WithRSA&sign=XYHHSHGxE9FkGsnT1RJUvWUIHXxrU6rgldgB5tBIZy1RjX6RA9gvl+V4mzD3r4cw1mW2TXLeVfHZT8b6l0F7rfyqC7+0+3q0F6AbXMavpVvw5hqcwLjVrMTvdcNMtsCu9EJUhUIhxmoxx+Q3lHSvsnvk1yorVsAwha4AWOBm3o+Y+sBV7n+hMZuR4P3TilYGkZduxZ+DUWILSI/kIxLwt7Q9PforzPE5yWEuPjIKvf1U6tG090M4CtK2NwI23kJe/zIHYif9pqHM11XpgwhvhN6MT9+DStT5IYf2bfML4Isg8xusaNixTYs8SzyS/l749yP+Rz9XsLTl5Ne3DBbg4g==&version=1.0&trade_type=Checkout", "type": "REDIRECT"} 178185358832930463621 \N failed \N \N 2026-06-19 07:34:48.954 PAY_FAILED \N Payment for booking BK-2026-000036 2026-06-19 07:19:48.97471
+9aca41e0-8a23-4371-a03e-1cd692ec4216 b6e0149e-4866-4dca-b9bc-fc6f451dc6b0 booking telebirr ETB 190724.00 {"status": "REQUIRES_ACTION", "service": "FREIGHT", "currency": "ETB", "intentId": "b1162088-7a41-48c5-8dea-54215321f761", "provider": "TELEBIRR", "expiresAt": "2026-06-19T07:40:59.953Z", "amountMinor": 190724, "referenceId": "b6e0149e-4866-4dca-b9bc-fc6f451dc6b0", "clientAction": {"url": "https://developerportal.ethiotelebirr.et:38443/payment/web/paygate?appid=1227472858880206&merch_code=900727&nonce_str=OVWYHTCG1Z9SHTLJ2ETOLCZVP91BL74G&prepay_id=0261c28d1883c931269bb570ebfd823052a001×tamp=1781853960&sign_type=SHA256WithRSA&sign=u7XlMCVcxkcm5lHwLK7w5fMjLC1Oi107xxLNzbocAw5pK7EZkzTEsNij3hdBL63geKBT6mfUn2ka/pYQE+mkcjCrz4f6Y0rbX1FycToKzYBlbDbDkLIkn9K11XnoGeOIHoqS1SKogXTH3lLqpgVgnhn/379AskOZt6AIT5OiPbtsLwK0Mw13EH3Tuirvr9PV287jWaphR9brRHfbXGAB/XJ8iTA3A8iR2G4VAAHOM7kZ2XDArKDoF6NKym/AX/Pu3pA0bZnhSEu5CtacCH+r4V0DwhX4Y/96oHVuex/MSlqjcwpuMCNOLnbs+k81Om4l5LQtvQc/dKiGNsNt0ApE6w==&version=1.0&trade_type=Checkout", "type": "REDIRECT"}, "referenceType": "SHIPMENT", "merchantOrderId": "1781853959402692481ab"} {"url": "https://developerportal.ethiotelebirr.et:38443/payment/web/paygate?appid=1227472858880206&merch_code=900727&nonce_str=OVWYHTCG1Z9SHTLJ2ETOLCZVP91BL74G&prepay_id=0261c28d1883c931269bb570ebfd823052a001×tamp=1781853960&sign_type=SHA256WithRSA&sign=u7XlMCVcxkcm5lHwLK7w5fMjLC1Oi107xxLNzbocAw5pK7EZkzTEsNij3hdBL63geKBT6mfUn2ka/pYQE+mkcjCrz4f6Y0rbX1FycToKzYBlbDbDkLIkn9K11XnoGeOIHoqS1SKogXTH3lLqpgVgnhn/379AskOZt6AIT5OiPbtsLwK0Mw13EH3Tuirvr9PV287jWaphR9brRHfbXGAB/XJ8iTA3A8iR2G4VAAHOM7kZ2XDArKDoF6NKym/AX/Pu3pA0bZnhSEu5CtacCH+r4V0DwhX4Y/96oHVuex/MSlqjcwpuMCNOLnbs+k81Om4l5LQtvQc/dKiGNsNt0ApE6w==&version=1.0&trade_type=Checkout", "type": "REDIRECT"} 1781853959402692481ab \N failed \N \N 2026-06-19 07:40:59.953 PAY_FAILED \N Payment for booking BK-2026-000037 2026-06-19 07:25:59.976188
+68e703c8-3af8-4902-a540-bd56eb0621ef 454b514a-06d4-4ea9-854b-8409fd7f9781 booking waafi USD 1200.00 {"status": "REQUIRES_ACTION", "service": "FREIGHT", "currency": "USD", "intentId": "a550a060-ca83-48c8-bcab-9b9dec2d3119", "provider": "WAAFI", "expiresAt": "2026-06-19T08:21:19.628Z", "amountMinor": 1200, "referenceId": "454b514a-06d4-4ea9-854b-8409fd7f9781", "clientAction": {"url": "https://sandbox.waafipay.com/hpp/6537366a2f46534e576341387a4e454a6f6d584161673d3d", "type": "REDIRECT"}, "referenceType": "SHIPMENT", "merchantOrderId": "17818569790088b630b2a"} {"url": "https://sandbox.waafipay.com/hpp/6537366a2f46534e576341387a4e454a6f6d584161673d3d", "type": "REDIRECT"} 17818569790088b630b2a \N failed \N \N 2026-06-19 08:21:19.628 EXPIRED Payment session expired before completion Payment for booking BK-2026-000041 2026-06-19 08:16:19.649219
+\.
+
+
+--
+-- Data for Name: priority_configs; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.priority_configs (id, type, label, currency, min_wagon_count, max_wagon_count, score_points, is_active, display_order, created_at, updated_at, deleted_at) FROM stdin;
+638b6258-6f19-4792-85e9-ba04112bd662 WAGON Wagons 1–20 \N 1 20 0 t 1 2026-06-16 17:56:01.496816+00 2026-06-18 12:01:01.870804+00 2026-06-18 12:01:01.870804+00
+8ef5072a-d1c9-45f7-9791-63b836d56534 WAGON Wagons 21–30 \N 21 30 15 t 2 2026-06-16 17:56:01.496816+00 2026-06-18 12:01:05.996474+00 2026-06-18 12:01:05.996474+00
+a1cc5b61-58d9-4276-93fb-1c1b4c334454 WAGON Wagons 31–40 \N 31 40 30 t 3 2026-06-16 17:56:01.496816+00 2026-06-18 12:01:09.531357+00 2026-06-18 12:01:09.531357+00
+06309911-e5a2-4bdf-9279-10660777c010 WAGON Wagons 41–50 \N 41 50 50 t 4 2026-06-16 17:56:01.496816+00 2026-06-18 12:01:13.495488+00 2026-06-18 12:01:13.495488+00
+a2235e4b-35b9-46ca-814a-98463a9d2652 CURRENCY USD · Wagons 1–25 USD 1 25 17 t 5 2026-06-16 17:56:01.496816+00 2026-06-18 12:01:17.155581+00 2026-06-18 12:01:17.155581+00
+5b4d32a5-a389-4eaa-b329-97744ed01adc CURRENCY USD · Wagons 26–50 USD 26 50 35 t 6 2026-06-16 17:56:01.496816+00 2026-06-18 12:01:20.934401+00 2026-06-18 12:01:20.934401+00
+3df3f8d6-89b6-4179-81da-69965638252b CURRENCY ETB · Wagons 1–50 ETB 1 50 0 t 7 2026-06-16 17:56:01.496816+00 2026-06-18 12:04:29.186615+00 2026-06-18 12:04:29.186615+00
+1c2ad73c-918e-4538-8070-65ff230a82fb CURRENCY 1781679124456 USD 1 53 50 t 8 2026-06-17 06:52:04.863094+00 2026-06-18 12:04:33.011712+00 2026-06-18 12:04:33.011712+00
+c45c6fc5-d3eb-4557-bcde-cddadc4a9c80 WAGON 1781784974058 \N 1 20 0 t 1 2026-06-18 12:16:14.266546+00 2026-06-18 12:16:14.266546+00 \N
+81d75b7a-55c4-4664-8a91-8a88a3cba016 WAGON 1781785013201 \N 21 30 15 t 2 2026-06-18 12:16:53.363542+00 2026-06-18 12:16:53.363542+00 \N
+dba58f04-b6ac-4995-928d-5f0bebf286d1 WAGON 1781785053437 \N 31 40 30 t 3 2026-06-18 12:17:33.592023+00 2026-06-18 12:17:33.592023+00 \N
+5f13c660-ab74-4dbb-a1f7-c69d901e08c0 WAGON 1781785096418 \N 41 50 50 t 4 2026-06-18 12:18:16.57987+00 2026-06-18 12:18:16.57987+00 \N
+8d2f53a4-3185-40b4-9fc2-8165a7e188ca CURRENCY 1781785139347 USD 1 25 17 t 5 2026-06-18 12:18:59.511158+00 2026-06-18 12:18:59.511158+00 \N
+9cccf706-c838-4a16-9932-1db139f2513c CURRENCY 1781785187257 USD 26 50 50 t 6 2026-06-18 12:19:47.423718+00 2026-06-18 12:19:47.423718+00 \N
+abd538e2-7727-4e03-b5cd-a1ec916869d1 CURRENCY 1781785830280 ETB 1 20 17 t 7 2026-06-18 12:30:30.449319+00 2026-06-18 12:30:58.347239+00 2026-06-18 12:30:58.347239+00
+\.
+
+
+--
+-- Data for Name: priority_rules; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.priority_rules (id, is_active, created_at, updated_at, deleted_at, code, label, score, condition_currency) FROM stdin;
+\.
+
+
+--
+-- Data for Name: rates; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.rates (id, rate_type, container_type_id, trade_direction, currency, rate_value, rate_unit, status, proposed_by_staff_id, approved_by_ceo_id, approved_at, effective_from, effective_to, created_at, updated_at, deleted_at) FROM stdin;
+3a81e95f-b3a6-41cd-8f55-38d4f7bc4b10 CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 800.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 17:56:01.547+00 2026-01-01 \N 2026-06-16 17:56:01.496816+00 2026-06-16 17:56:01.496816+00 \N
+0ca906ec-8f36-4676-8c60-e87c4e11812a CONTAINER_IMPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 1200.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 17:56:01.547+00 2026-01-01 \N 2026-06-16 17:56:01.496816+00 2026-06-16 17:56:01.496816+00 \N
+c723a426-bfab-4a8e-aaee-8a917110fad0 CONTAINER_EXPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 600.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 17:56:01.547+00 2026-01-01 \N 2026-06-16 17:56:01.496816+00 2026-06-16 17:56:01.496816+00 \N
+bcba5b5e-09ef-4703-b8be-c60d34d40f49 CONTAINER_EXPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 900.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 17:56:01.547+00 2026-01-01 \N 2026-06-16 17:56:01.496816+00 2026-06-16 17:56:01.496816+00 \N
+2cdb9e72-75d3-4100-98a5-dbfddb186970 CONTAINER_IMPORT \N \N USD 1000.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 17:56:01.547+00 2026-01-01 \N 2026-06-16 17:56:01.496816+00 2026-06-16 17:56:01.496816+00 \N
+f9f19939-66cc-4d54-9e25-aeb589a5c0b1 CONTAINER_EXPORT \N \N USD 750.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 17:56:01.547+00 2026-01-01 \N 2026-06-16 17:56:01.496816+00 2026-06-16 17:56:01.496816+00 \N
+09f041d6-176b-4545-9037-31917c4198f6 INTERCITY_CONTAINER a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 350.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 17:56:01.547+00 2026-01-01 \N 2026-06-16 17:56:01.496816+00 2026-06-16 17:56:01.496816+00 \N
+d775ff84-3f6c-4cb0-8ace-168ebdc865ba INTERCITY_CONTAINER b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 550.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 17:56:01.547+00 2026-01-01 \N 2026-06-16 17:56:01.496816+00 2026-06-16 17:56:01.496816+00 \N
+2c4e27da-05d3-4e25-a971-c92676e0d82a INTERCITY_CONTAINER \N \N USD 400.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 17:56:01.547+00 2026-01-01 \N 2026-06-16 17:56:01.496816+00 2026-06-16 17:56:01.496816+00 \N
+e4c42429-5ebb-4974-98eb-dac1807c0121 INTERCITY_BULK \N \N USD 35.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 17:56:01.547+00 2026-01-01 \N 2026-06-16 17:56:01.496816+00 2026-06-16 17:56:01.496816+00 \N
+cad0086c-d0b2-4283-a11b-7e1ba61895a2 BULK_IMPORT \N \N USD 50.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 17:56:01.547+00 2026-01-01 \N 2026-06-16 17:56:01.496816+00 2026-06-16 17:56:01.496816+00 \N
+80216568-eb24-48ad-891e-c69926780907 BULK_EXPORT \N \N USD 40.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 17:56:01.547+00 2026-01-01 \N 2026-06-16 17:56:01.496816+00 2026-06-16 17:56:01.496816+00 \N
+9d0ae970-395b-4375-93b4-a61370b7a103 OVERWEIGHT_PER_TON \N \N USD 25.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 17:56:01.547+00 2026-01-01 \N 2026-06-16 17:56:01.496816+00 2026-06-16 17:56:01.496816+00 \N
+20301c46-321e-4226-a339-42fe37c55f2a HAZARD_SURCHARGE \N \N USD 150.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 17:56:01.547+00 2026-01-01 \N 2026-06-16 17:56:01.496816+00 2026-06-16 17:56:01.496816+00 \N
+bcca16ce-b090-4703-ac8c-5bd4649f6c91 REEFER_SURCHARGE \N \N USD 200.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 17:56:01.547+00 2026-01-01 \N 2026-06-16 17:56:01.496816+00 2026-06-16 17:56:01.496816+00 \N
+a1378dbc-cd93-498e-a074-1354c949c8f9 DOUBLE_HANDLING \N \N USD 100.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 17:56:01.547+00 2026-01-01 \N 2026-06-16 17:56:01.496816+00 2026-06-16 17:56:01.496816+00 \N
+7d66253d-366f-4fd6-a83c-abb0e1da87c0 LASHING \N \N USD 50.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 17:56:01.547+00 2026-01-01 \N 2026-06-16 17:56:01.496816+00 2026-06-16 17:56:01.496816+00 \N
+70ded2f9-86ff-4dd5-bbea-d3c5934c3c4c CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 800.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:12:03.065+00 2026-01-01 \N 2026-06-16 19:12:03.032716+00 2026-06-16 19:12:03.032716+00 \N
+46ace784-5de1-41d0-a640-96fc9d077035 CONTAINER_IMPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 1200.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:12:03.065+00 2026-01-01 \N 2026-06-16 19:12:03.032716+00 2026-06-16 19:12:03.032716+00 \N
+63cb200c-2d46-428e-831e-024c047c4a5e CONTAINER_EXPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 600.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:12:03.065+00 2026-01-01 \N 2026-06-16 19:12:03.032716+00 2026-06-16 19:12:03.032716+00 \N
+bf978b41-e23b-4aad-bfd1-75ef7ad344af CONTAINER_EXPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 900.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:12:03.065+00 2026-01-01 \N 2026-06-16 19:12:03.032716+00 2026-06-16 19:12:03.032716+00 \N
+ae9b6631-f5aa-42ec-9400-0cd66ab402eb CONTAINER_IMPORT \N \N USD 1000.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:12:03.065+00 2026-01-01 \N 2026-06-16 19:12:03.032716+00 2026-06-16 19:12:03.032716+00 \N
+4daccbe9-683c-4313-8a7c-07e98d991819 CONTAINER_EXPORT \N \N USD 750.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:12:03.065+00 2026-01-01 \N 2026-06-16 19:12:03.032716+00 2026-06-16 19:12:03.032716+00 \N
+e1b45e38-95d5-48d2-9880-1b8ffa64691d INTERCITY_CONTAINER a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 350.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:12:03.065+00 2026-01-01 \N 2026-06-16 19:12:03.032716+00 2026-06-16 19:12:03.032716+00 \N
+3fe5cc46-fc07-447b-8609-bc9e9d0c4a0e INTERCITY_CONTAINER b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 550.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:12:03.065+00 2026-01-01 \N 2026-06-16 19:12:03.032716+00 2026-06-16 19:12:03.032716+00 \N
+57676db7-ce50-4516-9c25-1c8ce6d37ce4 INTERCITY_CONTAINER \N \N USD 400.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:12:03.065+00 2026-01-01 \N 2026-06-16 19:12:03.032716+00 2026-06-16 19:12:03.032716+00 \N
+ae32aff6-fce3-4fc4-9ac0-0c443fb36421 INTERCITY_BULK \N \N USD 35.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:12:03.065+00 2026-01-01 \N 2026-06-16 19:12:03.032716+00 2026-06-16 19:12:03.032716+00 \N
+f9a116f7-d57c-457f-b60f-1ca439f01aa6 BULK_IMPORT \N \N USD 50.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:12:03.065+00 2026-01-01 \N 2026-06-16 19:12:03.032716+00 2026-06-16 19:12:03.032716+00 \N
+8cfee985-abe0-4f33-9068-6353d52773f2 BULK_EXPORT \N \N USD 40.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:12:03.065+00 2026-01-01 \N 2026-06-16 19:12:03.032716+00 2026-06-16 19:12:03.032716+00 \N
+0cbac495-bf89-45fa-908c-64eb1fca59a1 OVERWEIGHT_PER_TON \N \N USD 25.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:12:03.065+00 2026-01-01 \N 2026-06-16 19:12:03.032716+00 2026-06-16 19:12:03.032716+00 \N
+65d73ccd-5241-4792-b915-2d37f3556d84 HAZARD_SURCHARGE \N \N USD 150.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:12:03.065+00 2026-01-01 \N 2026-06-16 19:12:03.032716+00 2026-06-16 19:12:03.032716+00 \N
+1cbc0485-5b15-41d4-b04a-585f3cd5f1f7 REEFER_SURCHARGE \N \N USD 200.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:12:03.065+00 2026-01-01 \N 2026-06-16 19:12:03.032716+00 2026-06-16 19:12:03.032716+00 \N
+054a97ba-ecb9-4342-af79-745aebe2470b DOUBLE_HANDLING \N \N USD 100.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:12:03.065+00 2026-01-01 \N 2026-06-16 19:12:03.032716+00 2026-06-16 19:12:03.032716+00 \N
+48bb12e3-3206-4da7-8f22-114ddd72be25 LASHING \N \N USD 50.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:12:03.065+00 2026-01-01 \N 2026-06-16 19:12:03.032716+00 2026-06-16 19:12:03.032716+00 \N
+72dd7fcd-c268-4eb0-9e20-be997a607c5a CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 800.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:30:40.588+00 2026-01-01 \N 2026-06-16 19:30:40.535788+00 2026-06-16 19:30:40.535788+00 \N
+ac0f2492-e19c-45f0-807c-0950ffad849b CONTAINER_IMPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 1200.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:30:40.588+00 2026-01-01 \N 2026-06-16 19:30:40.535788+00 2026-06-16 19:30:40.535788+00 \N
+a4a89a01-81a4-46d1-84c4-f34fe3941bf3 CONTAINER_EXPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 600.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:30:40.588+00 2026-01-01 \N 2026-06-16 19:30:40.535788+00 2026-06-16 19:30:40.535788+00 \N
+c1f0a011-c9b7-4aab-a5a3-d3263a5c707c CONTAINER_EXPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 900.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:30:40.588+00 2026-01-01 \N 2026-06-16 19:30:40.535788+00 2026-06-16 19:30:40.535788+00 \N
+d7100f2e-fca6-4d87-b53f-fefaf033a6d2 CONTAINER_IMPORT \N \N USD 1000.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:30:40.588+00 2026-01-01 \N 2026-06-16 19:30:40.535788+00 2026-06-16 19:30:40.535788+00 \N
+d82c5f5a-399e-4b32-8bab-550aed8e0deb CONTAINER_EXPORT \N \N USD 750.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:30:40.588+00 2026-01-01 \N 2026-06-16 19:30:40.535788+00 2026-06-16 19:30:40.535788+00 \N
+d10a694f-65f1-4640-8938-6a597c2309eb INTERCITY_CONTAINER a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 350.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:30:40.588+00 2026-01-01 \N 2026-06-16 19:30:40.535788+00 2026-06-16 19:30:40.535788+00 \N
+cacf0247-ece5-45f4-af5e-f9f35a6da7e2 INTERCITY_CONTAINER b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 550.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:30:40.588+00 2026-01-01 \N 2026-06-16 19:30:40.535788+00 2026-06-16 19:30:40.535788+00 \N
+184f32fe-684a-4251-a103-a9804bf35336 INTERCITY_CONTAINER \N \N USD 400.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:30:40.588+00 2026-01-01 \N 2026-06-16 19:30:40.535788+00 2026-06-16 19:30:40.535788+00 \N
+1b832f4a-f9e4-45d5-bfc3-21e2b613f49c INTERCITY_BULK \N \N USD 35.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:30:40.588+00 2026-01-01 \N 2026-06-16 19:30:40.535788+00 2026-06-16 19:30:40.535788+00 \N
+4094af2d-6a99-4712-95b6-9d1d1c4c67bf BULK_IMPORT \N \N USD 50.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:30:40.588+00 2026-01-01 \N 2026-06-16 19:30:40.535788+00 2026-06-16 19:30:40.535788+00 \N
+130c7fea-182a-49ab-b363-2577bcd1342e BULK_EXPORT \N \N USD 40.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:30:40.588+00 2026-01-01 \N 2026-06-16 19:30:40.535788+00 2026-06-16 19:30:40.535788+00 \N
+65a496c6-216e-4978-af3e-559bb4e5cfd1 OVERWEIGHT_PER_TON \N \N USD 25.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:30:40.588+00 2026-01-01 \N 2026-06-16 19:30:40.535788+00 2026-06-16 19:30:40.535788+00 \N
+9b703fc6-988f-4b83-a30d-3ad765cd4478 HAZARD_SURCHARGE \N \N USD 150.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:30:40.588+00 2026-01-01 \N 2026-06-16 19:30:40.535788+00 2026-06-16 19:30:40.535788+00 \N
+17b8522a-45fc-42a0-864f-fb1a7fcf6afe REEFER_SURCHARGE \N \N USD 200.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:30:40.588+00 2026-01-01 \N 2026-06-16 19:30:40.535788+00 2026-06-16 19:30:40.535788+00 \N
+3ef6c79e-60ee-4567-a80a-eb517a882c25 DOUBLE_HANDLING \N \N USD 100.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:30:40.588+00 2026-01-01 \N 2026-06-16 19:30:40.535788+00 2026-06-16 19:30:40.535788+00 \N
+ea1b6a5e-fab3-4674-a43c-e1937d49f21e LASHING \N \N USD 50.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 19:30:40.588+00 2026-01-01 \N 2026-06-16 19:30:40.535788+00 2026-06-16 19:30:40.535788+00 \N
+a2cd5969-1d2d-448a-914d-c4ae6fd37644 CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 800.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:18:14.75+00 2026-01-01 \N 2026-06-16 20:18:14.68711+00 2026-06-16 20:18:14.68711+00 \N
+5635ea24-f442-4cbb-b628-62c7b04736e7 CONTAINER_IMPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 1200.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:18:14.75+00 2026-01-01 \N 2026-06-16 20:18:14.68711+00 2026-06-16 20:18:14.68711+00 \N
+7719b017-8a95-4a9d-8708-98a629f7aa65 CONTAINER_EXPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 600.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:18:14.75+00 2026-01-01 \N 2026-06-16 20:18:14.68711+00 2026-06-16 20:18:14.68711+00 \N
+38d7440b-7cd1-453f-b451-752966f48026 CONTAINER_EXPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 900.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:18:14.75+00 2026-01-01 \N 2026-06-16 20:18:14.68711+00 2026-06-16 20:18:14.68711+00 \N
+35539de7-d022-4d04-b0b3-6462ad8d8c5f CONTAINER_IMPORT \N \N USD 1000.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:18:14.75+00 2026-01-01 \N 2026-06-16 20:18:14.68711+00 2026-06-16 20:18:14.68711+00 \N
+b42c7ab9-c026-47b0-aea5-6e58cc043cd1 CONTAINER_EXPORT \N \N USD 750.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:18:14.75+00 2026-01-01 \N 2026-06-16 20:18:14.68711+00 2026-06-16 20:18:14.68711+00 \N
+97fbec91-f355-430d-8320-cfe8ddec6883 INTERCITY_CONTAINER a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 350.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:18:14.75+00 2026-01-01 \N 2026-06-16 20:18:14.68711+00 2026-06-16 20:18:14.68711+00 \N
+3541967e-0bdc-4da0-8fa9-5628797c73cd INTERCITY_CONTAINER b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 550.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:18:14.75+00 2026-01-01 \N 2026-06-16 20:18:14.68711+00 2026-06-16 20:18:14.68711+00 \N
+f7015131-9556-4722-b9ea-e91fc33ac938 INTERCITY_CONTAINER \N \N USD 400.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:18:14.75+00 2026-01-01 \N 2026-06-16 20:18:14.68711+00 2026-06-16 20:18:14.68711+00 \N
+1d2f3af9-f63a-44c8-b569-7a8c4d401abc INTERCITY_BULK \N \N USD 35.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:18:14.75+00 2026-01-01 \N 2026-06-16 20:18:14.68711+00 2026-06-16 20:18:14.68711+00 \N
+11214ecb-011a-42cd-8089-db57e2d730d5 BULK_IMPORT \N \N USD 50.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:18:14.75+00 2026-01-01 \N 2026-06-16 20:18:14.68711+00 2026-06-16 20:18:14.68711+00 \N
+650d59f6-1013-4ce7-8036-a84eeda4e6a8 BULK_EXPORT \N \N USD 40.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:18:14.75+00 2026-01-01 \N 2026-06-16 20:18:14.68711+00 2026-06-16 20:18:14.68711+00 \N
+f4859ce6-5b43-4824-afd7-37b1b1ae66a7 OVERWEIGHT_PER_TON \N \N USD 25.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:18:14.75+00 2026-01-01 \N 2026-06-16 20:18:14.68711+00 2026-06-16 20:18:14.68711+00 \N
+10297b7f-adb8-4be5-b7d5-fbdebdc7b04b HAZARD_SURCHARGE \N \N USD 150.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:18:14.75+00 2026-01-01 \N 2026-06-16 20:18:14.68711+00 2026-06-16 20:18:14.68711+00 \N
+18fdedac-ccc2-4f55-a3c9-2dec9dafb680 REEFER_SURCHARGE \N \N USD 200.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:18:14.75+00 2026-01-01 \N 2026-06-16 20:18:14.68711+00 2026-06-16 20:18:14.68711+00 \N
+bcab7b40-595b-4f3e-9c49-0a2949be278e DOUBLE_HANDLING \N \N USD 100.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:18:14.75+00 2026-01-01 \N 2026-06-16 20:18:14.68711+00 2026-06-16 20:18:14.68711+00 \N
+905b266c-19e1-46e8-bce7-e1b99ebd3a58 LASHING \N \N USD 50.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:18:14.75+00 2026-01-01 \N 2026-06-16 20:18:14.68711+00 2026-06-16 20:18:14.68711+00 \N
+d02b7c23-8f04-4010-aa1b-4df1b124ad5d CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 800.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:41:10.686+00 2026-01-01 \N 2026-06-16 20:41:10.635669+00 2026-06-16 20:41:10.635669+00 \N
+cd916e12-4f94-4927-84c2-261501147f9c CONTAINER_IMPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 1200.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:41:10.686+00 2026-01-01 \N 2026-06-16 20:41:10.635669+00 2026-06-16 20:41:10.635669+00 \N
+3c53cfd1-4535-4b3b-9a33-6aa1a8e2f343 CONTAINER_EXPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 600.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:41:10.686+00 2026-01-01 \N 2026-06-16 20:41:10.635669+00 2026-06-16 20:41:10.635669+00 \N
+599940ff-22e7-4928-aec8-42d08b8639d4 CONTAINER_EXPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 900.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:41:10.686+00 2026-01-01 \N 2026-06-16 20:41:10.635669+00 2026-06-16 20:41:10.635669+00 \N
+59b58bf5-a829-4967-9b83-9f40286fa9fe CONTAINER_IMPORT \N \N USD 1000.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:41:10.686+00 2026-01-01 \N 2026-06-16 20:41:10.635669+00 2026-06-16 20:41:10.635669+00 \N
+6f16096d-f259-4891-b582-2d1ded7bc5fc CONTAINER_EXPORT \N \N USD 750.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:41:10.686+00 2026-01-01 \N 2026-06-16 20:41:10.635669+00 2026-06-16 20:41:10.635669+00 \N
+7162e33e-5cd5-450a-978f-624cd80bbf41 INTERCITY_CONTAINER a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 350.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:41:10.686+00 2026-01-01 \N 2026-06-16 20:41:10.635669+00 2026-06-16 20:41:10.635669+00 \N
+21eb0dbe-c4a8-47c1-8194-02e66dbea8da INTERCITY_CONTAINER b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 550.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:41:10.686+00 2026-01-01 \N 2026-06-16 20:41:10.635669+00 2026-06-16 20:41:10.635669+00 \N
+b1694ec7-942c-4189-82d7-ff4f06771c75 INTERCITY_CONTAINER \N \N USD 400.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:41:10.686+00 2026-01-01 \N 2026-06-16 20:41:10.635669+00 2026-06-16 20:41:10.635669+00 \N
+238ba0f7-dd36-4117-b1c5-155d2aa3001f INTERCITY_BULK \N \N USD 35.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:41:10.686+00 2026-01-01 \N 2026-06-16 20:41:10.635669+00 2026-06-16 20:41:10.635669+00 \N
+dbfd7506-e700-4782-a0b3-27050d35c12e BULK_IMPORT \N \N USD 50.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:41:10.686+00 2026-01-01 \N 2026-06-16 20:41:10.635669+00 2026-06-16 20:41:10.635669+00 \N
+b9261d5c-410a-4e50-87a8-f3c0b8436ea4 BULK_EXPORT \N \N USD 40.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:41:10.686+00 2026-01-01 \N 2026-06-16 20:41:10.635669+00 2026-06-16 20:41:10.635669+00 \N
+43d00be3-1549-4df1-bbf9-d05349455bc9 OVERWEIGHT_PER_TON \N \N USD 25.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:41:10.686+00 2026-01-01 \N 2026-06-16 20:41:10.635669+00 2026-06-16 20:41:10.635669+00 \N
+7285b9a0-572f-46d8-ac10-ecdbef486bbf HAZARD_SURCHARGE \N \N USD 150.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:41:10.686+00 2026-01-01 \N 2026-06-16 20:41:10.635669+00 2026-06-16 20:41:10.635669+00 \N
+949ff52a-39a2-4bd2-875c-baceb6707a21 REEFER_SURCHARGE \N \N USD 200.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:41:10.686+00 2026-01-01 \N 2026-06-16 20:41:10.635669+00 2026-06-16 20:41:10.635669+00 \N
+6f0628f9-f1fe-4d72-a638-3d4dc0e0d019 DOUBLE_HANDLING \N \N USD 100.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:41:10.686+00 2026-01-01 \N 2026-06-16 20:41:10.635669+00 2026-06-16 20:41:10.635669+00 \N
+0357db10-0d50-43d8-a96a-fdacf4fdd8fb LASHING \N \N USD 50.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 20:41:10.686+00 2026-01-01 \N 2026-06-16 20:41:10.635669+00 2026-06-16 20:41:10.635669+00 \N
+3c3dbef1-7db4-4b8b-9c2d-23c36c527082 CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 800.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 22:44:21.344+00 2026-01-01 \N 2026-06-16 22:44:21.288824+00 2026-06-16 22:44:21.288824+00 \N
+f423541c-5c14-45b4-bb22-b966617703cf CONTAINER_IMPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 1200.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 22:44:21.344+00 2026-01-01 \N 2026-06-16 22:44:21.288824+00 2026-06-16 22:44:21.288824+00 \N
+927320eb-ba51-49e4-9c01-727fbfbd6557 CONTAINER_EXPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 600.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 22:44:21.344+00 2026-01-01 \N 2026-06-16 22:44:21.288824+00 2026-06-16 22:44:21.288824+00 \N
+d44d9a5a-c563-480b-96b7-879581a9096c CONTAINER_EXPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 900.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 22:44:21.344+00 2026-01-01 \N 2026-06-16 22:44:21.288824+00 2026-06-16 22:44:21.288824+00 \N
+6b666c39-e93d-4b20-8f4f-d7704a06dbcb CONTAINER_IMPORT \N \N USD 1000.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 22:44:21.344+00 2026-01-01 \N 2026-06-16 22:44:21.288824+00 2026-06-16 22:44:21.288824+00 \N
+ba48db69-a243-4666-b67d-8b3f9893b982 CONTAINER_EXPORT \N \N USD 750.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 22:44:21.344+00 2026-01-01 \N 2026-06-16 22:44:21.288824+00 2026-06-16 22:44:21.288824+00 \N
+1106ad08-a3f7-4ac3-95b2-b09520351a4f INTERCITY_CONTAINER a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 350.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 22:44:21.344+00 2026-01-01 \N 2026-06-16 22:44:21.288824+00 2026-06-16 22:44:21.288824+00 \N
+22d9a1df-b4a1-4447-8521-94bdc64a93a7 INTERCITY_CONTAINER b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 550.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 22:44:21.344+00 2026-01-01 \N 2026-06-16 22:44:21.288824+00 2026-06-16 22:44:21.288824+00 \N
+a388064b-be40-4496-b890-ac16fdac73bb INTERCITY_CONTAINER \N \N USD 400.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 22:44:21.344+00 2026-01-01 \N 2026-06-16 22:44:21.288824+00 2026-06-16 22:44:21.288824+00 \N
+bf08fb4a-deea-4f1a-9eb1-95d397029f34 INTERCITY_BULK \N \N USD 35.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 22:44:21.344+00 2026-01-01 \N 2026-06-16 22:44:21.288824+00 2026-06-16 22:44:21.288824+00 \N
+0fc93878-c025-446c-af2f-fee00555adad BULK_IMPORT \N \N USD 50.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 22:44:21.344+00 2026-01-01 \N 2026-06-16 22:44:21.288824+00 2026-06-16 22:44:21.288824+00 \N
+5cda9112-bfdb-4344-a866-15ca42ec337e BULK_EXPORT \N \N USD 40.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 22:44:21.344+00 2026-01-01 \N 2026-06-16 22:44:21.288824+00 2026-06-16 22:44:21.288824+00 \N
+f1fca4f1-8965-4974-8127-7f729792e62c OVERWEIGHT_PER_TON \N \N USD 25.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 22:44:21.344+00 2026-01-01 \N 2026-06-16 22:44:21.288824+00 2026-06-16 22:44:21.288824+00 \N
+c619618c-6518-4783-9fcf-e4b73ab8932e HAZARD_SURCHARGE \N \N USD 150.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 22:44:21.344+00 2026-01-01 \N 2026-06-16 22:44:21.288824+00 2026-06-16 22:44:21.288824+00 \N
+885503f6-d3fd-4896-89c5-da6a2450055a REEFER_SURCHARGE \N \N USD 200.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 22:44:21.344+00 2026-01-01 \N 2026-06-16 22:44:21.288824+00 2026-06-16 22:44:21.288824+00 \N
+06b5e8bf-ae3d-4de0-b893-050f2ba2c7b9 DOUBLE_HANDLING \N \N USD 100.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 22:44:21.344+00 2026-01-01 \N 2026-06-16 22:44:21.288824+00 2026-06-16 22:44:21.288824+00 \N
+3a54ff04-6813-40c5-82e6-9f76760e3cee LASHING \N \N USD 50.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-16 22:44:21.344+00 2026-01-01 \N 2026-06-16 22:44:21.288824+00 2026-06-16 22:44:21.288824+00 \N
+fd4dd216-cddb-4040-aeec-f04fc3cca379 CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 800.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:52:24.096+00 2026-01-01 \N 2026-06-17 04:52:24.041389+00 2026-06-17 04:52:24.041389+00 \N
+375ea47f-2374-40fc-bd57-9b022597cef9 CONTAINER_IMPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 1200.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:52:24.096+00 2026-01-01 \N 2026-06-17 04:52:24.041389+00 2026-06-17 04:52:24.041389+00 \N
+394f2cc8-3ae5-4b01-bed4-8632cc266e82 CONTAINER_EXPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 600.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:52:24.096+00 2026-01-01 \N 2026-06-17 04:52:24.041389+00 2026-06-17 04:52:24.041389+00 \N
+c0c762c8-365f-43fc-b1ff-cadfa94726c3 CONTAINER_EXPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 900.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:52:24.096+00 2026-01-01 \N 2026-06-17 04:52:24.041389+00 2026-06-17 04:52:24.041389+00 \N
+816955c8-8e3c-481b-804e-eb7434e28ca6 CONTAINER_IMPORT \N \N USD 1000.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:52:24.096+00 2026-01-01 \N 2026-06-17 04:52:24.041389+00 2026-06-17 04:52:24.041389+00 \N
+84ebb1c5-23e6-4f76-9d18-ae77d83da646 CONTAINER_EXPORT \N \N USD 750.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:52:24.096+00 2026-01-01 \N 2026-06-17 04:52:24.041389+00 2026-06-17 04:52:24.041389+00 \N
+28bfa30e-f606-423e-8a2f-54d9efec2f3b INTERCITY_CONTAINER a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 350.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:52:24.096+00 2026-01-01 \N 2026-06-17 04:52:24.041389+00 2026-06-17 04:52:24.041389+00 \N
+3b332ee3-1d04-4e9a-b548-23d0a371cb77 INTERCITY_CONTAINER b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 550.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:52:24.096+00 2026-01-01 \N 2026-06-17 04:52:24.041389+00 2026-06-17 04:52:24.041389+00 \N
+7d0a280e-df94-4684-b251-0c1535b22a33 INTERCITY_CONTAINER \N \N USD 400.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:52:24.096+00 2026-01-01 \N 2026-06-17 04:52:24.041389+00 2026-06-17 04:52:24.041389+00 \N
+e6ce29e2-efc0-4f39-b7d1-96d8f1f472f7 INTERCITY_BULK \N \N USD 35.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:52:24.096+00 2026-01-01 \N 2026-06-17 04:52:24.041389+00 2026-06-17 04:52:24.041389+00 \N
+6a3ba632-0756-4dea-9218-64b175c68c9d BULK_IMPORT \N \N USD 50.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:52:24.096+00 2026-01-01 \N 2026-06-17 04:52:24.041389+00 2026-06-17 04:52:24.041389+00 \N
+dae59ebd-2bcc-4119-bb19-3d6448c01977 BULK_EXPORT \N \N USD 40.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:52:24.096+00 2026-01-01 \N 2026-06-17 04:52:24.041389+00 2026-06-17 04:52:24.041389+00 \N
+6cd8c2b6-99bf-4065-86ea-45e055a0d9f5 OVERWEIGHT_PER_TON \N \N USD 25.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:52:24.096+00 2026-01-01 \N 2026-06-17 04:52:24.041389+00 2026-06-17 04:52:24.041389+00 \N
+2d384b2d-5d44-4aed-b25f-99e033fe32a6 HAZARD_SURCHARGE \N \N USD 150.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:52:24.096+00 2026-01-01 \N 2026-06-17 04:52:24.041389+00 2026-06-17 04:52:24.041389+00 \N
+98da295a-d65c-495f-8dd8-3582657f0d46 REEFER_SURCHARGE \N \N USD 200.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:52:24.096+00 2026-01-01 \N 2026-06-17 04:52:24.041389+00 2026-06-17 04:52:24.041389+00 \N
+fa618d9e-05bf-4bf0-b175-6957c025addf DOUBLE_HANDLING \N \N USD 100.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:52:24.096+00 2026-01-01 \N 2026-06-17 04:52:24.041389+00 2026-06-17 04:52:24.041389+00 \N
+dff648be-04b4-4ff0-acfc-3cb1e28a12b1 LASHING \N \N USD 50.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:52:24.096+00 2026-01-01 \N 2026-06-17 04:52:24.041389+00 2026-06-17 04:52:24.041389+00 \N
+d4f0a0b7-413d-49bd-9ab1-5f3b7c20d2f6 CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 800.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:57:26.785+00 2026-01-01 \N 2026-06-17 04:57:26.753158+00 2026-06-17 04:57:26.753158+00 \N
+5d707a65-59b6-4f7d-adb3-e72bd2f95d75 CONTAINER_IMPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 1200.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:57:26.785+00 2026-01-01 \N 2026-06-17 04:57:26.753158+00 2026-06-17 04:57:26.753158+00 \N
+3aab6a78-fe0e-4bec-b7a3-c38966f9879a CONTAINER_EXPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 600.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:57:26.785+00 2026-01-01 \N 2026-06-17 04:57:26.753158+00 2026-06-17 04:57:26.753158+00 \N
+3e06834e-0ff5-4db6-9deb-80901ac76177 CONTAINER_EXPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 900.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:57:26.785+00 2026-01-01 \N 2026-06-17 04:57:26.753158+00 2026-06-17 04:57:26.753158+00 \N
+d7061409-2346-4f9c-886b-8c5d47467d85 CONTAINER_IMPORT \N \N USD 1000.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:57:26.785+00 2026-01-01 \N 2026-06-17 04:57:26.753158+00 2026-06-17 04:57:26.753158+00 \N
+43a62408-0bb3-416d-9098-275f0ff74eb7 CONTAINER_EXPORT \N \N USD 750.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:57:26.785+00 2026-01-01 \N 2026-06-17 04:57:26.753158+00 2026-06-17 04:57:26.753158+00 \N
+da1f9467-ec26-46b0-862b-d84a2a6e58b8 INTERCITY_CONTAINER a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 350.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:57:26.785+00 2026-01-01 \N 2026-06-17 04:57:26.753158+00 2026-06-17 04:57:26.753158+00 \N
+f811702e-3de1-42b3-95d9-42d530035174 INTERCITY_CONTAINER b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 550.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:57:26.785+00 2026-01-01 \N 2026-06-17 04:57:26.753158+00 2026-06-17 04:57:26.753158+00 \N
+a0a1cd5b-7153-449c-82ea-46268f2b4e66 INTERCITY_CONTAINER \N \N USD 400.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:57:26.785+00 2026-01-01 \N 2026-06-17 04:57:26.753158+00 2026-06-17 04:57:26.753158+00 \N
+5e2b4755-4600-4eb9-930c-41a263f4fdba INTERCITY_BULK \N \N USD 35.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:57:26.785+00 2026-01-01 \N 2026-06-17 04:57:26.753158+00 2026-06-17 04:57:26.753158+00 \N
+66f96e50-4c98-41ea-a0cc-e46c63064de6 BULK_IMPORT \N \N USD 50.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:57:26.785+00 2026-01-01 \N 2026-06-17 04:57:26.753158+00 2026-06-17 04:57:26.753158+00 \N
+0f3709fa-44ae-4104-b935-63630571ce87 BULK_EXPORT \N \N USD 40.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:57:26.785+00 2026-01-01 \N 2026-06-17 04:57:26.753158+00 2026-06-17 04:57:26.753158+00 \N
+1427e364-ae13-47fc-b37e-a158659d656f OVERWEIGHT_PER_TON \N \N USD 25.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:57:26.785+00 2026-01-01 \N 2026-06-17 04:57:26.753158+00 2026-06-17 04:57:26.753158+00 \N
+461d25cb-dde5-4742-bf7f-bef7eb141bd5 HAZARD_SURCHARGE \N \N USD 150.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:57:26.785+00 2026-01-01 \N 2026-06-17 04:57:26.753158+00 2026-06-17 04:57:26.753158+00 \N
+d95b6396-7bf4-4622-8253-e71d8f0ba721 REEFER_SURCHARGE \N \N USD 200.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:57:26.785+00 2026-01-01 \N 2026-06-17 04:57:26.753158+00 2026-06-17 04:57:26.753158+00 \N
+887ec13a-9004-4032-81aa-5b42298053af DOUBLE_HANDLING \N \N USD 100.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:57:26.785+00 2026-01-01 \N 2026-06-17 04:57:26.753158+00 2026-06-17 04:57:26.753158+00 \N
+eaff7ecc-73b1-44aa-a55d-41b26a911cc5 LASHING \N \N USD 50.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 04:57:26.785+00 2026-01-01 \N 2026-06-17 04:57:26.753158+00 2026-06-17 04:57:26.753158+00 \N
+b292cfe8-0710-48d3-91f2-b239fb2fc3a9 CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 800.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 06:42:54.741+00 2026-01-01 \N 2026-06-17 06:42:54.708894+00 2026-06-17 06:42:54.708894+00 \N
+3436fcfd-f7ca-46b6-baaf-b64fe7928ddd CONTAINER_IMPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 1200.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 06:42:54.741+00 2026-01-01 \N 2026-06-17 06:42:54.708894+00 2026-06-17 06:42:54.708894+00 \N
+0e7fcc29-b409-461f-8c57-6a90dc65de05 CONTAINER_EXPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 600.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 06:42:54.741+00 2026-01-01 \N 2026-06-17 06:42:54.708894+00 2026-06-17 06:42:54.708894+00 \N
+42bcac71-4d93-437b-9362-a4c5a92c1c9a CONTAINER_EXPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 900.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 06:42:54.741+00 2026-01-01 \N 2026-06-17 06:42:54.708894+00 2026-06-17 06:42:54.708894+00 \N
+34239e39-3b45-4de3-808a-af8efb1254e8 CONTAINER_IMPORT \N \N USD 1000.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 06:42:54.741+00 2026-01-01 \N 2026-06-17 06:42:54.708894+00 2026-06-17 06:42:54.708894+00 \N
+d147064c-d8a0-4723-aa82-adb24df62ea2 CONTAINER_EXPORT \N \N USD 750.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 06:42:54.741+00 2026-01-01 \N 2026-06-17 06:42:54.708894+00 2026-06-17 06:42:54.708894+00 \N
+ce03c542-1c6b-4723-b709-49eca970a8b9 INTERCITY_CONTAINER a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 350.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 06:42:54.741+00 2026-01-01 \N 2026-06-17 06:42:54.708894+00 2026-06-17 06:42:54.708894+00 \N
+c28fdac1-4b4c-4dc1-9290-746a3d4d83f7 INTERCITY_CONTAINER b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 550.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 06:42:54.741+00 2026-01-01 \N 2026-06-17 06:42:54.708894+00 2026-06-17 06:42:54.708894+00 \N
+4bec2603-d4fe-4c3e-8068-20025fb2cff1 INTERCITY_CONTAINER \N \N USD 400.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 06:42:54.741+00 2026-01-01 \N 2026-06-17 06:42:54.708894+00 2026-06-17 06:42:54.708894+00 \N
+d322125b-4b2c-4d93-b0b3-354f73744891 INTERCITY_BULK \N \N USD 35.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 06:42:54.741+00 2026-01-01 \N 2026-06-17 06:42:54.708894+00 2026-06-17 06:42:54.708894+00 \N
+dda2ea43-da4a-48bb-8a18-45bdb7a7ea53 BULK_IMPORT \N \N USD 50.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 06:42:54.741+00 2026-01-01 \N 2026-06-17 06:42:54.708894+00 2026-06-17 06:42:54.708894+00 \N
+9dcf326c-15b5-476a-8c37-c931abc3af86 BULK_EXPORT \N \N USD 40.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 06:42:54.741+00 2026-01-01 \N 2026-06-17 06:42:54.708894+00 2026-06-17 06:42:54.708894+00 \N
+0ff2e0b9-0184-435b-ab0e-a68dffeee490 OVERWEIGHT_PER_TON \N \N USD 25.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 06:42:54.741+00 2026-01-01 \N 2026-06-17 06:42:54.708894+00 2026-06-17 06:42:54.708894+00 \N
+d0a3150d-3b04-4294-aabb-a74d5ea9cb18 HAZARD_SURCHARGE \N \N USD 150.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 06:42:54.741+00 2026-01-01 \N 2026-06-17 06:42:54.708894+00 2026-06-17 06:42:54.708894+00 \N
+a8c8bb18-5237-46dc-a6c4-2f2f053080ee REEFER_SURCHARGE \N \N USD 200.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 06:42:54.741+00 2026-01-01 \N 2026-06-17 06:42:54.708894+00 2026-06-17 06:42:54.708894+00 \N
+0c0d32d6-3df8-46b9-ac06-ea95158205f0 DOUBLE_HANDLING \N \N USD 100.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 06:42:54.741+00 2026-01-01 \N 2026-06-17 06:42:54.708894+00 2026-06-17 06:42:54.708894+00 \N
+3c7564c5-ea10-40c4-8cb5-ac99921a17aa LASHING \N \N USD 50.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 06:42:54.741+00 2026-01-01 \N 2026-06-17 06:42:54.708894+00 2026-06-17 06:42:54.708894+00 \N
+d7aaa7f4-4eb9-4d19-b92d-7ada863611bb CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 800.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 07:53:26.556+00 2026-01-01 \N 2026-06-17 07:53:26.502211+00 2026-06-17 07:53:26.502211+00 \N
+06413946-2a3a-403f-a859-1c7c9d848345 CONTAINER_IMPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 1200.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 07:53:26.556+00 2026-01-01 \N 2026-06-17 07:53:26.502211+00 2026-06-17 07:53:26.502211+00 \N
+d23e9a05-28f5-4e96-8111-a3bf3556e9db CONTAINER_EXPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 600.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 07:53:26.556+00 2026-01-01 \N 2026-06-17 07:53:26.502211+00 2026-06-17 07:53:26.502211+00 \N
+15515a18-1444-4a25-b9fc-2675945d49a2 CONTAINER_EXPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 900.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 07:53:26.556+00 2026-01-01 \N 2026-06-17 07:53:26.502211+00 2026-06-17 07:53:26.502211+00 \N
+0b872a03-f721-4a03-8a15-286d85d477d0 CONTAINER_IMPORT \N \N USD 1000.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 07:53:26.556+00 2026-01-01 \N 2026-06-17 07:53:26.502211+00 2026-06-17 07:53:26.502211+00 \N
+ce493520-5d5a-49cd-b9ba-172b3da5999d CONTAINER_EXPORT \N \N USD 750.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 07:53:26.556+00 2026-01-01 \N 2026-06-17 07:53:26.502211+00 2026-06-17 07:53:26.502211+00 \N
+90396424-fb54-48a3-8471-efed7012df95 INTERCITY_CONTAINER a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 350.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 07:53:26.556+00 2026-01-01 \N 2026-06-17 07:53:26.502211+00 2026-06-17 07:53:26.502211+00 \N
+eeb44648-7c7e-4ef8-8a09-0e2de78fac3d INTERCITY_CONTAINER b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 550.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 07:53:26.556+00 2026-01-01 \N 2026-06-17 07:53:26.502211+00 2026-06-17 07:53:26.502211+00 \N
+01f4a9bf-4a26-4a42-9cd5-dfc5c8caed52 INTERCITY_CONTAINER \N \N USD 400.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 07:53:26.556+00 2026-01-01 \N 2026-06-17 07:53:26.502211+00 2026-06-17 07:53:26.502211+00 \N
+52da0338-12e7-40d5-b4bc-6b111437f93a INTERCITY_BULK \N \N USD 35.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 07:53:26.556+00 2026-01-01 \N 2026-06-17 07:53:26.502211+00 2026-06-17 07:53:26.502211+00 \N
+3e2964f6-1113-4815-bab4-bc17d7eccf51 BULK_IMPORT \N \N USD 50.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 07:53:26.556+00 2026-01-01 \N 2026-06-17 07:53:26.502211+00 2026-06-17 07:53:26.502211+00 \N
+fa408dc8-8067-4dee-ab78-26bba91d4f18 BULK_EXPORT \N \N USD 40.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 07:53:26.556+00 2026-01-01 \N 2026-06-17 07:53:26.502211+00 2026-06-17 07:53:26.502211+00 \N
+4af5ce0c-79d0-4dd5-be5d-c7b922841c39 OVERWEIGHT_PER_TON \N \N USD 25.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 07:53:26.556+00 2026-01-01 \N 2026-06-17 07:53:26.502211+00 2026-06-17 07:53:26.502211+00 \N
+7af6026a-c88a-44da-9c67-bcd8d8cb13f2 HAZARD_SURCHARGE \N \N USD 150.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 07:53:26.556+00 2026-01-01 \N 2026-06-17 07:53:26.502211+00 2026-06-17 07:53:26.502211+00 \N
+2464ef32-33a5-4e5f-9179-07d8ce404715 REEFER_SURCHARGE \N \N USD 200.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 07:53:26.556+00 2026-01-01 \N 2026-06-17 07:53:26.502211+00 2026-06-17 07:53:26.502211+00 \N
+348bdb7c-ebc2-414f-800b-e7c75777cb0c DOUBLE_HANDLING \N \N USD 100.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 07:53:26.556+00 2026-01-01 \N 2026-06-17 07:53:26.502211+00 2026-06-17 07:53:26.502211+00 \N
+6c37f4cb-f88b-4d43-9e84-b71e9582d3bb LASHING \N \N USD 50.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 07:53:26.556+00 2026-01-01 \N 2026-06-17 07:53:26.502211+00 2026-06-17 07:53:26.502211+00 \N
+f400a540-7d15-4707-aaf1-351a48b8a67a CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 800.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:31:24.118+00 2026-01-01 \N 2026-06-17 09:31:24.06431+00 2026-06-17 09:31:24.06431+00 \N
+3c86bdf1-fb2e-4877-b6b0-06f515b471e3 CONTAINER_IMPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 1200.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:31:24.118+00 2026-01-01 \N 2026-06-17 09:31:24.06431+00 2026-06-17 09:31:24.06431+00 \N
+23e3ea57-db8d-4d44-8730-c5798eb91aad CONTAINER_EXPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 600.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:31:24.118+00 2026-01-01 \N 2026-06-17 09:31:24.06431+00 2026-06-17 09:31:24.06431+00 \N
+543a9084-ee30-4052-9c45-4d9fdb71a381 CONTAINER_EXPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 900.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:31:24.118+00 2026-01-01 \N 2026-06-17 09:31:24.06431+00 2026-06-17 09:31:24.06431+00 \N
+1172976d-bc41-4ddb-b6dd-6086a2e35cd4 CONTAINER_IMPORT \N \N USD 1000.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:31:24.118+00 2026-01-01 \N 2026-06-17 09:31:24.06431+00 2026-06-17 09:31:24.06431+00 \N
+d0db94c5-c14f-4556-8562-3036ef47f7d4 CONTAINER_EXPORT \N \N USD 750.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:31:24.118+00 2026-01-01 \N 2026-06-17 09:31:24.06431+00 2026-06-17 09:31:24.06431+00 \N
+ccc7a224-797e-40ed-b2a0-048fd3429d60 INTERCITY_CONTAINER a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 350.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:31:24.118+00 2026-01-01 \N 2026-06-17 09:31:24.06431+00 2026-06-17 09:31:24.06431+00 \N
+aa5be8ca-12a4-4fd9-a9d2-2a99a318ca87 INTERCITY_CONTAINER b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 550.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:31:24.118+00 2026-01-01 \N 2026-06-17 09:31:24.06431+00 2026-06-17 09:31:24.06431+00 \N
+8bdc4f72-5040-42ea-a3d1-49cf2723e2f6 INTERCITY_CONTAINER \N \N USD 400.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:31:24.118+00 2026-01-01 \N 2026-06-17 09:31:24.06431+00 2026-06-17 09:31:24.06431+00 \N
+85a503bc-730e-419b-92f0-2130a9ceda7b INTERCITY_BULK \N \N USD 35.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:31:24.118+00 2026-01-01 \N 2026-06-17 09:31:24.06431+00 2026-06-17 09:31:24.06431+00 \N
+138dda28-c4f4-4fb7-ae3f-8b2a8b74d20e BULK_IMPORT \N \N USD 50.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:31:24.118+00 2026-01-01 \N 2026-06-17 09:31:24.06431+00 2026-06-17 09:31:24.06431+00 \N
+ac6bbd0b-84b1-4a7c-854e-3138867951d9 BULK_EXPORT \N \N USD 40.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:31:24.118+00 2026-01-01 \N 2026-06-17 09:31:24.06431+00 2026-06-17 09:31:24.06431+00 \N
+acebfb17-b883-44b6-8112-73775b2efd15 OVERWEIGHT_PER_TON \N \N USD 25.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:31:24.118+00 2026-01-01 \N 2026-06-17 09:31:24.06431+00 2026-06-17 09:31:24.06431+00 \N
+74a9972b-6735-4fee-bdaa-74f7de153aeb HAZARD_SURCHARGE \N \N USD 150.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:31:24.118+00 2026-01-01 \N 2026-06-17 09:31:24.06431+00 2026-06-17 09:31:24.06431+00 \N
+be7bc3d5-749f-4217-ad26-5405f8da88dc REEFER_SURCHARGE \N \N USD 200.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:31:24.118+00 2026-01-01 \N 2026-06-17 09:31:24.06431+00 2026-06-17 09:31:24.06431+00 \N
+2b0a2a91-f112-4f19-91a1-ceffd0f90c25 DOUBLE_HANDLING \N \N USD 100.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:31:24.118+00 2026-01-01 \N 2026-06-17 09:31:24.06431+00 2026-06-17 09:31:24.06431+00 \N
+e203f1e2-baf8-4b34-80fe-7346238e9032 LASHING \N \N USD 50.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:31:24.118+00 2026-01-01 \N 2026-06-17 09:31:24.06431+00 2026-06-17 09:31:24.06431+00 \N
+c222a033-ac75-4517-9130-b4f0e41644f6 CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 800.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:43:02.595+00 2026-01-01 \N 2026-06-17 09:43:02.551131+00 2026-06-17 09:43:02.551131+00 \N
+176d76c4-0695-40f2-a68c-7c96c1333fe5 CONTAINER_IMPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 1200.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:43:02.595+00 2026-01-01 \N 2026-06-17 09:43:02.551131+00 2026-06-17 09:43:02.551131+00 \N
+1b435e38-479e-43c5-aa77-ede08932875f CONTAINER_EXPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 600.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:43:02.595+00 2026-01-01 \N 2026-06-17 09:43:02.551131+00 2026-06-17 09:43:02.551131+00 \N
+e49b957d-e88e-4176-858f-301901906678 CONTAINER_EXPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 900.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:43:02.595+00 2026-01-01 \N 2026-06-17 09:43:02.551131+00 2026-06-17 09:43:02.551131+00 \N
+000d152d-ec6c-451d-85a9-ca2dc1b7c48e CONTAINER_IMPORT \N \N USD 1000.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:43:02.595+00 2026-01-01 \N 2026-06-17 09:43:02.551131+00 2026-06-17 09:43:02.551131+00 \N
+878e64c7-f595-4c72-9d5d-d399b8c86e77 CONTAINER_EXPORT \N \N USD 750.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:43:02.595+00 2026-01-01 \N 2026-06-17 09:43:02.551131+00 2026-06-17 09:43:02.551131+00 \N
+29c0dfdf-af3a-442c-9d66-840a96a817a9 INTERCITY_CONTAINER a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 350.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:43:02.595+00 2026-01-01 \N 2026-06-17 09:43:02.551131+00 2026-06-17 09:43:02.551131+00 \N
+b1c56f6b-72bf-48bc-9b63-5d98886814fd INTERCITY_CONTAINER b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 550.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:43:02.595+00 2026-01-01 \N 2026-06-17 09:43:02.551131+00 2026-06-17 09:43:02.551131+00 \N
+a9c692d8-56ea-4d1c-850a-afa9f2c77c2f INTERCITY_CONTAINER \N \N USD 400.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:43:02.595+00 2026-01-01 \N 2026-06-17 09:43:02.551131+00 2026-06-17 09:43:02.551131+00 \N
+36cda536-ebbc-418c-991f-1137991c676a INTERCITY_BULK \N \N USD 35.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:43:02.595+00 2026-01-01 \N 2026-06-17 09:43:02.551131+00 2026-06-17 09:43:02.551131+00 \N
+06d20eb2-af0d-484f-8769-1b1c6b30061c BULK_IMPORT \N \N USD 50.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:43:02.595+00 2026-01-01 \N 2026-06-17 09:43:02.551131+00 2026-06-17 09:43:02.551131+00 \N
+2540e30d-27e8-4d9a-96ee-394d4c4d405c BULK_EXPORT \N \N USD 40.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:43:02.595+00 2026-01-01 \N 2026-06-17 09:43:02.551131+00 2026-06-17 09:43:02.551131+00 \N
+cf07e5c3-7d9b-4f13-933c-a5ff0590cb67 OVERWEIGHT_PER_TON \N \N USD 25.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:43:02.595+00 2026-01-01 \N 2026-06-17 09:43:02.551131+00 2026-06-17 09:43:02.551131+00 \N
+0514f89e-ec71-48af-b4c1-5e1d82da738c HAZARD_SURCHARGE \N \N USD 150.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:43:02.595+00 2026-01-01 \N 2026-06-17 09:43:02.551131+00 2026-06-17 09:43:02.551131+00 \N
+2ba0d363-af7e-4de3-bd2b-31385e25b7d5 REEFER_SURCHARGE \N \N USD 200.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:43:02.595+00 2026-01-01 \N 2026-06-17 09:43:02.551131+00 2026-06-17 09:43:02.551131+00 \N
+5bd0152a-7685-4625-b806-0d86ef1eccb3 DOUBLE_HANDLING \N \N USD 100.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:43:02.595+00 2026-01-01 \N 2026-06-17 09:43:02.551131+00 2026-06-17 09:43:02.551131+00 \N
+2bff8e89-6091-4a0a-b4d1-7fca2e6fbaf1 LASHING \N \N USD 50.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:43:02.595+00 2026-01-01 \N 2026-06-17 09:43:02.551131+00 2026-06-17 09:43:02.551131+00 \N
+3444f9f7-23b0-4c7e-af99-ea56f1954dea CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 800.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:50:21.275+00 2026-01-01 \N 2026-06-17 09:50:21.213388+00 2026-06-17 09:50:21.213388+00 \N
+ac6040b9-6eda-4705-a112-c388afbbc3ee CONTAINER_IMPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 1200.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:50:21.275+00 2026-01-01 \N 2026-06-17 09:50:21.213388+00 2026-06-17 09:50:21.213388+00 \N
+5bf40f67-bfcc-4a31-9daf-c1f1dcb1d01f CONTAINER_EXPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 600.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:50:21.275+00 2026-01-01 \N 2026-06-17 09:50:21.213388+00 2026-06-17 09:50:21.213388+00 \N
+2db7b737-22b4-4ab9-93f7-e7d3ebc86532 CONTAINER_EXPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 900.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:50:21.275+00 2026-01-01 \N 2026-06-17 09:50:21.213388+00 2026-06-17 09:50:21.213388+00 \N
+f788c5ee-f08b-4031-9a0c-e0e936c377dd CONTAINER_IMPORT \N \N USD 1000.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:50:21.275+00 2026-01-01 \N 2026-06-17 09:50:21.213388+00 2026-06-17 09:50:21.213388+00 \N
+e09ebe8e-b76a-4f7a-998a-3d812ec44833 CONTAINER_EXPORT \N \N USD 750.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:50:21.275+00 2026-01-01 \N 2026-06-17 09:50:21.213388+00 2026-06-17 09:50:21.213388+00 \N
+92975e31-39e6-4014-b3c5-e1583dfa8282 INTERCITY_CONTAINER a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 350.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:50:21.275+00 2026-01-01 \N 2026-06-17 09:50:21.213388+00 2026-06-17 09:50:21.213388+00 \N
+30b11f94-d83b-4abb-ba4f-c5c0e6abdc8d INTERCITY_CONTAINER b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 550.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:50:21.275+00 2026-01-01 \N 2026-06-17 09:50:21.213388+00 2026-06-17 09:50:21.213388+00 \N
+0757e690-8f22-4b53-8ce0-ce1e6ce4c753 INTERCITY_CONTAINER \N \N USD 400.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:50:21.275+00 2026-01-01 \N 2026-06-17 09:50:21.213388+00 2026-06-17 09:50:21.213388+00 \N
+c07559f3-0c75-4808-9d5a-610a9b7eac88 INTERCITY_BULK \N \N USD 35.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:50:21.275+00 2026-01-01 \N 2026-06-17 09:50:21.213388+00 2026-06-17 09:50:21.213388+00 \N
+473cbfdc-a017-49c9-8f6b-1fd368135819 BULK_IMPORT \N \N USD 50.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:50:21.275+00 2026-01-01 \N 2026-06-17 09:50:21.213388+00 2026-06-17 09:50:21.213388+00 \N
+14498756-afff-435b-943c-7274ba10c442 BULK_EXPORT \N \N USD 40.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:50:21.275+00 2026-01-01 \N 2026-06-17 09:50:21.213388+00 2026-06-17 09:50:21.213388+00 \N
+a1393bf0-090d-47f6-b390-c4db499145b9 OVERWEIGHT_PER_TON \N \N USD 25.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:50:21.275+00 2026-01-01 \N 2026-06-17 09:50:21.213388+00 2026-06-17 09:50:21.213388+00 \N
+6d51b702-d2cd-433e-be87-11c8f8368a15 HAZARD_SURCHARGE \N \N USD 150.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:50:21.275+00 2026-01-01 \N 2026-06-17 09:50:21.213388+00 2026-06-17 09:50:21.213388+00 \N
+e3e87737-4a18-478b-a3ae-387a1cecb623 REEFER_SURCHARGE \N \N USD 200.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:50:21.275+00 2026-01-01 \N 2026-06-17 09:50:21.213388+00 2026-06-17 09:50:21.213388+00 \N
+c9ce0580-747e-4b76-9517-160d35bd79c9 DOUBLE_HANDLING \N \N USD 100.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:50:21.275+00 2026-01-01 \N 2026-06-17 09:50:21.213388+00 2026-06-17 09:50:21.213388+00 \N
+223103a6-99ca-4ea6-9b72-903fed2eada9 LASHING \N \N USD 50.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 09:50:21.275+00 2026-01-01 \N 2026-06-17 09:50:21.213388+00 2026-06-17 09:50:21.213388+00 \N
+3d353f8d-94a6-4f7d-b02c-3abaefd3a164 CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 800.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 10:00:23.658+00 2026-01-01 \N 2026-06-17 10:00:23.610089+00 2026-06-17 10:00:23.610089+00 \N
+a700e8a8-2014-47be-9afc-7798a44894ae CONTAINER_IMPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 1200.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 10:00:23.658+00 2026-01-01 \N 2026-06-17 10:00:23.610089+00 2026-06-17 10:00:23.610089+00 \N
+68108919-7306-4407-aaad-cb35790997f9 CONTAINER_EXPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 600.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 10:00:23.658+00 2026-01-01 \N 2026-06-17 10:00:23.610089+00 2026-06-17 10:00:23.610089+00 \N
+52564f77-11f4-4703-aab2-7126070dbce5 CONTAINER_EXPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 900.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 10:00:23.658+00 2026-01-01 \N 2026-06-17 10:00:23.610089+00 2026-06-17 10:00:23.610089+00 \N
+645010c6-bdd0-41a2-bbbf-6155530cbd5e CONTAINER_IMPORT \N \N USD 1000.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 10:00:23.658+00 2026-01-01 \N 2026-06-17 10:00:23.610089+00 2026-06-17 10:00:23.610089+00 \N
+60f943be-7ce2-4a98-8a9f-f34c895853d9 CONTAINER_EXPORT \N \N USD 750.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 10:00:23.658+00 2026-01-01 \N 2026-06-17 10:00:23.610089+00 2026-06-17 10:00:23.610089+00 \N
+4ef8efd1-32f7-4979-a4a8-6106476ba802 INTERCITY_CONTAINER a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 350.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 10:00:23.658+00 2026-01-01 \N 2026-06-17 10:00:23.610089+00 2026-06-17 10:00:23.610089+00 \N
+695a8949-bb66-4b50-9896-6066557462ad INTERCITY_CONTAINER b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 550.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 10:00:23.658+00 2026-01-01 \N 2026-06-17 10:00:23.610089+00 2026-06-17 10:00:23.610089+00 \N
+dade80d1-0d47-4163-b18b-5a8c752d0873 INTERCITY_CONTAINER \N \N USD 400.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 10:00:23.658+00 2026-01-01 \N 2026-06-17 10:00:23.610089+00 2026-06-17 10:00:23.610089+00 \N
+8deaf267-6dc9-4955-b237-88ac3b74395c INTERCITY_BULK \N \N USD 35.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 10:00:23.658+00 2026-01-01 \N 2026-06-17 10:00:23.610089+00 2026-06-17 10:00:23.610089+00 \N
+e361b5a2-9c85-4f37-900d-df1901bb78b1 BULK_IMPORT \N \N USD 50.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 10:00:23.658+00 2026-01-01 \N 2026-06-17 10:00:23.610089+00 2026-06-17 10:00:23.610089+00 \N
+05472796-96f2-4974-9fc7-953e92083ea4 BULK_EXPORT \N \N USD 40.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 10:00:23.658+00 2026-01-01 \N 2026-06-17 10:00:23.610089+00 2026-06-17 10:00:23.610089+00 \N
+fa2f28af-7872-425c-97f4-d92a168ebc37 OVERWEIGHT_PER_TON \N \N USD 25.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 10:00:23.658+00 2026-01-01 \N 2026-06-17 10:00:23.610089+00 2026-06-17 10:00:23.610089+00 \N
+322287ee-94a2-4299-9121-a5296b60e7da HAZARD_SURCHARGE \N \N USD 150.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 10:00:23.658+00 2026-01-01 \N 2026-06-17 10:00:23.610089+00 2026-06-17 10:00:23.610089+00 \N
+e3376ac7-e49b-4267-9188-dbd6e539e450 REEFER_SURCHARGE \N \N USD 200.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 10:00:23.658+00 2026-01-01 \N 2026-06-17 10:00:23.610089+00 2026-06-17 10:00:23.610089+00 \N
+d73d126b-7908-4cfb-856d-48619e6a61c3 DOUBLE_HANDLING \N \N USD 100.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 10:00:23.658+00 2026-01-01 \N 2026-06-17 10:00:23.610089+00 2026-06-17 10:00:23.610089+00 \N
+be5524fe-fb19-4d61-b24f-5e7b93a2efaf LASHING \N \N USD 50.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 10:00:23.658+00 2026-01-01 \N 2026-06-17 10:00:23.610089+00 2026-06-17 10:00:23.610089+00 \N
+6c0a1a8a-7164-4773-9d49-f7b937b74e79 CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 800.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:02:14.759+00 2026-01-01 \N 2026-06-17 11:02:14.706535+00 2026-06-17 11:02:14.706535+00 \N
+8055c792-11c5-4e0d-b473-40e7e24e5bba CONTAINER_IMPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 1200.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:02:14.759+00 2026-01-01 \N 2026-06-17 11:02:14.706535+00 2026-06-17 11:02:14.706535+00 \N
+542ca281-0129-42a3-9ea1-b752f6b40531 CONTAINER_EXPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 600.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:02:14.759+00 2026-01-01 \N 2026-06-17 11:02:14.706535+00 2026-06-17 11:02:14.706535+00 \N
+9fe62c81-9430-472f-af93-5df7302a8eac DOUBLE_HANDLING \N \N USD 100.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 20:08:18.9+00 2026-01-01 \N 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N
+417f23c1-110f-454a-a7db-57e55b9f629d CONTAINER_EXPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 900.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:02:14.759+00 2026-01-01 \N 2026-06-17 11:02:14.706535+00 2026-06-17 11:02:14.706535+00 \N
+9cc7e8e0-8210-4d7e-98dd-1120cae7fda4 CONTAINER_IMPORT \N \N USD 1000.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:02:14.759+00 2026-01-01 \N 2026-06-17 11:02:14.706535+00 2026-06-17 11:02:14.706535+00 \N
+80f3dc3d-8635-4850-a7cb-f678387c12ca CONTAINER_EXPORT \N \N USD 750.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:02:14.759+00 2026-01-01 \N 2026-06-17 11:02:14.706535+00 2026-06-17 11:02:14.706535+00 \N
+fa989c14-9916-4b0a-a05d-2f7062bd9121 INTERCITY_CONTAINER a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 350.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:02:14.759+00 2026-01-01 \N 2026-06-17 11:02:14.706535+00 2026-06-17 11:02:14.706535+00 \N
+62375733-2ae9-421c-8d1a-cc6b6bb7f6b6 INTERCITY_CONTAINER b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 550.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:02:14.759+00 2026-01-01 \N 2026-06-17 11:02:14.706535+00 2026-06-17 11:02:14.706535+00 \N
+47588b10-2c9d-41b8-87c9-32d991dfb670 INTERCITY_CONTAINER \N \N USD 400.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:02:14.759+00 2026-01-01 \N 2026-06-17 11:02:14.706535+00 2026-06-17 11:02:14.706535+00 \N
+59552eaf-6a7f-4437-b2f8-f53fcd93c987 INTERCITY_BULK \N \N USD 35.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:02:14.759+00 2026-01-01 \N 2026-06-17 11:02:14.706535+00 2026-06-17 11:02:14.706535+00 \N
+e0ffabf9-7220-4b8b-a962-5d8afb6f2a9c BULK_IMPORT \N \N USD 50.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:02:14.759+00 2026-01-01 \N 2026-06-17 11:02:14.706535+00 2026-06-17 11:02:14.706535+00 \N
+bd31e8a6-e9b7-4dc1-918d-be6e852ee4c2 BULK_EXPORT \N \N USD 40.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:02:14.759+00 2026-01-01 \N 2026-06-17 11:02:14.706535+00 2026-06-17 11:02:14.706535+00 \N
+08a82a16-54cb-4ca3-84d1-d1b78237f0b7 OVERWEIGHT_PER_TON \N \N USD 25.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:02:14.759+00 2026-01-01 \N 2026-06-17 11:02:14.706535+00 2026-06-17 11:02:14.706535+00 \N
+77b0ba0d-31d7-4568-9dd2-46ff0053ab73 HAZARD_SURCHARGE \N \N USD 150.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:02:14.759+00 2026-01-01 \N 2026-06-17 11:02:14.706535+00 2026-06-17 11:02:14.706535+00 \N
+73c19ef1-5d28-4e6f-b798-7aa9c490d7ef REEFER_SURCHARGE \N \N USD 200.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:02:14.759+00 2026-01-01 \N 2026-06-17 11:02:14.706535+00 2026-06-17 11:02:14.706535+00 \N
+3c6ce19d-54eb-441d-92ec-a1680da14b09 DOUBLE_HANDLING \N \N USD 100.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:02:14.759+00 2026-01-01 \N 2026-06-17 11:02:14.706535+00 2026-06-17 11:02:14.706535+00 \N
+b6ae0c22-3608-488b-928a-927883dc8314 LASHING \N \N USD 50.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:02:14.759+00 2026-01-01 \N 2026-06-17 11:02:14.706535+00 2026-06-17 11:02:14.706535+00 \N
+070fd376-716a-4b5a-a294-b6e6f477bd58 CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 800.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:30:21.93+00 2026-01-01 \N 2026-06-17 11:30:21.886813+00 2026-06-17 11:30:21.886813+00 \N
+ca34f472-1d27-43a0-a225-9682183519ed CONTAINER_IMPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 1200.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:30:21.93+00 2026-01-01 \N 2026-06-17 11:30:21.886813+00 2026-06-17 11:30:21.886813+00 \N
+4a71f15f-2f9e-44fb-bd40-064ef37332fa CONTAINER_EXPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 600.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:30:21.93+00 2026-01-01 \N 2026-06-17 11:30:21.886813+00 2026-06-17 11:30:21.886813+00 \N
+3fa08719-6dcd-47c7-97f5-e9b465f9a82c CONTAINER_EXPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 900.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:30:21.93+00 2026-01-01 \N 2026-06-17 11:30:21.886813+00 2026-06-17 11:30:21.886813+00 \N
+17a573c1-71f9-49c2-8d22-470cb9665376 CONTAINER_IMPORT \N \N USD 1000.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:30:21.93+00 2026-01-01 \N 2026-06-17 11:30:21.886813+00 2026-06-17 11:30:21.886813+00 \N
+1aa6d63a-8078-4345-9e79-e73d51a1968c CONTAINER_EXPORT \N \N USD 750.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:30:21.93+00 2026-01-01 \N 2026-06-17 11:30:21.886813+00 2026-06-17 11:30:21.886813+00 \N
+42c456f8-be55-4ce2-ba53-96bf4e8f7788 INTERCITY_CONTAINER a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 350.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:30:21.93+00 2026-01-01 \N 2026-06-17 11:30:21.886813+00 2026-06-17 11:30:21.886813+00 \N
+dd4f5f80-85f3-4801-8cff-72b7112f74ee INTERCITY_CONTAINER b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 550.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:30:21.93+00 2026-01-01 \N 2026-06-17 11:30:21.886813+00 2026-06-17 11:30:21.886813+00 \N
+b6b45872-52e1-46ae-b98f-b85b566c5dd7 INTERCITY_CONTAINER \N \N USD 400.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:30:21.93+00 2026-01-01 \N 2026-06-17 11:30:21.886813+00 2026-06-17 11:30:21.886813+00 \N
+fbcbda11-c23f-4e4e-b09f-2d508c5bdc11 INTERCITY_BULK \N \N USD 35.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:30:21.93+00 2026-01-01 \N 2026-06-17 11:30:21.886813+00 2026-06-17 11:30:21.886813+00 \N
+3a937cde-6926-4aa6-9ef8-b36113ce14cc BULK_IMPORT \N \N USD 50.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:30:21.93+00 2026-01-01 \N 2026-06-17 11:30:21.886813+00 2026-06-17 11:30:21.886813+00 \N
+35a21618-1891-483a-a7c8-ecc1767f2e41 BULK_EXPORT \N \N USD 40.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:30:21.93+00 2026-01-01 \N 2026-06-17 11:30:21.886813+00 2026-06-17 11:30:21.886813+00 \N
+b72f4952-adc4-4d67-8908-8adac7d99880 OVERWEIGHT_PER_TON \N \N USD 25.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:30:21.93+00 2026-01-01 \N 2026-06-17 11:30:21.886813+00 2026-06-17 11:30:21.886813+00 \N
+336e2d15-655c-4568-9df6-c04af01bffd9 HAZARD_SURCHARGE \N \N USD 150.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:30:21.93+00 2026-01-01 \N 2026-06-17 11:30:21.886813+00 2026-06-17 11:30:21.886813+00 \N
+35b9c537-9e8b-4c77-8a47-d3aeb593c785 REEFER_SURCHARGE \N \N USD 200.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:30:21.93+00 2026-01-01 \N 2026-06-17 11:30:21.886813+00 2026-06-17 11:30:21.886813+00 \N
+79b86fda-fa65-4a31-95b7-a4caf51bada2 DOUBLE_HANDLING \N \N USD 100.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:30:21.93+00 2026-01-01 \N 2026-06-17 11:30:21.886813+00 2026-06-17 11:30:21.886813+00 \N
+f5251484-f05b-487e-ac21-580a786477cc LASHING \N \N USD 50.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 11:30:21.93+00 2026-01-01 \N 2026-06-17 11:30:21.886813+00 2026-06-17 11:30:21.886813+00 \N
+360043a6-c2f9-4a27-9d68-37f657258448 CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 800.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 13:03:49.5+00 2026-01-01 \N 2026-06-17 13:03:49.466485+00 2026-06-17 13:03:49.466485+00 \N
+d0e506fb-4c3e-432f-9085-7f452eebecd9 CONTAINER_IMPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 1200.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 13:03:49.5+00 2026-01-01 \N 2026-06-17 13:03:49.466485+00 2026-06-17 13:03:49.466485+00 \N
+10971f3e-1ac7-45f4-9a4a-3bc7818bbc9a CONTAINER_EXPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 600.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 13:03:49.5+00 2026-01-01 \N 2026-06-17 13:03:49.466485+00 2026-06-17 13:03:49.466485+00 \N
+05de2dbb-3c25-4cb7-896b-bce8a9e6092d CONTAINER_EXPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 900.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 13:03:49.5+00 2026-01-01 \N 2026-06-17 13:03:49.466485+00 2026-06-17 13:03:49.466485+00 \N
+c9e1a116-1c13-4d96-82a3-75a4ff334af1 CONTAINER_IMPORT \N \N USD 1000.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 13:03:49.5+00 2026-01-01 \N 2026-06-17 13:03:49.466485+00 2026-06-17 13:03:49.466485+00 \N
+62a7789f-00d8-4014-8e53-3f7044e25d93 CONTAINER_EXPORT \N \N USD 750.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 13:03:49.5+00 2026-01-01 \N 2026-06-17 13:03:49.466485+00 2026-06-17 13:03:49.466485+00 \N
+bce89fc0-281c-435d-9d54-a440cf472858 INTERCITY_CONTAINER a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 350.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 13:03:49.5+00 2026-01-01 \N 2026-06-17 13:03:49.466485+00 2026-06-17 13:03:49.466485+00 \N
+ac9c7f38-4fb7-4900-8689-7d1d40ebd4e8 INTERCITY_CONTAINER b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 550.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 13:03:49.5+00 2026-01-01 \N 2026-06-17 13:03:49.466485+00 2026-06-17 13:03:49.466485+00 \N
+ff2acb32-2243-4999-aac0-3087e2993676 INTERCITY_CONTAINER \N \N USD 400.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 13:03:49.5+00 2026-01-01 \N 2026-06-17 13:03:49.466485+00 2026-06-17 13:03:49.466485+00 \N
+29f3e0b9-1dd9-4518-8257-e3c3958d9dc4 INTERCITY_BULK \N \N USD 35.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 13:03:49.5+00 2026-01-01 \N 2026-06-17 13:03:49.466485+00 2026-06-17 13:03:49.466485+00 \N
+f928ddc9-093a-4704-a7d1-4fc964629f67 BULK_IMPORT \N \N USD 50.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 13:03:49.5+00 2026-01-01 \N 2026-06-17 13:03:49.466485+00 2026-06-17 13:03:49.466485+00 \N
+6d0dfcf6-29cd-47a7-80b2-2cfc9c79d672 BULK_EXPORT \N \N USD 40.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 13:03:49.5+00 2026-01-01 \N 2026-06-17 13:03:49.466485+00 2026-06-17 13:03:49.466485+00 \N
+40c56931-d148-48a5-bea3-9baad2496e08 OVERWEIGHT_PER_TON \N \N USD 25.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 13:03:49.5+00 2026-01-01 \N 2026-06-17 13:03:49.466485+00 2026-06-17 13:03:49.466485+00 \N
+2ce93bce-5ec0-408c-a317-5ce2c2fa2ae0 HAZARD_SURCHARGE \N \N USD 150.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 13:03:49.5+00 2026-01-01 \N 2026-06-17 13:03:49.466485+00 2026-06-17 13:03:49.466485+00 \N
+73578478-a6d0-46f8-b391-f2aec1c04992 REEFER_SURCHARGE \N \N USD 200.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 13:03:49.5+00 2026-01-01 \N 2026-06-17 13:03:49.466485+00 2026-06-17 13:03:49.466485+00 \N
+70b970f1-9ec3-4e0b-8eb3-d7a1d3932f7f DOUBLE_HANDLING \N \N USD 100.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 13:03:49.5+00 2026-01-01 \N 2026-06-17 13:03:49.466485+00 2026-06-17 13:03:49.466485+00 \N
+50126b11-0ffc-4b28-a870-20723f5a003e LASHING \N \N USD 50.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 13:03:49.5+00 2026-01-01 \N 2026-06-17 13:03:49.466485+00 2026-06-17 13:03:49.466485+00 \N
+932f9628-d3ec-4e6b-8267-c7b374de490c CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 800.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 18:05:43.838+00 2026-01-01 \N 2026-06-17 18:05:43.799599+00 2026-06-17 18:05:43.799599+00 \N
+6bb7f027-c75f-4a0b-8876-4ab0f8bbfec4 CONTAINER_IMPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 1200.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 18:05:43.838+00 2026-01-01 \N 2026-06-17 18:05:43.799599+00 2026-06-17 18:05:43.799599+00 \N
+e6a0aad5-e040-44d5-8ed5-60acacb02fe6 CONTAINER_EXPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 600.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 18:05:43.838+00 2026-01-01 \N 2026-06-17 18:05:43.799599+00 2026-06-17 18:05:43.799599+00 \N
+da619cbe-1760-42c2-91d0-c79061bb4732 CONTAINER_EXPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 900.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 18:05:43.838+00 2026-01-01 \N 2026-06-17 18:05:43.799599+00 2026-06-17 18:05:43.799599+00 \N
+d4f865e2-a256-4c11-9539-011a9f3e1c68 CONTAINER_IMPORT \N \N USD 1000.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 18:05:43.838+00 2026-01-01 \N 2026-06-17 18:05:43.799599+00 2026-06-17 18:05:43.799599+00 \N
+a42d1d6d-b352-4c08-8775-43a525c59c99 CONTAINER_EXPORT \N \N USD 750.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 18:05:43.838+00 2026-01-01 \N 2026-06-17 18:05:43.799599+00 2026-06-17 18:05:43.799599+00 \N
+eb1996c5-d9ef-4656-abc7-37d0e02b06cf INTERCITY_CONTAINER a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 350.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 18:05:43.838+00 2026-01-01 \N 2026-06-17 18:05:43.799599+00 2026-06-17 18:05:43.799599+00 \N
+a6617aa5-b172-46a4-912d-772ed3f19b28 INTERCITY_CONTAINER b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 550.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 18:05:43.838+00 2026-01-01 \N 2026-06-17 18:05:43.799599+00 2026-06-17 18:05:43.799599+00 \N
+3edec8c4-14a4-4d33-9c7a-c80040dfa4bb INTERCITY_CONTAINER \N \N USD 400.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 18:05:43.838+00 2026-01-01 \N 2026-06-17 18:05:43.799599+00 2026-06-17 18:05:43.799599+00 \N
+33cce31c-0c0c-4bf8-b742-59042c071514 INTERCITY_BULK \N \N USD 35.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 18:05:43.838+00 2026-01-01 \N 2026-06-17 18:05:43.799599+00 2026-06-17 18:05:43.799599+00 \N
+600b8663-70b2-4a95-a8ca-a1b75a5a455d BULK_IMPORT \N \N USD 50.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 18:05:43.838+00 2026-01-01 \N 2026-06-17 18:05:43.799599+00 2026-06-17 18:05:43.799599+00 \N
+66c1608e-a201-49be-b222-9668a16d00bb BULK_EXPORT \N \N USD 40.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 18:05:43.838+00 2026-01-01 \N 2026-06-17 18:05:43.799599+00 2026-06-17 18:05:43.799599+00 \N
+028a9e80-e98b-4a7c-8030-1099a0cb7f35 OVERWEIGHT_PER_TON \N \N USD 25.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 18:05:43.838+00 2026-01-01 \N 2026-06-17 18:05:43.799599+00 2026-06-17 18:05:43.799599+00 \N
+20d36919-01f8-4bc1-a07e-aeb0512bb205 HAZARD_SURCHARGE \N \N USD 150.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 18:05:43.838+00 2026-01-01 \N 2026-06-17 18:05:43.799599+00 2026-06-17 18:05:43.799599+00 \N
+be475a8b-c7c3-42f7-b816-ae4deff60cfb REEFER_SURCHARGE \N \N USD 200.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 18:05:43.838+00 2026-01-01 \N 2026-06-17 18:05:43.799599+00 2026-06-17 18:05:43.799599+00 \N
+48517d99-4396-4ce7-9410-3eacf53c3c74 DOUBLE_HANDLING \N \N USD 100.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 18:05:43.838+00 2026-01-01 \N 2026-06-17 18:05:43.799599+00 2026-06-17 18:05:43.799599+00 \N
+448f841e-550c-4313-aea0-6f757457ffee LASHING \N \N USD 50.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 18:05:43.838+00 2026-01-01 \N 2026-06-17 18:05:43.799599+00 2026-06-17 18:05:43.799599+00 \N
+4e32a481-a15c-4bec-9aeb-a27a6c88fd2b CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 800.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 19:29:48.563+00 2026-01-01 \N 2026-06-17 19:29:48.525179+00 2026-06-17 19:29:48.525179+00 \N
+8fc8e6e8-bdd9-4784-acd3-217e183ec5e1 CONTAINER_IMPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 1200.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 19:29:48.563+00 2026-01-01 \N 2026-06-17 19:29:48.525179+00 2026-06-17 19:29:48.525179+00 \N
+af46d96a-f275-47e2-95f8-81b8ce3f8be6 CONTAINER_EXPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 600.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 19:29:48.563+00 2026-01-01 \N 2026-06-17 19:29:48.525179+00 2026-06-17 19:29:48.525179+00 \N
+bcffdcf5-d959-42d0-a276-d90df2605eec CONTAINER_EXPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 900.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 19:29:48.563+00 2026-01-01 \N 2026-06-17 19:29:48.525179+00 2026-06-17 19:29:48.525179+00 \N
+87d66e60-6ea6-4a41-839b-a104a21d6a1f CONTAINER_IMPORT \N \N USD 1000.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 19:29:48.563+00 2026-01-01 \N 2026-06-17 19:29:48.525179+00 2026-06-17 19:29:48.525179+00 \N
+d6eb97c3-ad42-48be-8b0c-b8c48f2e166e CONTAINER_EXPORT \N \N USD 750.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 19:29:48.563+00 2026-01-01 \N 2026-06-17 19:29:48.525179+00 2026-06-17 19:29:48.525179+00 \N
+d7108a5c-9ff3-4630-b316-cb35a63e7b7a INTERCITY_CONTAINER a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 350.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 19:29:48.563+00 2026-01-01 \N 2026-06-17 19:29:48.525179+00 2026-06-17 19:29:48.525179+00 \N
+e1fa2831-a3d8-4208-a61b-ab8c382bdf35 INTERCITY_CONTAINER b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 550.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 19:29:48.563+00 2026-01-01 \N 2026-06-17 19:29:48.525179+00 2026-06-17 19:29:48.525179+00 \N
+d2a422de-4530-427e-b7fe-a8575790acb5 INTERCITY_CONTAINER \N \N USD 400.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 19:29:48.563+00 2026-01-01 \N 2026-06-17 19:29:48.525179+00 2026-06-17 19:29:48.525179+00 \N
+1d2bcead-1d70-4304-b357-e72de3adafcf INTERCITY_BULK \N \N USD 35.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 19:29:48.563+00 2026-01-01 \N 2026-06-17 19:29:48.525179+00 2026-06-17 19:29:48.525179+00 \N
+1548becc-b551-44fe-847f-3d328af8c1e4 BULK_IMPORT \N \N USD 50.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 19:29:48.563+00 2026-01-01 \N 2026-06-17 19:29:48.525179+00 2026-06-17 19:29:48.525179+00 \N
+1a1ad172-6550-4435-867c-ca2682edd384 BULK_EXPORT \N \N USD 40.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 19:29:48.563+00 2026-01-01 \N 2026-06-17 19:29:48.525179+00 2026-06-17 19:29:48.525179+00 \N
+4d5842c9-be9d-4d68-b06b-2b641861f4a1 OVERWEIGHT_PER_TON \N \N USD 25.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 19:29:48.563+00 2026-01-01 \N 2026-06-17 19:29:48.525179+00 2026-06-17 19:29:48.525179+00 \N
+0a672b15-7eb6-4a7b-b0cd-d8bc04d83eca HAZARD_SURCHARGE \N \N USD 150.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 19:29:48.563+00 2026-01-01 \N 2026-06-17 19:29:48.525179+00 2026-06-17 19:29:48.525179+00 \N
+c19e795b-8bab-4249-886b-c21e64fc5aa5 REEFER_SURCHARGE \N \N USD 200.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 19:29:48.563+00 2026-01-01 \N 2026-06-17 19:29:48.525179+00 2026-06-17 19:29:48.525179+00 \N
+70935a6b-7e78-4f1a-af6f-226704b2ba19 DOUBLE_HANDLING \N \N USD 100.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 19:29:48.563+00 2026-01-01 \N 2026-06-17 19:29:48.525179+00 2026-06-17 19:29:48.525179+00 \N
+a6462eff-a300-41cb-8152-8ed86baa24fa LASHING \N \N USD 50.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 19:29:48.563+00 2026-01-01 \N 2026-06-17 19:29:48.525179+00 2026-06-17 19:29:48.525179+00 \N
+eda4eab3-3d2c-4199-a3dd-c75e321ee8c9 CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 800.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 20:08:18.9+00 2026-01-01 \N 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N
+41181eea-6019-4c3f-9968-f7d5c8db9651 CONTAINER_IMPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 1200.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 20:08:18.9+00 2026-01-01 \N 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N
+e7a1cbf1-364a-4f36-a92f-86d22aeb63af CONTAINER_EXPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 600.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 20:08:18.9+00 2026-01-01 \N 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N
+93123ed0-2226-40aa-81ca-b2faec1465b1 CONTAINER_EXPORT b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 900.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 20:08:18.9+00 2026-01-01 \N 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N
+12f386e9-bd62-4643-880d-4483a1314ce6 CONTAINER_IMPORT \N \N USD 1000.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 20:08:18.9+00 2026-01-01 \N 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N
+12ab0e64-6ce8-4cd2-bc61-5aa4c8148154 CONTAINER_EXPORT \N \N USD 750.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 20:08:18.9+00 2026-01-01 \N 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N
+8a8fa6c7-195e-4315-a98b-95bb7599cf3b INTERCITY_CONTAINER a094d16d-fe2a-406f-8d6d-6ecd1821b1ea \N USD 350.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 20:08:18.9+00 2026-01-01 \N 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N
+c1ced135-9528-41a0-8bb6-1d445ba41311 INTERCITY_CONTAINER b76986fe-8ab5-420b-afb0-7fb4bbe270ef \N USD 550.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 20:08:18.9+00 2026-01-01 \N 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N
+ab9e2b98-24b7-4930-813b-0d19757adc75 INTERCITY_CONTAINER \N \N USD 400.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 20:08:18.9+00 2026-01-01 \N 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N
+e2c02d98-6c66-419b-ba59-565b35108706 INTERCITY_BULK \N \N USD 35.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 20:08:18.9+00 2026-01-01 \N 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N
+a4ec34f8-2156-452a-affc-e7999aeb8480 BULK_IMPORT \N \N USD 50.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 20:08:18.9+00 2026-01-01 \N 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N
+9dae5972-967b-404c-b919-3655cf544f29 BULK_EXPORT \N \N USD 40.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 20:08:18.9+00 2026-01-01 \N 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N
+27494c4f-c2a6-4f05-856e-e5a2cbef12ab OVERWEIGHT_PER_TON \N \N USD 25.0000 PER_TON LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 20:08:18.9+00 2026-01-01 \N 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N
+749af6ff-0513-4722-b687-9be1f092489d HAZARD_SURCHARGE \N \N USD 150.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 20:08:18.9+00 2026-01-01 \N 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N
+967a69d2-baae-4ea4-acf6-b7071bccabe7 REEFER_SURCHARGE \N \N USD 200.0000 FLAT LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 20:08:18.9+00 2026-01-01 \N 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N
+1346288d-f479-4bad-b61d-46112e5bc8d7 LASHING \N \N USD 50.0000 PER_CONTAINER LIVE 00000000-0000-0000-0000-000000000001 00000000-0000-0000-0000-000000000002 2026-06-17 20:08:18.9+00 2026-01-01 \N 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N
+efd82af7-22af-45d1-84f0-f443f65299c6 CONTAINER_IMPORT a094d16d-fe2a-406f-8d6d-6ecd1821b1ea IMPORT USD 1200.0000 PER_CONTAINER DRAFT 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a \N \N 2026-06-22 2026-07-22 2026-06-22 05:40:57.960343+00 2026-06-22 05:40:57.960343+00 \N
+\.
+
+
+--
+-- Data for Name: route_milestones; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.route_milestones (id, route_id, yard_id, sequence_no, created_at, updated_at, deleted_at) FROM stdin;
+497baa2a-b40b-4adf-9854-18b1d1931d73 f09093c2-a88c-4327-814d-5b09c1362960 d756db2f-057a-4d57-acd5-633fcc6c4244 1 2026-06-16 17:56:01.344427+00 2026-06-16 17:56:01.344427+00 \N
+1b74db6c-0f1e-467d-8c6d-e615143348f8 f09093c2-a88c-4327-814d-5b09c1362960 f7ca751e-8202-4daf-a949-1deeb069e3e9 2 2026-06-16 17:56:01.344427+00 2026-06-16 17:56:01.344427+00 \N
+edcd8171-39bc-49fa-8379-25e099d030dd b9d78258-408b-4822-9b5b-0b5c0045120e f7ca751e-8202-4daf-a949-1deeb069e3e9 1 2026-06-16 17:56:01.496816+00 2026-06-16 17:56:01.496816+00 \N
+24a8b3ad-3f36-4f36-a01f-87a3f811cca9 b9d78258-408b-4822-9b5b-0b5c0045120e 24d06c00-203e-43f5-878c-11b998743033 2 2026-06-16 17:56:01.496816+00 2026-06-16 17:56:01.496816+00 \N
+6312cffd-632d-402e-ba95-3b32ac0e6028 d984e1a1-e312-4a68-a490-966843381c1d bbd94d0d-8876-4f4e-a330-816db40d8767 1 2026-06-17 06:29:22.822264+00 2026-06-17 06:29:22.822264+00 \N
+426b03bc-10ec-44a0-b566-1e97f831e9b4 d984e1a1-e312-4a68-a490-966843381c1d a09be182-0447-465e-9924-587e556d2648 2 2026-06-17 06:29:22.822264+00 2026-06-17 06:29:22.822264+00 \N
+39d5024b-8e40-49f5-9f61-1bf31cbf80ff fdf04335-27f7-4a25-ae23-040a4103df01 d756db2f-057a-4d57-acd5-633fcc6c4244 1 2026-06-17 07:11:38.126345+00 2026-06-17 07:11:38.126345+00 \N
+68f657c9-0045-42c3-b274-f87ef41292b1 fdf04335-27f7-4a25-ae23-040a4103df01 24d06c00-203e-43f5-878c-11b998743033 2 2026-06-17 07:11:38.126345+00 2026-06-17 07:11:38.126345+00 \N
+d8a2fca5-6aa1-47c9-8afb-95ef955f1903 fdf04335-27f7-4a25-ae23-040a4103df01 f7ca751e-8202-4daf-a949-1deeb069e3e9 3 2026-06-17 07:11:38.126345+00 2026-06-17 07:11:38.126345+00 \N
+650e4a14-0c54-49e5-9919-70e18accdccb 1bd707b7-cb14-4a39-b2e3-52b90ebeb7f6 24d06c00-203e-43f5-878c-11b998743033 1 2026-06-17 08:30:17.31418+00 2026-06-17 08:30:17.31418+00 \N
+1e98f5b7-d082-4476-ac38-7d9b112c717a 1bd707b7-cb14-4a39-b2e3-52b90ebeb7f6 9701100d-e89f-4f83-91d0-dd49b1511fad 2 2026-06-17 08:30:17.31418+00 2026-06-17 08:30:17.31418+00 \N
+6a89e311-294b-4aa4-b935-10340a868f7c c0826199-58bb-4588-ab89-b93c7d28327f 48e11c55-e851-4fd5-a417-83e0ebc02f38 1 2026-06-17 08:40:08.300094+00 2026-06-17 08:40:08.300094+00 \N
+1eae89ce-6661-4fdd-8a3d-9b42ad9e3786 c0826199-58bb-4588-ab89-b93c7d28327f 24d06c00-203e-43f5-878c-11b998743033 2 2026-06-17 08:40:08.300094+00 2026-06-17 08:40:08.300094+00 \N
+c2f87e1f-2935-46ce-a20b-e595e23ca706 c0826199-58bb-4588-ab89-b93c7d28327f d756db2f-057a-4d57-acd5-633fcc6c4244 3 2026-06-17 08:40:08.300094+00 2026-06-17 08:40:08.300094+00 \N
+2a4d5066-eabf-45b6-a36d-577c433c2e2c 109e9b99-6b0e-48d7-8745-d5e5590f3e8b 17964b5f-4b99-4f0e-b855-1aa5d4237934 1 2026-06-18 10:35:14.33122+00 2026-06-18 10:35:14.33122+00 \N
+ed38b8a3-38e1-4056-bf55-33edef361e53 109e9b99-6b0e-48d7-8745-d5e5590f3e8b bbd94d0d-8876-4f4e-a330-816db40d8767 2 2026-06-18 10:35:14.33122+00 2026-06-18 10:35:14.33122+00 \N
+034c4244-8e71-457b-a5e8-ffcb4503c0a9 1d240cd7-70e9-407d-bb26-127469748eff 17964b5f-4b99-4f0e-b855-1aa5d4237934 1 2026-06-18 11:57:55.741543+00 2026-06-18 11:57:55.741543+00 \N
+1d73a38d-a119-4d0b-bb9f-246965ee414d 1d240cd7-70e9-407d-bb26-127469748eff 1acf9b6a-5a6e-4022-b194-59a6f638146e 2 2026-06-18 11:57:55.741543+00 2026-06-18 11:57:55.741543+00 \N
+5674040a-63df-4a6f-9f7f-f7c9495e5f85 a003d649-1d5e-4c24-b0f6-7308e92118b7 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 1 2026-06-19 06:59:00.861805+00 2026-06-19 06:59:00.861805+00 \N
+d552f1ba-9592-4509-8bf2-6dc49811e594 a003d649-1d5e-4c24-b0f6-7308e92118b7 bbd94d0d-8876-4f4e-a330-816db40d8767 2 2026-06-19 06:59:00.861805+00 2026-06-19 06:59:00.861805+00 \N
+25fe2319-8170-4d4d-b1ad-344ad401d927 3c0c0124-7234-46e6-beb4-362dd7a1160d 17964b5f-4b99-4f0e-b855-1aa5d4237934 1 2026-06-19 13:17:15.336207+00 2026-06-19 13:17:15.336207+00 \N
+81014e47-ca2d-4832-b2e2-13b6bbed77c5 3c0c0124-7234-46e6-beb4-362dd7a1160d 1acf9b6a-5a6e-4022-b194-59a6f638146e 2 2026-06-19 13:17:15.336207+00 2026-06-19 13:17:15.336207+00 \N
+91877646-b691-44c0-8c7a-7b4ee6ce0a64 c7772eb5-51be-492e-9a35-480ed6be3ae3 7b8e2dfa-ea7c-409b-bcd4-077caf68cd0d 1 2026-06-21 07:54:06.6228+00 2026-06-21 07:54:06.6228+00 \N
+2fba7b63-0266-42ab-9edf-76517d0479cc c7772eb5-51be-492e-9a35-480ed6be3ae3 c6323573-32fb-47c7-aec6-c96ac2eada89 2 2026-06-21 07:54:06.6228+00 2026-06-21 07:54:06.6228+00 \N
+74642b73-2480-4d72-a4ad-8c39a1e523c9 c7772eb5-51be-492e-9a35-480ed6be3ae3 bbd94d0d-8876-4f4e-a330-816db40d8767 3 2026-06-21 07:54:06.6228+00 2026-06-21 07:54:06.6228+00 \N
+75c43daa-9ecc-4320-9643-c42f4c99b85e 35a8bdc2-afcd-4066-a644-108e5862740f 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 1 2026-06-22 08:55:53.415719+00 2026-06-22 08:55:53.415719+00 \N
+a299c017-6d3c-4ddf-904e-384c62bbdc2b 35a8bdc2-afcd-4066-a644-108e5862740f 67c2f9ee-d6a2-4be7-8ba0-9bfd35489ed6 2 2026-06-22 08:55:53.415719+00 2026-06-22 08:55:53.415719+00 \N
+ea1b42f8-b0d9-482c-9095-6e5b9cf7d8fc 35a8bdc2-afcd-4066-a644-108e5862740f bbd94d0d-8876-4f4e-a330-816db40d8767 3 2026-06-22 08:55:53.415719+00 2026-06-22 08:55:53.415719+00 \N
+\.
+
+
+--
+-- Data for Name: routes; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.routes (id, name, origin_yard_id, destination_yard_id, is_active, created_at, updated_at, deleted_at) FROM stdin;
+f09093c2-a88c-4327-814d-5b09c1362960 Djibouti → Addis Ababa d756db2f-057a-4d57-acd5-633fcc6c4244 f7ca751e-8202-4daf-a949-1deeb069e3e9 t 2026-06-16 17:56:01.344427+00 2026-06-16 17:56:01.344427+00 \N
+b9d78258-408b-4822-9b5b-0b5c0045120e Addis Ababa → Dire Dawa f7ca751e-8202-4daf-a949-1deeb069e3e9 24d06c00-203e-43f5-878c-11b998743033 t 2026-06-16 17:56:01.496816+00 2026-06-16 17:56:01.496816+00 \N
+d984e1a1-e312-4a68-a490-966843381c1d Negad bbd94d0d-8876-4f4e-a330-816db40d8767 a09be182-0447-465e-9924-587e556d2648 t 2026-06-17 06:29:22.822264+00 2026-06-17 06:29:22.822264+00 \N
+fdf04335-27f7-4a25-ae23-040a4103df01 Import d756db2f-057a-4d57-acd5-633fcc6c4244 f7ca751e-8202-4daf-a949-1deeb069e3e9 t 2026-06-17 07:11:38.126345+00 2026-06-17 07:11:38.126345+00 \N
+1bd707b7-cb14-4a39-b2e3-52b90ebeb7f6 Intercity 24d06c00-203e-43f5-878c-11b998743033 9701100d-e89f-4f83-91d0-dd49b1511fad t 2026-06-17 08:30:17.31418+00 2026-06-17 08:30:17.31418+00 \N
+c0826199-58bb-4588-ab89-b93c7d28327f Export 48e11c55-e851-4fd5-a417-83e0ebc02f38 d756db2f-057a-4d57-acd5-633fcc6c4244 t 2026-06-17 08:40:08.300094+00 2026-06-17 08:40:08.300094+00 \N
+109e9b99-6b0e-48d7-8745-d5e5590f3e8b MN 17964b5f-4b99-4f0e-b855-1aa5d4237934 bbd94d0d-8876-4f4e-a330-816db40d8767 t 2026-06-18 10:35:14.33122+00 2026-06-18 10:35:14.33122+00 \N
+1d240cd7-70e9-407d-bb26-127469748eff MDCT 17964b5f-4b99-4f0e-b855-1aa5d4237934 1acf9b6a-5a6e-4022-b194-59a6f638146e t 2026-06-18 11:57:55.741543+00 2026-06-18 11:57:55.741543+00 \N
+a003d649-1d5e-4c24-b0f6-7308e92118b7 EP001 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 bbd94d0d-8876-4f4e-a330-816db40d8767 t 2026-06-19 06:59:00.861805+00 2026-06-19 06:59:00.861805+00 \N
+3c0c0124-7234-46e6-beb4-362dd7a1160d MN1 17964b5f-4b99-4f0e-b855-1aa5d4237934 1acf9b6a-5a6e-4022-b194-59a6f638146e t 2026-06-19 13:17:15.336207+00 2026-06-19 13:17:15.336207+00 \N
+c7772eb5-51be-492e-9a35-480ed6be3ae3 IMPORT 7b8e2dfa-ea7c-409b-bcd4-077caf68cd0d bbd94d0d-8876-4f4e-a330-816db40d8767 t 2026-06-21 07:54:06.6228+00 2026-06-21 07:54:06.6228+00 \N
+35a8bdc2-afcd-4066-a644-108e5862740f Indode-Negad 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 bbd94d0d-8876-4f4e-a330-816db40d8767 t 2026-06-22 08:55:53.415719+00 2026-06-22 08:55:53.415719+00 \N
+\.
+
+
+--
+-- Data for Name: saved_signatures; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.saved_signatures (id, user_id, signer_display_name, signature_file_id, created_at, updated_at, deleted_at) FROM stdin;
+a9367b6f-416a-43ed-b257-abc3755a1bfb 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a Alazar Super user 76198518-01cf-40a8-8cf9-6eab3d697b79 2026-06-17 07:03:13.673004+00 2026-06-18 19:10:51.632683+00 \N
+cb34b2f5-c3e9-434e-bf01-3478f5ee25f1 8d9e3a2a-558c-4cca-987c-202dc8ac3c5c Marshal Yordnaos b16a00bb-a105-4f6b-bfec-43ee75c4637d 2026-06-17 05:04:57.983598+00 2026-06-19 06:44:15.411582+00 \N
+b164155d-a4f0-46de-98fb-97e232cbdeab 0e1e709c-7bf6-4852-869e-678924f2315e Main Yordanos 7d448496-862a-4f4e-9a09-99ba2da3e591 2026-06-19 07:16:39.460053+00 2026-06-19 07:36:19.654706+00 \N
+1b8b1127-1b70-4d08-9b76-21e1f253c683 b7e27b32-2c33-4a15-a13f-b849826d21a4 marketing 628ac9ce-2383-4a58-928f-2dc406ff9eaf 2026-06-19 08:13:29.47834+00 2026-06-19 08:13:29.47834+00 \N
+2bec823c-4cb3-4722-b8b4-6a3691106375 6f001573-e7e0-4952-81ad-e422cfd4dc1e Alazar Abate 6f07359c-ebac-43f5-8676-a34e6b41aa96 2026-06-18 12:49:25.444667+00 2026-06-19 08:15:17.840374+00 \N
+d6f12c21-2ade-4843-a23f-6f52b291c60d 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 Drictor 00474207-00f3-41fd-adf9-8073f9cbcc7e 2026-06-17 05:13:59.619428+00 2026-06-19 08:15:43.025558+00 \N
+\.
+
+
+--
+-- Data for Name: scheduling_events; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.scheduling_events (id, train_schedule_id, trigger, actor_user_id, reason, plan_snapshot, displaced_booking_ids, created_at, updated_at, deleted_at) FROM stdin;
+\.
+
+
+--
+-- Data for Name: service_types; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.service_types (id, service_name, description, can_be_booked_alone, includes_first_mile, includes_last_mile, includes_customs, priority_bonus_points, is_active, display_order, created_at, updated_at, deleted_at, code) FROM stdin;
+8ed22311-ddc5-4259-a82e-b57e0307c202 Rail Transport, Customs Clearance and First Mile Customers can request integrated rail transport, customs clearance and first mile services directly from EDR t t f t 0 t 6 2026-06-18 09:06:53.008023+00 2026-06-18 09:07:54.171503+00 \N RAIL_TRANSPORT_CUSTOMS_CLEARANCE_AND_FIRST_MILE
+9c36ff39-dbbb-4a39-840b-f9b49ab6e252 xxxx \N f f f f 0 f 8 2026-06-18 10:26:06.314303+00 2026-06-18 10:26:38.329373+00 2026-06-18 10:26:38.329373+00 XXXX
+a2d5126b-66a4-4c94-83d0-c6029841aed3 Rail Transport and Clarence Service Customer can ask for Rail transport and customs clearance service f f f f 0 t 7 2026-06-18 10:24:20.961591+00 2026-06-18 11:21:02.878913+00 2026-06-18 11:21:02.878913+00 RAIL_TRANSPORT_AND_CLARENCE_SERVICE
+7c69624d-d2a2-48df-8a88-4791e1ce3d0f Rail Forwarding Service Rail transport with first/last mile and customs t t t t 100 t 2 2026-06-16 17:56:01.496816+00 2026-06-17 20:08:18.846824+00 2026-06-17 06:43:13.423865+00 RAIL_FORWARDING
+3e650e74-36e2-44bc-b607-8bed02a988b6 With return \N f f f f 0 f 5 2026-06-17 13:37:45.450667+00 2026-06-18 08:43:18.886608+00 2026-06-18 08:43:18.886608+00 WITH_RETURN
+8a595065-e1e3-40ea-b69e-4c106c8f71cc Last mile \N f f f f 0 f 4 2026-06-17 13:37:05.322003+00 2026-06-18 08:43:22.807849+00 2026-06-18 08:43:22.807849+00 LAST_MILE
+03abdf75-1014-4c3a-911f-224b6b8c846f First mile \N f f f f 0 f 3 2026-06-17 13:37:25.376547+00 2026-06-18 08:43:26.759496+00 2026-06-18 08:43:26.759496+00 FIRST_MILE
+d9e1e2ac-7335-461e-8812-c6c9b1069a6a Rail Bulk Transport Bulk commodity rail transport t f f f 50 t 3 2026-06-16 17:56:01.496816+00 2026-06-18 08:43:30.167663+00 2026-06-18 08:43:30.167663+00 RAIL_BULK
+07b4c1fd-d12a-4409-beb3-be41b5d5d9c0 Rail Transport Only \N t f f f 0 t 1 2026-06-16 17:00:40.976144+00 2026-06-18 08:43:33.997413+00 2026-06-18 08:43:33.997413+00 RAIL
+f15f0f14-b7f1-4242-bbad-5a660d102dfc Rail Container Service Standard rail container transport t f f f 0 t 1 2026-06-16 17:56:01.344427+00 2026-06-18 08:43:37.428498+00 2026-06-18 08:43:37.428498+00 RAIL_CONTAINER
+106d494a-d8f5-45fb-81cb-f593b3c55b84 Rail Transport The customer can request Rail Transport only service t f f f 0 t 1 2026-06-18 08:47:31.524843+00 2026-06-18 08:47:31.524843+00 \N RAIL_TRANSPORT
+d7ac9a6f-fcc2-4c84-ad01-eb7e121e0030 Rail Transport with Customs Clearance Customers can request integrated rail transport and customs clearance services directly from EDR. f f f t 0 t 2 2026-06-18 08:50:52.215702+00 2026-06-18 08:50:52.215702+00 \N RAIL_TRANSPORT_WITH_CUSTOMS_CLEARANCE
+3cc8daa8-89a6-44e7-a38a-a1034dc8a05c Rail Transport with Last Mile Customers can request integrated rail transport and last mile services directly from EDR. t f t f 0 t 3 2026-06-18 08:52:48.340344+00 2026-06-18 08:52:48.340344+00 \N RAIL_TRANSPORT_WITH_LAST_MILE
+7ad35312-9e97-4e43-a746-db7286838526 Rail Transport with First Mile Customers can request integrated rail transport and first mile services directly from EDR. t t f f 0 t 4 2026-06-18 08:53:50.066884+00 2026-06-18 08:53:50.066884+00 \N RAIL_TRANSPORT_WITH_FIRST_MILE
+33623175-3436-4ac4-b6a2-71dd7449f28c Rail Transport, Customs Clearance with Last Mile Customers can request integrated rail transport, customs clearance and last mile services directly from EDR t f t t 0 t 5 2026-06-18 09:05:36.450745+00 2026-06-18 09:05:36.450745+00 \N RAIL_TRANSPORT_CUSTOMS_CLEARANCE_WITH_LAST_MILE
+c6d9432b-7d7c-41e9-8b35-a48eae760b56 General Contract General Contract each three months f t f f 20 t 1 2026-06-17 06:41:35.468786+00 2026-06-17 13:38:40.505472+00 2026-06-17 13:38:40.505472+00 GENERAL_CONTRACT
+\.
+
+
+--
+-- Data for Name: shipping_lines; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.shipping_lines (id, code, label, mapped_to_code, show_extra_fee_notice, is_active, created_at, updated_at, deleted_at) FROM stdin;
+747a06c0-2500-4578-a221-f8645897465d 014 CMA \N f f 2026-06-18 08:06:50.545503+00 2026-06-18 08:07:18.741356+00 2026-06-18 08:07:18.741356+00
+dc409999-051c-4de6-82e0-ce02d8ebed13 015 PIL Shipping Line PIL t t 2026-06-18 11:15:29.727505+00 2026-06-18 11:15:29.727505+00 \N
+ea465691-1c98-4597-ad71-00cdbef1692a PIL001 PIL \N f t 2026-06-17 13:29:51.410045+00 2026-06-17 13:30:51.211708+00 2026-06-17 13:30:51.211708+00
+bda772e1-cea9-42e9-8065-85dd33332552 CMA_CGM CMA CGM CMA_CGM t t 2026-06-16 17:56:01.496816+00 2026-06-17 20:08:18.846824+00 2026-06-17 06:47:51.981448+00
+2133bd34-214e-4926-b9f4-b308aa9ddb4d 003 CMA CGM Shipping Line CMA CGM f t 2026-06-16 17:56:01.496816+00 2026-06-18 05:59:39.81501+00 \N
+5b024d2f-c127-4233-b96f-29cf543b78a1 002 COSCO Shipping Line COSCO f t 2026-06-16 17:56:01.496816+00 2026-06-18 06:00:38.85952+00 \N
+9d8b8deb-ce51-4757-9309-5077d9fe7201 001 PIL Shipping Line PIL t t 2026-06-17 06:47:41.023232+00 2026-06-18 06:01:12.807471+00 \N
+e61e7444-91c4-462a-b0dd-acf6dbd04702 004 Maersk Shipping Line MAERSK f t 2026-06-16 17:56:01.496816+00 2026-06-18 06:01:42.92996+00 \N
+247f491a-eb54-48d2-9099-185f4a8ad5dc 005 MSC Shipping Line MSC f t 2026-06-16 17:56:01.496816+00 2026-06-18 06:02:21.97686+00 \N
+70d9b650-3737-4ca5-9859-327bfd270896 006 Evergreen Shipping Line Evergreen f t 2026-06-18 06:03:06.260765+00 2026-06-18 06:03:06.260765+00 \N
+f0ccc64d-fc14-4acb-980a-f9a09f50d860 007 One Shipping Line One f t 2026-06-18 06:04:11.57685+00 2026-06-18 06:04:11.57685+00 \N
+3750e2fc-9322-45fd-8dde-395aaff54034 008 Yang Ming Shipping Line Yang Ming f t 2026-06-18 06:04:55.623205+00 2026-06-18 06:04:55.623205+00 \N
+ab5ad223-2f7c-4eb7-9221-c162ba8c3e2b 009 Messina Shipping Line Messina f t 2026-06-18 06:05:36.075067+00 2026-06-18 06:05:36.075067+00 \N
+9343c4c5-ed3f-4abd-a832-b0ba331839a6 010 Safmarine Shipping Line Safmarine f t 2026-06-18 06:06:24.039701+00 2026-06-18 06:06:24.039701+00 \N
+43192844-ef4a-4ccd-89b5-8fecd1088532 011 Wan Hai Shipping Line Wan Hai f t 2026-06-18 06:08:43.099271+00 2026-06-18 06:08:43.099271+00 \N
+12d5316e-de1e-4f32-9e41-4120d90af947 012 Hapag-Lloyd Shipping Line Hapag-Lloyd f t 2026-06-18 06:10:06.845109+00 2026-06-18 06:10:06.845109+00 \N
+66876250-d5e5-42b6-9148-9ee4391f55f7 013 Ethiopian Shipping Line ESL f t 2026-06-18 06:10:47.508619+00 2026-06-18 06:10:47.508619+00 \N
+df3265c0-e260-45ae-951b-54272ddbd539 000 0000 0000 f f 2026-06-18 07:41:31.325874+00 2026-06-18 07:41:55.887024+00 2026-06-18 07:41:55.887024+00
+\.
+
+
+--
+-- Data for Name: surcharge_types; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.surcharge_types (id, label, is_active, created_at, updated_at, deleted_at, trigger_condition, rate_id, code) FROM stdin;
+0fe36a6f-70e8-4159-a948-6b19dff33cef Hazardous Cargo t 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N CARGO_FLAG_HAZARDOUS 749af6ff-0513-4722-b687-9be1f092489d HAZARDOUS_CARGO
+07035960-e068-4085-b0b1-046efc453cdb Reefer Cargo t 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N CARGO_FLAG_REEFER 967a69d2-baae-4ea4-acf6-b7071bccabe7 REEFER_CARGO
+0ae24405-f400-4852-979e-bddac65af03f Overweight Cargo t 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N VGM_EXCEEDS_LIMIT 27494c4f-c2a6-4f05-856e-e5a2cbef12ab OVERWEIGHT_CARGO
+f64c939d-bafb-4b81-afe4-4a2583d17aef Shipping Line Fee t 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N SHIPPING_LINE_MAPPED 9fe62c81-9430-472f-af93-5df7302a8eac SHIPPING_LINE_FEE
+2ee34c35-50a4-423f-a547-e8cd225b7100 Consolidation Fee t 2026-06-17 20:08:18.846824+00 2026-06-17 20:08:18.846824+00 \N CONSOLIDATION_ENABLED 1346288d-f479-4bad-b61d-46112e5bc8d7 CONSOLIDATION_FEE
+\.
+
+
+--
+-- Data for Name: tracking_events; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.tracking_events (id, created_at, updated_at, deleted_at, consignment_id, location, status, occurred_at, description) FROM stdin;
+\.
+
+
+--
+-- Data for Name: train_checkpoint_events; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.train_checkpoint_events (id, train_schedule_id, yard_id, sequence_no, kind, occurred_at, note, recorded_by_user_id, created_at, updated_at, deleted_at) FROM stdin;
+\.
+
+
+--
+-- Data for Name: train_composition_removal_logs; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.train_composition_removal_logs (id, schedule_id, booking_id, booking_reference, removed_by_user_id, removed_at, notes, created_at, updated_at, deleted_at) FROM stdin;
+\.
+
+
+--
+-- Data for Name: train_schedule_bookings; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.train_schedule_bookings (id, train_schedule_id, booking_id, created_at, updated_at, deleted_at) FROM stdin;
+ba920a0d-9140-40ea-831d-73019a6daf78 4b45c7f3-4d43-4a6e-b6ac-06bc6b24efef 350eb448-428a-48b3-9629-a5c022895066 2026-06-18 19:12:52.700136+00 2026-06-18 19:12:52.700136+00 \N
+038097a4-c3d0-4abf-80e6-f68cef82f6c3 a9898a8c-ffa8-47c5-9a75-af108e001ee0 ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 2026-06-23 06:15:00.763822+00 2026-06-23 06:15:00.763822+00 \N
+\.
+
+
+--
+-- Data for Name: train_schedules; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.train_schedules (id, train_set_id, origin_station_id, destination_station_id, scheduled_departure_date, scheduled_arrival_date, status, created_at, updated_at, deleted_at, route_id, train_number, direction, actual_departure_at, actual_arrival_at, prepared_by_user_id, checked_by_user_id, max_wagons, booking_window_status) FROM stdin;
+b2974796-95e1-4903-87ea-63cfaa01648d 7b771832-9b35-4cbf-b4f5-2ac0ad3cd3a0 f7ca751e-8202-4daf-a949-1deeb069e3e9 24d06c00-203e-43f5-878c-11b998743033 2026-06-21 08:49:00+00 \N DRAFT 2026-06-16 21:00:29.260193+00 2026-06-17 08:49:58.37388+00 \N b9d78258-408b-4822-9b5b-0b5c0045120e \N DOMESTIC \N \N \N \N 35 CLOSED
+a9898a8c-ffa8-47c5-9a75-af108e001ee0 b1590a02-5379-4475-a95b-98cd8d272245 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 bbd94d0d-8876-4f4e-a330-816db40d8767 2026-06-20 07:07:00+00 \N DRAFT 2026-06-19 07:07:52.521434+00 2026-06-23 06:15:00.763822+00 \N a003d649-1d5e-4c24-b0f6-7308e92118b7 \N EXPORT \N \N \N \N 50 OPEN
+1b2af584-3336-466f-9afc-e9e02da7c35f 9678dda5-48b1-4c82-8ce1-20f5d31d4ce7 bbd94d0d-8876-4f4e-a330-816db40d8767 a09be182-0447-465e-9924-587e556d2648 2026-06-26 06:30:00+00 \N DRAFT 2026-06-17 06:30:58.815342+00 2026-06-18 21:45:40.346415+00 \N d984e1a1-e312-4a68-a490-966843381c1d \N IMPORT \N \N \N \N 50 OPEN
+002cb785-7289-46c5-b26b-02830560a5bb 3bd2cd63-94f6-4972-9b95-b5506af2e1b8 24d06c00-203e-43f5-878c-11b998743033 9701100d-e89f-4f83-91d0-dd49b1511fad 2026-06-17 13:30:00+00 \N DRAFT 2026-06-17 08:30:50.937087+00 2026-06-18 21:45:40.507139+00 \N 1bd707b7-cb14-4a39-b2e3-52b90ebeb7f6 \N DOMESTIC \N \N \N \N 50 OPEN
+73d3d07d-9b6f-4f6a-a7cb-d19ca9da5e3e 9aa60cc1-59fd-4b26-a786-3f8f689a4181 48e11c55-e851-4fd5-a417-83e0ebc02f38 d756db2f-057a-4d57-acd5-633fcc6c4244 2026-06-20 08:43:00+00 \N DRAFT 2026-06-17 08:43:39.728228+00 2026-06-18 21:45:40.628063+00 \N c0826199-58bb-4588-ab89-b93c7d28327f \N EXPORT \N \N \N \N 50 OPEN
+abbf0e0f-175b-47dc-b148-dec1ec2faa82 25f613ee-d5eb-4f40-8b53-3c79777b290c 17964b5f-4b99-4f0e-b855-1aa5d4237934 bbd94d0d-8876-4f4e-a330-816db40d8767 2026-06-18 10:38:00+00 \N DRAFT 2026-06-18 10:38:38.610838+00 2026-06-18 21:45:40.754611+00 \N 109e9b99-6b0e-48d7-8745-d5e5590f3e8b \N EXPORT \N \N \N \N 50 OPEN
+4b45c7f3-4d43-4a6e-b6ac-06bc6b24efef 2e3b3d1e-fd91-45ff-82af-e53302fa2269 17964b5f-4b99-4f0e-b855-1aa5d4237934 1acf9b6a-5a6e-4022-b194-59a6f638146e 2026-06-18 11:59:00+00 \N DRAFT 2026-06-18 12:00:34.899437+00 2026-06-18 21:45:40.872064+00 \N 1d240cd7-70e9-407d-bb26-127469748eff \N EXPORT \N \N \N \N 50 OPEN
+e147a2c8-4e80-4583-a03f-60f76727b156 40b5d17e-df9e-4a0a-b83d-0593a0efd922 d756db2f-057a-4d57-acd5-633fcc6c4244 f7ca751e-8202-4daf-a949-1deeb069e3e9 2026-06-20 13:40:00+00 \N DRAFT 2026-06-18 13:40:57.149558+00 2026-06-18 21:45:41.11262+00 \N f09093c2-a88c-4327-814d-5b09c1362960 \N DOMESTIC \N \N \N \N 50 OPEN
+66633a61-6bf6-45c6-8ea1-68716025fd53 f4526fb2-a7f1-4498-b981-e29915f90349 17964b5f-4b99-4f0e-b855-1aa5d4237934 1acf9b6a-5a6e-4022-b194-59a6f638146e 2026-06-20 13:18:00+00 \N DRAFT 2026-06-19 13:18:11.40286+00 2026-06-19 13:18:11.40286+00 \N 3c0c0124-7234-46e6-beb4-362dd7a1160d \N EXPORT \N \N \N \N 50 OPEN
+\.
+
+
+--
+-- Data for Name: train_scheduling_global_rules; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.train_scheduling_global_rules (id, max_train_length_meters, max_train_weight_tons, max_wagons_per_train, max_20ft_container_weight_tons, max_20ft_pair_weight_diff_tons, created_at, updated_at, deleted_at) FROM stdin;
+7be1ed09-6371-4bff-b5fc-05edec7c5fa2 760.00 3500.000 53 30.000 10.000 2026-06-16 17:00:40.976144+00 2026-06-16 17:00:40.976144+00 \N
+\.
+
+
+--
+-- Data for Name: train_set_wagons; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.train_set_wagons (id, train_set_id, wagon_type_id, sequence_no, capacity_tons, length_meters, assigned_weight_tons, created_at, updated_at, deleted_at, physical_wagon_id, status) FROM stdin;
+25116ac3-5ea3-4469-941a-19840bc81933 b1590a02-5379-4475-a95b-98cd8d272245 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 1 70.000 14.000 20.000 2026-06-23 06:15:00.763822+00 2026-06-23 06:15:00.763822+00 \N f90828c5-ae89-4779-aa4f-6e474087621e RESERVED
+\.
+
+
+--
+-- Data for Name: train_sets; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.train_sets (id, locomotive_id, total_weight_tons, total_length_meters, wagon_count, status, created_at, updated_at, deleted_at) FROM stdin;
+7b771832-9b35-4cbf-b4f5-2ac0ad3cd3a0 41a3b0ff-c596-4749-a813-3275c30e670b 0.000 0.000 0 DRAFT 2026-06-16 21:00:29.260193+00 2026-06-16 21:00:29.260193+00 \N
+9678dda5-48b1-4c82-8ce1-20f5d31d4ce7 bf126e10-441e-44e3-83c1-9189e7a81d8d 0.000 0.000 0 DRAFT 2026-06-17 06:30:58.815342+00 2026-06-17 06:30:58.815342+00 \N
+3bd2cd63-94f6-4972-9b95-b5506af2e1b8 58df686a-5839-419b-b97e-b53e9d7ac169 0.000 0.000 0 DRAFT 2026-06-17 08:30:50.937087+00 2026-06-17 08:30:50.937087+00 \N
+9aa60cc1-59fd-4b26-a786-3f8f689a4181 7c428bda-9a49-4eba-84bc-e7be6c85c200 0.000 0.000 0 DRAFT 2026-06-17 08:43:39.728228+00 2026-06-17 08:43:39.728228+00 \N
+25f613ee-d5eb-4f40-8b53-3c79777b290c ee9556be-4928-4a58-8a01-47223ebeeb88 0.000 0.000 0 DRAFT 2026-06-18 10:38:38.610838+00 2026-06-18 10:38:38.610838+00 \N
+2e3b3d1e-fd91-45ff-82af-e53302fa2269 ee9556be-4928-4a58-8a01-47223ebeeb88 0.000 0.000 0 DRAFT 2026-06-18 12:00:34.899437+00 2026-06-18 12:00:34.899437+00 \N
+40b5d17e-df9e-4a0a-b83d-0593a0efd922 73edee75-3261-4976-addf-506d947cbdcc 0.000 0.000 0 DRAFT 2026-06-18 13:40:57.149558+00 2026-06-18 13:40:57.149558+00 \N
+f4526fb2-a7f1-4498-b981-e29915f90349 6d0c060d-2e0d-40fa-b5ae-1293bd33be38 0.000 0.000 0 DRAFT 2026-06-19 13:18:11.40286+00 2026-06-19 13:18:11.40286+00 \N
+b1590a02-5379-4475-a95b-98cd8d272245 421ee2ea-7e47-4379-b78c-dcea7401dc6a 20.000 14.000 1 ASSIGNED 2026-06-19 07:07:52.521434+00 2026-06-23 06:15:00.763822+00 \N
+\.
+
+
+--
+-- Data for Name: trains; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.trains (id, code, capacity_tons, status, notes, created_at, updated_at, deleted_at, train_number, train_name, route_id, origin_station_id, destination_station_id, locomotive_number, remarks, departure_time, arrival_time) FROM stdin;
+\.
+
+
+--
+-- Data for Name: vehicles; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.vehicles (id, plate_number, registration_number, vehicle_type, manufacturer, model, year, fuel_type, status, description, created_at, updated_at, deleted_at, capacity) FROM stdin;
+\.
+
+
+--
+-- Data for Name: wagon_allocation_bulk_loads; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.wagon_allocation_bulk_loads (id, wagon_booking_allocation_id, booking_id, cargo_type_id, cargo_description, pricing_unit, quantity, weight_tons, truck_plate_number, created_at, updated_at, deleted_at) FROM stdin;
+\.
+
+
+--
+-- Data for Name: wagon_allocation_container_items; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.wagon_allocation_container_items (id, wagon_booking_allocation_id, booking_container_id, container_id, container_number, container_type_id, position_on_wagon, seal_number, chassis_number, gross_weight_tons, created_at, updated_at, deleted_at) FROM stdin;
+cd7c93b3-ff94-4e56-919d-4a5e1352fc23 5a58d0d5-1b74-420e-a5ac-2769d47afaf5 547d51fd-1b94-4f25-873b-3c9ff87ca747 \N TBD-BK-2026-000039-1 b76986fe-8ab5-420b-afb0-7fb4bbe270ef 1 \N \N 20.000 2026-06-23 06:15:00.763822+00 2026-06-23 06:15:00.763822+00 \N
+\.
+
+
+--
+-- Data for Name: wagon_booking_allocations; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.wagon_booking_allocations (id, train_set_wagon_id, booking_id, allocated_weight_tons, created_at, updated_at, deleted_at, load_type, status, confirmed_at, confirmed_by_user_id) FROM stdin;
+5a58d0d5-1b74-420e-a5ac-2769d47afaf5 25116ac3-5ea3-4469-941a-19840bc81933 ae8f06a4-6eb7-4c71-9d91-1d75b06050a4 20.000 2026-06-23 06:15:00.763822+00 2026-06-23 06:15:00.763822+00 \N CONTAINER PLANNED \N \N
+\.
+
+
+--
+-- Data for Name: wagon_types; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.wagon_types (id, code, name, capacity_tons, length_meters, max_wagons_per_train, supported_load_types, is_active, created_at, updated_at, deleted_at, equated_length_m, tare_weight_tons, supports_container, max_container_gross_t) FROM stdin;
+59af6d56-b7a4-4ef0-8fea-81feab412758 PW2 Box wagon 70.000 17.066 37 {BULK,GENERAL_CARGO,BAGGED_CARGO,BOXED_CARGO} t 2026-06-16 17:00:40.976144+00 2026-06-19 13:19:43.231712+00 \N 12.000 20.000 f \N
+eec7f9e2-6458-44a9-9bba-05c252ab6727 CW4 Gondola wagon covered 70.000 13.976 53 {CONTAINER} t 2026-06-16 17:00:40.976144+00 2026-06-19 13:19:43.231712+00 \N 1.300 22.000 f \N
+ad824b15-84ea-4751-8f3d-d6220ef1a2fb CW3 Gondola wagon 70.000 13.976 37 {BULK,COAL,ORE} t 2026-06-16 17:00:40.976144+00 2026-06-19 13:19:43.231712+00 \N 13.000 20.000 f \N
+814a3748-b220-4904-95d2-1c7c4344d0a4 KW2 Hopper wagon covered 69.000 16.466 37 {BULK,GRAIN} t 2026-06-16 17:00:40.976144+00 2026-06-19 13:19:43.231712+00 \N 12.000 22.000 f \N
+0ffc0e6c-1a21-4787-bad8-bee2f99ec217 KW3 Hopper wagon 70.000 14.400 37 {BULK,COAL} t 2026-06-16 17:00:40.976144+00 2026-06-19 13:19:43.231712+00 \N \N 20.000 f \N
+1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 NW5 Flat wagon container 70.000 14.000 53 {CONTAINER} t 2026-06-16 17:00:40.976144+00 2026-06-19 13:19:43.231712+00 \N 14.000 22.000 t 70.000
+f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 NW7 Double deck sedan wagon 22.000 26.066 \N {vehicles,sedan} t 2026-06-16 17:00:40.976144+00 2026-06-18 21:45:39.385748+00 \N \N 18.000 f \N
+011a3c2f-39c7-48fe-9f28-5e6054b7ae3b GW2 Tank wagon 70.000 12.228 37 {liquid,fuel} t 2026-06-16 17:00:40.976144+00 2026-06-18 21:45:39.385748+00 \N \N 25.000 f \N
+ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 NW6 Flat wagon (long cargo) 70.000 18.560 \N {"long cargo"} t 2026-06-16 17:00:40.976144+00 2026-06-18 21:45:39.385748+00 \N \N 22.000 f \N
+64738fc6-5846-462e-9b62-99b83f5ebf83 BW1 Refrigerated wagon 38.000 21.996 \N {"refrigerated cargo"} t 2026-06-16 17:00:40.976144+00 2026-06-18 21:45:39.385748+00 \N \N 24.000 f \N
+\.
+
+
+--
+-- Data for Name: wagons; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.wagons (id, wagon_number, wagon_type_id, train_id, sequence_number, tare_weight, max_payload_weight, notes, created_at, updated_at, deleted_at, train_set_wagon_id, current_train_schedule_id, current_yard_id, status, current_location_yard_id) FROM stdin;
+a9b38dc1-a363-4e02-837a-58e86c0ec7b1 CW3-0009 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 22:01:09.108008+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba AVAILABLE \N
+91581937-a451-41cb-8520-f926e954e10e NW5-0039 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:56:27.739926+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba AVAILABLE \N
+e8b3d3ae-8f15-4476-a1aa-b2737cdf3f42 CW4-0011 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:00:14.195473+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+df26a37f-b5be-4c4e-b9a2-ba848ac4542c CW3-0031 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:02:58.597513+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+f90828c5-ae89-4779-aa4f-6e474087621e NW5-0048 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-23 06:15:00.763822+00 \N 25116ac3-5ea3-4469-941a-19840bc81933 a9898a8c-ffa8-47c5-9a75-af108e001ee0 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 ASSIGNED \N
+3c9355b0-c5f4-45b8-96e4-e61c448c3ff8 ER0001 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8887d30b-43ad-4516-aa1b-2fc8538c685c ER0002 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5cd1f3fe-1c8f-4f22-a3c8-c0abe61021d4 ER0003 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3b6fd63d-0032-44fc-8eb8-9ddfef5e5fd8 ER0004 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8a67b53f-b929-4869-a6fd-2bad8c084204 ER0005 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1a891473-5b2d-479e-96a4-a719835834a0 ER0006 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b2e41d0c-39a1-494d-9bad-62de5c6445d7 ER0007 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4c5f15bc-4687-44d1-b01c-d9fffdf80b52 ER0008 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e568e0c9-b528-4666-ba2e-6f5b44b4700e ER0009 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8289633b-b0ef-4415-a6d8-21315b2378cd ER0010 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6deb0c5f-aef2-4713-bd30-2e698b0e5cc8 ER0011 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ffc1a491-b9fb-4c05-bba3-cdda1bb60154 ER0012 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+16cadfb5-ec1a-4f42-a512-a85cedf515a0 ER0013 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5314b85d-af2a-43a0-9011-29cdba1798cf ER0014 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ef1402c0-68e2-4c1e-a170-284643f1b146 ER0015 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+fbc519a0-f35f-4716-ba4f-6b1268687485 ER0016 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+280e9033-b575-4d8c-9e81-b35b79452f2a ER0017 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+da715880-ab4e-414c-a9a9-82dd8089d774 ER0018 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+453746c6-e337-4441-9942-60c7fa7a0ecd ER0019 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+94b53e81-558f-49bb-947e-9994c6a696c9 ER0020 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+966efc8e-78b6-4c25-b010-e71b7230a317 ER0021 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+350ca3f5-e8e0-49d5-811c-a11b275002ee ER0022 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+74afcece-191c-4098-abde-f7acf363de1c ER0023 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f72fec9c-0f58-4852-bddd-7e484464c9da ER0024 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8e7edc5b-f311-4cb5-88c5-38269d6b74c5 NW5-0041 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 22:02:12.076248+00 \N \N \N 17964b5f-4b99-4f0e-b855-1aa5d4237934 AVAILABLE \N
+f511ab3d-1ca1-4904-81e8-443917a35114 BW1-0016 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:59:32.068369+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+ac204013-f61b-4bad-9dbb-0bded0f71562 NW5-0047 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:41:32.157317+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+b4b04a60-f465-4738-882f-2760662b75f0 ER0025 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+dfe40430-4047-4322-9648-d84b2f699236 ER0026 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b7ef8487-13c4-49be-8d1e-d889b4b70c13 ER0027 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e2d27f4b-5685-4c8e-9a75-dbf86f5be9ec ER0028 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+92567e13-ffe7-4ad1-ab99-556cc7541d51 ER0029 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b23ca057-190e-4235-bf27-31c7711af470 ER0030 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4bf141d5-30a3-49e3-b381-e5f5c558e659 ER0031 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3211cb59-7208-4d5a-ac7c-631af2df067e ER0032 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7ad277c9-3ef2-4bd8-85fb-0acf5b09d573 ER0033 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bd16da7a-2526-401c-a222-ab4b18473140 ER0034 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2e0803c4-f2bc-4e74-9cbe-f113335027d6 ER0035 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+121d55bd-2f63-46bd-8d65-47ad648caa03 ER0036 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+25792343-5c3e-4fcd-894f-f2846a3345a8 ER0037 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4b6e13e2-ee04-481b-941b-821737e14180 ER0038 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4a4cd7ab-0613-47e4-9a6e-c7680c13e4e6 ER0039 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+af8a98d8-f9e2-4468-8182-8cfdc80904c9 ER0040 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c467c00d-ac45-4050-bda5-7c1cb6105d39 ER0041 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+68e4b839-d20d-4f9a-af86-0385f3ad71c6 ER0042 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ad61de17-6891-4fbc-945d-c1b8d7349475 ER0043 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+21449b33-e8fb-4b4b-a35c-050d0435dcbc ER0044 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0babdfb5-a72e-4461-8cc8-eb58dcb4ee4f ER0045 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1b87a99d-46fa-46dc-8ab7-6a69d00ad56d ER0046 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+aeada8b8-1b12-4920-820e-7de90d98d970 ER0047 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a8893e69-a4ae-4c33-94ca-cc49396006d6 ER0048 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+99a47651-0081-47c1-a131-fffa665bc07a ER0049 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1ace7706-237f-4674-af62-13b79a5467e1 ER0050 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5a9b1580-190b-4ad3-b56d-b079c0aab696 ER0051 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f175b486-1776-4969-b2dd-a460fec7d0d6 ER0052 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+55b50a2e-78af-4cac-9760-fe5c240406bf ER0053 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f476f910-4a8a-40b8-8ee3-862621779848 ER0054 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+68b162a2-9be6-4fa5-829c-cceea1740a6f ER0055 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c47c9148-a4fe-46af-9084-eedabd450078 ER0056 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+611823ba-01a7-4aff-913f-a2fb2db10d6c ER0057 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b918ee92-7e4a-4f76-a178-8693fcf3f974 ER0058 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8682da20-a457-4fe9-9121-7f971ee745bc ER0059 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+aafee37b-a6cc-4685-bc0a-e60a3a63761c ER0060 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4a14cc01-79b2-49b0-bd6f-015a3b3bbe51 ER0061 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+df033946-773b-4f26-ab51-be04a95251fd ER0062 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0a34d38e-88ec-4adb-a6f8-dc2432d4640a ER0063 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+cc0b844a-51aa-4f5d-9367-a0f31e61a8fe ER0064 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c9d7223d-7f96-4eb2-ae8f-c9d26dbf7d98 ER0065 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a184255a-35ce-47cf-ba3f-cf0ad5e012a7 ER0066 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0d78a793-43ac-46e2-a21b-9aee9c82aaec ER0067 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b213de47-40ea-44df-944e-817fa942d38b ER0068 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c3aed10f-7c76-4a28-b781-0acca74d079a ER0069 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+31ffff19-a38f-4715-83e8-858dbc8c2c81 ER0070 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+eeadcf14-bd16-4891-88da-18d5f7180a70 ER0071 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d543396d-0ed5-4676-a821-9c32d75325d0 ER0072 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f5d5df13-2b33-46d3-b97d-b6ea74c3b350 ER0073 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9402d7ce-f9e8-4ae8-832b-fd3309025236 ER0074 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3d64b949-2518-46b8-9047-3efc3cd9de2d ER0075 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3188319c-b341-4d43-8017-7cb8a4cb3db7 ER0076 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0175dfae-2271-4dd7-bd8b-7810d3ee8038 ER0077 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d362e9a1-09c2-44d4-9885-d4898fc53210 ER0078 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e45d192e-7e93-4a24-9c11-8a95c9abfeda ER0079 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4dfae6df-3883-4127-beea-44cd93118152 ER0080 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4f306979-a9ba-405b-8ac2-f3f45ed24b59 ER0081 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ea87ea13-2bb0-4fe2-aa7e-8b52bb2e40cb ER0082 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c05610e2-adda-4ca4-9b3e-54257dfa913d ER0083 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4627e86b-38d1-45fe-aa7b-0224745a4257 ER0084 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2c549790-aba3-4ed2-843a-eb08243234b9 ER0085 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+eb20d328-cb09-49de-86cd-701e6b1c1f27 ER0086 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6e7459ab-9e28-4c82-8357-46722824549d ER0087 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+45135714-ba70-49fd-88e6-0cc7d1960f66 ER0088 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0af87971-4152-40d0-97af-cab991f722d0 ER0089 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0467ab59-f8cd-4db1-b4ac-15073f155a83 ER0090 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+71582b84-2c91-4068-a5ce-3b8e0798df17 ER0091 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f6c2ebc2-5680-401b-bace-791761cae898 ER0092 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4526d19f-2b31-4c50-a34d-8811fcae26e0 ER0093 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a90b02c2-11cb-4c6e-8088-4579d6ac558c ER0094 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a8face42-d63e-4e87-a47e-fd123db83ee2 ER0095 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+94cdb34a-c8d3-4aed-a8a9-7a0fe15dcaf9 ER0096 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+93d0b39c-6674-4109-9e7b-8bfe2e0732a6 ER0097 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4912d1bb-bb15-490c-a211-58bc1babd174 ER0098 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+901dcde0-03aa-4785-8520-16219500ac2a ER0099 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e095b477-5cf4-43d4-bb9a-acd83f401290 ER0100 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+542ccb0e-4195-4bf9-8549-ead684fc1d0c ER0101 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+fb98fd64-6146-4ad6-ab87-46422a097708 ER0102 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+fd9baddc-c712-4eaa-8a36-33239ba753f2 ER0103 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2184f1d9-4114-49e3-92d3-0b5258ce7793 ER0104 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3d9e1cfb-be47-4d59-ac26-744cfa4413b3 ER0105 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+fdca1b18-c050-43f8-9a3b-49bcd7c9e2d4 ER0106 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c23d6f27-ab73-473f-b269-3a94ef54a945 ER0107 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1438f0a9-efc9-4b3e-a4cb-19717580c794 ER0108 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c0dc5b4c-fd0e-4baf-bcb9-e4b38811e959 ER0109 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d1c6b2f9-df71-46b4-bfe6-c9f0be76afcf ER0110 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bb93acbe-06de-44cc-975f-2f6228a0e173 ER0111 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2e602ab4-1394-49b6-a34a-c01356e161b1 ER0112 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f5f85005-fdf2-436d-9c79-d6b4d587148b ER0113 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+116eb0e6-6820-4e9f-a52c-a7c00ab5bac7 ER0114 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+fa375be8-245d-4094-9bcd-ef7951bc607e ER0115 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b743c43f-81e0-4ed5-ad2b-e839e3ec11f5 ER0116 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3dafbbd1-d248-4f4e-95a4-fa7f57a74d20 ER0117 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bf6b4800-a668-40ea-bf26-c8c908367f43 ER0118 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b1237356-e85e-4b65-ae73-3ad3b731a10c ER0119 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6cd8eef4-521d-4768-980f-e3e86c657020 ER0120 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bc20772e-3566-43f9-87e1-b73a5ab5f650 ER0121 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+211cee7b-2cf6-4b4e-b74c-005f1ff68b35 ER0122 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5367bfc7-b077-4818-8025-df0a14c3917a ER0123 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6fbbffd1-1f27-43a6-8dbc-d981493c3d09 ER0124 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5a9b9841-f72d-4049-a111-b449622545f8 ER0125 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c68e3904-acea-40db-b060-6ad3a28c55ee ER0126 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+fad77d05-7c05-478a-9827-6637b0192f03 ER0127 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c7d99a38-c905-4bf9-88d0-b9a476c2f4f4 ER0128 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+30227f1b-1ab6-42de-9c8e-fb134ec5d2c4 ER0129 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1a788c9f-b7d6-4a3a-bee2-beaa7ca12145 ER0130 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+aa0be9f7-c351-4a18-b7be-2c77c8a5730c ER0131 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1db60e6f-29ff-45be-ab0c-8d28a4f0402b ER0132 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e7796d92-194d-437e-bcb1-8f6d16a9d849 ER0133 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f507363c-5e5a-40eb-934d-4911c2c08a02 ER0134 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7d815599-af11-47a7-bfa4-fedfc8690291 ER0135 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4cd38a1d-49fa-4e7a-8d4e-e901c2082ecc ER0136 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b272de07-e29e-404f-852d-a8ef573f0009 ER0137 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+99e5b246-eb74-40cd-bdcd-ff3fec7a6de5 ER0138 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f183953a-b403-4332-865a-fc9416bc0a6a ER0139 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2c49b729-30d4-4781-9835-3c7188f0fad3 ER0140 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+031d5521-d73b-405b-a318-b556e1fd5d67 ER0141 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ec468c4a-c94e-4bfe-8696-e77b12dfdcb8 ER0142 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+42af0bd9-1116-4c57-9978-ae44a7c22d8b ER0143 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a49d87d9-2710-46f4-b17a-56ca0f214ff0 ER0144 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7b40c2dc-a371-4171-bc50-c45e86522cff ER0145 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+738d7225-f2f5-42d9-a45a-9092ad8c793d ER0146 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b730bfd4-8ceb-414c-b5d2-556103b5facd ER0147 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3753b8e9-1237-4cb7-a879-53ef900bb9b1 ER0148 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ed129b6c-d03f-476a-ad0f-0685a4ca6210 ER0149 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+01643469-4882-4eac-9624-a5143558c60a ER0150 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+88e7e588-4c7f-4b72-9440-ab63ad3863ae ER0151 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+64110ccd-fe66-4010-89f4-ef5c07d969c4 ER0152 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bdb70eb7-4cb2-42f9-b434-9b82adaf7faa ER0153 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+68506590-5b5b-4202-a490-1a949f65125f ER0154 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+85df5363-a1ff-41a8-b034-67ab7485eca4 ER0155 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3f69d2ef-10e6-44dc-b6b4-79bc807cdcff ER0156 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1ab443bc-6f01-4a0c-b03c-4ad42905091c ER0157 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b37c578d-073c-4941-8506-72205cf0456d ER0158 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+57096b76-c633-4d5d-bc8a-0180d5351b91 ER0159 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6d67013b-4bde-4bb6-94bf-1103226567b3 ER0160 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f29a0c8b-e9ea-4bb5-a5e1-c23317c8087b ER0161 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+da7baeab-892a-41f8-9da2-d30562763543 ER0162 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b70871e9-cab8-4f8b-97c3-143ff3486331 ER0163 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b92a7372-e8bb-4b85-bd4a-5adba3f1a316 ER0164 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+10494fd9-8e48-47a9-b916-33effbc5dbf0 ER0165 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b59b95be-323e-4333-884e-6986b30bd92b ER0166 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+100fc312-eae7-42c0-a213-b9b6e764d20a ER0167 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+90ec0489-e9b6-4652-a664-d521bf5a0965 ER0168 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bb345124-b4ff-417f-a627-6fb7ee8d75b6 ER0169 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b8d1af63-fac8-45e9-93e1-4e33a9e31aac ER0170 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+fd0308c0-4230-4fd6-ae9b-2a8faacb80f6 ER0171 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5c26f5d7-d5e4-48a1-bf23-eabeb40b664e ER0172 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+616f91d1-74e1-4eb9-b8fb-3de98451d8e9 ER0173 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f285eb45-fbb5-4bd2-b372-2b5e298226f2 ER0174 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0498c33d-86be-43b6-8d48-6597c66c3eda ER0175 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+cafda71e-8650-4a7f-b39f-f30a091b3ecb ER0176 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f9ffb0a5-f94b-47fc-b3ba-76840050537d ER0177 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2120b0fb-da20-40b9-8aa4-3b24c1ef8d85 ER0178 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d01c59fc-2101-432d-87f4-5a52c3a6fbf5 ER0179 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9222a8d8-2eab-45a4-8d8b-963b4f58dd45 ER0180 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f09c1205-7816-47f8-8214-707fe51fbc33 ER0181 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9da2937a-6a4a-4f10-8b63-92661fc67d5b ER0182 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1638dcae-0596-459e-ac28-5760481a08a2 ER0183 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+47777803-58f1-482d-8956-d599a881bfde ER0184 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+899a3be9-4e60-4b13-98be-6d09eda24f4d ER0185 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ad006da1-43e0-410b-a737-9dbc6ac763e6 ER0186 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6c61d774-03a0-43a1-a659-e211a8203064 ER0187 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+937d39b4-8c59-4dc0-bd22-3970c38fc917 ER0188 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c4abc01a-44a0-4050-84b7-604606135c3c ER0189 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e50221a6-7b7c-4111-9d62-c95c1c947379 ER0190 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d05e4a5c-0c43-4d34-815c-912a99e4cf6c ER0191 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c55f020f-db44-4d5c-bcc7-a1e4033f6667 ER0192 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3bc16d9b-c0b1-46f2-bf60-828a904aa9d1 ER0193 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2c162640-f268-4995-887b-9415c3ceaa5d ER0194 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b4289d13-d21e-4c2c-8d5c-b8090fbb04a6 ER0195 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+43bdbc12-2b8b-4b94-94d9-fa29b561ea21 ER0196 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d5da9eec-fd1e-46dc-991d-4f164136a91b ER0197 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+16dbdbfe-c95b-415b-abde-9a02175f74cb ER0198 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f9307650-be02-4d8d-bffc-a9584dfe8e4e ER0199 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c1cdd7bf-d3ff-465c-803a-962702952f4b ER0200 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c883c1cf-5182-442d-865b-47da1ecc2e93 ER0201 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+fda3d2c1-583e-4dd7-a6e1-5e2bcb61e82c ER0202 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+36d7bd2f-7e77-41c6-a642-ca42ec437efd ER0203 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f8ef73ac-6d0c-4ebe-ba3b-2f10d312e98e ER0204 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+03bd77c0-5970-421c-837f-fd87f4e19f87 ER0205 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2033de82-eb6f-406c-95f9-61ce447dbdad ER0206 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1269885c-4e85-442f-a755-3c04585dd840 ER0207 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+89b7ef92-b854-4f1e-a392-2c68a1d404e2 ER0208 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+37184cad-3379-4d2c-be90-c8b07a20fb70 ER0209 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9d79e557-8ba3-468b-9673-52ee5bf409fd ER0210 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a54f26de-8f8f-4fac-9bd3-8bbd973fe983 ER0211 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+69ce0989-bd1f-4714-8dfd-0fa0c2081e61 ER0212 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+16800b62-9ec2-4b1e-b8bf-a86807f2ac93 ER0213 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+998a1e7c-3e6e-4eb2-8fde-f62485e74ced ER0214 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+89f5cedf-c777-4608-959b-c48d92d0d0c5 ER0215 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a64ca684-9dc8-4222-a6a5-c08e2ba8b0ab ER0216 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+53496794-9400-47ab-81b6-bd3a04811197 ER0217 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+cb714fee-0da8-482b-a859-2967a48b4da2 ER0218 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7c66e8ed-48bb-404d-a384-3c59668bb167 ER0219 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5e9dbe39-2cf2-4f36-986c-7707b7ffabcb ER0220 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 25.20 70.00 Seeded Ethio-Djibouti Railway PW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0753431d-d9f6-44f1-a47a-66ae0bb18ced ER0221 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+afeb959e-c982-4516-8165-856f131daa24 ER0222 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a8c1e5c2-36d7-433f-965c-22af4d274243 ER0223 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+71b96923-8884-4377-a6ae-921d058bcbb4 ER0224 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bcde3fc2-ddc8-4037-aa5c-c5539f056186 ER0225 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+11eb173d-c931-4525-b44f-1f3fb289ce64 ER0226 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ed7fdc8b-ef3d-4eca-b478-942fc1981e46 ER0227 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7b7f8d4b-1516-44d8-9eb5-dd8f7251a187 ER0228 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2d8e6d9a-b9ae-40ef-8f1e-dce6aee9be9e ER0229 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9bd17216-a1f3-434f-ad95-1439fcf18fc7 ER0230 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d4e0782c-ac87-4747-852c-a3059f208fd4 ER0231 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+af47cf7a-27bd-4390-86b6-31f5fc30eaf9 ER0232 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f02ae72b-2ad4-4d66-8fe0-48bd587996e5 ER0233 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4de98ae1-a774-4013-877c-820a3a4a972a ER0234 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d575239f-6e1b-472f-9a94-dc02303eb269 ER0235 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+60a425a5-11bc-4940-99a4-305f22cd041d ER0236 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6731cd35-aa8b-4ad9-9422-26a7cc2fbd81 ER0237 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6f7c364b-a273-4cec-b77c-33d0150784ad ER0238 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+be8c14d9-3d11-4ada-b3c4-26f00c733f83 ER0239 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d7f202c1-3c50-42d6-bfab-d261f69a8111 ER0240 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b6c7ac1b-d5a1-4431-ba99-ebf5ebe3ede2 ER0241 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8379518b-0302-4c0a-badf-80ba0d0ca803 ER0242 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2dc44cd5-a079-41dd-8fe7-763407371243 ER0243 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9e5e6d8e-a979-4c47-ad71-0a9872105a19 ER0244 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3ef60cad-7feb-4ad5-a80f-e0817692c9b7 ER0245 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b5381c3e-d549-4f2c-b0a9-ca011f94fb06 ER0246 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+42011221-18f2-445c-b025-c9fecaca79e3 ER0247 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d9f0bc05-b836-4e9b-8646-fc652f73b8ab ER0248 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5b5013a9-380f-4cab-bd77-3c2a5743b5d4 ER0249 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a10b5a08-d7f4-47a3-ad56-36e402dc9bda ER0250 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+978c0f7d-a557-4bd1-80b7-d3bff894cc38 ER0251 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ab5108a5-1b9c-4a9a-b15d-f07bb7fa7bcf ER0252 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+afac8612-d7cd-4956-b871-5466f9b82c17 ER0253 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5d8899b6-b12a-4680-8ac9-3b5dee93ba2b ER0254 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+86060a53-c391-42af-843d-e993f2361900 ER0255 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b72ec2d8-07fa-413c-b18a-ade4c77271e9 ER0256 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d6365b54-1065-4898-b1f4-bdb0e7634bc0 ER0257 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4b39e007-eb40-420b-aba5-dcc8ea1f9c80 ER0258 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+30c235df-1694-40a6-af77-a8c34fd832c5 ER0259 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+362df470-840f-4c28-8fa6-8aa83a30d964 ER0260 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+90f61db9-0ef0-4ac9-9d97-024928c425b4 ER0261 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9efa2bb2-f8a8-43a6-8d95-b11ed4b35d1f ER0262 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4973c959-1388-463c-a59b-8f22154880dc ER0263 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+eea5f936-7165-4504-8e50-79a6c59ee547 ER0264 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d30e3ae1-c70f-4e6f-a92a-9dd69493591e ER0265 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+56a720ae-14c7-421b-b4c0-63a0a3034d57 ER0266 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+32a2d1c7-34ef-4629-8114-bedd370bb9f7 ER0267 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5fd99db1-cd37-4171-af77-9933f8ba899e ER0268 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bb0628bc-037f-4072-8bfe-896f35a1209d ER0269 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5abc7ed5-4a3f-40db-9616-f7ea56a241e9 ER0270 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6bf6edf6-995c-40a1-9b4b-d4b12c2a2722 ER0271 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+73c6cd7d-afec-4146-a63a-f193ad8e24fd ER0272 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bec1cd43-3c6f-4971-a11e-19f6d495c59d ER0273 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+91e51d54-9885-4ce2-9461-c89f45b0ef26 ER0274 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5857bb13-cda6-4771-b805-7d3161294677 ER0275 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d8923d89-be32-4bb3-8cea-1f1013206ef5 ER0276 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bf17f926-28fc-42f1-8f04-764afb8bb483 ER0277 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+93027699-6c81-4ca4-ad79-fa45345e83c4 ER0278 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8f3ae122-7a4c-486c-8220-4b7502d93fe1 ER0279 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b64523b5-0ab0-4cce-a94b-85ed798df884 ER0280 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+14d54c62-2248-442f-ad55-7c8cf0aa50cb ER0281 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2e041b92-ec98-4d71-bd4d-647cf2b7d836 ER0282 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5b8ffa54-2b1c-4685-a038-ca856c6d1cdd ER0283 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c60dc8cf-381b-4948-acf2-a0fe4a919cd1 ER0284 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c9f9a812-390b-4809-b83f-82565a299bdb ER0285 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f5202510-69d9-4def-bb54-1fa597c14ac7 ER0286 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b1d45b66-d9f9-4ffc-8497-92b231a06517 ER0287 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2158dc31-deef-42a9-abe7-50114934a67f ER0288 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+65dae985-ca37-426a-bdb5-1da32342a079 ER0289 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+fc504cda-cd28-4d0a-a92f-1194064efa84 ER0290 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+707e1f76-ee7a-4742-accc-6b8e4cbf1c3c ER0291 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+08ccaa31-da20-4bf6-8b88-8c9789a28eae ER0292 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+37ad7404-4fb8-49dd-bc16-a8457b46cddb ER0293 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1f4f5aba-df9a-48d5-861b-848c25d1c0ef ER0294 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7c7eb5bb-1c96-497c-abf2-17416097eae6 ER0295 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b64874ec-ef85-4408-b356-7b18a7640aa1 ER0296 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f074fbf5-7d50-49f1-be06-0dc97c40dd79 ER0297 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+445847dd-e264-4990-81b3-84b8e350980a ER0298 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+68bd5e41-7fcc-4696-8918-1a1fcc8abd5e ER0299 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3905edd9-100e-45d3-9158-07a123811a5b ER0300 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0c4808fc-4165-49a6-94c7-b10980a45c9d ER0301 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ad755828-4715-445c-af98-ee9f93bf17f1 ER0302 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d4b8a07e-cc91-475b-b251-a626f64065e5 ER0303 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2ff09454-72ce-427e-b440-888f8b92a369 ER0304 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8a97a11d-4e9c-4e85-83dd-642fb558b023 ER0305 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8818d597-1511-43d2-b79e-0c68ac1de367 ER0306 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+71ca28f4-5a04-4297-9f1d-09dd3196f34c ER0307 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0f3cc9c1-6f34-4422-b0a3-b4b1bf5a79d6 ER0308 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1213186b-023c-4d53-b343-402d7f6a1234 ER0309 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c39b2432-e910-44e9-bb33-b3b282a73d7b ER0310 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6b02baf3-141e-4ebe-b9b6-e5faca988a4b ER0311 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f2f4fc2b-d12a-4c19-8ae6-87ef738e01cf ER0312 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8502192d-7441-49ad-9446-747a710f8018 ER0313 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4ae5ecd9-510f-48f2-8fe6-da36cd28ad61 ER0314 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c787519e-0aca-49a7-8f0f-8555ff276074 ER0315 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+28fd163a-c639-4ab2-b3a5-33d2229faedd ER0316 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+762ebb45-c253-42cf-8a28-9462b3944834 ER0317 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1fafcc06-9381-4fe7-91aa-be9060a96a09 ER0318 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+161e29ba-ec01-4e8a-8115-0a9e20369979 ER0319 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7160ff3a-5cad-456a-804e-b26ffc2f8888 ER0320 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9c5f8fdd-8c4f-436c-bcf5-0321e64880a6 ER0321 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b9d0f1c9-3297-44de-98f1-339ccd1ce9d7 ER0322 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+638692d4-91a1-4d86-9374-c50b19961dae ER0323 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+657c5419-a560-42e7-ad7d-17059656eeb3 ER0324 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6c0cc9e5-72e6-4b69-afb1-d0cfecfc81f9 ER0325 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4e8615eb-fcf9-400c-bd52-5f2bf2cd263a ER0326 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+57bc49b0-e1a2-4d0d-abb3-c75352957ded ER0327 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3c124972-598d-4fcb-8a7b-3924d6be7687 ER0328 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2810f319-6006-4a84-8f89-c9f49dd33aa8 ER0329 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7a7a60b5-82ba-4cf7-9410-0fde55ba63b0 ER0330 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 24.80 70.00 Seeded Ethio-Djibouti Railway CW4 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+02d26d51-2bd4-4f9d-83ca-2ce7173759df ER0331 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 23.40 70.00 Seeded Ethio-Djibouti Railway CW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8f294e45-7038-4827-8a86-c50c15463257 ER0332 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 23.40 70.00 Seeded Ethio-Djibouti Railway CW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+fbf2f7d7-1acf-42ce-9ab8-2e971de671b1 ER0333 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 23.40 70.00 Seeded Ethio-Djibouti Railway CW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e73704bd-9ce2-4bae-a933-80dbf55e64f9 ER0334 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 23.40 70.00 Seeded Ethio-Djibouti Railway CW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b3e4071a-e9dd-4160-9842-9f69d43d601c ER0335 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 23.40 70.00 Seeded Ethio-Djibouti Railway CW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b2dea50e-8195-4df9-ac35-5136f18ebf87 ER0336 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 23.40 70.00 Seeded Ethio-Djibouti Railway CW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+56374655-7d46-4a14-897d-84067295c0b4 ER0337 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 23.40 70.00 Seeded Ethio-Djibouti Railway CW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5b16b195-b3a5-4cfe-b4d7-030eaab1cf03 ER0338 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 23.40 70.00 Seeded Ethio-Djibouti Railway CW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+92f7ed1b-df91-4f48-b810-547be3effa50 ER0339 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 23.40 70.00 Seeded Ethio-Djibouti Railway CW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ec7aa68a-0bb2-48c1-b98e-a57e84941152 ER0340 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 23.40 70.00 Seeded Ethio-Djibouti Railway CW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6527c724-71bd-4fdc-9c7a-796e119b04ea ER0341 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 23.40 70.00 Seeded Ethio-Djibouti Railway CW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+93e64cea-90d2-4c0e-9c25-d5e0d07e31a3 ER0342 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 23.40 70.00 Seeded Ethio-Djibouti Railway CW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+afe287b3-71ee-48b2-8338-82b63ef3c626 ER0343 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 23.40 70.00 Seeded Ethio-Djibouti Railway CW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4d2232be-d773-49b0-8335-d51ee905d846 ER0344 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 23.40 70.00 Seeded Ethio-Djibouti Railway CW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6ab435d0-db91-4991-83ff-1ca281ed8ed1 ER0345 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 23.40 70.00 Seeded Ethio-Djibouti Railway CW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1c143cd2-1d08-4eac-a493-668d4c94c45f ER0346 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 23.40 70.00 Seeded Ethio-Djibouti Railway CW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bd7a7f52-bbbf-45c8-a484-6626d2e13d51 ER0347 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 23.40 70.00 Seeded Ethio-Djibouti Railway CW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ceeb9bb3-aa72-424a-95f7-1359099d6277 ER0348 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 23.40 70.00 Seeded Ethio-Djibouti Railway CW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f1b72446-e40a-4f82-878e-2cccf329dbd9 ER0349 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 23.40 70.00 Seeded Ethio-Djibouti Railway CW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+95f46c92-2fbc-413c-bc24-330aefb02bf7 ER0350 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 23.40 70.00 Seeded Ethio-Djibouti Railway CW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ab4a36d1-5a51-4aa5-9f5b-5dc5fe1ca74f ER0351 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 25.20 69.00 Seeded Ethio-Djibouti Railway KW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+babd5ce9-c5e2-4e05-a77f-a45a6c1b7a39 ER0352 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 25.20 69.00 Seeded Ethio-Djibouti Railway KW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0327cdf1-842d-44e5-a5da-7da63faf6b2b ER0353 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 25.20 69.00 Seeded Ethio-Djibouti Railway KW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8aa9722d-3390-4886-a3bc-b661c0aa7dea ER0354 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 25.20 69.00 Seeded Ethio-Djibouti Railway KW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+cd0c62ac-ceb9-4548-805e-674f98fc6b32 ER0355 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 25.20 69.00 Seeded Ethio-Djibouti Railway KW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c87d176f-2908-4c6b-90e6-e131c9ee1845 ER0356 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 25.20 69.00 Seeded Ethio-Djibouti Railway KW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6b91634a-7a07-496f-9812-5450d48a7150 ER0357 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 25.20 69.00 Seeded Ethio-Djibouti Railway KW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+85fa8721-763c-4ef0-9c46-040eb9cd2fc2 ER0358 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 25.20 69.00 Seeded Ethio-Djibouti Railway KW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d5e33286-be24-47f5-aab2-1d644d772d41 ER0359 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 25.20 69.00 Seeded Ethio-Djibouti Railway KW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+351f15b9-c76c-4e5f-9527-96f81f3f034b ER0360 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 25.20 69.00 Seeded Ethio-Djibouti Railway KW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d65edb9b-dbda-4d27-a95a-1433f1b26762 ER0361 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 25.20 69.00 Seeded Ethio-Djibouti Railway KW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5e430a5a-f35e-43ea-b599-7c4db27373bd ER0362 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 25.20 69.00 Seeded Ethio-Djibouti Railway KW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0cb08b0a-410a-4718-8e01-d427355f69f9 ER0363 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 25.20 69.00 Seeded Ethio-Djibouti Railway KW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ce72bbdb-3c5c-4764-90bd-18422b791341 ER0364 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 25.20 69.00 Seeded Ethio-Djibouti Railway KW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d0172986-9cc6-4c2d-9545-3f3d814fa244 ER0365 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 25.20 69.00 Seeded Ethio-Djibouti Railway KW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e33fe4a2-a728-4483-9d9e-4a263f0210cf ER0366 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 25.20 69.00 Seeded Ethio-Djibouti Railway KW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+70f1acdf-6e4c-4670-814c-a1baa2efe86d ER0367 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 25.20 69.00 Seeded Ethio-Djibouti Railway KW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ea954fc3-06b5-4e90-95c7-b2dc4b5be259 ER0368 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 25.20 69.00 Seeded Ethio-Djibouti Railway KW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+51d4698c-c51a-4e25-8e64-545f69fbeab4 ER0369 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 25.20 69.00 Seeded Ethio-Djibouti Railway KW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f9ba7a43-54d3-4786-8d97-a99547a29d2c ER0370 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 25.20 69.00 Seeded Ethio-Djibouti Railway KW2 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1b391c58-e566-4e3b-8971-2867a7cc0f15 ER0371 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 24.00 70.00 Seeded Ethio-Djibouti Railway KW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7c2a81f3-5139-44cd-9526-f1a30fa4a71b ER0372 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 24.00 70.00 Seeded Ethio-Djibouti Railway KW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c8c7ed10-0f72-44ce-832f-a96de6c1d39b ER0373 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 24.00 70.00 Seeded Ethio-Djibouti Railway KW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+63699762-1a0e-4abe-95fb-7ce375661671 ER0374 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 24.00 70.00 Seeded Ethio-Djibouti Railway KW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e145bc86-6fd3-40bb-868c-98114c8b58b3 ER0375 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 24.00 70.00 Seeded Ethio-Djibouti Railway KW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f123d7f6-05da-4261-8450-308e91ed65f8 ER0376 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 24.00 70.00 Seeded Ethio-Djibouti Railway KW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+69bdf6f7-78c2-4138-852e-09a2555bbe60 ER0377 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 24.00 70.00 Seeded Ethio-Djibouti Railway KW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a3619c92-8180-4fbe-84c1-ca1f606c2022 ER0378 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 24.00 70.00 Seeded Ethio-Djibouti Railway KW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+90d5966b-578a-49f8-a265-27a5ead96536 ER0379 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 24.00 70.00 Seeded Ethio-Djibouti Railway KW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ecd91fdb-9785-4b8f-bec4-cb6489759334 ER0380 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 24.00 70.00 Seeded Ethio-Djibouti Railway KW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ee60fd21-2406-40cd-88f9-ab5060bad934 ER0381 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 24.00 70.00 Seeded Ethio-Djibouti Railway KW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+27d5655e-cff5-40be-8fa4-2e3700860f13 ER0382 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 24.00 70.00 Seeded Ethio-Djibouti Railway KW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8ec050f9-9c5d-43d9-bb65-05f5254d97a7 ER0383 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 24.00 70.00 Seeded Ethio-Djibouti Railway KW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+00b0ae95-f0a0-46eb-97f9-20f020ba1948 ER0384 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 24.00 70.00 Seeded Ethio-Djibouti Railway KW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+41015926-549d-4b63-8029-dbec9449723f ER0385 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 24.00 70.00 Seeded Ethio-Djibouti Railway KW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bd4655b3-9bd4-490b-8d9f-cd1f1071be8c ER0386 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 24.00 70.00 Seeded Ethio-Djibouti Railway KW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d32f6ccb-ab29-43a7-bd2b-e89ce06463d9 ER0387 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 24.00 70.00 Seeded Ethio-Djibouti Railway KW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+45dc93a3-2ff3-4103-b2c6-1fbdc00d2527 ER0388 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 24.00 70.00 Seeded Ethio-Djibouti Railway KW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+dcbce723-8370-4837-b5aa-660994ec4ef1 ER0389 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 24.00 70.00 Seeded Ethio-Djibouti Railway KW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3db3b7ce-8347-4997-b2ef-8a1fcd299c2e ER0390 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 24.00 70.00 Seeded Ethio-Djibouti Railway KW3 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f8e091a6-4d49-47a7-a7c9-3ab971d11aaf ER0391 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e099f40c-9f31-4715-a207-a9e8366ad74b ER0392 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+937f5b06-e8c7-47b7-8c2d-5b4c25a2dea6 ER0393 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+514c6519-c4d7-425a-afc0-f796bef96f65 ER0394 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+70dd5ec6-1711-4c3e-a55f-e77a05eda8e2 ER0395 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+76d6f0d6-760c-462d-ad97-32d04b3e4b75 ER0396 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ba979277-080b-4b94-93b3-363733c56b67 ER0397 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1df789fe-9dc1-4456-9378-aef2da2bec21 ER0398 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e9a7b2c0-854b-4831-9b82-a2b363cc5add ER0399 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c6db9ea7-db32-4d9d-b474-f00f203076a2 ER0400 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+84524e97-f04d-4069-9928-343183a2cb8d ER0401 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7e2939a1-bede-400e-b88d-a44d3ba5ac0c ER0402 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+78fd1237-7a05-4693-b5bc-109bbcea7a69 ER0403 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ecf893d9-710b-484e-8f71-4dae7af11037 ER0404 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e42b654a-d4a7-4e31-bdbc-8968b5618845 ER0405 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6f2eaafd-22ca-4f8f-b99c-9ca20a9c1fde ER0406 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+73e6baf2-a0c6-4ad3-ae8d-8ad298308cad ER0407 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+81af819d-6df5-4d5a-b988-4174e353efc5 ER0408 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3527a9cb-6be2-4e62-b4cb-a01f9715978e ER0409 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+856b692d-4502-4ea7-8760-c38193244ec2 ER0410 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+18689bf0-360c-49d8-aaf0-47c926ef46cc ER0411 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0f2f29fe-240b-4efb-af45-e12b4e3f8a6c ER0412 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4bfe544e-15ed-474f-b874-941db7279527 ER0413 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4a4bb37b-ba0f-4cc4-a558-9197de51d3bb ER0414 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9f89e525-0ed4-4fb8-9794-20a876673ea6 ER0415 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c32c2e85-c33b-4a11-af08-51219110f489 ER0416 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0c52ef96-4e0d-4883-86e1-ad7bfb0b6fee ER0417 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b4aa9cb4-8cce-45e8-9d75-3cff98afbd2e ER0418 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d6181ff5-45e1-47ef-b725-fc6ce960ebac ER0419 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b49dcd27-a36a-4b39-8a05-a17ade316b2b ER0420 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7e2ca548-3712-452d-ab5b-13276c556a74 ER0421 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5e61845c-8697-4f99-ad18-c81106c38e75 ER0422 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ad0d3750-ebe3-4ae6-a5ff-b0a994210ef2 ER0423 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+99e33b46-d648-4046-af65-489733f2617e ER0424 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5bbf44b1-96fc-499f-81f5-5b908be09947 ER0425 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f6c0d36c-1720-46c4-afb9-82107b8a1cad PW2-0046 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+e4d17445-44fa-44b8-9e2f-d509af7e5299 ER0426 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+19de69f8-0afc-413a-834b-408d06d882f2 ER0427 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e75eca0c-2e66-4ba8-b50e-2f3a2e712f2c ER0428 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+271fca4f-79df-4443-af4c-25b90e320f7b ER0429 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+66a8d29f-09dc-4fb3-b639-229501716570 ER0430 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3a44e9e2-4857-43c2-8480-e829e57dd3f9 ER0431 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f9070fe5-c044-49f0-a543-107264909418 ER0432 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+67c4feb6-8cf3-42d2-b7e7-59ea81337561 ER0433 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5bb60f48-039c-4504-b1ba-93500a799fe8 ER0434 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8c599465-6b8a-494a-8178-c88dbb3723a7 ER0435 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8ebf7de3-5e3a-435d-a104-94194362bbfa ER0436 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+33c47279-497f-4602-ac45-d495fc7662f5 ER0437 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+31aff2a0-1db8-46b0-bed0-4825c728115f ER0438 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+781eca38-ab61-4522-ad07-060a75c9e634 ER0439 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3e79f072-55c9-4291-a370-e3ad8577ef85 ER0440 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c731834e-b1eb-4552-9c3c-1a75a42920e9 ER0441 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1e00e843-8167-421b-8238-67b1ad36945a ER0442 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+035369a3-6144-4aff-bffd-581c2d744404 ER0443 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d2ba2cb4-7c8a-41f0-bf82-4ee88fc5f632 ER0444 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+83a6a0e9-380a-46f2-8a91-cc2440d88601 ER0445 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a7088e42-ed91-4a5c-b0d2-2708f577a2a7 ER0446 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+edc29b08-1562-4538-9f6b-ebde826ff521 ER0447 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+654b8636-bd34-4820-92a1-ab0fb6bc1691 ER0448 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+dae964ab-640c-42cf-b45e-353932efca86 ER0449 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7997689d-5fb6-4e49-9554-3d6c4538d4eb ER0450 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+06e3bad8-35d6-4da0-aa50-eb5ee3e04e01 ER0451 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f0729143-1b3a-44da-9ffe-2e0c249e2996 ER0452 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+26d7eac1-fc68-474c-8bd6-d86892f8bf4c ER0453 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8405aa64-99d2-40cd-b765-af2b84855f4b ER0454 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3846ca1f-dd45-4991-9353-e2e776312425 ER0455 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4c4d7187-7ea8-48df-96fd-0339115a77af ER0456 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0be72c0c-5201-4cca-a10f-96f0103519f5 ER0457 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+fcc44338-4dcc-4ef4-9bad-2aabf0fa1c86 ER0458 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+06cff092-2bbf-4350-94d8-6fd7145683b7 ER0459 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3199b4c4-6151-4b69-b880-5d7143ef1f82 ER0460 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+487cb30a-0f06-45bb-af3f-6d54e07ba532 ER0461 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+fc178bba-9706-4a6f-875c-64b6a93b96db ER0462 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+70a2e4f7-327a-4c24-a44b-ee39d56d15b4 ER0463 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e0e04fa1-6655-47c3-a1a0-8002f39aa601 ER0464 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5e056a09-d348-48cf-bff0-da5d29003de2 ER0465 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5c783910-ba8e-49b6-8830-76f2f5f9c6c0 ER0466 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2894fdc4-67b2-45dd-b25e-c882e20f3ff9 ER0467 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b45c91c8-973f-45d1-8fa6-78e5f91d39cb ER0468 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b964d27a-8b83-411f-81c5-b7e1e360ea0e ER0469 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1f6a2ff1-2b9d-48dd-82c6-26d9cefc54c3 ER0470 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+cd3a086a-3566-4cd0-aa03-83057c453c78 ER0471 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+48dab22c-fdd8-4d05-bdaa-2f91f711dcf7 ER0472 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c746baf7-cc9e-44e8-94cd-e3d84433d3f9 ER0473 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4f98e96c-76b0-4a74-a1bd-106cfa460626 ER0474 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+574fe68c-f2f0-4456-b407-319447e3ef7e ER0475 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f426b20a-183f-4a12-9629-9ebff75778e9 ER0476 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0574b140-3e39-4a5a-8c20-693bea11abc1 ER0477 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+fee944a1-cd4c-49fd-840e-b574c187915b ER0478 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7aaaec93-092e-4338-860f-69c1175b3ac0 ER0479 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c05ee251-770c-4661-a85f-1cc13416de43 ER0480 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+22d9c2d0-d77a-4cee-a3ff-674dea6744c0 ER0481 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+cf68447f-7d1b-4b7a-8481-1124cbff0145 ER0482 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f3a624bb-ff14-4f51-a820-3f7eabe46ea5 ER0483 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f92b4388-f6b9-42b7-b1e4-79806b92363a ER0484 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0990cc54-0d3d-46b0-ae46-93f64baadf52 ER0485 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a3f2a330-1937-4f13-b6c2-d0f00cd52fd7 ER0486 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+deb1930d-1437-480d-842f-9fd30c6c2f29 ER0487 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b1665812-9758-4a41-a115-c18fa6737168 ER0488 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+160656fa-1028-425e-9355-3019891a457f ER0489 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3ae705e9-353f-456c-8dda-3054cbad47c3 ER0490 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d25955f4-6493-4d25-821c-0992b02fe471 ER0491 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e7fd1b20-e4a2-4be4-a9c7-24531e176dc6 ER0492 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+28277683-7383-44c6-928d-058f2a64832a ER0493 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+23ad336f-fa86-4837-a23d-e1fb1242739b ER0494 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+90bb7b3e-c58c-4cc8-9902-beffde9835b4 ER0495 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+74046456-ce23-4b7f-ad62-16d2a23ee203 ER0496 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2e40368b-fc27-4562-b172-8075ae875160 ER0497 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5548bb3b-d036-4633-a87e-2a04d81eeec7 ER0498 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a2ac8f60-d6f8-4d51-81c7-1fb25f149d56 ER0499 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ae7770b7-454f-45ad-ae41-976bcee5039e ER0500 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ee6485a4-b993-4a8f-911c-c19f58da7eb9 ER0501 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2bd578c9-f2d7-4849-8fb9-f791aaa6ac38 ER0502 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+de49b347-2482-4d3f-aecb-f114bcc10422 ER0503 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6b339e6c-a08b-4bbb-91cb-40a5d8d13a3f ER0504 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8876e9d6-8ed5-4b0e-91d2-13250cbbcbcd ER0505 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+66cf6644-3307-4b3f-814e-97cb42e5ea60 ER0506 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2c0c5de0-c2b5-4217-b650-387639722e3f ER0507 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+21aa300b-76bc-49d9-8ba3-6d3f245e8124 ER0508 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+01a41f10-0d93-4e7a-afe5-028efc43c035 ER0509 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6f46fbce-1fac-4503-943c-88abe3f56547 ER0510 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+700c40b0-4673-42bb-b9f2-84e21ffe6da9 ER0511 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ad5b9a80-f4ed-4fe3-8d19-93794f97a84b ER0512 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b9148217-7c1a-49b1-85e4-5550b2200418 ER0513 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+dcc4422b-cc70-4c7d-8e1c-2c592f007fb8 ER0514 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+168fa643-1d70-4d28-a25e-59a23048dd60 ER0515 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+380c4ecb-f696-4e08-b8d6-cb954c788f4a ER0516 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+538281e1-2d42-45ae-9e92-3cd3fd1cd057 ER0517 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+31e55299-2857-4b80-837f-efe8dbe9f95c ER0518 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+33772df0-c5ff-4c96-9bdc-d2c59efa6c2a ER0519 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9f6f04ff-5aa2-466a-b46a-6f182008d653 ER0520 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+06ab4026-4143-491f-985e-9406dd765819 ER0521 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+808a5d9c-290e-423b-8ef6-24279d9234b1 ER0522 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c2abd1bf-827e-4f1c-bd0e-171108effdbd ER0523 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f58dd751-fa84-417c-9e2e-8c9909c3e541 ER0524 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4316360b-235b-4eff-99da-93ca69d7e833 ER0525 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+467e6feb-84a7-418c-94eb-fc4a6f7122a7 ER0526 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6becc705-4cba-4489-989b-1c50ec2d2077 ER0527 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3262cea5-ffe9-4361-a14b-eb70f8c0bacb ER0528 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5acacb60-062d-4f9d-b359-2746fad8e323 ER0529 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+20f7adf4-78c5-4fc9-9d4d-6bef98c56a99 ER0530 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+582a9782-2f25-41a8-98fd-c1414b07a608 ER0531 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+98e36aa6-c0f8-4d43-8751-306455b933dd ER0532 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7404260d-efbe-448c-a18f-a76e235919de ER0533 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d67e3484-ed91-4a16-acc0-5252c6b8d7bc ER0534 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c2f16af0-ef1b-429f-97d3-5edca32b9fa5 ER0535 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5a2bffe6-2c3b-4997-b9e6-fa1aab15d9ac ER0536 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+31e37059-9d1a-443f-bb3b-3b8ddc01c74b ER0537 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+cbdf1a08-e474-439a-a4b9-12b257e71fd9 ER0538 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6c4ddf13-b1ec-4694-a9ba-7f3c4da19534 ER0539 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1a84cfc4-1561-401e-a38e-63c775e2ef50 ER0540 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ba1425e5-86a7-442c-9086-1ee35bd63a7c ER0541 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+05cd0214-3876-448b-abed-930df77eb1aa ER0542 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f4c9ba42-ff16-4af1-b3ad-2b534192f2e0 ER0543 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f91069a6-71de-4609-ad89-a50c13d86f43 ER0544 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+804a714b-e3ba-4394-94c3-d2a986b79086 ER0545 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4ddb87b6-35e3-40c9-a358-4ca42b3554e4 ER0546 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4b11a7f1-3ff4-434f-a8f8-5766796731a3 ER0547 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9727f926-dd0f-43f9-a16d-18a73b347082 ER0548 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b0e16714-98c8-4624-87bc-450f622229d5 ER0549 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+cc4afe25-df4f-43bd-aa5c-a8a3cbbffe9d ER0550 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+818d59c1-f8c0-4276-b38d-921fb73af769 ER0551 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9fb49d9b-e2f4-4504-ac5a-7bf8f62bae41 ER0552 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+03751ad0-22c8-4be6-85b1-7486ebea5ffd ER0553 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+76621354-b299-465d-b351-339185843c1f ER0554 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+235aa1c6-9d5b-4957-9319-f159ea70203d ER0555 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+318742c1-8d87-4893-ac0d-d8672a29f3ed ER0556 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d0ccf27f-9854-45b2-886c-c0d9f9de9953 ER0557 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d2830f36-6de7-492d-800c-204c584d33b2 ER0558 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+56a23710-6f00-48f8-a992-763d3ef33ff3 ER0559 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+90034bf8-049c-4f2c-8700-62f41c857797 ER0560 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c66dadb6-95af-486c-b935-7efa54ef5b13 ER0561 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+64e282cc-e3e9-46ae-9b7a-09bc76d5cfe6 ER0562 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+38f9829b-2102-4b4b-95dd-b8ce5b608cb3 ER0563 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b20a6c39-3527-4338-a1f9-cfc7e07c8c5b ER0564 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c7faa478-a1a8-4f49-92b7-b6581bfebd61 ER0565 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+25d197e9-5c33-4d52-b778-a35bde20e1de ER0566 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+964ec96a-db87-479a-90ac-998fb3a05777 ER0567 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+49cde981-4ebd-41e8-be79-e8d0106d01b3 ER0568 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d5f19527-ba79-47e4-8224-7676accbe9cf ER0569 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9829fab8-2696-4512-84a7-81585fdad677 ER0570 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+47709e59-85c5-4577-ab97-d554a70a712b ER0571 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5ad20f8b-f339-48c8-aa8a-24adaf1a92b6 ER0572 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+78676f43-c6da-442d-a7ef-b0d56731b3d1 ER0573 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+565de5b2-b438-49b4-832a-45292180775f ER0574 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6cea8858-b190-486e-b2b6-5c4bf0f2ee47 ER0575 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+05067260-b28b-4112-891a-4e443845fdf4 ER0576 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6b1f6dbe-8228-474c-a9e0-1b8f1057b5c1 ER0577 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d9752f52-fa2f-457b-b5b1-94329dbd7763 ER0578 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ac92256f-237d-4e54-9777-72d096160542 ER0579 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8f04900a-fce5-46de-ba5b-23a2630868b9 ER0580 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+178d13a4-54e4-4a3d-976b-a5b1b10c1ffc ER0581 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ae73a421-f1f3-424c-8741-7ccdd5769c00 ER0582 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bfc06652-a025-4599-9a1b-b7adfe9f6246 ER0583 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+75da20b1-669f-4c3c-be07-abf8642b42b5 ER0584 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+51101002-9a12-47d9-9050-9e6cbbf62be9 ER0585 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9a748c3e-06e9-4984-98a9-c6b0fd0dedcd ER0586 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+44f082a9-1a65-4282-9100-3f9411f1cc7d ER0587 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+54d36a6b-2fb8-4af0-9b3e-0e2f2f65b83c ER0588 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0f3fa636-5507-4ab1-958a-5e7b4608dcbf ER0589 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6ed1ba71-a0d7-42be-8bb2-c64673effbf1 ER0590 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+511147d4-c128-44bc-a104-9b5469ab0301 ER0591 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5d17e07f-2440-456f-91bd-68bf4cb4ff1c ER0592 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+44e69094-305e-478c-ad8c-3fa784cb491a ER0593 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6161b92b-b948-4a33-a3cd-cebc67310ed9 ER0594 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5263547c-6b89-42a3-93f0-d99f7e55b1e5 ER0595 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8331ce0c-fd7d-44a3-9b66-6f5b311edbf6 ER0596 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2de2d969-87cf-4d15-906b-e85eb4b60fd2 ER0597 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+948f3181-26e4-40a7-8afb-58493b9df945 ER0598 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ef609eed-20bc-4b2d-b0f4-6f111985300b ER0599 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6611105f-cdc3-41b2-9e5a-6e1c581727a3 ER0600 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a9d7c3ab-a7b1-48cd-b18d-09aca8129e1b ER0601 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6a6ac7e1-4ad8-4a79-981d-695446da0b89 ER0602 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6b667df6-7ab0-4d52-a9e6-d1ff32c4ab7e ER0603 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+43f5c7ae-aa2b-4638-8bbf-3778208a39ce ER0604 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d22eeb0b-f090-40a1-b130-c941ae8f815e ER0605 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+26b7ccb2-6312-4f92-b31e-df2ec4bf254d ER0606 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+50f406d5-a62f-40b2-a1de-d4d9a8483d7e ER0607 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6be6c0e9-59cd-4a10-b7d5-017b3666aaa8 ER0608 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e858bfd4-c954-426c-b1af-39bea72ee089 ER0609 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9517edf8-31de-43f6-9617-367bb2c43306 ER0610 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b843ac43-bc32-4115-b477-563e91753890 ER0611 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8e194f95-a8bd-4a66-b209-3d83cb98f00e ER0612 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ffc94f04-a042-44f8-97fb-a839519908f3 ER0613 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+cec66043-1772-4cb3-9f20-054f23e4b328 ER0614 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+43bb27ce-8886-4d75-8174-327e183a0da8 ER0615 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+755b54f7-941f-4678-b0be-c2dd804bf290 ER0616 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+22f09474-0ec0-453d-b85a-49db1b128a7d ER0617 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+fa01bb7e-f74f-418a-9e96-aa3557a95060 ER0618 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2041c3d4-3ed6-420f-a81b-c15e1b9973e6 ER0619 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+758bd614-97d1-403b-a89f-9ab78137b773 ER0620 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+756394ae-4d0a-4b64-9bfc-53e1e691f7bb ER0621 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+59c255f5-6b72-45c6-88cd-e9d5a53e7d72 ER0622 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+61abfccb-9413-4236-b3c0-2e31bba5a547 ER0623 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+49dadcf7-bf24-4cac-8902-d66a5b029f3d ER0624 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+433414bc-e616-4d5d-9ed3-dd5d8fc42999 ER0625 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4e00399a-781c-4aba-a97b-ca1b3a276909 ER0626 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8655f138-4f8a-452a-bbaf-42ae47eb1258 ER0627 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f46f47d0-b152-4a3c-80b6-7bfc47e43021 ER0628 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e53fc241-e10a-4f5e-b0af-a9e001ac0dc8 ER0629 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f33569b8-58dd-4e5f-90f1-49abfb40e620 ER0630 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9e2c0af5-d385-42c3-a7d2-61af24f8e1bd ER0631 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+34688d8c-26e9-4dc2-9e69-a462930469d7 ER0632 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+638307c2-cdd5-404e-850b-68ab53fa07b5 ER0633 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ea298a33-47b0-4e70-9fcb-9328f4297faa ER0634 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c3b35b41-4958-45ef-b708-71b310999219 ER0635 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+24ba1107-713b-4a10-ad6f-35c2e9a93380 ER0636 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+38e1ed55-84fa-4d30-aedc-eb4aad9326db ER0637 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a7249875-1550-4e16-8a7c-fac64f12ba02 ER0638 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f8d620d0-dfba-4a67-8ed1-a9a8340bfac4 ER0639 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+65e27667-43c5-4b20-9704-1628ef44568f ER0640 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e21eee39-f251-4aa2-900a-6d862d3c3ca7 ER0641 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a791e467-9f4f-441e-a77b-eef08f33bf97 ER0642 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3a01bd31-3436-4c67-a1da-17e1e12bb2fd ER0643 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+129cf72d-9744-43d1-9359-1ec213b6d955 ER0644 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+eefab3c0-8f4d-4dcf-a5b6-54f8b089a128 ER0645 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ae5ac245-98af-4212-ad0f-80c703b114c0 ER0646 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bba7cb17-bdcd-46f4-abbb-eb87d05ad72e ER0647 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4271bdf3-216f-4365-a1a9-092094069316 ER0648 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3a652312-0179-42c7-9cfc-b566fa2efbbb ER0649 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0fba6026-3722-437c-ab2d-37c9bf24baae ER0650 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4de385a6-fd17-4f50-9ffb-70b21cd4ea7a ER0651 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9746e1f8-fa51-40a4-b430-90396d927b2e ER0652 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+301381df-f3a0-4ec7-aeae-c9a4bc65225e ER0653 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+38eec0a3-1c90-439f-9add-3b12e45450ee ER0654 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ae1a355b-f9d2-4369-ad9f-192f15fefce5 ER0655 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+70518e04-78ae-4b40-b00e-98f648262a9f ER0656 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+27638e21-222e-4279-9120-18c3b8e6b187 ER0657 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5f8615c2-2741-480e-8ac1-15a6b5563f6f ER0658 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+050d09d6-479d-4d3c-9eef-cfa1310aaa11 ER0659 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8edaec2d-13b4-41af-a9f2-9e4d6fbcf52b ER0660 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+412b8595-452e-4c2b-beb0-5b4a756468a4 ER0661 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6a0dc8a5-dc23-495b-abeb-1e59e2a1797d ER0662 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+af45523c-c01b-4064-aeb3-02c82f447ddc ER0663 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+62f0e21c-a61d-47f1-8247-abff53a41f5a ER0664 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+21361e5a-2fea-4c33-9d18-bcb5878bbbb4 ER0665 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3d4490a9-e7f9-4fca-9f27-8d108d115f8c ER0666 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ffc8c50a-922b-4071-aa65-7b2a8bfb517c ER0667 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+124ea2da-a987-4dd2-8ebf-82fc87ad1895 ER0668 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bfa78702-50df-4bd6-85d8-63f2674d547a ER0669 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b0cf1309-9706-408e-b34d-1529ec03da9d ER0670 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9351d845-0e07-437d-801d-dfceee173624 ER0671 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bf0ac296-d980-47e0-9856-473b90cc0413 ER0672 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f6e314cf-d164-4ec5-b581-0ba687bb7dd1 ER0673 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9a67c4ed-8b6c-4e6a-8e5b-05753e329b47 ER0674 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4e3a5387-268c-4dc3-8faa-53da0dc3ce4b ER0675 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9e1cbdcf-e3e5-4f2e-a6b4-4547b07355f3 ER0676 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+629df3b4-cd34-49ff-891a-3a71a3fffa3c ER0677 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+92bdd329-2992-422a-8a15-2fe7b0a1f323 BW1-0001 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+480092e5-acfd-4653-a5f0-204c709f5961 BW1-0002 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+c6fef83c-c5cd-48ea-b6aa-7a3f669c226e BW1-0003 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+462c2690-abca-4e5f-b079-c155b69fcc4c BW1-0004 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+e7b1c10e-f8cc-419a-b778-6d98af260a52 BW1-0005 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+8202be44-6deb-4798-9b67-8e23d23a81a4 BW1-0006 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+9cf4955a-f4e1-47ec-a123-b46b7e1b0d69 BW1-0007 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+547e1056-d51b-456e-b582-7561978f39f8 BW1-0008 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+094dfee7-bf86-4bef-a214-a6df338559f9 BW1-0009 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+82b328ec-176e-4d70-bedd-668bab59ce38 BW1-0010 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+d572bff1-a621-4b03-91f1-8ff9d7b2fd40 BW1-0014 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+128e4c05-637a-4c23-bd84-d9968b1b61b6 BW1-0015 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+e27ff4e7-f02a-4011-96c5-09cc1b0249a8 BW1-0017 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+bbad8516-dd23-406a-a938-bdd5e97bb4d5 BW1-0018 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+9a8b631f-2475-4274-a6dc-77938a52df85 BW1-0019 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+3525a0b6-016f-4118-ac2d-39dfa4a3e746 BW1-0020 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+87efbca0-b8ce-4257-be0c-50995916ee67 BW1-0025 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+795a5a4a-b343-4605-913b-8759d50c5cc9 BW1-0031 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+18da5d00-1255-403c-bbae-8c3a63c47015 BW1-0032 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+13c81a78-4067-4a04-8ba4-3fe2bd2eb72f BW1-0033 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+39704a28-956d-4382-9701-0b730fcbad17 BW1-0034 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+f8512ecd-0fa2-4f9c-9063-dfd2949dd5d7 BW1-0035 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+3c554129-339b-4ddb-a25c-4c722ad292e2 BW1-0036 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+a50c9a58-8faa-4af4-b379-01beb1380fbc BW1-0037 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+253bb835-511f-4412-ac0c-e4d06081b91a BW1-0038 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+72ef08c9-705c-403d-ae78-9f43da216066 BW1-0039 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+b60f7509-3bf6-4c2a-b79e-47e5899a1a28 BW1-0040 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+d95ef7be-24a3-4d57-9f81-1a004858053b BW1-0041 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+a065c2f2-d17a-4cb6-a52f-7b2ffee84074 BW1-0042 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+d81d8405-52ca-408c-9845-ef0f7bc5dfb3 BW1-0043 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+c54038cd-ebbd-417a-96a5-d27ec6b85e44 BW1-0044 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+37e7ee9d-90b9-418f-98fa-737a6216fea9 BW1-0045 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+f4612698-bb78-4fde-9571-a81c35e9955a BW1-0046 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+9aba1dfd-793d-4754-a781-01cb93a04cdb BW1-0047 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+5345f57d-7409-4da9-a8e9-592c90c8019d BW1-0048 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+5165e949-a49e-4edc-9a67-383fe15bf9ba BW1-0049 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+d748b524-7538-4333-8f1f-d7a228b18fea BW1-0050 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+a4f636df-fd1e-4c71-86c8-b142ae0a45a8 CW3-0001 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+dbff2da9-9851-4d55-bc84-29c1aa5d6395 CW3-0002 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+b4fdd851-ce1a-458d-8e66-9330963d38b7 CW3-0003 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+270569a8-9bfb-4f9a-ab76-6f51fc260519 CW3-0004 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+43ecae99-95a6-43d6-a3cb-76d026150978 CW3-0005 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+a041e114-129b-49f3-a7d6-a3eb86bfee17 CW3-0006 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+967a94ec-67fe-48b6-9843-24d890a7b7fc CW3-0007 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+7fffee07-18d7-4330-b197-7db0544384bd CW3-0008 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+9cebdc64-119c-46d3-8d2b-5b01898f8eb4 CW3-0010 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+ffc7170a-7ad5-4535-857e-703afff4f521 BW1-0021 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:54:00.019345+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+8108e8b3-e3d2-4594-958b-3c3e41db510f BW1-0022 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:54:17.246697+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+912fe36b-1bd3-4883-95b7-4debc878885e BW1-0023 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:54:32.611483+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+5a67a21a-2a39-49d0-b32f-c0b4e95f0850 BW1-0024 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:55:20.259666+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba AVAILABLE \N
+05f7a8cd-c93e-4ad0-bf5c-58420da50c60 BW1-0026 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:55:36.233383+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+16ffe5b8-b21c-4661-a610-2b40302ce5b6 BW1-0027 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:55:51.859415+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+b975b05c-e406-44f9-9da2-eee20c60b5b1 BW1-0028 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:56:03.686797+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+1063d636-997b-459b-ad4d-c7effc909ff0 BW1-0029 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:57:09.474732+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba AVAILABLE \N
+83e146de-31e0-4893-9369-1e8aba864968 BW1-0030 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:56:41.8521+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 AVAILABLE \N
+cf28b28d-78ff-411c-a6c4-a3f1cf5c6c62 BW1-0011 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:57:46.927973+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+ba9ec3a1-3e3b-4d77-a902-bbab2228fca1 BW1-0012 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:59:10.55577+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+fc867116-9be1-4041-9746-49cb83955840 BW1-0013 64738fc6-5846-462e-9b62-99b83f5ebf83 \N \N 24.00 38.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:59:20.885371+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+1a19b6df-4a74-4a86-ba01-217cb1fa2676 CW3-0011 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:00:07.262422+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+f4d3e6bb-a2bc-482d-bf0c-21b2f0870f6f CW3-0014 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+b38ebf53-bbb1-462c-b39d-407e62c122b9 CW3-0015 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+e8b750bc-ba9d-4130-b5b9-a7ff22c96874 CW3-0019 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+2e99b0cc-8c49-4ece-911a-f69ad8bd3cc3 CW3-0020 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+6d4bda23-cb1b-40bd-9e4d-974f92646b11 CW3-0023 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+f1e492d9-73e3-4bf3-bd0b-678762e947dc CW3-0024 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+6b08cfec-b124-4b0a-9b8e-6e8936bdd4c2 CW3-0025 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+11c00e47-d3fb-4186-b1ef-d80dfe48894c CW3-0026 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+86b6ba6d-68a0-4211-a120-4ebc7a505ce8 CW3-0027 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+5ce62086-21a7-48e3-b62d-6ba73f818f62 CW3-0028 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+978e2ec7-0201-4112-9dec-03fef17ada93 CW3-0029 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+6918822f-2c2a-4ce4-b16c-ad8092269b2e CW3-0030 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+70d0eca8-3301-49bb-bcdb-7d349739c461 CW3-0034 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+06ac4e34-b035-4f6f-ad70-4917ec21b5d3 CW3-0035 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+608f04e9-31fc-40a1-9d19-e8742d2d1270 CW3-0039 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+aaa410c1-c1ad-40fe-94da-1a9895bd3e61 CW3-0040 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+7280a3b2-8b65-461e-a8b0-e461411a4356 CW3-0041 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+6641f2c7-f8ec-4a68-ad5a-0c152367e043 CW3-0042 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+22606421-8e7b-437c-b8ce-d4fafa9b20eb CW3-0043 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+6b4f024c-d0b9-4418-91e2-1ffb2b40a38d CW3-0044 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+b14aa7aa-8d39-4fde-a899-fe1fb5e6ec5a CW3-0045 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+3172bd5c-7575-4a6f-8227-b668195d1319 CW3-0046 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+de390a43-0b4b-4d4b-aaec-36773a349a1b CW3-0047 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+a30b6b9b-dabd-4f94-8916-4587ee205c18 CW3-0048 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+a87dc14c-0d33-43f8-baba-90d4d7a123a8 CW3-0049 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+c7833b95-4434-4388-8283-c91d4929c495 CW3-0050 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+af42bd92-6423-448a-b117-d46d16bebc63 CW4-0001 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+334d55ea-9486-47a7-b130-4cf776b273e0 CW4-0002 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+f5c609a7-15cb-415e-99d2-39fe70da4e47 CW4-0003 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+61e8d718-4206-49ec-8c26-52653bafd458 CW4-0004 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+c1bb3039-b746-4180-9bc7-99f01ec2ba67 CW4-0005 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+aef6866c-1c44-4c98-be87-dd9ef09caff7 CW4-0006 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+88326448-cb91-4170-b57f-05d164c60ada CW4-0007 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+8e081f7c-a0ff-4560-917c-d93f3c12c149 CW4-0008 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+a70d233b-de9c-453b-a321-d67b56028d00 CW4-0009 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+d3280a51-0c22-48e9-a9af-77ef16eb5064 CW4-0010 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+04faf3d8-b3c7-481f-8ef0-083ad691c37e CW4-0014 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+a2c7a77f-aa23-49b0-b484-cfa9b5d8f6e1 CW4-0015 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+2a2d6917-8094-406e-89ce-2ad53c37136a CW4-0019 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+cd334d9a-8649-443d-bc4c-48c68b5e723a CW3-0012 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:00:17.510391+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+4bbfe254-9434-4111-9a5e-8d7f62ab2c12 CW4-0012 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:00:24.88018+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+f817d892-2697-442f-9f8a-2bac497fac23 CW3-0013 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:00:27.866255+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+fded7455-de80-40a5-9e8d-52f13a78925d CW4-0013 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:00:35.985001+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+84550ee0-2235-4eff-b890-7026556626fa CW3-0016 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:00:45.287846+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+92439e0f-2cf2-41cf-844b-a8f3737c375a CW4-0016 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:00:46.628051+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+ec48b04d-7a48-4630-ae56-e16d75c3abca CW3-0017 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:01:26.075217+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+e5c17cbe-a05f-4b1d-80d0-f93d94028c0d CW4-0017 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:01:45.453488+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+d6ef7a54-4770-4c7b-9a5a-bf89bb175707 CW3-0018 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:02:01.601243+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+c469d8c7-66cf-4158-8046-2b3b204270aa CW4-0018 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:02:03.958941+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+0d586f8c-313a-4d01-95f3-8a7a0c2dd901 CW3-0021 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:02:18.081967+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+1a18d34e-7d8e-4875-b270-5f1c956053af CW3-0022 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:02:36.491019+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+e87a6e90-e0d5-41ef-b2e9-ace507a8189a CW3-0032 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:03:08.976545+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+d3f8878e-4feb-41b1-8055-3ddef92fe7b3 CW3-0033 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:04:00.291059+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+347d48ce-b146-4c63-80e9-0ae0828b1920 CW3-0036 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:04:22.983744+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+02ff15d2-21f0-4d24-b913-10d2a7b8962e CW3-0037 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:04:55.623567+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+a487a4d6-c662-463f-97cb-00f9805d3a85 CW3-0038 ad824b15-84ea-4751-8f3d-d6220ef1a2fb \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 07:05:34.066025+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+bec28d99-8602-4082-bcf5-eeda0ec63b23 CW4-0020 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+3bc36d74-952c-417c-9d9f-6838de68aa4b CW4-0021 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+14c0d30c-f7eb-46eb-989c-7567464288ea CW4-0022 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+51bf72dd-2e67-42d7-a2e5-1e48807f70ca CW4-0023 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+bd48c4c5-d544-4733-8600-ebaf32eb6049 CW4-0024 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+374e19b1-1de5-4909-ac9f-befc8af8de4b CW4-0025 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+813058ef-5d24-4103-ab26-25a6604df44f CW4-0026 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+9c329067-f1de-4f06-a193-e5334506552f CW4-0027 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+646b2516-7e77-478e-a9d5-d1e72c336da3 CW4-0028 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+9179ff21-db39-49cb-8000-6162cd6feb0d CW4-0029 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+19cd4f76-63c1-43a7-8b4e-ffaf1f86beca CW4-0030 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+6063a898-7aac-4b8a-9d0b-dd9411cfcd43 CW4-0031 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+76dfc157-89de-4754-a161-c6822a2663b7 CW4-0032 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+f843c898-37be-49e1-a5fb-3dce4858f0b5 CW4-0033 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+13d5f490-d9e0-440d-916f-e40077638609 CW4-0034 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+4bf51ce1-024d-46f9-9b83-0273a3445c9e CW4-0035 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+2d3f9daf-0b6c-43b2-9ee7-8d367b70ccd7 CW4-0036 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+b5e56a89-ea45-4500-adde-4bc3a3a189a5 CW4-0037 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+8cde57d4-2c66-42c6-8642-fc6fca8f2e5a CW4-0038 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+287b72be-adc7-4e3a-8b55-18f69ce85458 CW4-0039 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+1ac4c225-6d05-43f0-af15-cf53db8f8b24 CW4-0040 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+0898441c-a917-4f57-bbfa-ff087f0ad84e CW4-0041 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+5444bf0c-9f93-4314-b7fe-3b0169d2557c CW4-0042 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+551f454a-d04a-4ce6-862a-7531bd615423 CW4-0043 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+ea68f1b0-c1a1-4cae-bbe2-743c5f28e430 CW4-0044 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+4c2d17fd-220c-4e78-84a9-b06f9edd7601 CW4-0045 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+ce86600c-c4ec-4817-84bb-04d377dca422 CW4-0046 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+b14f5304-60a5-4dd2-b5e0-2e1aa3ca7e1f CW4-0047 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+28032163-e829-460d-9fdd-182824f67ef9 CW4-0048 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+486f7059-e1a8-4cfb-b97c-ac9b8a05810c CW4-0049 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+890f3ebe-1761-4d5a-a4bb-179a21ad8f90 CW4-0050 eec7f9e2-6458-44a9-9bba-05c252ab6727 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+b8caf646-4c72-478a-8e06-b41fc9ebd884 GW2-0001 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+4dbc7d8e-527d-467d-898a-06d0bb4fa18a GW2-0002 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+6c340995-f08e-421c-8aca-a2606e1bcc4f GW2-0003 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+698a0ca9-52f5-43e7-acd3-15764562facd GW2-0004 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+aff7b6dd-5dfc-4de2-b10e-c6d313e83dcf GW2-0005 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+1bdea632-5805-4a01-8005-b7d2cf93af6b GW2-0006 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+2a949f95-5efd-43e9-9123-42b74d232e49 GW2-0007 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+24d7f4b4-13c9-4602-a6fd-ce3bf114e4ff GW2-0008 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+bc729232-3027-4dbf-9bf5-f4180c116331 GW2-0009 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+4d6f09bf-463d-4a32-b367-b866329367c5 GW2-0010 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+d258bb68-114d-4ce4-9c28-177a96d3f123 GW2-0011 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+8e0a2688-ae48-4861-8ca0-e5c5685e2108 GW2-0012 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+7aed91b1-b316-4df7-a080-a6cabb073a85 GW2-0013 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+e7cc95c4-3f46-4d6d-abef-f7d0d2491e48 GW2-0014 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+456c3934-aceb-44db-be5a-0e2ea9c26a87 GW2-0015 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+609728d2-5dda-42ff-ab30-7fe0a91471ef GW2-0016 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+cbecca40-2102-4a34-8a79-4209943cf12d GW2-0017 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+996288a4-e432-41d1-8198-2246c7553784 GW2-0018 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+20111951-7079-4ee9-beac-78e89ac9b920 GW2-0019 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+c7c457c2-f2c4-4638-be1d-ff7bd25ea870 GW2-0020 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+e7e1b2f0-ccb5-4a34-8c14-5e5a14c42bf8 GW2-0021 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+ded1d7d9-dee6-4001-959c-881abb6de8d2 GW2-0022 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+4fcc775f-c53c-4fc7-831f-7674393dc05a GW2-0023 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+4db61f60-b74d-4517-90c0-fa400e5dbb67 GW2-0024 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+9def29c0-a466-4514-82cd-37edf0620760 GW2-0025 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+d686768c-42f8-4d76-bbe3-345b86824cd2 GW2-0026 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+0f8a61bb-1e9c-488a-b2b7-c7ea8c3b67eb GW2-0027 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+5203fb14-2a1e-40f3-b19d-75d704ad1575 GW2-0028 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+d988cd45-78c2-4f73-ac72-6844ff2e3468 GW2-0029 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+308926a6-4a4b-45bf-8506-70d7878f7db6 GW2-0030 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+ccc9e05a-18a3-4f39-bd98-4d1f0953db19 GW2-0031 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+8ae01767-4110-447e-b252-af9babc3a3c5 GW2-0032 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+00c8a518-0887-41fc-8756-dd615672c435 GW2-0033 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+b8fa6443-8ce6-45d8-989a-523bf6ca5ef7 GW2-0034 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+39aa50f4-e2b4-4efa-9e65-6dcfc3b8ed01 GW2-0035 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+e6afbdae-30f2-4790-81d6-12b3e733b7ae GW2-0036 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+4c9dfd01-59ca-4e39-aa18-b58a9a01928c GW2-0037 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+8fb1cdd1-4e0a-4124-9324-e5057f71a979 GW2-0038 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+8246984c-c8e0-4e4a-9bed-8672dc308a7a GW2-0039 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+61497976-b9f2-45b4-967d-d639fe1e1dd3 GW2-0040 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+e4ae0924-f854-4851-b8bd-bb1d4f0f76f4 GW2-0041 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+594710a2-9ed1-400e-b5ed-4d3d64f6ced0 GW2-0042 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+0b0e7ee8-d2e4-4ccc-9773-9cc6e21ecb6c GW2-0043 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+e233ed2e-6381-44c1-b3f4-5c3fb04b2177 GW2-0044 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+f0939baa-d190-4fdf-956a-ba3d79d1d7ee GW2-0045 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+62a64af4-91d3-4301-9ced-5aeed014b7e1 GW2-0046 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+a8ccf67b-10fe-4d70-ba1b-8c4b819d1de9 GW2-0047 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+0a29793f-c542-48c4-b1b9-f6f649cbc330 GW2-0048 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+6fa63396-7505-416e-96df-a10dd374db0d GW2-0049 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+0d770916-5b69-4393-8125-0354eaa91965 GW2-0050 011a3c2f-39c7-48fe-9f28-5e6054b7ae3b \N \N 25.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+304e3ed8-1f7b-4dd1-8109-80773b19b5e5 KW2-0001 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+a02437b2-e91f-4f12-ac4e-0ce042de3652 KW2-0002 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+302c4e07-61b5-4d1e-a002-cafc36f20c95 KW2-0003 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+0d997fe1-200a-4640-b74b-35444cd0cb80 KW2-0004 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+e73f6671-684a-4657-aa4c-0db70ca5e243 KW2-0005 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+e55feb94-bd0c-4170-baff-c757e67ba19a KW2-0006 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+d5575b3f-e1b7-425f-8535-90e45fa93560 KW2-0007 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+90f011e2-94c2-4cbf-89a1-2f2e2a106f07 KW2-0008 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+74948852-16af-462a-b4e4-433b3d7af613 KW2-0009 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+aab4e670-2f63-4200-bb1e-3323c2228d22 KW2-0010 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+3a3aa098-a1f1-4e04-80b8-f1a08bb9a779 KW2-0011 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+2968d149-2fac-4e09-aaff-bc957ef487be KW2-0012 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+1f1edb25-ff64-44e1-b962-8da2636c1b9c KW2-0013 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+ec790bb4-c1f5-474e-89be-4fa3b45e12a5 KW2-0014 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+eca052bd-16b9-4eaa-a7a6-fa2ff2383beb KW2-0015 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+6d61c796-4267-44fb-9912-62d3f41ccd85 KW2-0016 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+848be621-fc41-4cf7-8986-9761b448a18d KW2-0017 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+4e828595-5963-4932-bd88-1a85c01ef905 KW2-0018 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+7639f706-54c3-49ce-9ee5-785e8b4105e1 KW2-0019 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+02353722-7426-4167-bd35-6e7b457206c6 KW2-0020 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+c8da0b4f-3c17-48ef-b3d6-14939b2f665e KW2-0021 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+34a6e141-75ff-4d1b-9840-c4557dbc9b20 KW2-0022 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+0485d0ab-d703-4e51-b1fe-7039b7addcf7 KW2-0023 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+896dd097-a226-42fc-a26d-76d6bd1d4b8f KW2-0024 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+411ea9f5-36a7-4948-8574-216517c41a95 KW2-0025 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+f4e2c821-0c47-4822-bc7d-64e4b835cb91 KW2-0026 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+4eec1b8d-42df-4e98-b707-b26725d6147e KW2-0027 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+e4d93cc4-3759-41ef-9e17-4cbbf135ee39 KW2-0028 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+e9d7011e-2edf-4936-a3df-54977454c2e8 KW2-0029 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+8c0934b3-a47a-4e45-aade-18c786b4e031 KW2-0030 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+a4e2eea8-63ef-488e-93ba-a37027822af2 KW2-0031 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+52965c61-d108-49c6-8a10-751dea4b7c99 KW2-0032 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+fa45ee9c-b313-4142-86de-d3d2bf0cda7e KW2-0033 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+4e03ea5b-592f-4c3b-8283-e6394fe9e171 KW2-0034 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+1467c2bb-c885-4f03-8b63-e287b5b9702e KW2-0035 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+bda8f5b5-d6a0-4e9e-afeb-6ccbd952cb42 KW2-0036 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+473b4ed2-6cab-4d3d-b332-47719f3b211b KW2-0037 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+24da6ad4-4c0b-44c0-94e3-d5108f7bc9d3 KW2-0038 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+dfab4f36-555d-438d-ae00-c59e35e3f4e9 KW2-0039 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+abe3f072-68e0-4383-a933-1e8c3cdbf10a KW2-0040 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+e6e4e9b9-76f4-43d2-897d-e67c76b18f69 KW2-0041 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+6739784e-4883-4dce-bb0e-060c37fc982c KW2-0042 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+bd4bc834-8cdf-4bc0-b383-46934ff0fa28 KW2-0043 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+4317a518-1886-4673-a300-cfadcfbca8f7 KW2-0044 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+d8e44280-2a98-4e29-b64d-23b2d32ff70b KW2-0045 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+a910eedf-1319-41cd-aff4-bb82b0d9636c KW2-0046 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+221023d0-0a10-40e9-91be-092e3797236f KW2-0047 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+c84c1c79-2fb8-402d-8d20-8676c00befa3 KW2-0048 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+82538312-7781-41de-8959-b1e9a8b2829b KW2-0049 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+02c49f3c-c50f-4749-b91c-5b1a05025646 KW2-0050 814a3748-b220-4904-95d2-1c7c4344d0a4 \N \N 22.00 69.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+94ef8d74-efee-401e-82e0-bab520b25415 KW3-0001 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+29fecd40-ce9d-4732-9175-d05728a8d4f6 KW3-0002 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+8d9caab0-6884-48b9-8ffe-56a381654a60 KW3-0003 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+97ecb474-33fd-464c-b06f-9e7db385fb82 KW3-0004 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+856e55bf-5d80-44dd-9157-1b6593dda4f6 KW3-0005 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+d6819831-cd4d-4e11-b1d9-c60e134a206f KW3-0006 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+d6e57c2b-7434-45e1-b581-0e1dcc2f3303 KW3-0007 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+8213ef5a-448a-401a-b9a2-4494a372dcf4 KW3-0008 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+78b7a485-96c3-4dc5-9760-2c2a9c263b95 KW3-0009 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+3d874af7-1460-4915-ad56-30e85283ccec KW3-0010 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+b942cee6-0869-44e8-885f-fab10171ad8b KW3-0011 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+0a3571b5-7da6-4030-a092-63032b2c8996 KW3-0012 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+ae628b87-1eca-45eb-8b09-c34932fe3591 KW3-0013 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+9dcd824d-8e4d-4530-ad34-eafe4a6e26bd KW3-0014 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+3cb38745-b2dd-4346-b9b9-911585dfddc3 KW3-0015 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+88891144-1aed-4f6f-bff0-b0a4a9fc92be KW3-0016 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+4a5a1d5c-c4f4-44cd-ac5c-5a0f14b9bde1 KW3-0017 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+74199bd5-7b1e-4fd2-a7ab-9108331abd85 KW3-0018 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+b6fc225a-5d62-4542-a60c-67c03a5adc15 KW3-0019 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+8287799f-663d-41bd-871d-4d2f4aa2edbf KW3-0020 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+47b73195-a03e-4b04-9565-5e07e3e4bf2b KW3-0021 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+4521008c-542b-4e62-93d9-184a757a1748 KW3-0022 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+b5850e56-11c4-4582-b9a7-4071cd3f2990 KW3-0023 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+57f55a83-86aa-4a7c-b4c8-780d10df9caa KW3-0024 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+0aead300-69eb-415b-b9b9-f04641308c59 KW3-0025 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+766e3dfb-2b7c-446d-8f64-2a6a1d98e32e KW3-0026 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+8a17a740-ba4b-4d94-801c-c47297aa25a1 KW3-0027 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+67e58b93-da32-49b4-86f4-15d703b47ca5 KW3-0028 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+d8640626-8c0f-4b77-8f4d-357bfba43009 KW3-0029 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+c340a9d1-4bd1-48ca-a37e-26e78ec8a1b7 KW3-0030 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+7ea43d7e-0d5e-4d9c-b96c-4f4fd8637ef8 KW3-0031 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+8cc1251a-8728-4b3b-badf-0bacda6ef696 KW3-0032 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+755e52d6-fbb3-414a-9e8b-87b0687505dd KW3-0033 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+e2a8179b-7baf-4bfd-8d04-6340ea6c3723 KW3-0034 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+0f977cf4-9fc5-49e3-9dd7-623d29de4988 KW3-0035 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+bad9cd36-ab7b-41d7-81a3-d7a8d7d02b6a KW3-0036 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+7f634a96-a833-4efe-88a1-26055ac98154 KW3-0037 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+f9017a9e-5e28-4e8e-a2e4-a267fcfb0091 KW3-0038 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+a84b7e5f-4573-4e25-bae9-53d9b05dcd8d KW3-0039 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+cca4e86c-ba21-4d8b-bdee-34fbb9dc49ee KW3-0040 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+b0d7896b-0c6d-4dcc-a59e-95475c1298fe KW3-0041 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+4f29fc9e-0b4c-473e-9c59-f61197dc5693 KW3-0042 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+7eee4459-a45e-4e8b-a434-46bf912091d9 KW3-0043 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+18b0c4a2-8e4b-40cf-b20f-21f0880f6040 KW3-0044 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+99888a00-5cb8-40bf-a52a-a2d1cf5ea813 KW3-0045 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+426a825e-60de-40ce-9177-41f02238c8f6 KW3-0046 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+eda7b1cb-bf2d-4575-a533-14a98319bc6b KW3-0047 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+40f2cad3-8348-4b36-a25c-6ffa131ccefd KW3-0048 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+64dbc1f7-f55e-4fcf-9da5-5d830f512fe8 KW3-0049 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+32c26500-23c2-4a1b-81ad-1d1b91bbf294 KW3-0050 0ffc0e6c-1a21-4787-bad8-bee2f99ec217 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+d91227c6-e477-44b4-9009-5ade2a2de59b NW5-0001 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+473e9792-cb0c-4d9f-9ed4-afc518a6d2d8 NW5-0002 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+448d71fa-5405-4fca-b315-e379ebe288e8 NW5-0003 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+9e04dece-9805-48cb-85f8-336532920e7e NW5-0004 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+ee43331c-c13c-468d-96e8-04660ede7edd NW5-0005 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+2d0c2e48-8336-4ede-b057-8d7dbe0c9bd8 NW5-0006 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+b973bf32-1af7-4d55-8367-e0f1124f69de NW5-0007 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+5cdbb045-604d-4469-80d7-d6420f79c2a5 NW5-0008 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+3e7b86bf-8a54-4f43-8189-9c0342d8be29 NW5-0009 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+f40e408d-228f-49bd-8c62-ba154c5301f6 NW5-0010 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+d72e9034-26fd-4383-ad78-b2cfd10d371e NW5-0011 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+397b08c5-7aba-448d-a426-4e73ced55aa2 NW5-0012 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+19664030-d704-41df-9487-de935cb3eaf0 NW5-0013 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+96df8915-39d7-492b-9097-a5332b9d3179 NW5-0014 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+1fa601b7-a2d5-464f-b85b-c24335fa79db NW5-0015 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+4fbefe7e-1201-456c-876d-9cf28de03bfc NW5-0016 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+139ce3e2-578c-44f7-8c89-b40e01cc495c NW5-0017 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+af5bda9b-671e-49c5-aa50-b6430910c173 NW5-0018 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+e290ae21-86a5-47d4-8587-1369b11e1427 NW5-0019 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+0082db0d-d8f9-4101-ab67-664bcd088ce7 NW5-0020 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+f4c5d19c-325c-4fd8-9fd1-22c5b0078c50 NW5-0023 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+1f77c72b-5314-4960-a74d-2ca1e2148546 NW5-0024 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+66382b1c-722a-43fc-adfd-f8435590923c NW5-0025 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+76894a00-878c-46e6-a1b1-5abfbe41639c NW5-0026 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+d7fa0074-1735-4b5b-b745-8773464b3c96 NW5-0027 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+f12fdb22-3966-424d-ab8b-b282d6debf31 NW5-0028 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+abaeb806-5b48-4142-97f0-4b7eb15e7a36 NW5-0029 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+0a2e9c08-3fcc-4b43-9409-5e3b47818847 NW5-0030 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+efd4999b-9c42-46a7-8ea0-782f3b8b3f22 NW5-0035 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+de454545-80ab-4829-b0a4-1e0def675f0f NW5-0038 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+5623b125-d837-48b1-8ede-9bb6dd9e4d41 NW5-0040 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+f2ba25ca-fea7-4bfb-9fa8-a6c68ac59902 NW5-0044 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+0be45a6e-6c94-4676-9efa-d66647eab83d NW5-0045 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+4a490159-815e-446c-ab1b-af4fb45763ed NW5-0050 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+d155ddb0-087d-4943-846d-ea34574b4006 NW6-0001 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+2f519821-00ee-4e95-ab85-5b22d2e15946 NW5-0042 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 22:02:19.815115+00 \N \N \N 17964b5f-4b99-4f0e-b855-1aa5d4237934 AVAILABLE \N
+a87b6300-d6fd-478f-a798-3e2b73c5b974 NW5-0043 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 22:02:28.406781+00 \N \N \N 17964b5f-4b99-4f0e-b855-1aa5d4237934 AVAILABLE \N
+021094d6-d438-475a-a0eb-ffb820138a9b NW5-0046 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 22:02:36.949482+00 \N \N \N 17964b5f-4b99-4f0e-b855-1aa5d4237934 AVAILABLE \N
+791713fb-c87b-4622-8e14-3dcd96889193 NW5-0049 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:53:20.409788+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba AVAILABLE \N
+7d6c2105-db51-49b8-a807-9864690873f8 NW5-0031 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:54:15.576904+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+b7e7b40f-d64f-4fa9-b7c0-49d15769989c NW5-0032 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:54:28.070648+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 AVAILABLE \N
+ab8be779-8566-47c7-8bf8-31192400972f NW5-0033 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:54:38.686305+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+d674577b-7ce2-4efd-951e-d263aad6588f NW5-0034 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:54:51.004147+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba AVAILABLE \N
+6d65a6bc-ff7a-43ae-ab78-8130918d18ba NW5-0036 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:55:55.404787+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+2fac6bff-cfc1-483b-b759-425c38cc0a79 NW5-0037 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:56:12.642572+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 AVAILABLE \N
+d91950ad-bbc6-4e9d-988e-6128e70cff66 NW5-0021 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:57:31.986765+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+0767cdfe-0a55-4ac2-972e-c8a680fb3964 NW5-0022 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-19 06:57:44.569271+00 \N \N \N 7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 AVAILABLE \N
+e5a41f13-2642-4dd4-b344-22e4673078a3 NW6-0002 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+42bfc65c-a794-4c86-a719-659b08eaaa0c NW6-0003 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+bfa9eaf8-7400-4496-a49f-7dc9be5366dd NW6-0004 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+e757a3ae-5892-41ba-b88e-46353adddd58 NW6-0005 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+2fabd962-6eab-4bc1-b62b-201606a7e9b8 NW6-0006 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+2f9de960-3e04-4baf-b370-989013e3e3ae NW6-0007 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+31117b55-fa72-4088-8683-d42eaf8c0301 NW6-0008 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+47e52183-3c8b-4ff0-af98-e6ad176135cc NW6-0009 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+386c1ee2-1a37-4cd5-9cce-64edf3546c16 NW6-0010 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+cbddf1a6-450c-45d8-a382-547fd854de6e NW6-0011 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+4f2f0915-b5b7-4d43-9d4e-3e0afa30ec25 NW6-0012 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+ee11d9e7-1a98-4dc7-a5f9-161e89354891 NW6-0013 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+2bc4bca4-b539-49c8-82e7-d9ae7c9fc085 NW6-0014 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+e9d0cea4-c8b9-4308-822b-bdf48fe12da6 NW6-0015 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+1594cfb3-1e37-4d21-81d7-d83e554cacbe NW6-0016 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+71f0c7d9-b35f-4bf6-9053-e43feb5524b0 NW6-0017 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+70430603-626b-43cd-955b-c49cc0106a44 NW6-0018 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+59c5758d-ba69-4794-83d0-f545e7f19456 NW6-0019 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+9580270d-2098-4e4d-9145-806eb2d1de3d NW6-0020 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+29d15cfe-ee40-4613-baf2-4106a16ca16d NW6-0021 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+cb110435-0c73-425c-8415-e55c8d378f37 NW6-0022 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+116c2346-f935-46df-913a-477aaf0c7a01 NW6-0023 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+fe5874d4-c17a-433b-9b88-0ce67a603502 NW6-0024 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+654ad6a1-e8d1-4dec-8113-0177ac9c5add NW6-0025 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+d9049195-70d4-470f-b72b-6fd783f510d1 NW6-0026 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+c5908c45-f3d2-4495-a3ab-abb044b5e987 NW6-0027 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+752f4c86-6df0-4c4e-8164-3180cb84eb2d NW6-0028 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+1d913421-86f4-47f9-a735-9573be30c903 NW6-0029 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+80eaa23c-1e4c-4e20-b55f-2e587ce6f007 NW6-0030 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+4f80e507-981a-463f-8ca2-c829b87dbcc0 NW6-0031 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+528ff1af-11f5-4a4d-a07f-9eb2966c7193 NW6-0032 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+baf35803-5a43-491c-a53a-0ddd9461fcd3 NW6-0033 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+0c145271-457e-4de8-9a05-6240d939ae44 NW6-0034 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+9beaab62-7fc5-47b8-81a2-0458b2f734bc NW6-0035 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+3f82f10c-37f9-4674-824b-3933784f4f9a NW6-0036 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+e19ddc7e-6bde-4ca6-9e7d-be8ca1fa567b NW6-0037 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+37d5f9a4-507c-4d43-a793-6e0b8bd1def3 NW6-0038 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+eb51ea5f-debc-4782-a5fa-52a8d4b7f557 NW6-0039 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+30f89920-0fa5-4a1a-8b0e-76262c3e6097 NW6-0040 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+091bb75e-8b65-438b-9261-3cecbfc61e15 NW6-0041 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+164c7be9-e22c-4381-8115-cc8173a29c03 NW6-0042 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+6500de34-7ff7-4368-9db7-86a787682026 NW6-0043 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+0f339ac6-c123-41b4-9b2f-57a3a283738a NW6-0044 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+64f583d4-b4b9-474d-b6ed-97b981898ea6 NW6-0045 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+b64edfd9-a867-43cf-b6a5-7d0fd9176f8d NW6-0046 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+82e7a7a2-2046-4791-a5b5-c1697abde2b2 NW6-0047 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+af26aaf4-01a7-4304-9231-52c3e4d67d54 NW6-0048 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+837bb1e7-8200-46bc-922f-57d3b14ed918 NW6-0049 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+5b57f778-bec6-442b-9cfe-f4acba72fddf NW6-0050 ae4b7f03-d0e5-472f-a77e-7a2af058a8c2 \N \N 22.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+c37547e4-6a5c-476d-b22d-cbf62e0c64ad NW7-0001 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+bc8591ce-2103-4a8c-a179-1d5a66a36654 NW7-0002 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+24852ce7-cef7-4d68-b7bb-86222d334e3a NW7-0003 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+226e2af2-e76e-4a3c-84b0-4416f0ecc2b4 NW7-0004 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+bcac5286-5d0e-404a-b9bf-d09fa48fca7b NW7-0005 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+55f9c75d-9201-480a-a44c-bbf1f540d4bc NW7-0006 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+1fb1d792-4707-48c6-aaa0-bf0a7cb3c293 NW7-0007 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+6020ec84-bf99-4ea3-bda1-bd7ace556bcb NW7-0008 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+e5673eae-b036-45cb-b601-0cae89dec285 NW7-0009 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+20b34c16-9b60-4c47-b5e6-b5f43f055fb8 NW7-0010 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+b2ad27e4-837c-44f2-ab28-023fea696c31 NW7-0011 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+ee089ce5-ef38-4298-8afe-4fff73013c64 NW7-0012 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+94ab5f5d-50f0-4375-b47f-81a5a29ffbb1 NW7-0013 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+a39108ab-f3f0-432e-9c00-9e1a92d93e5a NW7-0014 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+f010ef75-6dd1-4fa6-8e63-525bfd95223f NW7-0015 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+47e6f12a-0ca8-428c-9402-6e8427e21015 NW7-0016 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+15f65d5d-bdef-4da4-b9ab-26fbd46cfb3d NW7-0017 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+e014b18f-d66e-4434-a1f1-302fe8a29c93 NW7-0018 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+337df932-2726-42be-82fd-b92488029b9a NW7-0019 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+b46634ad-c5b6-4ace-816c-d5caeb9ff754 NW7-0020 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+77c1da18-32c4-4e2b-93e9-9caa87c2599e NW7-0021 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+9bf390c0-83a7-4af5-bad9-4488db2e351c NW7-0022 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+273f2b70-5163-4f72-b896-b49ec6d25bc5 NW7-0023 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+f59938dc-5090-4d36-a412-ef0d061401c5 NW7-0024 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+b5790207-87f9-48b1-a9f2-7b21b1f9d509 NW7-0025 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+6220ea74-7a1f-44ee-b75a-06aa2a50cac1 NW7-0026 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+f3c5d663-7885-4907-8042-c3c1451e355c NW7-0027 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+658927a7-5c09-4997-874d-59b3bf777c62 NW7-0028 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+7df3d87c-bc53-43f1-b28e-cda038eac800 NW7-0029 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+4aab2693-e06d-4fde-839b-cf113dede89d NW7-0030 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+c14d1fd2-b57b-465b-85f4-57b7a1746f0c NW7-0031 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+52c0e61e-3bb3-4b77-a491-bb36a9d31ec5 NW7-0032 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+043b685c-087b-4006-a608-3f9dc6a954f9 NW7-0033 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+2cbb444b-ba43-488d-97be-2df13741bba5 NW7-0034 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+110d16dc-55e8-4d18-87a6-2af5db4858f1 NW7-0035 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+9a4318ab-c649-47a7-880f-73bc136bb6b1 NW7-0036 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+3ef4112c-96e0-4142-b4c7-79c90b0cdaa7 NW7-0037 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+358acab4-2f5d-4ac9-a0ac-1170b583ccf6 NW7-0038 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+554678a4-d696-4ec5-8351-b3efdbc639aa NW7-0039 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+e01e5384-980b-4ba2-98f4-db096606dec8 NW7-0040 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+3b94af0e-9996-4add-8e06-5079325d2e1d NW7-0041 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+3feb79bc-f1e2-4f0a-aaae-78729ce853d4 NW7-0042 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+a5027437-9e51-4e7c-8b23-fbb3648f7853 NW7-0043 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+01f39775-bbd9-48da-9eaa-4f6a1dfb7ce3 NW7-0044 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+8a1302e7-c8b7-49e7-8d1c-1ee66f686352 NW7-0045 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+ed43cf28-93eb-4d9c-bdcd-edbfb6872fe4 NW7-0046 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+a1d8cf89-8bdb-4b73-a8ef-1f6a986fe3cc NW7-0047 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+7674f9b7-3ce9-4f0a-b11f-9f19eefcf255 NW7-0048 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+0aa7be73-9d06-463b-ab7c-f66167c1559c NW7-0049 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+1b96d256-870a-430f-8e1b-6c59f2d01ab8 NW7-0050 f40c66bb-03c2-41e2-b6bf-e886b06dfbb0 \N \N 18.00 22.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+81a7fdae-8ec6-4de4-9c86-e35724054b23 PW2-0001 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+7f9ebd21-3052-4703-beee-f31e666d70fa PW2-0002 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+04cbcf5d-eb5e-4158-baf6-67529ecade30 PW2-0003 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+111369a8-c8bf-4e23-b362-3ab064e644b3 PW2-0004 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+9c564914-1c8b-449c-8d9a-c0460b7ae474 PW2-0005 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+594afe60-7014-4458-81de-0833c381c163 PW2-0006 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+1d4789d2-81cc-495c-b5f5-fc15168f14ae PW2-0007 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+3acd24b1-4fe0-48a5-a957-20d8405a484a PW2-0008 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+d1f5d126-60ea-403d-a4a8-bf4eca665cee PW2-0009 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+7117c9fa-a935-4eb2-9d3b-efe822da37f2 PW2-0010 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+4a19b1db-bd4d-43f2-a724-3664aff651b6 PW2-0011 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+cd1eefba-b3bd-420b-ae8d-796431faf820 PW2-0012 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+9201f1b1-d66f-444d-a493-7cff7d5943fb PW2-0013 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+23128f14-e243-47a0-ad29-95ba79781315 PW2-0014 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+60605d7e-050a-4deb-9d27-a015b78dac92 PW2-0015 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+dcb8aad2-0c26-434a-890d-36ccdc5189c0 PW2-0016 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+9a27f799-27e6-404a-a2cb-03f6ff1f5905 PW2-0017 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+60bf94c8-ca0c-40c0-b6d1-ceda0a3bffe5 PW2-0018 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+ddc7f2a5-b756-4f07-b81d-5e7992041d0b PW2-0019 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+0f8aff35-099d-4b7a-846e-ea5c500f1b4b PW2-0020 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+ff1e5396-4069-49a8-a63c-1da819e1a0d0 PW2-0021 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+186ab4c5-3640-4eef-8d0d-dacac140cbd8 PW2-0022 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+72946d32-4fab-4b46-bc78-ef6b07fb76cc PW2-0023 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+0d89cb09-2222-413e-ba32-e4b2d466deee PW2-0024 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+3eee8669-ea99-48b7-8e37-421bf7bc4d7a PW2-0025 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+6315f242-fc93-41a9-af04-21ed3a0dd8ed PW2-0026 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+78676bdc-a045-4d60-a3a5-970fc24b41ed PW2-0027 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+bc8990b7-5330-457a-bfee-565dbb083003 PW2-0028 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+eb5f1dad-6718-42c9-938a-a5e6da123db2 PW2-0029 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+0e076953-dc5e-4e37-af52-14f296029973 PW2-0030 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+9f642f31-8ed6-4f7a-9a23-8d886de8eb2b PW2-0031 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+56f6ba39-9680-403c-8dc5-ed29ebf88f0f PW2-0032 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+dc7915f7-a507-4799-b13d-6171f3a65e12 PW2-0033 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+17ef027e-f260-431e-9460-38baaca5ab3a PW2-0034 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+69a732be-79e5-4463-b0e9-e860f12d690e PW2-0035 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+e4d9bec3-f646-4158-af68-adf5953c570b PW2-0036 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+2b6fe560-b123-4f72-8ac7-bf0be3304b5b PW2-0037 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+864b8c22-25ff-4dbe-b378-9cde2333188e PW2-0038 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+979563c7-1926-47b4-87bc-fa2c5ce559a4 PW2-0039 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+cbd18586-f63b-49e4-8e22-e48374b5902c PW2-0040 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+d5b247d5-ac84-479c-bb19-902d87c7e53c PW2-0041 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 48e11c55-e851-4fd5-a417-83e0ebc02f38 Available \N
+77bb0d2c-dc39-4d5c-a070-d528e5b1d406 PW2-0042 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+6095d6f1-bdcb-435c-894f-39e1526c9064 PW2-0043 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+5cc6dbc2-f9b5-4809-906d-c1a137fa2fdb PW2-0044 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+bf70b8d2-ef9f-4b00-a6aa-a18e13f21d87 PW2-0045 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+fc286a09-7117-4dbb-8ad3-ac9844471c92 PW2-0047 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N a09be182-0447-465e-9924-587e556d2648 Available \N
+9b13ab52-dcda-45fe-8ada-abf170eac7e9 PW2-0048 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 24d06c00-203e-43f5-878c-11b998743033 Available \N
+63f0c8cf-ed11-4d90-96a5-f5d922d5855f PW2-0049 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N 87041d38-7822-4365-89c0-4b086fe574ba Available \N
+675f09d7-36e1-4fc9-990d-658d58795b0e PW2-0050 59af6d56-b7a4-4ef0-8fea-81feab412758 \N \N 20.00 70.00 \N 2026-06-18 21:45:39.385748+00 2026-06-18 21:45:39.385748+00 \N \N \N bbd94d0d-8876-4f4e-a330-816db40d8767 Available \N
+435cf969-a20d-4546-8cd6-58220a2e6839 ER0678 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c96b81d0-3509-43b0-845b-96360e88f016 ER0679 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+248b7c98-a7b2-447f-99e2-8a82672696c4 ER0680 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+382bf4d1-c63b-42d8-abac-4e5075039de1 ER0681 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+605fb0dc-2d30-4552-afbe-0d5a23a1d285 ER0682 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+525650ae-58f0-4495-97ec-d35c2a146303 ER0683 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4c26e8de-cc42-4f54-9bca-941d427be418 ER0684 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8e7ce152-1661-4429-872d-de998553df2c ER0685 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+eb72d728-4af0-4598-9f91-60e26c177747 ER0686 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+fa597b34-5e8c-410e-9e04-f33b9a58593a ER0687 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8c17113a-c479-4b5c-a6f7-0043c76c01a8 ER0688 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+98e7ff80-ce45-462e-89f6-9c35a273dd0f ER0689 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4899a741-3ae1-468c-b939-d7203c9d278d ER0690 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0f91e764-7853-4fad-a0f4-0ce00b81da11 ER0691 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bfb4918e-42ae-478c-9b8c-d9a22721b127 ER0692 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+62ec098d-b506-4998-8105-badd8093d749 ER0693 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1b6a8e2e-2615-4e5a-a669-4431d5e8a438 ER0694 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7c822f82-8075-41cf-82c1-4e1e30410364 ER0695 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c14064b5-9ad2-4e87-a7c5-5a9a6e62fdf3 ER0696 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+07334256-9947-4e9b-86ae-2d6918d32243 ER0697 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f5f9c5c3-6e4d-48de-af1b-9997daccc7c7 ER0698 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4ab50934-ba6a-4558-a3d7-081e2620ecce ER0699 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+764367bb-f14c-4673-89df-7840e52b8ba2 ER0700 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ef47974d-aa3d-4079-a769-9879f3b67a2e ER0701 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+049425f9-63c4-494a-85a8-d7194bf2d2ea ER0702 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d70dbf92-c590-4dad-a502-e77cd72287d1 ER0703 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e78ab105-056f-4fad-b272-880de0c43e0f ER0704 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+64469b41-118a-49e5-aea0-fa00fccc8374 ER0705 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7ba7f07c-e3ab-4883-b981-19b474ea16d4 ER0706 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f4ce1aca-9cfa-488b-9df4-e4a2d5d9e5ba ER0707 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+80f02c09-de0e-4209-b15a-8277d7924f24 ER0708 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4881310c-9906-4296-9a06-58e7f4aba5a2 ER0709 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5be0b47e-81c3-4e63-8241-6b7334806670 ER0710 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+cfe9dc3b-edf3-4fad-8a95-5d272535f941 ER0711 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6600bc04-ba34-430a-90eb-44ba16bb2ea4 ER0712 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5df2be16-6919-4ef6-b3cc-867d16cb431b ER0713 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+dd072174-b8a8-4666-8f6b-74a65efc99e4 ER0714 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bc7c2372-005f-413a-b4dd-0f9006d864a6 ER0715 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+710c0cbd-a84e-4da0-b4fd-16a99e298a2f ER0716 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+57f629bd-098a-426a-a56e-59f1cc2b1bb7 ER0717 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a9f05094-0560-4697-bc7e-d222b981d5f0 ER0718 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b9b69688-4916-4c31-97bd-a41850b1f53b ER0719 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4ff8bffd-f4b9-4fe3-9459-af20d11b9e4c ER0720 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+038a26c2-0707-4d1a-ab02-30f89eac74ed ER0721 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4ac47590-5108-46f7-a4e7-ebdd03311b0f ER0722 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+70427978-ff1d-4311-8cc6-83a653900193 ER0723 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+39ffa64a-912a-462b-a5a7-5567ee6037cb ER0724 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c485df7f-10c0-48b8-a3e9-da6ace846a49 ER0725 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+40022a16-4ea8-43df-8ba3-a8081a3c852d ER0726 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+94196ba4-90da-4fc7-a462-eb3ce161312e ER0727 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8be58671-88ad-4fbd-a53e-663b2791a3aa ER0728 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7d104878-8bff-4415-b0cc-611fd7c0eb25 ER0729 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+61263f25-dcbf-40c2-a712-fb1df5aedf57 ER0730 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f243909c-97f3-4505-9a19-4731914c09db ER0731 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+37de0fbc-148d-4415-a6be-6cf6a13d71ea ER0732 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5be267d3-2d9c-4f73-aa8d-9d3778204e67 ER0733 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+afd94295-0d50-405b-8d64-9cbd5d5a883c ER0734 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bb82bbb8-5963-469e-8137-d0928e6ffc53 ER0735 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+992b5cca-44ba-4cf6-b832-8e84bab1f6c4 ER0736 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5b37d180-a0a2-43c5-8424-2f45d2ccc1f6 ER0737 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6ddf496e-78a6-4b69-901f-f78705a143a9 ER0738 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8422ecff-e155-449f-bb5a-a71934700d04 ER0739 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+fd4aa6ad-8db6-4d07-acb3-bbc97e881924 ER0740 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+db81da05-ad2b-4bbc-b9f3-860d14570299 ER0741 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7c54888c-eb97-4f35-ae44-4275ad114873 ER0742 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1697bb9c-965a-4079-b23d-1e77f1b07b44 ER0743 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ac8a1f37-0737-47ad-852a-bca22017d62c ER0744 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e50747c9-94dd-443e-b4cd-c8e2c8aac26f ER0745 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+216a81a9-faee-40f8-a810-c5eb4afcee18 ER0746 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c9e19e58-6530-4feb-96d5-2550b9763a92 ER0747 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+98e3c8b6-9e81-415f-8794-c04be089d183 ER0748 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+582df621-fb7f-4ad3-8b03-de670e51324f ER0749 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+48a220d9-055d-4baa-aa4d-a81147db9c90 ER0750 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7fa29ddf-542b-4882-9fd9-7306b046d8e4 ER0751 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7fa0789b-191d-4caf-9116-0c19a009fb23 ER0752 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e2322697-f3ef-45c2-beda-a09b1e52c2f6 ER0753 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+67bc0310-4c97-4e29-9678-f67c390342a8 ER0754 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7e7ec831-4cbb-40e7-b91f-a7a5730842da ER0755 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8d2b09c7-61be-401b-9df5-6f95d26e42a3 ER0756 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+acd6d56e-a0b1-47c6-a642-ecad85442293 ER0757 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c5c56705-bb6b-4d28-ae7b-724c33f4b18e ER0758 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+579c9961-57eb-470a-8ab7-8f252c393b44 ER0759 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b8830d03-057a-4ae3-a899-1197de215240 ER0760 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+57483747-e0c4-41fd-bc1f-67dfdbc856f6 ER0761 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7a37b8fd-6cbf-4e54-a946-cb35adc096dd ER0762 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+de69cf1d-9316-4f9c-ae32-511808b4f02b ER0763 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+951a5bf1-9747-403e-bff8-22868cd3a571 ER0764 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+32556dea-4414-483c-826b-cbec31491795 ER0765 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b5b73714-bce5-40df-917b-4f5f704575d0 ER0766 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7335edc0-7572-474b-b6c1-57f7310fe71e ER0767 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4adcc103-4108-4207-91a0-5bbbc7cf0df4 ER0768 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e798279b-4339-451b-a6c4-24c4759ebf58 ER0769 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+95e3ff2e-11c7-4e28-8f18-f7fb2bea4ba7 ER0770 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9793d770-7265-4d18-a17a-fcf9b5c83ef5 ER0771 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f7596425-2787-4260-a4e0-44533d8cc266 ER0772 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+85a3c8c9-41e1-42fd-abfe-063afdd00d2f ER0773 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9fe255ee-9c63-4c4e-8049-189418c28b83 ER0774 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ab2118db-9686-497e-8de7-ca4823729368 ER0775 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+416d2890-0c49-41e6-9880-2c28fb5f15c8 ER0776 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4868ec3a-545c-45ef-998f-14b2cf9af0e3 ER0777 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ebc57858-ee33-4606-84a5-0739b802c819 ER0778 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+806a5772-746f-4779-8960-00a2b042dbba ER0779 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2acc3c06-f060-4078-ae4e-43a1ffd941a9 ER0780 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+306283de-124d-48f0-a985-5e2f77e6cd0a ER0781 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+86430e7b-2846-4068-b31a-437fdfd3b900 ER0782 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d6409b34-fcf3-462b-a1f3-9ec84336d7c0 ER0783 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1bc2711e-1689-46db-8b08-4e7fa96971f0 ER0784 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+06e6a792-0ade-41a7-a0db-a326f0422486 ER0785 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+40b6a792-56ad-4827-ba50-654490e0ee92 ER0786 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+01354f9a-44ac-4591-b7ad-47e21e22ede7 ER0787 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a3f33698-e13b-4158-a681-3893532e4510 ER0788 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+cea25a2f-d924-4bd5-bd85-d632904c72dd ER0789 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b9a82d39-7c35-44a3-a117-7d7df81a3eb7 ER0790 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6205a59f-d5fe-4c9b-a3c8-3b555b5b561e ER0791 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+686e0009-b0aa-4baf-8030-577851da73e7 ER0792 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7a17553b-e6af-4225-8cc3-8fcd8c43803b ER0793 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8908557c-eb78-4b94-8a6a-34cee0c156dd ER0794 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8383fbf1-b9b1-44ec-9081-1cbf86276616 ER0795 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5d236e4e-7162-45c2-9837-cdc8599df21b ER0796 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1e950132-ad6e-4d6f-a883-46a704e070f0 ER0797 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+baf64a84-7772-4828-b142-991157d565d6 ER0798 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+69162694-d59a-4443-9939-08153537d32d ER0799 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9e234a46-2c18-455b-898b-9b4527954dee ER0800 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5ef5ef93-0924-467c-ad28-f60f84f12846 ER0801 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f930e382-08cc-48d2-a6c7-e6595a8eef98 ER0802 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+57389a7f-68b7-49c0-8b7b-374cab390637 ER0803 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+76dfa633-ab14-42f9-80f0-53c18839ba61 ER0804 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e4faa0d4-c5c8-44a7-966d-9637e3c5a6f0 ER0805 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+fcf7cd33-b606-4390-ac75-3b5b9d786d61 ER0806 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+26e2aea9-017c-45de-83ae-2e61b1848d6a ER0807 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+68fe9fa3-4775-4083-8a0f-cc781279b24a ER0808 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d9dc9128-98fe-46ed-bb3d-596bb53fcbe6 ER0809 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ab9ba48f-007d-4242-a932-eb0777eb99de ER0810 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a9e3c19d-21c3-4b6f-9b25-628171cac8f6 ER0811 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d6f6cad4-5cdb-47d0-8bea-f9a27aa4c6ab ER0812 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+684ea112-4d2b-418e-b286-db92c798c9d3 ER0813 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1db0c253-e7ff-49c7-981e-b5e8d983f4d7 ER0814 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5e9a0ede-3634-4869-b012-e67022f6f980 ER0815 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+745371e5-b876-494d-a1e5-6b9a0604ff45 ER0816 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e889f7db-f5d7-474e-ac3e-8ae820033899 ER0817 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1680734c-5657-4e05-b73b-aa2366c7e095 ER0818 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4153fc81-f4f8-4ef8-960c-2b79394b4340 ER0819 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3ce9a9e6-e7da-4cf4-93b4-d5218f368119 ER0820 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e3903629-89c2-4f67-a723-424ea74b8266 ER0821 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+92ce7d8e-e5f6-4dc7-afc1-813d3fa92216 ER0822 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+33bd4e92-93a2-47dc-abe1-757d8083b913 ER0823 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ec12c97a-75f5-45c5-84a0-f2a969d51cd9 ER0824 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d5005a5f-d6ff-4f98-9686-070b0e15044c ER0825 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1b72baf8-3ab1-4662-885c-38f0659fc698 ER0826 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ae474f82-c66a-48a0-a474-d8aee6ab1d4c ER0827 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+82f8d395-3aca-492a-bce2-f3bbc104869c ER0828 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b82cbd67-69c5-42f5-882e-7edc8ed01459 ER0829 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9394a18c-a5c3-4128-9c92-3e3ac881f204 ER0830 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+114fea4f-3f39-4633-b4f0-5b6d81a6cda5 ER0831 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b8c7449a-da28-4156-a9d9-81b5648709a2 ER0832 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bd120c7f-2519-43e5-b6a0-c7a85f6a2f4a ER0833 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ab5a9863-3f7b-4632-b13e-e7e4fb8552b0 ER0834 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7c116cd3-ee35-4aae-be9b-6b7b63a1cb58 ER0835 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4eae9620-01e4-4e47-bd9a-283fc8770f30 ER0836 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bf81b6ec-893f-4d31-8a84-2695c26c7ddd ER0837 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8e5ad2b8-1bec-4420-853e-75a49bdbbe81 ER0838 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+33315cb4-12ff-447c-bbbb-9789cc2c8217 ER0839 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6a73e85b-525a-4bf9-af31-81f2d1274c39 ER0840 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+64cfbdd6-ea26-4b89-8b11-26089e019ff4 ER0841 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d5543658-4be4-4f31-a9be-8b6c028ed115 ER0842 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+682018ac-c3ef-4b3f-a565-2e6fe7c78934 ER0843 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+dd8edee8-3c93-493a-a2cc-3b6142da46af ER0844 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+635c7945-6e6e-4c44-a9f7-049baed1e187 ER0845 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+427ebb52-dc84-43e4-a463-ace2d8fb996e ER0846 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f34e0941-142d-4e20-a049-23d78f3cc9d5 ER0847 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f9d172d2-7dcf-43dc-b3c1-5bed8fd644eb ER0848 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9a5d62f6-cbab-4503-ab5e-aa825ebab0bc ER0849 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8f19f00b-85fc-4566-abb2-5cc47c8f2602 ER0850 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+16eaa058-1592-4798-a36d-9b106ee099e1 ER0851 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+29e35dea-e0a4-47dd-8a69-fcbe27be2e09 ER0852 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1e5e6a4c-ec31-43fa-abe4-a1e97096bce0 ER0853 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+438326c1-c3c2-4dd9-90f2-3880095eb429 ER0854 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ce171a57-4ec7-4c51-81a8-2c6f74f2c42d ER0855 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+42474174-12bf-43be-a311-f31fa8148f9e ER0856 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d07fb69f-27b6-48fd-a19d-b216f721e5f8 ER0857 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9644cb51-9afd-4d9f-8608-f43dd895af10 ER0858 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ebe802ba-0af9-46ac-bb6b-062ecb7d4da5 ER0859 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c15e6356-5089-4111-a376-a1587525fe4b ER0860 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f592d135-8324-49a9-a484-8b7aecc056c5 ER0861 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c03bf451-103a-4ebc-9aa0-9846b943622c ER0862 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+fc4d1d55-13a9-4d1c-88f0-c1453e5658ab ER0863 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e3cc3a35-2a02-4af6-aab9-c4785f32e844 ER0864 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a295c10a-5f02-4005-a433-493065fe79b0 ER0865 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+abf4cc6e-565b-415e-86b5-6d02804ac198 ER0866 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9f6a1836-0ade-4a44-bab5-0947ddfc0c48 ER0867 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+feb0e16d-165a-4ba1-afc5-b0b4e43e24bc ER0868 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a871c758-8b86-425d-a029-3b8c183b44dc ER0869 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+45e4c68f-5f22-4c18-8b7d-a1a2802a463b ER0870 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+31ae6970-0909-4a13-b83e-1676e553d985 ER0871 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+dce29957-4dc9-41dd-965d-9b3c82a993ce ER0872 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a66da59c-95f9-4613-a0c4-3ce8f0508dba ER0873 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6bb17d7f-c191-4d47-aa5c-d6d0c8bca80b ER0874 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+f39a12c0-bce3-41cc-9c1a-ed388e6680ed ER0875 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6213220d-f0af-45db-b4d8-89fe5b8d8cc7 ER0876 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c120eb7a-5a2f-4f58-95ab-a89d0712f03b ER0877 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+03381d7a-7606-42c6-bfdf-7b297c707085 ER0878 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4f0bec2a-d23e-4d0e-aa37-1b093b46e8b4 ER0879 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+1d4706c5-503c-4cb1-87fd-eb6116f9c98e ER0880 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a3f9a680-6f9b-4b86-9d06-d468c1d42240 ER0881 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+22b05c56-48a9-4a89-bf3d-fff8816b00dc ER0882 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+39d94b67-e81f-43f8-86a6-621392f429df ER0883 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+01cd0e24-7b18-4c45-9e6b-119cb351d6dc ER0884 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7bb78dfa-35e4-4951-a94a-7a6fea0b2e4b ER0885 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ebcc3e5c-fe4e-4e6a-bf62-76e6f7a4c9e1 ER0886 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a2b82a07-46b8-43f6-b5c2-327fb717642b ER0887 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+61cadf84-620d-4dd6-a122-1d16b2dd34c2 ER0888 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+024e8b55-c742-4a30-ab81-15103f2471e4 ER0889 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+77602db4-eb97-4af7-8e25-8d93f3db02eb ER0890 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+57148f3c-5c00-4efc-964f-6125130e743f ER0891 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+be3d7df6-788c-4abd-9e96-6353341e46fb ER0892 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+c33c8e57-015a-4375-ba18-9d48c8729a51 ER0893 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+95b390c2-24f9-468f-bee5-e1c11f867ab2 ER0894 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ebe0cbca-7a9a-4a71-8ddd-bbec78a845b4 ER0895 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3b1d798c-d9e4-4a06-b797-7a6645596717 ER0896 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+610d62d0-2de0-42c6-b9db-f51bb78400c1 ER0897 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+4f68fe2e-f974-4ff9-bf17-8515abde6cde ER0898 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3c5ae00e-c0ea-4555-8727-47d8541f82ba ER0899 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+53ed08dc-5f58-4368-a671-824b394bf2a0 ER0900 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+39cb0966-812a-441b-ba85-54d67d11b066 ER0901 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+99aea98f-003d-472f-87f7-6ccef1b0f9e4 ER0902 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+20117681-d24e-40b2-8f27-f6b4db4a03a9 ER0903 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a063e570-62d8-4b85-af7a-a42a825c4ab8 ER0904 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+395a11c0-bb43-43e5-b2be-c61057ac4b0b ER0905 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+858b5732-7102-4758-99f6-6fc56bb9b832 ER0906 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+88476adf-0eb1-47e1-84ab-6fcadc5a8336 ER0907 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+5c173e05-eb27-47ea-99d7-78b232fc5167 ER0908 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+633d2059-9db1-4694-b72f-2364bb71ec85 ER0909 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+95d61f1d-6075-417f-b9d7-e3c67edd4db3 ER0910 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a11d8799-5355-401f-adb6-021bc5104d04 ER0911 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d23bef10-c24a-4c3e-a190-c4b0ab0a5e15 ER0912 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3f91a39d-fd86-43c0-9353-1f222a4d3036 ER0913 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+76e980c1-ea22-404e-b3a6-8dab210464ff ER0914 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+bc06e92d-8197-4159-82f9-58cc9d228ecc ER0915 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+444e6c25-7b1f-4934-8560-68e0d628965a ER0916 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2f28fe5a-6067-4310-9b67-043d3d1c52ab ER0917 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2d21cd29-97c1-4625-8165-b0fd401c763a ER0918 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7e8cc65d-b3ac-45f0-b191-93b0dd085048 ER0919 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0b4c92e2-4a10-45e6-81dd-cb615b59e679 ER0920 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+e1d2760b-c182-4fa0-9435-27e3970cc83d ER0921 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+a688bf31-299d-4fae-b6fb-b4b919410eff ER0922 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+d5ee413f-ba00-424f-9b25-53b4de502fcd ER0923 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+7aafb7ce-18ad-455c-88d9-816c495773a5 ER0924 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+158d9a27-7cca-43dc-bb2f-e513119d23c6 ER0925 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+728a1f8f-7e61-4c5b-8fec-ce4d21c6c05a ER0926 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+ec3eb9f6-be72-4e59-9b9f-aebebba90329 ER0927 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+9e389795-ed8c-4e3d-a8bd-2dbccbe17580 ER0928 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3e284b3f-4412-46e2-8a4c-8b0ae6c435b2 ER0929 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+0edf7d96-ea4b-4b6a-80bc-3d7db212e709 ER0930 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+524905e9-e099-4777-b7f5-3ae75e4bbdfe ER0931 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+3239969b-9d1b-4c63-9938-35e1b9c87bcf ER0932 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+93e7d290-b4c2-4dcf-88ce-0290de9c27fc ER0933 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+b93499ce-f75c-4b8a-9d9a-6af16b63ff74 ER0934 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+6eb2257a-b120-480b-ac29-42cbcc9a40fd ER0935 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+93e191c2-14a4-46f6-9f63-4b9bf2bc9425 ER0936 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+2d0df415-f4bf-4c83-a15f-213c446f3636 ER0937 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8397122b-da2f-4680-a9aa-0d3032e1a757 ER0938 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+71e1b967-cb31-4899-bbe1-05077795650a ER0939 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+8e12d3f2-4625-4d36-9ed6-ed094dd90efa ER0940 1a0c0d78-a84b-4e3c-a8e6-3b60ed7eafb0 \N \N 0.00 70.00 Seeded Ethio-Djibouti Railway NW5 fleet record. 2026-06-19 13:19:43.231712+00 2026-06-19 13:19:43.231712+00 \N \N \N \N IMPORT_READY d756db2f-057a-4d57-acd5-633fcc6c4244
+\.
+
+
+--
+-- Data for Name: warehouse_activity_log; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.warehouse_activity_log (id, inventory_id, warehouse_id, activity_type, description, performed_by, created_at, updated_at, deleted_at) FROM stdin;
+\.
+
+
+--
+-- Data for Name: warehouse_allocation_rules; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.warehouse_allocation_rules (id, name, priority, freight_type, trade_direction, cargo_type_code, container_status, requires_inspection, target_facility_code, target_yard_code, target_warehouse_code, target_zone_code, storage_type, is_active, created_at, updated_at, deleted_at) FROM stdin;
+\.
+
+
+--
+-- Data for Name: warehouse_fee_invoice_items; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.warehouse_fee_invoice_items (id, invoice_id, fee_rule_id, fee_type, description, quantity, unit_rate, amount, currency, chargeable_days, free_days, created_at, updated_at, deleted_at) FROM stdin;
+\.
+
+
+--
+-- Data for Name: warehouse_fee_invoices; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.warehouse_fee_invoices (id, invoice_number, booking_id, customer_id, inventory_id, facility_id, warehouse_id, yard_id, zone_id, invoice_type, status, subtotal_amount, tax_amount, total_amount, paid_amount, balance_amount, currency, period_start, period_end, issued_at, due_date, paid_at, cancelled_at, payments, notes, created_at, updated_at, deleted_at) FROM stdin;
+\.
+
+
+--
+-- Data for Name: warehouse_fee_rules; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.warehouse_fee_rules (id, name, rule_type, priority, freight_type, trade_direction, cargo_type_code, container_type, facility_id, warehouse_id, yard_id, zone_id, free_days, rate_per_day, currency, is_active, created_at, updated_at, deleted_at) FROM stdin;
+\.
+
+
+--
+-- Data for Name: warehouse_inspection_reports; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.warehouse_inspection_reports (id, inventory_id, booking_id, customer_id, report_type, inspection_status, has_damage, damage_description, has_weight_loss, expected_weight, actual_weight, weight_loss, weight_loss_unit, has_missing_items, missing_items_description, remarks, inspected_by_id, inspected_at, created_at, updated_at, deleted_at) FROM stdin;
+\.
+
+
+--
+-- Data for Name: warehouse_inventory; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.warehouse_inventory (id, warehouse_id, yard_id, zone_id, booking_id, cargo_id, container_id, goods_id, quantity, weight, volume, status, arrived_at, inspected_at, ready_for_loading_at, notes, created_at, updated_at, deleted_at, inspection_started_at, inspection_completed_at, ready_for_pickup_at, release_date, gate_cleared_at, stored_at, reserved_at, loaded_at, dispatched_at) FROM stdin;
+\.
+
+
+--
+-- Data for Name: warehouse_inventory_movement; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.warehouse_inventory_movement (id, inventory_id, from_warehouse_id, from_yard_id, from_zone_id, to_warehouse_id, to_yard_id, to_zone_id, remarks, moved_by, moved_at, created_at, updated_at, deleted_at) FROM stdin;
+\.
+
+
+--
+-- Data for Name: warehouse_loadings; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.warehouse_loadings (id, warehouse_inventory_id, booking_id, wagon_id, loaded_at, loaded_by, loaded_weight, notes, created_at, updated_at, deleted_at) FROM stdin;
+\.
+
+
+--
+-- Data for Name: warehouse_yards; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.warehouse_yards (id, warehouse_id, name, code, type, capacity_weight, capacity_containers, current_weight, current_containers, status, is_active, created_at, updated_at, deleted_at, max_weight, max_volume, current_volume) FROM stdin;
+\.
+
+
+--
+-- Data for Name: warehouse_zones; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.warehouse_zones (id, yard_id, name, code, type, capacity_weight, capacity_containers, current_weight, current_containers, status, is_active, created_at, updated_at, deleted_at, max_weight, max_volume, current_volume) FROM stdin;
+\.
+
+
+--
+-- Data for Name: warehouses; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.warehouses (id, name, code, type, station_id, location_name, capacity_weight, capacity_containers, current_weight, current_containers, status, is_active, created_at, updated_at, deleted_at, max_weight, max_volume, current_volume) FROM stdin;
+\.
+
+
+--
+-- Data for Name: weight_limit_rules; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.weight_limit_rules (id, container_type_id, max_vgm_tons, created_at, updated_at, deleted_at, effective_from, effective_to, trade_direction) FROM stdin;
+f2d2ea7f-5309-452c-95b1-24a239959434 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 26.000 2026-06-16 17:56:01.496816+00 2026-06-18 12:47:49.320476+00 2026-06-18 12:47:49.320476+00 2026-01-01 2026-06-20 IMPORT
+5c663ae8-4358-4361-beae-f4a730dc37bc a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 26.000 2026-06-16 17:56:01.496816+00 2026-06-18 12:47:53.52587+00 2026-06-18 12:47:53.52587+00 2026-01-01 \N EXPORT
+1c9becef-1809-494e-ab07-1e69ec3368c2 b76986fe-8ab5-420b-afb0-7fb4bbe270ef 28.000 2026-06-16 17:56:01.496816+00 2026-06-18 12:47:57.202411+00 2026-06-18 12:47:57.202411+00 2026-01-01 \N IMPORT
+a5dd3458-101a-4225-aa0d-0388635da5ea b76986fe-8ab5-420b-afb0-7fb4bbe270ef 28.000 2026-06-16 17:56:01.496816+00 2026-06-18 12:48:01.092702+00 2026-06-18 12:48:01.092702+00 2026-01-01 \N EXPORT
+5fe37870-0886-491c-a85e-e65f4f03a432 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 30.000 2026-06-17 06:54:06.530499+00 2026-06-17 06:54:28.451044+00 2026-06-17 06:54:28.451044+00 2026-06-20 2027-02-20 IMPORT
+58520f32-e421-441f-875d-dd956b571ae3 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 20.000 2026-06-18 12:49:34.395183+00 2026-06-18 12:49:34.395183+00 \N 2026-06-18 2026-08-18 IMPORT
+4a65b98a-e922-4dab-96d9-f78cba25a9d4 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 25.000 2026-06-18 12:50:22.587763+00 2026-06-18 12:50:22.587763+00 \N 2026-06-18 2026-08-18 EXPORT
+25fed063-0b85-42a3-8dad-ec3090c292c6 a094d16d-fe2a-406f-8d6d-6ecd1821b1ea 20.000 2026-06-22 07:04:26.724799+00 2026-06-22 07:04:54.043491+00 2026-06-22 07:04:54.043491+00 2026-06-22 \N IMPORT
+\.
+
+
+--
+-- Data for Name: yards; Type: TABLE DATA; Schema: freight; Owner: -
+--
+
+COPY freight.yards (id, code, label, country, is_active, display_order, created_at, updated_at, deleted_at) FROM stdin;
+141706fa-8691-4530-aee5-54fbb67249bd DIREDAWA Diredawa Ethiopia t 24 2026-06-17 13:16:31.032955+00 2026-06-17 13:28:41.280385+00 2026-06-17 13:28:41.280385+00
+156f8f2a-2c74-475b-b2f7-d8d495fdbf14 SEBETAU Sebetau Ethiopia t 26 2026-06-18 06:16:58.48713+00 2026-06-18 10:26:56.06532+00 2026-06-18 10:26:56.06532+00
+306df7bf-8004-4a7a-b0ca-80fcd8d8615f WERTYUI wertyui ertyui t 25 2026-06-18 06:16:51.949013+00 2026-06-18 10:26:59.367476+00 2026-06-18 10:26:59.367476+00
+4de098c8-b733-4189-9a09-a38367ce34b9 NEW new new t 24 2026-06-18 06:15:34.430241+00 2026-06-18 10:27:03.378093+00 2026-06-18 10:27:03.378093+00
+7c09b3e5-7e94-4109-bb20-9be1a9eb3b78 INDODE Indode Ethiopia t 25 2026-06-19 06:48:13.634814+00 2026-06-19 06:49:37.157262+00 \N
+17964b5f-4b99-4f0e-b855-1aa5d4237934 MEISO Meiso Ethiopia t 11 2026-06-17 13:13:20.236603+00 2026-06-17 13:28:30.839237+00 \N
+7bfeb17b-6a59-4ff6-a9fa-4c36a5c832d0 BEKE Beke Ethiopia t 12 2026-06-17 13:15:26.608293+00 2026-06-17 13:28:30.839237+00 \N
+de0d04ad-d6dc-4ca4-8618-8f062e63d0a8 AREWA Arewa Ethiopia t 14 2026-06-17 13:17:44.923816+00 2026-06-17 13:28:30.839237+00 \N
+af5896ab-5a34-4b84-85cc-7f3265a86d79 ADIGALA Adigala Ethiopia t 15 2026-06-17 13:18:21.896235+00 2026-06-17 13:28:30.839237+00 \N
+2302b6d6-787e-42b7-905d-d31234ea341c AYSHAH Ayshah Ethiopia t 16 2026-06-17 13:19:46.62276+00 2026-06-17 13:28:30.839237+00 \N
+87041d38-7822-4365-89c0-4b086fe574ba DJIB_PORT Old Port Djibouti t 24 2026-06-16 17:00:40.976144+00 2026-06-19 06:49:38.226759+00 \N
+7b8e2dfa-ea7c-409b-bcd4-077caf68cd0d DEWALE Dewale Ethiopia t 17 2026-06-17 13:20:44.540549+00 2026-06-17 13:28:30.839237+00 \N
+d756db2f-057a-4d57-acd5-633fcc6c4244 DJIBOUTI Djibouti Djibouti t 1 2026-06-16 17:56:01.344427+00 2026-06-18 05:51:15.730366+00 2026-06-18 05:51:15.730366+00
+9701100d-e89f-4f83-91d0-dd49b1511fad SEBETA Sebeta Ethiopia t 1 2026-06-17 06:45:49.65848+00 2026-06-18 05:51:19.673184+00 2026-06-18 05:51:19.673184+00
+f7ca751e-8202-4daf-a949-1deeb069e3e9 ADDIS_ABABA Addis Ababa Ethiopia t 2 2026-06-16 17:56:01.344427+00 2026-06-18 05:51:23.800667+00 2026-06-18 05:51:23.800667+00
+ea22b531-e25f-4c13-beb2-2f64b2d45ceb LEGACY_DEST Legacy Destination Ethiopia t 11 2026-06-16 17:00:40.976144+00 2026-06-17 13:22:21.310285+00 2026-06-17 13:22:21.310285+00
+fe9ea43f-06fe-4eaa-9470-92e3581a5624 ALISABEH Alisabeh Ethiopia t 18 2026-06-17 13:21:20.323222+00 2026-06-17 13:28:30.839237+00 \N
+c6323573-32fb-47c7-aec6-c96ac2eada89 HOLHOL Holhol Ethiopia t 19 2026-06-17 13:21:47.839364+00 2026-06-17 13:28:30.839237+00 \N
+bbd94d0d-8876-4f4e-a330-816db40d8767 NAGAD Negad Djibouti t 20 2026-06-16 17:00:40.976144+00 2026-06-17 13:28:30.839237+00 \N
+67c2f9ee-d6a2-4be7-8ba0-9bfd35489ed6 DIREDAWA1 DireDawa1 Ethiopia t 22 2026-06-19 06:49:18.365396+00 2026-06-19 06:49:40.138658+00 \N
+24d06c00-203e-43f5-878c-11b998743033 DIRE_DAWA Dire Dawa Ethiopia t 3 2026-06-16 17:00:40.976144+00 2026-06-18 05:51:27.154646+00 2026-06-18 05:51:27.154646+00
+48e11c55-e851-4fd5-a417-83e0ebc02f38 KALITY Gelan Multi-Purpose Port (Indode) Ethiopia t 3 2026-06-16 17:00:40.976144+00 2026-06-18 05:51:30.879218+00 2026-06-18 05:51:30.879218+00
+aa321fea-6546-462a-a3c0-a8d6de647584 LEGACY_ORIGIN Bishoftu Ethiopia t 4 2026-06-16 17:00:40.976144+00 2026-06-18 05:51:34.39314+00 2026-06-18 05:51:34.39314+00
+4e4fbd1c-f2a4-4c48-b9da-505e255b7b82 MODJO Modjo Ethiopia t 4 2026-06-16 17:56:01.496816+00 2026-06-18 05:51:37.868431+00 2026-06-18 05:51:37.868431+00
+a09be182-0447-465e-9924-587e556d2648 MOJO Mojo Dry Port Ethiopia t 6 2026-06-16 17:00:40.976144+00 2026-06-18 05:51:42.999874+00 2026-06-18 05:51:42.999874+00
+b463d0ba-82b5-4360-b3c9-44b15081cde6 ADAMA Adama Ethiopia t 7 2026-06-17 13:10:04.073734+00 2026-06-18 05:51:47.623108+00 2026-06-18 05:51:47.623108+00
+4a8f840c-68a0-4034-8f13-252bfd6bad7a FETO Feto Ethiopia t 8 2026-06-17 13:10:26.832176+00 2026-06-18 05:51:51.366914+00 2026-06-18 05:51:51.366914+00
+be4297e8-94f5-4193-b4c9-bd36b3dde0df METHARA Methara Ethiopia t 9 2026-06-17 13:11:23.915939+00 2026-06-18 05:51:56.064459+00 2026-06-18 05:51:56.064459+00
+e49f845b-bf10-4f41-a416-ca3ea9fd2c05 SIRBA Sirba Ethiopia t 10 2026-06-17 13:11:55.754141+00 2026-06-18 05:52:00.685554+00 2026-06-18 05:52:00.685554+00
+1acf9b6a-5a6e-4022-b194-59a6f638146e DCT DCT Djibouti t 23 2026-06-17 13:16:49.345736+00 2026-06-19 06:49:40.138658+00 \N
+\.
+
+
+--
+-- Data for Name: account_configurations; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.account_configurations (created_at, updated_at, id, is_mfa_required, user_id) FROM stdin;
+\.
+
+
+--
+-- Data for Name: application; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.application (created_at, updated_at, id, name, key) FROM stdin;
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019bcb17-5470-7604-8708-7ed04d842b41 {"am": "የስማርት ኦፊስ ማንነት እና መዳረሻ አስተዳደር", "en": "Smart Office Identity and Access Management"} iam
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019bcb18-571a-715e-9096-2689c7b31da9 {"am": "የስማርት ኦፊስ የስብሰባ አዳራሽ ማስያዣ", "en": "Booking Service"} booking
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019bcb18-70ca-7311-8a9b-d7667752ea50 {"am": "ስማርት ኦፊስ ቦት", "en": "Smart Office Bot"} bot
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019bcb18-95d7-7506-b6c4-831d8645135f {"am": "ስማርት ኦፊስ ክሮኒክል", "en": "Smart Office Chronicle"} chronicle
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019bcb18-b432-73fb-b697-975d33726400 {"am": "የስማርት ኦፊስ ሰነድ አስተዳደር ሥርዓት", "en": "Smart Office Document Management System"} dms
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019bcb18-c9e9-7658-bcaf-1c7723299ebb {"am": "የስማርት ኦፊስ ሜታቤዝ ዳሽቦርድ", "en": "Smart Office Metabase Dashboard"} metabase
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019bcb18-e388-700d-afd5-96294d6d1c42 {"am": "የስማርት ኦፊስ የሥራ አፈጻጸም መከታተያ", "en": "Smart Office Performance Management"} performance
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019bcb18-f903-7257-a234-164992b7ae18 {"am": "የስማርት ኦፊስ የደብዳቤና መዝገብ አስተዳደር", "en": "Smart Office Record Management"} record
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 7f5a2175-c270-495b-bec9-d59ddbdab5d1 {"am": "EDR Freight App", "en": "EDR Freight App"} edr_freight_app
+\.
+
+
+--
+-- Data for Name: default_positions; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.default_positions (created_at, updated_at, id, name, key, description, rank, parent_id, default_unit_id) FROM stdin;
+\.
+
+
+--
+-- Data for Name: default_units; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.default_units (created_at, updated_at, id, key, name, description, organization_type_id) FROM stdin;
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b8a3052f-fb2b-4271-a42d-b17da8e77ca8 ህብረት ስራ ጽ/ቤት {"am": "ህብረት ስራ ጽ/ቤት", "en": "Cooperative Office"} ህብረት ስራ ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 fcfba03b-1bd8-496c-bba2-fbf13dde1f47 ደረቅ ቆሻሻ ጽ/ቤት {"am": "ደረቅ ቆሻሻ ጽ/ቤት", "en": "Solid waste office"} ደረቅ ቆሻሻ ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 54fb9e9d-a4b9-49ac-aa76-b355cb85eabc ትምህርት ጽ/ቤት {"am": "ትምህርት ጽ/ቤት", "en": "Education Office"} ትምህርት ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 482cafb1-5b73-4366-b956-da9c35cfff8f ዲዛይንና ግንባታ ስራዎች ጽ/ቤት {"am": "ዲዛይንና ግንባታ ስራዎች ጽ/ቤት", "en": "Design and Construction Works Office"} ዲዛይንና ግንባታ ስራዎች ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 167867a1-3092-48b4-9c6b-5f8ef09262f2 የቤቶች አስተዳደር ጽ/ቤት {"am": "የቤቶች አስተዳደር ጽ/ቤት", "en": "Housing Management Office"} የቤቶች አስተዳደር ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 5fe2263b-4a55-414b-bd30-32f67d4f970b የህብረተሰብ ተሳትፎና በጎ ፈቃድ ማስተባበሪያ ጽ/ቤት {"am": "የህብረተሰብ ተሳትፎና በጎ ፈቃድ ማስተባበሪያ ጽ/ቤት", "en": "Community Participation and Charity Coordination Office"} የህብረተሰብ ተሳትፎና በጎ ፈቃድ ማስተባበሪያ ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b7c200df-e736-4ccd-8f26-13634defe718 የስራ ኢን/ኢንዱስትሪ ልማት ጽ/ቤት {"am": "የስራ ኢን/ኢንዱስትሪ ልማት ጽ/ቤት", "en": "Employment and Industry Development Office"} የስራ ኢን/ኢንዱስትሪ ልማት ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 ae19fd7f-8288-4c14-9708-9fb999d302dc ኢንዱስትሪ ልማት ጽ/ቤት {"am": "ኢንዱስትሪ ልማት ጽ/ቤት", "en": "Industry Development Office"} ኢንዱስትሪ ልማት ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 c470c6cf-0c90-4850-b474-0271a1f2d155 ዋና ስራ አስፈጻሚ ጽ/ቤት {"am": "ዋና ስራ አስፈጻሚ ጽ/ቤት", "en": "Main Executive Office"} ዋና ስራ አስፈጻሚ ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 f9f0fcf4-4def-4aa6-97c6-e86395034c39 ደንብ ማስከበር ጽ/ቤት {"am": "ደንብ ማስከበር ጽ/ቤት", "en": "Regulations Enforcement Office"} ደንብ ማስከበር ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 4eb46597-8541-4a38-b14e-ae65387b9a01 ፋይናንስ ፅህፈት ቤት {"am": "ፋይናንስ ፅህፈት ቤት", "en": "Finance Office"} ፋይናንስ ፅህፈት ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 aa0f4c03-5143-4efc-bb72-38dc7c2fedfe ምክር ቤት ጽ/ቤት {"am": "ምክር ቤት ጽ/ቤት", "en": "Council Office"} ምክር ቤት ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 1394b9a9-5143-4829-a773-f020813b188a አቃቤ ህግ ጽ/ቤት {"am": "አቃቤ ህግ ጽ/ቤት", "en": "Prosecutor's Office"} አቃቤ ህግ ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 9386a1d8-a298-4079-bd08-9214b3a15914 ሰላምና ፀጥታ ጽ/ቤት {"am": "ሰላምና ፀጥታ ጽ/ቤት", "en": "Peace and Security Office"} ሰላምና ፀጥታ ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 e5cbb5cf-0580-4ba8-b89f-d8815ec57867 ደንብ ማስከበር ጽ/ቤት {"am": "ደንብ ማስከበር ጽ/ቤት", "en": "Enforcement Office"} ደንብ ማስከበር ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 819ad133-0797-449f-9bba-c90400adbcbb ፕላንና ልማት ኮሚሽን ጽ/ቤት {"am": "ፕላንና ልማት ኮሚሽን ጽ/ቤት", "en": "Planning and Development Commission Office"} ፕላንና ልማት ኮሚሽን ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 6a9012a2-757e-4d27-8768-d7148317fb78 የንግድ ፅ/ቤት {"am": "የንግድ ፅ/ቤት", "en": "Business Office"} የንግድ ፅ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 1b0d56fa-88ae-440e-a892-fb8eac13dd29 የአ/ አና ከተማ ግብርና ጽ/ቤት {"am": "የአ/ አና ከተማ ግብርና ጽ/ቤት", "en": "Rural and Urban Agriculture Office"} የአ/ አና ከተማ ግብርና ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 0d76a049-8db4-4660-90df-2a7f04742364 የመሬት ልማትና አስተዳደር ጽ/ቤት {"am": "የመሬት ልማትና አስተዳደር ጽ/ቤት", "en": "Land Development and Administration Office"} የመሬት ልማትና አስተዳደር ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 6983ad92-0fa9-4eb7-a89c-b48f74e9399c አካባቢ ጥበቃ ጽ/ቤት {"am": "አካባቢ ጥበቃ ጽ/ቤት", "en": "Environmental Protection Office"} አካባቢ ጥበቃ ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 20055f8d-15ba-4ec7-b6bf-23c6571ccdc7 የከተማ ውበትና አረንጓዴ ልማት ጽ/ቤት {"am": "የከተማ ውበትና አረንጓዴ ልማት ጽ/ቤት", "en": "Urban Beautification and Green Development Office"} የከተማ ውበትና አረንጓዴ ልማት ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a0c2be20-1125-4e7b-a8fa-ef29714bc57e ፐብሊክ ሰርቪስ የሰዉ ሀብት አስተዳደር {"am": "ፐብሊክ ሰርቪስ የሰዉ ሀብት አስተዳደር", "en": "Public Service Human Resource Management"} ፐብሊክ ሰርቪስ የሰዉ ሀብት አስተዳደር 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 878c7ea5-60ec-4e82-9233-f7f78c54641f መንግስት ህንጻ ጽ/ቤት {"am": "መንግስት ህንጻ ጽ/ቤት", "en": "Government Building Office"} መንግስት ህንጻ ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 38839276-731b-4ed4-9773-e1350c9e38f7 ባህልና ቱሪዝም ጽ/ቤት {"am": "ባህልና ቱሪዝም ጽ/ቤት", "en": "Culture and Tourism Office"} ባህልና ቱሪዝም ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 ff9aaee4-7e33-4260-b795-f08a61509921 ጤና ጽ/ቤት {"am": "ጤና ጽ/ቤት", "en": "Health Office"} ጤና ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 ea66022a-6a1e-46c0-b7f4-04e0f8701d3a ኮሚኒኬሽን ጽ/ቤት {"am": "ኮሚኒኬሽን ጽ/ቤት", "en": "Communication Office"} ኮሚኒኬሽን ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 4b4c9393-7f37-475a-9c64-03f39e4b375c ዋና ስራ አስፈጻሚ ጽ/ቤት {"am": "ዋና ስራ አስፈጻሚ ጽ/ቤት", "en": "Chief Executive Office"} ዋና ስራ አስፈጻሚ ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 5bd06bf6-84b8-41a6-a57f-9c3b8bbadf4f አስተዳደርና ፋይናንስ ጽ/ቤት {"am": "አስተዳደርና ፋይናንስ ጽ/ቤት", "en": "Administration and Finance Office"} አስተዳደርና ፋይናንስ ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 49d2ec75-0932-48eb-9d0c-24acdd67d9c3 ሴቶችህጻናትና ማህበራዊ {"am": "ሴቶችህጻናትና ማህበራዊ", "en": "Women, Children and Social Affairs Office"} ሴቶችህጻናትና ማህበራዊ 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 ebb8904e-0756-4176-875e-7edd14006574 የግንባታ ፈቃድና ቁጥጥር ጽ/ቤት {"am": "የግንባታ ፈቃድና ቁጥጥር ጽ/ቤት", "en": "Construction Permit and Supervision Office"} የግንባታ ፈቃድና ቁጥጥር ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a3d5208f-8c40-4331-921d-2aec12c1eeb0 የወጣቶችና ስፖርት ጽ/ቤት {"am": "የወጣቶችና ስፖርት ጽ/ቤት", "en": "Youth and Sports Office"} የወጣቶችና ስፖርት ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 3b17c679-a53d-4bb4-b6b0-223c4944b135 የኢኖቬሽንና ቴክኖሎጂ ልማት ጽ/ቤት {"am": "የኢኖቬሽንና ቴክኖሎጂ ልማት ጽ/ቤት", "en": "Innovation and Technology Development Office"} የኢኖቬሽንና ቴክኖሎጂ ልማት ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 68fb3ed9-b0d2-4083-9175-29b09c816436 የቴክኒክና ሙያ ጽ/ቤት {"am": "የቴክኒክና ሙያ ጽ/ቤት", "en": "Technical and Vocational Office"} የቴክኒክና ሙያ ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 ad221fc9-0e68-4c55-b3ed-c3e679b39d64 የስራና ክህሎት ጽ/ቤት {"am": "የስራና ክህሎት ጽ/ቤት", "en": "Labor and Skills Office"} የስራና ክህሎት ጽ/ቤት 9ee50c37-d712-4759-a07c-80df55980305
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 e7579df3-0f2b-4f65-ba7d-2311bce80e56 ሰላምና ፀጥታ ጽ/ቤት {"am": "ሰላምና ፀጥታ ጽ/ቤት", "en": "Peace and Security Office"} ሰላምና ፀጥታ ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 42871fc2-2f6e-454c-b9d3-b68eb0045de7 ፕላንና ልማት ኮሚሽን ጽ/ቤት {"am": "ፕላንና ልማት ኮሚሽን ጽ/ቤት", "en": "Planning and Development Commission Office"} ፕላንና ልማት ኮሚሽን ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 ed497457-85ca-4291-b914-b268c63fe5f5 ህብረት ስራ ጽ/ቤት {"am": "ህብረት ስራ ጽ/ቤት", "en": "Community Work Office"} ህብረት ስራ ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a15ca743-264f-4b84-813d-6d114ae55690 ደረቅ ቆሻሻ ጽ/ቤት {"am": "ደረቅ ቆሻሻ ጽ/ቤት", "en": "Solid Waste Management Office"} ደረቅ ቆሻሻ ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 1b0a4865-12af-472f-a75d-d85a976d61c0 ፐብሊክ ሰርቪስ የሰዉ ሀብት አስተዳደር {"am": "ፐብሊክ ሰርቪስ የሰዉ ሀብት አስተዳደር", "en": "Public Service and Human Resource Management"} ፐብሊክ ሰርቪስ የሰዉ ሀብት አስተዳደር b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 601cd532-7c17-4b3b-a317-67834ebc2a3a መንግስት ህንጻ ጽ/ቤት {"am": "መንግስት ህንጻ ጽ/ቤት", "en": "Public Buildings Office"} መንግስት ህንጻ ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 de5d042d-92d7-4c86-971b-876aff22ea39 ባህልና ቱሪዝም ጽ/ቤት {"am": "ባህልና ቱሪዝም ጽ/ቤት", "en": "Culture and Tourism Office"} ባህልና ቱሪዝም ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 dcba5641-96de-4c2e-b1b3-2179e8d01056 ጤና ጽ/ቤት {"am": "ጤና ጽ/ቤት", "en": "Health Office"} ጤና ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 1aa299ae-4107-4af7-9382-ea2d137c1134 ኮሚኒኬሽን ጽ/ቤት {"am": "ኮሚኒኬሽን ጽ/ቤት", "en": "Communication Office"} ኮሚኒኬሽን ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 08a0656e-d194-44c7-94ff-d67978f1e45f የቤቶች አስተዳደር ጽ/ቤት {"am": "የቤቶች አስተዳደር ጽ/ቤት", "en": "Housing Management Office"} የቤቶች አስተዳደር ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 5824ead5-0ae2-44fb-a5e1-698713de2428 የወጣቶችና ስፖርት ጽ/ቤት {"am": "የወጣቶችና ስፖርት ጽ/ቤት", "en": "Youth and Sports Office"} የወጣቶችና ስፖርት ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b21aaa59-a622-4542-9f45-8670c7b4dbf4 የህብረተሰብ ተሳትፎና በጎ ፈቃድ ማስተባበሪያ ጽ/ቤት {"am": "የህብረተሰብ ተሳትፎና በጎ ፈቃድ ማስተባበሪያ ጽ/ቤት", "en": "Community Participation and Voluntarism Coordination Office"} የህብረተሰብ ተሳትፎና በጎ ፈቃድ ማስተባበሪያ ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 dc96bb7e-21ff-403f-a0ad-35e432c0fdbb አስተዳደርና ፋይናንስ ጽ/ቤት {"am": "አስተዳደርና ፋይናንስ ጽ/ቤት", "en": "Administration and Finance Office"} አስተዳደርና ፋይናንስ ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 f406460c-5741-4279-ae5e-9c1b95025d9b ፋይናንስ ፅህፈት ቤት {"am": "ፋይናንስ ፅህፈት ቤት", "en": "Finance Office"} ፋይናንስ ፅህፈት ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 2c576fd9-6a33-4da7-bfa0-b60be4d6ebfb ምክር ቤት ጽ/ቤት {"am": "ምክር ቤት ጽ/ቤት", "en": "Council Office"} ምክር ቤት ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 6b10265b-1170-468a-bb7c-a23b9eaed608 አቃቤ ህግ ጽ/ቤት {"am": "አቃቤ ህግ ጽ/ቤት", "en": "Legal Affairs Office"} አቃቤ ህግ ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 8864dfa2-dabf-4616-947a-ccbd846a71a4 የንግድ ፅ/ቤት {"am": "የንግድ ፅ/ቤት", "en": "Trade Office"} የንግድ ፅ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 91d8f6b6-7999-4f00-b4e2-ee63e50f2241 የአ/ አና ከተማ ግብርና ጽ/ቤት {"am": "የአ/ አና ከተማ ግብርና ጽ/ቤት", "en": "Rural and Urban Agriculture Office"} የአ/ አና ከተማ ግብርና ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 1442f095-7502-4410-a65e-32228ddb78f4 የመሬት ልማትና አስተዳደር ጽ/ቤት {"am": "የመሬት ልማትና አስተዳደር ጽ/ቤት", "en": "Land Development and Administration Office"} የመሬት ልማትና አስተዳደር ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 2dd3b94d-f576-4167-85e8-6ebf1396aef4 አካባቢ ጥበቃ ጽ/ቤት {"am": "አካባቢ ጥበቃ ጽ/ቤት", "en": "Environmental Protection Office"} አካባቢ ጥበቃ ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 e5b57b85-72ba-4b22-bf0b-a43c041ec556 የከተማ ውበትና አረንጓዴ ልማት ጽ/ቤት {"am": "የከተማ ውበትና አረንጓዴ ልማት ጽ/ቤት", "en": "Urban Beautification and Green Development Office"} የከተማ ውበትና አረንጓዴ ልማት ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 d74092ac-81b1-4f31-ba69-37d97d5937a2 ትምህርት ጽ/ቤት {"am": "ትምህርት ጽ/ቤት", "en": "Education Office"} ትምህርት ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 0b9e7608-89ba-4243-9af9-978ccdbc309f ሴቶችህጻናትና ማህበራዊ {"am": "ሴቶችህጻናትና ማህበራዊ", "en": "Women, Children and Social Affairs Office"} ሴቶችህጻናትና ማህበራዊ b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 3e9b4249-72ac-4452-964e-434c33fecac3 ዲዛይንና ግንባታ ስራዎች ጽ/ቤት {"am": "ዲዛይንና ግንባታ ስራዎች ጽ/ቤት", "en": "Design and Construction Works Office"} ዲዛይንና ግንባታ ስራዎች ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 f09d21cc-3282-4f0e-8b6a-6939942e4ba7 የግንባታ ፈቃድና ቁጥጥር ጽ/ቤት {"am": "የግንባታ ፈቃድና ቁጥጥር ጽ/ቤት", "en": "Construction Permit and Control Office"} የግንባታ ፈቃድና ቁጥጥር ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a96933eb-2bad-4cc6-8258-e9cc91da7e6a የኢኖቬሽንና ቴክኖሎጂ ልማት ጽ/ቤት {"am": "የኢኖቬሽንና ቴክኖሎጂ ልማት ጽ/ቤት", "en": "Innovation and Technology Development Office"} የኢኖቬሽንና ቴክኖሎጂ ልማት ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 0034baf2-1f93-48f6-bc1c-0ea3946a6d97 የቴክኒክና ሙያ ጽ/ቤት {"am": "የቴክኒክና ሙያ ጽ/ቤት", "en": "Technical and Vocational Office"} የቴክኒክና ሙያ ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 9262a397-9fc9-416d-bc45-412948f0ec48 የስራ ኢን/ኢንዱስትሪ ልማት ጽ/ቤት {"am": "የስራ ኢን/ኢንዱስትሪ ልማት ጽ/ቤት", "en": "Labor and Industry Development Office"} የስራ ኢን/ኢንዱስትሪ ልማት ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 018eba01-6412-4af6-87a4-88935e0a429f የስራና ክህሎት ጽ/ቤት {"am": "የስራና ክህሎት ጽ/ቤት", "en": "Labor and Skills Office"} የስራና ክህሎት ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 3aff21f7-5417-408d-b2d5-b707786b9edb ኢንዱስትሪ ልማት ጽ/ቤት {"am": "ኢንዱስትሪ ልማት ጽ/ቤት", "en": "Industry Development Office"} ኢንዱስትሪ ልማት ጽ/ቤት b25e8907-0204-4dc2-ac04-d461de7f4d73
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 eeabcd03-f3a2-4337-8dd4-2a48e9f4a131 ቢሮ {"am": "ቢሮ", "en": "Bureau"} ቢሮ b9c11b15-abcf-433c-8f6d-92f68832ae59
+\.
+
+
+--
+-- Data for Name: documentary_requirements; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.documentary_requirements (created_at, updated_at, id, title, description, is_active, is_optional, key, "order", type) FROM stdin;
+\.
+
+
+--
+-- Data for Name: employee_positions; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.employee_positions (created_at, updated_at, id, employee_id, is_current, start_date, end_date, is_delegate, position_id, unit_id, delegator_id, amharic_start_date, amharic_end_date, delegation_letter_id, status) FROM stdin;
+\.
+
+
+--
+-- Data for Name: employee_project; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.employee_project ("createdAt", "updatedAt", id, is_current, start_date, end_date, employee_id, project_id, is_project_lead) FROM stdin;
+\.
+
+
+--
+-- Data for Name: employee_signatures; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.employee_signatures (created_at, updated_at, id, is_current, employee_id, "fileInfo", "uploadedSuccessfully") FROM stdin;
+\.
+
+
+--
+-- Data for Name: employee_stamps; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.employee_stamps (created_at, updated_at, id, name, is_current, employee_position_id, "fileInfo", "uploadedSuccessfully") FROM stdin;
+\.
+
+
+--
+-- Data for Name: employees; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.employees (created_at, updated_at, id, organization_id, unit_id, user_id, is_current, status, name) FROM stdin;
+2026-06-16 17:56:00.83431+00 2026-06-16 17:56:00.83431+00 acc4cb94-2563-4d57-a01a-dadc10b01865 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb \N 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a t accepted {"am": "ሱፐር አድሚን", "en": "Super Admin"}
+2026-06-16 17:56:01.16418+00 2026-06-16 17:56:01.16418+00 88b43b35-08b8-49de-9af2-f1aeb291391a a3f7bdac-e218-4554-aaa5-48511f4058d4 \N 637c7114-8391-4fd4-80be-3885a23df200 t pending {"en": "linestaff"}
+2026-06-16 17:56:01.16418+00 2026-06-16 17:56:01.16418+00 f013d712-12ca-488f-883b-75f932ed9495 a3f7bdac-e218-4554-aaa5-48511f4058d4 \N 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 t pending {"en": "director"}
+2026-06-16 17:56:01.16418+00 2026-06-16 17:56:01.16418+00 57d2e2de-f404-465b-8318-15306bc9c317 a3f7bdac-e218-4554-aaa5-48511f4058d4 \N f61f8b8d-e8b8-49c2-8198-14183746cf0b t pending {"en": "ceo"}
+2026-06-16 21:07:34.871929+00 2026-06-16 21:07:34.871929+00 ed23bd28-29e4-4b8b-990c-661fd6956dad a3f7bdac-e218-4554-aaa5-48511f4058d4 \N 1e4ffa91-fd0d-4fdc-9c3f-7bfd7cbcdc37 t pending {"am": "ihd", "en": "shdiq"}
+2026-06-17 04:52:24.143115+00 2026-06-17 04:52:24.143115+00 00663904-7ea3-4344-833c-93907972c06a a3f7bdac-e218-4554-aaa5-48511f4058d4 \N b7e27b32-2c33-4a15-a13f-b849826d21a4 t pending {"en": "marketing"}
+2026-06-17 04:52:24.143115+00 2026-06-17 04:52:24.143115+00 8d0a4549-d4c2-4de4-a966-d5be5cb7d9db a3f7bdac-e218-4554-aaa5-48511f4058d4 \N 645e0886-1e6d-4e5e-a7af-906026a7eb59 t pending {"en": "operations"}
+\.
+
+
+--
+-- Data for Name: footers; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.footers (created_at, updated_at, id, "fileInfo", "uploadedSuccessfully", "isCurrent", name, unit_id, position_id) FROM stdin;
+\.
+
+
+--
+-- Data for Name: headers; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.headers (created_at, updated_at, id, "fileInfo", "uploadedSuccessfully", "isCurrent", name, unit_id, position_id) FROM stdin;
+\.
+
+
+--
+-- Data for Name: location_types; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.location_types (id, created_at, updated_at, code, names, description, level) FROM stdin;
+\.
+
+
+--
+-- Data for Name: locations; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.locations (id, created_at, updated_at, parent_id, location_type_id, names, code, latitude, longitude, area, boundary_json) FROM stdin;
+\.
+
+
+--
+-- Data for Name: notifications; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.notifications (created_at, updated_at, id, recipient_phone_number, recipient_email, recipient_name, recipient_id, channel, "appKey", metadata, status, "errorMessage", "isSeen", position_id, employee_position_id, subject, content, item_id, item_type) FROM stdin;
+2026-06-16 20:17:13.507152+00 2026-06-16 20:17:13.507152+00 7f0381d3-4b5e-4ffe-b225-77eb584743a4 +251929022432 \N Self Initiated 892478ff-b6f9-4389-94f2-cab4e830c5aa sms SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 075825 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 075825 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-16 20:17:13.507152+00 2026-06-16 20:17:13.507152+00 583d953f-b94c-4aef-b919-184c3887afa5 +251929022432 \N Self Initiated 892478ff-b6f9-4389-94f2-cab4e830c5aa in_app SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 075825 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 075825 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-16 20:19:20.46476+00 2026-06-16 20:19:20.46476+00 ec2ac46f-c4ae-417c-9433-07a23a3239ba +251923495365 \N Self Initiated 2fc3c733-8c49-47db-b2b4-8f75f522611e sms SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 802297 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 802297 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-16 20:19:20.46476+00 2026-06-16 20:19:20.46476+00 f1be0a1b-4fb4-4ed1-8109-f4935aef9176 +251923495365 \N Self Initiated 2fc3c733-8c49-47db-b2b4-8f75f522611e in_app SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 802297 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 802297 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-16 20:48:01.418823+00 2026-06-16 20:48:01.418823+00 a6ede65a-a327-412a-a80c-93ef3552fd30 +251940393837 \N Self Initiated f3905a90-b034-451c-8ba6-6b929105d423 sms SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 072523 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 072523 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-16 20:48:01.418823+00 2026-06-16 20:48:01.418823+00 55610c5c-e710-4ca5-87a8-aa639ab5c272 +251940393837 \N Self Initiated f3905a90-b034-451c-8ba6-6b929105d423 in_app SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 072523 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 072523 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-16 21:33:24.931891+00 2026-06-16 21:33:24.931891+00 ff4b3553-6ea9-45e1-b01b-b912942abf9f +251986680094 \N Self Initiated 8d9e3a2a-558c-4cca-987c-202dc8ac3c5c sms SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 876130 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 876130 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-16 21:33:24.931891+00 2026-06-16 21:33:24.931891+00 6c37476d-854e-43bc-bdf8-366b1ede5386 +251986680094 \N Self Initiated 8d9e3a2a-558c-4cca-987c-202dc8ac3c5c in_app SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 876130 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 876130 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-17 05:07:43.046354+00 2026-06-17 05:07:43.046354+00 311b738e-7c5e-439e-aa83-19bb9edba549 +251946669787 \N Self Initiated c15ee839-a3fb-4d0a-8848-874dafeac860 sms SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 882943 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 882943 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-17 05:07:43.046354+00 2026-06-17 05:07:43.046354+00 026cbc1e-2c7c-4d61-81d8-1d9fba644b54 +251946669787 \N Self Initiated c15ee839-a3fb-4d0a-8848-874dafeac860 in_app SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 882943 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 882943 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-17 06:10:39.877366+00 2026-06-17 06:10:39.877366+00 6ab3a66f-206e-4530-b2cf-c97494024a8b +251922556878 \N Self Initiated 6f001573-e7e0-4952-81ad-e422cfd4dc1e sms SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 039580 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 039580 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-17 06:10:39.877366+00 2026-06-17 06:10:39.877366+00 1e03a2a0-250d-4e68-9a86-8c3a555e1ee1 +251922556878 \N Self Initiated 6f001573-e7e0-4952-81ad-e422cfd4dc1e in_app SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 039580 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 039580 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-17 06:34:40.493416+00 2026-06-17 06:34:40.493416+00 e83bdf33-7dde-48e1-99d0-534fd375eb76 +251938121414 \N Self Initiated f2bd0214-cdcb-47aa-ac28-bd2fafc51a12 sms SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 674272 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 674272 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-17 06:34:40.493416+00 2026-06-17 06:34:40.493416+00 c06d3359-1f26-480d-b937-fe5f77a32ccb +251938121414 \N Self Initiated f2bd0214-cdcb-47aa-ac28-bd2fafc51a12 in_app SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 674272 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 674272 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-17 07:49:55.482072+00 2026-06-17 07:49:55.482072+00 c495fd89-d615-4d26-95ab-25720da5cc71 +251930075932 \N Self Initiated 01967f26-5ad0-419c-aa4d-6a5019f8687e sms SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 053489 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 053489 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-17 07:49:55.482072+00 2026-06-17 07:49:55.482072+00 0637aea2-4772-4ecc-bda4-66a1121b58d1 +251930075932 \N Self Initiated 01967f26-5ad0-419c-aa4d-6a5019f8687e in_app SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 053489 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 053489 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-18 08:26:58.410594+00 2026-06-18 08:26:58.410594+00 bed00a26-faf8-4906-92f5-605fe12c409a +251929022411 \N Self Initiated 731f1978-b8cf-4597-ab71-18f2af0b0d95 sms SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 178736 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 178736 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-18 08:26:58.410594+00 2026-06-18 08:26:58.410594+00 14f10a3f-30cb-48d9-b152-53d3d5e7c73f +251929022411 \N Self Initiated 731f1978-b8cf-4597-ab71-18f2af0b0d95 in_app SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 178736 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 178736 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-18 22:18:51.90756+00 2026-06-18 22:18:51.90756+00 3c045ea4-a74f-45df-864b-f8c20533ff27 +251986680044 \N Self Initiated 804bc335-957c-4b13-90ca-43172ef2887b sms SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 471966 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 471966 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-18 22:18:51.90756+00 2026-06-18 22:18:51.90756+00 6e5129a9-c57f-4a4d-9be5-e2ae8de6d801 +251986680044 \N Self Initiated 804bc335-957c-4b13-90ca-43172ef2887b in_app SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 471966 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 471966 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-19 06:26:25.785538+00 2026-06-19 06:26:25.785538+00 aebb2b08-5365-4a46-88ac-06e38dbb18d3 +251987654345 \N Self Initiated 3d4937e9-3a37-4317-a001-48d555dffb9f sms SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 846375 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 846375 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-19 06:26:25.785538+00 2026-06-19 06:26:25.785538+00 ac1245a0-e69e-4fdd-ae15-a78f563481ac +251987654345 \N Self Initiated 3d4937e9-3a37-4317-a001-48d555dffb9f in_app SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 846375 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 846375 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-19 06:37:22.240708+00 2026-06-19 06:37:22.240708+00 57c757e9-aece-4f29-ae20-da49b24fccef +251925658789 \N Self Initiated 40106f87-7df8-4d7f-bf2e-d5096da10417 sms SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 269700 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 269700 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-19 06:37:22.240708+00 2026-06-19 06:37:22.240708+00 237a60f7-7d86-4e19-8107-e9bc32ed2e54 +251925658789 \N Self Initiated 40106f87-7df8-4d7f-bf2e-d5096da10417 in_app SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 269700 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 269700 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-19 07:03:02.30762+00 2026-06-19 07:03:02.30762+00 2b2a459b-a3cb-4eab-a38f-0a0bfd24d5df +251986680089 \N Self Initiated 0e1e709c-7bf6-4852-869e-678924f2315e sms SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 485191 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 485191 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-19 07:03:02.30762+00 2026-06-19 07:03:02.30762+00 d58f61df-16b7-4612-9033-f756d8a28f73 +251986680089 \N Self Initiated 0e1e709c-7bf6-4852-869e-678924f2315e in_app SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 485191 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 485191 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-19 08:06:24.442228+00 2026-06-19 08:06:24.442228+00 a0de38ba-3029-49ce-8f5c-e3ddc378c174 +251912345678 \N Self Initiated 9e05084a-c69e-4d22-825d-c9f4b4da80e1 sms SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 391337 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 391337 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-19 08:06:24.442228+00 2026-06-19 08:06:24.442228+00 cdd1b8ba-8ea0-4188-b4e3-9337bc4c1215 +251912345678 \N Self Initiated 9e05084a-c69e-4d22-825d-c9f4b4da80e1 in_app SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 391337 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 391337 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-20 06:09:44.256532+00 2026-06-20 06:09:44.256532+00 5b9655da-9f1b-4b1f-8edc-7e442df26606 +251986680027 \N Self Initiated 37d135c3-019b-4fec-9ec8-312b3824a1a6 sms SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 429821 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 429821 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+2026-06-20 06:09:44.256532+00 2026-06-20 06:09:44.256532+00 175df8f6-807f-474f-b30a-de94515b42f7 +251986680027 \N Self Initiated 37d135c3-019b-4fec-9ec8-312b3824a1a6 in_app SmartOffice:IAM \N sent \N f \N \N {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 429821 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} {"am": "የስማርት ኦፊስ ሲስተም ሴኩሪቲ ማረጋገጫ ቁጥሮ 429821 ይህ ነዉ።እባክዎ ቁጥሩን ያስገቡ።"} \N \N
+\.
+
+
+--
+-- Data for Name: organization_configurations; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.organization_configurations (created_at, updated_at, id, can_start_receiving_record, organization_id, can_create_branch_by_itself, maximum_number_of_units) FROM stdin;
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 dea449c1-8137-4cab-81e5-8a6275dcbfa4 t a3f7bdac-e218-4554-aaa5-48511f4058d4 t \N
+\.
+
+
+--
+-- Data for Name: organization_global_configurations; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.organization_global_configurations (created_at, updated_at, id, "numberOfSubOrganizations", "numberOfEmployeesPerOrganization", organization_id) FROM stdin;
+\.
+
+
+--
+-- Data for Name: organization_seals; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.organization_seals ("createdAt", "updatedAt", id, name, "isCurrent", organization_id, "fileInfo", "uploadedSuccessfully") FROM stdin;
+\.
+
+
+--
+-- Data for Name: organization_settings; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.organization_settings (id, created_at, updated_at, organization_id, key, display_name, type, value, metadata) FROM stdin;
+e2659ed9-e29e-4f14-88a4-bceb79705e8e 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+432d9adb-da5b-4289-9a40-3eceb26fe21f 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+5f1753ba-a49b-45af-9a83-8bebf29666aa 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+a9570471-daa5-49de-8004-0e540aa9f588 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+af02212c-6b91-4e38-a4ae-48df51f3e01a 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+f3b0a8e9-bca1-4d8c-9b83-caabd9b361a4 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+5e7f809f-441e-4139-b7a9-156f8873aa82 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+7c400ab7-0302-4360-8039-ab43c70bb586 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+eb7146d5-f5a5-429b-8f18-39dbbad04a98 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+daabd942-9387-4969-81d0-3a2d416986b9 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+3f5162d5-8575-48b1-9e46-f389cf37638c 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+4eb5a67e-e714-4051-9d6b-48836b7e4185 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+97cc863b-1be4-46ab-9123-56fd154b809e 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+d138be3f-b47c-4745-afa2-5ad3edf2cb89 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+eea4caa8-aef3-4c1d-a59f-9cc1223afc29 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+f1bd1563-c594-4194-8120-8f803bdaec7f 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+c8a7854f-c0d7-43e2-ac0d-a6b430394940 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+f1d28d3c-39c0-4bb3-bfe3-348a50261530 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+8280df90-dc48-41cc-a887-0b6e8af2b7f5 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+e4929b1a-8685-49d5-b3c7-1209ec65ccd4 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+4ba944e0-5307-4de2-8809-097ae1286602 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+8e638443-b7e4-41ad-bb6e-e747a697a791 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+a7807f6e-3776-4e47-b741-a01de2c85162 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+2bba3a81-4c40-4b57-8acc-b8417fa62ab5 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+48b678b7-1182-4f3c-9ae6-c4693cb80ee6 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+0a86b83c-46b1-483d-8fb5-c4ca117359e8 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+42c1880d-87b4-48fe-bc3e-7d100f945af7 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+09ebad75-0c39-4d40-b548-631712260806 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+5af55063-9e9e-4d12-ad00-28c1ab29a5c5 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+566f8d3b-5ddf-4518-b7f2-3b0a04e006c7 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+4cf95e12-bd06-4306-827c-8c06597d28ec 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+e4860178-6efe-468a-8d09-02fe0971e5c0 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+79ed0d96-5224-4c07-97f2-b3779cc3a848 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+e73dcf61-568c-496a-9ad4-c718cc1dbc1e 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+1f87e0c2-048d-4377-8e21-0f5d404d96d2 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+c8263df0-c3bb-44e2-b2a1-566d868471b5 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+064ba2c3-ea23-4662-9563-c74f1b6d03bd 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+5fedae21-cb47-463a-b883-18ef92795cc9 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+f969664a-e160-46b5-82a6-72066eee78b1 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+912d8bce-c269-4f22-958b-b252b95a083b 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+3eb9efed-9c44-4616-88d7-66fb816adff0 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+c59bc5b8-3f43-4621-940d-51fd8762e7bf 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+df02df50-e4e8-4f2a-ba77-4be7baf5c682 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+d006421f-31c6-46dd-af34-2895ea2ce627 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+3ab7aa88-4d91-4baa-bfd4-f842ddcd4a9c 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+328a737a-d347-44bc-b556-09eb385c15bc 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+95a504af-30ca-4b57-84c7-1ef7a6ecb2fa 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+7c6a7846-4358-4b67-a704-7cbf82c71467 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+8d548aec-e189-4f4d-a50d-c7bf1265134f 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+33ed2850-04f5-4bc1-aab4-e95b907efc9f 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+01ef51df-f9b1-46c7-b6bc-508dab45e9c7 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+c1449080-73d3-4c8a-a7fd-9842e3cc1d5c 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+19988580-8cff-4513-97d2-c529c7a99d55 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+19352029-f662-4ff7-8a9b-2ecf8321dee9 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+e4e90bee-f2f4-40d1-a5d3-e9291442a8ee 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+aca5d7f7-ebe8-462e-b45b-d26fe48743d0 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+f9a2b7ab-b395-40a8-b70f-12f3dca61c2c 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+4f80351d-88e4-44ba-8542-f63a00c645dc 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+9c41e819-58ae-4ecc-bd10-f5ba3ebbc35f 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+9d4b2644-6943-45e7-a052-7d6c65e9795d 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+3476a516-a2d8-4b4b-84c6-2e46d9eda7f3 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+6f4df7bf-a27b-4d2b-8a1c-ab79cc6455a7 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+cce9c785-d34c-4670-8561-d6ba6268774c 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+11792951-0287-4d36-a624-b53ac988d2f4 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+5814687b-b1cb-4221-b231-020272413aa6 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+82cad5df-3382-40e7-ac31-ffe799e465f6 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+830de794-3f93-4ddf-bda2-d48ef901b663 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+c03fc064-e751-4baa-8ba8-fb530ec1ec98 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+e72c70d8-be54-48f3-8b32-1d4f8588aaca 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+8eb826b7-13e2-4728-a73b-6887da4b777e 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+2ed02e52-219a-4bfe-9b12-b5b0470786cb 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+2eced7bc-b53a-40c8-b7ca-883cdfcc7a8f 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+ba4c2387-1160-4c28-a9ba-2bb43c207c40 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+a53f9934-0848-4f44-9e44-b1c89848560b 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+e9908661-c5d9-48f9-850f-dd3881a47e73 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+d3358253-8ad5-4369-96de-2f2bf1afba0f 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+6cb01d61-1710-4f0b-91d8-947b1cec6497 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+d22f0fd6-c60b-4b41-8351-63d9a3328f55 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+54d6045c-50b7-4487-afc8-a775fc6fe539 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+350c0cd7-b74e-4248-aa5d-81b732870fef 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+96a774c8-c7d3-4af2-9e2e-9f7c90a836f8 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+548de8bf-0133-46ef-b83b-c837d413072c 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+aecb116e-fc6d-492a-a202-b4960bd23741 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+6a3fa865-20df-445b-9bbd-e5231dc6f4b7 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+823afb81-919a-4004-ba63-fff660453d3d 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+d3ba2293-7699-42b6-afc9-1bd71dec6e7d 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+9c9165d0-6862-4c0e-951d-a1c42d9c11e0 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+8ab93458-89b3-4532-82c0-1a62483d739f 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+83026786-684b-4fd8-86fb-faa2cb96d298 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+5de06104-816d-4753-a1f0-0e761c3e9fdf 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+0bc53b97-844a-4587-b706-d5f6172218be 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+350e9a89-2f50-4379-b976-e2429663543d 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+2e6240a3-fa13-4f70-a8c8-139dd91451d1 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+a472874d-6196-4018-900c-10aa7a67c3d4 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+142cfd05-6ee8-4eb2-a34d-0a72044e4c83 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+3c376f0a-40c7-4932-8e2e-043a262c3287 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+1e9f0075-330f-407c-8ee7-705e2fb3635b 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+89e4ddf7-9494-47de-b7bd-bae450d33db1 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+e6a9dd4e-5fa4-4862-8978-b225441fb088 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+86bc5e53-a8a7-489b-b29f-09ba42f375a1 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+35efcaa1-501e-45c7-ac3d-452eab5fc3d1 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+83b59149-07c5-4f9b-a1b6-aa0b8d58ae81 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+0018a6a3-b53d-4c50-972b-c3aa9313f08c 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+e1dcacb0-ebd2-4531-8a7f-c91002df8603 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+4c6e6922-dff7-4889-8855-3357cea983d7 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+51bdc1cb-5cdb-42ad-ba1f-4124707a9369 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+438b7a0f-a84c-4275-905c-a1d53dd5f1bd 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+b902543d-e23f-4948-9f80-a3be216bee2a 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+a9ac1b56-befd-4471-bd35-1679353999d7 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+199703fb-7bfe-49bb-9ff9-4c6621072962 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+263fd9a6-dd41-42e0-a975-9d4b6964ef5e 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+5c7137cd-8978-4022-9264-88ee3ab1fdfb 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+be3b6107-ab31-432f-96d1-6271e29121ca 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+f6c55e4a-e410-48ac-bd93-b4b8d54d3527 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+0a00c05c-67e4-47a3-8459-4ec0b6bf81f4 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+8b551883-3bec-4b52-b912-a895d0de2288 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+56dbc8a8-e7b6-4bc6-895f-b48e077090fe 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+f7d04ce7-85c4-4b31-9b9f-de83bde6a756 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+defa0d11-263b-4e16-ba73-b47c6e46299f 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+bd7b7852-c2aa-42fc-947a-9582042b32e1 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+3234eb77-b857-42f8-889d-5c52504053f7 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+f48073e5-c7b9-46a7-b4c6-f12fedeb3489 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+eac7e3a3-6cbc-4835-b1c4-5e42b2e482c2 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+42acc517-5e3b-4a9e-bf67-e45e0600c133 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+df72de26-727f-460e-a0a1-242fc6dcfe8c 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+68aa084e-d31e-49e3-9eab-23953010208d 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+69b9adc0-d294-4b4e-9034-18a3d9225e55 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+057a92ac-2fca-4696-9e84-16bf7817c9e2 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+ac39fd35-ae64-4617-8318-b2d2ae8fe522 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+64f33c00-41e5-4447-8a9a-8b54325afffb 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+02c5cbc9-9adc-499a-9930-7e0c43ccde76 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+899a3377-1935-420d-9f81-edd48db805d0 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+4d0501e9-1017-4843-b6dc-80eac242554d 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+8027c0b6-8965-4642-b451-8799a69b9367 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+c0fdee4b-9692-4873-9d59-c764bdfd5c49 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+c97621eb-58d3-4c34-9b60-339ef07cab6c 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+24b001bd-59ed-41eb-a0c6-d335cf61a1b7 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+00abfcd5-0e86-4912-931b-5f0f15010056 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+0575bdb9-7958-4408-a844-169c95a3fed3 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+57c1e3ce-6b58-4177-bd7e-5babc9bc5180 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+fbfd0a7d-2a66-4b3b-aa47-88e39463443c 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+2fa74fea-8ff7-42ed-aae5-11f6f68ba750 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+a0a8588d-6cf6-4a79-94f2-0329ff1dbe72 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+800a87ed-2260-482a-890f-488eaa1d3b6f 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+b824794c-c76c-4059-bad6-71d9e836f169 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+bdbc04f3-9d93-43d3-aee0-c83f9dda7587 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+569a6d9a-010c-403e-9bac-0f85832fb530 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+a241ca21-d05e-4e88-b9ff-aac1f11f9f33 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+26728f2d-66ea-4e83-9e87-0161d87bce53 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+0b9f3980-1bc6-4018-be55-53d643a458fb 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+64f664ae-e2f5-423d-9117-778d0af54e46 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+a8f306cf-651f-4d21-b321-c9c8105ffa4b 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+9773b6ee-20cc-4db4-aa70-c019cb968ac5 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+d6b6b4f9-24d6-4a6b-ac15-f6d839aebfa4 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+260dd824-e774-4d8a-b652-47c79344e81c 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+de5e97f1-e6ba-4f5a-9d65-8c8bf0b0f221 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+79922d5e-ad67-4a7b-8ea5-4e10d43aa494 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+a25214bc-316c-4834-89a7-8f33e988a7d2 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+4f45bb82-2f25-4ada-a648-e84ce50a7198 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+7deb284d-1204-401f-919a-f4b228b6b8f3 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+555e32d2-6a3a-4683-ada8-6b80aad548b7 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+d625ecfb-a5ad-480d-bc72-2a60739f2da0 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+fe52365e-76bf-4a07-8f71-e477f97dac85 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+6831c4bd-2500-4859-b78a-52266d58fe8c 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+923b99a0-7a0c-4333-8c56-2b8c777d13f1 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+9dea90a2-6c08-40d9-aefa-32fcd4f250b1 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+9f7bf734-1ce5-415c-817f-7c86b5341432 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+3764632c-bd65-4cf3-8e76-3e903d28aa9e 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+9e01f356-eb77-4a84-a0bc-21208c690ece 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+5339e17b-8f0a-4dce-9830-4b632d80d40d 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+79e62454-2a6a-47f7-8c9d-421ed05a5ece 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+67404a17-e550-4120-80dd-91c3ddc94673 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+72fdb9b8-866c-48e7-8e6e-9767b17b75dd 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+80efc0ef-01f7-425b-a42b-a7f1c267d0b4 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+e0449f71-f968-4d5f-bf09-e916a2eeb053 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+4a423a37-5dca-49f0-add6-8e3f68252cf4 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+47d4bcfa-398a-44e6-af3a-875722381310 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+8deec234-4fd0-4a7c-a424-bff7dbdf3ff9 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+adec84f2-bf34-4009-90ac-1d25355f1fbc 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+0777a3a5-a727-460b-b882-b49d12171f9f 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+f46c86c5-2626-4d72-90e4-a0f81c6b3134 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+c8762687-fc61-434c-9c47-9e4da1129fcf 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+88a155f8-9ecd-45fe-b7b3-f48e521efc9c 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+409d6b31-fff0-41eb-b256-566d899a0cd5 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+d51a26d1-d854-4e36-b60b-e8a7506d6d93 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+e8f98199-3b21-454e-87fd-e24dda790391 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+d9e01b62-a453-4aef-92c2-868c00331ea5 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+98744308-8e5c-405d-85ca-6b5565d0c504 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+6e10621a-4f69-449e-a210-e98de0709a31 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+804cc6c6-3acb-44b7-888d-40ef51d292ee 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+b01bb75e-f233-459b-90db-d54ee0e83cb8 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+ff5cd529-1c29-4353-a7e1-afac7c8f3655 2026-06-16 17:56:00.83431 2026-06-16 17:56:00.83431 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+1aba7b55-0a73-4785-b7ca-3ae89ad263c2 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+b8869e61-0086-48b5-8462-57bb328c0749 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+369e775c-58b4-4e5d-95d1-38be2c33ffdc 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+9e8b1fce-8bfd-4e6f-b021-7de77d621891 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+572018c6-c8ca-4f0b-a399-9d10ef6090a7 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+27f7849b-f59e-4935-8891-8d96770fcfd6 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+301aba08-5394-410c-8a5f-f5c4d8346f2b 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+64c47d26-a984-47c1-b726-85d052f16f83 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+78b6cfac-4590-4a0e-a0b8-d1bc805f6643 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+e78a3aba-a7a6-474d-9994-af3d852a6f6f 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+098b9dee-2a45-4c52-ac2d-0e7ca437d954 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+df7c448d-d2d0-4dba-a5d5-a913eb650760 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+0ca70c18-ae39-4acf-bced-404524fba96b 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+30bdfeea-faa9-4a99-85fc-15825b866025 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+d3b02e5a-6b16-451d-9cd2-5546822d9a81 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+29122dc0-0b3a-4d31-a6d4-96a351dcbbe7 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+5c4a33f4-c949-4822-b5ff-81fe9e4ff11b 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+a041731b-21ab-4b89-8c0e-a2c896679933 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+8211e8ea-5dd1-4710-b449-71340dae36d0 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+c49e8b5d-1cf2-4007-86ad-ced6a771302a 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+9f4d15b5-ffeb-4b2e-adca-9982d7882d01 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+6f543fc8-4133-40fa-adb8-9fd0f8a85b68 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+1df5ca42-ddbe-4407-9619-f32c41242b81 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+c4afb271-8d62-43c4-9004-15d870276719 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+721c5913-3d66-4e87-9df6-27a78adfa92d 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+f8d01951-89c2-4528-87fc-654822f2d842 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+15fe4cb0-fa0b-4210-aa47-2a48c507bf63 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+21701a97-6342-4261-8efb-5ea2c24d1a56 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+4709a6f9-366c-488f-bc9c-eb8c49afd000 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+78bfae5a-f977-4b4a-953e-ec67f936f6e4 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+f5e1fb43-2dcf-4707-8aa3-7aab609428ab 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+94ae398b-26d6-4e5c-87ce-1c0f22f0b803 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+76822d99-6a7e-4caf-ab31-4b16ffaee21a 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+002ce5bd-339f-4433-bd5a-e52e2e8cbe97 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+88c6ae12-502e-4363-8059-81de26b26e95 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+a7508900-40f9-4f75-9677-4128a535c9ee 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+2dca2998-3ee2-41ad-b948-2ba41835d235 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+4de67cee-0e56-4a4d-a7a6-ce1db9fae0ba 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+94ea9068-f5ab-4737-a3d0-72c792d5dc36 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+c177775f-8788-4410-a90f-bae6045debdb 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+6cb17ec0-74cb-4dcb-b839-ff0bd52ae5ab 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+96ef2298-4748-48d0-aca2-9f961c51ea1b 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+a0d0b6bf-a6ce-4744-a850-3869c2ac041f 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+01e27a26-b3d4-4f97-a04b-32697c970305 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+0f85d725-719a-41cc-b522-5563fdf0aad2 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+0f76f1ea-ba65-4653-912e-0b5abfa4a15c 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+a8367726-2450-4b28-b2e4-8e7edaac7e50 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+6e8efb34-ab8e-43e6-8649-10d222556dc8 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+4ef2e50f-033e-498d-8dd1-e888739370da 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+55a625c9-db73-430f-8c8e-a3f3c7d561ff 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+64a14a3d-2985-48d7-83ff-d2125abbc464 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+9c75244d-e4e4-4294-b243-e2547afeabc8 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+9131133b-86b4-4931-aaa4-1b8cc23b8b3b 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+cbf30291-01e9-48e7-9f35-9a25bb18345e 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+d9fe6293-ddc2-4e13-890d-37edb95ac594 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+8ca43032-1efb-4eb4-8724-6647e36346ad 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+b1d57240-c69a-4936-aa69-0ce071b70d00 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+6e5cffff-b435-45db-b22b-83ad4841f182 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+b5723bd1-60f9-42e2-b74a-a913c7212cf7 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+57dff6c4-0882-4810-a686-087ad145995a 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+b66a060f-44b6-49f0-8803-f283ab847f38 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+0aa94934-d4c8-4715-8360-4c261c4876b7 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+d2c4a786-5b97-412e-a248-14aabec2d451 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+414d08c8-f8b7-429a-8028-72545db0e045 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+3729f2e4-614c-4e44-bbe8-285592c7159f 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+ae738ff6-2bd2-474a-aea5-02c80f356148 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+19cef355-1e72-4120-bbec-6cc7599523c4 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+3ae13d09-ec19-4262-8505-7ae5011ede96 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+9aa1d790-6a5d-4a36-9690-100be157f56c 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+6726a728-90f0-4eb4-b1af-a2077d26c335 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+324013f7-bb80-400f-a6b7-96334141e444 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+0f97a2e6-23e4-4554-a082-314a89320b32 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+c72a957a-0fc6-41e5-ae06-b94ff87f156e 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+99e98e78-5f6b-4eaf-a899-766bee643470 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+f4752e04-eb1a-4111-852f-b11102331373 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+d39add34-7b03-408a-bcd1-874547991e17 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+51fa55a1-2084-4cea-9b15-82c49e2f673a 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+be43d98a-8168-4076-b501-afe138ab9844 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+11a8179c-2b5b-402e-99b2-0e9ee8cd39f2 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+7ed50441-595f-4084-bad4-b8c20f388a40 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+68a4dea2-f2da-4679-93d1-bb8f9af0a597 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+5e0e22f5-cede-4363-893e-2f7cd63eb933 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+79e800d0-5ae2-41ce-90a1-d53ee23c2c7e 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+f2d87e1b-fddf-4a7f-beba-c6de69f6117e 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+1f4f50f0-cf3b-44b3-bab7-d0c946d0d95f 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+b39cbe66-68a6-46f4-a2cb-7e489032d8b1 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+cd412bc7-14f5-4425-a255-be43d7d873be 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+0117fa0b-7a0f-4db7-9417-eec4a4df5d45 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+6fe5269a-dde1-4962-9c8c-784c4c862cd4 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+979e7940-f2e0-4679-99a4-fd78894232a6 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+590451d7-b5d8-4d55-9674-2ee482f7f9b3 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+f14b4868-dd52-48d0-b6d0-39b971abe4c7 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+eec7554d-5164-4c55-8a91-cbc39ce650eb 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+d0f73750-90b4-4761-9ec1-a5093e4241a6 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+5b821c56-a34f-4156-a1e7-72e3fb7f028f 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+95364b48-0309-49d8-99ba-a217207f5654 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+4a56a157-3351-4ac3-8234-740c91857d67 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+d8183bf0-b48e-4353-9c9d-8bd0f69c4f8f 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+a5dc2979-a299-4e63-9e16-11a63da50f89 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+c865e805-edd0-4fb5-ba5d-89b19034ff7b 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+ba39e5e9-57d2-4d3a-8138-f1685d75708a 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+b8ae25bb-8cfb-405c-9cca-8fcdfa10ece6 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+e2e29fe7-e3e0-4baf-afc5-f503ce5277e7 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+f68c0089-11fe-4602-aeba-0efc243d8a0c 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+c686264b-51a6-4904-941b-223834c08a1d 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+de10bd82-b143-4fed-9806-8dc3616a39c7 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+9f8054f6-09fe-4208-b72c-faee838cc785 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+82b97435-c7e4-402b-aa27-f8924748884e 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+6cff989d-84e3-464c-8d96-bf1696637e36 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+27480708-6181-4ea7-b12d-3b92ee66305d 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+85f70f71-cb13-4173-8830-ce0550415808 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+c66c431c-06db-440e-a011-24bdd9bb1025 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+8f7b89b7-df94-45f9-8ce3-1db0122c7d07 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+40231da3-dfa5-4e9a-bf23-e3d5f75b7fc0 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+4f84dd24-4a25-4f65-9915-8f39b2aaf3dd 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+0aa6290f-12fb-400b-b09a-bc378f0d3b5a 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+4052c022-afb2-417d-9c04-e46e3d6302dd 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+80d76bf5-2b49-4ded-9373-b33364d99d18 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+b7e977a7-c0fa-451e-ad56-d3ad268ed563 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+d357ce7a-6ad9-4db0-a617-aa9e9e5164e0 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+996b7b5c-3ca3-4980-8f6c-691afad84617 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+5b2a6950-919a-4227-94e1-849234ebbd4f 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+1f0b1125-de28-48a2-b0ff-2eab9d21a561 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+f8dbe894-6c9c-4944-9c55-3173c55f2d24 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+03eef340-d1da-4316-9388-f6c66fcfb577 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+33f546c7-42ee-4c89-b7e0-4b9f92ac14b2 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+bfac2b0e-35f0-4f18-a0c0-10caaae03714 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+850ce02d-2cc0-43db-8537-780700b45ff7 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+13ea44e0-6df3-4501-9341-dd3e11fc2114 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+78315c1c-9740-4ded-a5c9-332f00a25d0f 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+71784158-7b1d-4e97-8776-6acc1bf6da29 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+68e2e46a-417a-4361-8c78-cf9fa999c25b 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+0e7d9698-2396-4ccb-9419-512d08933819 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+3ed6f615-92b0-4688-809d-ca74d89d14ee 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+af3877dc-d7c2-48c8-a0a7-d1c7bcef484c 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+0cdaee3e-42ae-4b09-a5d4-27b4722cf7fa 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+7208f2e4-f416-4277-8825-4d2fa6d2653c 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+2f1a5052-9307-43a7-8224-cb3166132ea0 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+52ad3d72-e3fc-4680-8f40-0c63a02ae643 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+b4ada569-2a7a-47e0-bfc8-55dc4eafecdd 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+d98ebc9c-f041-4e38-9bec-79f929c58ffa 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+f2739520-6019-4b0b-9148-791907f52c6b 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+3e9d67ca-caec-46e9-bb15-e044923a3020 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+02999529-9fcd-4d8f-8362-b6adc3ba70ab 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+97ba3396-213a-4e98-9191-fc0794c0e91f 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+97bbe36b-8f41-42ad-8550-488a480ac416 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+a1c338d9-05aa-4e27-a8fe-04262464aa02 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+a7c41139-64a6-414d-be27-29e8a1bb409f 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+18328041-1788-4915-8568-f96c9cb7b0ae 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+2b23d272-d6c6-42d5-bc2b-a58d1d861def 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+3775e9ab-7416-4618-8a8e-d3aa3bcd38d8 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+d4bf1b0e-2f02-4b6e-ac86-5f2de4a55347 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+d01bc0ae-11a6-4cec-bbdc-e7abbe76f21a 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+715b391e-a134-463b-a0f7-5df3c344efba 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+50da3aa4-a229-48b3-b29a-6579eadd5047 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+62d6fbe4-7c47-4612-ba46-c65fce24a875 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+44437d28-1f44-401e-8cb1-41ae93616b1e 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+289e9919-90be-4493-bda6-6daf4e6c841a 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+0d9b6aa3-b615-4754-894e-431c5242ddcd 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+20cce717-2e14-4246-84db-e5e611f83ee5 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+45114415-f0f8-43be-8990-6b998495428e 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+01090004-2c1d-421c-b23f-38585ac35448 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+409877d5-acc1-4e52-8451-27f76fedb4a2 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+58935898-66bb-44c1-8f56-b70afa7a916e 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+aa10c0a0-7783-4232-b75a-2d4b983840ab 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+943abee1-8877-43c4-a4c5-0ad86865e3da 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+5212c97c-cffb-4461-8178-d476a0c8c517 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+57c3ca72-8b92-48d6-a364-0b928832b0a1 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+c57a18f9-3453-42d3-a7ab-7d70dbb6a258 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+66ebe251-6c9b-4723-b418-bc69e9574dff 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+78a8b371-cc7c-490d-aa10-0a6bd7009dad 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+145ddacd-247c-40e9-9044-ae602f720f4a 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+20444a97-5043-405c-aa76-948fabdac0a2 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+31933c2d-d26b-4e5b-9a72-adf7c6a526c0 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+fdd0c234-0955-49a0-860a-71dde47526dc 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+7aeb2a2b-81e0-4c6a-ab69-a1b92c6c8971 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+ccd02fa7-75d6-4aeb-9b29-8b2c2430f649 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+da5d2ec7-67b0-4e61-b2dc-de90fd9a0a0e 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+c30e6f7f-d493-41af-ae63-50f6d952f344 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+7406a537-c54f-49d7-88f5-a1a7b58ca430 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+881c0569-8b0e-42dc-91c5-14321ce93604 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+6f09a724-3980-4bd8-af6c-414339a0dd5a 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+f27b1c37-1086-4c94-a8f4-3d6644712134 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+d819d574-2525-4818-a371-4c272ae71a62 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+7b6ee66d-5fc3-4519-8438-51556f42c7ab 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+797a4a38-7ebb-4f0f-b42d-b466db695a14 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+79a27725-a33c-40cc-b1d8-71cf92ab557f 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+0ecfae6f-1909-4830-9e64-7144191f90bc 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+0e0449bf-aa47-457e-b9ca-2d24df6e163e 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+27773d3e-9591-4ecc-a1eb-b337e126ebb5 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+585dbc05-de21-46fc-8e85-02fcf042d3a2 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+8d283ad4-c28b-4e1f-ae4e-eeb4d6c48098 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+f28fa818-d94a-4fc6-badd-8dac5ff94d6f 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+ddbf0ad2-9c4e-4976-945a-02d9dc97061e 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+2aebb5fa-1ff1-4ec6-8474-512f08d16866 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+813fabb9-2ad8-4e6d-8f7f-4c70512669bf 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+26617b04-7ba7-4f2c-b48c-0a1c13eebb03 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+fce8d63a-6e4a-48d6-a338-1fd5388083fc 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+eaa8438a-f523-4f79-b49a-e4f8fd31023d 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+73249e46-8e12-45cf-9826-eee187389733 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+21291b9b-183b-43cd-9699-39eb59eb20ff 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+a2ec8b9b-2f3a-4a5d-acfc-40626731fa7c 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+82e605d1-2b27-4834-a8b1-52106b6ae610 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+c856d7b1-8a1c-4c9b-a25a-49ab899b5486 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+1af1af91-d4ed-46ef-989b-c96ba1df7983 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+c0635eab-0137-4fa6-bd80-b875e729e068 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+35e5269a-d408-4b09-a762-b9578207a8ad 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+76dce442-1fee-45ee-bbf0-3d17d7dc6407 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+9aaa234a-8554-41fb-92e6-b96f70754427 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+c8e9edc8-0ff3-4dcc-ad9c-4724b54fd1a7 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+7572d8d4-a07b-47b1-b655-af38c9dc7f41 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+a40d4e83-a44f-4936-b4a4-3ed863be8b45 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+67ed795d-f733-4a6f-b7c2-dc06d90e8a45 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+bccda91b-b1cd-4931-9154-94eb9725841b 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+a1755985-64fd-4d62-b87b-7673f659522b 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+344dc742-9e27-44fb-9728-4448eb7b78d6 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+91d68980-efe7-4e69-b414-059f3298d634 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+8de1c0c7-3afa-4fbf-85f2-b99f3d8bd6c5 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+6e757231-32f6-474d-961d-0a05c56dbf49 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+3df0c0b0-8618-447e-a7c1-d9e20f6d7d9b 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+a3531c1f-1234-4369-9a1b-5341c6748a7e 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+fffd2a91-9124-437b-8eb9-8b029802ecf8 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+19d538c4-99a2-4c8b-ae4e-af4326bc1049 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+109b1424-d03c-4908-ad6e-2f7568f0a3f3 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+3ea47f7c-91ce-4e6e-b13f-eec98a17f1c6 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+63fba305-4ea6-4ee4-a4b8-cc346fc7398f 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+f7edd575-7958-49cc-bbae-0fa2a7266040 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+fd74b95c-2644-4353-8da2-eb9c8d682728 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+c6c6dd63-905c-4447-8406-d64cd403a504 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+87342c0e-26a4-4b33-89e9-7b6636de518f 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+e4cc7385-6154-4a27-a48d-6cf4e0bf636f 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+6f75eb0b-35b3-49b3-afc9-f9625cc57f13 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+d772d5fd-3f3a-498d-bd78-535355b4c77e 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+c0f15d47-953e-41e0-8a9c-c21b25340972 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+0c22286a-840f-4ab0-96b0-6e79b4238545 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+95c3b0c1-d243-45de-8e43-998030e544d6 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+b3d7903f-6601-4659-8145-9bbc840d1a86 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+7fb97918-12c3-4980-a69a-ea7e345586b5 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+68cd4e35-a539-494d-8b6a-e3448018d489 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+bc706054-363c-484d-8dd0-64a223260d8b 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+1e6ba51d-bb66-4420-a40b-6938de49f613 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+2799dc20-6dd1-47f2-8c0b-5d5e2028ffb3 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+301f5fe7-f7e6-409b-85fc-f3792de3186a 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+676803ad-6c76-48bd-91e9-2a2c125ce282 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+633d97e5-f0bb-40b8-8934-5663cffc5bd8 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+2b068a27-f7ba-4efa-9020-cf0583eba1bf 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+12b3308f-002d-4ffc-8a96-3681f1956672 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+d76f34bb-c0d0-490c-9c3d-601244470bc4 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+a5784dcd-7c28-491a-9d61-d3d46c774a9c 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+ecde1173-93ed-4355-877d-7bde12a51580 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+d5b0b22e-87a1-4fb1-8315-300334b35b45 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+80660100-06d2-418b-8b29-c9853d5c32d4 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+5894e882-9af3-4f62-924b-3e8d35e42f11 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+1247984f-aea9-43d7-98bc-34f0ca690feb 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+4a6a2ba4-effc-413b-86dd-20ca761b8114 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+813d78c5-be8a-45c2-884a-305712324d51 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+671535a9-2868-45fd-a7c8-c15daa884030 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+446ebab7-cae4-4ccb-bbeb-318f64d3d722 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+2eb520bb-4228-4632-8bdd-2c8d89cbd6ac 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+749aafae-004b-4ae9-9828-33101c8f7441 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+6b8836e9-3db2-4477-93f1-d4ed89ad23f1 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+70095347-36f4-40cc-9e08-5b8c2fa320c0 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+0e0ebfb4-034a-4240-8c70-74b14f15e06b 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+16a75232-36ce-4599-996c-a789aa46ee0e 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+aa6d7d75-1a46-4040-aa90-30f3391191a9 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+57a9ac02-3b4d-432c-bd14-dd5274eeca31 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+b4c1e657-1ec4-4216-b2d9-05ee71d5ed5d 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+c0635c0a-5192-4b61-90b8-2a27e6057668 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+6db1ac40-ea92-4e80-831e-9c2fdac78c7c 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+0d572f4f-800b-4ba6-a707-774eac47cd49 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+d0baa007-5e54-40c8-800c-a2054206f90b 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+87bc219d-f583-4276-a834-267c75d2bb7d 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+53959e0a-95ca-485c-9598-17e6150f0211 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+ac12b537-54b8-4be2-8672-dd2e37248326 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+f6aa99b3-b91f-4f8b-a2bd-bbee48a0b747 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+9bf731d9-9ea6-490c-a1d0-962032561a9f 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+ebf1c317-b5a8-4226-80d1-21aeb0c5cfd2 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+23ce3d62-1c2e-4961-ac63-3f19d5b4daf9 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+7f801f7a-8b73-45d6-8ddb-02e5ca0ca747 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+ec84e16f-722b-40b1-b7a1-90272bc2fbcd 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+d225d161-cc80-415c-ac5b-12f8c4a8d7dc 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+5954b1f7-1cca-4446-8805-79d8439d45be 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+905c4585-e5c7-4f14-bbd5-ab42efb2f7e3 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+2b0b2607-fc7f-4251-97c3-df5f9e88f578 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+7fa830a0-411d-49f8-b39b-f641f85fd276 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+8003f4c0-11c1-4032-9f60-1d73bfa30e0c 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+92e44073-e0c0-497c-9b5c-48723edee086 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+db2122c3-2046-4eea-be3e-a1086062b9b8 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+31f54963-869f-4df2-be65-c94d801ec6f3 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+12888ea4-bed6-4350-82f0-8e7f09ace2f3 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+a8b52c6d-171f-4452-8554-0d915325f39d 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+f9cb096f-3754-43fa-a7b3-225bdde3e4ee 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+cdea7f58-237c-4d4f-b200-8e3b1742d27e 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+1481eabc-6163-427b-b5f7-6b18987c9251 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+3791a107-070a-4ece-ab8e-a33e8225c78d 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+0aab7f9c-1709-4777-b3cc-ea0e148d3939 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+dcc2874e-401e-44e9-be21-8991bf7f52e5 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+705ae5ee-2141-4813-8bae-6064cb410080 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+8763ce39-3243-49b7-803e-09f956ce51bb 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+8c33188d-4e89-4478-a5ab-4415a4496d23 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+c787540c-c684-4413-8bba-75d591f8e75a 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+3a548cd0-28ef-466d-881f-e0931d328e1e 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+ceda586e-bec6-4798-8103-4c18bcd03664 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+46b190eb-edef-4278-8f53-59037b85ad5f 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+b9a8b6fa-004b-487a-9a51-f7e7ca043410 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+9860071f-3406-4c78-8ab7-637fff4f54fe 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+73cda809-0027-46cc-85b5-8f5f4a289a6e 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+0de93314-d037-49ec-9a88-10f1d06ed118 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+e4fc4f32-de41-4e65-b79d-ccbad49c9c10 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+a0bf4777-0402-4959-bd22-0b503a6f9dc2 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+32eca1e1-1298-46dd-b0d8-0d27128052a1 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+1de135ab-8a5b-43de-850a-9c3f5258d3cc 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+b3be369a-771d-4d81-9a35-4bdf6a220328 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+7d2be42a-8e46-4dc4-80d3-484b843f9a43 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+bbae814a-c298-461b-b8ed-01c51b02527d 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+fde5020a-bcd7-43ac-b002-9f81f70f4cfa 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+6f807dab-6855-42a7-bc62-f35caf005729 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+e59158ec-849a-46c1-9652-41190eff7366 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+e8dd0781-068c-4ba5-ba4c-cb513a284e50 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+4ea7a94e-33f4-4b63-93de-82ee1b1b1058 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+c559c91a-0820-4849-9ace-a9ec24491295 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+53966d9a-c6d0-4bef-97a9-272f1a95c8f1 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+b4db5bed-b7de-4829-8a4c-ccb43b1c1273 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+05dca22f-2591-4e20-a3d4-10f1b80ac52c 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+78dc2bb8-ca50-4b0f-ab0d-b31ee6506f71 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+99c225b5-fde5-4bde-8b0a-f0c2b405683d 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+1d38ee84-cac4-4152-a1b8-18c1ec21b2d4 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+7ced5964-f352-4da1-a34c-6ac74003b15f 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+adf00b3d-e94a-40e3-970d-37b6ea0ff78c 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+7ee973ba-9c8f-4587-b4e5-5caefde814ea 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+3d22703c-b8c5-440b-8057-b0530c048b90 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+43e26aca-3014-4460-a2c9-6069ccbc3a8e 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+1e0fdf51-7a34-4770-b6b9-4adfbe3300fe 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+508e627b-dc6b-4f3a-9193-6a89fc3ceee5 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+527184ea-2b88-470e-8a4a-6254e698076d 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+aadf4079-968f-4bd0-9fa0-c870bb81b132 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+ab4c1ecb-b459-4b52-9bc4-5568b8bc3611 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+c1b6cb1d-73d6-4c7f-be67-a7c3c7dac775 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+486e60ad-7ee2-410b-bc5f-43b802280791 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+8a67e31f-490b-49f9-b744-e19b0d16ba82 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+18796c9b-77da-4a35-9246-9e860f89862c 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+8aafcdc1-21b3-41f7-8501-c5177f2510ae 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+abc859ae-8d17-47cf-8500-3365ac7564e9 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+c8bdd9a2-1c05-4a5c-9316-7dd00cd3eedf 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+8420012e-e97d-4952-9bc1-33060f062c06 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+67bf7239-9385-46ac-985d-f8898f1f3fb2 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+296fc38b-6dbb-46d4-b0cd-964a6a9dda5e 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+6710c42a-198b-4fad-9fde-00a30da4a72d 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+e255732e-797b-4574-bf05-4b6e36115059 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+dafe88ff-ca91-42a5-b841-d9d2c5659a0c 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+6fdb77d5-7b35-4e7e-87e8-6a3037ee7420 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+767ca841-ed60-4b09-b96f-88da67011144 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+8ec0ef14-be56-40f0-8db7-077e33bd6d26 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+d30485a4-2f67-4fd9-a54d-320a052c0ee1 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+6bd43545-26a6-4574-bbbc-230cceb58e0e 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+bf23ec99-bf9b-4096-8fa0-1e73e1d99ab4 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+4d94a002-6e11-41ad-96a1-fb564e5393cb 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+3d9cfb4f-c88a-4299-aba4-9c91aab9dc14 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+c7b275aa-baf3-4a52-9ee7-bcbb1c3fc4f3 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+9dc4911b-67ff-4815-bbd6-528575705fe5 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+24ea2e84-eed0-4eb6-b1bd-0e338beead29 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+9ba5e507-8db3-425d-9256-2cef98b5384e 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+87fb0469-1656-4521-81e8-426ad8fe2007 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+e2ea2ffe-9586-460f-b163-1571350afef2 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+ee4ebcdd-1a4d-4410-a11e-545b984879c5 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+e212c40d-b111-4f24-9b4f-e1418871f8b8 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+8cdba90e-2a7e-4c31-b116-82ecd20827d6 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+8c0c3e1a-f38c-4a51-a0b5-079d060190bb 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+0a51c96c-9425-4b67-888f-9ee2f7dc64e7 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+3bb55220-9a22-4854-a44d-46df9bdf54c8 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+4133202f-9615-4deb-81da-4c4043c1f509 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+e2c77f37-6f80-4708-933e-2a80986e97f5 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+afbf56ce-0339-4099-b17f-93b21f51f124 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+136f320b-e80f-4983-bdab-0dbceec77d55 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+1dcaefbb-e49c-4518-b55a-9bde7f0c6794 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+e7864450-a4b9-4fc8-a55d-045c4ced40f4 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+ce502679-6a47-40e6-bd6e-5725fb543003 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+084d258d-ce96-461f-9721-69fc7727a05e 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+ea60d864-3991-4b6e-a48b-031cfc552e7a 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+86844e8a-36f4-4e1e-a422-67d8e92ba31a 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+9e4840d0-e186-4341-a0f4-16533438c301 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+39e27e2f-326d-4ea4-b701-39275722a8de 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+5f7be911-4ae5-4d88-bfba-20ed90eda84b 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+c98226c4-20d6-495f-9b72-1f7a70eaf61b 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+0d587a7f-740d-4b5e-a7bc-9b4a7b4c7ec4 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+24ba919d-c936-4758-b4a4-b2493ba53749 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+ce7d3f18-6c99-450c-b794-7a4b3b60e3de 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+4b040a55-31af-48f3-89a3-d2d4e51031fd 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+c98d7d73-9d5e-4778-9dd8-93ffdc459447 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+c33b4986-d76d-49b8-9c7f-04d093eaa046 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+e228c22c-8592-4dba-96f3-4fa8bbcc5348 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+066333dd-ecd4-47b2-ae82-6c9788a46c01 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+69a525ef-dc82-4c89-a8d6-ddfb7f7cf57b 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+73124764-27b7-4ff7-a93b-94f6a4b79185 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+f06eafd3-f484-4832-b23d-6de279f07605 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+3c7f2e2d-36e5-4cfe-b69c-811a9b161f40 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+a0228457-8476-4bd0-9f60-874ba0bdf3fa 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+9bf3045c-7f82-4efb-9c64-59260c19dd60 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+4d366101-8fb6-4f0c-bd07-12079a7dbf2d 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+7aa09502-98b3-439f-968b-10e23270a98b 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+ee1d5c1a-aea4-4233-9612-b630a5a52ba5 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+c1f7a585-a01a-4cbe-8e4b-8cb7308ef6f9 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+f56e451d-959d-483d-a1ce-008930e35f53 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+7ca9162c-3267-4ffb-8d8c-83c5ca10f283 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+fcc919c5-5352-4913-a6ea-7ee2db7ea236 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+a666b8fd-c0bd-43a2-9e6b-046664c996e0 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+470022fc-92a0-48ac-8a06-d439173394a7 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+45433dac-a243-4b25-883f-cd47bbedf3ee 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+4104a702-0147-4230-8ac7-b291a24ee4c8 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+d5211027-4ed9-47fb-aac0-26fa71e477c9 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+f6623ec6-fc11-4051-b00c-e4fddabed086 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+c0fd1729-576e-4fdd-abe8-59b4cae1a3f5 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+0d40e8b5-66c9-41f0-baf5-92cb8b98de1e 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+e4f34174-3aa8-486f-9230-6df645515531 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+3ec9f94c-2754-494c-bdb0-5c4a35f3b1c8 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+37513495-4e7c-4235-8164-b52b7768ea38 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+8bc4115c-7b8f-4146-bfab-3fb6704a7782 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+1f88aa3d-26ad-4ea8-b46c-4cbcfa42cb3b 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+de078b3f-d801-46d2-bfab-502e80915049 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+fa421a24-b468-4573-978d-786fac29f659 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+b97821da-e096-4f0c-9c3a-c56b15e84946 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+233a6569-926a-454a-9d8d-709feb826865 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+b80e3c5c-c7a3-4b38-b99c-0330ec7c66bb 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+762cc6fe-47a3-4efd-959d-32adbd7de8c6 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+649fb7d6-7f27-4880-9323-98674868c0ef 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+bb9752bb-4876-452e-9624-64e455eb63dc 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+b85c58f0-41ae-4d76-b58e-bf8c12714aea 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+400ad860-ca95-4717-a0f0-7f39bfca90e9 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+f653fb19-aa62-42c8-8291-1dca4700f747 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+5d862db8-c7cf-4671-ac9f-b5d88348ab65 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+01f1470a-f936-4df3-a105-6dfd7d59381e 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+4afa5dca-fedf-4bbb-8692-21eff5e3da37 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+53f202d7-bd4b-427f-81e7-35e2ab953d73 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+7f81738d-a620-4910-874f-2ed7cb7294eb 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+428034b3-3f77-4610-9693-04b74821fcc6 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+b276a042-a8e2-404d-902e-6afb153ee039 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+6b06b1ca-2dae-4df1-84f6-9185e1fa5629 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+6e9110c2-cf8d-4805-9cd7-5be1136cffcb 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+b5c8ae53-2e5a-4c10-a9c5-326935826762 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+6fc5480e-cebe-43b0-a511-da6e37fce7b9 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+e2984e17-994b-42fa-9ded-b8837b8c7360 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+9e21fd0c-ad23-41ca-9c94-9f9fa066c63e 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+35bb937b-c2e1-4f2f-953b-2d29bd00e5d4 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+befcacda-ec9a-4221-94b1-d38ec4151ca5 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+a5896557-4278-48e4-af8d-2ecdd91aeb50 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+4bc22b32-cb24-4c21-a4d0-b4be9d0767e7 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+5005cbe7-bb63-48b5-ba93-38bffa0732de 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+ece4b433-d231-46fc-b019-ad26366a7179 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+52a40575-a628-4819-b88c-87cd48c12f6e 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+0bcfb001-e12a-4fe7-a8ea-900d7d9bfca7 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+f10ff9c7-5e07-4081-ba62-fd20b89f48b2 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+8cbea101-24ea-4e65-99eb-261780ba473f 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+c8f7f0bf-cdb8-4865-bab3-c9e36fcb9e20 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+0f7b1608-ae84-4a75-924c-2ce1fd560e24 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+c3d87a7f-658d-425f-8411-d77bacec2891 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+bcbe65d4-03ef-47a1-89c8-b2d1e9f94989 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+1a15a93d-1e58-40d3-ba62-c334c263f5b7 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+47793f2e-a614-4591-9904-d026d0d6bb3f 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+23aff590-5789-48ac-9bae-46b7c02f31d6 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+b0edd989-2dc2-439e-af1b-5f9dcda25ff3 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+389cf06a-4e9c-4e7c-a2b6-5bf81fb0afa1 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+aead4ebf-269b-4ee5-82cf-795fb6471951 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+c2cc149e-8a27-4c2c-b675-b838092c485d 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+346df7f3-fcf8-4f6c-9032-f8f2fa0931ec 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+ae821553-5afe-4949-bb52-c9ce72eb4992 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+49392111-9870-4a91-8a90-985fd6a7d191 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+0149498c-efea-48b2-8401-eb4453d47549 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+c529a853-2a8a-4c22-91ce-03beeb2a0e75 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+f10bfd2d-536d-47e2-b85e-63849c0d25f5 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+53657820-b59d-4954-a175-2748a9e8d7b6 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+b1fd733e-a5d3-4948-8bb7-13f5fff4fe3f 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+0cb7da76-a1cc-4492-8cbd-2380d075924d 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+82472c12-3b35-4510-854f-5bfa95cac95b 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+5672d988-64f5-4b8a-8a5d-513fce9227f2 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+90485e7b-2910-4c27-8973-3d54b8685fe4 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+ea4a8531-dacc-4395-ae0d-db75a640e3cb 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+5263bf49-16b3-40f1-839b-937e5c635192 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+e4c035e2-997b-4cca-97a2-ba431c4b2caf 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+a0e93f0b-a287-4717-8f91-d9f02370c105 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+ee4fb3f1-e749-4b74-9539-336df218df5b 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+b9f1755d-dc54-446f-82dd-b71bbb941cbc 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+7e8c770e-e805-4bb0-bca3-4876711d4b23 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+430dac6e-ad9c-4b7a-a447-7fdd5b69fc81 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+c4197ffa-448d-4dbf-9970-e2f1f93065d6 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+44eb5854-2bb2-4725-9ea1-3d3eb19286c7 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+9c063630-a8b1-4db8-965d-7dc1c58336d2 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+eb215b68-19be-4a38-ab74-c933b6d50a75 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+ddb4bab4-e5bd-40a3-baa9-79ebb5bc856f 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+b8382651-80fe-4463-b788-07c381973759 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+15e2e0bb-5f9f-4baf-88d3-a3c0f7b9e238 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+09fddf80-1158-44b4-a6bb-e0518e954f52 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+d1408f4c-2443-4d64-8283-37f76fdb3675 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+d7240b5e-d2df-48d9-9757-96ac01b10868 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+0948b7a2-74b6-4a83-b740-c67ed94a92d0 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+6cffa5f1-ff1a-43f2-a49c-902b0516f3c1 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+bb413945-e841-44b1-a33c-818e3959ab6b 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+b0dc9341-ee42-4333-b258-ed58cef93980 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+b7dc60ca-b63d-4490-ae65-f60fa8e8e520 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+55332dd6-4999-48a0-ac55-bd2b084d57f6 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+aadaabfc-ddfd-4626-a973-6fd2195c6197 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+b5ea5388-ba15-4ac9-8a3e-8f26361800d6 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+075173b9-0afb-4c1a-be65-bd1bbbe07185 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+de5f5846-75e0-442e-adc8-4f863ecbf3e5 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+77cb9a26-5faa-46e6-a01c-9707c6f8d292 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+d41d7e8e-e0fe-4f19-8dfd-d8a6341bf4ea 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+74062f24-cf9e-41d8-a56e-1eee587fbbb0 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+11ffdad0-6ec8-422b-8515-4ea8eadaa8b6 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+547c00a6-3fd8-4f10-a2a0-fcf016a6100f 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+98becf78-3306-40bd-889f-43c5600847d4 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+c0502946-dc71-46d4-b15b-0c0a4359b2a2 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+15f0fecf-4c8d-4f65-a29e-661acc018caf 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+b8911a7a-2807-4ded-ba1b-c3c56b879174 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+956da7ba-9418-4d24-840d-0ec1c043d916 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+386eda89-a501-4938-a06d-fddf1e7e2b77 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+039da1cb-efc6-4649-b443-ea10c3948f9b 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+e941e3ed-0121-48c8-84c9-8ba124629537 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+eebdbdb8-1ede-481e-aafe-1f8a146301fc 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+b6b8faad-d4aa-4ff9-9535-9a6442e790b0 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+55260e63-5a77-482f-9b78-630194c77fd6 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+d87528e6-9091-4beb-957a-13871d89247c 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+d5a5c9c3-63cd-42ad-83a3-da44669f7f12 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+5e7c25b4-29bf-450e-883e-95a000845c0a 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+4478f90d-ce5c-417c-8c78-00f44ba86af0 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+e29b9f0f-358c-458e-9f64-e8ce20f59fe7 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+52e135ad-a4c1-42e9-8bed-4296f06d706c 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+3a3e4e37-e737-4048-954d-663c4ceb5706 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+1a921634-a878-4b18-81cf-77b6ee1b3097 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+d9a74c33-21ed-496a-b522-9125495058fd 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+ca066f8f-64e8-4a0c-9bec-255956312265 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+1f4fd9d5-d6ca-4d99-bc88-ce84ea03693f 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+ed96a01b-35fb-43aa-96b6-3b648bec1b3e 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+1990f345-a747-4f3f-b95d-4ee9a0dd0c1d 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+4e60af0f-05cb-42be-9a86-15b2825dd211 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+3b740d4c-a536-423d-9bf8-1d9f4e924bbc 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+556fec3d-bc74-484f-b705-4a6c425c0f95 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+1e1bb9ce-d6dc-480d-bc20-372a48e23277 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+ba59c456-1a0a-4616-8183-95e807726ce5 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+32b37a53-e059-4824-9905-ad531f9e00dd 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+d2705004-0e74-43a0-98a9-96e4ec6dc8c3 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+81ca6358-c56f-41bc-867c-c88063019d6a 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+4a07400c-0cc9-4975-8360-ed915c3ce965 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+dff77173-7e30-4eba-8018-8b32bd6c146b 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+b8be2b69-6634-4045-957c-452f46ea5b59 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+8e692bd1-a187-44c1-8b11-8187cf2c3b66 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+677698a2-9c64-446f-a422-97adb1599a43 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+450add3e-5e09-48d1-829a-1ba7b2505106 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+8e86fd7a-090d-4516-981f-ad4ddc960e11 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+b9471feb-a75d-4c1e-bca1-1cb0af261a93 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+35d3b1a1-9ec8-44bd-be17-df58376f6a49 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+c67b8380-c700-4705-a772-5b2fc8984f92 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+35c1f707-f61b-403c-b684-7f7b3d0c24d6 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+e5edc40e-42f5-4c47-8be7-78ed4eae4fd6 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+061bd3f3-8982-433c-a11c-dcedacf35101 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+83d71e98-0fb8-448f-bd7d-2d140099b0c3 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+3950d902-444d-4631-9158-db7690ea2b27 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+673b005b-5962-45fa-b25d-2cc6dd5c0d5a 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+f3bf3196-83e5-4630-96ea-5a813459cc81 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+b8e57418-48de-45d0-9a2e-400c845f3bee 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+7a1ff664-ee7a-4b8e-bd24-eea04d4a03ef 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+9475702e-cb60-4aa3-99c4-a609f8297dd1 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+81309f87-e444-4728-95ee-59a8e8d9f984 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+7164edae-6c38-47df-9025-f56aa1a9822a 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+1d55bc6b-4767-45ef-a442-5a1df7ff7e16 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+40b4a7c3-e034-4c6b-80ae-cc1a7c84bfab 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+2442c36a-3aaa-47b9-9f3f-f9ed8ef40ab2 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+94c7e40b-4579-4310-a888-64ab8a971870 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+b9e9b70f-7cb7-495c-bb4c-11a9610e62d7 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+243d251a-3961-47af-916d-3168104dcdfb 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+49db22f4-0772-4351-81d8-f723061c7b29 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+fcd739a9-89b6-43cd-b878-f1001660cfcd 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+3d949e2d-8fcf-4ead-afbc-f3b671447d5e 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+06ad6276-2651-42e1-8bf1-3cc5d44f618a 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+614256d3-b40d-4f10-a09f-61a08594ff4f 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+31bb8983-961c-4931-8d2b-a6defd7be910 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+217cebd4-eb61-4195-8eb6-d69a6e89e257 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+d0260ba4-ca68-4f20-9600-e82c6d7642e4 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+148af06b-91fe-4b55-a26e-55a9be764023 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+da8ed4a2-ad9f-4e5a-b28e-b7f4f68682ca 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+a94e359f-b92f-42dd-ba12-080bd8217460 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+eda3bad1-9b35-431e-ba92-36dc7896e471 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+121e1d60-30e6-4821-aae0-d03259839af8 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+91c50759-3757-4678-92b4-8c5891c00673 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+4b9d484a-eb42-4c2e-a246-6ca376298404 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+52c158cd-8d64-451d-b76a-6472022345a8 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+d9142d03-22ad-4605-b747-f3bf57745745 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+145be104-12c3-4522-b706-5cf573b24d43 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+4a89ac43-4819-4225-b2d8-b444154f4db5 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+6f6236da-9976-478b-9b7f-994ad15cc81f 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+32e7d853-42aa-40e7-b7f4-f24e42ff70d5 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+95eb35be-a38c-4791-b7a3-f0e65d6ab02c 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+a259f321-b934-406d-87a0-4a41ba4f74b4 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+1e7825b8-1665-44be-8f5d-9e419d53febd 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+26be60bc-6a50-47ae-8192-9647e57f3745 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+8fc2968b-b5b6-4aed-8dac-38ef294bad12 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+811a29eb-1af1-41a7-9555-6f5fbb178e42 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+77ba2879-d7f0-4db6-9732-375267119c8f 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+c4a056b0-2d0c-4dbb-96d1-b2b19411dd59 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+44555f3d-0a8f-4c50-8c6d-e3c2652ba08a 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+97ec0d68-5b43-44c2-aa1d-f4d27edd37a9 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+cb94b191-c69f-4aad-98fe-6fc0201edccd 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+a3a98604-ebfb-4244-bea8-c2d4bb02bb57 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+483b2e4c-8fb9-4f16-975a-04c08d04aa3d 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+c62e99db-b0da-440a-ac6a-b612236ac5d0 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+fe08759d-3b46-48f0-9a0c-7f7226e726f2 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+8827de4a-6c3f-4e32-a0c9-32309477bbbd 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+007f2286-2e7b-412f-a7a0-9c0488103e73 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+7cdc1c37-4515-445d-877a-6cdf19020ac7 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+f1fe228a-d2c6-4534-92cd-fb42682a88ab 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+d633efdb-c6ed-4bf7-8877-dfd61e58b3c5 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+f465f247-7c0c-42b5-a076-92b473aa57ec 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+cac72092-106d-42fb-89ce-5b2a536551ef 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+4d4172ec-03e2-4be8-a262-2f4d4978c406 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+1bfa2a2b-8361-4560-8e1d-80f563004221 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+5be0f47f-a927-4bf9-9783-6ab20d4612f4 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+53685965-eb14-43e4-8fb4-460527d1fa38 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+3ec4fb51-88b9-4aa7-a369-413d3f2b8808 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+489be3d0-c610-436e-8464-ae4365498646 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+fa6dc223-c7c3-4b88-b6b1-381eb42b829d 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+36460272-2f4c-41a9-a93a-31caab590d7d 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+152ae63b-5eb1-4f0a-a665-e1ac06dd21b9 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+df38f1d8-372a-45d7-b26c-8b21df2fc95a 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+91e33b27-d4d1-44da-bb5c-a76c0e50727e 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+cadf3624-b78e-41f3-9cac-6f6009b14ebc 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+19977e48-7399-47cf-b0f6-00c8693e2952 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+27329527-fb48-47a6-98a1-c40a6efe5d7e 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+dd0cc10a-e829-48a9-bc4a-def94437aeee 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+1badfc29-3af4-4a6a-9c75-872dcbefed38 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+599e889e-a502-4e28-82ad-9e5c7e03d5f5 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+423b355b-ed4d-4e49-ac09-8e06681a3624 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+3cc50075-3d51-4185-ac97-4a1a20c87ea3 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+d4cdd838-813b-48c2-bafe-ff580af286c2 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+5b639747-729c-4dcb-93fe-919f7d697b00 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+32c6b597-3141-4a00-8459-24073cd66436 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+d50755bf-85e8-4045-ace7-567959b58202 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+6d3b0634-8388-4285-a852-96f6eb202f18 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+8b3f4ec5-54c4-4e93-baa6-c782e2d7abd1 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+5b5c43a3-ade8-4820-93b5-d488c19ddd6a 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+3d4cac25-fb80-48ca-bf34-6583a9b23cb1 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+de1614bf-e05f-4069-b93b-15f8beb984d3 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+960ff529-1093-4818-b95d-96451ed88815 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+000a7f65-7319-4722-92be-216b2c25c019 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+c4168e02-a7ee-4040-b5d9-7032f0df1ee5 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+691d4b46-e637-4ab8-ba49-db7518af0809 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+a352fd7f-4f0c-4d8e-b5ca-72e3fa72a453 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+036a1234-dd29-4166-8cc4-0c57501ebb14 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+21b8b9fb-f28b-4bb0-aeec-70e0f9d13639 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+4d0b4614-70df-412b-8a45-b1ce384e50d1 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+ffb981e1-c353-4b45-9f35-94504de98cc1 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+b4cae5ec-4b98-48ec-aa57-46166e6ca603 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+8451c7d4-3d8c-4da6-bb5c-34240c3c3f0b 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+e6946206-3cf8-4a24-883f-1fd0f6652672 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+02bc2c36-2778-4825-a2d2-d62aa6213971 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+329e704e-8a12-492c-989a-39272b351fd7 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+a1ffbd76-4f34-453e-9bd7-8abd82a64406 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+d0c8214f-8543-4ad5-a2bb-8928878be79c 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+668a6210-e0e2-45e5-9e53-fcda162177eb 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+057e85e6-cc82-4e5e-ba9a-bcd335388631 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+d2b71ed8-f028-43f0-be7c-c2937b28bcac 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+8aeac7bd-a4fd-433c-b6f3-16878e24da62 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+b3c3cdf8-7059-4717-929d-8e88a0202739 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+b79babc0-f2d5-4388-8eab-8e289a97a9c1 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+daa6d905-c5c7-4745-a870-8010741438ae 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+29c65f76-c568-4ef2-9389-5c84c4f507d9 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+b3a462a5-8c2e-4536-aa28-1b228d255e6f 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+8c1e2902-7c73-44fe-9a1a-5e6a3061b8cd 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+a49b47b9-7020-468a-92cd-027f13dea755 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+31a4c444-e3ea-4e45-a527-3673ecf70a99 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+2df9b1f2-72f2-4447-8210-d6aa31b273a3 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+35855856-fa1a-4d9c-91f4-8cbaa5c26924 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+dbca6ec3-1b2e-497c-b8e3-8d887209df4e 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+842401b7-cba8-4887-b4d7-ab88d80d04c0 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+6316414a-e131-47f8-a800-f21f8b3d0f18 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+c2fb409c-9b22-44bf-a97d-b8b79023d301 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+0c186cdb-f7ac-4898-a0e6-f9872b46f323 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+f6975c3c-02dd-4209-baae-574d96c98c1e 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+278f9219-2501-4849-bd69-093740b481ec 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+04219589-32b3-476d-b030-7d5cb0eabd31 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+a7b1546e-6365-445c-a27e-187e075f40ee 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+42a64807-48f9-4141-a3b2-8d198c6a9f66 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+9ab28a8a-3e84-4cf2-af4d-a5c9a0b12809 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+543da400-2ff9-441e-b516-305635e4627f 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+2e828df3-bb5b-444e-8223-2b940d04f559 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+b97518e4-1fbb-4f01-9e82-a49754636022 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+e3154b94-4394-44be-8004-6a73150e3ca6 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+d5f15237-7a78-44e4-a93d-8f3e1287f355 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+f1f5c1ec-3a6f-4e2e-a8d4-8811cd586060 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+f8b4f379-a9ae-493f-983c-752542988716 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+ef4e8d31-d473-4ae3-b2ba-f5226f171eda 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+e5d2b3fc-a35f-4adb-875c-465b8fe4eac4 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+13fad1e6-137c-4061-b796-819d8ede5d4c 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+831e56b3-7401-4fc0-b271-fbf44d908911 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+29d195b6-7bc0-488f-a769-befa5c988dfd 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+7a9feb8d-ac60-4f1e-899e-a83820667667 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+dc82ac66-19e9-45aa-82fb-1cae4c689aa4 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+f9d8f739-3396-4edf-b495-e66c023c66ef 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+918623ce-8dde-4041-a17f-b0960ff5238f 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+a46956a1-e427-44ed-bd23-4e0debf40462 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+2212c077-c758-4365-9f2d-b933abeebdcc 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+c5e26c60-049e-4241-8096-1bebd4236791 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+1ec2064c-8804-4f49-9c35-7be86cda9d09 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+3a0d38ea-d380-41bb-911a-8b2891d44e06 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+71f95fde-05dc-4bb2-aa95-18194207148c 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+78045454-06ae-4f39-a561-dc47e3a74b97 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+6e2cfb6c-d8cc-40ae-aaf6-7f6e82a9f4d3 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+15d15d44-f5a7-4242-9bcc-9a2fcf95a03e 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+e25dad0a-89bd-42c9-b379-da44a14530dd 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+f552f221-414b-48d6-b4ba-6b981f16f802 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+feccda31-4342-4f32-92df-53a1df13af8e 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+9640c564-0981-4e10-a58c-3d4a0ee572d3 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+564f656c-5586-446f-8cb2-68d3b0a1823f 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+6267eb4c-2921-4582-a895-603d32302e2c 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+4d887d1a-a16a-40a5-8f30-73d8e7c2a97e 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+2c18b364-b916-4529-a5be-b9155e72e372 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+fd0bce0a-41e4-43d2-9d22-cf8865988e7f 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+e50fc5c8-a46c-4cde-9544-030b72f0e7bf 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+1663fb2b-7006-4012-b637-ca5263cd3eb5 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+92ddf0b0-5703-4d71-ad56-a4d63dfec651 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+ab4ff5e9-9831-42f3-b7ad-8e5c874dec07 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+678eb451-1ef7-4d6b-a26f-f8b673c56ed4 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+b267ebd2-7ee7-45e9-b58e-10575228c715 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+07a519f1-1dac-4854-9008-2633054e1e98 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+b68c42e0-1aa6-47ff-a82e-1c3d6a73f217 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+5e6142d5-cba0-4bd0-a8e0-9ccb460afa6b 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+ddf62f83-4ba0-4b9a-82ba-fc0771a74840 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+679780bb-afc7-4da8-9059-1440f0ab9a94 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+3ea54cb3-0074-4287-9a8f-0bee09dd8c98 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+e535fae5-d747-4097-a56e-28c082a3f6f0 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+745fab10-63a7-42e5-901a-c5d44e705873 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+cd30804d-7ad6-4bc2-8526-cd3839b92864 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+9a974995-7f99-48f2-9ebc-ec5f855b17dc 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+721f71f9-0c6e-4f62-99b3-bfeadc47989e 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+e484e512-0480-46b2-91e3-d267433d99f5 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+1ecf4450-c477-4721-abf1-da589e64d8fc 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+5d3a499b-9507-4f19-aaa0-3ff48571a7de 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+1c38f72e-716f-4d32-a7b9-7fbec0d36fdd 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+04ebbf08-10e0-45f4-9611-61c73b9a621c 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+9914b7d3-0f2f-4154-8cd5-1ff102060b8b 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+786c0ee5-3115-498a-b43b-2036287c2625 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+2ff152d9-f069-468a-857a-596397c75964 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+74dbc0fb-e614-47dd-8845-87042020e9b0 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+07b66862-7c22-4bcc-86f7-00486b324142 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+ca826603-bd86-4790-9e9e-fef886069df2 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+def119fd-5b40-4663-9a72-745576eed5dd 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+0617d8ce-ce7b-46b6-93d1-e73460cc0038 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+029bcbc0-4403-4be3-baf3-78c1075da6fa 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+2bdecbd5-115a-410b-ba2b-f83db1c25134 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+208c6eb6-4f43-42e1-8ec9-6d1166735f2b 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+8e22e42d-f29f-46e5-8166-ff3a62e24bc7 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+865b7550-75e8-4eac-be42-8ce27578568a 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+d2e83101-b57d-49cb-bdd2-f4f0e898957c 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+26920385-5261-4634-8b81-1e68cf9ecc98 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+c5aece5f-c159-41a9-81f2-7730ef7bccd9 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+5e21a18f-0c06-4b01-9051-db667abcc12d 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+8bc30fa9-c256-438d-8e62-ecbdc179db83 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+b5a25931-b6ee-4ebc-b62a-4f0e9eaf69e0 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+f33f1658-16a6-4218-88f6-ae052f3bceef 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+1d04b490-2a09-4517-b5fd-b697901b2df9 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+224e5077-4430-4239-9429-3004c662f956 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+e19026e6-3632-4280-bbe8-032a30ae50c9 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+1b9e8e02-7ed2-4800-9dfc-11694db63032 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+8e995c43-16bc-4c25-99e6-a2ca6b045ce5 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+d02ac7b0-5c42-4912-a525-69c3a4d891a5 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+27e49ebf-1146-40f8-a456-da96cc3a4506 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+d65641ab-6d38-4a63-89e4-70b4f0d95d01 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+bcc0bb51-4986-44eb-bd75-2d953a9a6951 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+62f69781-a737-4a4d-94ca-53eb2fd48b46 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+0308d531-bc01-4e65-adc8-96c41cac67fd 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+00e538d4-d992-4215-aaa7-fd351d7223e8 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+1fe17339-3abd-474b-bbe2-52333e0e671f 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+649bd352-1931-45fc-a55a-69a27ed29807 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+86f26bd8-ba51-42a8-a5c7-a92a10059465 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+fa7df401-9a2e-4c8d-a19f-64959efd9883 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+343e204c-022f-437f-a8b2-29286a4abf18 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+3b0d707f-badc-4ca2-9f29-61fdbf6e9760 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+4f013392-e1a6-4c5c-95f5-9a831337a6b0 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+858e6ba8-2bfd-4723-b4f7-8a7f30afe23d 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+3bbc7dae-8b08-47ca-bd8c-6cc044d758ff 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+656f2d77-6ece-4b7f-add4-55b1f205ed24 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+1f705a5e-adf8-4fbb-80eb-4bb1e2c0949b 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+4e4f8238-a516-4556-bbc0-0812401c41db 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+1a36ffcb-875f-4f98-8800-13f0267c510a 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+3cd5f0c5-6167-49ea-81d0-847eb41c3253 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+932dffb2-d285-4f09-b295-0cbc84422548 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+2c0fe4e1-c0a1-43ab-a445-8a8304bf56f9 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+2ca1b3ae-3af9-4942-be32-afcd77b11ad9 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+00c7f1c0-1487-417d-8976-4d7385e78018 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+f780b775-eb17-4e34-9ceb-07350954614f 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+00716ac9-2bff-4816-8cc9-4169ec0953ca 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+4059adc0-4fd7-4e84-8f9b-a6a1b886d82f 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+d6ef31eb-2845-4068-a0de-4745aca2c86a 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+e9425d18-3f2d-4e9b-82a4-d2c873164ad3 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+03f79529-c68b-465e-be5f-5cac6e9ab53d 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+9e77598e-1c4d-42c6-be6d-fe78e4c89bc5 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+f67b2e19-cf6d-42e2-93de-1e5aec5cd1c5 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+3ea33473-ecbe-4c78-8f6e-2afd218b6bff 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+5f8c7ab8-28b6-4783-aa54-70eae29ca446 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+f09324f5-0cbd-452a-a0dc-9f26430c307c 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+df294ce4-0d20-47cd-a5db-5abf1c37cc24 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+57ebd9d4-4dee-42e6-9492-a3f0559de87d 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+cb2a27ea-246f-4549-87cf-c899fa051faa 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+106aac3a-28f8-49b6-a062-ed8c7f3369d2 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+d47f5b17-8de0-4406-95bd-8675e3f15e6f 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+4eb32c95-973d-45b2-9bae-bddb2d32e1e4 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+e9429392-9e93-4266-98a9-6b439cb471dd 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+c487328d-b3de-43eb-97f8-c1bf3dce2958 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+20fc70f0-a67e-46c0-8f47-b22120cdbc8f 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+62d00d22-8135-46f3-9b6f-0f4cada2193b 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+682ff108-e4ed-4c07-8050-4eae9fa1e966 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+1921ac27-3611-4ac3-a4b4-8c6d2f414631 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+0d1c07a3-537b-4524-96d4-37c7854c1dcc 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+87f7dae7-181f-46f0-8121-ad92d85d5583 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+36b71fbb-20e4-4631-a56b-1838f55bd1d3 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+c848ef0a-f579-4054-ad0b-682eb1f5b9d0 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+87e6d37a-b7d6-44d8-9ffe-0195d45d4f5d 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+1b1003c4-1be6-4594-b238-0c22ea1ad54e 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+888646e2-f5f7-4d00-bb9f-327414064f67 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+56ff54c2-c897-476b-82fc-7c516954b22f 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+fffdfe1c-1224-439c-8ac5-fc5d7c1193cc 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+08562846-69cc-412b-bbdb-e8645bbaeaae 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+ed85f2a8-e044-408b-8503-547bb663c3d6 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+a3bd2aa7-9985-421e-a01a-c0ac3355608e 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+f889a4a8-c92a-4944-90f3-978e056558cf 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+d6d47244-ffc4-4bd1-ba2f-c511d39d9d3d 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+7815ade8-1e8b-4179-9ed6-1c004f40c3ea 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+ad017fbd-878d-4dcf-b287-f472e53bea27 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+af932381-183f-481f-b0e5-e2f4a2fea9cb 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+52ad1147-0e8b-49ee-8c9c-1212809aea15 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+8f8a1d3e-a376-400a-b7d0-adb1944fc890 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+81325102-20ca-44d9-8a86-e2e74350b0c9 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+167ba0dd-649d-42c4-bf8c-28fce162590a 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+358a7b14-446e-4843-a255-2cc057cdfd4b 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+a22bb7cf-1809-4062-af55-dd0fe88867f9 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+0cd004e2-c175-4910-a185-bb72108ee597 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+96ffda0c-1bb0-480e-982c-b6ebd957a2f2 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+70cdb3a3-5521-49fa-b3ea-df5bb0c87e8b 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+fe7f041e-f1a7-4d05-a1d7-309ede87034a 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+50a58dd7-22dd-4aba-a44b-c1531521cc38 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+f73495dd-7fc8-49c2-b24f-f25f1c94154d 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+1f875ff1-9775-4380-a03d-0abcc64c2adb 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+efe666e9-4de0-492e-808d-ede0ae6d6e00 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+bcac7ee1-4aa3-4134-bf8f-c51372bfa0b6 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+cdf7eb28-ccb5-45e6-a814-30f79b197c8f 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+31fa63f0-77a0-4978-8ae2-752ec7c3038d 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+a423a82b-4c7b-4acf-b805-3f6d769745c7 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+cf761154-39ca-4140-8802-e0cb8fe22d63 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+c46499b9-30fe-4805-aace-532dad455326 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+cb7dc48e-bb45-46f8-9193-d61d008f9ed7 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+7f272932-8602-48bc-acc8-7b8aac728885 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+66cc7964-6721-4ad5-8dbf-e5cd916d7b8b 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+127850a8-2817-468b-89e4-27e5cf12a7d3 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+25079a22-3310-46ee-91f0-eafeeaa1176c 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+0dd0f73a-911e-40e9-a7c9-13de0166a8f3 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+9991b4fa-7fa0-4d2d-abd8-a08c8f65c68f 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+6444c94b-05e9-4638-a907-0089dfc53f01 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+1f46a9b8-f445-41fc-b75a-4814ef617626 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+1c3df17a-aa2e-43af-b438-801190b6cf29 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+f5696fde-7935-42d6-badc-7c9770aced00 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+7b3869f3-0fae-47c2-a681-37d4d81d6016 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+c345c47e-0c12-456e-a752-8ebc6e5d273d 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+1b46dfe7-42da-443b-af43-057560002f7c 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+0f10d79e-bffa-49c3-9d7f-cb4501f53b40 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+125be909-5e5a-413e-87b8-20461bf569d2 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+00f64f40-aa2f-4929-8684-1a895efcc1a4 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+336d6f3c-bfb9-4a76-b250-78b6d03376d1 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+aa93d162-6226-4e8c-9776-a2f3c9ffad85 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+2b727357-7488-4227-b656-027f8e710160 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+63e4c358-2d6e-4979-a766-7ec6d776392e 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+f0ea926d-ef12-400d-ae82-f91f547b1b8d 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+437bfdb1-b7d1-426f-85e4-ac9c7ca5865c 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+a85c8728-5067-4e7b-831a-b6e6d97232d5 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+8d96ace5-d8d4-4ac9-93a6-a78f4159ef05 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+50465835-3523-43ca-a56d-47d2af3fb84b 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+f6717395-0b66-49f5-99c7-3fdca184cd84 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+f0a62910-f536-413c-a75d-c78f4dad9aaf 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+81d75b80-458f-4be1-b6b9-540db27296d8 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+f5f099b4-7d7e-49d7-a812-79b555c13680 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+9a2aa434-7469-4e78-a769-1ea875a71a5b 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+ec032240-6e4e-4830-8f5f-68bce0924b9b 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+78944384-cd44-461f-942a-b0523cf7cdae 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+0e5b929f-d441-4e0c-9ad1-e320f0d739e2 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+ec5badd9-6890-4940-9ce7-810f45a382f7 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+6a41bbcc-33cc-4c3a-85ea-898eea584abe 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+d22a1e43-4abc-48ff-851e-2d537a25cde9 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+a16fd5d5-43bb-4df5-b935-b2f1b70bbc25 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+edec523c-0822-4dfe-a48d-2ea75509a766 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+badc831f-832f-4175-8aaa-2bf5e4792cee 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+54d8e844-225f-475e-af94-7949212958b9 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+9f9aa1d8-5137-4130-b766-6465b7813f66 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+e7c1e0d5-c992-4207-9a29-f63f0d9e481d 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+b7df9b4f-2d4d-415e-b19e-fd589843c9f5 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+785c9dc7-8719-42bd-95a7-fce0968c792d 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+097a576e-3591-4416-aa6b-a2024b242c61 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+d4aa0768-ef13-4a5c-b6a4-50ba3e5bc3ce 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+3cb1eb4d-45d6-42a0-9377-272e5ff08902 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+bb719056-07cf-4af1-a8ab-c9a75ceba270 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+ee61b83b-e9d3-443f-881b-58a7a589b21b 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+1fc1ff3d-3a8a-459b-84b7-9bfe8db466d1 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+8870904c-73e0-4b6c-8cf5-0c50ab185d11 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+661a3ad5-acf8-4e2f-b802-11e56b6a38cf 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+2a4f142a-5138-4f4c-9472-c76e9b83c6a7 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+26f159db-d61e-4c79-9414-3a530b2e5633 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+3c7f8bb1-310c-429c-bfec-8d2560cf5a40 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+355a21d0-04e6-496d-b0ab-221bb75ac6ba 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+c590b766-6662-4901-a481-5ba260ab8e3f 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+a8536c2d-b791-4ca3-8563-42cdae3c13f1 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+46bf4b47-10fb-41ca-af96-9550ac97ca3c 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+3ffbed4d-f2df-4a43-bbb3-c01ec08769ac 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+47459b2d-b258-4874-af78-e826beab9814 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+e8678f53-9cb1-4d46-8663-6ddb5152e286 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+9d229e10-7456-486c-b7c2-d9025570a965 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+ff902a16-8760-4073-b23f-1ec7fc32d447 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+a9d85649-6401-4db7-b17f-54968e835287 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+21bbe8d4-767e-4160-adc3-8b4123711f53 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+bdfa73b9-c548-4d6a-a81b-7e33b74a2202 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+1661066e-3251-4b54-a11f-8b05fbafa3d4 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+289a6999-5f8b-48b6-8cfd-654d4b65d3ba 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+b2b3f189-4fd4-4d38-ad5d-f69fdb593d19 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+ab227e08-36a5-4fb7-9aeb-3330c476b7b1 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+24eac375-55fe-49ae-92b1-b4bb0ed7a9f0 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+ff5203ba-3d1c-44f9-90e6-380bb8e461af 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+2cf67a9d-2efd-4f96-ab88-49db595b61ca 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+1cb15d91-734f-436e-b9d8-27278b4dd535 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+38c87e29-4846-4aac-9543-850b43bd3868 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+4aa1d797-73fa-4140-9500-82fb6ff3d7f4 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+53d56e88-2c1d-43b0-b52d-5a71adc72cf3 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+b1e63b7c-b4de-4e2e-af33-612e6fbd92c4 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+28e10106-bdec-424e-99c3-7469fe354b96 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+64017a06-9ba2-4f65-bf2f-12f7ae226151 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+fb425fdb-634f-4874-8567-9157da303493 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+9da8bbcf-3245-4b03-9aaa-0106247604be 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+56fb34ba-5e7c-45f4-be5d-ef12514c631d 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+44b92a5d-4239-4f1a-aca5-32ad000e373d 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+7476baa1-759e-45db-a724-51bbe57d4719 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+40cb82a3-16f3-43eb-bf13-c14a58931f99 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+e98095fa-dbc9-4068-b2d1-d63f825c8dbd 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+1ec5c912-6254-4310-af82-7f223b511635 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+d4cbde3f-6e76-4cb7-a8f7-32988b514e5b 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+ca52ff68-ab58-48fa-8feb-2147d73eb486 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+5ffb8cae-0f8c-4399-bab0-c9753b621828 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+c3f4060c-4912-4e1c-b062-4ad9e77a2809 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+1aa0084b-1b93-4daa-9c56-43bb9bbea982 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+a3a3a9ae-cf6b-4351-9a35-96b3e126df24 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+31eec191-479c-455d-883f-d53f2575e366 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+54dc2795-ddea-44b9-996a-f42e8168b034 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+847b076c-767a-43b3-9411-44055e557323 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+41ef2b3d-5ed2-4a1c-b3e7-b217dd9e8d26 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+5b8e6f06-4557-4fe1-bfc5-b0e7fee6a121 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+f1006507-fbba-4da5-aa4b-ad3a43584bcd 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+781ddb30-cf15-49bc-81bf-8ef72939b984 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+4e38a612-8ff6-405c-8697-f2d2eb4eedaa 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+3aeee3c8-f06c-4b43-a218-06ba1c461e44 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+d0241c08-20e7-4d01-ac75-b68e2f6071c0 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+76e6cdfb-e709-4031-bee0-15a1df316a3e 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+656b81cf-47d9-46cd-8c18-3f2f011ef916 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+aa0eb502-e91d-4de4-bf42-d59700edccfb 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+2103c41a-ce98-4184-8e40-a47dcc098399 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+2fafbaf6-2f1d-429a-b2f1-042dabea355e 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+d551558a-ecd7-485a-bd1b-cdd8b6698c8a 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+c4003571-607d-4133-85f1-12636a2192e0 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+cb54f4a7-52b4-47cf-9463-9657155a75cb 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+60ae8dd2-d2e6-4c36-9a00-09e3f1f4bee8 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+80778970-5c64-4c35-a1db-fe6c1a636ba8 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+6019373c-c386-40e7-bd84-dbc124cecde8 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+cd1fdce6-0911-4f1f-9f36-c7984a156c8e 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+cc9f8f54-e513-4d83-8a56-c172c414e54a 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+283ae59b-a582-4347-a5ca-367a6a2859d7 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+65048002-63c0-4b7a-b3f3-c29575150f25 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+be415e3a-439c-4305-a518-b6e478207e9b 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+a1cbcf85-54f9-4b27-a9f6-f9d7a468d37e 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+acdddaab-fa8e-4c3f-bddb-2d3a72226b77 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+f727748e-5647-43c4-a9c5-e4e191935d06 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+680f9d36-8ff2-41a8-aa7f-f5cecb3f3be5 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+e6f19cda-ac52-4467-b1b2-80ab6360b909 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+91354834-c359-4f04-8279-91fc8c725498 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+c7b19e62-acdd-41d4-a1b3-d6e641d9fbcd 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+cc196701-6da7-4079-a25f-df20315dedfa 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+a142dac4-4767-4d09-9e06-37e3eeecfc84 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+5e4f65c7-0d6e-41df-b4e5-d4202f3819f1 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+80eb0ce9-bb17-4298-ac15-504163dfa99c 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+35e80c4a-db7d-440e-be98-ca4b7b63da93 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+f10a3ffa-8225-4c1a-a004-8a6ea2b5d382 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+7c1895a9-20c1-45a0-a810-7481818e45d0 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+622f25b9-0f60-49ff-82ec-47af85825077 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+d4ab8e21-9177-4b42-9402-9aa67cfba0e4 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+570c2c44-c95c-412f-ba39-e052b8610e57 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+bfb86e96-bd48-45c4-8274-7180db58da7c 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+9c9a239c-0184-42bd-9931-8d861aa40963 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+4ab3e73e-7286-4638-9ea1-d036d527e5b2 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+b457e6d2-90d7-417b-9315-bf88b80d4742 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+0cc4ae54-b7ef-429c-82c1-4e40ffb67992 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+65919ff1-e50b-4ba6-89f7-23f8b8fa4547 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+8c9c0664-8d6e-479f-add1-0ffabfd3d383 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+61262b8f-285d-4a49-8caa-7a53d7654038 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+9fbde32a-da97-46e7-8e29-8d53f929fa99 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+601435f9-5101-42d5-8591-d3e61ae6611b 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+8638da2d-3b2c-4c10-8eb6-87de305e4083 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+1b138b65-6e7a-4f30-b97d-566ec849c250 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+d2c4bd8f-3531-4e4d-a61e-b70eb5daea91 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+e77b975f-31dd-479c-b13f-3be92222db8c 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+d87c8f1b-f82f-4f28-992b-693329bfeaf2 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+3ae7494d-bcf3-4630-babd-5af33cb6bccd 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+0ce63fbf-9a5e-41b2-b8ff-c1e787ad964f 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+73c06821-e289-460f-badd-4c8f89613075 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+b1818f91-cabb-4202-84c0-4b2febfc4ca2 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+c8d85e6b-34a0-4183-ad6c-ccfc65e84dd9 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+cebb3dc1-2c21-412e-98d7-12411cbacf3b 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+ad5dfdc0-40fb-454d-b726-24f972b91362 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+c4f34468-3767-4f59-88ec-395ab43bf246 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+4597560c-70b7-46c3-896b-a2e1e0e59431 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+15013905-643f-49e8-982f-f8076540756d 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+05c281f6-89ab-4e9b-ab37-7b9210a99291 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+ce0be908-daa7-40bb-82ff-65828a1abcec 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+546b7fdc-f8cf-4037-beea-9bb429c7bdc5 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+b3741eea-da77-49b2-8f86-6780684767b8 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+e4835273-c8e5-4448-81e3-44908e0e0748 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+ed38efe3-864c-4306-8dbc-160327a79ee7 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+dda833c1-459d-4172-9765-035503a51310 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+f0a434c6-b50f-4e39-98e4-ab4a43ca9dcd 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+41e95796-0bc1-424a-951b-4c4338414a20 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+d8ef5972-35e7-492b-befd-4fd7a0bf938d 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+5a089925-5db4-4e91-a53a-5d697dac0c96 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+07d4f5f4-51eb-4dd3-ba90-52f4864aaf48 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+31314935-fd11-4dda-aa7a-c7a888135328 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+563d0e35-673d-4e5b-9443-cfa621b76a4f 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+524d84e9-9117-4c80-86fe-fde6345a5880 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+aa026188-18c5-410c-88b4-958d27a77437 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+febe9bdc-a0f8-4ed4-a2c4-35ef7b87f0cf 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+c381306d-ba85-4cab-beb2-e4cd84337e0d 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+e5380f47-f079-4290-9448-88a28d0cfc01 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+f2d79d12-512c-481b-8fd7-f41606568561 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+fc5421b2-fced-453b-89bc-cf560bfb2f89 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+16e190f2-52ef-45d9-b5a5-36c4402d1469 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+08cb3bb2-7579-4bb5-910b-093a351b8751 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+10699e52-d63d-4598-b67d-8917af5968fc 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+0f353d57-1635-4a8f-a59d-c13a6ec360d2 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+9e08a51e-46b2-4224-8d9f-94a407035f37 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+23f7735e-eee9-4804-b9c5-7a7bdd371c28 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+4a9a3494-ff44-48c7-94a4-c02560740f2d 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+e8dfcff2-b9c8-4245-867f-3258f37587a0 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+46e5e22f-0db8-41d4-aa5d-d45caae0ef9f 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+c44374aa-ae8a-488a-a0fc-e29c91f91443 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+8da80fd4-1893-48ab-832b-d34b84b85553 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+821b40f8-a6b4-4c33-ba21-17dc361d5a22 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+5d8359ab-3663-408c-a6ef-7d31c215c269 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+1eda073e-77da-42b2-9628-5c1933f20d51 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+d3134357-ea25-45f0-8d35-eac927245432 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+fbb5abf9-7b17-49a4-9898-e42aa88ef583 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+6867277f-1018-48e9-b3e4-fadf3ebbf598 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+ef3b55b1-2c41-4f53-ba12-9a336e004afa 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+6721189f-e541-42fa-8e30-4315609d6187 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+257b5d90-8a59-4333-af16-e5b5f19469a9 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+1533eba9-8023-4a56-9c43-272619f61049 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+6836eb2b-4184-4b5f-9190-4cdb9dee0d3f 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+9a5c3aac-beb7-4c6e-9503-ed9cacbcb285 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+449b99d1-e319-4524-84bd-407026f59e6a 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+069e2c51-8a91-4ea9-ba53-b05cfecc5406 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+5cd5e3fa-0424-4519-bf8a-3be0d3cc0932 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+60f1ec24-4774-4183-8318-bcd1e7130def 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+d956fa2a-1b48-4b2a-9ffe-fad607dc998a 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+1a4d143c-ed01-41d3-8f28-9272ae136107 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+d5d1c460-72c9-478c-bb6d-01e945342eb6 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+77c62c78-de81-41d2-a319-6218b7dac16f 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+9a269f28-d684-427b-b015-7a542c82fdae 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+63c37f20-9b54-4a78-a9b7-cf976d4fcea8 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+33bf70c6-aeef-44a3-9a43-1fb4d3ed22cd 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+a611cb51-f7f0-4a7b-852a-c89221b8ee02 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+6c08c989-7e4c-4602-af73-1974f1611b0e 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+1572dd72-be74-4cbd-a5ad-6fd96d1b3ab2 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+648efdcd-0cca-4c12-a7a2-7fb587527017 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+6c5e96ea-51ec-4c28-862c-1f36ee2a7168 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+92b30386-54f6-49b0-b1c4-d46e3a68b218 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+f886d804-9531-4f54-ace3-5f797afaf3cc 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+4c42e528-d3ee-46b2-aa74-6f6bb8a7b0b1 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+00b97a4d-76f9-4c59-9574-909d985feefb 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+d9720858-8a4b-4c57-811d-405779e9539d 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+631369b3-3b55-47a8-876f-50e97ed42de5 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+1890cf56-79e7-452f-8824-69d491784085 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+650b802b-66a2-4113-9caa-a3546527f9b6 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+032592d8-ca45-4d9f-8794-788ca864c493 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+0903e011-7535-42bb-b58d-6361cc0c712b 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+81712168-6b81-4b91-a2ec-3cb85bf1bde6 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+8d50adc6-840b-4979-9597-0af32caa3736 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+5c4cf1f5-5ed6-4ed5-bc0b-bb4555441c7a 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+e1c33ef2-3869-4e4e-91f6-e2d7cc129bd9 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+146b13b8-11a5-4038-a1f4-a9faffb20138 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+b174ec80-c8b6-4e96-b24e-2aeb352f2132 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+5f514f69-4909-4a1e-822d-1277f08dcfe8 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+c8741f5f-b2fa-4a18-8575-86244a85b422 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+64b7fb14-5a01-41df-a55d-4ce6823bf872 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+7cd063e2-1760-46d2-a66d-776fad47ccc2 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+83c37801-23c0-4ac0-ab37-8fafce0cd1f3 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+4cee3a8e-40e5-4357-9501-1c1e5a1123e2 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+8fe5be8a-c54e-411c-8afa-9131c85a4e42 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+34f89292-03c7-42c8-8264-f094ed1139a4 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+6bf1441c-1c2b-4f0e-aa45-f705ee13e020 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+03ec0349-faf3-4507-85e8-d78f20822d79 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+1803c3de-f437-4d00-8f85-6fc97dbcd447 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+c4e6eff7-43bc-46d9-8318-f52e646e7fb9 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+058f6903-9da7-4c5d-8c35-6d6a5f2a7f17 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+21bd88af-d577-41f0-92e4-d5b01bd74456 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+d8daa36e-99b3-4084-b4b5-f33623783c99 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+4800db76-73a9-48e9-98ff-1811508af8c7 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+0f1c2179-4e74-4e9a-9f33-b2b2fbd76ded 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+6a09c7b1-72f8-428b-b647-d610e7832276 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+1e09b063-0ed7-4db1-a0cc-36bc41ce39cf 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+466a6da9-81de-4869-8650-92b3a52bd831 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+376d5caa-a60f-478e-bfd8-9643b54e8bc5 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+70465b2a-ac97-43b6-b0da-7dc28610ea61 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+323077ea-4ee4-441a-848c-dde75e3251c8 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+380a9101-c1cb-402e-bfd1-c3664d9e5c51 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+931b60d3-9953-42a4-ba41-ff192bd72dce 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+b80db634-00c2-4381-9698-faa5a4c5d4da 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+9bd8183e-1583-40d2-a7c8-bf84cfb0e735 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+5cd229e9-a5fd-4cb2-83c3-585b58c54788 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+2eaaee4a-4844-46cb-8438-f5be2551e82a 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+b46ac976-4393-418a-955d-6704133ff93d 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+e460f39a-ee28-416f-897b-883a3aad0f61 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+2968722a-88fa-4e4e-8b23-ed5c263ed985 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+0889cdac-99f8-44b2-a1e9-de75f5e275b9 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+118118a4-f874-43f2-9302-cfcf5fe46e3f 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+551da283-ce32-4f80-b821-571e3899c8b1 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+60df49c0-54da-4491-b375-74a1d5c495df 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+20546cd5-4450-4d27-88f5-8eaa7ea9b72e 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+842038f1-3ed2-45bb-82b1-8d2270639059 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+e9e4346e-a594-46cc-ad31-bba633d53417 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+46316af0-cbb4-4187-af41-733d19dfd103 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+c8eab180-a80c-4004-a6c6-f9e0055c3834 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+5f0b48c5-5faf-4a8c-ae8c-bb27acfac526 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+53e6cc0b-4349-40a6-94dd-5a4b587a707c 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+603a2051-59d1-4941-be5e-91201bc17806 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+a8bdddbb-c45b-409f-9dc9-9ba2dbd8eb15 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+07b60a26-9e45-4d01-8033-06ebba1f772e 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+6f2d08f9-92e3-4b06-8fde-224b6c15c2c8 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+f23a72a1-c8fd-4a0d-b93f-db9ed27752b9 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+680fadd8-11c8-48f2-be7c-33e5883ee441 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+1b49ddb0-61bc-4f09-8b68-109ca4abd809 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+808c73be-1f57-4a40-a2ba-bfab5f7ed11b 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+88d2db45-2854-4728-bbd4-7c8f7b4333cb 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+df0344f2-70fe-4738-8d36-0101de1fbb0c 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+517a2632-0e0d-4be7-bf3d-f5bc7c4ab4b2 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+c567e146-9f0e-458e-b5ec-422945597d27 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+3d4f0914-a743-46ca-bd30-a42ebcf4345d 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+5139db8a-90e2-4ab8-82a9-918ddcee89ab 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+ccd645d7-9da1-4672-97a0-be5f21becbb3 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+6384f06a-559c-4506-99e1-f3679b0ef0d0 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+62efbb93-2804-41d7-972c-cf1a1f69a059 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+ccc199d4-b8a1-4e84-84ed-98e308ab693b 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+2c962b13-32db-4690-999e-9a97a1589a50 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+9d2a3d61-af9c-4a00-8c5f-50ee974967e1 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+624dacac-b784-4d7a-a821-ed2552153061 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+2a18ba68-9f90-4031-ba8f-7e9f6432309d 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+242d0bfb-1ef0-4c4a-a3ba-1e38d855f022 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+b6853ba4-4ae2-4a93-838a-0e61eec2469c 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+b16b4666-3ece-447d-9b1a-e50190740307 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+d0deb102-6bf5-43ba-ba75-261ce80ac8dc 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+7615285a-8227-43b9-b24c-8d39063b39a8 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+87b3a6ec-7832-4f28-9647-4e7d952c9ec8 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+1c6fa954-a7e7-4ade-98d9-f384010b1f91 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+c983b22e-e398-4590-bec6-9b87a4289cd0 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+d2713a6a-4121-44c5-aa3f-52a5d2a62162 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+1bd6ad5d-dbb2-41b2-8f0e-53afc8dfcff6 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+b3aeabc9-9af6-46b5-9671-7a0f4e4166cf 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+fafd4832-7c96-4edb-914d-e9379444c1fa 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+16fb0bc7-4d9f-411c-abff-3cb1c97c1f03 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+ae400deb-2c0d-42f3-b88f-1c7829b7e80e 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+c6ca498c-5fa3-455e-9995-39c86f48a6ee 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+2e26a319-fe4a-4a44-9cda-5f1cb6f720cc 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+0866c7f8-00f4-41fc-8174-40233f85aa2a 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+c5c0bd54-3fc1-4e5d-8dac-b1a9148cc056 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+dc6eb792-ba7b-4291-b0ba-80eecd506d64 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+8a8c87ac-e810-4da1-8150-335ce69e869f 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+95163b8f-0b3e-402a-bb15-b14d3d38766a 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+d49b70dc-3bb5-4aa5-bf55-86b70fb5bf8f 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+73a7190a-8a4a-440e-87a9-28b44224517c 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+702b2f2e-07d5-4a77-a22b-eedd752e807f 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+d14296b3-0f52-48cf-bf0a-add48bfc9a30 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+237f019b-6b76-41af-aa61-66ec325cd7b8 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+a711c900-2b50-4d1b-a1b6-11e5dca1f068 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+2043d096-51bd-4e3a-b13d-93f22ba31f9c 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+6ccfe35c-2c5c-4e01-8c23-29341792263c 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+8567e415-81e8-482b-b5c7-53a57cf80db3 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+eb3a62ba-587e-4550-a506-89648caf6d06 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+f8497ec2-ce27-43c1-9850-6314d5ce8240 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+da8e03f0-ec25-4ed8-bf01-8668008afbc7 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+0dbe91a4-cdbd-4776-bc36-66c2f3570dd5 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+9f664a20-8d19-42aa-8c06-17ef209cccc4 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+e3308ccb-0922-4049-b559-cd394ac9a163 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+d89878e5-168c-4122-837c-7f170ff84fb7 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+55c26698-8085-497f-9bd0-64d369651655 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+65af0ba0-a8f6-4f58-99e1-250fc9cd2ba5 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+ab4bf5b5-f339-4cd7-b4f6-c2d0edaefa1d 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+ccaffd59-4af2-44c7-ad50-d80d628585e9 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+f560acd1-d95d-4798-b33c-f8cd36347148 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+b18bb0b3-3c36-4ae1-a775-bf6439df7be1 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+7575b288-7861-4685-8602-8d91d5397221 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+a8aaf638-4de7-4373-a5b6-bcf82fddd6dd 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+fe59987a-129f-4fab-b28d-79a8fdb723f0 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+797a1a77-978f-4aaa-8eb3-4d5d644e58b9 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+03f12d25-c208-4797-8148-59bf7a86715b 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+95523a10-9d7a-499e-b037-9db315e01acd 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+49e0ec7a-81e6-410c-ab1a-25b0d432beba 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+4bab4355-3aaa-45fe-85b0-5f74e722f427 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+d16362cf-42e7-4733-8e95-c847cb18f554 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+50dff9a9-efea-4594-8fc5-2427d3658673 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+d650f812-71f9-4830-8a69-0c4c4b144027 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+8e94c9bd-e8c8-46aa-9421-8efb7b64a1ed 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+a190fea4-d68a-43ec-94da-c6bfdc078a95 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+eb888673-364b-4a90-a532-f9f84d9886fb 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+54647df2-ca74-4644-903b-0743746a84d9 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+0c18aef8-14e2-4473-9aab-7f7237383ef7 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+516201c2-acf5-47d8-9932-e16c6473ef72 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+f4768427-9e3d-42d9-a7d6-eff3be946a0a 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+d2e23b56-9662-4f79-8077-0cea73ca6063 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+a8182936-d21b-4ebe-94ba-07ee7dbc2392 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+fdb9182f-ae3c-4df5-a22a-5d0469a2ed30 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+590be7b8-c991-4826-834d-586d234a6ea7 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+9d3d8a85-8a01-446f-b97c-96a251d50bb9 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+6b7320e6-3751-40a6-ba0c-313afd2521d2 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+af767832-10a3-4fa3-bf8f-361b78c855fe 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+e9353e98-c438-48e8-96ca-c6239155801d 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+8e561a41-5dc4-4246-a4dc-f59bf3cfce59 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+65c705af-5752-484c-8458-cfcef3422359 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+05e69700-9629-460b-8e0c-5edeac069233 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+8cb87504-4d56-4a99-adf4-1c5ad2682309 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+deeca0ae-e6ad-4512-8b98-6a69a21ea351 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+4d6ba7a6-654c-43b4-ba93-df232fcd21c5 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+298ca915-ed24-4338-af24-95638ef120c3 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+65adf8e6-00d6-4c29-b155-4b4e5a2fc484 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+d91a15af-b955-4090-a2e3-d8b87c443410 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+83b37258-bad5-4a8d-87ed-701bbd25fc01 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+8ced1ee7-61b4-4fd2-96cd-0c849764065a 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+976585e6-58b6-457e-8ee4-2e1a17de3f9d 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+1705c135-cad5-4629-b462-10b4d7dfeb90 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+f7ae8484-d6fa-4c33-838a-de3a94cdb860 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+0c2184e8-5f6a-46e6-84a8-a53e0a29a7c8 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+cb1d8beb-752a-4cd6-92ab-f228a1dbbc2e 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+d9b2c3be-c00d-427b-9130-5f64e4451248 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+dc3c644c-5e11-4620-87e3-ae1448042c0a 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+874554a6-1a91-4b7e-8da1-3b3d03e8f7aa 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+7e6f85f3-a119-4127-af57-32e397944f89 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+26ea293b-3b76-494b-b2d7-b2638654c530 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+6f67962d-ffec-4dbf-81c4-d2fddbef64c5 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+17447b7e-6ef6-4155-900b-2de97df66436 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+faa3782b-3b1b-4a6d-a52c-1623a7c89dbc 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+c4174994-a33e-4e31-8ada-86e4fee52d5a 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+0c5bddb9-95ff-4b45-b469-4b9623bbdcd6 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+bad2d16e-2026-47f0-96fb-17776f3b4569 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+36bd95bf-dbe6-4cdc-a5ba-5f3aee62c755 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+338ae88c-7348-4e6e-ba60-976c7078cc79 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+2426c4e3-7382-40b4-abce-695552aa97e9 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+d65b9319-c5b9-42ae-9e91-a79edc72365f 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+172c7b60-eba5-4244-9897-46b386691bb7 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+259c9f60-c438-47fd-a60b-6f4fdd4b3011 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+158dd56d-8397-4ed2-a52a-40a4fbbca9d7 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+368a286e-758e-4a54-8f62-0c90e8061a96 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+e57bc004-194d-455a-868a-a31ff1ce7e27 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+debaa0f0-afcf-48a3-84ef-d13acd488378 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+829cb641-1db8-42e5-b4b5-76fe872ecb1c 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+95d4a12f-32eb-42f4-b4e9-2f2ad559919d 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+8fd0fb96-800d-49a2-9d5c-54e22d0c9c2a 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+b55620e4-9ae2-4aa9-a155-e49c94748927 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+d9836ebe-d88f-4245-a98f-9d51a07c1ed4 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+efc5e489-e4af-41ca-93d2-9b85b3c7c6a0 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+28702f90-e41c-40ca-b6ff-2794da323441 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+8ebc3f1e-7883-4d1a-b1cc-e1f8bd6a7787 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+bb5c9767-d342-4f36-a5b8-71248b75b9be 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+77be1a8a-546d-481a-91e9-4a33bfc7efb1 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+3fcc4cb0-b0a8-42dc-b1e4-4363153078ac 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+48150865-bcd3-497d-91b0-781000184828 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+c7fead9e-f1d6-4b5a-b16f-266674d01016 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+209b1ebe-1803-4d1f-b49c-05ca1c173e29 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+2b59c61b-50ee-4585-aa34-3e42176ed7fa 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+6c376946-5c0b-429a-81b6-d4cd7ca60583 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+1b279a62-3cba-4822-8ec1-0d70de5ad992 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+9115eed2-ed54-45fc-a7d1-021c30e61e87 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+b9c0f736-a910-48e1-be25-1f8b951eca76 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+39600092-63b4-4e9f-897b-bd5a3f3bae10 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+53af3dd9-fead-4859-8a67-54784bcd7b91 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+9805bf8c-bd5e-43ac-a0eb-a6bcbfa9e946 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+04ec58ce-cfff-43b1-91ec-52da5a835879 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+2966f81c-0f98-4ee8-bd6f-c3cc8d926b8b 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+61a9be83-23ac-46cc-87f3-ce548af1565a 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+1785ca99-b905-4ce4-b7c0-2fe5a78b4fd3 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+55ec0c23-ef72-4e12-a024-1e4166fbb86e 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+9b30c590-4c98-48d3-a945-21d381a49c31 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+507555dd-2677-448a-85a2-5b5591e21f74 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+93a334b7-62e3-4cdb-afee-f79725719705 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+ed5cebf7-7502-46df-8458-3b1c0db4e208 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+10684f9d-1625-4690-9642-6132c0cf64bf 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+8fe6fa3d-125f-458a-b17f-ef03254c3f07 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+d7b95c65-fe81-4170-9d4e-716c53973143 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+cb50dff5-6a5f-4a09-abd3-a33b7238daa3 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+370d3b02-50ef-4f49-bb9a-17dd71cd03f5 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+8790942c-c091-4a73-86a9-d2b5133ed721 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+eed9197a-8590-4159-a917-41e4f9fe2d1d 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+e2e89a5f-6651-47ea-94c0-e88eeb3202a1 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+f5cd65b0-eb1a-44f6-95c4-a00882b496a4 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+8943def3-8db9-44cb-8bd5-7f6b8e0cd625 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+211140ff-6ec9-4822-b7a3-49453bd291bf 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+0c526cec-1002-482e-a0f8-6e87cc39fd01 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+776d9493-7ddc-4fd0-a8e6-58fae41d4e13 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+01f84691-61e5-445f-8063-ef9dc146380f 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+56e933f2-fb37-4ea1-a327-201c8e180750 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+0d3adc4f-e8a9-4e74-bded-ba8d798b2c50 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+fd5fc451-02b7-4b35-9ce1-3b7c560dc3a3 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+7ff98271-922f-426e-91e2-112941488780 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+3d9c07d4-b3de-4712-a4b2-9d0c04561461 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+f5dad3f5-c332-4e81-b827-86696ee5b251 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+4a6daebf-e092-439c-b969-4e2cff5cb753 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+1339ea76-08b2-47c3-92c0-38c78fbc718a 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+0fd81950-52cf-44af-8a93-ee4150e5d8e7 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+323b5dcd-107c-4620-8ae9-34f050fe7f17 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+dc34e65e-9462-4af2-ae99-586fe6e95dc1 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+0f5ad517-a1aa-4db9-a20f-ecb2210567f6 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+6c266975-09be-4bad-9ded-4dca4a069a08 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+b818c1bd-fd0f-43ad-b834-b21275dfd84b 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+728e3038-41cf-499f-9387-f7062a78ddfb 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+0675fc33-21ba-4d43-9d4f-dda9cd52b210 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+8a5bcc0b-9fcf-4d6c-a6f1-dcd24024babf 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+41f9cdc7-042c-4267-a71d-d1d18143b994 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+81c8c231-33e4-418e-b1b7-e9d8ec702e69 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+0c0bf7d1-12f2-43d8-b15a-548ada667b92 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+5fa37a61-f10c-427c-ad40-9e82c3c1cdbf 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+585b3bff-8369-494c-8464-178a0c90c15c 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+ed9ef8c1-b220-4cbd-bf0b-777063516d0a 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+551d0593-c2f3-4226-af37-db5ec5f0dbe4 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+7042ea95-d4bf-466c-8fd5-96ce572b2ece 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+709ce6fd-2f63-47e7-a357-a70fe08c03c2 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+77c5b40a-9d01-4289-8f18-5e24bec31e3e 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+1c303fe4-7fe3-4e11-97d8-a00f62034c13 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+447463e4-0593-479e-a106-cbede86fb43a 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+e03fc3ff-aa8e-4e74-8e86-5ed2b16a2ccb 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+8b004563-af4c-4d04-86c6-f4bee9fc9a22 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+7b05a701-8d44-4cd3-8b56-a7cdbedd9f35 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+dfc321fd-6779-42c6-8e6c-45609e58d4f7 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+b96db84b-e22b-480c-9d40-31c3e38858ce 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+4bded4ca-927c-4483-b374-e677bcb303e7 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+33a0da81-e5b9-4fa7-8ecc-c3385c79a0e5 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+f4cab501-916a-41ca-92f6-98e0a701e676 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+df8fa0be-a7e8-4a53-b352-796a62848747 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+08e78c66-2f3e-45ab-b31e-b6b7dd98dda5 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+c91f06e3-9878-417a-bfea-b68871071841 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+a5a5e1b2-9a51-4eac-831e-4ecb4d5083cd 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+b67ee1a0-6518-4da9-9e00-09c6b6d76112 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+2c4986f8-d000-4146-8968-c795bf4a36bb 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+767c2cfc-2169-459c-957f-14fdccd7eb0a 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+b360c8ca-9975-456c-b312-9b48ed90869f 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+fce06c25-40a1-4cc1-b2e2-fa2564b03fa9 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+ae06462c-0040-4321-8455-dc5d18ee1df3 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+4c86cb2c-ba3a-4abc-b6cd-15edec3ab2d2 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+c766c87b-7180-457e-a2e9-828967a0eba1 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+9e742b8d-01e5-4431-b234-67a9f12f52f1 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+e3c793db-de68-46bf-a619-86ed7f934e9b 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+e03232b0-a68f-4880-a38b-8441dbdb0fe3 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+3ce3dfb3-6d78-40b2-8ddb-85962466441b 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+93644615-c780-438c-b57b-776524173b3c 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+22b0fddf-cabd-433c-974d-c3be20bba604 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+c6225314-ee91-4d75-8271-8be2975afdfb 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+3534644b-ecef-4096-8a18-849952d0ece7 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+7ebff4c2-a752-438b-816d-5aff78c38751 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+e2366e00-0de5-4b0e-b980-8d25ac61b43f 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+ab16b73f-7d84-4e33-b1d5-45ca3e5e5891 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+449183b2-1f3e-49bc-a682-443c2ea46448 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+03d260e2-2aff-4d36-b318-cc754cbf1837 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+d7484d35-ec74-4cb5-bfa4-e2171bc38fbb 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+1208a626-24cc-44fa-b052-b328137403b2 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+f4742674-95e2-44bd-8c1b-1b396ed69d17 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+f95f8f39-dad3-4fba-8f45-7ff103859107 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+d44d4ff3-a1eb-4509-840c-efb0aaa2b2e8 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+f20eb7ae-da73-4974-893d-b53d4bff3e29 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+e1540a95-ecf7-4a7d-91d1-6a15bf59226f 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+23ed116b-6ece-4c6a-9931-613e1ddb7bec 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+8e0fe15d-8a0f-4201-a83e-4c73a27fb1be 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+e6b9425f-0481-436f-889b-f1b9dfe397c9 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+1c4c4d23-d5b9-4f0d-af76-b75941a7ac72 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+6139ee01-4801-424e-828e-ed44cd7572d0 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+17da7ac7-0cdc-48ca-b485-6feea41828c4 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+7a2facd7-c3c6-4d27-b981-915eabb02eee 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+78e46233-3371-459f-a74b-d16063662c1a 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+6ae2c80e-c49c-4add-9d24-c297af258b43 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+25370261-396e-442e-9166-6fa8925a43f1 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+3f194d6a-0c85-4e9a-9a2e-c9bed842fea8 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+aaf80a62-fe88-45f9-bfdf-ca4c6fc93acb 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+68b0a496-1eca-4faf-a13f-17dc280ddd3b 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+4cef0f6b-94d7-4378-94f2-a50c53da276f 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+f012d692-86b2-4f59-bcf8-c59366a3db93 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+460de3f6-c48f-4702-9db8-8b4ce71d10cf 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+fbe59e0a-8a12-40bd-a618-dd381b9628d0 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+4b0f352e-7775-413b-9131-6c200dba18ff 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+adb14cfe-7e3c-4a26-8a44-7ae256a524e3 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+35af8bd1-c3c7-4d12-9839-0d31c70bff6d 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+5238f394-aaf7-48c5-a96c-445ab2d005a3 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+3b2fd523-aaf0-4c67-8a19-286485bc4eb5 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+34c896cd-7063-4014-b0a7-a1b5f9ce8d21 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+0b599cba-35e5-4934-a966-b08c915a8fbb 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+e986cd09-c86a-4bf3-ae7e-bffc926d0d28 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+035214f5-043c-4043-978e-20f002c09ac2 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+00e1fe25-88d8-466f-be41-c6eef43cacc2 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+2c67312e-afa1-48ed-a964-79cd8e1f3ead 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+4c451944-6e04-4d4a-915c-76a7c9f14b9c 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+92493fd2-7300-4646-9e8a-5c8c33e7c70f 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+2d587d7a-304d-467b-982e-ff206d4c7d55 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+817b51ba-66a9-424f-b01d-667f19fa4922 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+5f4f3234-2ab6-44b8-a13b-2ae079b5e709 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+f29b1b13-b5cb-466f-954c-7b49a6b264bd 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+5b84daf6-bb70-4e9c-b3f5-81ba0755cf54 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+910426e6-3f11-46a4-afcd-94e0a22847dd 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+0529c8c7-dfc5-4dac-8346-903870c38e12 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+4667f1fb-8bfe-4bef-8183-0fd7bf013ae3 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+57d8e0d8-6a4c-4dd9-a01c-7ddabaf2e4fe 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+da68a265-661b-4969-b4da-975aeb40e4b5 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+7ad5e807-4df4-4f97-9143-2bf2643b5fa2 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+76af0ecf-b34d-469b-8317-4242f8e37261 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+75f50e5e-e7c7-4726-b846-1b8a97716bd0 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+89d4fee1-8320-44a2-a34f-d5c868393afe 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+278849f7-317b-4e90-9d77-f0fa1e56e7ff 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+89437dd8-0c6a-4a46-a162-6913285ca139 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+8e2fcf9a-028d-430d-981d-7c0a1827dd5b 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+8eb8798f-fa05-4e3f-867c-c9932c7d1352 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+d2024400-535a-4ee3-b906-8716818a7ea8 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+45b54d55-cae0-4983-9140-912d24ba8a01 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+77b057cb-7b34-43bb-9bba-0469ed3978ff 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+90d0ca65-558b-4ac9-9a5b-b0d42f719100 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+fc01c586-6179-4e2e-934e-ad76fa1fe03d 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+5d620971-e98d-437f-9168-3304cc10cd69 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+774f2044-b297-4d63-be5e-407d174a81ea 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+47357c3b-f998-456d-b50a-8720e40e1dfe 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+ecf79e2b-7739-49cf-be7f-bd35a5915ae8 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+4ea40f48-a1d9-4a62-94ee-d68f37c075a9 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+1c6203ff-b8ce-46b9-a77f-4d3cdf59e5d4 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+2bfc6ca9-d80a-4216-b22e-6c98788ff8fc 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+69af2bcd-ab6a-475b-86b6-68babb18f3f0 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+4a57a805-d7b9-490d-a70a-b1bca6119b99 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+d59bbd13-3cdc-48eb-a2c6-978972051cd0 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+730e7c57-86e3-4474-adae-3faf7e4bc6ab 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+9bcaa8bc-0696-4f02-b165-6e5d4a914f1f 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+d990bbbf-3783-4bd0-9f80-0e743d8f2dd0 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+f65a5c77-2a98-452d-b491-d034df0921ee 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+ca428928-92f9-4a8e-94f7-c0400c696b3a 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+9dea8948-6889-4c5c-96e1-9f3bbebf61c4 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+c70dd138-eff2-41d6-8aad-f01ea67f8c10 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+0fe21f13-1f22-406f-bd3b-9f6314f5c7e6 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+6c62bf28-faec-43f4-a422-922e1011d971 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+d677f9cc-f84b-4a27-ac51-c2321562af84 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+59a4b860-c392-488c-a82c-18b2e50ba1cd 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+389aa4c0-374b-4931-af5f-37d41e4c5646 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+418accff-2136-47f4-bead-b2109e2d44eb 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+bd185451-62ed-4ea0-8010-7fee3935438c 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+8914abd4-9367-46f0-b156-39b5fa722142 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+d2f83aa1-c7ab-410d-a947-5685c9e6b7af 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+1c6dd711-d1a4-4acd-b7f8-e3d74ec9992e 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+0758b6f3-3027-4772-b37b-2a40e3a2ff0a 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+414f0918-141d-4dad-b0fc-2065f3a2842c 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+79798fdd-a452-4093-a4d9-bd734575ae94 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+ea4f6f3a-a66c-4129-8e0b-ba9776cf5d4e 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+da2b2900-d5de-48e1-9ff9-ed6dd8896839 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+4917b85e-c93a-468e-a1e0-2df0114cafa5 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+a40993df-ff61-442f-8287-027214e4dfa4 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+aa636ed2-108d-4a3f-a531-ce017174e74f 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+7ffd6fd3-8b25-435a-a579-f80181b1aa27 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+cbab8c60-d251-401d-b3ef-97490e4b441a 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+0a645d75-c775-4c8a-8092-92ab56fc918c 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+6e3db146-bfe3-41c0-a671-69d25f92057e 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+09f8d0bd-15fc-4b8c-971a-660ce8d6baf9 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+08cbe6d6-b2f7-4591-98e6-8e615df750f4 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+cdfe20dd-3742-428b-9f09-f696e0270d27 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+90219bd6-fe69-4a43-8bba-52c6f5fec8f9 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+8c7f6a8c-7fee-4c87-8787-2661823672f4 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+aaa88950-f1f3-41c1-973f-b1bbd444bedf 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+d11778ba-52f1-479d-beee-0499dbbcfa79 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+055dc61a-be5b-4213-8cd3-ca5a0951c117 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+eeb6c20f-1fef-4634-8232-719c1d763102 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+294aecc1-70f4-4740-a423-6eafba68cf0c 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+b6def946-5821-4da4-b08f-dc65fbb701c8 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+8618f361-4eb1-4418-a07e-d52bc5eeda91 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+00f0d6d2-44d9-4f14-9762-9bd0c0da8a46 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+9a51dd9b-ab00-4d1c-b755-fabfd817a394 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+c4fc55c7-3278-46ed-b512-998a54e983bb 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+423eaabe-e054-4bcc-a9a7-aa42749dea20 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+cd995463-aef0-4867-8c3b-daa54565cbc2 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+bb7cf03d-0e49-4095-8bf4-4b49cbcfb175 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+934c9aa4-1c79-496a-9cec-e2aa54f3fcdc 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+17ad5cfc-b54e-4393-897b-3a6e77a2a904 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+2f75f8c7-7ac0-4452-a678-96b98f49e53e 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+2dacf649-879e-4f7b-98d7-f0c2b33e3763 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+9781705e-fe9c-4414-8194-286be678bad7 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+1de40b60-7376-4224-a36c-dc1d0f955bb8 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+ceab8da6-096e-4264-a71c-443f81d7ddb2 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+5818d2b3-2a94-44b0-8f78-56e8ae2326bd 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+4c3dc4d3-2883-4cb8-a504-9d9b76481411 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+fd0701e2-34b4-4fff-aec2-92872670e59a 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+0ac2f166-0925-4752-81f1-b865c298fe35 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+df9389ee-a646-4c5f-a9b8-19ab6bd1ba7f 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+dcffdc21-25ea-4eba-86b8-6238acf42fc4 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+4b86fa70-2861-42b7-ab7e-a8977d4cf553 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+b373c46c-e03d-43ba-afce-64f203706923 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+11abdae6-93e0-4b76-9785-eb7594270b68 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+00a79ace-b1cd-44f1-8107-8ffbe5959574 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+e3885a09-28a1-45b7-827d-649e0c8c09cc 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+3eeb09a6-a62b-4e5d-a1e4-de7626ed98d2 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+3a1bb9a8-b78e-4944-abca-0fce468f6f55 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+c0eee15b-b84a-474e-bc5b-5982487d9e12 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+ea73225c-97db-4b9b-a248-f77c5157cad3 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+14f1ff42-aa29-4ce3-997b-28ddd8cc448f 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+f90f4410-536d-4e6f-af3d-3972e2b6a958 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+7d5a39e6-474d-420b-bc65-0ae36588608e 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+6ac152e5-bf15-43e2-999c-27428d2ef841 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+7dc1822c-2d8a-46da-ab99-922acc51ca12 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+5077e52f-cbb4-41d9-934f-e34a0e8fdfcc 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+43259dab-0887-4b47-b5f5-0488fda8b983 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+527b3a2a-7d03-4add-8863-1bdbdb42b466 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+d2f419d0-1fa2-450c-91f1-efb890e8d5ab 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+6be07da3-1821-48c5-a8ad-404bb9074a76 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+c6d7a76b-a5bf-401b-b7fb-72e40d493d8c 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+fdf30e32-4d59-4f3f-84d4-4fca8b77b233 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+468248a7-8b8b-4e36-b2c0-ba31c9ebd7c1 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+fd97ed83-b646-40aa-a910-6dc3137e0091 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+a692e8ac-fa5c-43be-b3fd-062fdd9c85de 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+00d83c3d-d0bb-447c-ae1e-bb1773ab1c6f 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+e36b2a11-de52-47d2-9abc-fcdb25d4e04a 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+ae9b6419-7a2c-4e9f-bb11-37615b254ec0 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+c8d5c647-ac71-44b6-92d7-53e1e482d7b3 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+297ac9f7-0607-41eb-8d05-7a4ebd851059 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+3e73c090-70ce-4989-8d2e-b69da4f0dd56 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+d7e9a721-9279-49e1-861e-d52b662d1288 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+057c6839-d85e-4fce-9a6c-f7fe7585a892 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+84062f3e-0bda-4c1e-811c-eb3327824204 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+fe33b63f-b3eb-45ab-8460-4386845f80b6 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+6af489ce-b8c0-411c-8582-2a4af39f9975 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+697ef419-2c2d-4575-91b0-a97defa0d292 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+dc7cf200-f9e0-4ca5-89ca-c8cd3eb13f2f 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+aceb46b2-99f5-4075-824a-8edde3524efd 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+765a2b0b-2181-4906-ab48-87bb7eecc7b1 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+559834b9-79ed-402a-9da7-dd44d5656347 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+ee4c64dc-234d-47ba-84e1-4e7d94c37b09 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+17f2a40a-67d7-44e2-9c36-ce4e799bb1a3 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+4e853244-f349-4aae-a6ca-e1ec721873f2 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+c5736c5c-9219-4fe6-8117-4b69c11fd792 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+da5ddc28-9a5a-4b4c-939d-9c09859cdb99 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+99864e5f-2a71-4692-b013-035fed0139c3 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+ae9f9585-7e1e-44ec-bd80-3c21a0b3cfed 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+adfab82e-e869-4f07-8f89-a0ae7bcc8ac6 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+4f1de3b1-afdf-45f9-9b5b-6662bbc42a67 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+fc825bc1-b2b0-43f4-a6ae-83af6d1d8feb 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+ee96da2b-10a8-48e3-b393-78b902a0128e 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+9d173789-0233-4027-9db0-4544f24a5b96 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+046f747b-5248-4e7a-bdf7-f33f8d2328f1 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+27407425-ca94-45ce-acf4-a4a44a91ee20 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+2513e064-813d-450c-9e0f-db77cf5f75b7 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+f95e15c2-6077-437a-98d9-22ac5c4b3916 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+34d564f5-70fc-422a-b4ba-adc420ac070b 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+5e9b8141-eab9-4ebe-9e31-97289199ec41 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+b1280288-c3b1-4f6d-95d7-ec2371be269c 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+32f4ff00-5cda-4d9d-ac6e-b3679fd50521 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+f1708981-9bdc-48bf-afdc-0b8764a1326e 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+33ef16d6-884b-4972-a211-43310969293a 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+784a1274-e83d-4f23-8c3f-5701975fbfd6 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+e0c6dc25-4c56-45fb-b650-80c0b01a4330 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+602d073a-9cbb-4951-85a9-a5499499e7c0 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+f30dbe0a-df17-4f47-8cbd-c7bcb00addff 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+3d5e3e1c-bfc4-4ce5-af4e-cf767c57196b 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+7440eaa3-90cf-4d18-80ba-5fea89c35691 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+8c032232-198f-4849-849a-7573403bf4ef 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+a66a4b71-2cdb-4b98-b6e0-cd7566b6a65a 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+8d8453cf-1efe-477a-bc21-e0c6aca04d47 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+9808fc7f-c134-455c-9d49-92bff7b7b2f9 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+9c808f94-d9ed-4eaf-ab51-6b397c96e7ec 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+a0c5eaaa-1248-465e-a3ab-022f758a3d04 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+472de7de-cdab-4cf6-9e0a-2c5638aadf2e 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+f8b6d4bf-065b-4563-a810-8647c52c6d18 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+7cded4df-951c-4192-8e44-672ee7cd9157 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+81f9db48-591a-4476-9b67-93f1bb0786e6 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+fe058a3e-c94b-4c42-8d91-b9dbf0d37ba3 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+df73c004-2711-460b-b2a4-bb1b0f36a0d1 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+3c8f3b11-d8b7-4958-a55e-4f2d445d8803 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+774f869d-b56e-4983-b5b6-7b430e28e92d 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+3968df18-45ab-4b5f-9007-2a6ccabaf01d 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+14aa7652-58da-424b-81d3-e2c3dbf5dc42 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+08342ec6-588c-499a-840d-b47bf5f51e2d 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+1e857511-8981-447c-ba8a-5a925bf90fd5 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+90a8c94e-ea59-4c00-8572-abfa182f0da7 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+bc27d23f-5375-4d6e-aeba-be54a3cab4d3 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+8d994eb6-8927-4ee8-b05a-2544806fa8b4 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+1d6bf385-a865-48e6-bdf3-0955e5842a75 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+c8b328ef-e95f-477c-89ca-b2cd6a26001c 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+ee1a840b-e135-4eb8-b88c-f2b5f2aabf1f 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+daf92c38-01cb-4423-b1e2-ad58e9f66f69 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+5fec9e37-92a2-4963-8320-e535eeb971b1 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+f90c1611-50f9-4a81-a87a-2ea5d665c961 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+70fbd886-9d8f-42a5-8b74-686a4c609147 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+9f544a5d-c0fb-4791-ba57-ea01672dd786 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+34364673-eeab-454b-a7ad-15b82a12cb75 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+b32d8453-e0f9-4923-a389-b28fb01bf18f 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+f395d31e-829c-4fe6-b535-4f4f0bf1b3d3 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+116f811f-290e-4723-8b4f-3901ce745dbe 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+baa94be6-6fc0-4a32-adf2-b2f5dd95920e 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+79b37c54-1871-4e95-84db-1a071f934860 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+41e40484-237d-4ace-b2f2-7e3eb84a02b6 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+0ebb8519-db66-4d51-b7be-5bb629c29d8c 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+b7717d83-9691-4432-844f-d93f8914179e 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+1d0cb362-7f8a-42e4-85b2-31e7d5d41d7c 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+63d1081d-2624-4a68-8b28-48556b98b7cb 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+6fe25cf2-b4a5-420d-8e0e-21e71f0081c7 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+8c4b966e-12f0-4b38-aa04-1e9664c6ec37 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+1f1e5c5f-0c3e-4c39-83d3-75e9e4d55ccc 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+ee4c18ff-d88d-424a-8028-b6b0324c2a30 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+d6db0979-c15c-489e-a000-b82a1ff59ed7 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+acf26824-b651-497e-ab06-d5c87394cf23 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+92c1de7e-730e-49a9-b260-46351184b4c1 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+bf87f310-b70e-46d8-b13f-e066a5feb3af 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+507deb45-63c6-4f0e-b6e7-f56c5701b8f2 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+9450194c-7b5c-494f-a57f-c7462a28dc2f 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+7403bf43-e280-41f9-9522-b29bf95d6937 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+c0c803d6-a3c8-40cf-8610-2916a4e103c7 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+85c45cd1-b49e-4b74-b526-82dc589f6854 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+d2b17e00-bf79-4ee5-adf3-bd1f69c28cdb 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+2be04796-98bb-4e2b-bbd1-d80b612ee180 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+5291cacd-5df1-4e0d-8766-246bcba83eb1 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+9d0d2e8b-486b-4a5c-a144-862831d3ee6d 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+393bfaaa-9631-4f7c-92fa-af9977e87ebe 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+c278c75b-9298-4423-b898-1d82af311a12 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+c9ff04d8-f674-4de0-8e62-e55fdbfa88bc 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+b3b9993a-62b1-4e2a-b8f3-86266ac728e5 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+56b76bf2-b6ae-4ccb-9f0d-11b04d0f27d6 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+959b3902-0ae7-4e9e-a58a-f8e264c3cb74 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+1146e27a-6d90-4990-9b16-d72a4325f5c8 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+198f1cde-179b-4cb4-acf2-f86722e89240 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+52671119-8d16-4af1-a8bd-9218ed0c23bc 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+f226c144-5a1f-4b5f-aff6-9f5fe0698029 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+45ae2462-8ccc-447a-bd3a-07e1c20c105c 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+3f6ee047-d79d-4c42-814e-525b32f1c9fd 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+ef8df06e-f8d3-465b-9d93-97272bf5fd7c 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+27f520fa-8013-40ad-a09c-40650af5c374 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+ea05df5f-12b0-4c9b-bfba-9bd41cdc9c2d 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+40969d98-618f-4275-b4a9-c62f0853dfc5 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+c826a93e-0d86-46da-90b7-b4355f208312 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+22a5d5a8-9ec7-4448-a7e6-83fa74068bd6 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+5ad9b799-4dc2-4607-928d-7e6146fc6a1d 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+9d933183-2806-4e8e-be84-28a7a6ba392c 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+dc333495-c11e-43c4-a9ff-8da3fe3e9613 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+2efd92e6-ba70-4826-b713-1436d9f08492 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+134c7df3-7f6c-4da3-b195-5fa5a66f3951 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+f02661ad-3155-44a3-974f-4878a55b2a53 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+75575faa-04b7-4a75-9a37-90d682ceb244 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+877357e3-1cdf-4e7e-8a6a-d366d33f32f7 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+bf0ae094-d865-4301-b2b5-d29f66094b61 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+b0cf43b1-ee22-4119-88c2-258c1575dc07 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+df632595-3a35-4c31-9fa6-761b77c4a722 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+45d4e2c3-8bbb-4490-9dfe-55570d2c4ae7 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+30ecfc2b-d3b1-4078-8e83-023d0cebf223 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+11f3c06f-fc2f-4c49-b013-d61859ffaeeb 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+4bed67fa-82b7-4194-bccb-6823dbcd539d 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+5ba498f6-7b4f-402b-b1cc-0e186c4f0269 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+5eda2b51-2f4a-442c-ab2c-6fffe2c011db 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+573a7258-2a93-406e-932b-178d52cc6336 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+c7df85db-5264-4182-9f2e-fb070627b439 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+617032a3-ab42-4c3a-89e8-4aebd5c7e782 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+070f9a76-f778-4cda-a22c-c238c3ab084a 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+75b3bb2c-709e-4252-8cf4-bb419bbdc480 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+1704713d-0998-4797-b3f7-7572eb04a575 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+a716007a-79e2-40c1-b872-67eb4f2dfa4f 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+1a0ab22c-a355-46c1-bd4a-f9bc14af6760 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+1cb4728a-a916-4a27-8b0e-efaaf0f7f088 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+35c05240-7a26-4158-bdaf-83b40c86be4e 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+f235615a-8813-4367-aac2-ef689913c6a8 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+249770d6-ae40-4447-9335-5cce36839aad 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+4930732a-b638-4d3c-aa54-7491485ed8da 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+970a986b-90c5-407d-90e8-28047f507669 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+a23f3478-f9e5-4393-9acb-301e521a170a 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+f590be88-0f43-42e7-ab97-6f309cdb2102 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+690ae332-f28f-4a1f-9cd8-3b606f9e62b8 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+b7ff4051-14b0-4d85-bd0a-78239c4a83e7 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+cea08a75-a06d-4e2c-8b53-a9569a30ce25 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+1244bb37-5bc7-41b8-a135-c93dfe263d4d 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+585b99d9-1056-4503-9e6d-9bfbe95b68a5 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+7cb287a8-7c4c-44e0-b2a2-de70249ea71e 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+ea6907e9-f4c5-4c64-b553-7cab27419f64 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+31dcf5bf-0d00-47a0-a73c-db18d35570d4 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+592f439a-ae70-404b-b495-980022fea716 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+4c439b38-b359-4bb3-8de7-64f89b19082d 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+8adff3ac-c259-45ae-914c-dbc9234f4dc7 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+314eb842-4609-499e-9fa1-3c5b55bd5b4c 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+5d6222d3-d321-42a3-93b3-350eb5bf38cd 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+86b3f0c7-0ae4-4051-ba96-a31bfe0d6b19 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+aaf7ed94-a34b-4358-8c3e-198294c814b2 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+1460beeb-dd40-4cc7-954c-fb2f63ade7bf 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+e64de34c-dd22-43d8-a0d9-752087b4ba5f 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+3758f7d4-c6da-4d75-b64a-b281d871765f 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+d0c9cdf7-90f8-4cce-b62f-a8cbf387eee6 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+63d9d50a-25ea-4af7-aa95-42e9df5d6c5f 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+5b43503c-cde3-4673-82ea-669ab0a63075 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+a9a74c34-5446-40d1-a4fd-d62ad3c7c980 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+a16ed5f5-c656-4b6d-aff7-e959b78e96c2 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+c4ea0355-9880-4319-967e-1259e51d7f76 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+b8f6b29c-aa74-41ae-8988-b39f3ed2a357 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+796f0639-8c41-4a2e-8ebc-80c318d297c1 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+fb39d649-f979-4f81-8be2-146437022185 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+0a1cf960-7a8f-4308-a345-feb5f7013b1e 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+f155a8a0-fd79-4434-875b-8a1198b4a2dd 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+3af369c9-0856-4eba-a7e0-0bd6e45a9437 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+61eb6ec3-e2e4-4943-aa88-9da1109e24fb 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+8b25ad63-4d24-4666-be6c-f53edda77998 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+0a734403-e9f8-48bb-ad6a-da09ed8114e7 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+16f502bd-17e1-4de2-b706-c42862cec0b7 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+b82fa79c-c8c9-43bc-b469-67bcfdda40fe 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+4758d10a-66b5-43ab-82e9-00cf1c363b0d 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+cf4d11a3-16f1-453e-8ed8-051595c3a3d5 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+7becff1c-a4a1-484d-a38e-7bf1b19e7cda 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+74696081-1492-45fc-91ef-7e90ba2ce642 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+0e24f6b9-46de-42a9-9315-7b22c8410a33 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+c5f845a5-28b0-4471-b8c2-86f6a3559900 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+a4149967-b4d5-4946-93e7-149fb4ddfaba 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+90502cda-058c-4a1b-bca4-e918c53934cb 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+fb9593a6-3c06-44e6-a5d3-02ff447ba004 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+e4872606-acb3-45a7-a8d7-ef0913bf91d8 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+a69227d4-b069-4378-8c0a-5a0a5b9293b0 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+b0c32f88-9554-4f4a-9152-3a89be2f3267 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+3ba97f0b-f18a-46dc-a8ec-af8136704c70 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+0e22020a-e2d5-4028-8f4e-7d85550af30c 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+94c88d04-5f2b-4083-ba14-895f3a194456 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+10118128-4c57-4ae9-86a0-9f45d486a7d3 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+2f71cf06-c80f-4dcd-84de-5fd3e562be1f 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+e510288b-387e-4ab7-a25d-37aeb53f65f9 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+64980582-2b01-4c57-8f1b-6446bc200f63 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+201439e7-d491-4100-bda2-d859ea2c1c54 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+9a6cbef7-cd0b-4d55-b198-779e2efe53d9 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+02d07c00-f74a-4249-8780-d942ce449ff1 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+8e89e185-40f6-49ee-a464-b7308b53fc97 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+02d8c65f-15b4-4a71-a8a2-32dff7f0e9ba 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+9742900b-b66c-4f46-a34b-be598fd3ea48 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+ad641a7b-c24e-4be9-8648-f4e387dde3eb 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+09586d9d-5ad5-4cc2-ae5f-6ca84d27ec5f 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+5dd87463-bd35-43a2-886b-9b7afc5c58a3 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+f6acfa4e-2e7f-4dcb-a237-40b6d6388e90 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+c29ed65f-50b2-48a5-aac2-ef1151335b1e 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+c52b68ee-b7bf-41b5-a09d-f9206c54f600 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+a31aee74-4911-4f59-94f7-54972172e391 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+bb8d87ed-bbac-428f-b464-b5419f2d872b 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+a66a6474-d827-414e-9425-d7d22ffff985 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+a17ed127-ca5c-486b-bc69-8f3881074a3d 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+676fe2a3-c121-47f6-97a8-527e4d1c4795 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+fdebda63-74d6-4b2a-a6a8-0067b42eb8c6 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+26301170-6276-469f-9fe9-b0701cde8413 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+e5276723-5f50-4d25-9a59-7f4c645c3828 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+c1bfc2b5-fa69-40f7-bc11-058f05b7cdfe 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+4297aef5-0861-4132-8027-88cf57d48b1d 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+e351c094-2c22-402e-8d47-2798266f3f58 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+079e8868-c76f-426a-993b-14b435e693a9 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+4d7c2160-54bb-460b-ba96-2233c0b010f0 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+fa3b30a2-ad64-467e-a02c-42934317a00b 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+7a207248-09d2-46bd-92ce-7fb5812f1316 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+2f360e08-a575-46a7-82c9-0547e963bb21 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+a3094b0f-062c-42c6-8c6b-2b660c3a5705 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+002748b9-749d-4387-b889-bb95e8fc4ea8 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+36f4ac1d-2563-415b-88bc-c315fda80bd2 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+b385cdd2-db06-4b18-8cb6-fd0c77583804 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+25584d08-8d72-47d1-bf39-8114f9741498 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+74a066f0-fae4-43f6-9416-92eeb8e298cd 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+4d247938-b964-4994-a3b5-b649d766089f 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+2994cb5b-1f34-41b1-a40e-220d708ba1b9 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+fcae8dd7-8b09-4e47-8bbf-88da4e386a8a 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+88face93-b9f5-4b6a-b3f3-c78a8a8b9be8 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+ddce7282-b933-4fae-8ee8-f3c82f6c17a5 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+b22e2c3e-6041-44f2-9627-b466905d324c 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+07f438a4-2262-4d8d-a957-8cd91892a68a 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+178f6266-0f23-4898-9400-8da89877c011 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+fcaee103-74a1-42c9-b192-ac40fc00e0f4 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+c0dda43c-4228-4d04-a5ca-4df91026e81a 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+bd73f70d-4a01-4aaa-b9c6-fb073d3c353f 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+7735f3b0-a1d8-4614-aecb-20bd38af215f 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+b7aaba1b-2357-49f2-ac3e-754d7205fa31 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+431373a5-cf75-4331-8cad-66724133dd94 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+0760a3b5-19d5-4b48-8054-865d978d940b 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+16b83f0b-20ce-435a-83c6-505a8a3deca4 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+65b4af81-5cd5-48aa-bf0f-2620fe2adddb 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+4321fe2a-e390-4ca0-99ce-45257e6d028a 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+46c02ac0-2e93-4988-af1d-bc68977f9180 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+4d3d05ea-3bbf-4a68-b882-f4e41b3873a7 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+3528f9bd-a853-40f6-9903-940682d6ffb1 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+d60fc8a3-51e0-415c-8f6f-a2999d28b4ff 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+d557e047-862e-458a-ad81-a28e43dbef80 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+521d0bba-7eac-4cde-a76a-fe26d94cec24 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+1e9b91ad-7463-4df3-9e91-77c374a83152 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+4f169da4-b327-4e06-ba3a-623b709a72ef 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+5c2b390e-901b-467b-a47e-75e754caf0a8 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+cb267e03-618a-4bf9-9c2d-83d482a285f8 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+52220904-78b5-43ba-b43e-c0521a73e6e3 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+b11c1329-d504-44b9-a77b-6d5d9036917c 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+ff2a4228-a433-42e0-8cf1-8b93ba086027 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+0e2c7b88-fd20-4d9c-910d-ef91f5b283bb 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+04d6f1ff-776a-4712-86d6-763c3e0cb246 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+7bd412b6-8c5e-4e4e-890c-061b601e921a 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+cd1d4e45-0d84-40b1-9815-300125aa4988 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+c621d23c-9397-4801-bae3-d50c95c99239 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+52a0e0ba-2484-4753-938d-4a61e3bccec4 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+690f8297-4d12-4e82-bf3d-b15ef33f085b 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+7237d847-8bf5-4f16-87eb-511de39ef9da 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+1decfc5a-7616-4d73-bf9b-ffae473d5667 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+108094cf-2cae-45f3-ba6a-7b844ab87f46 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+882eba8b-ff2c-4d85-9b86-d96772c2692d 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+12f81f5b-118a-4abf-a590-fb74cd7c7b29 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+f9dabbe9-e7bb-4e03-a10c-72ff76b3ebcf 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+fe2d70aa-1aab-454d-abbe-01a38e9d7678 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+804b2ccc-a7a6-439a-99fb-f0b30e9d2566 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+fb008cbb-f121-43e8-8045-1c837e2655de 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+0b317662-ac0f-44f6-a516-b9cda4548bf3 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+fa757930-8a73-4c36-873a-c9848529eb88 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+e3e1257d-3df9-47bb-853f-a6513a0d9fbc 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+71ca346d-6258-46e7-8ab2-3251c73b5176 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+5d2eccae-977b-40ac-a94d-ab3ca190cb6b 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+4616d3e1-c6fb-48af-9299-f86acfbaf334 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+ad3cb126-d942-48b4-b9c8-59afe020fcfb 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+a3ce939e-fee8-44c7-8b30-64aa596f3c30 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+017387bb-64ba-44c4-a004-ac4eca9e137f 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+fc9d997a-4c95-4ca7-8dc9-e43f2c4c6bcc 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+ea41bd81-049e-4462-bf8f-a7c3050a536c 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+bb743321-0e42-4680-b9de-94c963f13929 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+03bd831c-e588-4f9f-9206-c8aff76c1b64 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+c3ec1b2f-abaf-4040-aa0a-e82d8e0f7d50 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+37022922-b45e-42b8-8d2c-1b00c9307f2f 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+6163b615-df10-4580-8937-d3b370298ab3 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+b264930c-1868-4d3a-b780-55e03fc62b6f 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+de51f807-44f3-4f89-8ae7-69aec063ade2 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+4bd05c6f-ab47-421a-bce1-3d6eea630744 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+2513143d-eff0-450f-9395-e2e4cc2436b0 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+9aa5d64e-86f0-44d8-8803-49c7ccacf5e3 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+ca07c254-c158-46c0-8b12-dfd715f3b42f 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+9a8a6c87-3d78-4bbf-a711-2b75063cce2c 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+0dd410ca-e5d5-4b0d-a76b-a982e7fc43b9 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+af36c214-59cc-404d-b35a-9b43712a1d27 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+10e0c209-0937-463d-9e79-bfca54a05ca1 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+2dc935ad-9ddc-47eb-8292-3a50bdb03a4c 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+c0de0051-381c-4578-af15-6d947c1514d1 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+9e7a8064-39af-4214-afab-8bdc7e76f3ce 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+0de76715-82e4-422e-a10a-b454dfa728be 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+538a4874-4cdc-4174-94bf-92b888c30212 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+9acda1ad-5766-41be-b3cf-f2296deabf3a 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+49932c9f-845c-426a-8bc5-c1016b69c4c4 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+9fd51249-b7c5-40a8-a74a-f92eff7af954 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+1a45338b-8e63-48bf-aaa4-09747d5074e8 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+1abf559e-5e7a-4c76-b9a0-1c45f27abbcf 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+d3d64703-4a70-4b46-8275-058f418473eb 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+f34288e2-e7f2-474a-90ad-0188e31eec6d 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+9ba574f0-7e08-498b-9701-723ebf0d4a40 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+62991e0e-1bca-4c22-bc9b-372570ea7371 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+973cdf6a-3ee4-425d-9d75-b0ab454850a6 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+603419e4-3bec-4379-a41d-6a875679cc57 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+4d40c3ec-8230-4e18-a860-817ee4e2eaef 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+b436fca6-c58e-4e6f-894c-361efd831bd6 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+157ecd51-8407-4fed-a7ee-357d55ab0614 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+bcd21d4a-ae1b-43cf-9a96-4d5830a16372 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+07b759fe-b6a5-4c7b-901c-0bd24364b669 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+82ba26f9-2be9-4b80-ad7f-41649e7a897f 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+acfa08d3-778d-4499-bab2-d9d64fac7ee0 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+00a10f28-abcb-4f6c-857d-4ca670130b4e 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+1c54163f-0e85-4199-9d65-d20779303f22 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+2ee4b52a-69c8-4ae4-9c86-80ade99ba891 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+59ddb8ae-e40e-4249-9969-98de566c132b 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+4184c66d-cc3f-407f-8ee2-fd736fed9297 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+cea56193-728a-44cb-87c9-0ed7004a588b 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+19c27952-5548-4f72-967b-c707629a1438 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+905eb841-4984-4c1f-a4c5-f945095fd586 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+a60c7bee-52f9-44ec-8c87-c86726021355 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+91bc91b1-f6f6-4ed7-82f3-856defdc2c79 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+979a8458-4d2b-4bbd-b1f1-b486f1396ead 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+70426f5d-8fe6-4926-8075-402336bf164b 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+27b5105f-de98-4380-ae2a-efb4837376fb 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+59cdf7f7-b5f8-4bb4-bcff-f2fdac981655 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+c9d49bba-6562-45f7-81c6-c0eab95b2834 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+18259e03-b0d2-43d3-bd82-9cbd792af787 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+bc232e50-3832-4c58-9d05-1506cfbf27c9 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+730f91c2-e118-466c-abfd-a2b6271b18bc 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+5f752eae-4ac8-4a93-b4a2-2b75a21a707c 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+8da91f16-8987-44a7-8aa7-9968cb2170c8 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+08c4ffa8-a2c1-4d12-8029-9df360218887 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+b1efdc98-8214-478b-bc7d-972b8672849d 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+c27286aa-66cc-4be9-a331-44626546cd88 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+47269a8d-e8fd-40e0-aca4-f50bd3806d20 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+9f17769c-116f-4519-871b-1ef8d99ea180 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+907a6700-d13b-48a3-a0cf-ff5b387869b3 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+1ba291fd-f3d8-49b9-8ccf-4482004307fc 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+db87aff8-a480-43c5-a503-4ecdfdf5db35 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+9f2f47dc-6e82-4cf0-bd65-49e3a26b2e6a 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+81360b6c-6317-43e7-88fc-1ba245c8830e 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+3a0be381-b5f2-4051-8010-055032c87324 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+6da9cdb2-c3e4-483d-a970-b51d2e0c009d 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+c6d6dc4a-87e1-49a3-83a2-5bde35a455cc 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+0150cfe8-e401-4254-9b6b-d19d83d6c48d 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+3ba325dd-fec2-477c-9340-4e7f6297e58d 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+f5bcc396-d76a-41d0-ab0f-2d49cc0017be 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+87650357-9ca6-4bab-86d8-d3908f8c2e85 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+35596e24-a8be-482e-a205-cb6397334418 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+61378138-4b66-4a5d-8fec-b4a0c9f0dd5a 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+295095ea-f563-4a3d-adbd-1da3c0239838 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+7e49e0db-be16-4706-ad91-1791e3517db9 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+999898f0-604d-4fa3-bc4d-6c4db2c2df01 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+39a3015d-808c-4318-a114-38b2e2b29fcd 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+298d9864-3a98-4bee-9c0e-b5b03c884f63 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+340f8ae7-3e34-4980-96fa-5762882db061 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+1d27e3e9-6f0b-48df-b267-3e90fd0cc7db 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+6a7805d0-e7d3-456b-8f02-a8a569494e5c 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+2c898f8c-37cb-4920-9fe5-ecb759625a79 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+8dab68c1-2e1e-4262-8fca-06fd643ec464 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+f00e1e17-46d3-4c93-82a3-300b48357d44 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+7724fc0a-4ac4-4b7f-8b90-6a6a2d5489c1 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+31236069-da8a-43d7-998c-6e678aa22b46 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+e9880d22-f284-41e9-929a-e4dc3fa9ff11 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+222c07e3-0215-4923-a6b3-62b63edc247a 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+a836fee0-f32e-4726-a7ac-63f3aa42d2c9 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+5c186af8-8dca-426a-8d62-c1c5674f0fb7 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+db70764b-e66d-440f-aeed-753e95fe2e48 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+51426199-da62-4c77-9c24-bac1e324b399 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+a1ab1d0e-1980-4671-b2b6-8367f3d7fd50 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+4a47efed-eff2-4a27-8a31-02c1b6349427 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+b2825f7e-eeee-4e46-8b18-91cffd964c68 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+06e621ae-ab4e-46ba-be25-b4ba727b194c 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+1f955aed-ed7d-492c-92b3-a75d571a9b21 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+210dd06f-8ec1-496a-8344-76ee53cc05dd 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+c246aac0-0f7b-4861-a0d1-3192ac123555 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+3ef509a0-8891-4959-bf81-9c38b3ff43b1 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+2a638518-cb54-469e-beee-1b6ce12cdb57 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+cde0d928-4b16-4c60-b1bb-54dba2fd64e3 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+58467542-61e4-49e1-8b2b-ff1a8bf9a1d5 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+aa48bbd8-7871-4ebe-bb05-5dd6eaa10e01 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+640aa110-5baf-4492-8b27-aed150901801 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+a57254c0-7e36-4474-9f7e-5f74ad8c35a8 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+4ca52ec6-67df-40db-b13c-8f297396cc25 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+f4a3ceab-1deb-4b35-b669-40c805799e6a 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+adfe7678-d7cc-46dd-80e2-b26e7d23b87b 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+40814a0b-3303-4701-b58d-4374ff30e5f1 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+c5bbe729-bf41-4e2a-a146-80492d2b331f 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+8f9e8865-16f5-45c7-819f-ae7d71f4a4ff 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+419d2222-6766-4e43-9052-041a0be7be60 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+23b736de-1aea-420e-9190-98d9612e8e98 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+2c02854c-1cc8-471f-85c0-33dc9f280049 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+7550ae74-b243-40d2-86e6-895140daf097 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+706f8ab7-c52e-4d8b-ab43-26f436f0e0ae 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+447e211b-67da-468e-8f65-34c911ba55e9 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+f522cf09-f853-42c3-a508-36fd48a0335a 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+21cef7b2-b6a0-4402-a2d1-316e95ab18fa 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+6b762eac-c502-417f-a334-d725a5512601 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+7795b14d-b090-407e-9ee0-310b3d3fc30d 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+76808da3-bb87-468f-b506-6b354fe4d3a5 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+b2e179d3-0b30-461c-ba33-126ade40b7bb 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+cd4654a5-42c3-401e-8e44-3caabd11e22d 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+25e2a913-089d-4a7f-be18-e01751fab27f 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+ff8420f4-7725-4349-bb2c-e1bf6da0cb74 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+418e511e-ae86-4c68-8f8d-8e0cd0f7b1ac 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+851c9e14-8c64-47bd-bdd7-21cc6dee86a5 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+e518a765-87c5-493e-8927-fc2d275ec9ad 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+a9d49d8b-7cee-4711-bbce-9f8ec006286d 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+a1d81064-f3ca-45d8-9a0d-149fa169f7ca 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+3a04b6ce-e643-479e-8526-6cc37feab050 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+9f1234f4-db99-49a7-8db1-3c6ad70e12a0 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+2be55150-01d8-49c4-a070-561c5b5fc015 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+5615b837-1830-4890-89b3-9004c2e1bc92 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+0fde4535-6874-4e34-8925-1772c4e24ef8 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+a3544b7b-8d59-4b01-9e1f-eded6acec2ad 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+9720ea7c-53e0-4620-b157-3d9c1497fc11 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+d7803e34-d430-4bdb-b568-af919f579082 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+cd6803fe-955c-493c-af94-a06eab8eb835 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+868a1569-5a31-4d1b-882c-9974e4dc7a1b 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+0ff370c7-86e0-47e4-9ba0-6532fbb9e6d5 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+24dc1c89-9794-4d0c-af9f-1b6693985431 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+be2096ac-074d-4fb5-af04-d520f90ce898 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+0de9a912-21c4-46c3-b068-91737096a267 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+0ab16750-c280-475a-a00e-75f57a0e0d80 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+f27748be-89fa-4018-80c2-fa602d6bd1fe 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+947ad321-17a4-4f55-8a6f-fc2b5700f0e1 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+d195bd05-8bef-45b3-86ef-63fbc5a8a624 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+2c2a605b-75dc-48b3-b198-c54de2e97e05 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+5e742bea-02f4-4952-bc2e-9bf5a88b74e4 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+9657e02c-b808-4e05-8ca2-f8080acbfe25 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+b81001ad-cac0-480b-924c-a254e0da52d7 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+fc8cc712-9586-49a9-a24d-466911f9ee93 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+15f749aa-2061-4c48-8c0e-22d5e06a2afb 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+152bb797-2ba6-43e4-9451-9f46d76f90e1 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+bc59c986-9a4f-449f-a392-4788141c2415 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+6f9b93d4-ee63-462c-a4c4-ed25b290da8f 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+3737f589-007b-407f-818e-2d53590b9bf5 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+bcf51ae7-d6d2-4a09-89e5-1386243e5d24 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+bbb67090-8f7a-43e9-9f46-c0790ebab630 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+abdadefd-94a4-4259-9401-e26eb33c08ae 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+53a564d1-1a73-4075-9f82-59749b73c4e2 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+e44deab5-71ca-4ccf-b155-5eeecbcaa6a8 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+81b77183-f959-405f-9c44-1cc7e96afd08 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+96fe71f6-eb6c-4566-aa5f-c6729c5f007a 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+f143ea2a-cad5-4a79-befe-e8536e075ec9 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+2442d266-25ad-43f7-b9fc-5fc6e09d25ff 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+4db69bf7-6023-4e5a-a0fa-6dbe891726af 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+eb1f3d54-28c0-4215-8118-7cd173da51ac 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+f2936163-dfea-413f-b67e-598aca64366a 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+001c051c-5726-4f84-b59f-7847b897c66a 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+0c7314f8-8f95-45fe-a7c3-a6f9c8e65c71 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+9341ea7e-82cc-400d-ad2f-5c9a38eed940 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+8cb8a0c1-7fec-4a4a-94e8-a20d30550e7b 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+28e924d7-4c02-4e80-b11a-7381a7cf368e 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+3eecdb97-6857-4228-8ae6-3ea5b2c462e7 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+35462466-8f82-4815-97db-c60cc1e7bd9b 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+8792c683-5828-4c09-bd13-05f0910b0fda 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+56464dfc-7c02-46de-b152-b58f1c6deed8 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+6526e9a8-f4a6-4b90-8005-6601253651ab 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+0346305a-a4b6-4fa9-931e-ecb625a45b20 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+627aaa4e-bb47-4614-9e25-ea8a781881e3 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+27be6ca7-9e64-475b-8716-865e5f329b8b 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+d3f3f3d1-c38d-46f9-b2d0-953edd996d5f 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+a3e993e0-8442-4f8a-b9d9-214681550dff 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+25f19ec8-982b-4469-8cf7-6c2364efdb31 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+5cf425bd-0849-4068-a25b-56f645e25576 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+79f56f68-cd76-4ff7-acef-7dc017871460 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+c6b9e469-f2c1-4ae7-a524-6b9905d1ceb1 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+be7e6786-94ee-4ea7-9a76-b4935175769b 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+dac2615c-c399-4f13-bcd8-71cfae17c3ae 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+16c36630-72db-48e2-bd1b-33865cf6214e 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+cda2a161-4870-4115-8323-de715340ec4a 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+2b349b5e-8496-4d1b-a1ea-dfe921bd6532 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+474f36e1-8967-480e-ac47-41ae0a89801e 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+8c811bdd-dcd8-4bf9-9cd4-a6bde814ae30 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+1ca5e57f-9660-450e-aef5-09fbceff8e94 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+7d7efe51-aead-49e1-92e0-b511e977c127 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+b067bc53-2808-4252-b79b-886c3d1df976 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+c65a7d5d-7f07-4d3e-bc38-f53f9c6ab4cc 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+ed1cd6d0-d699-40b6-91b4-d69bef567207 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+3b125fb0-3efb-4d4d-830c-2814b912430c 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+a1ad8726-fbae-4643-aa14-07f64fe8194a 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+b6d49f53-a06a-4c65-8606-2a9edc051975 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+23fccc9a-dfb4-422d-8b0f-e05bfddf3181 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+81b79859-c0ce-470a-ad9c-01640a05607a 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+b86c3804-ec46-4aca-874e-0b4b7582eebc 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+9018db4d-a8be-4a6e-90a5-0b81d529319d 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+5b9bf9c9-f0f3-4801-b45c-de690aeb4bda 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+1141bb73-72c8-4898-8a0c-dacc2e709885 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+3891a7c0-2279-48a6-8b88-a1203c97fbab 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+a55e1256-c5a0-47c3-9268-4f032080394a 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+31539ca5-b48e-48c0-b4e1-186ac83d8fd1 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+354ec358-f8b8-440d-90e4-5c4f0c2851e6 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+10935152-5835-45c7-8c32-f41734ebdb13 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+a12b9432-0304-4179-8a0b-946a0350cbeb 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+7f4a7de6-dd1f-405d-9e94-609e3c327604 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+a08a7e52-b8ab-4692-b991-84acdeff9429 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+0821bed1-0fae-405d-b1e0-bb70e5a2a1e6 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+7486b08f-3e28-4ace-9b78-c1c59e76942b 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+2831e4a6-cd32-4b0c-b191-d0ca73215f80 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+9b8c258a-1dff-4cf9-9471-4546718a43d1 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+6b4d4730-793a-4e89-9587-9971f9afb368 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+b0281f10-2c4c-4ec7-b46d-44d070d83f2c 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+67f4f056-7cf0-4d68-a0a1-4054fdc6ff40 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+8d26d4c9-77eb-44f3-b5ef-074bfadfd472 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+7a03c5c4-282c-4369-a748-4fe88a57fed8 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+5d2d8605-34c0-460a-b680-db27d022f9dd 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+70b22809-20a9-4a20-93e6-d3eabf8030fe 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+2841cdd3-bb78-4074-b014-f33f9911200d 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+4a0f2fab-ebb3-420f-ba0a-afd5f9a59785 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+e4908924-2d4e-49c3-a0ca-d80c738d9b5f 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+f3946dbe-22dc-40bb-b6b1-e3d8b82fedcc 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+1be00c85-55fa-493c-89c7-1f7354a59222 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+7e1d5a83-f88e-4fb9-ba23-7130ab007e28 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+c2bb11f9-e2eb-43e8-9a34-318fd71ce5b4 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+dc4ab2f7-b0bc-428e-93d2-dde57aec85d1 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+7634add5-f725-40f2-9d61-51de9a1e0d10 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+32010c47-8cbc-480f-a70b-2b346f7ff637 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+89fc5b3e-77a0-45cb-8be1-48d752dbafdc 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+c07263be-b60e-407a-9478-3404fe5221fb 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+e99dc081-ee7d-4b11-aa27-4535f5635942 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+9fa64506-1d3c-4b43-8e1d-5a0165aa2b83 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+fca1bad4-9a2f-456c-8328-7724d3f8adf8 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+0f1332f5-3dc7-484c-8150-b42a99dedea0 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+1a889695-d9dc-470e-a2fe-aa81423b9a18 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+0ee5b1e3-6bc3-4d84-b18c-2bef8d6a9dc1 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+58e8c32c-c5d4-4f96-a9f9-68a1a298fee4 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+442f7f43-2bb4-4710-88ca-3c29c247b897 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+3be9e52f-938f-4acc-b853-c0d2eec1b4c2 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+13aee9a1-abbd-42db-8b79-6ec3fa78fbd5 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+47cc83a7-1f6a-40bf-bbfb-6dc57b0240a9 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+e820d9cc-fd90-49b5-94c3-21de8e839934 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+1273dee1-29ed-4eaa-82cf-df4cc29e5865 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+b083cf86-7f5d-4af3-a9c5-521a36797206 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+6a58a298-4ca0-4548-b689-95144dc55e33 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+577836a1-14a3-4907-a276-4bee2297ceb5 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+7361dfa0-9812-4ff7-a08e-687e461c539e 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+2446b712-9dde-495d-b195-03c852276252 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+2d629042-5dd2-41f9-9bc0-8aafa0d84d28 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+60de6e1b-d393-41f5-8f89-e74b281a9c9f 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+351920a6-3761-490f-93ad-62245bfe97d6 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+bdf983eb-9280-4d7b-a800-dd0662cc479a 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+28c7b0ed-69ff-47e9-9ff4-8190dc521a7b 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+12e165b9-f859-4909-9c9e-588e754fbe1f 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+fcee5523-7aea-4ee5-8945-07811f050213 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+6c04de3f-30ec-48c8-8473-160f3f02a613 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+50f9c596-70c0-468d-a815-41fdeff8a038 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+5afa2ca7-ef50-4f5e-bb6b-39e301a443d0 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+631fb6ec-ec7c-46c8-b5ea-3dd68ee532dc 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+05b661ad-1049-44e8-9426-719b3ba55dc2 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+c2177965-df4b-49fa-8c3b-bdc5afc42dc6 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+be0067f6-50ec-4dc5-b143-dd126ed36f2d 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+98bef9ad-48dc-4918-876c-c8058bdb4d9a 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+523d78d7-4500-4e89-a6cc-9f576475c97d 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+7d4d2c10-e2b2-4c92-bd1d-93e746d87cb1 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+9283a9ca-5062-422f-8218-d9cf8e6da200 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+5d8f86f6-45d6-4347-9ae0-e43790b01018 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+782292d3-7003-41bc-a568-d42436a5afda 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+80cc61c1-5134-4ad3-82bf-1f688d97f202 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+dee22759-fc90-412c-86a4-795fb94bcb1f 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+9504e777-389d-417b-9ff6-46d2619fc7b6 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+1e7c0b80-bd8d-48c2-82bb-930fd158cb64 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+c51ce65a-a14e-4a21-a576-4ad678221a60 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+9ab2c829-3907-4fb5-bf33-9a119fb00465 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+40d6e853-08ac-4e25-bbc2-a7a02e358eb5 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+6cdcb667-2efd-40a7-ba66-fd93472c1fb0 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+7ccbc093-d32b-4a81-85dd-454d8ee05645 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+8019f6de-c6de-4af4-82bc-f911ecd43f7b 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+dcabe6e7-e7c1-4001-a324-e314a9137a2d 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+3570a468-e2a8-4886-859d-a98022ec3857 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+75176c7f-df80-4497-9cad-ad1cc39b0e47 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+51b6b25f-9c30-4c19-95ae-a9a104836527 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+920d188c-d6c2-41d0-bab6-b6e78845d8f5 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+3f26179a-9662-4482-850f-5ed9cf5ed867 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+22f56312-59db-49f5-aa46-1c5f7e236788 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+e940c665-a2b4-4cf5-b2aa-335a6e53e489 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+51eb1b67-e00e-4263-a8ef-3b92fd7ded09 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+7d00cac7-44fb-4ff1-9193-9b20365903db 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+b49b84f8-fe07-49bb-bda3-9ebde11051ea 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+a5c547f0-19f9-4d00-959c-dc5053c2c4ac 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+f14cbf05-5ca3-4a9c-87c9-c8a18ecbb510 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+4e7afe3b-1482-4c37-85df-3e8868b5160d 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+060b620c-c983-47cb-97c4-fce8af9ee12a 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+8ea2ed90-41ca-4382-acc9-a3d513fa7471 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+6ec6770b-8416-4f93-92b4-7890b0831bda 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+54023702-5e0f-4f14-b9cb-7179ff57f9d2 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+0ee86eef-9f29-4c96-b25d-9e20c1655010 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+71ae6126-bcf8-4aa8-851d-123b177f4bcc 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+2bbb3a7f-e3fa-4720-b2dc-980b52dc8917 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+5d405ba0-9a36-4c4a-b2b7-65b03d4351e0 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+a92f2549-cc36-4486-8ad8-a7847c477d94 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+60d0bc92-6afc-479b-b050-393768bd3123 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+5a33f68c-c341-449b-bf56-35a6955c95b3 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+88f023d8-43ef-453f-bd19-ae1fce306448 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+d36ca7b2-1c66-4292-8239-72222cb384f0 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+3d8f72c2-0b56-4c01-92bc-f0d6bc17c34c 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+b627e032-4bd4-4e54-b3d8-3d82a1bf8aa8 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+94f739a5-ab46-4a69-a2a1-eaa59c2781d1 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+2a0fd669-8b9d-43e2-8fb5-3eb3374537cf 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+baa09605-6de7-4658-a745-17f4f130173e 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+fbd579b4-2433-4b1b-85a2-ae0d2faf785d 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+ef40ce27-a754-4e3e-bc1d-0c179ed59eda 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+540c726e-6313-42cd-9341-b95627917779 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+31962426-ce15-41cc-8c8a-3c35d8fcee42 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+95ed2434-625d-442b-840c-384c66d3d68f 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+3c12baa6-8cd0-48f6-95c5-ff940c00b20f 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+e395b33a-7c51-4389-9b21-03e16259dbbc 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+9d78e9b8-72ae-4eff-a925-485a16db4d61 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+f325c24f-96c1-4e2e-ae6d-d4559e7a8b3c 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+48ba7b9e-825f-49ff-8c0b-aa0c176ea514 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+7c705dd5-a419-4077-a9f6-c803ea6a3958 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+810f58f4-6cc5-4329-931b-4df5cbf10cae 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+4d6268b5-2917-476b-9e43-620146881d8b 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+de33443f-cff9-46e6-a165-cf590073eec4 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+e9d0cc6d-73d1-4077-9e84-c70266748e94 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+31b2a762-f300-4097-a9ef-f3cb4bfa2460 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+1b39d3dc-f0c7-4c2d-89b6-548a3cccf1a6 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+1b32e73b-a4b0-459a-95fa-6dbabd717c5b 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+d2f80117-b3d2-40e9-b5e1-a2821223bb6b 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+36eea160-d6fc-4f26-8e31-c7ad6d0f85c3 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+bf11a575-accd-4570-b223-d3fe152c5c84 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+5c05ebfe-1bc0-4685-b904-677e3f11726f 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+daa3d11e-3a75-4d08-a4a6-f2de711e9d45 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+8ebaeb76-de45-4da7-806d-cd7495e5ce06 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+16a98316-1dae-437c-b2c1-f72ebdee0af2 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+4d63ff69-f44e-44ac-b561-5fd218f55169 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+64e44574-1f96-47bc-8c54-e5e71fcc2055 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+332d364b-dc76-479c-9ea7-ab12a027582b 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+9b2952ae-2a6b-4c5e-bdc2-2513fa2342a2 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+a3485235-0e3a-4783-9265-1238df365924 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+ba975ce9-c620-4201-98c1-d99f601a2191 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+6788a30b-5616-49ba-9327-253d123b3b16 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+18b489a5-9712-420c-a77d-3c0732bfa94d 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+5626236f-e7c7-41f0-868d-a9567a78310b 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+c5e177b4-c8d8-45d3-beb8-a65c28aec7bd 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+d477af2b-dcdf-4691-a10b-88bc2669d7c0 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+d50cdbd9-37b1-4f15-9dbd-12424043abc6 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+2f700264-c729-4d70-8cb5-791acdafa651 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+a2671027-d695-47bd-b7f4-58929d66e777 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+f8199f80-b16c-4024-977b-829888f029e9 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+a50e78b4-1d31-4cb4-8031-970ca36ebe93 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+0584c29f-38a9-4215-849d-69467cb5a203 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+53ac9312-7370-498b-af30-3b252d4b689a 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+8f07a4c8-f3cd-41d3-be7e-07ea98abb7c5 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+4b2dd6a4-7f59-435f-9ea7-db4009c1c081 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+ec29c155-6570-4583-951d-09124aaf6df5 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+76ebb9a8-10b2-49a4-9cbb-3dc70afa46ca 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+8e0b5237-1206-4ebc-846a-d96a758caa9a 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+c977d1d5-a603-439e-9ac1-73b6ee8144ca 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+eb209893-bf9a-42f9-8f74-ceb5a8579a67 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+25a0ce25-088a-4520-900e-5c2a5c4b6bd0 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+c4635522-33ae-4ace-aea6-e6254deda591 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+f74cbb43-2870-448e-92d7-db8775fb934d 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+1222224c-48b8-4dbd-b3c9-ed79a49905e0 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+ae914b1d-ffb6-4101-9760-46e8f6243272 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+f1baa937-d1ed-4fb2-bf10-20331a33aeb3 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+588062ac-8a42-4ec8-aa59-05bd0dadab0f 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+4e1fa044-437d-4c2c-8671-f566746f214b 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+730cb7f8-86c7-4504-8891-73f7a8261e5a 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+20c1db2d-d5a7-4aad-9cf5-af8cd93d963d 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+aca94f60-3100-4cb0-8b99-090f3a3fdb31 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+995b76c1-fd91-4b79-a48e-74e6391b6076 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+f7b3ae50-7cc6-4d4b-8b1e-c6fa7384b34b 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+b8952a06-a451-4215-a3c3-0a887122d1a6 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+33849553-8126-47e3-9988-c0503ee21df8 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+9d8779ab-44f9-4558-a9ff-7c06d2f3d818 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+28acec05-7064-4a16-97cf-a18760e49b73 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+0a5a5530-17c3-4d1a-a32d-e83d28d52476 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+8a7f57e9-ebb8-4789-98d3-ea1a24315714 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+fd20a508-9432-4654-8bbf-f31667a445e6 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+d2da33a1-0297-4c9e-b1ef-344c018ac277 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+7ec25dfa-2a04-478a-b5ae-85d0bea1ac26 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+b8e57170-71e5-45a6-9138-d5011b36fee4 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+c5650bb0-2826-4379-a2bf-299530a0e054 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+8c151646-bc79-47d3-ae8b-a79a7c0c78f6 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+97b5c876-1fd8-4f77-bf77-e2738eb506df 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+5317a908-6562-448d-8cac-1e461f6b6643 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+40ed94d9-9472-423c-8903-ba0afb7dec49 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+9a5b5a2d-6008-4545-bf80-ec5006387bb8 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+3b5fa585-dde6-4ec3-a878-0a82383fd7fe 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+7fb7435a-c209-4446-b406-26f197051df4 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+5d921804-f462-4f84-8971-b11a2878b59e 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+fb116a6e-e968-4864-b337-a9e54ff578c0 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+5360a73c-a34e-4e44-b861-ea068bc826b3 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+9d13559a-4782-4d77-b635-09b057f28e7f 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+af92ef48-2b3e-42cb-aa25-1697cc71f589 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+004a0d76-36a7-4a9a-8a7e-12f40ad798f9 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+12b38a2a-a2b5-4d12-9f8e-eb10a2ea0639 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+eb040317-ccb0-4381-811e-401ff994f15d 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+4d61629b-ad91-46c9-bcd2-678cd6a29171 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+1de828ba-1520-41d0-aee8-9fb9f424857a 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+83139e34-7d19-4e2a-94eb-efe4a78634e1 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+86018089-6908-4cc0-91a8-2284c401c3b0 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+8d851c2b-91d0-4a94-950f-7197d88179ae 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+df28367b-e260-4234-8f15-f7843c1c2704 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+785d9260-996a-4881-96b4-cee5e094ebea 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+3b47b586-a466-405e-afa4-f9d37c838f33 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+889e6511-9a5b-4246-8e1a-997e3b09fda6 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+51279c98-f206-4cd6-ad8b-ef6607aa05c5 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+18d7b39f-1b8d-4582-8e85-9f3f97f1ef11 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+d7dcc860-98a3-4084-a887-83370c887227 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+a7ab67b6-c5ba-4526-95e9-5c7ec42f6392 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+b8af99ac-db4f-4387-9fd1-80a6c046ca39 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+72b05439-024e-4924-94dc-68c72dd14332 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+9d6bc1b2-b7ef-4e97-9b2e-9a0615cd6f25 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+d996fe70-70e3-4e65-89cb-c2ac05f1c09a 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+75a00b7e-e823-48a1-8608-be204ed68915 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+b898ee83-0c26-4899-9897-c86467ec6fc7 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+36149551-f8ae-4cc2-ae2a-8c22452b65f9 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+e8aca3cf-1ab0-44e0-8d71-627284671433 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+7c76da6c-8e8d-4e33-b3cb-a3a4ed6cd332 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+11065085-3d45-4c1c-8331-8adaebc726f2 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+9c8ea015-983c-4390-aaff-52b8e4e56c1a 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+4adf2ca4-5fcc-4b05-a6a4-6503c5daf09b 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+99a53110-5478-4112-b8c3-14856befac5a 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+b06317e3-1774-4ce1-8fda-2b9f7d8f2319 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+25f533e6-35c6-4832-b4ce-95d9e86eb367 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+a1d87f6f-9f30-484d-b3df-2a70da1b605d 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+c2dc7531-ebcd-42c9-9313-3e316c7b0e75 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+9541a4cf-f08e-4c10-b4d4-19cf1b8ec199 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+6c6025a7-57bf-4868-8fd0-1d2086896f43 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+48c53d95-0032-43b0-a1e5-78444f18068d 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+84b420ac-ddcc-446a-9bc6-daa0fc292840 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+892297df-0a6d-41e5-8c20-9a82fc8d7699 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+a9dd28ab-6a34-43ff-a4eb-df504baa1c52 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+e051fa1a-bf60-4734-9d60-17553ac0eb0e 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+d071518d-0483-4d0e-a971-7f78d2f7ba04 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+559e20c8-faee-4786-84dc-f65b1ed63c5d 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+9736e1d8-f023-448e-abcd-49f83c79b696 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+1062e488-0033-45ee-91b2-2330807b5ed8 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+a613413e-a216-4d3f-858b-3b4424062125 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+0dba8f30-cc49-4728-8e9f-72f78903834b 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+6264a736-4dbc-4df7-91fe-6b2d41deee19 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+beeda7e7-1481-4d92-a9dd-f2a4549b98df 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+ea96a36d-e3f0-4b56-927f-bd575f9c96ff 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+2224350a-b063-4a7f-8bbd-4d9af42cd6f0 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+e1329e15-143c-4b46-8209-e3313f6daef2 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+99c8b864-7405-496a-ae3a-50ef711af156 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+0fa9c5c2-76df-46dc-81c7-b7005a87ccab 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+9088d46b-3e10-40ab-bd7a-796e0157b843 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+b03649d5-a5c7-4e43-82b4-7e8b09a52fd4 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+7eec5e93-7950-4b21-96ba-03fdccdaa751 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+3ec75193-0bb1-48ab-95ba-eb25067c0a8b 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+26546905-0cd7-408e-923f-e1df342a70aa 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+5b1e4b0e-1556-4394-aa1d-2bfb2aa2fa73 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+d8cd165b-aa94-499f-a564-5cf12fb6692e 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+badbd54a-f4d2-4fd5-8f26-1f1f4adfe591 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+fff26f67-e3e2-47ea-9f3d-6d5d15969551 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+744816b5-2987-43e9-b08e-2d57d9e17360 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+fbc55cc1-0d64-4ed1-8820-da2bac3223ca 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+c16b3bdb-1a21-445b-8252-44fdc4730c96 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+c66d72dd-0515-4bd4-be01-7b4a70dc726d 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+7ab237b0-9e9f-44c4-a4b5-146eef2e1df3 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+7f59e0c7-e563-4985-8fa7-b7dd9701227f 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+df7e2a34-217d-4c31-b413-1db41c32f222 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+1fd82cd9-2364-460b-a585-0671ccaf79ba 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+a2b28d14-cbcc-4ade-838a-0c6079cd765a 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+26d0c312-3656-4e51-8338-25660a3b4f4d 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+b2b42caf-16d0-4303-934a-24dd3887b777 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+9a7b27e6-1e6b-4bd8-bf0e-a28888d8e0da 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+2291888d-c038-4706-b53f-cebd61fddfa3 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+ab362e2b-b1ea-4f53-bb13-0d9e13ef122a 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+7ed88010-db89-4e24-aff6-83aa17daeb35 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+f5644fd4-fd8b-4eef-a8a8-1eb31013a5ee 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+14b8ad5a-5abc-4e08-9c39-adaa53a48b13 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+9d6fa8b0-deba-49e9-b1c6-822b7b38b373 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+2f02492f-b3ae-40c5-b390-92777cc41498 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+d3ecd91e-ed93-4272-afad-333726212339 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+b592a031-782c-499f-92fd-7c849fd7d026 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+c3c773fb-a184-42db-8446-fd4b68ea4eb6 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+1a068a3b-6794-48bd-aaba-d0e7f444f989 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+5b163c34-35d8-4bef-bb30-2c8f17d5f420 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+ff42f75e-9125-41cb-8abf-f87030e01dd2 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+5758672a-6565-4d38-a5fa-3ac5951c2012 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+47aa8361-70b4-4323-af29-3087dc760cd8 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+e94503c7-6e0c-43ad-80d2-51c7a97387a1 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+a0c05fe7-cbb6-4b2b-97c4-7e650d113b80 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+a90900fd-6e7b-4c45-9428-aef6115d9f62 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+e468a0d9-93f0-4672-a769-2cd2cfb2dd59 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+2ea3bf21-85ac-48b3-b042-62153d5633f0 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+9e6f25e5-64af-4582-801f-eee5121c1010 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+56a97d00-5d05-41bd-9633-1b91d5f8d9ef 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+621d346f-6374-4a3f-b11e-a90b7111f357 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+5558974c-89e0-490c-a208-ac3adca93ec1 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+2b0c6716-4704-49b3-ba76-c5aebf722d7e 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+20295baf-217f-4169-a526-e7f477da32ac 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+c61fcae3-20df-4f93-9f56-5ada22eb3a2a 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+ffcf3cca-9510-421f-b439-75c0a464efb7 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+e096e6b4-ab38-47d9-82af-fb4d6e1b415a 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+10a47aa4-d827-4e4e-b2d3-114b84b6c3a0 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+3005730e-9ebc-4e6d-8d58-cb74e703c76e 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+90e381b9-31c2-4d99-953f-679a0619a3a1 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+964c3910-36ca-4921-808c-9351fbcecb14 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+90ddf9bc-f23c-41b4-bf4a-38a4e269adbc 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+42c36ea2-6533-4c9a-89df-6f3fe144cc51 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+40fb901e-7c0d-43d0-90f5-14301b9faef0 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+5e648851-8a0e-49bc-b55e-e3d292c23985 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+d0c46936-a04a-4328-ba09-4f6d929d078e 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+6c8456d4-12e9-440e-837b-81425397f4b3 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+05116a7d-9857-444b-bb0b-df292e3916e0 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+389cdfac-ee16-468c-9d4a-ddfee2677a29 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+80c2e510-09f7-44c2-9fab-5c5922c1ef94 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+08bf04aa-d03c-4a23-a873-78802f765441 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+531f154c-0d82-4365-87eb-39462613d4b4 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+ba4ae700-6476-4ec2-a35c-4d501487eb5f 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+c467e584-ad43-4a9f-a6a7-a72b91769e1d 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+4c43d0e8-c86d-4390-9304-24ca34af969c 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+faa0b1d8-b93b-419d-a94c-c0850e42a751 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+c145eab7-0992-4046-925d-041b3d37463a 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+439d1fbd-f26f-4cf4-9582-b629c69efe21 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+e67e1cf5-bc3a-4a65-8039-a0a425390dbc 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+c6b039a3-ac32-42d3-ac25-70ee8ead48c8 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+6c171fbb-49b0-4939-a3d5-cd592298cc50 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+1489d392-1093-4c3e-91b1-1d72be6ab834 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+9d977b0d-593e-4ee8-8dab-134c233d5152 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+b3e914c8-5003-490a-9fea-787ac593c2f5 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+56041b78-1b88-473d-aca5-20620f5a1aa3 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+602ac8e6-aa30-4b51-b207-295d39a595ad 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+43249bd2-0c8b-44f1-9504-9116ea6ca5a5 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+4cbdda75-94a1-47f7-9c2c-1d197a82bbc9 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+76f2f18c-366a-4e62-888b-35f89a2e6133 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+bfdae156-c665-4524-96a9-217a25ee7740 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+ec6c91f3-6c43-4b38-85ce-0e12af399f0a 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+2d721fb2-7d57-4637-a9b1-0022198b09e3 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+6a1e3a02-c9da-4b31-b783-925e958d5efc 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+ae4b479d-20d9-4f8f-bb28-196357e4c123 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+95a79fb2-0ea3-4af5-b86f-bc9c99a7defe 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+7848de08-1801-494a-b9d8-241cb75bf22c 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+43639868-b165-4f59-8cb8-a58fba2629e2 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+7b2d448c-8ef0-4550-82b4-fb94523e1a05 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+349bf5dc-846e-4c79-a7ea-d3f67efe10c8 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+14adf752-3382-4d9e-bf53-0ee814d1adee 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+b2a9d98a-6b02-4542-8c14-a454898f6e03 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+c2e669ae-d755-4803-8ffd-b07b90a40f6c 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+a36d5982-2100-4cf1-b6fe-40a217ce5878 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+cd266754-9355-40c2-bdea-5193a5a4a132 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+42cfb6c3-4595-4fea-9964-50058e0eb67e 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+25347adb-b2b6-4da3-9f55-c53b0043fd47 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+35395dbd-4bd8-411a-8393-3cdde533d86b 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+ef65368c-8db4-4d3b-98f0-36433a1b7c2d 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+7e9df508-3894-45e5-8290-845d9c40fbac 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+f01c4c2a-af6b-4264-b300-e31b990130b9 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+f2fa2eec-581f-45e7-8613-d24d5307b4bd 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+51cc2c72-799a-457b-8f39-e4d08bca9dc3 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+f9387b12-0875-4fb8-a10d-5076c11f8209 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+dc2998c1-0301-46e7-99a1-f79d1c06beec 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+3bf7c643-a8b9-4fc6-b801-9454d1f418f9 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+b87fe4d8-365f-4d03-bff2-4116edb3c8ce 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+5a7e8628-e787-4f8c-bf79-e6c57fe58d7e 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+9bfe6baa-3b77-4f5f-ad1e-49e220889cd6 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+1008ce97-8c92-4206-9b65-c27ba1f2953c 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+383238e3-ba43-4cd9-9fbf-aee83f21b893 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+2cf94b7f-dba9-4637-a4c5-d85c9a0c0c6c 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+1c375235-3a36-48b3-9f4a-760eff72ded5 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+99a867cb-fbb4-41b1-ac5e-ed68b5e7d641 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+ab5a92e7-2de5-4e49-8a6f-767a04959df6 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+6080e576-9559-41a5-895a-064d3e2a7287 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+1e10429a-dacf-44d6-ba4e-6d49b100fcad 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+e486faed-1b50-47ed-aeda-560633bf0d46 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+605bedaf-0c9f-4bbc-a57d-7a5761f46f6c 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+b8e0d267-318c-417d-9a57-0df500a9b75d 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+dcf2553e-d686-44e6-9b8d-1de3e2764a26 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+2d5eefd6-554d-4f30-83b9-c9611677d5f6 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+add71a72-ea01-44bc-8fc4-f38ad9a60adf 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+fb9bb284-6efe-4731-a6b7-10bfac3b36b1 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+c25ce4f9-6f59-401f-8344-f3388652b4aa 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+749460d6-afef-4645-80fd-8f74154e4812 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+2386cc5c-df96-45bc-9078-ef2779752831 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+bd9e3f0f-bc07-4031-966c-560eb67fb340 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+c5b4601d-162c-469c-9c25-d0f6629d8121 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+4b0c2a88-4b4d-4b32-bfd1-74cbcb487793 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+bb64f5fb-bf80-4e57-a59e-97080cf150a4 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+db250606-d5c1-4350-9ef5-64b6c7e99b69 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+3ad16446-07ad-4630-a13d-0a75635c9ade 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+a83b3657-1818-4e13-85b3-1aaac41f5ba3 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+20d2c367-26f9-4b2d-bd8c-3388eeedabaf 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+a706ac48-fef5-4974-8b3c-20f4a58618b3 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+4674866d-be12-413b-b520-80c1c1a21c12 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+b03206dc-3020-4c35-a607-226ca5005dd1 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+c6a63176-bd4e-4438-923e-965e14af3bf2 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+a4194e9e-f43b-42bb-a95a-164dde6b2188 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+6f4c9ff2-3e0f-4a9a-8c3e-773c4c153ec3 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+17089adc-c635-4837-bea5-cb5f306f8ddd 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+c2197ddb-5fce-4bb2-ad4c-918463a09f72 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+fdfc6e39-d9d4-41e1-a042-ad6b9d72a95f 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+017a69cf-ba74-4934-aab7-26631533800f 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+52cc485f-4f5d-4a1e-9ef8-244a1b371119 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+f8d96fa9-0574-4848-8ee4-600dd1b92ee3 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+91ce0da1-7d4d-4429-aa8a-39006040c3fd 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+43a1c0da-615f-48d7-95d5-9a58df21ce49 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+68e2af8a-964a-4425-9eb7-583458b93ab4 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+5d7c8864-c128-4397-a732-3ea8c3673b4c 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+8f4144fa-4047-4385-9977-0185d978a4f6 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+08b20fb3-c07e-4c38-be27-8a4a44020961 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+5a3a269b-224d-473a-92a2-fc1ea51410a2 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+4415ee82-96f2-411f-8d72-e3f2726fc82a 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+ea96e98b-7049-4068-9cc9-f9eaef3efe6c 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+4b94c9e8-e97c-43fc-89b4-3676b5884d24 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+2675dcbd-fa4a-45bd-a45b-3cac3afe84b9 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+43b571be-1e8b-4582-8cb3-fd5ac2b2529f 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+3da97d0b-ce45-4b51-87aa-a2f53595e621 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+05435765-4809-405e-834a-03b3b034d0fc 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+78ee4266-ffd0-4d1a-9cc1-124220ac3e85 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+9dee6800-5158-4f30-b615-64fe60a46edb 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+94f3e37e-944c-45d8-b791-20c5a2621a0c 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+1c35e2ab-e6af-400c-a41d-1f89a6c74937 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+0b49e775-46b1-4b5a-be33-3362cf601a3b 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+ba35a019-2f53-48ed-84c1-beb00c1cc02c 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+b9e1c913-9840-4661-b04b-29705b51198b 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+1c1e4977-77bc-4c78-9c8f-75bcbd897dd0 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+d29c0b50-418c-4ae3-ba12-054c94d22bbf 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+7f56cddb-a231-4949-b2f1-b1c74496782e 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+921d2884-b535-40a3-87c5-01ac7f9ebeaa 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+31a1ee0d-d544-4c9c-9b43-bd3f8d60473e 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+e0db72da-a60f-449e-871d-7ad93e691bc5 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+41f31459-ccf0-4f25-8c57-e5782ddcef07 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+c30f573a-b969-4c6b-a7a1-b3fa4f7b5351 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+34712b76-ccbe-462d-bde4-ef063e0f67ac 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+5a5b2027-d89f-4fb0-88d6-e280ca318bd9 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+6c1af1d2-6cd9-46e7-b295-1cb9f6d0fd05 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+a792e8d5-0ca4-4014-a20c-b60f8aa3e733 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+8ff53b86-7e86-44c5-a34e-22affd52f3bc 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+e7c73ab3-80d1-4409-bb8b-a65ea168583d 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+9aed58f9-256b-4864-854d-15a533636d5e 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+6139dcc0-d7ce-43c1-b6ab-b589a00b2c8f 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+20e43949-18e8-4ddc-891b-8efa995432e3 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+c3b74060-5f79-4265-b87e-5f508d17d029 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+d5e16fdf-73da-4e80-9115-1c0ee76a222a 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+3e94b96e-1d49-4e6b-816a-0ef0fa7d889c 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+0d511d3d-3b66-43de-b179-18e9aa4479a1 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+845522e5-8493-40c2-b765-701359ee7c6f 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+fdaa1252-1c6a-46b1-816d-942a44881318 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+f455897c-3450-4e3a-9950-d6773e27a283 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+d413ddb9-342e-4575-9a08-04f00af9d8fa 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+0311017b-3e8e-4f79-9433-6a182a087ce1 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+0e39be7f-997c-4324-ba49-d9cf2198118d 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+2f4b5c08-e308-48e3-a219-9c6d4fef4709 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+0abe9fdb-3b70-4c75-9788-afaea75e372f 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+fd4b95cd-b622-4058-b9d7-493f0d5676ed 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+4d0e6102-840f-4a79-b17b-522883b0a6c7 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+7655f0ff-81a5-48e8-8cd2-449d0ea3a19d 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+f50f79c3-578a-458b-9575-c3b37b7b4af7 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+f1ecc329-2b97-41d3-b570-817c31db3e4b 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+2dc38699-730d-490b-af6b-c135940c00db 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+87ef0a97-1147-4ff3-a38e-9de453063b4a 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+c3d20390-8472-49a9-b9b8-c8e761da29d4 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+50905fac-8aba-4ae9-ab1b-9944a4074f84 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+d93cce45-4ee2-429f-b06f-04f43f0b40d5 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+48e41baf-c0d2-4993-a59b-9377535138bc 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+3e3ff544-a921-4b89-98bf-3685f957ab04 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+c79a3af8-f53c-4c21-93f7-2f215a885cbd 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+3b6168e2-bc41-4fbe-86fb-b71706a8c644 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+cac8ea8e-b305-411c-9642-b55fd893aed0 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+66994219-84e2-4893-a128-f79b8065cae3 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+abc96a9c-ae92-4829-85fd-82f796fc05fa 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+8301736f-f38a-42f2-814a-b76df4eb7924 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+f3ba45d5-4c43-438a-b29e-176321f11f44 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+0e8cf8d4-7734-4c16-bd04-ba0d3119e73a 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+17bf4255-a083-46e5-8e04-8c7708656ac1 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+ce5251b8-ba82-4695-a271-f106ff3b4221 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+91f9b444-7b86-48a3-b659-f180d968f491 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+0a343868-9f94-404c-bbbf-5fb7128622c6 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+5fdf04e9-122a-4f91-b0c1-4fa50d915167 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+fed913eb-7e39-4fad-848c-7f3587659abd 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+afbd767e-a9a9-457d-9cec-0243ccca8b41 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+a949429b-c986-4977-bde1-c3a657c5ac59 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+bd2b0668-db3b-436d-b281-fec1daa72363 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+7bf562ff-c7de-41ac-a382-afdc8b6ae2dc 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+c7c2c32b-7af3-43b9-bc62-37f6e3fb8e79 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+ed4b053a-8827-4357-87c0-570bdd1ad8ed 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+2c8e74b6-e23a-4140-b748-d2e765baa5c3 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+09962a5e-d787-439e-bcfa-72ab0f1a320e 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+df4c21e0-bea9-4f1c-8ea6-796ad4ffe4fc 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+61c37ca9-ebf6-4cdf-8788-a453db32b2c7 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+c344d313-1dbe-4403-a6f1-3f609b448a93 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+3851f3b9-8cfc-483d-b04b-eb11c88feb47 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+8ad43635-6faa-4b7d-ad69-10d1a242c625 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+2b4af1cd-6490-4ead-88d5-1e420f26a57f 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+18703251-0001-40c2-9fe2-f0ac0a77ea5d 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+7c60691d-9a8b-41d1-89cd-70bd65ae10f6 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+68234c27-da0b-486c-bd1b-c0a68a8e3809 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+fd5da4fb-d57f-411a-8e8f-654787abf11c 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+61e1ef9e-8717-4de7-a374-6e688f8cb131 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+6dec2af6-c730-462a-ab5d-bfe81fe4d339 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+6ee8e643-01fd-4235-bab7-60cd76287f30 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+aee4c4fa-a07f-4679-9452-84b1fb759a47 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+bb292f82-8540-456a-9b93-e2ceff8512f8 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+2c69d946-64ec-4647-9224-941c78c97be8 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+54220210-5a33-469a-b734-846d606d41da 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+46806412-c423-44a2-86ea-1f7337a3d86f 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+3f2406b8-3330-4d23-adc8-1cf5348de1e5 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+e8fa2eb8-672b-42ec-a082-a68566cff43e 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+1a7844a1-7eff-468f-be45-7d9c12af6af6 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+f9d53875-15c4-43bb-bd95-44318ea04913 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+07745eb6-a3b1-470f-babe-f0864c7cf523 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+8ca3c7df-8c5d-4fed-89c3-4b4c1bd9c08e 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+e7701ba1-bfed-4f61-abeb-7a2a8f1b549d 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+e9c3048d-003f-4a6f-8121-1237d0f0a310 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+38ea4b91-bb3e-428f-b28d-c9eb03b7d37c 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+5b1e272b-9523-46be-a5b1-da484b9fa59a 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+a12ca705-bd0d-4289-8b17-cf4f77501fcc 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+41cec9b8-3080-4900-ab89-1a969c0f2cf0 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+ea1d2568-72ad-43ca-b508-05002f949250 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+295a9296-b512-46af-aa73-56bfa32fb51f 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+c139d1da-759c-489d-ad97-ef2baaf5d3fc 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+410030bd-4100-4348-b046-a9746bc35393 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+e83e1545-a952-421e-8f65-98a780fafa80 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+5e6c311e-c0c4-46eb-aa02-e86d25b894b8 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+c576d35e-a385-48ab-ab13-0ac3e3a4798a 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+3e501cee-1c88-4520-8a97-46f8caadac52 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+c8c389e2-5f6e-40a2-8d62-c931184c3cac 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+6d48582e-abbf-464e-95b0-82bdad062e7a 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+a0c4d1f5-e7d3-420d-9e56-ec1c08931f7b 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+75361717-225d-48a3-b1c7-66e4d72b8d9f 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+832b1059-7e9a-41bb-b97c-3a4c6d7c13fd 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+f8ee21a5-2fb8-4bce-9eff-9add8acac221 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+fea2f779-1d36-4930-81cd-32abbbf15f82 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+678ab842-3f34-4874-a4ac-1f6d4e0dba7c 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+6efe0956-47de-4f42-83a2-3337f14cf245 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+b5cd21fd-16fd-4508-b92b-9df05a35e2ba 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+2de1d92b-1c51-4759-81fb-fd95a75bda9c 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+c79712cc-fe92-4ca1-a403-6041e548c988 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+90152237-b46f-49b9-85ca-552133d9e539 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+05863140-4deb-41cf-aa0c-3192b87189f2 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+8243447c-e812-4b32-90a2-9aad7a1889be 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+309f9b34-7d27-4b83-98fb-f23aca67ddbc 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+c622fee5-1d4a-4d52-82dc-dbf4385caecc 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+ff447e07-bfbe-48a7-b532-7c39ce106468 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+a22010a2-3907-4685-9f55-d83224a29db0 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+c08f4e0a-468b-40d5-9f68-9f07e2e5b517 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+9830197c-67b0-4724-85b6-01a4cdcc475d 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+ac8dabce-6a70-4b5e-a5c3-d50d7b0d73c2 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+465e83db-d214-4232-8f7b-16418a54eacc 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+2515513d-4f35-4109-82e3-763881f1ea49 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+b6626843-150e-40c5-8e54-7e0a065d3848 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+280ef0ff-1edf-40e8-b160-cac08679e0a5 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+eaec88a5-d814-43de-beff-3ac0f3408fd3 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+796d0d26-d441-4293-9774-c010c459bd01 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+470e1731-fd1e-4427-92ad-30159a01a6e0 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+f57b2085-5841-4082-a650-462b9e791c80 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+3e68e17a-c3e6-442d-9b19-9eef35df9aef 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+d17d645f-71c9-445b-be4b-b921787869b5 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+e8aa6289-8287-4128-85e2-965889b3a8cb 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+7698a0d1-f781-4c1f-af22-9ade573a6745 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+79f01974-ba58-4bb0-a83b-8051a969ac9f 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+044782a2-f0dc-417a-ac27-25be0861b8d3 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+e033620b-7e8d-4d8f-9717-e0328f88e3a9 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+0b39e90d-250a-433b-9210-51d1bb5b8173 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+e55f97b3-3026-43ec-ae7b-f59e3808c35d 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+c22207fa-f13a-4a17-bbfe-8edf35e68159 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+da682061-e921-4de5-ba90-b08b39c8c4bc 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+32b65224-6ead-44fa-95dd-a3c4b9cf0c4d 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+9f754f90-efe5-455f-aa8f-6fb172aab7ab 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+689ca719-3916-47bb-b255-4b979ecba2b9 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+b21a1a54-34b1-4e2b-a7dd-074c51c72ef5 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+26f9155b-5565-4829-9bd8-f8e8f62ebd7d 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+e9cba5fc-5f94-4010-952d-6eff3f6a335b 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+bc4eee6a-52a4-495f-9bcf-c6e2c36d9c94 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+ea6f77c2-0e5a-43dc-872f-65339f57a4f4 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+28d9ecbc-31a2-4b63-9315-3ec80448b8d4 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+91619b32-7694-4f67-bcbe-993a93fb441d 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+2095f553-8006-4bef-b9fa-1609a27f5327 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+16d66101-621a-4ae5-8e96-ed3213dfecb4 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+4150264a-2197-44d0-b9b5-1dc859b37a69 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+4f9631a0-fbe3-4b9c-bcea-2300a9f05c97 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+4d8768ad-34ee-4687-9727-3b6d30d5a670 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+2f38921a-9251-49cf-af43-65bbfcf8974f 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+bcf225ab-e7fd-412d-80d4-efea72f82317 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+f1c1a73f-e981-44db-a812-80e0cbcad1d1 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+e61f779f-addc-4ca4-a528-86917705e8c7 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+86a98f35-9620-4475-ac25-cf7490533b2f 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+927967fb-edde-41aa-b28b-479bee943859 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+31e5e726-3b6a-4fa3-9398-7e12df8c1406 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+bde5ddde-b113-4694-8a1d-2ef74b71732d 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+6e03dee4-4428-4c5e-9c07-7164bc49c47f 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+c33e64b8-a297-48e6-a97b-98ac9639d824 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+e2451daf-76e4-404e-85b5-b16cb8ac9b93 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+0daa8621-2d45-4a37-9b9e-aa80b3a99acb 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+bf3eb379-7be2-4a66-8cce-4994439444e4 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+f3130735-28e4-44c9-a89e-e0bc9d6df6c7 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+fe9aa0ae-8d7b-4c19-b41c-aa862671f187 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+34cbe35f-3bab-4db4-8244-5d5163ae3382 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+9d022453-d8b4-432b-8d95-6556cb0ddc63 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+6b83ea06-977e-4000-93fc-117c1ab5614c 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+a34eaea5-9290-4634-b3a6-5e614fca9822 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+dff7e8dd-4745-46c6-827d-728ca3ce8efe 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+8cb2f2f9-20bc-4bd2-8837-10c0db238efa 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+a58bdc7f-5cf8-4bce-a939-c20071bc9bb7 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+4fce1ff8-dae1-44bf-95da-3e2b817f5791 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+955d705b-bcba-4902-a129-5fa8d2fb79cd 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+9efb672a-a870-4229-b771-61c714ec358d 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+d0d71fba-9ac1-4ea5-be3f-0dc96d1fe1a2 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+044ea0e4-eb08-4608-8eb3-08b0b1db7090 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+28153406-a6fd-43e4-9ae3-eeafb260b77d 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+04122f80-dea0-4c3c-9a8a-b9c992024f36 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+2a7a7777-8e62-416b-8b0a-e302bb1a710d 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+146d860f-629e-4637-8bbe-398d6b0e5f4e 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+a07a30ac-6dc7-4ac5-930c-f88e699f2e18 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+e3bed7af-76fb-4680-ab23-b78e48da8008 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+8c99a223-1776-4536-b84a-1055b500f3e6 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+7eea4847-ff50-44df-bc96-9cfb1bb03086 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+cb83e396-3e5f-4ed1-ab36-00e02dc826b6 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+d9dc1247-a2fd-4329-8ad8-f3c92f140b5f 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+b8610171-8d59-44b3-a3f4-9487d5a0bdfe 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+1f18c5d4-69e9-40a8-9ea3-51d86d3a2031 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+b5dfd6d7-f5af-4d9a-a5b4-07048665f273 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+66fe1533-cfa5-4ceb-9c5a-d6e34c7360c2 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+42ca2875-a58a-4b7b-a96f-d3c335843ddb 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+ab708be8-c90a-4e92-8208-11894512de18 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+6742d482-2318-41ee-acac-56b27925c0ad 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+48100d9e-229d-4448-bd0f-f3ff05256eeb 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+40069260-382f-4983-9af0-be70c6c1b742 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+95b5f3db-68be-4371-9c60-917fa85e9bb1 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+d822208e-91a1-4769-95f9-e27a50524a0b 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+18de852a-159e-4c31-a81c-39bf0295ee0f 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+7839c8fb-24fe-43b9-a019-eccf4f8cfd07 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+716e1a46-ca91-4472-bb58-424d14c08023 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+c239403b-15e2-44d5-aaf1-48b3f566ade9 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+6ad728af-9335-4dc2-88b2-3075828a2764 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+59cc6d55-daef-4999-80b0-4750eab50677 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+904788fe-e44f-401f-a28c-95546726c978 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+ae1b71d6-ae27-43eb-b685-ff31c555fb0e 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+2279fe3c-fc41-41ec-a1c1-36ceed435aae 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+806cec55-5a4b-4145-96aa-b25f63e2ce76 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+5dfba24b-564a-4546-a597-54b4a887fe62 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+e00a2d56-0e1a-41a0-98aa-8c4374b4ceed 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+d112b86a-7352-49e7-a7f8-11fa11e47d40 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+35c6e602-43e5-4880-92af-fe566fd0cc5f 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+2a061c94-0a4c-42b7-b7fa-4dbddaaade1c 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+e03d03a3-89a4-4ba0-b974-1a77a488e51b 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+d7a6bcc9-5339-4348-b6bd-aecc79c29f7a 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+8f5bb68a-04c4-4c70-af64-2f66413354c6 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+f7c08094-dde3-4f04-9953-38b8968a457f 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+1c2dc792-0c88-4262-a05b-d3b77776346b 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+e328fa72-62ca-425e-9c0d-908eba32c807 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+40569a12-35c8-4793-ad0b-ee15e6c1face 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+badad760-5078-4430-9c23-9da13a2eb103 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+b846ae8b-a286-4153-901a-9ef20084a162 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+08fcb223-38cd-449b-96b8-1c9d4020485c 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+efdc9628-899a-4e29-9d10-a67939ab8abf 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+6d0de23b-45c1-4492-8db0-32ff70aa1f45 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+f2976245-07ce-410b-aa41-3d6050bd8a1d 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+916b1ee4-7571-468b-8779-3070689c14d7 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+0f1445b4-4b54-4992-8d05-2e2884671ad1 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+746bd34f-6259-461e-bd09-8c2c8bf33ff0 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+bea99d50-d51e-48d2-8b88-07a4701c52fb 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+93d96d9a-e1cf-4c3a-9f11-1b7879df8ef6 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+7f0b29c5-facb-4a07-96b1-dcab102a59fc 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+437c2bd8-a813-497d-9361-2c0e5449cc96 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+db3ab2bb-090c-4936-8407-c9d911ccd086 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+9cd7ebac-1bcc-47be-bf72-5b0a02d4d183 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+7c6823a6-24c5-401d-832e-4dab2022c0ed 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+e38d3c06-cb3a-470f-a790-74eefe565229 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+27189b1a-9869-483d-bdde-167957bdd945 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+52b05cfa-4c0d-4a6c-bbd4-fbe4dd7d02ac 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+3895263f-142d-4620-af05-138ad89ba3e5 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+e2aa4d33-03dd-4623-b38d-e1b6d25ff332 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+73b75bf4-a288-416e-aad4-4f18810322fd 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+d3f7769c-e926-4534-aa68-668b070e1ef1 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+3b944015-dbb8-48d8-9d41-e23acb6e9b54 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+6104a818-dee2-4b7b-9da0-603cb9be93d2 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+b50c8faf-8d27-4da4-9266-7ef1cdb67eac 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+115f1c0f-bc3b-4f95-acb6-a1f8eb2cab21 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+433be293-1bb9-46ac-a98a-fdef324acc02 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+56ab895c-d5ee-42bc-b0eb-c18fbd57575e 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+1547c484-82ee-4f91-8f58-08c613e5721c 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+ed65124a-14ba-4288-8c2f-f4b447925c85 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+3716ca43-dd9b-4d47-aac3-1bc7c2790975 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+3ec80353-dd2c-4b5a-9e88-cbc9bab5e4c2 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+419ea33a-5d5a-4f62-96bf-c2327f364fc6 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+861caec2-f4c9-4c58-a6c7-fcb3bfd743d5 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+4749bab2-2b0b-40c8-908e-090250682b38 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+6638df51-328b-46de-87ca-061b660682bc 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+880dc5c4-3999-4756-9725-7e0e36a46f9c 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+77bfde98-0218-4f47-942a-7463945bac61 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+738083bc-fc15-4f66-9620-1f67fb1b8146 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+589e7aea-d422-43a8-a748-9704756ec095 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+a75423fd-1b0e-4f57-9e34-4fa66773135a 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+84ffa9a4-e6b0-4eb0-b6f5-f5018f3134ba 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+8a20391f-713c-4ce0-9971-1470443a6877 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+9509e6bd-21ca-427f-8736-316be217af28 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+0db9fb6a-de0f-4159-891e-d55fff6889c9 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+278073f5-9774-4ec1-a976-f1ac85d2efd2 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+3cf09d82-967f-4669-bec2-d3e390b8abc3 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+932e688c-c273-400d-886f-6ee0fe2c6430 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+81307693-ab71-4d64-a2bb-c258be4823ab 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+2fb333ca-f4f9-472b-863f-eda94d64e4cc 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+5f935881-8619-41f7-8636-4430a48ec898 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+3c56421a-70ef-4829-ab1e-d22213f42f21 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+12e7adbe-a3a2-4e93-8fc5-ad2ec7c5cb72 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+75bd04f2-7666-4470-9726-ba338d2e7462 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+65e93b91-3624-48cc-9954-fd99bb6d4663 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+0b49f602-0798-4e77-b2f3-67a19b8f28fe 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+f8eee1c0-b63a-4180-aafe-b0b454afca66 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+32b66402-93e3-46cf-bbf2-4eecd1a57cf8 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+f0272ec7-a411-45c2-8a82-587ead372243 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+00e4a1ce-2706-4255-9665-19e9f495b50a 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+c4194e3d-13c7-4df9-b4d4-9bf5e93f1cfb 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+0f56eb87-ca2b-4514-887e-376b9a5ca251 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+415a0385-6549-4cb4-832b-4381921d9193 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+d58c333d-bacd-4093-a608-32d759d7508f 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+087f68f8-b700-4a3e-b6a0-80745963e891 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+cf56888f-1716-4113-a9d1-013b95538ae3 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+d709a631-eda7-4fbf-b8d9-c66c6c1ac3e1 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+6b6d3c72-6137-43ad-895d-e57abd116618 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+88f6e2f5-cb67-4002-9bd5-866b01f72f94 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+dba647ca-bc81-42e5-aba2-35f99a79c18f 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+7e128b19-411f-4589-af31-000d0f964a9c 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+b0617a5d-ef19-44f4-ad10-127ee0d4e29e 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+6a7b28cc-820f-451d-bf70-ffc439e4bce5 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+b5ffb572-39ec-45db-a813-e7a6bf02584d 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+f8f8a410-ea53-4136-9cde-a9e424db112e 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+1c4ac819-7f1e-412d-81e5-42aa025fc6c5 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+6f1f5ae1-1be4-4f6a-9577-3dab6f9d87c5 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+cde0b744-26a6-4c50-9894-337aa4d9954f 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+80241df1-b5a3-4837-a4fa-0ef2663acc40 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+d25e609d-3de1-4049-bd2b-76d1433d34c6 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+cbd468a4-3f6c-48d0-b322-81637c94818d 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+fda704ea-ab32-4a4d-8b70-7b29fe62b9a8 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+2eb27a72-fdb3-43c9-8f2a-863e0eb1acbf 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+6cef6112-a853-45e1-9ab4-4d089658c330 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+334a020b-c864-4c25-a89b-8ce3ecf79831 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+41b6f199-64a6-4a5d-9d6e-b1effff6ce31 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+e8300740-65a0-44eb-aad6-fa38caf7f042 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+14adf270-bad2-48b7-aa4e-efed5d212708 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+ebea0037-73ed-4a64-b41f-c580ce97f2ca 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+2f60a272-0670-4585-a21c-486f4a0e1120 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+356f8aed-f4eb-4d00-8352-010771b675cd 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+746117da-55fe-4828-8c81-9095a930745b 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+257df363-b638-4254-ab28-8342692c9689 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+3b3ab336-d3c0-4dc5-9146-049a3b50ca3c 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+c6fb8919-c79d-4619-b9dd-3e40ef55f9f0 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+ec923cff-3cf1-4843-9cee-7eb4c053f9bf 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+ffe2f374-0da6-46fd-89fc-ba992a7c6570 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+ec8ca26c-a62c-4896-95d1-c8d38ac24732 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+c8884a9b-9f5f-472e-8651-fba6ef240c46 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+fbe6ff37-cc01-42d5-8f86-ae6497284b4d 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+3a71635b-a535-4c07-87f3-be9421ef7eeb 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+58db7b49-4a4a-473e-a985-a8cf727f8c36 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+a5b74fc0-066c-43ff-8644-6bfc101b937a 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+cfed6384-5b9e-4d68-ad29-589b42567a42 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+5c73bff8-9104-4db5-992e-9781b7e91b02 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+5b998d92-5daa-4f9d-b7fa-02064d57c086 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+919e57cc-031b-49ae-bfe5-3b3f7550fb91 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+fd23840e-181e-420e-b0d7-6f5d92898ddc 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+6d34abbb-0ffd-406d-824b-d0c2e231bdb7 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+68dae2c3-941c-4cb1-8f54-77bcbe3ed67c 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+6305a0ff-4bad-4d33-97d1-a0d354e54f53 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+5108a6c0-a385-41e6-b4dc-666045a1273f 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+17c582e9-2a96-42c4-878d-d3fc9df5920c 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+e714786a-e363-40d9-b324-8d58d796cf8a 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+3f7da48f-73d9-469f-831a-ee8d384245c5 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+f75722f1-4282-43f7-bab3-2d8f6e9ea969 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+8d66fd95-b32d-4673-8deb-b39e00a0d36a 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+2461ab79-a983-42bc-8b1e-42c61829f4c8 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+62e218bf-27fc-407a-8307-d719ec195f55 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+f99047b3-fca7-4807-af7b-6f49a5433f08 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+4b7c464e-3b45-407a-81cf-4f313c57f29f 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+6a387784-dd2e-445e-9229-b4acf8cf7e9a 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+ad3300f5-dd0b-45e1-b433-05cb72cc6e44 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+fb804863-0750-497f-9c3e-a7f2502ba682 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+fff78d41-1446-49bb-a6ac-f205dfc07a40 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+8ea81c63-287a-4577-980e-824b03dda491 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+7d225655-f02a-40ea-b1e0-ffad6573f798 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+192d7f50-ab7c-4e68-ab47-17691cde53c4 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+ddfadcc4-2e87-40a6-a929-734e3bbda7c1 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+a6b3674f-daea-4dbf-93e9-9ee03fc7e281 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+cd56f17d-4447-4562-ba7b-d8d188767f96 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+c8703688-35c9-4119-9ac1-5c66ff10b92c 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+c394f05b-223a-431f-a3c7-a8f0abee2918 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+5e917dd1-4b3e-4cd9-bbf1-09c2a0f67579 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+bb92d0c9-2e95-4225-bce9-2a9fccb96023 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+ee48180a-0993-4efa-8ec1-04ccb80317cb 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+121842fc-cdc8-436d-bde5-9863aa6ce099 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+865d6eff-9aea-4bcf-b66c-ff9f48aeb395 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+d71e02a7-8cd7-4872-96db-b29901d9b835 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+da9b96d0-865e-47ff-911d-ede30530ece5 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+f4c31c35-c8cb-44f8-bc59-7a21d65c32fa 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+9f830693-5ff8-4ac1-9f5c-2cda6d862a80 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+c25fda93-0654-42d4-874a-4c563240e032 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+665b7fab-0196-406a-b132-6aaa6ac02835 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+52289466-aafd-404a-9fb0-a2448be47a13 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+3733473a-115b-44c1-a2fa-7975264bc75e 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+2b5c92c8-9529-4278-bdec-ed5e35e1ddeb 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+486edc2f-8f72-4b27-8574-af0ccc14a873 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+34bd9a38-d0e9-4238-b5b2-e37ca46fda9c 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+263e555d-e252-4b64-a4ba-255e21717f1e 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+938be56c-27dd-42d2-8724-9548b7c95979 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+c1636c69-92a2-49e9-ac40-125078b642f0 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+6c654a8f-d835-4e38-959c-2d0155619f78 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+0b648ac1-8465-44df-aa50-25339ac354cd 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+40fde4ed-1403-4422-bfd8-6316c3a15107 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+444df60a-81b6-4034-9978-1187a1c0de45 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+804dc221-836f-46a5-91ef-0aa6bb0a4c90 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+6a776bd2-787d-4e19-a7e8-4a8304f97aa0 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+860408e4-92ef-4571-b53c-523857a5d9a1 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+04f4ca34-d126-41d5-a3f2-08f550eaf4d1 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+9547180d-b4f7-492b-b261-698b0ff34fc0 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+e7631de5-4e1c-4c36-8cd6-d8fe9e466649 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+17e96d55-800f-42a5-8fc1-f3f22b28ec40 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+1cbb4166-a835-471b-8556-36745043947d 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+d805ad45-899a-498e-bc5d-f102509c0841 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+6183e548-84f5-4647-9721-147177dff3d1 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+5ac11363-1c79-4ef9-a2a3-ec34ef728b02 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+8a07cacc-d349-4ca5-ac99-ca9458337891 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+31d550af-0b44-4380-8aaf-5bbd00413333 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+a8aa4411-cb0f-4ca2-a168-66c233f52592 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+1525e86c-112e-4fc0-b466-b3066dd5eda0 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+52274f84-18a9-4bcf-a5b4-5132be43f9ee 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+6ae103c2-1218-480b-bdfd-46f08e762193 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+0b0c6ad9-7fd2-44ac-b4aa-b716e34b4140 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+64580341-b6cb-4a54-a448-1dfaa4005c21 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+8199f75e-3026-461a-93aa-4b907548e2a3 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+872f9346-3dfc-4669-bafb-a141f4674ac1 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+11ef3455-20b8-453d-a7f6-e5d543ed1b73 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+bafa9213-5799-4c44-ac46-5b817922fc45 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+a44a3a34-957f-4d01-9ad0-f1735bafd4f3 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+ac64f4db-4c2a-4c63-bc57-18db8ad169ed 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+bef000d6-4223-483c-9165-f2a0e9e6415f 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+80b041d7-f4ec-42d6-b935-a8d98abcc2ed 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+814d2d6c-df00-4978-945e-022d78591fb6 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+76457b95-670c-4de0-968e-60e7dac6692d 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+ce302931-e6a5-4c35-8988-47863261826a 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+d097ce70-7ef7-4fc9-889e-b4a8245a3e7f 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+a041b85c-5a79-4f0f-941d-583012dc0118 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+f69641e2-7acc-4a97-abfa-dfd28db627dd 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+c0ebbece-3896-42fa-a3c0-9b73783b0c61 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+a6371449-1f0e-4344-904c-24e3ea68509b 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+c5876714-92ce-4272-a26f-e787cd12ff62 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+78667018-7682-490e-9ef8-cc8014322148 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+1fe57ad8-3de8-4852-8552-34ea6ba74004 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+96a7b073-669a-44fa-9c99-14f8ddfff180 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+c6109523-7d9d-4393-b0fb-624ada24e3a4 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+9c3f7515-3447-4245-9871-2200cbeff3d9 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+657a0975-7dc3-4a63-986b-e3fe52044cc3 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+0fb2476e-2114-4856-83f9-5bb13afa4233 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+bbadf216-384e-481e-8f8b-059c548aec03 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+c6ba442d-f33d-40cb-a3cf-8b4fe4cbbb2c 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+c8fce559-f80c-4d0d-af2d-fb943fb1bfcd 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+db8a15d1-a3a8-41b3-8e0a-8d2ededb5186 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+f8f809f7-34ca-411e-a42c-6cf438a97d2a 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+416fb893-db5f-4d73-96a5-d834a8d0a512 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+93367a5d-6eed-4ddd-91cf-6409d457fa55 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+239a7a75-a7c4-48b4-a829-0704badacfc9 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+437c77f7-0896-433e-9d2e-e41a595fe0a1 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+28ffa171-211f-4e21-a2f8-b0526699ba4a 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+0e40202a-1ab1-4893-9993-eacb9e76d927 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+5906d095-8f1a-4a52-a6cd-5916059c4ca9 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+da90484b-ea21-4ff2-9840-b8bbb3434640 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+7929eaea-babc-495b-a072-8ee0080431cc 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+62ca1611-bfcd-4727-89c3-c0f761a8f1d4 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+dff5e210-a84d-4601-8cc0-8f505b5edc19 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+57204570-0b5d-4d0b-ad03-598b2edfdcbf 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+fd19fb0d-2b41-4394-a788-53b4bad4cda9 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+ed3a9a54-b65d-4802-91b4-1d1cf6eb9d20 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+71198c40-88e9-4c19-90c3-288bd1dfe223 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+e0de43e8-4d71-4dcc-8532-92078a9be668 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+739fcb3a-2959-4a7e-96ac-fda38ba60cb3 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+1b98b793-8631-405b-8430-914fde5e957b 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+e67a25d8-c03a-4234-8bb4-abeb0329de4c 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+56352daa-0458-472c-a5db-c631f51da490 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+16a79273-408a-4d55-a6d7-964d4ddb3aa5 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+87285e05-5ec0-4cfc-9861-ba7c0dbe6b5a 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+e369b67e-0a32-4a77-b0c4-0c5b0f9cdd4f 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+1dc524c6-a6ea-4774-a9e5-23fa04e3213b 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+f2f2f152-5102-44fd-8c2d-c05c263d0c5e 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+ea16d3dd-8681-45cf-b447-a4771320c955 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+090c097d-d287-402e-b34e-35c7b228db10 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+194fb4b4-1c38-47b3-8b40-4f3e15844be7 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+9119a589-6adb-4881-8998-1e85e93d820b 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+27ba756c-c568-4b38-a079-e9a4ffece648 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+00eac5a4-9108-4513-9216-11fcf1ba121f 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+830cb710-2d54-4a07-8e6c-e87d6fc8cbe3 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+e2ac79e5-a675-43ec-9246-c5b1b5e3e176 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+04413485-b97e-4725-b856-5e0e7a8925bc 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+cbb60f6b-ecdb-45b1-b053-794ef3ca2fe3 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+ca07cacf-552c-44eb-a732-a7aa1fa8d18b 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+47d0b4da-b659-4369-9580-41e54041c926 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+899e4f8c-4767-4cc4-814c-73cc18d9afdb 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+5faa148c-3af2-46bc-9867-8b66f193d078 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+a3335149-af71-4e4c-aadf-26d7c9ebcdf7 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+6d8dd7bf-62d3-47c4-8a0f-76217c24eb90 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+bc0c98c1-7514-4832-bea2-b7c9bb7f6f03 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+bcb77cf2-6c02-4c4f-864c-58a80d2c0fb1 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+d3215740-6249-4b0c-b1bf-a8010c832f09 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+07f908b3-2778-4bf4-92fc-5755b501d862 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+808b10b7-d996-4319-b83e-e1c2a01bb4a4 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+c58a447b-61b9-4d59-80ca-df1b2a4ae022 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+f2fad357-72b6-4a93-ae0d-cd455de9e942 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+cf0a9c35-843a-4828-bea1-2fd1fac2fa74 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+1a70cc5c-9753-4a2b-8553-f6e39f8c319e 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+653faf1d-2866-450a-ad60-edd114ad056b 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+c24c5d2f-75c4-411c-bdb6-26f7e12df2bc 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+1ebace1c-e86c-4152-a796-2853d330f2f3 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+91d2a3ab-0c6f-45bd-a105-745030eec458 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+7984b6bf-29bd-466d-9f70-a6a2f7087778 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+8a172ab6-f569-4b95-9a7d-65a186a6ce4a 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+d3cba2fe-a0ab-4554-ae15-4b22025c2db3 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+f92beeb8-933a-4618-872c-5acac488c8e9 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+b97e8014-f39a-4b5c-bf36-9406ac260fa3 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+fa13de7d-7539-44b7-8f09-1de4540d7f80 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+8bcafca9-5d1c-4bf7-a031-abbc3d45fb77 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+25ff672d-5800-40c8-8635-386d292a7bdb 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+6b81b2c8-5fa2-46c6-86b4-1700fcb02818 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+c27e3182-ba42-4057-8baf-fbf206e5640e 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+ccd1c3b2-03c5-49f4-b390-234ac754a9f1 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+444df02f-f1f5-42fc-b4ef-f0efdfe77c4b 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+403bb782-f200-4d04-a6f8-cbce0b993653 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+f1db21f2-5998-43f8-bc55-567ba2b57616 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+44061d96-f2c2-463e-95f0-54ef9fc17b4c 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+94621168-c71f-4bd3-9b0f-30f67e6203eb 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+e61cac69-87d8-491a-86b5-ac08c10d1e18 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+45c5de89-6eed-4d85-a7bd-458ecd02df4f 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+8e8bebb2-afe9-4aca-870a-951a57a735ff 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+601365d5-3c51-4f79-a520-2a904f3187fb 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+3b437216-efe2-44f8-9df0-cc2158f2b9b8 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+1ff33e17-6d8d-4eeb-890d-8d35fbeae6f6 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+55a3cba0-d09b-4fa8-9e14-26064a3ba88c 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+55ccc858-4481-4a54-84b2-9ca0085df59e 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+ca5cdc97-7019-4ace-922f-d55ddd04e3aa 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+2ad994c9-dc67-48af-a489-98f75989b7c4 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+ebd13a07-3e70-4c00-ad32-f14e32c7a092 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+a3a184b4-1b60-4af0-aada-91d0cca2e8f0 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+6f498997-fa41-4827-b56e-3835a34444a1 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+61a55508-6272-41fa-853a-9b2ad3d4ad7c 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+c24a4dde-5b03-4a56-8398-101aaf76a5da 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+e8dae4db-219a-4fe4-b751-421ed57f73ed 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+1bd04a6b-5c01-4910-8b76-e78af06f4df5 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+16b424ba-228f-4244-9cfb-61fcd0b18bdb 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+1eeb952d-4e0e-4037-9d59-55191925150a 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+21363e20-3058-4b12-8046-834adc210715 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+4cc91541-c05e-407c-a1ca-1321e1ec07b4 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+1c66e34b-f4b6-426b-9012-1890e362ec84 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+bb329e22-520b-472c-99b2-1d6e9a9ec448 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+efbd8b50-c9c2-417b-8776-9ae592c811a7 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+00240f1f-c540-4537-9a65-39b5e65b0ba6 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+28e2393b-099d-4928-8ed2-95ade8f06eac 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+6252bea0-66a5-4704-8b45-143b582bed82 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+01280360-49ae-4b0d-83cf-7f868133a01a 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+0f6d8e50-565b-4824-b9f9-7450db0d1e3e 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+810fdc5a-1807-42de-a7be-6ec4e3992ddf 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+4f6b638d-5a23-426b-b0a2-d398d7499a88 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+4779492c-074f-4498-9b70-0519a5bb0bc7 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+3346de9f-d03f-4476-9628-b6858d52d9dc 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+830fd1e3-a797-4ffa-91f7-e5e9206bf67a 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+9c8b4028-9014-4998-9d29-7b43ff9a94d8 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+1fdf5024-3233-42b8-b12d-5ddd6ae460d3 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+a3dfed22-2197-4c62-9e77-d95fa08e1623 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+71bc8c40-c256-4fb6-ab1a-8d97fff5265d 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+55276e14-d2a7-41d0-a2d1-81b58d11cdc1 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+e84f3e8f-1b36-4dc4-83c1-209b6eae3476 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+1212618c-3a00-4742-9523-fd4d69a41379 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+404420ba-8897-46dd-bfe8-8cd9cfdfbd88 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+cf9a89a4-9de6-481b-878d-19cf7c77cd1e 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+4a4575a6-8298-4ed9-a147-0e254d4fc768 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+3e8fb8a3-f0e6-47b9-bd20-b879816e61b1 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+c7ca8718-0777-45ba-89d3-bd9ae12ee1ea 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+7f589049-2638-4881-94b5-942482340797 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+4cde77ee-9def-48af-8744-c9fe482fc57b 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+cb479208-ddcf-44de-9864-234e087d9023 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+de7d5a3c-3a9d-4449-bb00-4c651b2d1b00 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+5344e9fb-9242-451b-a395-66a8a676d78b 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+d27a4f87-86a1-48aa-ad0c-5bc74f7fbe38 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+9e20d8e2-a773-4141-a80d-fd3073b109de 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+162ae20d-d35d-45f5-889f-393a3006396a 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+2b317a98-ec53-414b-b78a-bfcd0e6861bb 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+eb0ea313-0669-4281-b905-aca806c17c70 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+354c07bd-819d-4179-b32e-5d4074a8c4cd 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+e5cdf55d-a947-40c6-8b80-11ade0a3ced3 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+ee397373-683a-428d-b0a0-9710d5ef1c31 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+fd79cf6f-87ee-4f75-8024-55617aaaeecd 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+a59dc0ec-7811-4c56-af2a-83236b9de815 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+1104c087-bd6d-450c-9969-afb3af038201 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+5014f9cf-f40c-4328-807c-90dab3422c88 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+f0c56a28-54de-4af4-aaa4-086cfa67d618 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+544e0212-99e9-498d-9ca4-40f88a94b7ba 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+7d7da0dd-e10b-43df-8763-c3ed73e0a882 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+0e15d0f6-3c70-4ec2-8054-c9c36c5f0c0c 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+14c12e22-df76-4271-ba98-80a75ae43adc 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+ca8f1f87-65a3-40bf-9a63-071f050b2faf 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+096071cf-9d3f-4547-bdf0-fe42ff4149e5 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+7988ac4a-d3aa-48bf-a0cb-1640a57ef192 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+610d68d3-d728-4785-8129-b4322af616fc 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+8f8311be-466d-4ce3-aa97-ff9bc9819917 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+10920cbb-4dcf-47a6-b659-62dc31136f3c 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+a0241837-d955-45fe-9d8a-9ec3de1ac2f8 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+70cb2085-08b2-4f33-89e1-6a8b2eb05a3e 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+0064f3f5-1a70-4c75-ac1c-0be303033b34 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+f8190980-bbcf-47bc-9a95-c181cb77b39a 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+e6737c1b-4b81-418c-b0c7-98a9689016d9 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+fe958b7f-5d57-4f5a-8979-2c445cf890cd 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+24a81fb4-0d64-4e59-b2ec-0dbd7f327a5b 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+a81592f8-b30b-4892-bbd6-7da1283a38d5 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+a5f130a2-652b-4bc8-954c-2566f3bdc4e2 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+64c95c14-4517-49ed-9b27-584dabe12ede 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+b2f9ccb0-7d8f-461a-bcc4-da49bd95f238 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+96db447a-dc1c-42af-905d-31cc42924134 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+3f262d9c-45ef-4df7-8303-1aeb1e0385a2 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+6462d762-bcbd-4996-900b-c4d1568f750f 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+31a1131c-e5d7-4663-a902-710b8a4d2b2c 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+f0dcb52e-c4e4-4635-9409-df7e1973eac8 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+d37bf3f7-0bfe-4d7d-b0e7-5902c2fc7d14 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+be35e148-f8bd-46e7-b0dd-22f43dc3c3a0 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+2585c6f9-e6f4-4c19-84ee-b3d098946932 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+131476da-ec45-436d-b894-be295aef0466 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+304655e0-134c-45de-99e5-f95aa66f25b5 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+2264a424-18fe-4516-81c4-62e0cc728df3 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+fb8ef1f2-6561-41e6-a9d3-18e790bb2228 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+db68a8b0-3e9c-4f71-9661-d1f26cc0e953 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+de30bd5b-b2dd-459a-b08e-22114b110edf 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+fec7f349-da14-4ea3-b076-4ffa08b3b0dd 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+63c77f96-4eff-4917-b250-900d708e9803 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+afbd2863-789d-4532-be54-7d0cadeac800 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+25d2422c-1504-43ec-8f1b-a9c71d17f2eb 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+c45badeb-72f6-448c-9a17-a532e01addf7 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+4fa3b9d4-af6d-4d10-82a9-6cea418ddc92 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+ced7cf0d-46c4-4442-b592-d0016d51b49e 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+cdf843c6-2d99-4a4a-82af-09436f62663b 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+87ec9559-433c-4173-98fa-7d23c8e3f35f 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+7b9c17ad-dc0b-4886-930e-5922400faee1 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+f8b3eb06-38ab-44be-93db-777b00a011e9 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+5064810b-4880-4410-b9a3-793e52c495d3 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+1be808ea-8b0a-4b5f-ad24-65710031280b 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+76cb4a46-3aa8-4e3d-8e94-0b31fbac00fe 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+95abaf39-0b53-4652-b042-db34211b8b63 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+a2b4ac1a-c398-493c-9b28-20a4fd749c80 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+702746ce-be6c-4d91-9543-c279c12268f7 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+f788d50c-76b1-4c2a-aa4c-febd3f9e1dae 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+7795f4fe-b1ca-4a07-b49e-287d84ee225f 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+eb7268d8-48b9-4869-976b-0c826e83160c 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+2544bc23-90da-47e9-8576-3fe30581b710 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+a253babe-6582-44c3-ae9b-5f9a58d7db43 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+6e0ea3e8-d5d7-4c3d-8742-4d2b9fa2c79e 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+adbf667e-60fa-4ea1-9f11-0fd2dc88b5e6 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+499614ea-6a25-41ab-a747-68bb3a7e661d 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+092e41b4-288d-48b4-b23a-95baed429acf 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+f83bd2a2-a169-471a-a188-59b20c9b1539 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+1cfcc817-22d1-483c-8982-52cb981cddda 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+09139aaf-1cfe-48cc-b88f-855418a44f11 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+28cf4586-f32c-4bad-9bf7-c32f5af8c572 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+4d4ecc32-b61e-43d2-90ad-1b3844786776 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+0a82ada9-c6b0-4c81-b1e4-69f16b023cb3 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+68350ff3-c8f3-485c-a636-e549ff5bef9d 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+85109aff-b4d5-42e5-8f76-8559ee694ec0 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+be3f8813-10cd-4842-9dd1-5cebed29f9c0 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+c1038474-e11c-43fe-b2ce-a1bb81b49ef3 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+096098a0-bfb0-4900-8571-4f4d14cc9c3b 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+cf780282-b8b1-448a-92ab-92f1c0427f9e 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+0543ae6b-f3ee-4b43-80ee-0b07f64b5cb0 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+d77a5914-a8dc-481e-9997-106079cf7675 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+3078a926-39ba-4ec3-b960-732940ef06c8 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+27db358a-faf7-4d68-a8db-39537dd27deb 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+2ef05913-608c-4510-897f-02bce8281479 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+3e5ee96c-3d6d-4f98-add2-2a3184e75d13 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+cd6deec6-a101-490c-bc4a-67bc9dc7cb8d 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+eaa5864d-2ea5-48f6-a21b-da71368b6d01 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+3927139c-c207-40ba-83a6-c98c772d64c3 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+58a9b762-246b-4164-85c2-c508095de955 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+625e375e-aab1-45bf-bcdf-44bfae20c1f1 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+85dca2b7-0c35-4aeb-9598-42a673517b99 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+93bc8945-7bbc-4d2c-8417-651c60218e20 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+86572b73-7c32-4a35-bb31-5806fc1f0aeb 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+e22b711f-021e-4436-aec6-d815473d4ef8 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+675eea2c-0929-4dac-b69b-e34cc41a1882 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+cca7804d-3878-47fd-bb62-9dffe82f4af5 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+409ba256-e46b-49ef-9c57-ec51ce898f20 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+ad9cf7aa-af8e-4c2d-9511-95cf849ed817 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+d047206d-300b-4538-97ff-1f1408482800 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+f4c0571a-1893-4e32-be7b-91541eaf79ba 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+fa8199da-d6f2-480b-be7c-38d590d103a5 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+7d2f511c-31f8-447a-a36b-0e5d33e3c115 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+8ee790bc-05d6-4224-83be-c755e80d0089 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+f070cd90-3f9b-47ac-a868-1ad1fa5cd339 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+fd091bd5-5749-45ee-8780-6f73123e925f 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+316e838a-6532-43c0-951f-702f7192f245 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+463634f8-6753-4e52-a762-44e12802c605 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+fb9d60bc-1133-486b-8498-c526c16bac10 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+8010c03f-7ec8-4926-b517-c501024361d1 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+55944a0d-a198-48f2-8856-a5de3d9463f4 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+7572d9e5-279a-4598-958a-cdea88797c6b 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+0fdbab97-202e-48c7-ab11-5acc974421f4 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+5a8b84b1-524f-4ecf-8aa1-6a2c5943bbae 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+67ea0a1d-fcb6-47d3-aeb4-cf170c48c2aa 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+ef7913d6-6733-4b5b-b806-31e6fee0f2b8 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+f9c5ecc3-da1f-447c-b232-52cede50724e 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+3f471104-71db-4779-ae5b-16331e2ae7fc 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+925dd058-b85d-4a85-a427-0f66ea84a6da 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+262e9bac-3205-4924-95d9-d41cdd0934b6 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+2775e841-efcd-478d-adbf-ceab01f65949 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+c600ef66-1022-47fe-a00d-2e296d087d2f 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+1aa53e34-4537-4d33-94f2-4cab381202ef 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+0ab9a845-191c-4bda-a186-92350e8b8338 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+6eb8e3aa-1a1e-41a2-adf1-505310a34249 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+6610aa59-96c0-47f9-a176-6d6ca6436ae2 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+e2c655dc-6cbb-42db-83e8-54837318e033 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+dc7a6ef9-4a63-4f5b-a913-94c606b8e588 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+6fd3a99c-a058-462d-b9d8-18135c660cd6 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+ff5d6588-a848-478d-9673-ef67bc091b1f 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+48a081ae-051b-4e54-ad83-9160ca3ae660 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+1a3d4905-f767-45e1-8bf6-0a7f9fa05789 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+e8d0e5eb-cff0-428f-930d-a189b1678d84 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+aab69356-ebb5-4205-9e00-bd61283097f5 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+b320a364-cd90-4462-95f8-b55d2635661f 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+6e491dc8-c4a1-4530-bec3-8a3c01ab4a99 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+0baa34ea-b0cc-4b47-9386-7b57692929e1 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+4c3cae5c-4ae3-4c6d-9ab8-039adf52c0d5 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+09a99c42-b1e8-4220-b8f5-30b4a2b374b6 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+6b392964-fc34-4409-ad96-55b6f5a97083 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+7f0756d4-9cd6-4a34-83ee-91e750aa5cab 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+dc68ea7c-0362-4f5b-99f1-96087c79dbfe 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+8bb2a352-ae61-455e-9398-6ef96f5802c2 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+553f3ffc-2f52-4397-8569-d43f0e48d87d 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+b1c22bc3-9e80-472d-a704-b84805144b4c 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+54b009fb-7ed8-41d7-a1d1-0aad5b7851e1 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+d06f6750-299b-4eb1-85c4-32946c54ae78 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+a9932b36-0fc1-4e41-8f72-9dbaf759a24b 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+a7f733d6-75cf-4603-8917-04932157245b 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+481c1c96-3f1f-493e-be86-e01dca40e42b 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+483268d2-91bb-496f-91df-2024c7079f3d 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+26a31ba7-9d7d-4c39-823e-bf54d4a5674c 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+2f2b64b4-bcae-42d3-909b-513dae87ac07 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+77a13fbf-49ac-4f81-acc2-7730b1858cae 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+9f1e6ea8-5de2-49d2-8efe-51e39d216028 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+c7eff0e7-a0e4-4ca5-a191-bf1a0a11f492 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+d9a826eb-66c6-48fc-80c8-0cb6a5c6f795 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+53a0f229-4738-4cea-b0e2-bfd53e2502e0 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+78ff108b-f099-4551-baf6-adc91fec9344 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+d56ee3f2-0a88-4656-b4b7-3b9e6a21c07c 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+caa841dd-c319-4b1a-8cfd-d3a12f1541ec 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+8c992934-093e-460d-a719-f1799df9a06f 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+7af80e15-7477-467a-bc0e-f7d2dad775d8 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+77c48fa6-a44d-4c68-8552-6097e8b35961 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+8c464222-ce55-46b9-8c83-484e3fd0016b 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+449fd59c-1558-4be8-8005-da4b2ca6ca29 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+cb617dba-20d6-41a4-8d15-6ab0581535ce 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+3588ee6d-ec36-482e-9816-33c6d1b536c6 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+e949c402-75cc-47b2-8615-86a9a939f605 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+9586dec2-88ab-44b5-9dff-011d09649465 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+39a37ba5-1fd2-47f9-b7c8-dfc6b21c1156 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+ec55542a-0c7c-4c1a-9d51-1dfa1017cb17 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+b401ad23-4b67-4c8d-b3a2-5e6b030460ef 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+cf9db1c5-a617-4dfe-96c4-b9e3a1517d6c 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+ad68e932-92a0-4deb-8831-6544a8f1cf93 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+978fc2e2-57ef-46fb-8b0f-743621e1bcf7 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+9f13d438-dfcc-4846-b94a-e829106e50fb 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+89f88555-ad26-4fc1-b448-dfe7185f72b1 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+4eb52567-6477-4da3-994d-fb47cc6422be 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+101e6cf4-63c5-44d4-9628-0722660d21e7 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+93917b15-24d2-4e9f-9a40-e95c4dd1d788 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+97f614fb-1524-4fcc-b784-e63e4dea8d5b 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+dfcaa403-572e-4b9c-9948-26ada217f0db 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+a1494d5f-05d6-43c4-984e-cb95ae0fcab3 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+ac742663-3ac5-461a-82ce-db4957787c4b 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+fc481502-26cb-48b3-9318-0b6b78b1ed52 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+c583a744-a2c5-46cc-bad7-71f679a46637 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+227c96d5-ceb3-449a-bc05-b9de627cc635 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+2e8b7064-1788-4f8d-8d3e-35b093ef3fed 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+71f7abcf-fcc2-4eca-9a25-d844060a6901 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+07657bea-57d7-4cf6-b81e-60e827d913ce 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+d324fbed-9efc-4832-ad1e-dba7f731b450 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+36fbda23-f52a-4bf7-a2ec-f6ccd09bfd6e 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+91bb562e-d223-46e1-afd7-cf91fe9bb005 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+87386ee4-b57f-4eb5-91a1-dc571d7b53e0 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+170e62a4-d9a2-4fc3-bc4b-196c4555d621 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+9f0592ad-0a67-4c90-be41-6417ef8d2060 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+79ed9b44-3a52-4cef-97a7-47415463e88a 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+012963e3-5937-453f-8392-28ba90b04614 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+5eb030c2-e28a-4490-93f2-7f7a4e5f7800 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+7ef6ff6f-175a-419f-8e31-9af56c9f7a00 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+cae78184-a7cc-41e4-956a-ae72fe15274d 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+2acf60fa-25e0-4b9f-b942-62491331e2c0 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+4eb8d920-ad77-4923-b7d6-d286a2fc6a19 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+64a7f24f-5c2a-4f14-9fca-2c9b108a7eec 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+0e527fdb-f71d-4912-ad3c-82163a705717 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+0b156614-734d-4a22-9443-13f9695cf434 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+b099779b-58ab-4c92-aa0d-d996a41a13d6 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+b7c3561f-08a2-4e65-8c2b-9b4547c1a3e0 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+c94eb002-82a5-4c2d-b77f-b65ff0d00c58 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+af7e1f12-a1fb-4f4e-ad78-3e20a0e1ecfe 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+bc3db0f1-8508-433e-ae72-e9b9a82ad47a 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+13d06d1f-56ab-4c45-bba2-64fd6caeb2a5 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+329f440f-6083-4d6f-8984-a07409fb933a 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+1c5ee01d-e83b-41e9-85d8-d52bd5c1834c 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+0bc9534b-eae7-4a26-9fff-3ec6fcb6cc72 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+d6e92b07-6325-4efc-ab30-9db0bdcc0593 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+63710aeb-d5c1-4187-9232-732c7b70e8a1 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+2de2f890-f975-4106-b4d0-ecc06ae7754e 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+a542c3bc-8ff3-4928-a9ae-20a51082793b 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+04971354-b8ae-48fd-89f8-6b7bc7e1f4f3 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+0498be59-3801-47ad-a1c0-a0f1463c421f 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+5618c038-8242-448d-8c39-58eac5bc99dc 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+78efe56c-71bd-4467-8e53-3f2088ec282e 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+4f007608-3a1c-4613-9bfb-b238665e0407 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+5ff9f67d-80a2-42bf-9c84-7f60ba18615e 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+41dfdeef-954d-4291-b561-5e06b936bdbf 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+5de4fc19-66e7-4cf2-b59f-1b33a7064cf8 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+01f67cbc-e15a-426d-9c36-4532456fd208 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+d2ab916b-16a4-44f5-9876-8ee1a9e9a98c 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+31067885-9d66-4ffa-ad10-52ec343e6f16 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+cb64dffb-301c-448d-8517-a97bca49a2ad 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+f64c9954-a2cf-4c59-936d-2d6579017c56 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+e696bf62-b19b-4979-946b-abe63181846b 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+46df6f9e-edf4-48bd-9202-9dd51535dc73 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+3a941ac1-a0b1-4913-aba6-d67d28702841 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+6ff48c97-57e6-4368-91c0-5a8165bc70c2 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+743c9d88-57d9-4e73-bc77-92c1c543d447 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+fe6aeccd-8c3a-4257-9a5f-edcd00c58704 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+a71a8a2f-3ab9-476b-8b6e-0a532f3f589d 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+146c4c8f-fc26-4d7f-bdf4-e946d069a553 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+030ff299-7c0a-4188-807c-93a2d53fd225 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+5e1e22d3-47aa-46ef-b475-274910e0be98 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+1d55aad6-3753-49c5-a915-7659795ecff3 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+c372d144-4661-4aed-bd34-faddee824eb1 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+2a7ca032-0907-4466-b2fa-44a50dcb589a 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+a75c3773-06c2-434d-9ef4-f459e4e76f70 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+525dbc5c-044a-4638-b02f-106771ac32bc 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+ac4e8b3f-42ae-499f-a792-c7b3b0cadb79 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+6320c2a3-58a0-4bcc-a3bc-6238274340a3 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+4dd80f96-fb80-4876-a1e5-149eb40e4bfd 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+d6546788-4c06-4d8d-907e-85f1cccfa6a5 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+791d6164-9acd-4dfa-b242-778dbb8f1993 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+82c658cf-37a9-4f80-b78b-0968edeb156e 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+bc75e233-cba3-422d-a92f-5797ff69ad53 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+98ee3367-ab72-4110-8fb6-12b98bbd0fde 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+f9f551e1-aca4-4200-836b-67ea5635caab 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+c7a4917e-c63b-4c71-a8d6-b0e681183cf4 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+c3748543-3557-4c75-b359-ebca23e8bacb 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+7fb84023-ac84-4dc9-90e9-2256a1a5fcd6 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+918e60e6-4678-4951-a6ef-d447a9e315eb 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+9f692bbd-bdba-42c9-b92c-3177ab2f101d 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+c732c459-a331-4fb4-bdb6-b609efa27b39 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+d9cb0747-e41b-40a6-8976-afd728af2577 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+7b0d0437-b61a-44ec-a9e6-e3425d83c6f8 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+449be190-998d-40e5-a7c9-76d6e6ba3862 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+8ba6f5df-af84-4041-ad06-7295ef0448ed 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+f0f1fcbd-7469-478c-bac3-ba1da1da026d 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+66584ef2-93cf-469f-90a1-80dbb7b91378 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+c4720b10-514b-4366-be3e-3d2b31e61290 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+19536652-1abf-400a-b361-702dc33a9637 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+c580de30-806f-441e-80e0-e3a367d014de 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+acce7647-373c-485c-863b-896a27878bbf 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+48e12699-037c-4c9f-9745-6ed67640ab27 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+570c6b16-f4c8-499f-808c-cb0451c48cda 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+17607945-e571-411f-9dfe-09a4811f3ac4 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+7e2838c8-610e-4ebc-b6ce-b6b49dbde446 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+12f30376-58f8-425c-a545-8dec00f01b94 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+5e92b211-ebc5-4b5c-a275-2fd2bce15b3b 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+11790867-8e35-4660-8503-83757bafb3f7 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+2e923385-27eb-4fa8-87ad-bf24e8e9d08c 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+cb51b843-2110-430a-abd6-9ca395c625b4 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+bf14b157-3459-4c9a-adfd-b5039ac506e8 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+5f4ff3d1-2c03-47d1-8256-8933ab863148 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+0c3a17ee-e370-4a52-a6ca-71a38bdf9c2f 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+b181443d-7812-4462-ac39-0d1defa980af 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+6b2168ee-69e6-4b34-be8f-6f101b9e1ff1 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+9b42d6a6-40b8-408e-b69c-b5dd045c9f7f 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+7e1988bc-f7a4-466b-b769-10cab2004327 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+37ca5a2e-5527-49e7-8281-13542d0763f3 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+abe60279-3723-4101-9f91-a7c444d94b06 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+8111d9b3-7e98-47a8-8992-06a92908b863 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+c32bc9a5-8cad-46fe-a084-42e3263fa206 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+58cbacf7-0729-4fda-99f2-9365f6d9b43e 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+53495712-a3f2-4d7f-8c56-69ddcb2f19bf 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+187ef281-4bdf-45e3-9e47-d4ec5fb4600d 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+0d9b812c-1e52-4beb-a604-b7ff4fd45531 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+df001cf8-8d85-4ae8-8800-46fae015fffb 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+1d79cb13-8a65-4c27-b4ad-39e8665b150b 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+3b122ba7-c866-41b9-b68b-074e3da91218 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+f5f375ca-82e3-41ed-ab44-83d19e74cee2 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+5786e710-e682-45a9-a879-aa5834065d53 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+a9056fca-48d8-4c33-b703-838034c66b36 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+253d1c92-0060-4c1e-9141-e00e5b22555f 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+278a229f-2301-4341-ab51-1215f364d6fa 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+b7f28fd8-9f87-46fd-a74b-be18b6408109 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+0fce515a-5633-4376-bf48-c6668104a73e 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+c367ba5f-4a97-4d7e-98a1-15c04166494d 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+3e4e9ec5-d08a-467d-b8ad-ead6008cdf8f 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+23bac334-f599-4e5a-ab2a-2658b0476915 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+9e010c11-793c-4ceb-aa15-eaf1967f8662 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+741298e6-9d81-4054-9d67-2fd21f4ccd2b 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+55485918-3fe3-48b6-9ff5-b2c833e8ebab 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+7f91ec15-c6bb-41f9-a07d-30b9f1921c8e 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+41e28b58-92d0-4b4f-bb58-8a6d48993515 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+1c7f1817-22cb-4f19-b4f0-459d52e80f86 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+a46d45d0-cc08-42b1-a63a-fed3076ca1d2 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+2d62bf45-233c-4c5d-b300-3d05c8686e1f 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+aff043b0-5f33-4500-a1c7-593f52c20a9e 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+bfb2e978-6a65-4e76-838a-4b9c91504951 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+112de6ad-f11e-4e39-9c6a-ad2a68d20279 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+36c2a71c-7f2d-48f9-8b77-533a6615184c 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+21604951-0ae2-4355-9d22-507c74077412 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+d4f02da2-8982-4c33-a2db-88b5ce4c83b4 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+3454544b-e241-4575-b7c4-95b316018dd0 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+1eccd42e-29d2-4838-b7ca-6012a5d461b6 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+e372887a-c341-4e66-98eb-bb5de80f0dbe 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+4695f6e5-ab54-418a-b462-e1c240a0ffb2 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+1a4d6f29-7250-4974-bba8-a7e2608ca5ec 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+e1bcdbdf-91f3-4184-888c-20cc9eabfe5f 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+92a12e7b-8004-4d4c-bca2-0e2abd8b661d 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+f5204bb4-660e-4e82-a106-d32a1f4d2379 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+42d5a209-94d3-4ffe-ab0f-d20fb24e1265 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+017ac746-6a9c-4662-aa97-f03f01cccd38 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+54e29734-4a33-4b6f-98ad-c2ce32985a01 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+15335b81-d7ea-4845-bce7-a9eb1e5ddc8d 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+64ba4c80-5568-47b2-a173-acdd7dfec04d 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+8be8f139-a15c-4c28-95bc-27d301636bd4 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+b820b20e-6220-4d53-8bbb-d0035ae18da9 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+0440b894-2ddb-4bbd-975a-e8a9d625338e 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+ffd18ce1-b78a-4855-9005-d29f9f6fb8ed 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+ff6bfff7-8261-405a-ac40-e86c30b0a22c 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+0dbb5719-559d-480a-95c4-dec53f2ccc6d 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+d12ef89a-388c-4811-bd59-6eda4365aefb 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+f655b9fa-7653-412e-b7c8-438779d93dd9 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+1d252b72-dd83-4599-a17a-28318e4dece6 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+6d165163-53c2-48bd-854c-9d99a4293889 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+c42ce6ec-4bf1-436b-8eb8-9610d241fb37 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+ec9e6a11-60a8-4bc9-a185-e1b8f4513900 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+48e92229-a420-48b8-87c2-c7ce46a9a3f1 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+c43ad750-9193-4fe3-9eca-efbf9a9f24ed 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+700891d8-ee8f-4f00-8cc5-8840f5498ac5 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+0990cc05-c686-4ba7-ae6e-87eca6e31734 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+3312cd6f-5ff6-4f50-ac5b-78e699360f79 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+e88e7738-7056-4203-baaa-2818055e313b 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+f0ef2b2b-bcc7-460c-a694-f55486057878 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+4b9e5ef8-dd35-4ad3-83d6-41f6fe543099 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+e8f3ffa9-43ab-412c-951d-7290027b8ddb 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+882d6d4d-6d83-43a1-9bb6-faef701491bb 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+f7cec386-2afc-4059-b2a2-e5f8bee576f2 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+53da5017-0d46-496d-b10f-e8dc4cbb3a84 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+b48ba718-727f-4003-81ea-a50896cacb66 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+5800966a-d612-43dc-a2ae-57b63e2c7489 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+73d0558c-f9e7-4dbb-9415-9f5ecdd93a39 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+a485a60f-2a57-4e4a-82e2-399a0c2c6d79 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+fcc267da-e331-4f16-9cea-15785c0cdb2b 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+6975503d-2d9d-4cb1-9675-7ae90f7ae662 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+a1004fd7-6464-44bc-9c10-0dc24216e78d 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+5dca9e35-dd10-493f-98f0-fec61b1ecc7f 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+620099fa-d7a3-4923-acb6-ad3ea36ca7be 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+02b3bdec-09d8-42bf-aa50-9ff351f91396 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+ab665db1-3451-404f-acf4-70425e3f539c 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+fa351446-cccb-4551-8971-d0390f1e24ac 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+656ac933-0979-4375-93d2-4986b0371159 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+9ed44c54-2395-4ac0-b209-7fd59c67474b 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+9070c060-42ff-4b05-b2a1-61bf08c837e8 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+fe095e58-8288-40c8-9751-8cfeb1f52653 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+8baf6783-d3d1-4f6b-b487-71a8ef04021d 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+97be3d68-27a3-4ec9-83b8-208230ccef9e 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+cbd172db-a804-4586-b609-b3be77e2fff4 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+58186d31-496a-4d88-8649-6673324cec0a 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+202741ef-a1aa-4d8e-87e2-3b66ac081248 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+cfcc88da-9282-4ab2-8e2c-b28b4333128a 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+f0e82199-5244-4876-a078-fb499b92b7c0 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+39c24bc8-231a-4c13-8a93-823f53113448 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+c73d2694-7216-48dd-990c-8941ba7a346d 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+130a2845-756c-408c-aac5-17db5296c7c9 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+f8b2a43d-ddbd-4f0d-a8b2-d012e3072c43 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+3d8be0e5-cf3a-41e6-81d8-5024695b94bb 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+004135dd-4f23-4efb-b206-054802b8869f 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+b3b5b8a7-9079-4474-8f11-1170cf984c55 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+4baacf47-8c62-4f33-86dc-0898959a6ae7 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+f1554203-6f26-48db-b2e8-6bc3d91813c9 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+8e47ef30-5691-4ceb-9daa-84a1273fa3f1 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+ac1fb35c-d2f1-4dad-a630-648cc81488f8 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+46f99ae0-ebdb-4846-aea3-825139e8ac50 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+34d35e77-886a-4341-b291-e4d829d36032 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+bf8b47b7-d439-4dff-ae98-42f21d17aa96 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+2e090eb6-5945-46df-ac57-b3ff039ddbd1 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+415712b0-b806-43d9-b39d-d3f2b28635f2 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+2c734fd7-8fb9-4d02-b480-fefd5926937e 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+bd078358-c177-4667-8a94-e893c3f6b250 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+038753b8-7b7e-44ae-9e07-d49b0cb33427 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+2fd297b3-fa4d-4406-8ff7-9427802ce57b 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+1159079c-8ed2-4c05-867f-aefb4d44b0cc 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+39f79ab0-2f7d-471f-9115-36876f50c675 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+0f8246ac-7902-4d91-acfd-07268af3cb93 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+f090302d-e294-41f3-82b2-753517a9b159 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+b0846613-5b25-4d5a-8678-1841e0026df9 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+47e919a0-541e-473a-a987-3a48ad7c9414 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+dfd56bed-16da-4ef9-a597-c666de996ec3 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+0caf6cee-5e47-4bb7-873f-cfc07e1c2b55 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+942abea4-c8eb-40f9-8ffe-094e125c1411 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+e02a5ebb-eae5-489b-89de-3cbbfd0065fc 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+e24b6c61-791c-4853-bddb-19e4ac70aa16 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+e32da58f-b302-49e5-b286-b7951ab26f30 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+4de8929c-1782-4ff7-8cd0-fc0cb95a917d 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+6b25bb55-d30c-4f80-a02a-7a7b673506eb 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+316359e8-dd3e-4d04-8499-80a08c2c985d 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+8eb38c5f-28d8-4dad-9d85-6c331439f94a 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+40663b79-8f44-4145-89ac-0ef0d3f3ef7b 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+7fd879d3-904e-4e62-933d-d3b48fc2f7a8 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+152b9e4a-c4b2-456b-81c0-8a8a9d96bbd3 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+1f4fab19-2978-4230-a037-b759cd5b6f5d 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+0a73244c-2181-4e01-ae06-6db296d4abd1 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+1a758206-1aa0-4aea-ba42-4bae0779c607 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+bfb14064-00e9-4137-a699-0e9542620a13 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+c5d675df-5fc8-4f7b-9014-82e94a875231 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+5a80a8e7-2952-4c0b-ba84-9f9f32821e9a 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+78b1a0c0-e5b2-48b1-b6bf-45fa0bbe19cf 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+97f19420-1b41-41b1-8922-2609201356b0 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+78c98e9b-c478-4e1f-a1e3-6d993f9e5e07 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+de49eef8-05a9-4d76-9ab6-99bbffd02ca1 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+ee8598ef-eabf-4312-8b48-1893ce1cc2f1 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+8cb9e359-6e80-45f2-a903-78e42910a1c8 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+6666e66e-e92c-4862-aeff-2ef40af62ce1 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+4c0ea5c2-9bbb-40ef-a0a0-15bac44bcc30 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+99649df3-4a7d-4625-a3d1-baf75ff1c95e 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+235a2fb0-5c1f-4cc2-9c64-93586d10333e 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+77f2f65e-ff91-412e-be77-454c163a2af3 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+73693cc1-c3df-4cbe-b525-b1ed25fb32e3 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+ff12baba-af6e-4979-8df7-5a3cc314fe55 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+acd56b0f-ebf3-4aeb-aeed-79fc4eeed19a 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+57cb5c86-2dbd-4bb9-a8bc-c8ae31a18d96 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+eaa52892-ab9e-49f1-88cc-653654760344 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+1143bfb8-4e86-4daf-a976-67502e2987b5 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+2b9dedbf-e0e2-4580-a0e6-8710764d6d7b 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+56ab0e5a-63e8-4019-998d-f749f12b9b62 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+61b09491-2a6d-4250-b077-4aeb0f81b9e4 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+0c4b5c80-2495-4056-8dfb-f472a1ef4a96 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+06b44014-86de-493c-8333-33c06054baf3 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+c17adae6-7534-4b3b-9a0b-ad1e81909fbb 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+2c2881b9-0e3a-459f-af54-4d3472b7062b 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+9dc3cd7a-e999-4173-8a69-59b6bedc247a 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+5211a693-b4ac-40a6-84b3-36072232759c 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+773f3749-c55e-429f-85dc-068d5b8e7ed0 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+7db5b811-dd07-4498-af3b-3beda3340288 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+7ad2d668-bce4-46f0-b077-04381143d5e9 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+ab0b2727-9e08-4f1a-a20d-74c9a3cbe9b8 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+633e7244-92b0-463a-a20e-82fdd7950216 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+eb2382b6-b792-456e-bd4c-a41fe5d00efb 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+511459bb-7068-4ac7-815a-6e0bead23f61 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+a0ab2b6d-91cb-4475-b5d1-3128b5ee1e1a 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+5c036abb-8ba8-4da8-b672-b096d9fa911b 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+043fff89-49bf-43d5-9bda-a6638287cc0f 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+5a2337b8-ce89-4999-ba4f-4aba421a9ed4 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+ad64ed6e-6015-40cf-bbef-41519897149a 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+c931aab3-11ad-4a95-84e2-1de12c8eb70c 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+cf7cacd2-7519-4769-80ab-610770913719 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+3e298db8-ef97-4308-8971-c864e3c98bce 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+d477f85e-7aa9-4c1c-ac9f-d7d74de5593e 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+efd0cd47-3b61-4472-9dc9-8e3bac916ae8 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+39141163-2498-442f-a352-ed64f3e4e82d 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+249f06bd-2c33-4d1a-af67-f110375b294d 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+76f8c073-008e-45ef-8ee1-fb887aab60cc 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+7e80eb37-a543-4478-9a86-fa0b6e582333 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+b96602d0-cd75-45e8-95c6-3f1938916893 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+2fe0a224-7f2d-47fa-9c6c-d55ba01b729a 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+73cc5ff7-08d8-4709-a948-2ba06c63221c 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+a449c46b-7984-4cca-aec7-1b6e39f504bb 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+42717dca-3e2e-425b-8768-79b3bf8575a1 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+86320f9d-b610-49b1-b5ec-a7902af6bab0 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+eeb5a7c0-7d16-4147-a4b3-6409ae439ea2 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+b9061a11-5d3b-4bb5-aacb-bd4ecc7acbcf 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+921b3b5a-8fb7-4ed7-ae1a-d0837dfcb9ce 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+8e4ec82b-9652-4db2-8602-61ac5be5c1f8 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+7149342b-bfe6-4c8b-972a-bbdb4ba70807 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+f53280ef-e9ec-4efe-862f-adfac9908b61 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+ca986a74-d027-45c7-8596-8a83b4cac72d 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+7f366e20-e036-4118-a019-91229110356b 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+f7c5d672-859d-44c3-8d77-11adee4c7dd8 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+1259d8f0-1b71-4e0a-a1c0-9484e9ec49d8 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+6b4f66a1-dd4d-4f3e-9853-6e7d46769f5a 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+647cea56-358f-46fc-b45f-02e47fa702c3 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+63a87f4b-eedc-4bee-b684-6069c7f8c0d8 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+3e3777b6-2305-4eb4-9d62-17247c7f23f9 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+05e59d0c-9a5a-4910-89ef-d05d340dae3b 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+438e231c-b1cf-4fbc-b7b5-e77e2f44e603 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+92b4a357-21ac-41b9-a9ad-05203325a95c 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+177f056e-3199-45f5-b95f-a9f7e56aa2d9 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+d5e0e6c0-778e-494d-bca4-467ee5135bb3 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+744caa6f-0ebc-4b4e-9e23-f5a241fdfef6 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+df11a3b9-91e2-44a3-bbee-ed4b53c6fa00 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+b5c43478-4e7d-4a4a-84aa-c177a82446d5 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+711eff51-0461-4ab4-ab28-7fdd85c34ded 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+caaded0e-4301-41dc-8f72-1d29169fcc83 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+4318ab37-7a7d-4949-ad81-89072c440b2d 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+85c3a0a3-9f08-4b12-a8ad-15fa8aaf8d31 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+78fe7b32-0cc1-446b-8132-e3aaef432caa 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+cb8d98da-9b77-4ff3-921d-d71084d444c7 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+fb07a63f-7e14-4d2d-87b4-afe212ba9704 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+08c6ad17-c4ca-4d7d-a469-b25b4744437b 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+f230aef5-6091-43dc-b103-de6fc58e4a6a 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+264baebd-c784-459b-b1b8-8bc22ea43f98 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+8d70bd09-6f94-4cd5-87c9-6ae9e3a0902b 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+7eb6a7c0-f552-48bd-8a24-8cc87941b0cb 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+3ee6c9e7-a33c-47a5-907b-3145dd77a367 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+9db9989a-fd92-4d92-ba79-fbf200648e6c 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+ad638433-7752-49ae-8872-643ddf494058 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+8deb55b5-2516-49ee-8093-14e0da6bc767 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+81bf0f66-9af0-47c2-8ef5-02cfd0b78722 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+8ec303b6-dad3-4a2f-b6c7-95f6c3d60b6b 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+448eb25c-9636-4767-aeb5-54946feb5b13 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+b6d79ccb-ee35-440c-a0f0-98279ad93c92 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+5bf510c0-3229-4629-8696-5bdf7b20d2b3 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+05d3ced1-90fd-4ee2-b4be-942f872c8841 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+89343860-cfe1-485a-bdd3-b8bfb5e98ed5 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+411bb4f8-ed55-4b16-8f95-92b54c5f9a36 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+63d202f4-c0e8-44c0-a8f1-93279da0ed3c 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+7b3c09e4-6038-486e-9a2e-a2ff183b709e 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+41da83cd-c341-45ec-b0d4-c8704c64c5c1 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+3df2c6ae-2a03-4bad-b562-2393e8536938 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+10563c67-e1a0-477e-89b9-c77bbdd38af5 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+628da7c2-ba71-427b-b66a-7887a737b2c3 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+3942ea6a-3ab1-4f24-a3a9-26f81272a6cb 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+4e93ddc0-22f2-4506-a105-071069463b89 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+7c3236a2-331f-4492-8006-55f62ae495e5 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+4a34711b-70b2-45d6-883e-3949e818b70a 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+9723f877-269b-4f66-99d2-9a73dd1ac281 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+4b7d489e-7508-49a9-b2af-effdd5902a15 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+51c81328-ba49-4018-b379-bec5c5147f0c 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+45f4be53-c0ae-499e-9f60-24c523c6cb39 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+3a1ba96f-75b2-42b4-be5e-0ee2f70c057e 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+838ceab5-5103-4bcf-a496-7dc973f15003 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+fe76be34-9f45-436e-8052-b81438da0449 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+7c42d05d-672b-4c1d-b608-6b40a5f0e420 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+de6fc4e6-bdc5-4987-9f4e-0a720e4ebd86 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+2adcc490-a6f0-4896-8b36-9913211cfd65 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+c9cf4609-1193-434f-9d64-90924649fca9 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+5922d5e2-d086-4dd4-8105-0847cd97ac03 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+5b85fe75-1a3f-43f7-a866-a1be7547dbb3 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+7b7ac2e7-5ea8-4d1e-ba73-c9cc257ea067 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+4dd0cb10-2693-4372-b028-46879341f27c 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+0082557d-f435-4bd2-927a-94351520a9df 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+a2881076-7c52-4873-8424-5cc5657cdd01 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+3ce3bd93-3ebb-435b-8ec2-8572ca517f33 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+04b909f3-37e7-4644-ac60-0a19969764d6 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+fceab9be-e96b-4d4a-b0d3-61583ebf8154 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+a7b58ede-c0b8-4acb-97a3-a31f31c38fb7 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+cd34c01a-18a2-442c-90c8-5d411896c0ce 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+13508a24-dc6f-4d81-8d10-e101be1b3d49 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+ca24161f-ec18-4326-b487-8de8acf5f549 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+8033cb0c-9629-4f0b-8088-a00ea5ca1ae4 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+456a39e0-1886-48f3-828f-9c20edbe99d2 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+579073d2-5005-45ad-bf6a-3becf833abfe 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+85b81e44-8937-4539-8e1a-e00a0e3e6bc8 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+3358077c-20d4-48df-9490-83ba6ff1272b 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+665545cc-12f0-47cc-af12-b11d2b08418c 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+80e8fdff-cc28-46c6-a3d8-145f3ac41727 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+11fd2dec-5e15-444d-9890-0f590d7b7f2c 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+7d92c344-c720-4301-8871-bba74d6437ad 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+21f76604-48da-401d-8ea7-84e09e22dc8a 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+d12ce32f-10cf-4c90-abc4-47cedbe25ddb 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+e6231473-2385-4951-8948-bd3f391f31b8 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+6709ef6e-ce01-4587-ad8d-86f8fd06cc34 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+7421227b-8248-4936-baf0-d7afa88ce6fd 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+65964f41-a7cb-49cf-9ddd-554fa6147191 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+cfceb90d-bc9c-4c0b-948f-772e2b696051 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+06ffd986-e64a-4cca-9516-95e560f4636e 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+8c459843-a672-49ca-adc8-9d0d954acd96 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+dec7472c-e4ff-4f66-90d3-c53806c46f8a 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+128bbfb0-4117-4b24-b2f9-193f9851c396 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+faa7505f-28af-42e5-9756-e2c9cb99e64d 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+d719602f-0c7e-462a-a656-37411c2515f6 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+ee7ed171-02b7-472b-b868-49fa50d1cc10 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+7a492114-aae3-493e-bf61-0e8c57d808e8 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+61e8e4aa-d4c9-42e3-8279-df2a78c27228 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+c91e5124-f097-43d3-8b34-e10d2294387a 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+9a439a79-f999-49ff-9ae9-3b621c3c806b 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+403f8dc3-d2f3-4bd5-89ee-d79591ec786c 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+723b6c89-6c7e-40cd-80e6-c96b071ada3f 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+df777c6b-dc11-4cc4-9b56-015f3dc3b130 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+469bd0f2-d021-483e-a952-95b38215bd8e 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+1f51ecca-6091-40a1-ab19-6eed946a2575 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+af913f8f-0c57-4f86-bfc7-ba4c9826f234 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+db22e81c-3d66-4948-9944-6915f9a0d93a 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+36aa0ab0-8bb7-44f7-a1c7-edf397e8748e 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+6bec8760-d3e8-4c87-9a78-bf3b77a40d97 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+567838cc-3607-46d5-b27e-7facfae6fd33 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+386bbdbf-b73e-4fd0-841c-d083cbf87bc4 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+6bd6092c-9310-4ee0-9ce9-ad18cf47fef6 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+2edd2087-3555-4eea-8d53-78890f54756a 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+ebf1778c-7518-4ec3-9a50-1e685f82ec68 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+a169d08d-76c0-4ddb-9847-bfa123cbddf8 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+8a2bb83d-9504-41c9-810b-af95f22ce70a 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+79753cfe-6916-4d2a-aeb9-a85a3f4bd3a4 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+511d73d2-9d58-42d9-8b5d-9465c42c9435 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+d0e0fb81-2760-435f-95d3-e8e1e8684149 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+dd5fb330-ba2a-4c97-89e4-e3b46812207f 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+93b1e0d5-9504-41a3-91b7-c80fb1fd7251 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+4893b094-2610-4a08-869a-113d3709356f 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+b030e95d-d196-4369-b5ff-a44793ef95de 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+665a390a-b809-4d78-9964-d11bb6c280f8 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+66252a8c-6810-47a3-8752-7e66119be457 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+417ba732-a377-424b-a791-29d49cba91f2 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+d887c252-111c-45fe-9bf6-232f4de86b37 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+1f5a6717-6759-4959-8d57-3b449e9d5eee 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+c8612828-f013-499a-9cfa-ee2ecb02d923 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+e8a01f75-f53f-483a-97d1-b2d91605222e 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+d2d09549-d0e3-4bc6-9ec4-ce0377c9429e 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+d2305515-2a66-4433-bac3-2b0f1281220b 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+dd680803-70f4-4649-9308-932f858e7d21 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+ff16faed-9750-4c2a-a3d5-45db93d8cff7 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+4438fd2e-b0fb-43be-a705-89dbb5ea6184 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+def1340c-7e06-46c1-9c60-4b274391eefc 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+7741cdd9-e338-44d2-a8cc-e4e6453ac624 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+37223b8d-88e4-4665-8004-867327f0a115 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+0dd46829-13b9-4e91-aca4-bf5b41777fb2 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+87435b14-f1a3-43a6-b78a-3a595d40d651 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+29a976f4-b3bc-4d1d-a125-840ab460d83f 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+ce42b33c-23b4-41c1-9400-44f1056c8d81 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+8756be69-3992-4a97-9f0e-7525bdc40e49 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+d7690df2-79d1-427a-b1ba-bdac6d58bdec 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+31650261-7d54-4022-a073-bf0d889ccb6d 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+80344dd9-60b6-4090-855c-e3c49ad7198f 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+09fd9fdc-f976-47e2-83b2-db68743e640b 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+b75cb7c9-e517-4dcf-98a2-b30f38dc2005 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+d7359d8a-4ffc-422a-846d-e31e666bb3fc 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+07682250-36a4-4400-a499-212cda2f15a3 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+e6e9636d-ff07-4a3a-af53-4849e8b7f9e2 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+c4e4a691-085f-4d50-acd2-8b243c3126d2 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+2ed985ed-dc06-44bd-b7db-4ff77d30b6ec 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+db7333ce-84ae-4906-9e6a-b45ed70c5d66 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+63656564-8569-490f-9077-a358441553b2 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+ee5e81fe-f5bb-4c47-b8de-eca9b5412f73 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+43813669-d5dc-4825-a6d6-4c8a2fc2bac3 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+7d1b0767-e291-4a0f-a88b-5bba1c6252fd 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+4c577da1-2c21-44ae-953e-2bf53effebba 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+3dfb8fab-97ca-4953-ae74-c54edb521f50 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+380fc7bb-7304-4581-b8bf-42ff3c69333c 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+22f199dd-e6bc-4dbc-97f1-d07a97aef4a1 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+bbe5073b-f172-49f8-8c11-ca383b1ffe3e 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+14771600-5d65-46dc-821d-bec78e030836 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+9197d9b1-04c5-41a6-b2d3-4a4bebf3b122 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+073092c7-ea2c-49bb-b8e8-0619875d098e 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+a5907f38-3318-4c7b-b4f0-c046f46dd3e4 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+2f18b299-c2be-4671-9dd2-a001a072536a 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+eb6f9737-4ba7-481e-8360-3a7c328a1dbd 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+b044d288-6669-423f-8fbd-ebaf82b78b43 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+733d9cd0-0ace-422e-9dbc-2c7ce07240bc 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+b305e1ed-c523-45c8-b16e-67df24f50689 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+23814178-53d7-4119-8eb4-bbe4a2fdae8c 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+3a0235ae-8d1a-4c81-ae2d-103b2423e429 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+79f6cd42-6dda-4a65-a3e8-5b0961f636c8 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+9127fdb4-d1dc-49a3-9ab4-e92f01c13f99 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+9853ebbb-5979-4b0d-aca2-15494a9b2080 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+8ac762d2-5435-4671-bcf4-74a019b8ea17 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+9370dd63-51f7-493f-ba22-cf6dca6cff93 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+c3ef28ce-8077-446a-b4c4-d637c343eacd 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+7d6dd7f1-fcb8-4aa5-90da-82c86cdf5e32 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+dc233d83-6d04-477d-b06c-4295f8444c1c 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+36b8a116-bc65-4f0b-900c-3f137bad97da 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+9e0e3f69-ef92-4734-8f7c-e41e55164670 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+bc6e71fe-d3b8-4b64-b411-47a7e8fdea26 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+c381392f-f765-4ffa-ba5f-65cc566df95f 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+bc4b3b2a-e7fa-4527-b1b9-85aa405a8f85 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+1bfd4f71-b55f-4174-b46f-dbca1d35a760 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+34ea4e24-e400-46f9-ae33-3e8a9e037853 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+d740b470-ca47-47f0-b1fb-d1b67810ca75 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+1fb89c43-b190-4708-bb7d-4b3fbc969868 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+7d67b752-3d63-4d4d-bd91-18328aa1909c 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+c95a22c4-18a7-49f0-b115-1f88ef457f2e 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+7d41a5c7-b5fe-430b-b0c3-6fe94d77042a 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+a717fd83-161b-4484-a400-00b22a7e4a32 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+90c2a220-0b71-4950-b6fa-ef924e611c42 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+dab241b0-29f4-4206-88c5-48d8cf02dece 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+a2816171-505d-4a10-8880-0ac99f95c728 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+fe9dbde6-a4f3-4136-943d-c2bc71102b8d 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+8f93c775-51bc-406c-ba41-15a4ac317d35 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+75858d4d-fd57-4d57-aeb5-f7a89946e302 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+ce7647be-918f-4d5b-8fe5-d8987f12680b 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+eba9182b-de83-469e-b923-0b9fd8d41e2b 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+2795ef6e-6509-4221-9843-1a32bacd7a96 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+0255267c-927e-4c12-82f8-8a59e8e94ce0 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+8408dfa7-e1f7-4b19-bec6-655b81ae1e0e 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+0127cd1b-1430-4283-aef6-b75149cf6155 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+477b45fe-3062-403c-9716-b2fd2bced558 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+93bb3a19-f475-42ec-862e-23e48cd272d2 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+89f8ada3-cd29-48f9-990e-fa864484b567 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+e3169037-f303-4c7e-a6f1-f13bb89d1e00 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+f176a10c-8ac8-4a48-b613-12a4627ea808 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+d9d2bccb-b73e-4127-8a16-80c78e3a317c 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+af782b9b-73ae-4fce-a279-17d21e98a30e 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+d54cf1e7-9a26-48df-b428-f78600985605 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+2368d740-ed88-4048-86fd-dca1db8d49b3 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+cbfaf726-5d4c-49c0-a4fe-5bef5e32d290 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+33d6fbdb-4e3b-4778-8d0d-88274a9ca267 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+9b110c2d-d125-422c-82e6-6c52334172c1 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+5e83c969-51a0-4481-b021-9df401e7808b 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+f34501b1-135d-4843-8549-3db05134b7b6 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+3bc24d8d-557d-4a39-bc76-85ddf9f7dec9 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+746caec2-760a-415b-b79d-c9e05364e2c8 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+00874d65-3a97-42c8-bbb4-d4a5a6daf975 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+6438f50c-d3ae-41dc-a495-fbbc3021def7 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+bb26c094-cfb7-4c51-96df-6df79719f39e 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+0ad90630-3300-4889-83ff-c908eacf9e67 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+7c2399c9-f4be-4f58-91a5-926d68f61569 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+2555642f-7792-4b0d-a35f-19f187f5ec00 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+a9e090ef-155b-43a9-8faf-e7972c7c3c75 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+f4f2fabb-1db7-4cf9-b6d9-253790a6b1af 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+1362145e-04f0-4156-a0f9-a65517509bc4 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+ffcf1571-f32e-47b7-9082-223725cfb654 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+37cbb21a-df90-49aa-bcb5-948a79975b20 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+875486ef-5fb6-4192-9bc7-8855e9038d41 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+191f66bd-889c-443a-aa15-e60d0da199d4 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+0fa4b188-2b39-4724-a76b-d23a6a313d3d 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+1b19dc1d-752e-4380-8f50-320d5fb1d4bc 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+407d48ac-8d84-4a1a-ac0f-96eefda14854 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+20107660-5958-4570-85f5-930df1e149c1 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+b61d1eef-303d-47e7-aa09-b4fef13dbc28 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+ca5b4f94-eba2-4df6-83a7-546b338adc8d 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+2834d2eb-3f36-458e-a5d7-181c3cb04216 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+ca8e6794-de32-4683-8118-86fa3398a693 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+aa89f58e-ec83-40b0-ae97-33f6e8dd359a 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+08f688aa-bf74-47aa-8a88-141c6e211ab7 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+33376648-a40d-4be0-a5ba-1606e0435b18 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+52ca1183-3c6b-4541-8d85-f40473a0af8b 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+57772bd8-172e-488e-9b3f-07d37f49ef38 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+a407e575-70d7-4b43-af60-22995bca580b 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+1b1ee783-553c-4e27-bb0f-682eb4189da9 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+f905c4fe-5724-4c0b-8062-64f1722d4807 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+406a62b1-30f2-4306-bf2c-004485d27528 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+35fb5339-d746-46dc-b573-21920758f0b6 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+4cd0bf2c-91a1-4ed1-b0c9-93b6c7b4f921 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+1aba3972-977e-4375-b2b8-0fd090d38c67 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+ce552513-fd2a-4c7b-a897-331b2434b580 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+8b5fceb8-0b07-4237-b7e5-32c1a5f34d4b 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+93bd1555-9d82-4ec3-b46f-2e3dc34239ed 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+3aa747e0-7ce1-4cba-b770-03257dfe71fe 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+f41baf07-d31b-416a-b6f5-60ea413f633c 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+379e65cb-dc33-4b79-8723-c64ddf998fde 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+c6cb2dab-122c-427f-b60a-0326adaad361 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+657ff218-f043-4144-9da3-8fb7c85c9a00 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+32243e1f-a31b-43a2-b8c1-1ee2ad896123 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+a7781350-9a85-4a7c-a5bb-5ced9e4f6c3f 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+743917b2-8d6f-4925-9384-ca0315e5913e 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+2de17561-e109-4ef5-a64e-91dbb4029ac5 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+1cf0ce83-e91c-41db-a5ac-5dc6f9523248 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+5637a958-4496-4c47-9620-7642dac13d3a 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+47ee561b-888a-4b02-8e7a-84586b959109 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+2737a1f6-588c-4fcf-a3b3-747dd7c9f330 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+d8ede7f4-e5d0-47c8-9bd0-a2302830b050 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+6a441a49-8082-45f2-a8bc-ea5a50ec8bbb 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+bed64f59-048b-438d-ae2a-7466d64aae08 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+4b9cc0f5-d6ee-40d8-b367-6921b8829e8e 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+6658efc5-c49f-41ef-9eea-68a7f30eedff 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+82ce62a2-9253-4a9b-8471-9b39589a0f5f 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+80e77378-08f5-4530-87aa-1c64a56c88af 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+2cc93381-579a-4f1a-b8ed-c5f62ee47e2f 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+a3d26a89-ec23-4b85-856e-50d2ced1040e 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+1f4eda7e-20e5-44e1-9de0-648ee5b85ea7 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+fd0e1827-2666-4141-8647-7a70f6f0ef29 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+d7a6c533-d203-4e25-a40c-ebd7ad57dd28 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+15d2979a-b379-4917-9771-905855224ccf 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+f99d9d16-a6e5-4ce9-b1e3-06cfd04c03b8 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+c54f2a69-6f74-4229-a5a1-069dc7fde641 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+ceee02b4-d739-4986-b414-16dada8e2e15 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+18082755-6afa-4cc5-9a9a-4a1ab6a7dcfd 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+3241febb-d5a7-45eb-8095-6ec17eca9746 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+31ec0512-f02c-402e-a839-398818f9c318 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+26c2f02a-cd17-4388-a59b-959dd105b54f 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+fba47aac-021b-49b5-a30f-fdea317e1824 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+f9a430b7-fcc9-4e86-8255-3c0116a7b078 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+39d6e781-bf1a-4a2c-a618-c2f264c0a813 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+899098ab-5470-4e67-9673-921871cf2e07 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+c7bd23af-e501-447c-b8b5-22cd1ad210e4 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+64c31782-e72e-4dd3-aa6b-2a0b62749622 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+6867d22f-7d28-45c8-b546-0b5a496fac15 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+f36e02a0-ddce-4edd-80d7-05107b371577 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+17c785c2-5d08-412c-baca-f7e8225c74bf 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+b095e80b-483d-4d62-954f-ad7fb6772e0d 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+8702dcaf-dccd-49f8-9716-7e1149ce0106 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+92c8c9fa-cda5-4b3e-9888-4f9ce8015d8d 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+dd36acf2-7afb-413d-8e0e-483341d8b224 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+c2fed35a-3337-4732-86c7-d1cfccd6b6ef 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+ac1a750c-764d-4554-b5c8-c76bbf33f598 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+eb2e8443-0755-4203-ab57-bd3edf228de1 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+736fe5cd-8463-4b22-97d7-af2cb42596e3 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+c7bb245d-b1f0-4e8b-91ff-c00c0f07eca9 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+c9a19caa-71f5-4ea0-b7ab-d7a20df5dc73 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+598f646a-d2d0-452f-b8a3-6bea86a7c4dc 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+5186561f-4488-47dd-a842-a5eff6cbed42 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+a286dd21-80ff-4c04-88f0-07c2a2d7d35e 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+59432e5c-1a6b-4c3f-931f-7ec15c69b0ec 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+12bc3723-8f63-482d-a021-4771f1432045 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+bbccc2f0-5a51-406f-89e3-f35547954966 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+b5b9d7ba-d027-428b-bf7b-77f48ea6b133 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+97b03fe9-591c-4ee5-9957-fedb57dfed93 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+65bb4d24-efa0-4b48-8d7c-f6e8ff03552f 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+08bdba69-005f-475b-b8e8-81c47327541d 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+7bec8a86-750e-4bd9-9d5c-969693145ac1 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+48f02573-41b5-414a-ad13-06405ed21ceb 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+7e9cb631-499d-45b7-a585-0451cf988aed 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+2b29b39e-4d9a-4a26-888f-fd0c2395620a 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+85e54e58-f2c2-4328-97d7-60f4f95f722d 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+988c205d-299f-4c86-a2a9-ac8f0fa2d56b 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+057fcb4a-142f-405f-8e4a-b39739117845 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+b4c87b11-30e6-4573-b04f-26025879caab 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+2a2ffe74-d19c-4f11-a43c-cb92928f17db 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+0f982074-e62a-4942-9420-80fe9afbedf8 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+82144bfc-756e-4c48-b464-65bb86677f70 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+d8d1bfa3-9e89-4145-bf2a-fb0283a63c85 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+c97f268b-0d67-429f-af60-76aa3a603406 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+5cf1bb82-8802-4997-a670-cf9d5358f0ad 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+c07e3cd1-b9c3-4a79-b787-56335cffd209 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+3de9c5f7-2397-491c-8d0a-ce9b806c9981 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+0dc8ae7c-9ba7-4b53-b851-03402044d81a 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+87d3554b-78c6-4dc3-a32d-9c4cf74b0765 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+b50c0b71-cbca-4cbd-9589-1403a8d190da 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+60119f40-8791-465c-81d0-ab5f64ab8c3c 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+f7aba23e-8b88-42bc-adf6-06b769d3773b 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+a960fe75-c2e2-4910-a9a5-73a38f2701cd 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+9e57d60f-511a-42b7-a50b-e72a50b40825 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+97416a8a-e646-43fb-bf15-1cd329046d4a 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+61899283-8ff3-4727-869e-c8a02042136e 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+a35516aa-971a-40fb-b3d3-4f1a9c134c68 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+90d0a924-3e00-4d99-9d40-11ff1db3e74f 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+1efd4ce6-2e86-4f56-926d-a0d8d89dda57 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+90d64445-811c-482d-ad86-d138d4feae51 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+9c64bf95-0bb8-4445-9d4f-7e1aa83fa7ac 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+3c358943-0ddb-4549-bf55-27152a34c6ec 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+7a609ab6-5f51-4d78-b086-9a70994c6b74 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+0c119da4-08e9-4792-973e-9a9f267d8e5d 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+65d37fca-edfb-4729-81cc-603e6863b7c2 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+6b2558d4-3b69-40f7-8515-8ee12b9b197f 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+de12e4f8-588c-4b31-9ac9-2695b526330e 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+420c8f6b-fb40-40b8-914b-7a44f26f5dda 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+2036415a-1fda-4ea0-aa91-4717d4504fa3 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+2ab378a0-07e9-4970-b36b-d1a64753cc2c 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+e2a80219-c79e-4b51-9c9b-a88324241176 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+1cb45fd7-ed40-4926-ad6e-c32411e79c8a 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+3e26371c-4ccc-4985-9edb-62976103d24b 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+787b406c-f926-49f4-ba51-a7c53509733b 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+e5c5867f-40cc-4ef2-b247-23883a0359f5 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+a9476519-216b-493a-b9b3-d639d98d727a 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+bb0bbd8b-1de1-4225-b582-296b39eb86eb 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+42d69042-6e53-4ef1-bd7f-73da1060c092 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+5a9b818d-3236-4a1d-8a3e-92d72e281302 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+0834dd5f-d9ee-4f09-aafe-fe4c73c0e9c1 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+87203817-d409-4768-84e0-bf650de1647d 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+0d834460-285c-402a-b8a2-7d97da39e382 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+6872f8be-5150-4f27-8325-ce5f4d00a9fb 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+5e5e49e6-ee26-476f-b841-70dbea8c7177 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+77ce6d10-a45f-48ed-a298-14036192d208 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+6c7ce76f-7b19-4009-8774-0f7263b8f6ca 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+2cb274bd-5cb1-4a8c-bc6c-daf34ff52585 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+fb00a5d6-0588-4ec3-a11b-899060693088 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+8f5c0440-9850-4077-beb7-08cdc282ce9a 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+9a196339-2cee-4d34-b0fe-91b1fadc57da 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+2efff56b-3c48-46f4-8418-11b43c06b57c 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+21901917-684c-4a9a-b637-d945becc99e1 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+2322fcc5-cc1a-48ac-a050-1968336941bb 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+8b93ce33-534d-4887-a272-a600def6ac72 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+48d69a14-7dc9-471a-969b-6f456c4e3ac3 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+4e0c61d1-0835-4f3f-8417-145a7e84f84a 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+253de83f-3431-4e73-bfea-423b2b24645f 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+0934c6da-ab11-4ec0-8a00-150592a6dca5 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+41d6db5f-48b7-4401-bfad-ad6187489b4d 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+e1790583-bfdc-485f-9825-204c029a8a30 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+e564ecae-c5bd-4707-95db-4b21c5873ed7 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+5ecc51eb-944b-462f-af1b-01f2be0af59d 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+af757134-dfc4-45c5-b08c-52342631d825 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+76f3da85-4d24-4b37-8df5-36a6bcf6943f 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+f261afbb-791f-42d7-9855-eacaa47f5375 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+403fdbf4-9575-4b16-9a92-d0639f50843b 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+c81cc12b-0597-4389-8a14-c339617d3772 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+5bc43382-105c-499a-8535-5859592d3ed3 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+bc62d39b-dceb-4571-b057-3225b42ee313 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+76f67113-18a8-4545-a41f-75662362093c 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+d1782bf2-3e90-4123-9fc8-1f4444e2cd8a 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+a0730440-9430-4d00-ae84-2097b4b5af91 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+c44f80de-b332-40af-a6f5-253d95c1e034 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+12853dbc-3d33-4f2b-b19a-5f3d507f1ed6 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+0235d45b-c6ce-4abb-8b0e-37a6c4273362 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+6fb37837-a298-49cd-b339-ac89c770c3aa 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+83790662-95d7-41df-b11c-18f5a8bb1ac1 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+8abf517d-9c33-413a-99a9-108778af640a 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+4a2c00f2-fe07-43d3-b833-962579af71cd 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+9886823d-c56b-4036-ac87-d2ddbb023ef8 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+6b5bedfc-6c57-4d03-a918-fed01162498b 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+b39eade1-7e15-4284-8be6-57b281c85529 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+e5b59e31-b8a2-4c56-a409-78143222c571 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+d3852aa9-5c2b-425f-a381-b64cf0b03f60 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+95ca4802-08a9-4c13-9efc-d528ad360a82 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+900004bb-6803-42cb-bbf6-494f9b4cec0d 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+1be40519-ac62-4c4e-963e-b2f35b519b6f 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+3e9bc916-4a9e-414e-ad5e-4198a65ae555 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+d53582c9-efdb-440d-af61-f6c03f346c7c 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+40b81cf5-285a-47bd-b6e6-6018d585ff73 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+1bc9c1a7-d4dd-499a-b651-f4e676923f40 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+9b66c4b2-ce64-4eb1-8ff6-a2f99a7a89de 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+a6da3cc1-e4fb-4750-b838-e9102511e967 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+1eddb0a2-8701-465d-999e-d7502c683d6b 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+b12c8c16-216b-421b-976c-12fcf261fa5a 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+29196cf5-b04f-428d-8580-57a4e523354c 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+ad140f6d-9005-4e99-b343-683d6d0fb3b5 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+dc93df69-60ba-4b71-9c77-c749d0635547 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+dc15291c-828a-4d13-912f-87501e76ba0e 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+f1ff5270-e8fa-401e-b5c2-a957dccd7712 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+04f173a3-8623-4e0b-a5d0-35dc9e31d2a7 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+d3df4b60-906c-41e0-ac2d-f418e574b76f 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+f21b220d-d754-4e74-8c2d-cf4da50241bd 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+c7eeb025-bbe6-49af-a40b-3e2381f5f2f9 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+67ad7e0c-b570-4421-968a-055dc216ecc9 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+7ecb7b6b-b396-4843-b53b-86559b14bc9e 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+32545a43-7706-4fa4-8032-da1f3beb1099 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+94001410-4e8c-4286-a546-f07bee51a1f9 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+eb936050-6ec5-4844-8779-3e6151dceccd 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+3510109a-a00d-4339-b62c-5a8a4c35b7d2 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+20ab2f7e-bce9-462a-97db-598616ebc79c 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+ca0d90a0-8084-453f-9fb7-d667bf0c8680 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+d826496d-f13b-4824-871a-f9c35dfdb624 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+78b765e4-eec1-4bee-88a2-c86666a2990b 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+4ca9f552-f860-4ed2-b128-28e8d87448f8 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+78c65795-9224-43f9-96ba-7ee77acc4de3 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+a1b85eef-38c0-4783-81d6-2aa5fcfbb892 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+2a3d4d65-b0e4-427f-9b6b-6eb6072dbe5f 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+b2616c7d-7cc9-49d7-b1b6-dd923e24101d 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+ac793717-b559-4b4d-acc7-83ec2e09b08d 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+46979928-faf9-42f6-b215-ec627e3ef77d 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+b669f65c-ed5e-4cd2-a604-b3d2e6e3db29 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+2671abec-27e3-4163-8569-bb1a0ad73898 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+cbd0b69b-1c4a-4a51-a907-b9b545d63695 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+7593a908-99ce-4904-8146-9f99a0afe556 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+15276fd2-00fc-44d1-bc75-dea7b3e9143f 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+a054179d-4965-4da0-a979-fb4cbb321ca6 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+e59f7730-cb99-4878-a70d-935ba06ace44 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+92d931aa-0ca1-4dd4-9333-876428d68bca 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+19e3abd6-9772-4043-9ffb-6bce35d4dd1a 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+1a9fd102-8705-43e2-b628-6b667e1375d5 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+cc99449e-ff28-4116-93f6-87da6e0f3dee 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+ded61c39-1cd0-4393-b0cf-7fbcf5fe8b27 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+26328aec-3ea4-4244-b087-2572533de318 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+5ae3eb45-d717-4a80-abe6-542b10270686 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+e5a981a8-1cba-462d-b20c-a40e1a510f52 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+4adef5f0-c1e9-485f-87bb-5e5ccd3fbfae 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+9b860994-41d6-43dc-977c-057f51d246ac 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+e9555d1e-9cee-4dba-af0e-8f894c0ed54f 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+e6e9a543-59a9-4bb9-83fd-e2eb25d47e1c 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+19851887-4086-47f3-a3fd-912e385bb29b 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+54114ee2-c4c7-46be-af99-478e115e8a2c 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+d16f0f9c-a9b1-4a80-b467-352b4516f008 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+ad364ac5-1e8a-4205-9515-09b9922f0d57 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+c1a05651-725d-452e-8a12-88e2c0af5fac 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+d2cbabd0-9fde-43c6-ac91-c1f02ab3fcbe 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+7bb7fb50-05e7-46fd-9e3d-e838fc2f8cdd 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+565746ed-dfad-4f34-8958-e9ad2b92c456 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+e5794ee7-cee8-4b16-954e-50e9633caa21 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+41b18a06-2eca-428f-a524-6c152677d2ab 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+a936ed11-986e-4089-818a-f9621b49c583 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+c01e5a31-8e5b-42af-ae02-f120bb6f41e4 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+4f97a179-a474-4594-a49e-0f2f4856f74a 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+98344380-d94e-47fc-93d3-fe1ab93c9ef6 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+c9dbb2a1-a9cf-4621-b2d2-558e03e060f1 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+e5ba001d-30f1-4e2a-939c-26dfb7c371ac 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+86ad59b0-e6be-4a49-ba3c-3cb488b53c79 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+93d83f8d-ef46-4ad7-8d54-2b6854841aee 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+c51147c1-44c1-4897-af37-2edfa5987b3d 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+5111ab1f-1399-42f4-b8ca-a6c6c86a64f3 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+2fd35d03-8364-448c-bf17-8914ef638ed9 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+280a2003-c440-425b-afc2-27d6cc9aea54 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+e67b0340-7d1c-474d-ba82-a249a528795b 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+9f0e9730-7134-4527-83da-e00bfe513555 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+85805215-c58f-48cf-bd76-1eaf639dd621 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+afac57bf-adf1-4fe7-a100-15a34903d878 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+a44651b3-dd1d-4a71-b369-59148b8c59da 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+078904a7-f8c1-4396-a381-66f5c27b0740 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+9cfa948e-67f7-40ed-a482-40680e2dd743 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+eb200372-ac77-4523-8d0c-dc70b8895338 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+623de63d-7d19-4ce5-94a6-30a8553e2d5d 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+8a1c1fee-4313-44d3-89b0-2cd24d4daa72 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+82940c11-c38a-4c47-954e-508060ad2502 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+ccd05752-da17-4f8f-aedb-32468a5200fd 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+a399c825-a22d-4bd9-a8a1-26130b9bba86 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+d3f5a804-1797-4926-8bcd-8f26458a0ed1 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+a0e49c75-a6d8-495a-9a91-1ec3a13cfb60 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+ba1a0b11-95fd-4438-9d08-3fe982522650 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+9aac74aa-3e5d-4e1e-8724-668ea171c293 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+caa7a148-3367-46ef-8c81-dffda9d949c8 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+bd42051c-b68e-41bc-8c0f-a7c6e471553f 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+6173a4fd-f3ec-47f9-a896-30fd3653fc93 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+8457c03d-e8de-4bde-9dc2-c004ca5a4d0d 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+9cebe275-fdf6-4256-ba42-dfe1e7c5a580 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+d700cb7f-0e32-4ff8-80f4-e6fa606ee660 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+81aedffb-caa0-4540-bd3a-9a7864cc41ef 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+84769ac9-229e-476d-a844-921b2f3e7d8b 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+b5fce430-4830-4d27-b53d-fd8ccb2ed32d 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+507faf22-173e-4561-99d5-04d2f0e9b3cc 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+f77c194c-9520-48c3-acaa-96c1343b843d 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+a0840710-1652-4540-b7d5-fa486908e5fb 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+21a0de46-f6e0-4fb6-97a6-d98ce79b6e5a 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+8776da18-aff5-484f-8bfc-43c21dc19463 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+d90dafdd-126d-4703-9bac-dcec3cc5b800 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+2fabca6c-f5de-4c49-a85d-12e6c374480b 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+36589545-5a05-4c70-af3d-87ef0ed4668a 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+ed3f35c2-67b7-4495-ab02-c8ab95a8a310 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+1cc23340-8fe4-4730-a99e-a5b49fff63a0 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+37a8bfd3-33bd-450a-a1e7-7777dd76c49e 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+d0201434-6718-4b68-b5e7-3a93a5b2456d 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+edc9ef03-4602-4ab9-a6d6-dd8d6964a6e5 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+b9012443-38f0-4545-8503-20bf91c5fc04 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+3999eed4-3b8d-4f47-be5e-49ccb7d1dfe9 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+a6840b56-6fbc-436a-b9b3-f3fcd25aba88 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+ac25b479-019e-418e-819b-a78055af2bb1 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+87ba4890-55ce-473a-a766-5afb803467fd 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+910e9a7e-4eed-40f1-b59b-af3398790276 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+bf37eed8-4f04-4281-a209-2a85a407e013 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+56849ed2-eae0-454d-bf71-8d0548f75171 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+fe08cf4c-7afd-4e3e-b8a2-930d6139a63c 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+008193cc-3867-4bf7-b0fc-f93a3d4d3e46 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+e543156a-44c1-471b-ab1f-7f0fbe9ddcb5 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+3f1d3930-eb1a-4ef6-b0cd-ec4febaef5eb 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+1be3e6a0-5402-4328-9410-1aecd9b51fa7 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+f7024171-06a6-42eb-b0d5-2c66d896a747 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+40ab5f68-0a52-433d-9932-f7589e49e36b 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+c1adf295-024a-433f-b7a7-296cb77ec2a6 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+df103d02-f8fc-404b-b7f4-1015c1941cd7 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+d5e82267-6f25-4e34-94ed-0ebde86f9c85 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+72208f47-a08f-4da9-9ff6-1048e836f6c7 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+de02c6a5-6e27-4f27-af42-afa6b991d20b 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+bb41750e-d4ae-4360-8220-369dbc5c3751 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+fa6d3e92-0030-489e-9634-f76a77fabb28 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+898a9df9-1403-4adc-8419-6467e1505ccb 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+6cc63585-96d0-4a7d-889e-d418409ac073 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+42b3066c-5538-41c8-8ffd-84fbe88d1e5b 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+db75b8da-b86e-482f-8fc9-e24c1fca2220 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+6b7cbe11-c102-486b-b04a-91f01ce232da 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+37a035f0-640e-4500-abd2-616e7be32f38 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+2ac200ec-d9af-4fc6-ad9a-ea81b76c0dea 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+ddd4782e-14ab-4827-8a86-11c4e2ac5e90 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+8f20ce67-11f0-45c6-b758-394d91a31d7b 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+1a7bc892-4402-41a4-b90b-f1d57c771d79 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+f102e90d-0fb2-4872-8d38-880649024f05 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+1cb483a2-df84-4757-a283-dacd1dea9226 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+fc4b28bc-0628-47ba-8df6-67655bce9d87 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+e7044a5c-3d9d-4f93-9edc-3c53c571c2bd 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+20b76f36-3a1c-4ccb-af0d-d0cf880a3fc9 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+5939dfbb-30f4-41ca-b0c5-bd29d4f7b11c 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+7694294b-1f08-43ab-9a06-6cc1c90bfca8 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+0719d2d8-bb85-4b3a-b589-2d0a2f32f670 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+9c07ffe2-72a8-4f44-acd2-118388bfa0ee 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+115e0557-b4fd-4ac3-b796-8b5957b674d7 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+e34e0aa2-50c4-44f8-bb74-e6413646823c 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+0715824d-c2af-411b-8371-19345a04fe6a 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+f01c8409-0070-4ff0-ab38-db2550576dd3 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+4fe34afa-2d46-44ce-9ffd-16341cc1ed61 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+ebf74bc5-07a9-4c1c-bbdf-8ab74165120a 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+2be52baa-dc4d-45dc-9d36-72774022a065 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+a7de857c-6a9b-4d28-bee3-dd5d5c3d00c3 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+c040e3be-3bc1-4d2c-a37a-b9316194d455 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+dbe4047d-70d8-49cd-aeb1-743b887af97a 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+b3f37e80-3637-4484-964b-2cb21ac8774c 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+2aa908d5-5390-46a5-a3f5-6ed1928ff482 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+a6de1da6-8f4f-4edb-ac3f-8a04239e7fd1 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+4615ebac-0155-4dce-8839-d493b8554d8b 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+2e37d9a0-e776-4bcc-b227-f065b5078891 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+0b17a11f-f501-401f-b388-74ad1055d3a2 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+70166547-8672-4faf-8f01-26a6b14ee73a 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+6fab5265-347b-4530-80ce-4268dd073a1b 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+768a9f48-18b9-488f-8409-efbc7992ed10 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+719bf31f-ee6a-4d88-8df7-d6ce6db76188 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+36223a73-9425-482c-b2dd-9f849f32b7f7 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+c4172157-aa78-4fcb-8511-b14ba5d6cf1b 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+22cc1330-a46d-42d9-b46a-635db27f0c67 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+37bb246e-7bdf-442c-8054-1f8d55477fcf 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+a0dd000c-97b3-47d0-a547-d65e0445e960 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+c48faf68-fde1-4fe5-b8c2-ac8fff30ce63 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+ec19312d-6c9b-4394-a67e-fa0286333063 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+b8fc2deb-73ec-4c36-bd50-5b0fd5c94b35 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+b7975e04-2490-48ce-9ef1-4326e7029735 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+40fa32d8-edc7-49cb-bae0-08402d4cc7bc 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+816d21fb-4228-4d52-8f27-b96b893e30d5 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+29f1eeb9-3d6e-42ea-9047-9f28a8a193a0 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+58091fa4-4a54-4f5d-9f7a-1eab49797c31 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+c0e2b52c-128d-410d-9f11-e078102895f8 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+1f89d455-f44a-42cc-b647-43c1081139eb 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+d55a5095-8634-4cf9-b1bf-2918727b179f 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+b773baf4-f582-452a-be3e-ce52d52ce229 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+63f13dbf-66c3-468c-9ca5-c67521e5c844 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+be1590d1-a13b-4d8d-8405-ea5f51912857 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+5985a094-1078-4045-9e39-9596bd9e79ce 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+1f09bf11-c4fc-47cb-804e-5b871ce46a0e 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+8756f0be-6e2b-40f5-bfa9-e7ef355ebc77 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+228c2382-365a-4b8d-81f5-dcd8c778f682 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+0b4605fa-7c89-4984-b7ac-a3af43d7e158 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+073de76a-c336-4541-adf3-0aadd8d64fd1 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+0587b0d9-9e87-4219-bec9-e580de692624 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+8a863a1f-4ee5-4612-a76c-e7e01e5ae3af 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+a3a772cf-c0c4-4cf8-9486-b7097864d36a 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+2d5996cd-9779-45dc-af0e-4dd26780d5cc 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+19625e94-2b0f-454d-80d2-a9353c76474e 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+71cc2bda-e33e-41f2-a6e2-c0da64de8cd6 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+fd8838b6-e5e1-4429-a7bf-0c5544cc5849 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+376920dc-46eb-4295-b354-ed9db406c339 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+d773a4c9-c15b-4256-a180-ea6c2dcc1508 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+6afa38e3-6586-4b72-9712-d0988ccc97c3 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+39a41490-70f6-42f7-ac56-e215b547c8b6 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+5709094f-c898-4aea-bb95-e012c0306f34 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+b18275a7-eff3-4438-af27-336ab0dfd514 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+c303cf38-efbf-429c-a72e-b7d007c89082 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+427a1d1f-b9d6-47a8-a395-517774932636 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+433a7229-2b44-46c1-97a3-c146436e8413 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+b5b5ddd4-9263-4c2b-a7b9-d2fdc16887ed 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+7149cb71-40e6-4d74-8b81-12ea8ab3368f 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+d2a99cf6-54d4-4324-a461-2f5c72ade8c6 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+b32f5330-b47a-472c-8009-6e0bac6dc0f2 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+775757f9-0e54-4bb5-9418-a29b049a1183 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+f755a5a8-2666-4e19-b733-9d804bda9bfd 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+bf935a33-2947-4438-a97c-04ae3bc8a424 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+a9bb373b-e65a-4378-a729-6aff98f68cd9 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+117c4843-7d7b-4c3e-ace9-e439695666c4 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+63a328b5-9765-4c69-b5f0-f90547f29a33 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+db73b354-0c9e-4ea5-abb8-98d11441361c 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+c1559233-c919-4823-9417-93fd6e91688a 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+3e7ff44f-8c30-4719-8256-9d371697051b 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+16b3ad1b-201b-479e-84f1-2e45476c0ff4 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+42086de1-089d-4644-97f5-a9efabbab9fe 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+edc0b695-c5b5-4cb3-8f8b-ff6cd57b0b50 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+74fa2c31-f4c7-43da-b174-e326dc6570d9 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+f1b7a4bf-81d6-4552-8e15-06769687be80 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+dad656f0-cce4-4f80-935f-15a32f448245 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+55888952-4a4f-4ce2-9082-0352b90bf4dd 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+f558d3c4-b733-4739-a450-595c0d15077c 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+deeb5d48-688b-486a-8cd2-86457bde71e7 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+541eb6d9-875f-4c4e-9358-094d40b6d3e3 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+b2797600-8c47-4cd7-8ec5-b4c3e727ab04 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+c7a3a162-dd32-4ebc-b2dd-80251bf87edc 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+0b05562e-35ee-409c-b0a1-6469f53bd92a 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+a9f0f39b-182e-4447-8e8a-67faa648f1e7 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+5ce17bd6-d1dd-4be5-83d7-2ff3b90c6143 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+13d6fe6e-0dc3-44ac-a616-46b090188d8b 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+4e7ec73e-36ef-4bad-bec6-4f9e116d2287 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+3ca3e0b2-d3d0-4fe0-88ae-e4e0d16bc689 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+c4266cb6-0098-4460-91c8-38ab0f240e20 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+9e68c564-3f23-4433-8546-45686b3975fe 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+f4be5676-1b4a-461d-add1-62860feb4b85 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+e4a8327d-e04a-4bb6-8e28-d82da4c3d324 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+204f6991-1306-4494-af77-c67b7a8d8e4f 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+129639db-cc8c-410d-8d6e-cbb6625fe457 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+a66d3ff7-1028-48f6-89ab-6122024ff471 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+37748d8e-36c3-42fe-9ec6-74209f6875c2 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+7c2b36d7-1d78-435e-8dfd-2515e6b3e5d0 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+f140ca1e-f0f2-4487-8e06-f956c67d7acf 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+b9ffa2b9-aa3b-4e28-a2de-ec2615ffbfeb 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+4bffcfbd-c6f9-4a1a-8a86-bf145c7488fb 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+f39209ad-672e-4321-a145-3673b9451608 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+472f2fe9-154f-48a2-91e6-3a23367e72c8 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+b123de58-47df-4761-adab-f3545411e9df 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+2e86c11b-2116-4b2c-8d06-527f2aa66cf8 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+1fca51f1-8f18-4753-b3e9-03271de841aa 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+ffde0605-36e1-4be8-8325-634476081a72 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+0b1b68fe-b9f8-4366-a409-e8d6c62be40c 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+a66789ef-1466-4d66-915f-ee3a0360a3a2 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+92a93b1d-4877-4f45-8cf0-5bb938f5c2af 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+69804905-2bd7-4eb1-bd47-c66e42bfe029 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+5c6d7177-4315-4284-a28b-f9bdc66c5305 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+0f9453d9-a91b-406a-97df-becff98d046d 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+35fb2db8-92da-4270-a088-45e4c77803e8 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+1510245f-8844-4cbb-89da-0deb3faa2c1d 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+a9651708-c9b5-44de-b4a8-957c19e87f85 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+966aee57-5aab-483b-9b33-30e96137bcaf 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+0b297384-3cd9-48ed-ad06-5124da82dafc 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+57ba0e7f-154f-4c98-889b-05c3a2d3c0b8 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+f1a9d504-2bcc-463d-9846-caaab33e3166 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+20c0d591-2cf3-4d5d-993a-1504f500f642 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+9879c926-66fb-4f03-81fd-8540974d0db6 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+20e609c7-ce02-4219-b374-d47f1d86238e 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+251004ee-ce6e-44a5-a030-a1c99b04a599 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+b42eb562-1fd3-4a39-b3f9-7d6dba91d397 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+cb18aa7b-3b92-4957-9e9e-621388498172 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+a12b64ea-c300-4552-997c-d2132d7d13d0 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+fc5d1be5-9bc9-440e-8dd3-efd2bfa26075 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+a1a0fad6-b6e6-4ef1-a41a-c9d4c6e8ec85 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+1521a8da-6729-4fbc-9c42-95af86dec1d8 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+bfa38895-c6c2-4643-8bf8-2d9988fe71cf 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+21bf8492-0325-4d64-b0ee-58c1f3facb58 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+7135ce23-3242-4ab3-a2c0-099ce2f5dcc2 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+ce3077bf-6885-4bd1-90b0-0d583cee70da 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+0a531762-57e4-4115-b07c-d67cc24a5a32 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+9226c3e6-9387-4a03-9dd8-0c5071a4f4fa 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+a7676b00-cbe1-4fc9-b0e8-c8b7b2dbd331 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+e31685a3-92c7-4879-ab61-dfbe40a8bbb5 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+0198a8bf-6de3-4624-bd8a-ed82b50e0c2b 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+2a61e3a3-8ac8-4cae-91b7-d879682d09ad 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+2a6cf268-992f-474d-aaee-a27e395a3e10 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+191ab86b-de16-4815-8d9d-00c5c6d752c7 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+e66a4bb0-e566-4dc2-ace7-24daaf025133 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+9bcaa25c-e815-4a9b-af91-5c733538cf21 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+2112f9b0-1eed-4550-8216-a70b79fae20e 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+cb7336dc-a740-4f8e-a38f-ed5b7399e2f1 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+f69676f6-25aa-4d02-8578-1a6ff27d0d86 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+7f4a54f9-ee0b-48f6-94ff-1b6d476abc61 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+90515b85-a40c-4fc6-9e48-afd246024de5 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+0c08c46c-e775-493c-a1a7-c982a2420f41 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+3d3dd133-3aa6-4b8d-a4c0-10df889c5ee5 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+19fb986e-d5f6-45e9-970c-da8d85006787 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+02629c3c-d875-4a23-b092-6fcbf9a245fd 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+82a0317e-fd9a-4e4d-8480-12bb7cd03519 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+73f174f1-71e3-4682-8c50-fee2d4104515 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+dde032c8-901a-4375-a19c-b19ccad751d2 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+5bff50f5-5ea8-481d-9745-d130c25d78c6 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+08c81c4c-61d6-4de4-9e00-283645681c20 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+6d94c963-f17b-422b-9694-1a9d1df4bef0 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+5ab01f2b-e78b-4496-8fa7-818edf602f19 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+3fee83b7-784e-4b2a-9f44-07a28824ad09 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+97414273-c178-408d-8939-667e20e6ed82 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+e03015c3-1413-41dd-9432-967dd1f39db0 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+2279aa2e-1ff2-467a-bab3-922a015f7178 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+f9bea023-639e-4068-a68e-d4ba43cc9754 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+17ccdbb1-460b-4ad8-a02a-afb226292dae 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+37198d6a-2b8e-41df-ab21-062969f8e224 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+2e71b115-c4af-49bf-b875-f92800feeb92 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+208e1ae6-9456-4eed-9edb-ac76511381de 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+be79ef19-df27-478a-9684-0d633f318c04 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+fc67b88d-63d0-46d3-85ec-01bd857fba34 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+b42a076f-f91f-49d8-9d31-4ca7dce6efad 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+e3afaea2-8ada-45a4-8b19-6de53889d732 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+9bf99161-3f27-49d1-8fee-c7662398b573 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+7533c777-03da-44ce-963c-4ae5f34e0154 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+61966aeb-3d9d-4010-8f9b-3294232cdd2e 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+123bafa1-7b28-482c-aa8f-139334a6ac32 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+c7243acd-ce7b-4d37-96ff-fc9cff77d189 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+26b309d7-4843-46e2-b5b1-10bc3e53e129 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+5c72825f-139e-4ca0-8d5b-b3876e2ddafe 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+ac16080b-36c8-469c-9d5b-f9285c108657 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+27b58c3e-9026-474f-a541-7bb78f8fbf2f 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+f2138b2e-584b-491b-8c32-33580b9f1233 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+585f0c19-277f-46f0-915b-33438799133f 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+cfd36787-d2ea-4e22-9065-131cc58ac80c 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+d95363b4-c060-4426-930f-b66010b51736 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+37930fce-5337-47ff-aec9-fd012f07bd9c 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+485e9460-207e-4ddf-a0e8-e882e2a7bb73 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+dab5bef1-9346-4f69-949c-b249eb0e295f 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+6b209214-d3b7-4a95-9e66-98d3b9e6285e 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+e9553ff3-882b-4171-a136-211d14e4f1fe 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+08eda309-a83a-4750-a3ce-de3a203b8d94 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+76db3815-ab00-4c49-8c29-27805a713406 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+212be9ac-2c39-4965-b53c-5b05bc2bd167 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+9bfdf854-0fc7-4617-84fb-75390a8ee511 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+474a08f3-0a0a-4329-9097-0f84e7542df0 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+2659abcd-6491-4199-9d9c-c07e0d5747f2 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+a36a699f-2034-4ea3-855f-b7c9649b7e48 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+7b6eacbd-f172-4ce5-b018-52ab0228c85b 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+11be6784-323b-4c91-b09c-f5ca5f4e105f 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+61e0caf9-8680-4557-8173-9a92cbc0dcdb 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+e5f206dc-7a11-4dcc-a7f8-381fbebb9535 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+511c86d1-cc09-4c0a-9280-bdbe495569a5 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+2bd3486b-43b2-494a-9409-6f0c1c9eb908 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+570e9723-6dd8-4d15-b3a1-f248697c0361 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+67210271-02fc-458a-857a-b5c33fed470d 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+b7db277f-35ec-4220-a974-8361e0f3ec49 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+e475f357-fbfb-41a1-b092-79c830cf5fab 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+f7fc2816-9e15-448f-9fee-3e09c6c85caf 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+915d912c-52c1-4f74-990d-00b8e546c755 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+006a3ad8-b5a9-4839-bbc0-1916c66e0155 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+38f79c19-9b13-446d-816f-d12c5ac4fdd6 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+c0a17a66-29bb-4bd7-8101-46920ddc6007 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+bde23e87-1192-41e9-b4da-0ca561b798d0 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+ac939d7f-aad5-484b-b8f3-51966c74e5da 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+39a23146-aa4f-4160-a510-d77b584b4ba5 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+73e82bfe-903a-4ef3-b718-7a4a16bc51a4 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+ea296da0-aded-47e4-b5f0-2c8886a80a69 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+88a71795-bb84-4cdd-a738-37a81abf30c3 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+62ace205-4105-4491-81cc-80b9ef8141fb 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+acdc7147-17f3-41a5-93ea-7626c285551c 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+1cc1819f-1c3d-4ee3-97d7-71dda1ea9c6e 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+31e7c47e-be70-4552-9964-e6f662f77c68 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+7f65c400-b40a-4566-a45b-3b5225a28a2b 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+39b3ffe2-a6b1-4d13-a40a-4546a993abd8 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+fbd2c747-39fc-4aa1-84e5-11046f243dd8 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+1b1d1cbc-9af7-455e-89d8-fbc36d93aef0 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+5075add5-2d1a-4ddb-89bc-56ad34794ae0 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+2981fb26-5968-48a0-b5df-0eea5cc14332 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+ffeb9b60-d734-4b74-a3ca-3c212fa88b05 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+09b396dc-1d98-46b0-a6d0-d67daea5c750 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+13a30b56-687d-4e7b-97c7-4b7efbecc51c 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+caefa06f-66e7-4475-a037-d216c2f1c387 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+3160a93d-fda5-4bc5-ac94-a9d44d92486c 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+ec9f6dbf-95f1-4002-9e22-73772bcf0a25 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+0f08d1c8-d8b8-49bd-b895-9fafe165d2f5 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+128f916a-94bd-4096-a86c-c24cb1dbec6e 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+7803f1df-6ce6-4862-a16e-bd9bc45bdf2b 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+88ea7d28-ebae-4c2f-89a8-9ac78ebaa7b1 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+225ba8df-2ad4-43ee-a993-c6dd00584b86 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+4b84db5b-ee4a-476a-95ed-8b7f2f24d880 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+bf09d6c8-0616-49fc-b39a-8eab88b4a96b 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+9ccc6bdf-bd32-4ed6-bcaa-4fa0dd325cb0 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+6ded54ac-4aa5-44c5-8d0a-5b979302d2af 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+334433b8-fa1f-4f24-aca2-28ca14d4e677 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+f9777d1d-d8fd-47f6-b23c-a684904f636e 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+ef0c8dc8-da67-41a5-96be-7636ede45118 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+afd90dbb-3584-4ccd-8c32-e8b5dfa42852 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+c748bc5f-02d6-4802-ba92-0903bd9d8fa0 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+5194981f-e21d-4599-8e1b-3657dd34062c 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+83ba5998-c6e4-48da-9e66-123d2e3a45b7 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+25740de7-3f61-4926-95e1-d3b2fc8a35b6 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+34e2d818-e2bd-4f7f-bcfc-1ef84067987b 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+c3a04d6e-3951-4d7b-8c01-219a56129d0f 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+b50dee70-d904-48f8-8157-9f92ea3f63e0 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+204e1a65-b640-47a7-8bfc-2e30c44b80e5 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+74c52abe-76f5-4844-91f9-3769a275bd85 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+ca2a64ec-acce-468b-84bd-4fc2a07af425 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+de61227c-3dba-472d-a666-d4666fc6bf51 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+a319b1b1-49c6-435e-9efc-f0b18206015b 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+3b6fb093-324f-47d6-a402-2bbb53718da1 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+57621fc2-e0c8-45fb-aa4e-161e11cd0e80 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+75d7a464-f25a-4b8b-a163-b8a8e5b709a4 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+42279e2d-7c81-486d-9d3c-acd1af59dee6 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+192ac45a-2488-42bf-a0e2-9ca7d4f4ee8f 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+aae8615a-56e3-4fec-aa00-f88533fa1546 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+26df9678-3ce7-414f-9086-77f4d2d6a151 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+0ef1ef16-1c46-47d2-8389-aaff28998997 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+14fba971-1d37-4ac6-b758-dc8e1c20d960 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+37f2794e-f3bc-4ac7-997b-2590c06b8ff2 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+0051582b-1ce8-4f8c-8012-4c450fffa5fd 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+969374db-687f-4164-a9bc-ae0b992fc624 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+a35778be-0038-4f39-a04a-970380a37b52 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+62f85063-4520-4b29-b3d2-93d9aa1f297d 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+758d5b3e-6b4f-455e-92ba-9dea7d0c4b19 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+f5fbf9f4-bc8b-4258-808a-a5f6f0026531 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+7da32889-e314-48b8-b134-378e7133f68b 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+cbf617ec-7b65-4115-b489-2ed81cf159eb 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+84535b83-e273-4e7f-a29c-172d5dff8d0f 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+70e8a068-cd50-43e9-a2df-344a145ec195 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+656164e3-330a-4b8c-bad4-b2d7cbd71020 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+1f364d3d-0939-44a1-b8b7-d04ca6687209 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+ca4f9fc3-db30-4351-97b6-4f333f3a8f39 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+06727d77-9ae6-47ae-8c09-8486508d3c4f 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+a80e08e1-0c27-46a7-8a16-3e0ff7bc6176 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+3256dc9d-7a90-4247-8646-d2eaea89a41e 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+9cc4f9fb-f7a2-4138-ae69-feda22cc4ef8 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+8585e986-ca00-456a-b2a6-8823a98c2989 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+d11ba77a-4bd3-456c-9c3c-1b06f49c2bf8 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+8a634825-277e-4145-9609-18d89eb15e84 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+bd186b3d-eee8-4f75-992f-4a41654f16b3 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+d56a2288-97a7-494e-a89c-2fa34c01c7d7 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+5bcd5604-2a93-4cae-b00b-0e33ccc31dd5 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+f2b9ff7f-3aba-4b35-89be-d6e65b79f5ac 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+9368ac7f-2fa7-4806-9e0a-ded31a308c30 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+f8405230-17aa-44c4-9dc2-f39ad041346b 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+c0b7178f-8e1e-4994-b072-e9576074c689 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+bc5d694e-75ee-4953-bb05-f130d7db6192 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+d4912bb5-490c-49eb-8f23-1783417534bb 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+0b4cb480-c85c-4dc7-9e2a-1f10d5ff853d 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+09a10b7f-74e6-45e5-8701-f1a266a9a5aa 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+7a729b89-bf84-47fb-b90a-a8051dcf6277 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+fff94138-fdb2-42f5-a3a5-65fe4aad6324 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+d64b0950-ca65-41fb-b8b7-4e9c89839783 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+32ca6617-6659-455e-82d9-3751f908e300 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+e969ebb2-f83f-4e8f-8b13-c471bcb3ac8e 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+8a61f29b-7942-4f17-b012-4bf94204f50f 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+21039fe2-e9da-4150-8485-81f3cdd9e9c2 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+e0ba7a4e-754c-4ce4-a45e-4155d18bea55 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+801ade98-c034-4a99-a7e1-0608ab8658fb 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+6a6db390-f020-44f1-aca4-9c2c06551a59 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+02a7a3f2-96d4-45c7-8fa2-bdc91b076354 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+25e1c9de-9f2c-409b-aaae-54193563a030 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+efecc356-34bc-4fc2-9a6b-0b7d7d2c299b 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+ed316319-49b7-415c-8e7f-e29bc4aa34b5 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+7c114583-2d1a-4847-9901-852d99ab66f1 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+6b4fd9b9-cbd1-46e6-9366-2eea015b96fb 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+6fc4609d-0336-4c68-90f4-8b56d8284db7 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+764834e7-bb44-4de9-ba50-b87f3a7e81bc 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+9301a048-c418-4dd8-931f-a136bb5d46ba 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+78c2e816-48a0-491c-9d09-fa056b2e94bb 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+2c69b478-6821-4b1d-bf3f-4cbf7eed11ec 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+8eb31fe3-29ab-4941-89ba-40253d53a187 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+528a6ece-0d3b-45cf-a6d5-16f49f7111a9 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+a7007bb8-4d98-45d4-a887-e487eb7cfaef 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+d2fad171-aa21-4152-ae52-1cfb840e6682 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+621603d5-10cc-4b1a-82f9-60f99ddcb429 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+0ac449b5-77c9-4b6d-9aa0-ca4f7d295a47 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+152e0166-4e31-4388-a300-42a5072fa902 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+26e5a5a3-33a4-4d9a-9caa-88587251c074 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+18882a4f-0ce7-4ccd-94e4-d2b2a62823ba 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+27dd5d94-00b9-4abe-a69b-80d46e9ffcbc 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+ade1657c-14aa-4802-bad8-45f10ec9066c 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+5966c952-9c86-4f59-95e6-d5eafbf3d684 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+85399078-19cc-4eaf-8485-447ab1696bdd 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+319ea9e4-d867-4924-9d58-b6b8b961ac10 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+48d2f922-bd50-4748-bd23-0e276fd9c71c 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+c1336432-0b80-4652-8ea1-7493bed3b59a 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+18cbd6ad-243b-420d-903f-79b578f5f10b 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+86fb6cd2-5486-4624-bb5d-3539ceba2c0c 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+045023a9-dc40-4c45-970f-6abe0f000514 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+9d2e4c39-89b2-46c0-af66-39efb0e198dc 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+53062514-939e-4fce-b5af-9a9e7f4c28c0 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+133d30a4-9fac-49de-85f7-63e0f3e6adf6 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+3467e734-00cd-49e7-a2f0-3f2e20ae9294 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+875ce8e3-6dbe-4296-889e-d3c150c1cdf7 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+82eb6b25-98da-4e2d-89ee-a10d6c852d9e 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+0068cacb-c1ee-4d73-a4cf-c879368eb53e 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+8a35e090-573c-40fc-871c-0920cbab7c74 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+f41c7456-bd14-4cda-b27c-4c49cd0ca9af 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+64bba941-85dc-49b2-ac73-5a411a0b1080 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+f0fd9c81-92c2-427f-8735-11b61f4b58cc 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+6609b6d6-b024-497e-bb64-95eb52006fd9 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+6441e339-4f17-41a2-835c-bfdfcf7bfd79 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+33937b2d-662e-4da5-bde0-0ff779a01274 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+944bec27-8f41-4ff2-9626-f825d2a54fbf 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+73acd602-51b7-4d19-8a89-61c2011b3297 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+5c499ef4-380e-4067-ae50-0c38930bbdf6 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+6c4462f9-3841-4e65-8c69-8635618fa95b 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+c8a70ebc-29af-41aa-90c6-11236dded11d 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+e8e90465-6b72-4ee6-845d-8fd506056890 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+216634bd-188d-4366-9c0d-f9f6c27bae20 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+99c01022-5254-4942-a1b7-c5b236cf0f9b 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+8d75d207-adad-41b1-a58b-885fabb8e05a 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+128027a9-7141-4eb2-b9e2-6c371d3179bf 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+05bc25e4-0ee1-4137-8aa8-5f3df9f31458 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+b902397d-5e52-4f13-ae91-0601a75060e5 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+885ed912-7b31-4735-9425-6196d91dfc32 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+f1e0e876-3525-45bb-8541-49659085ce1a 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+636aec88-532d-43ad-91cc-d486db09396f 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+b2283dbf-12ec-40ea-aca8-911b93a1879d 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+76531f49-0af8-4773-80db-b143fbe7ed40 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+79961aef-586d-4a93-adc6-febc609fd501 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+c78a278c-316d-4b1f-a4ed-632811d84224 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+b83cdd5f-a848-428c-8bea-0ae906be1da1 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+919d3a06-f9d3-4f58-9a13-50244f2e5ab3 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+334981ef-5928-4774-86bd-1c7d164610c1 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+37fa35f8-283f-47b5-aa91-1eb4fc25a17e 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+6cf31621-78bf-49e1-b57e-75efb7a1d491 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+e3243ac8-d00d-4b37-8cf4-7dabf3eaf0b2 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+45c5c931-adce-4693-8204-05fb01924df0 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+8a648002-7e76-4441-ac43-69f7204f4c4e 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+1a0c0775-fddf-425a-ab21-2b2116187018 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+3a6a238a-9e92-4df0-a616-cb07b2d69a1f 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+3aeb792f-4da5-4aa2-8ec2-ab4107254dbb 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+93a18cfa-9367-4c3e-86ab-26e9c5746b5f 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+78b593bc-9e34-4670-a84f-46cf44e4eca3 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+75ed9b41-4f72-44dc-b727-432ddd6b1e9c 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+e0330453-d77f-47f7-99d1-d97f2c0acdab 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+da72d876-1bb2-498b-b8d0-6320a5cf5db1 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+42f44433-c920-4d54-bcaa-31024d1b18d3 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+7054a299-2614-4c33-96cf-e22429b0448b 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+2a601633-fc68-4cdf-80ca-6d1c1fe4e0b1 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+a0ea565c-0f1d-4516-b63f-734abd31726e 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+b91aa3f5-f3aa-406b-be65-ef3c904abd06 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+c19975a0-f0f4-4df7-b9d0-e6aa2194acaf 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+8c753eaa-a9e5-403c-9f65-4059e5be9838 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+44ad2954-fcf6-4826-b66e-fbaf8a2efdbf 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+cd6eb620-e02f-44a8-951c-663fbf151568 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+c7cd4548-5575-41fa-adfe-0356c4b0ccba 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+91ffe9b3-0899-4ece-83ad-9aa88c62aa21 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+b75331dc-1434-480a-a1d6-25fa9fbf9131 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+9c70e8ac-1f2c-4e7c-8ef5-d1758303ce6c 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+fdb51f74-c975-4618-ab28-7d04222a9366 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+31061772-778d-42a6-9ac0-d422e8fc79e8 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+18bf0fa9-7011-49a8-b5b0-0013d13feadb 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+4c53f558-014a-49e3-a32f-64f4e861f02f 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+da90c95d-6685-44cd-82e5-7dc056e50b1a 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+67c1405a-51c9-47f6-860e-2dc17948378d 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+089d6276-3211-4edb-8b93-a8880e46a4ce 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+fdb4b287-3642-4f56-8e66-478586ce56b5 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+f6db53c1-d1a5-440a-964f-41402fb1f8b4 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+13eab374-ff46-4cfe-ac9e-68986da6c05e 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+655ef89e-be11-45a3-b997-c6245f9208c3 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+6c4639b3-4f14-4766-9714-c963a71c907b 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+ee4c8c0c-03be-45b9-b360-921425ccc33e 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+73d7026f-0c58-4915-9873-0ecf9e7ca832 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+7ba74568-ee88-4c36-bb50-737f6301aabd 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+a9061764-1f01-464a-a7f0-326583f5f510 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+b6edcf7e-6e39-4338-b0dc-1751dbec4903 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+8e238b16-24c8-467f-b155-889b86932075 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+951a2b57-9489-4a32-8eca-61d6b08be097 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+7044ab34-744c-48a8-9362-65545d443586 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+ef97dff8-870c-45c7-9e0b-9f2889fd6956 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+369816a0-2df8-4cf9-9328-78e57feb3c95 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+828c01ea-1e61-4b14-bd97-0f13fac84c5c 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+7e5a2b0f-516c-4a83-9c24-5ad14bd98e68 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+e5cd63eb-9749-4363-b27c-13d5baed3bc8 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+862d300f-396c-4cbe-8f12-df06703149fe 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+2c98d6be-e9c0-475f-ba9c-05f21287f6fd 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+b1696727-c719-41bf-8362-9afc60b68a82 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+5781a1a0-0279-41d9-b00d-fb5ec4b6afd6 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+9236e71e-40fe-4f17-8224-31445ad1fd27 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+54a7bdb4-8a09-4c91-b16f-3330a0285b92 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+c355b2be-db32-4848-8190-1af7b91d7042 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+2a453465-ab79-4abd-83b6-c54d28c2364d 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+9c5d99e1-d864-4973-8525-e3c11d2b9530 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+7b2372f0-eaf3-442e-af9c-98b61893cd44 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+6f281829-f6aa-447e-a1d7-22ae5f4d108a 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+dc8432e9-6107-48bb-b821-509f6bba65a6 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+a920e437-df92-46ad-b444-f8f5cc2e1601 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+5682f55b-0868-4ab4-affc-fe7cc360ebbb 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+b9f83ca0-d2d5-4f71-a1f1-63f5fd7ce106 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+6e17c3cd-a1c6-4349-a997-bed1bd452757 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+0c51e2da-3856-43d4-a5d9-3cab542d39e5 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+8d75cbb3-46fb-4d6d-b276-9a22765a6d2e 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+18c10fe8-ccc3-457a-ab58-957d53de98c2 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+5d51fb9b-0901-4f9e-83e2-7206ade471d5 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+e0a9f492-ef01-4c0a-9869-653699b2f7c5 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+21dea774-f21a-4239-95a0-fae7854f3dc1 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+78c98446-0e6b-47f2-9e58-06a4ba408e1a 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+68ede69b-d0fd-4602-a628-47437456aac2 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+d2b0da6a-997f-4d17-82b3-f965c0076f65 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+52084779-4312-404b-9fa3-d47d77a1bfa0 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+e5f07afb-be42-4fba-ac81-24ed5c64ddd5 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+a29bfaec-2d43-48aa-9ba2-2c07cd507371 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+9d978fb0-7f93-42a4-aaa8-1636d399ff70 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+2d19c4ce-7585-4fe4-a501-4ca08edd4d36 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+081a85a5-ce44-4aaa-af8c-a607f5d7989b 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+fcb67e5a-7c31-49cf-918d-30c4bddfae39 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+f0190627-67e2-40c5-8972-1b3ca8e013bb 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+40bc9abe-eec5-4ffb-9bf3-de429e18c2d3 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+353449cc-d685-47eb-98ff-daed0e8f4ace 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+6a5fb7b8-1dd3-4a5e-aac9-630cfe4d0dd8 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+aa4b8c04-b7ef-4140-a95d-f72076cb90bd 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+05397ab3-b334-4997-befb-ae8ddc8e95f9 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+a96b0dde-da53-4cb0-b83e-6229a7bed442 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+00b0e24a-0612-4fc0-9998-f0973f270a1c 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+f378e396-14ff-4477-9c2a-632f5261bd03 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+24d012f7-9871-4096-ad7b-9b28e72c5718 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+dc613cc6-7a34-49ee-9da9-247864caab1b 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+d538f920-1c28-4070-8af6-99baff2587f4 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+8ab72bc8-888e-47cc-afba-cc574e910dc3 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+f1612491-6c99-48f6-8e1c-ad10b2446d66 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+b2459026-aab5-4551-906f-638048a1bf68 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+0c47e61a-ab37-4e7e-98fc-2b14ca49c022 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+a327481f-4200-468b-a5eb-1f233db64656 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+3099fefa-2a45-4e8e-af1b-6e7425cd0390 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+f8d09418-d120-426c-9f8c-0b29bdcd5d07 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+4d986a99-221f-4663-b35f-0aedd1496d44 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+25aa7a82-47de-4255-b8be-4052319e19d5 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+101bb276-f3a7-448c-9c1c-5fece1e74a0e 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+42722c37-9ff2-4b30-a282-e113e4d0dc22 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+207a71b4-c81f-4a6c-b9e9-1b402b7ff7d4 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+36094587-e552-4b0b-8a27-180d7417a7fa 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+5acea5ed-8908-412c-bd9b-9b1906dcb965 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+466afe53-c667-4ecc-90c7-8a0abe6ba389 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+5e718c3c-14eb-441e-996b-1fa8e392966f 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+edcd3eca-1866-40f3-9b9c-25fb2e523ca8 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+1d2b0405-e29b-499c-9a05-8e4d0e9dd160 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+0a3cd23a-7da8-43a6-9ece-ad8bf4151b06 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+7197a4b2-c6c8-4f02-b10b-c55b72a82e0e 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+264ec0df-385c-4e6f-99f3-46abb0b1342e 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+15882644-c7ad-4977-8f5e-87d4ab2b0470 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+cd79f370-dcd0-4a3e-ab39-fc7ea1860285 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+9fd2480c-60b8-4fc0-b3e9-be4f35ed832f 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+1c185cb4-efda-4cc5-8e82-942cf49916e3 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+8fc81c37-9cfc-4941-adcb-d16a876a3684 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+e32bc5e3-112e-4cd4-94be-fa158d31d189 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+75f4f9df-55e0-4ac1-b4a5-77ad50fda874 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+8732bd88-d404-4512-8350-73d75c6d2cf9 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+ceaef773-1c2c-492e-a184-ddb153f8a230 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+a192bf1c-c8c4-47a3-8a4e-fa4ad3067d65 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+f7bf3279-617f-46ba-89e1-be395c6e4632 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+f65cb690-4194-4db1-9159-5d7dd8724922 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+1031c69b-9515-410f-95d8-39e59a0b876a 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+54e42715-ea03-4827-9573-f8bc21db12b6 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+aa486dc1-ad1b-4957-89e6-35781e7ff561 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+afa20c40-de52-4a57-a6f2-38c50ca9c5a1 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+555ab4f6-05e1-45a8-8404-c6b4f71fe866 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+683972ca-77f4-47d8-b954-9eaaaf20e272 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+b4b33ef4-97f1-4c77-b819-b4528ce80c72 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+1b4c0caf-708d-4e8f-9c44-7c5b6022934c 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+684d3082-d002-45dc-8eb9-dc5c458db891 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+df76d29a-e615-489a-b500-82a25ed93c7a 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+3e9e0e2f-e9a0-4566-897a-26f86814c95c 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+fb131774-854f-42d1-87c0-2fcbebaf8c70 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+645578b0-5fc2-485e-9ab4-57a3c9e0a3bc 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+df91a270-a200-42be-8ea6-77f901b51e50 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+e6a93520-c16c-4a00-9762-8bf8834935a7 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+7895a573-db46-4140-b273-8668595db1c0 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+1f2a3807-69ea-49db-bd47-4db4493a11ba 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+9141f03c-3a41-41e8-8213-9fffb2811691 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+5e497f68-b593-49e5-856e-1e07d44277e0 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+07893275-3c43-4737-a81a-a2d0ad42b4b9 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+4ef85ac3-b604-43a3-b76d-fe4af13a534a 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+232f5334-c31a-4aa8-b418-917fcf806fd5 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+8608873e-25f8-4d99-9d73-c1daefb2d094 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+56a8c59c-08a5-43a2-bdcb-54f99f8a90b7 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+fc155938-0129-48b2-8d45-83fcaa32d9f5 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+9da622e7-6788-47f1-a315-19d1ff6c8fa3 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+46405cc6-c52e-43ca-89c6-5238eaea0c4e 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+a6feeb79-a0c1-4dd3-b8f3-bb3a77d6312f 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+0d797ae3-b019-4f5c-9570-92df05927e89 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+5b1adc1a-c74b-4b16-b678-a598f627802a 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+8eb1175c-967b-4b58-a216-3172b2920b4f 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+7c1b20df-37c1-42a4-b28b-6dfd46f1d7fb 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+145cee4a-348a-4e56-b56f-6a898f3a7045 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+49693970-c3ea-412c-84a3-f1f7b02d0a21 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+a416e19f-09f7-4773-b9d1-7b6a0ac4707a 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+d20af718-5bdd-4753-a14c-0c5ab76f8ee4 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+d7506d13-9b0e-4ae9-8dca-554edb57916d 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+e708e171-c8eb-49ba-802e-17013b054797 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+f5990280-58e0-46d5-b288-4bf83e6d913a 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+f29f6b3e-71cd-47a8-9512-c58e955692b1 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+6598978d-b13e-4653-84ee-22e17cb7df84 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+79ea2f1f-9306-4e26-86c4-0fad720395c3 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+a6e78e30-3fb3-4341-b584-fb1a83a91557 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+cc4e2ac0-1a74-441c-a83b-75d969693a51 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+a9c1fdfe-a7fb-46c4-96ce-b9030ab83b15 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+c0001d8d-f38a-450d-adc0-9dad5275ac17 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+016c7477-e1a5-4361-94f7-2b25e622b2f9 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+2250225b-3280-4494-bf1a-16e7cfb22b37 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+5f416155-9a56-4ef9-9ea0-dbd0073097ad 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+ac8a55b6-683e-4b28-9d1d-8b5e8b564a46 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+dca138eb-4375-4fa1-8628-fb0416a2f7bc 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+f5b96901-eabc-4ace-aafe-25a8c776b0c9 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+f732b603-bee8-45f8-b25e-6cf062ac8cf1 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+9a55dc94-5fe2-45b7-907c-4b86dc803d02 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+056d2448-8cec-419c-a468-42e652eefff0 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+07824ff4-43ae-4199-82ba-07bb4990b8d4 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+a1a0879a-8a26-4922-ba09-cc126a2e3252 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+85a9d37e-e810-428a-b559-5264686f2e12 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+98cf32b8-4bf7-40cc-8256-4446cf5889d3 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+69e753d6-3aec-48f4-a4a3-7353ed01526f 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+09ec7654-2f26-4079-b8c6-b16636f99785 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+a00b6cac-d14d-4762-b184-763d10a70960 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+9278dfd3-d07f-417d-988f-d08b1504ba1d 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+a56db0e2-9722-41d7-ae1b-202048dedae5 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+2bd6d287-7ced-4c1c-b99e-c76f2f8d960b 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+3f5c3061-61c6-48c3-8433-ca154f449fd9 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+cb860b84-4d89-47e0-b365-6414a75ee8f2 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+409f1dcd-12f4-48b0-aa18-22b9ad81ed0b 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+4bf1b369-cba9-43c5-b3ad-e0fdf2570e91 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+3cb35c04-5c7a-4758-a778-9fede637feb0 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+add89e1b-4151-4cda-affc-3ed8f4b448ff 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+a4c4711c-4255-4e4f-8a06-d0426b94a6f3 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+0ebd0449-8c3b-4bcf-86da-f118caae00d1 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+d1f418d6-93ed-4e6f-9045-1dd5d83fc593 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+1029f1bb-679b-4914-95a8-6e8380670cfd 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+d21773c6-aec4-4ff8-8d0e-51e542ae18b5 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+b5cf6a57-77b3-4d26-bf73-ba1d5ee06596 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+6f03cc59-ef55-48d2-b607-39a549c2edea 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+bdf89eff-0095-483b-bfc9-f7f42ca9bd5b 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+83e5c3ec-471b-4b82-9e69-310369d9e489 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+9f6e17f8-7dca-4723-bf48-ba8f35b54d1d 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+e1bb2c41-5c2d-4953-b366-fb05ae22d777 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+0734e464-923a-4ceb-9f1e-b31e23551dd8 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+b12544f1-e31d-488b-8cf6-b610246c71be 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+0fa727c3-5d5b-4455-8ee8-25ffe8547a4f 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+9e5e73e1-1997-469d-9aa9-e40434d803e7 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+14ef6d79-64c1-4b13-a843-1f5e1d374581 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+b0cc5610-4bfe-44a2-8833-0979330b3b6c 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+affd03f9-712f-4852-aa66-058bdc1378d4 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+9591115d-f063-403e-a86d-beaae54a753f 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+666a7d92-c19b-416d-a09b-2a3dd4341ba1 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+b3de8599-007b-423d-a1a9-b6f44aa1442d 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+aecda735-0085-49a7-9beb-edc5a1920269 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+3d7a4db8-d61f-426a-8613-830fea1a5a9a 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+e9fcb5a5-7c94-4ed2-9c2e-9f15b2a718a3 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+0d6e1e2b-dffe-42c7-9b29-e08e88f76d49 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+87e28a3c-25cd-4c2d-8efe-7feaa127ec2f 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+e39d583b-8419-496c-95ad-a232facd6532 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+18f22bf3-a8f2-46c7-ba58-6d768cc962fd 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+ae508e19-6d03-4346-b3ff-c5325ae23fe3 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+79ecb5f4-b2bb-405d-a9aa-4fc1c52b99ef 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+9694ea21-6472-42dc-b77e-8e905597eeab 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+918a31ea-3865-4efa-8799-67377f8f8518 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+4f35b81b-4574-4bef-add4-f7b6287ff2c2 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+7c8e664e-3fc2-44e0-9d00-8c36aaab180c 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+27a8b1df-c3a4-4a84-92da-0f46549d2228 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+54b7671d-4085-46ca-b004-e9ce6e265976 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+2ffce183-2e2d-4014-862f-41d33ac51197 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+65df52c3-09f7-42e8-bee7-b3e166ffd27d 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+753bf1ec-4638-42de-8592-19c5dbdf07fa 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+665ce01c-027e-4834-89d7-70072ac92e70 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+f97aed98-14b9-4f57-87fc-d74ebf7bf929 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+29b5c54c-ff71-4964-bbb5-91b5dbc4a748 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+5caaa6c9-c66e-4769-ba3d-b6fbf9c460e8 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+196c59b8-ec0b-448b-97ba-50d52c114371 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+a8295ef8-8048-4fde-8e6f-e57ef6f9375a 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+8d7d8834-8718-4b62-a902-6b1448a80fbb 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+b86a0d76-39bf-472b-b5ea-db997c86acb3 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+475cc0b9-3faf-4d6b-b6cb-9c1e6ce3f1ab 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+af6d088e-a8fa-4ded-8a8f-8715d74a53a3 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+c65b64e1-3fb1-401b-a1ef-caa4f035fee5 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+d0eac76c-e4b8-419f-9651-d33eb2bcef61 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+961ec7ef-1921-48ce-afb7-5a5e5b0c0f09 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+ca73cdb7-8b3b-4b23-959f-5619a9fa2a84 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+1fab3299-a7e9-4df5-8f35-8cda0e2865f4 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+c1f3a6a7-7e5b-4eef-9641-73b3ea64feb5 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+461cd982-c268-4b16-a790-989d57ad2dfd 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+f5a58f01-6318-461a-87db-7e55181d329a 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+ec5d5d4b-9afd-4d93-a9ae-559bfa475787 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+54b1996f-922f-46d6-a602-ad6035cce48e 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+0201afc1-ccd3-4154-8149-92c6cf0a77b0 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+f2e5c2b8-7fee-4935-896e-5f090711529b 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+b2c6df41-216d-4e0d-9f02-101ffdb0b7fd 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+32e66420-acff-4e84-b444-dabf4ae1ebe8 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+36926c8a-56ff-46a5-864b-63324aa973b1 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+e782a9b7-d215-4fa4-b397-4e99476e1cf1 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+2e0d32c7-ce3b-4f2f-b610-3429756b95b6 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+9734da8c-08fb-491d-b1c2-32903ca117d9 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+bcd65863-acb9-4e59-904f-a6434ca69a3f 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+5f3e580f-3c94-4f54-87e4-31206425508b 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+20216c01-398e-4e6c-bba1-f06592701944 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+3e6d0980-deb8-487a-9ee7-4e44c3bb118b 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+3940d1f9-2d61-49e7-abbf-50d75ebbf262 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+dc7b5807-80ac-4659-8a8a-c9001470c433 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+f4fa017f-25eb-4a1d-b378-79c8fcbad2c0 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+176b4579-b6ea-4b88-8585-6ab49c0bbb01 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+58d587de-2a1d-4749-b9b9-f48547187039 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+144951b2-6046-4b83-a7a1-b3663c587cdb 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+0feb67e1-12de-4df3-9f48-1c9fd07a3b65 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+ebff55e6-4e75-44ce-863c-42a66c7d887f 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+0d2c4247-bbad-420b-8471-7ac9148a83d5 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+1e52b554-8569-4b3a-bee6-7524ff4170b0 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+bbbbd3a7-809d-4904-97f9-c73d11c67499 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+f1f06f67-2d94-4fd8-a517-13527059e4b9 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+12abb92f-aa8e-43d1-9084-945b64638ab2 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+f02ab77b-e9fd-4751-ba84-eabc48cf80bd 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+ae1be27e-42cd-48ff-b8ea-37ca33957ec8 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+526aa304-9439-44a7-bad9-6221d9de70a9 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+5bdb188a-5743-4329-b07a-0993475920be 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+1c3d10f1-d5b1-4381-b3e7-c31eb50ef6e0 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+4e89019f-e7a4-4cad-a587-7610b0b92108 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+1e28f93b-7683-4513-95ca-497d3037ff05 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+1f08f72b-9555-48a8-a583-70140bacbbef 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+96428d76-3759-4f2c-b81d-ab1afd78f4d8 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+940623c1-956a-4f84-af59-e45001be43e7 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+009ae4e3-453f-486a-acf2-6968dc305eef 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+8d0dd8ab-462a-4d6d-8d19-483b4679783c 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+ac4a38f1-3956-49be-97d5-0bbca1ee6964 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+fbc5ef60-fe0d-497d-90e7-2912d8ea9b30 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+04f85296-1c9b-423c-aad9-22a6e27d8867 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+78b96f78-2cf3-41db-b600-5ce0c10e6d6f 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+bccbf390-aa44-4b03-81ed-3b2058aa77f7 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+2729d609-a9da-4e9e-b67a-caf6810db622 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+dadd96bb-1a8b-4684-952a-b8c3015f3a65 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+1d5e2505-f9cd-4b8f-a857-6171e984f98d 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+7e887f1f-2536-49bb-9719-8e35cff9dc4d 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+7a53a50b-6f7c-4de9-bb09-01c5b81aa391 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+96fa93ed-7c33-42a6-ab47-8eb49eda89d8 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+66702839-6ff4-4dbd-9249-17a8d10fb548 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+f6c729d4-7bb7-414b-8cc3-e747c9449764 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+b36649a3-7c23-461f-8822-182612e44003 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+c4c8955c-a044-41fb-a4ea-c72d0b17a2c1 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+02028305-32e7-45ec-a706-71387f70890d 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+48186e94-8977-49bb-a7c5-ebd15ac9192e 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+f2fa587f-6170-494b-a98f-b2238e324865 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+b0f2fdbf-11f6-4ad5-8523-df3147a0349f 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+d1767b32-47ed-460c-808f-31425d758b68 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+4f4fd15a-0cd4-444e-a5f0-271ba021da47 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+26767ec8-2049-4eec-90ca-4640237fd942 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+821c5245-bb51-46d7-86d2-70ea74d6a39c 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+896fd3e3-99b8-4f54-8423-a66713dfcb46 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+5b51933f-92e3-4d45-8e94-0c800b352b98 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+7ccdc784-6588-4e86-9fbf-ba45a3b207d8 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+0ccf6eec-59f0-4890-b74c-f495e7e1c326 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+d1a718f1-0787-4baf-ae49-88596af39d91 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+8dc3c261-3bcb-496a-8a84-821cc6fea48a 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+9a0ea65c-4a09-4c64-aa24-c091be0c73ab 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+f53e6d97-0488-406f-bee6-44c1c81d5be3 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+6eca52c3-65b4-42d3-8d16-7add7a73fe1f 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+a8e054c9-5ee1-41a0-bcbb-88df136330e3 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+bbb526d9-7b1f-4f49-9239-62f4f71d1fb5 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+0b32dc16-0c4c-47cf-9195-b6a3d5d70a04 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+ca77aa58-cf7b-494d-a685-b788c0620957 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+6ab122db-9958-40ab-8ce3-3b4ced4f24cf 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+b9df0541-983c-42e2-801f-dc85bc6b937d 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+29079ae4-5f2c-4312-bfd5-372aeedef7bb 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+b71211d4-d7ba-4030-851d-a754ecaaefbc 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+740a4689-2750-4dea-91e4-207dcf8805e3 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+0ed3759d-aece-4a0a-b51f-bfe073a3338d 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+e976a877-170b-46e9-ae35-ce6ba2a88b01 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+b613100d-3739-49f4-9c43-5188732577f7 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+98d69acd-ccf4-452a-8ffa-082691dedd96 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+c467984c-8582-4d90-b889-6b247b1e54e7 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+bc8259ce-a2ab-4344-bb1b-2caab36815e3 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+01ddf9d4-acba-4927-8c80-1ea4b6a9db3f 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+80b68bd8-0358-4fa5-94c9-35b9ac07557e 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+10cf1b19-9224-474d-ac7e-7ff68377a382 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+e0eb4d51-4f57-4da2-88c6-7c71ee38581a 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+ec41a67e-5a16-4b58-9a38-fe843dd2e4a5 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+f54aa831-9800-476c-834d-bbe309423a2b 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+f01f14f3-06de-4293-aad5-21de69bc147f 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+68fa1b8d-2865-41e6-8c70-ec50371bba15 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+1cccde5e-0409-443e-af15-7745382424ff 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+215bb5ff-cd17-4a40-80c9-98fb8797de33 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+99583669-d1ed-46a8-86a6-55ef4d081206 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+9d5edef3-2efa-41da-b012-ffa124161797 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+1c1c1839-f252-4827-9659-3e42e66c974c 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+6f8f3f0b-88d8-43a7-8042-c22553571b6b 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+a3b6a07a-01fb-4846-8de1-8570b348956b 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+16b84930-a2a0-4766-a9e7-21b0892c7eb6 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+5e819c50-5fe1-47b7-9127-4bc89d8594dc 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+fe420f69-709e-4871-829d-73586cd40f20 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+5efd5018-5889-4bb6-8b69-36eb8be03acd 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+800cd8de-c5ac-494b-9f98-ad516e8dc8be 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+38c67e33-1f39-4173-b54b-9ce0b03eb560 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+6f621a4c-8769-4abe-9a0d-616e76a884b1 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+a4a63c48-b42c-4a58-8496-386075e193db 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+1545f4d6-69bc-4d1b-bc7a-7103104cb6ff 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+8858a2a3-4fd8-4fcb-93ea-8c9dc9529671 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+e22f9f28-ea84-4c4f-a41f-965e2236ab14 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+d6b25731-a8d2-4cdb-ba7c-57afc4da9af9 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+c8264725-6681-4477-a193-1fe46cbf671a 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+a4c284b5-ca15-4198-b8e9-19b7925b454d 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+c5b3e90b-aa08-4b5a-8a9d-f90cf05cc6d6 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+fbdd4688-3f01-4a91-9be8-b4a9489707cf 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+d35a3777-5546-48b3-9809-73a84458a067 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+32aec042-9b63-49e1-a1eb-80d84c541190 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+50818c3e-ef10-42b7-ba45-ce709141f451 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+e344794f-157c-4d32-845f-f91f22f77440 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+154d3bb1-e6e2-4226-8139-37974c44ccb0 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+a57a80de-4420-4663-84ee-23b5fb557364 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+ddb78dcf-2afb-4e4d-98c2-6b7bcb186245 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+1e173951-5e27-4a81-bdba-23948cea8a95 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+f8593cb4-bd81-4566-a39d-ce9738d7c119 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+313e197e-a73f-45ea-919b-81ae81686786 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+501ed834-c870-43da-af6f-3dffff137d06 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+06fcdf08-f893-438e-b325-6a370c36e238 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+e3a86b08-0a9d-4574-a5cd-dd6cfd1b0583 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+dbe5169c-28bd-4ef0-bfc1-9a9536b760d7 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+72c70b30-5cef-46d2-bbc9-feb550a701a2 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+36d4e541-f95f-4719-a1d1-17f1c5b3bb24 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+f9d16dd7-0cf9-4592-8583-051dc02d95cd 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+717c9d9a-8d4b-4f05-b71a-609785144d0b 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+30843e27-314c-4f1e-a846-22f9947f1aaf 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+462b0183-fe02-43b2-a154-3af77e257040 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+93d1319d-30cd-4ab1-af50-762fcedbbe77 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+f1052384-272b-46a8-8c7e-da7d6056242b 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+ee983fc9-bfb6-4dbe-9a16-0a28c7635a8b 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+3d37864e-2912-4639-99c9-90264126f73e 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+5eae1ac3-319f-4ab3-91a3-a7a610ce7486 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+da1594fc-622a-4e65-8679-5dcd867f34f3 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+8924bdf4-7952-4741-aebc-69b5cd39101e 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+310f0395-41d4-4466-a575-81385aa53821 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+2dae1615-1e28-4e67-8462-28a4b04835b2 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+a7061186-a613-4eb6-bdbe-71a3fa68e33e 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+d0ed9e05-e4d6-4d91-91df-124452668cda 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+e92edd5f-a3ae-48d6-ab14-88ab181e77d1 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+ddbfb5c1-2292-4dca-a20c-c9e55b9c329f 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+65daeb00-0067-4e71-baf4-46517e1711d3 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+db3b5658-e3f1-44ea-bf6a-f90478ec87c5 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+eb5af544-792e-4636-98c6-12dfdc67868a 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+6826bbec-563c-4d0c-a1d6-85d932dec894 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+741b0ab3-ff08-45a9-b257-5259d4a12599 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+8e6cd052-2fb6-4f43-8f46-15e70709848d 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+f279b4ca-19d3-4e00-a662-8e5b00d0a812 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+77fcbea6-fba6-4483-a432-d6bffa3ecc9e 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+f484b380-00da-4811-9323-2bce5031c0b5 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+9e2cebb4-0570-432f-bc22-67a8d1ace987 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+8f8f3853-3972-400f-8d1d-f345298893f0 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+1163ae11-03d3-4556-a5b1-a7e9b9ca3247 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+3440fd18-e0df-4aa8-9e00-f26fed8661f3 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+f5541fd5-9427-4fb9-905f-70bdf9cec4a1 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+f0b19fe8-51af-4ea0-b365-72dde6e0ac66 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+809f1ebb-4841-41b6-b181-8b4b1908dcd0 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+c3ad80db-0225-475f-b9ab-a8bdb447f76d 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+40402220-7fc1-440a-a50d-11ef25df05ae 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+d8f54739-dfdc-44a0-9ad3-c6bb710cac94 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+f29f2ab5-93c0-459d-8f40-5a18bc091ca0 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+31587127-0a73-4040-bb11-943079eade7e 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+061e67b1-bb84-4c88-9165-5a026d67009a 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+11ad7b94-7910-47e5-8b73-b6da97e14f5c 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+c5f9893c-19e7-43ea-81b5-ed4d30325893 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+4a05889b-6f57-431b-b4e1-f402860ac3ed 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+fcb0cfc0-f4aa-40b6-8e59-0bfe1911158e 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+4330a5b6-8def-4319-a519-3b537d65b657 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+f718366f-27d8-4172-a7e4-d0d98e8d0e1d 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+031db2c3-4604-4726-b2d3-279f55c10d17 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+1d032488-e816-4f75-a20a-1463a5cf95bf 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+d21a8490-c6ab-49fb-bedd-8db7673f71aa 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+6b28c89a-46a5-4508-9f2b-20febc70b078 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+683e7481-9f45-4a02-92bc-370ec32cbbf1 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+dcd8fe37-4297-488d-ad24-c0458c8e3db0 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+c469672e-1145-48ba-81de-b627ce5cda79 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+6ba6037d-bb01-4bc2-8435-8f2dcfb26b88 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+f411f78f-6419-446b-924a-fe7c4edb955a 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+6b1a3fde-631c-4d72-895f-7d726e52bb49 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+dc9264bd-e84a-498f-8718-389bd15cd93b 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+a871934a-5b57-4bb5-8898-369a64932dba 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+420ce302-75d7-40de-bd48-448f58e85df2 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+88f9d957-af7d-4834-b740-44870dc284c9 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+07970f41-7694-4eea-a821-7b38ff639788 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+97b1e85a-a9e9-404a-89f1-3f5ed5ac9cba 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+10862d55-8fad-4c58-bd18-d61bcd10dee9 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+b7092f65-d368-45e8-85e0-e3cbdd848a25 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+fdca58ab-7df3-499c-bae5-153e40db727e 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+36bfcc11-2ebc-4c4f-9cb3-fbb96b24955a 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+69e9cd01-9be9-4135-beda-af01e89838ac 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+679bd936-6d57-4df6-aee7-935f34b473c8 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+41de5060-dc08-4a40-9506-0aaae8758422 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+0a5a3578-1b3e-4b74-a4b1-8ddcd0ecff74 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+89c1ce7b-f7e0-48f5-aecb-7ae004d89054 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+c7bce8df-c4b7-4859-ba5d-0349f757494f 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+f03cf355-029a-4a78-88a7-fdf2af962908 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+e423f4eb-3d31-464f-a19f-1f61fc23efd3 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+855778c7-7d02-446c-95de-70d0807dfa68 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+6125e8c8-405c-4bf8-8a49-bbe95adb8e7c 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+55290f1a-5a33-4d04-b78f-4a1c4a09d1db 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+a9d5f2a8-f238-4f00-b84e-4522d6abe9a5 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+8a607270-0e54-4911-83b2-5dde107fdad0 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+77567e79-039d-447a-bcb7-543ea31ebb72 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+32fb017c-cbaf-4f83-912b-8fed330a3845 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+a11b052c-17e6-42a6-b91a-9258863850ca 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+b4c87d20-debc-4a0d-befb-a88bfc0d04c3 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+6ed0ae3a-22bc-4aeb-8a80-36822bbb64bd 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+8f85fcfe-3ceb-402f-b4e5-6faa61bd9d1f 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+bd08c519-e651-44c1-a60d-0c9893e1b464 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+7a206672-a69c-4e6d-8cd2-d093221c7f94 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+3ef033ff-6266-4f16-9771-23c96d0d0325 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+d282df0b-93fd-4c8c-96fa-6ba4a232cce3 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+58ddc283-047e-4b3b-9694-fba27aa70768 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+36b7ac97-2441-4e3b-81a1-f999a3ec4ec9 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+c6a80b6e-2c5e-4161-8198-7988810e9ce3 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+c43503e0-8bc4-4ea1-ab0e-4e86f1c4e87a 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+f19b5865-fdcc-4ac5-b93b-51ddc621b274 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+1d280c90-deed-4ec8-9b5b-1a505054dcd1 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+f4ab014f-b679-42d2-b74b-3a36285cfa82 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+26c35107-f12e-4f00-acab-434f2fc8791b 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+c1aeb4f8-2e6b-40bd-8eef-c52c48456adc 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+a3177b33-ef9e-4f1b-8af0-6ce0a04b77be 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+c1e2c180-fafa-46d1-b24c-aa41f224d08d 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+a4201fa5-5c69-4e06-8d70-6e450f6095fb 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+425bf77d-3679-41f8-9cc3-5053e2fe8570 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+8116f811-00da-4aba-8d69-3998ce5e102c 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+59363ad7-e95c-4251-9758-c6ad0b0f8de1 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+bf0cb782-0562-4969-b75d-e95ec82ab2de 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+44f62ace-eba1-4fce-9e90-526a034f6128 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+3a468a4b-74f8-4f9f-87d6-15de43c3e657 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+04363d5b-f168-4326-9b78-5598c97204a7 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+0f9db03c-6f59-4778-8920-ada29a7516f0 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+0f025d9a-904a-4c75-bdc9-96d567342b52 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+393b2f39-556d-4da3-b9ff-0134a823b392 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+f9286c53-212d-4ef2-8c87-6246eb80c40f 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+bdd3c82c-f435-43b0-9b99-d36709734518 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+ecbcd1d1-9656-45a2-9c7a-86b738207207 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+e9718884-b094-44b7-b6de-8a3480d835df 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+8734bd11-3fa5-479d-8678-73b955a374ab 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+6adf55b7-d223-4e98-83de-913d5f43653f 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+b043d274-536e-469f-9d35-7bee364d1688 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+0d0509a4-7076-4d0e-a413-0c471c9f9eb7 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+10373657-bbdd-431a-a90d-8037ec9dd8a6 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+b44fce21-0881-49fd-b1a8-6dc9aea81db7 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+25e80265-aa40-4d95-a0fb-030ee479abfb 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+bcdb9f82-70fd-43e7-9b4d-9b9994867b4c 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+de3f8344-4a8e-47fa-8a7e-cf3c9114302b 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+1f49a79a-a598-4fb1-9422-fd363469232a 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+6a65410d-caed-45ef-b935-14e7e71051df 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+ebb445c0-a1d7-4994-ac38-842033473950 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+7c12a6c6-eb2a-48a5-b8c1-813d056c7afb 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+34422dc8-c5e5-4840-84cc-1bb6a1bdc4c0 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+27c9a79b-b1dd-4741-a376-aa97cca62bfe 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+6e07457e-9211-4eed-b0d1-7be4d6e4aa7d 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+381bbc8b-f2c9-499b-8ba8-36dd9aff815e 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+505f5698-3df9-489c-b048-573576edc714 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+3f7ded66-79c9-45ab-86fe-c04f15aa23ee 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+d9366bbd-83ce-456e-a56e-e8ea120763bc 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+4d5fa0d2-67e4-4516-9a8d-d18302dc69c2 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+0465eb7d-8a9e-4f9d-b2b3-4b2d2f52cea9 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+ba944193-e108-48b3-b33f-2984d45ea8cf 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+d35c8ae5-c1d2-48eb-b93e-bef0885650d6 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+13a9ab62-9441-4834-af75-9c9b70c6b635 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+915fb50b-6554-4f67-9ca0-8f9edfd32f2b 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+ab174220-f190-49fa-abcf-a16138b0598e 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+9f4f6662-8e50-4072-a464-baf73b217550 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+80c2e3a1-6633-4b75-beb3-bc74c410a263 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+6e51dabd-2b1c-429f-a807-cb8c3197b024 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+fe10c171-0dfd-492a-9fd9-f42b2d7078cb 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+c4dfe46e-24d1-4f5b-96c5-ed88439827c0 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+9657e722-fa22-4f22-adc4-b45db9d55d81 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+7cf2df88-338c-47a1-a39f-ac020bf9ec0f 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+1185c104-7a96-4244-9bc6-d49fb0c8b9ba 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+56a648d9-d722-4eba-abde-86684eb1e06d 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+f395d729-f00d-4fc9-92e3-aec32939d2ae 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+2da1fae8-610f-49a5-8e2b-264524c1f7e3 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+21220db6-a452-4310-b843-d36335cafe9a 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+83480394-bd5e-4cb6-93f0-ccbb86366091 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+3e9ab1b9-f6f6-4ae1-a118-2199f88e53a7 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+8e1a2c81-5eab-43fa-8fba-d54646b7862a 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+949ea8ed-10ce-459e-b7d0-98ce597b34d9 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+1dac05b0-fa3d-49f6-b928-80dfd9d1b11c 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+668aae3e-906d-4918-a827-0240f9c70ff2 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+24a3cf27-9506-4a6e-a168-3acd16b093f3 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+4346404f-ca2f-4bc8-818b-990ad4c7815b 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+1386a8af-8c51-4fba-a508-91ec916a43b3 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+eb552ed5-49c7-4f13-a1b1-02babd1a9b60 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+83a5f170-ad3d-418a-9492-77e73bdf3fc5 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+fb16de5b-ed29-4e71-bfff-cb4ebab5a1eb 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+67cd5fdc-a14b-490d-a5f0-9e8f6047bab0 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+08b059d5-1a83-4e44-a15f-41cd843a9c54 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+e5b8976f-5d81-4bc1-b383-b19e4cf9c9a2 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+5286bae2-940a-483d-b369-1be75aa2dd43 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+48213f71-99d1-4519-ad50-0bcf813062e0 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+cef953ac-2e2e-40d3-8736-89bd5aa78e23 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+c12f2c9d-82b2-4675-ac6b-3b8a1913545e 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+8d07c2c1-8b82-4269-9026-4356ce5055a2 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+32095147-f1b2-4ad4-b523-ed29dff91985 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+a42e93b9-4cb2-477d-bbe5-4d03af6bf5fb 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+78485ff7-87fb-41fc-820c-bfdceb922516 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+c8f6dff6-793d-4b19-8759-740f080cf2f6 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+84b6e9e8-87db-4152-83c8-106158f75d83 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+0e363f64-73b5-4dd4-97a3-5c04abfee026 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+b8adbdbd-b268-4a8f-8c81-39b8cc766190 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+4c24843f-d50d-44c0-9963-da02a2c35d35 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+56a6ac4e-f7e6-4caa-aab1-5e03eaf0238b 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+bc16f737-2f69-4ac3-9623-eb3e653db5cf 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+3048392a-2deb-4347-9f66-dab198071142 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+c593a016-91f0-4be8-bc71-754938c358f4 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+46401b0d-f034-4b0e-b8ca-3b8f0813efbf 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+70e6546e-39be-406a-a0d6-9736dbf352d4 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+392de7aa-0de6-467d-b655-6a39402cd6a5 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+284ef1af-1771-4319-9b0a-16d2e0f58132 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+3aea657e-4e9f-415b-aa2b-4d8076fe3053 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+40cc1155-27fa-4354-ab70-dddd53bdc899 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+fce9f1c3-1ca6-472d-bcfa-1b7db3e2bc52 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+13c5421d-77f2-4bc3-be3a-f838d687fc7d 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+1e822afa-cd60-48b4-b936-428a7f7176b4 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+14260805-5cc6-4876-a182-70ec0144d9f2 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+d4cba83e-6249-4c13-95bc-dcb2bc4c1ddb 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+e1485b3b-fea5-4a42-9022-ebdf19db4f95 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+c030b794-bb3d-44e1-aa9d-2d0b32f1c869 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+c6983886-8a30-41d0-884e-217c48b4ef17 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+5c73033e-69d6-4d59-a36f-8aa579c54ae0 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+869f190a-62c8-473a-8eca-279b49f93b60 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+c6366a56-27ae-442c-a23a-5abc1a0025cc 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+c30e7519-c5eb-4e41-85de-3ebc8a7dcd66 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+9312c92c-a802-4b67-b40f-2e88d72ae66e 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+1f2845be-c9b7-401a-b836-776050b517bb 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+64524c77-c93a-42b0-8b93-a37af8a8f283 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+f1886292-7386-438f-8a33-b5f45b7b0a4d 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+c612f244-adc1-4fb0-9dcc-135c06fc661d 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+04b88697-9042-44ea-a2c6-c5cdaaa239e6 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+348f7641-acf3-46bb-98c1-be0e51aae861 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+47eda4c8-bad2-49cd-b746-af2a88ae38d3 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+c6ba095a-c1e0-4aee-a93c-7f79625aab61 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+96a8104f-121a-4bbd-aa34-5727f3f4393e 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+17f27482-1e85-422c-820a-a6d1c8d37f63 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+ace7f999-486e-42d0-b129-b6e3fd532d3d 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+3b19a082-cfed-4bbe-bcef-d32ea7c9bc2e 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+37c50f24-3859-458a-95ff-97ace46ebc51 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+47895fb2-1797-4319-9aae-fe83e07ae8b2 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+913a539d-a51d-42ed-bc11-5cfbd18bead5 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+6e7797ab-5166-42eb-84ae-1c3df69f2d9d 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+b499e60c-98de-48b9-8e20-ab7e34ea3737 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+dda58da8-076b-47c8-a775-50acecff81d7 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+218f6a90-599d-4619-94a0-0ffcde2c511c 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+1ab0ed81-d41d-4c48-b5be-683ad099c86f 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+c8271335-c9d7-4035-be50-e258260c2dbc 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+0096d97f-d0d4-42d9-8efd-9bdd06920381 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+46d9e4b9-a5d3-4743-9872-607be11c5215 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+4cae358e-f31d-48a6-a243-062ae760e139 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+64223883-ce57-4133-8b36-e62ab445111d 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+4badd1f7-8914-43c3-aa20-f10cea6bead1 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+b3958c37-ad0c-49c6-a606-fa57f6e51c8f 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+e2be163d-883c-4ef9-8647-01a8738e8e2e 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+fb9fc9ff-461a-45f9-adf8-436bfc16eea6 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+1e3eecea-dfd0-45e6-8ca1-3b2caea57d9d 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+f91d489d-1956-4ef1-a664-6116fa5617de 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+8f6d6a8e-8d5b-42a3-84f4-2bb206229fea 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+3ba8cd5e-de9a-4c83-8284-a5dc3c1eed8c 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+25211844-2ce7-4d8f-88fe-a1796146c10e 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+fd54cba7-7365-42ef-8bfc-083006c79c36 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+047696cd-2d4d-4bad-a53b-cf83890eb750 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+d6333f51-a198-41d5-9242-9489ba1d53f6 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+38951dbb-b9fb-4569-b238-8a0efad54fa6 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+23f82ade-07d7-485f-ab55-2c2862e15ce0 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+32da391e-9d50-425f-a920-907e47b7de30 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+bccffb8a-ecd6-4def-9f95-43c996b8f60f 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+ba645fb5-572c-40d9-af33-a77bb71aa8b3 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+387c18d3-8109-46e2-82c9-1ef5a0141672 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+719e0ecb-a6e7-4346-a3e7-70fe644a800b 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+394ea39f-44bc-42bf-b082-e1dd1b5d0ebf 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+91acd5e6-cd83-4d4f-8d73-df1fbbeb0cb1 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+01fbd36f-2c5f-4373-a0e9-8f33dde89af4 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+594832bd-7608-43f3-8b62-d772f7bc96c3 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+e0709342-7a3d-44b0-85a5-79771ca0a0bf 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+993bcd44-f17c-48a8-b97c-a388846e2842 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+f1fc1754-d0c4-4560-ab40-0a203685a051 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+85eeb209-0354-46f7-978b-3a12691436d8 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+f00a6648-8bf3-4ea9-83d3-ce5fe570b263 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+1e5a50bc-989b-45d9-b887-538fddcf3056 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+cc1be1f1-08ae-4693-ba3a-85030f63a1bc 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+7a2b95a5-e95e-43a4-aeab-e13c763e40e5 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+787fd5c5-a115-46bc-8ec8-74c488f2c7d6 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+632d61a3-8840-43ff-b497-a3f567b23f43 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+e89c88c9-49ab-4bcd-a5ca-06d90d662fab 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+7080caa1-396e-4d05-83d5-aea895307f02 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+bd802c62-3cb7-415c-98ae-6bcc6bf1bb92 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+7cada53d-e32f-4d97-8e37-485a5a1319df 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+89ee81f9-1c93-413a-8ca6-1fe5b8e410da 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+fe57c0f1-e1d4-49ca-8e75-ff07372d66e7 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+2f3794e2-700a-4d8b-8057-112f9cbfce00 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+c09f8fe2-4eda-4840-ae4b-60aedef1e23c 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+ece411db-44ba-470c-90f4-0901f6b586c1 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+52ddc85f-ca6b-404b-9fc4-b1d63169f60d 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+d209a978-d867-4c0d-9460-4266d4f6e5d3 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+dfe67d6d-99f6-449e-8966-82cd048b8668 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+4bef48a8-5f63-4bb3-80ec-7b0de65441ff 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+d420d7ec-e173-4967-8a34-a9d96e2a1b56 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+20111bc1-3997-4926-94c9-4dc83f41738a 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+eb37742b-f037-4ddf-b2a4-0aab93451796 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+d0f3080d-e1d9-444f-b740-7d56a01b8fde 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+99f4559d-319e-4c1d-b67c-72ec09c64b86 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+a5368bc5-864b-438b-89f8-59a0ccb519ec 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+dad3e07e-d767-4cde-9495-262ac966b44c 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+383f8fea-3ec7-40c1-9770-5978d26c0acf 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+503dd4b2-205c-4f72-937c-867bd15266f1 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+c57caa14-aa54-4447-b29e-60789891e815 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+c644d4dd-b03e-4b28-9c74-ef96ff88f978 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+89155529-baf4-4c0c-93f2-914e790ebe7a 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+9a83b543-1be6-4f94-8565-d0b2c25d0623 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+f2498e82-5a5b-4d09-b8e4-422b85d4b9d5 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+7c00cbff-a0d4-48a5-8c96-e0a905bc96a8 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+3f5f7eab-574d-4110-b0ee-848ba1f4286a 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+7ceff539-9449-4001-be66-40d0e92cafcc 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+0ff6705e-42d4-425a-962e-a7eff241ba90 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+faf0471c-da1e-42d3-a5ff-f350a1fb8dc7 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+83aae8c8-b4b4-48c2-8ddc-e422ef477ff6 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+ab291077-ebf9-442f-8e4e-e23bb5609e50 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+6eb8eb40-a684-4816-8987-540eb2205f7d 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+ce20225b-809f-47f0-b413-c0650684bac8 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+556f52cb-11e4-48ee-976e-47d8be8cb3ba 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+e3b63b38-80fc-40d3-8746-061a0707a7eb 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+0261eea3-d0ea-40b7-898b-c98c253fd2f1 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+5b667bcd-38f0-4f86-bef8-90880f2e3844 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+e0debed8-a869-416f-a7d1-122eb5e7d72f 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+ea0866dc-e7c4-4160-9a83-25793af447b5 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+1e9c7e76-ea9c-45b6-bc9b-da2ba248b740 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+431b7d6c-a647-45e8-b159-f715d1d95f80 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+999a5c34-98e2-4340-9236-fd1f9ece7d52 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+736b90f7-a1cb-4cc2-89f8-2a12195e135f 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+2696909a-1680-4afc-8f47-b68d9d32a89d 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+65884af5-4364-4741-a987-da41e3f26515 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+30da2365-44c0-4ec8-9f60-14ce29c711c3 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+27c6ca24-c95e-4f2d-939f-f26ce8a91434 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+2d24165f-5aef-4773-981b-3c144e7814c3 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+4bcec49b-862f-4d12-add1-3a70953a1f3e 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+16d02dfe-a16b-45b4-88a9-cd799192aac4 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+0c4fd698-3084-4c72-8317-5b599c76fbf7 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+7c43ae9c-268f-4972-9c4b-2e77abc4fc40 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+d2480f61-5560-4848-b389-e516c8d183b8 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+5d5b022f-49c5-4d84-a255-4e6417497777 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+0795cb54-2483-4104-9301-0b5b5715ccc6 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+0adc9173-6c13-4d47-a9fd-d13513de39c9 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+1089f55f-fdc4-4db6-a39c-fd1d7e2ffb47 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+e1bc3617-bae8-4e54-a30e-da827c74a7e7 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+b7eed9df-e7a3-4750-8157-906848ac9428 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+e394a06d-823d-4625-869d-e46908dae267 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+fda6d15d-173c-42e3-a9a5-80a9ba871df3 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+cd811716-6fd6-4b97-a661-2720cf50cea3 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+87810f23-07ae-4d0a-a39d-9a7c7ee6f5d6 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+1e42363a-4a9d-469d-af49-a2e340f56e99 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+abe452b9-eb88-40b0-9797-1bc4fb3e9b79 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+c310c8f5-7576-44f1-8b8a-6ee7285e9875 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+0e1c6598-fe38-44ce-bee8-1dcff21fcbfb 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+275a1046-c27f-4042-87cf-1e48956553eb 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+1f7b5881-c77d-4bbe-a845-e40b441cc782 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+7199ee96-91fe-4ecf-bb30-b1362b6a26a0 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+cd117416-e6b0-4a7d-8e59-cb7ea9fe8a80 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+644c3e59-39cb-4d10-900b-86e590cdbf0c 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+98429128-77d4-4430-82e2-5e7a3cb20c5e 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+675275a7-ebbd-4612-ae8a-f9cd5aa987f1 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+2ea7f62b-1c80-4fad-8539-eb9cb3fa99b2 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+8559925f-7e71-4670-ad5e-e9ee1065d37f 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+90a95e3f-b8c1-4b76-9fa5-136f0ff71fdd 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+74d1f975-3a12-4f33-b239-866911d30e52 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+d85597af-dec9-4e43-b76b-3fc4f72d373c 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+7caaa9da-6e80-4605-ab16-8317405a60d9 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+b8d6c3c8-d986-4e43-8bba-023716647932 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+eafda410-2481-42d7-b68f-651fb0db71d8 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+c62fb954-25b9-4c55-bda3-83c77c4b18d8 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+7d575776-efa2-4771-adf5-bb73a4f420a6 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+e911d726-463a-413a-8753-05e49e3643aa 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+d3620d7e-b6a3-40f1-9707-69c7f336c45d 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+f4016351-b61e-4e42-be00-f28b8a19aa3a 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+3f1adb0f-fe86-4cf2-b360-d5742c6ed8c6 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+bf7090cd-8372-48af-a7ea-53b6d4244f3f 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+ef898170-fdd8-4766-8257-5d75232ec533 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+547686f2-3fa4-4590-a3d6-53bafa406c33 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+4ab766c6-ca10-4c78-9b8b-0190b374f591 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+6a5f5fff-2652-4091-b824-b00b46357717 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+c1de82c5-60ac-4ed1-ad89-f69dbb0cee7d 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+f9dcfc38-8030-4557-8f41-e9932bb8be55 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+68babb96-72ad-4610-b75b-758d09db2274 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+82cb5702-d1e7-4d2b-b8cc-c10dd8d94fab 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+7d2df269-537c-42b2-96c2-035bcc9efe3c 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+f343979d-315a-4d4e-a769-06082ec3e7fb 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+8d23b1d5-5395-4418-813c-52cd004d5153 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+396becc4-8fe6-4a72-aa73-20793f1c7be5 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+64dba79c-7bd6-4028-a746-25e3502253c4 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+b3010436-7215-4655-8e20-190c33fc6354 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+dd4c4125-3153-4623-8077-eb59b709c1f3 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+cf4bd0ba-4366-4286-9f00-397e4f35108a 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+9a29c7d7-0e1c-4a12-b2a8-7cd0065c5839 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+77a716e3-b65f-4f37-b38c-5e0bbfce4636 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+128f5cdc-781c-4a6e-8165-4962d16202ca 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+d40e5008-d421-4e0b-918c-b7ef2fe3ae6e 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+65443902-5cb8-4ae6-9fd2-6ea310a5a9e5 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+03847b14-8449-4341-8874-9c77e195fbc4 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+17796605-4b80-4f95-a04e-9302e217a91b 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+87e7dd99-f3fa-44f8-821d-c56d90c9c938 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+8edf233e-d6ed-436f-95d7-cdacb9239cf1 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+d926d9df-9b99-478c-9bd6-526dbb1498fb 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+529c0070-53eb-48d3-8800-5f8223e6f712 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+01983c7b-01d0-4172-bc1d-021eb3afcc33 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+6695de5f-04b8-4e1c-b825-f4b10e442ec1 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+59bda8a2-98e3-418e-8ce5-6a1cbd38f969 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+08d82a27-c0d6-401e-9182-b3cdba86ce20 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+46f91890-bc0e-4798-a8a7-0a4818f83fb0 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+cb6778b8-e56c-4e12-8f2a-a645f356854a 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+a537da2b-0be7-4876-880f-a85c34291be2 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+97647e5c-07f6-49cb-85a7-ded2733dff11 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+3a8c9da4-9433-4ce1-9133-e6ef5a8f7b92 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+bd7dd070-1252-45ce-a90b-be757316d87c 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+0f4c7baf-5ff4-4028-b17a-adf1a80ad500 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+31f2ec70-392a-4439-9c7a-9424861372fb 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+aa79990c-de8a-406a-8866-12a241be1f44 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+663ef61c-9652-4dbd-a9f0-d38d089f4765 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+5f6cfa4a-b536-4612-8185-2c4349211fcc 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+1b55043b-609a-4f63-8f14-eb1b7bdefb1a 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+951f86f1-6261-4170-938f-0a58c2716e64 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+e79d48df-e7a8-4c84-aab8-7fb932c93e1a 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+e30fe775-281b-49c6-900b-ccbe5a2dd085 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+0d251840-943c-4de4-ac15-802b03359d8b 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+6b65cfa9-6c49-41a3-9c5a-31640c07ecc4 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+0509c1fc-0598-4e1d-b21b-edaaf8e46764 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+ab14fe2a-aac7-476e-b6d0-ff1e34dabfa3 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+12582b7a-5ea6-4254-be3c-c36d281907de 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+06ba1b09-6bc6-4a27-abd6-408ff86649cb 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+136ff2cc-86f8-4ef9-b7bd-663f4fc60d40 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+c677c3b6-502c-4984-8617-6ed5857b57e4 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+ce00d854-3743-4277-8635-c9c7e6f38457 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+dab988a8-2a1d-4ca7-9a5f-4a367db7b8e8 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+2c10c5da-16a4-4177-8057-77915de3ceb2 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+09b54043-214a-4b78-ae8b-063227a62824 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+5066e451-8ea4-453a-b770-c9b3dcf642a8 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+c968f988-6c27-4e9b-a5cc-5a665a8e0e5d 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+25eb422f-3664-4148-bcc2-0cbf4b9d69f5 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+a3b679de-4f51-4e68-8b34-531caf6b7bf9 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+237a7209-6a69-4f7c-9c23-25e860c3262c 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+0a333ea7-6a0b-4cc0-9b0a-bc0edef6a8ef 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+221628be-a624-4f02-8992-a7155cb98deb 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+1bb48463-34fc-42d4-a7d7-6791491521c4 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+5e535eed-9529-4b4d-9dc3-4610d2ed78c4 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+4bb95374-2967-4359-baac-5d70ab1db604 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+8dc1df24-1d28-4e3f-8507-89b54f0d0ee1 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+06fc65de-2640-47af-ab02-7290787b4cca 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+b0d73076-b853-4db8-983c-c3792077466e 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+0752e7fe-55c3-4e06-a006-6292fa31fafb 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+0e09f285-ae52-4489-9099-a1bb7e895b0a 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+17d49639-18a8-4e37-879a-af44cf0f437b 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+06832b9c-39f6-4613-953b-3de34301435f 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+b14ac11e-9da2-4b87-b610-1961a9bcc114 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+53f9478e-76ea-4a03-8147-dcbf9f5eeac7 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+c55db56d-a7b4-41c8-9c30-9b6cfc925432 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+37e8ca8e-80e0-4d94-b9ba-efc027208102 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+fe74be3d-890f-4283-8148-93e2a16188b2 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+696c8669-2d6d-4f01-9463-09ec84849d56 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+f988d5e6-09ee-4946-9791-8cfbdd2db35c 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+ad0ea647-b0dc-4f8b-8687-ac6d791dacb4 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+d7b2ae3f-461e-46e4-a6c6-343de7893d26 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+285e65df-beb2-4c99-a51c-c7166afc987b 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+ceabe596-d11c-4028-9889-4eb3e2fa8736 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+5cfde145-f08d-4096-ab5e-9b4356e8e6d8 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+02cd9a6f-fa00-4473-bbed-e8cfb64981eb 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+46dac471-e099-4c27-83c1-ccadfe4b5374 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+8ffae5fa-503d-4c4a-93d0-085034e51b27 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+3105c773-d91d-4203-a6fc-0c5c0313f6da 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+11bb0d4b-73e9-427f-ab3c-69050ff83826 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+1a368788-c7a0-42e9-865a-88651c53b809 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+77fc748c-8b1c-4625-8cf8-0f2a0c2c5fed 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+3f77fd67-f1f0-4234-baa8-60349bc41500 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+f2aaa9d2-3d64-4eaa-be07-c469e3471ecc 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+7cf2928c-10a0-4772-a93a-ec40bd538c71 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+7d6e1153-beae-455c-9ad1-7a771f03444a 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+5061183e-9ef0-4690-9af1-b3ffb0b64566 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+4d66c79e-92d5-46be-a893-28500f91301d 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+e9bbc664-9346-447f-82e7-93ccfac128a1 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+e2bc5309-f780-4dab-8653-0803074159c5 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+83208da4-14f1-4a9f-97ad-f4e5d427701e 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+de4bc292-de87-47d5-ad95-c12cb9528b2f 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+695804e5-1596-4e2b-8582-c19e59d0a3d8 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+aabaa450-3a85-49f5-97e4-98bffb440241 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+89e132c9-4300-439f-ba6a-1ac86ad0573f 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+48807515-a976-40bd-b189-81c1ee6bad4e 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+7193f169-44af-4e8b-99a9-7dd98c87049e 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+6e78a89f-0b7b-4b09-a26f-16db49914c14 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+46f94d07-f4b5-43a8-aab4-44c2af5c83ce 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+9e0356bb-eadb-4d45-bde3-b97f096f36f3 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+f5183fa0-bfc3-4e44-93b2-eb9397a43a75 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+6b5b2fb1-c093-4a1c-8c85-10c1b76423d1 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+a302d085-2f70-4358-9d4c-a2ccd44ad57c 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+43a89206-8dbd-4fb4-b2e0-67d2b456f527 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+4b1e2527-0c3c-44ac-bb9d-635d6dd84adf 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+ccc3e9e1-cd18-4b8c-a3ca-7889f68be504 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+d0eae5a0-3010-40f8-b353-ed6d51624daf 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+4080d719-425c-4426-acc8-47cc05c7557e 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+a9cecbff-3e74-4f7e-aae1-b0f6b5d669c1 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+218872bd-6a10-4dbc-b7e8-ed68a16768d4 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+8217649d-5cd2-43eb-b0b3-28b7894552a0 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+57bd2797-c21a-4241-ba9e-410acd765ddb 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+26728dfa-8dc2-4fee-a592-3f146833c996 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+fcd9b2a5-3ad0-49fe-b0e1-b661ef20dc99 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+8d5fa97e-8544-412d-be86-abf691b39338 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+7a0fbd61-0948-4e02-8451-d8a8e51c1627 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+f2d7cb66-47ef-451b-9b5e-d5d9dbb0c0ee 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+4721efab-3b5c-485c-89b1-6669660711f8 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+64c2fbc9-8483-4801-af8a-05e67972a387 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+8e4a355a-67d3-44ae-8ad7-70070cddc95b 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+6a0d817a-bf1d-45a6-bf9a-9522aa7da8b9 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+509ce298-7b6e-4cfd-8c49-08074d4ac5f2 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+5796bf94-9c5c-4497-9818-c36a9cf7c1bc 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+77c9704f-171e-4273-b8d4-966e39e29981 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+434641c6-5c86-468d-ab61-082fc8ca4065 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+ac01b6ea-9fab-435f-99c7-8e54a4835452 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+c129badc-733d-4313-bdf1-18c0ab106365 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+f0f001c5-8be9-4609-b092-8ad9b62d74f4 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+0c1a1e1f-915a-4238-bf15-b585ef64f73b 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+abcd5156-b02f-46aa-b59b-0a6dd19ef5c3 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+7f51e45f-f2ad-430d-890e-7f9728f94097 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+e9f70e32-8058-4f2b-a2b5-a404e21c8f80 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+eb259b98-7dac-48aa-bd97-47e7feca93e8 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+f9ef55be-c84e-474d-bef6-9b0f4311ec08 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+c058883f-fdf0-4cf3-a933-a801bbf21551 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+93be9ac6-655b-4179-8a5f-e20b10e9e863 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+1498897c-c354-4c6e-ab2b-39ea94be9873 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+06f06b4c-3731-4c3a-b61a-46ee2bc79e22 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+4d328476-57a2-4dc2-b294-4894e52c5470 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+47071bd9-ea7a-43f9-8829-a79778e641f7 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+5f5c7ba3-2b5c-492e-9c2c-6cdd84fa2715 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+6c075fbb-9a0e-4366-99ce-a5b280d82473 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+ffbf68d0-9087-4303-a714-437cf8a292fc 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+6545e4cb-a75e-497d-b999-23e6f9f36a4f 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+b2d03312-bfdd-4112-9cd2-c2684e531db2 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+e71428f2-3c93-4194-a0b8-ff38f28a6b51 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+49ded053-1d8d-4a44-a827-097003e90765 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+33e6bf72-fa0b-45a0-9a4f-4df6ee0807d1 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+b88bc655-6c49-4f5d-b027-8bf5d738ad55 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+c862e673-3117-4495-a7e2-8a245f31ec9f 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+df74e3b1-1cc5-49e5-95eb-3c57a973f0b3 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+26a9f4aa-74d0-44c0-ba1e-63ff240aff5a 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+c8fb46c1-11b6-4efa-9571-a0da29e9091f 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+a662517b-5e71-4c8d-ad5a-6467ef0cb99d 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+2d401162-d7e3-4df4-8304-c47d12b04f50 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+b27ad785-c0d2-46e5-af66-c6752170aa29 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+6168220c-baff-4df7-9cda-aa99b088c013 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+a9e8b421-0efa-460c-aacd-a041cdce60a4 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+0dba1a59-c011-4586-b4c0-f4b39b1969cf 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+f3dc6c67-c003-4139-811d-668e9ed6ed8a 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+7c66eb26-a278-4033-af17-d795b90dfe50 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+c7ced4d7-8610-4c06-a3a8-d78d4116ff4b 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+b38b925b-6e90-46c3-84fb-cbe75a37e2cf 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+69263558-632c-4fef-bbb7-27ca77b45655 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+1fb72ad1-be6a-4793-b125-3b4773b3c43c 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+e364d3f5-30d1-4918-b77b-374ecca9b302 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+2233c78b-9624-435e-b091-8840168ab84a 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+7404b7e4-1a6b-4109-b4c2-7ca280c8ef65 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+7c77c29b-918c-4c75-927e-ebb1f7510e9f 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+9f7f6729-d73e-4463-be79-f5fcab0d1ff4 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+f21c5ff9-e381-43fa-88f7-3c7be93c4269 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+d735c886-b664-4c16-87f0-3d4ac32043a7 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+88bdad29-e625-4761-937f-0e781706690a 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+690167bd-40cb-4aa6-aa80-71bb3bfb2892 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+66974a2c-b829-4e71-ab2a-e73a200fb2f2 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+2a42ffcd-411f-4367-9774-0edc4051f30d 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+97130dc7-7413-4b93-8342-2aa68611cbc7 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+0d9293c6-695d-409b-b626-e061978384cb 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+55659b2a-f7f2-43d6-8fbf-7a7748f5bca5 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+f246705d-234b-41ac-a24c-03cd0ac3dea3 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+ac406220-2e5f-4c45-b5be-48a25fd1f7c8 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+36aedd25-1f03-4256-97ae-6c5f2cee7a01 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+e79edc05-69a2-4baa-8dd6-c4db3e972af2 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+87a48d6b-4c92-4a8a-8984-3eb250394839 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+82f426c3-b411-465a-8009-b08db984e136 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+ebca990d-f704-4c95-a677-33a44994ba6d 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+aa74240e-de8c-464a-a67f-79d9e529e251 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+0b510e67-c490-4e38-a853-0786419a173e 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+8ecde060-c57c-4e88-bcce-b2d157e54804 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+dcb01120-068f-4ddd-86e5-d627aafdba59 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+a30e47a0-ff5f-4001-860d-d3d3dff938d9 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+9009b91a-8a26-4883-a74e-e6c477325c0b 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+c41fb9e3-5467-49a1-9e84-23c3a4c5dbaa 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+5c88f19a-838c-416a-aff3-e520da75b4f1 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+8cf8aa69-eafe-453c-9ed7-e862af1bcfe8 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+239b99e9-dec8-49ac-b769-8c3d0bb3af16 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+cd7dfb99-dead-4319-b897-c7c70ab9a0b2 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+5b05b3e4-7c71-454f-b4e3-2159ab02359a 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+e152cb36-a770-48b8-9703-9b06b1eeb5c3 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+5b5ef50e-b224-45c6-bdbe-de6b4c19e3ac 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+7d93b591-f8fd-4646-8137-d04a27198b50 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+4fb3b28b-aa97-42ba-acff-a285a2ce1aa3 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 logoFileUrl Logo file \N \N
+77024015-95eb-45ad-ac7f-d8c15a52cabd 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 faviconFileUrl Favicon file \N \N
+48107d3b-9423-45f4-bf33-5ff1e76eaf65 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginBackgroundFileUrl Login Background file \N \N
+431eeb69-cffe-4d56-8b96-d94a142d4784 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampImageFileUrl Stamp Image file \N \N
+84e28df8-fb74-4c5a-81ad-da38e5d8d62b 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 customCssFileUrl Custom CSS file \N \N
+55743bb9-02c2-4b08-8e7c-2b97d6a1a23e 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 primaryColor Primary Color value \N \N
+82167960-4777-4744-a12c-0d08b8f7ca1c 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 secondaryColor Secondary Color value \N \N
+34e19545-74f0-48c7-84e7-1128305c14ff 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 accentColor Accent Color value \N \N
+7dbe4649-7a9a-41fb-ba8d-370341e08edf 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginTitle Login Title value \N \N
+66e2c3a0-3a62-42d7-890d-4c903a73da57 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 loginSubtitle Login Subtitle value \N \N
+a2fe66ee-299e-40f1-ac19-2818e18a7f3c 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 sidebarColor Sidebar Color value \N \N
+04591f98-845c-4832-9374-7087ed98a1cd 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 headerColor Header Color value \N \N
+40453f8a-d733-4c52-9839-6a2c79a7b986 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 stampText Stamp Text value \N \N
+73470f17-a011-43f7-9ca0-5061eb767e15 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 footerText Footer Text value \N \N
+199fe2a6-647c-4dde-bf07-01dde3b6cecb 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportEmail Support Email value \N \N
+421e4793-2345-4a49-9104-369769f7fcd2 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 supportPhone Support Phone value \N \N
+932909fc-5f8a-40c7-9b72-421b22e6e7b4 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 180541c3-a1d8-49a8-a972-51df8f07ec64 logoFileUrl Logo file \N \N
+14ff41d3-80a6-4c7e-888b-64ad2d0f3345 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 180541c3-a1d8-49a8-a972-51df8f07ec64 faviconFileUrl Favicon file \N \N
+8e0f8f82-cd1c-4ce0-b519-15058f61a07d 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 180541c3-a1d8-49a8-a972-51df8f07ec64 loginBackgroundFileUrl Login Background file \N \N
+3a0fa454-5727-4837-b788-970627df6660 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 180541c3-a1d8-49a8-a972-51df8f07ec64 stampImageFileUrl Stamp Image file \N \N
+7b836b4f-e49f-437f-b085-252470dd40bb 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 180541c3-a1d8-49a8-a972-51df8f07ec64 customCssFileUrl Custom CSS file \N \N
+d19d6e39-2e92-4546-99b8-b3fe5a4b7ed0 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 180541c3-a1d8-49a8-a972-51df8f07ec64 primaryColor Primary Color value \N \N
+f37e80ea-59d7-4151-abbe-c263913c0086 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 180541c3-a1d8-49a8-a972-51df8f07ec64 secondaryColor Secondary Color value \N \N
+158b80f4-073c-43f5-8c5b-896f19a98430 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 180541c3-a1d8-49a8-a972-51df8f07ec64 accentColor Accent Color value \N \N
+d81e54ab-7455-4f5b-bafe-9398e5daad6f 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 180541c3-a1d8-49a8-a972-51df8f07ec64 loginTitle Login Title value \N \N
+c32c5ea4-82c3-4b74-97b4-e4ca82a291ec 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 180541c3-a1d8-49a8-a972-51df8f07ec64 loginSubtitle Login Subtitle value \N \N
+96913362-e1d7-45ae-a30b-19e4004cba09 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 180541c3-a1d8-49a8-a972-51df8f07ec64 sidebarColor Sidebar Color value \N \N
+22b414d3-2b57-49df-aba6-b05ac6a33203 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 180541c3-a1d8-49a8-a972-51df8f07ec64 headerColor Header Color value \N \N
+1d55ef3f-74e7-4a14-b764-05b8bca08b9b 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 180541c3-a1d8-49a8-a972-51df8f07ec64 stampText Stamp Text value \N \N
+5760e2c6-1f58-4bb0-8915-b0707cd7d7ea 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 180541c3-a1d8-49a8-a972-51df8f07ec64 footerText Footer Text value \N \N
+bcf4815c-82d9-4b14-bf5e-29fcd81a06a9 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 180541c3-a1d8-49a8-a972-51df8f07ec64 supportEmail Support Email value \N \N
+a4f04c8d-2f4f-435a-afc6-7097cb01d929 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 180541c3-a1d8-49a8-a972-51df8f07ec64 supportPhone Support Phone value \N \N
+9d44f2a9-293b-4fb5-9cf5-b263d8b4e008 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 ecfad834-390e-49ca-87f0-5dd217e629fb logoFileUrl Logo file \N \N
+8b41be2d-5a01-4952-83b0-7f9bc4eae5f8 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 ecfad834-390e-49ca-87f0-5dd217e629fb faviconFileUrl Favicon file \N \N
+8f2c60cc-821d-4b62-8f5a-fdbff098530e 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 ecfad834-390e-49ca-87f0-5dd217e629fb loginBackgroundFileUrl Login Background file \N \N
+b5d06fab-a451-4083-b3da-a53fc1eead7c 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 ecfad834-390e-49ca-87f0-5dd217e629fb stampImageFileUrl Stamp Image file \N \N
+3c860cde-2887-4574-800b-7ad0b8eba052 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 ecfad834-390e-49ca-87f0-5dd217e629fb customCssFileUrl Custom CSS file \N \N
+8fb77277-59d1-4950-ab56-9085f9884bcd 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 ecfad834-390e-49ca-87f0-5dd217e629fb primaryColor Primary Color value \N \N
+427087e9-8b66-44c5-809e-ed85f09140d4 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 ecfad834-390e-49ca-87f0-5dd217e629fb secondaryColor Secondary Color value \N \N
+309e32f4-f546-48f2-8133-e945e0ff013b 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 ecfad834-390e-49ca-87f0-5dd217e629fb accentColor Accent Color value \N \N
+3f4845e1-8be1-4be2-8ed7-78ed8aec0396 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 ecfad834-390e-49ca-87f0-5dd217e629fb loginTitle Login Title value \N \N
+baa79bbb-48d4-4c86-bafc-c873edd4a087 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 ecfad834-390e-49ca-87f0-5dd217e629fb loginSubtitle Login Subtitle value \N \N
+6957444b-b7d4-41fa-9dc4-730b8f5e7671 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 ecfad834-390e-49ca-87f0-5dd217e629fb sidebarColor Sidebar Color value \N \N
+900e1423-e48a-46f3-bd6b-761e78e8a741 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 ecfad834-390e-49ca-87f0-5dd217e629fb headerColor Header Color value \N \N
+d9c75215-00ff-4cda-8048-8887055181b8 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 ecfad834-390e-49ca-87f0-5dd217e629fb stampText Stamp Text value \N \N
+23772e24-781d-446a-8ed8-a1f73a240522 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 ecfad834-390e-49ca-87f0-5dd217e629fb footerText Footer Text value \N \N
+8c243a9c-99c9-493d-8af6-28a0a1d3dfc6 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 ecfad834-390e-49ca-87f0-5dd217e629fb supportEmail Support Email value \N \N
+350cbbee-13f9-400c-ba5b-00244ee88cfd 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 ecfad834-390e-49ca-87f0-5dd217e629fb supportPhone Support Phone value \N \N
+b2560fc1-37a8-4daa-8a9b-10b0857d077f 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 65da097d-d9a7-42f9-8445-c60218333a53 logoFileUrl Logo file \N \N
+85237e5a-eb3d-483a-84cb-1be85d8f1385 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 65da097d-d9a7-42f9-8445-c60218333a53 faviconFileUrl Favicon file \N \N
+3419ab41-5a81-455e-981f-78fd95629849 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 65da097d-d9a7-42f9-8445-c60218333a53 loginBackgroundFileUrl Login Background file \N \N
+889e47f7-bb46-4863-aa02-0e3e5dfb1713 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 65da097d-d9a7-42f9-8445-c60218333a53 stampImageFileUrl Stamp Image file \N \N
+f86a09d1-0171-4f1b-81e8-0f514823e7c8 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 65da097d-d9a7-42f9-8445-c60218333a53 customCssFileUrl Custom CSS file \N \N
+9f9372e2-3428-4a4e-98c5-a89640c4f615 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 65da097d-d9a7-42f9-8445-c60218333a53 primaryColor Primary Color value \N \N
+e4b06185-1082-4eee-b34c-e7dc035ec5bc 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 65da097d-d9a7-42f9-8445-c60218333a53 secondaryColor Secondary Color value \N \N
+6caa0780-8f12-432b-9d49-16aa5e7daf40 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 65da097d-d9a7-42f9-8445-c60218333a53 accentColor Accent Color value \N \N
+db205888-6afe-4a4e-bff0-f78e6af4a36a 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 65da097d-d9a7-42f9-8445-c60218333a53 loginTitle Login Title value \N \N
+6ed576d5-5b3b-48ab-b2df-25cca6d1daa1 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 65da097d-d9a7-42f9-8445-c60218333a53 loginSubtitle Login Subtitle value \N \N
+7579a64d-0da7-40ab-8c48-237a591edd87 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 65da097d-d9a7-42f9-8445-c60218333a53 sidebarColor Sidebar Color value \N \N
+a0057957-182f-4c6b-95c7-973ce06eb1d8 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 65da097d-d9a7-42f9-8445-c60218333a53 headerColor Header Color value \N \N
+dfe02559-0835-4ee6-b9a6-30990f8f2782 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 65da097d-d9a7-42f9-8445-c60218333a53 stampText Stamp Text value \N \N
+81bfd32f-df51-4140-82c4-47280c11c687 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 65da097d-d9a7-42f9-8445-c60218333a53 footerText Footer Text value \N \N
+9ab216b0-ebba-4262-8842-fba67a89a8cc 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 65da097d-d9a7-42f9-8445-c60218333a53 supportEmail Support Email value \N \N
+ec1c3cf7-d5ee-45dd-935d-85ba5ee5fd49 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 65da097d-d9a7-42f9-8445-c60218333a53 supportPhone Support Phone value \N \N
+38186126-949f-45cf-be20-a1711c8b41c8 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 4ebcc2dd-4c61-4085-bff9-89f505dea02a logoFileUrl Logo file \N \N
+a1a1b3b8-a49b-4c80-91e5-ff58bda13573 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 4ebcc2dd-4c61-4085-bff9-89f505dea02a faviconFileUrl Favicon file \N \N
+9226c59f-4390-4ed0-ad07-5fc467773956 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginBackgroundFileUrl Login Background file \N \N
+390abfca-3f60-42a8-a7e8-d8fa94a0a3b8 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampImageFileUrl Stamp Image file \N \N
+2040b27d-d1d2-4baa-aab5-04d8ba135337 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 4ebcc2dd-4c61-4085-bff9-89f505dea02a customCssFileUrl Custom CSS file \N \N
+26103f9d-1512-4d4c-93b3-f8bbefc36c0b 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 4ebcc2dd-4c61-4085-bff9-89f505dea02a primaryColor Primary Color value \N \N
+d57c5189-0e99-4dc8-afb1-bf93536b9bf7 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 4ebcc2dd-4c61-4085-bff9-89f505dea02a secondaryColor Secondary Color value \N \N
+ac9251f3-da74-48a4-b33e-4bbabc26a1e7 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 4ebcc2dd-4c61-4085-bff9-89f505dea02a accentColor Accent Color value \N \N
+09a3c6f5-7263-4801-91a0-d36207ff5c9e 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginTitle Login Title value \N \N
+08c05417-9914-4d19-8928-efb39824efa8 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 4ebcc2dd-4c61-4085-bff9-89f505dea02a loginSubtitle Login Subtitle value \N \N
+44e9d117-9e40-471e-93c6-5cfc73e931d0 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 4ebcc2dd-4c61-4085-bff9-89f505dea02a sidebarColor Sidebar Color value \N \N
+79a4d8bc-07e3-4fb0-ae56-34a754a5358c 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 4ebcc2dd-4c61-4085-bff9-89f505dea02a headerColor Header Color value \N \N
+53270c16-c9aa-41f1-9b13-8133d07fea1f 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 4ebcc2dd-4c61-4085-bff9-89f505dea02a stampText Stamp Text value \N \N
+f2d5e649-c7ac-454b-88d5-2ee2f0f85d7b 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 4ebcc2dd-4c61-4085-bff9-89f505dea02a footerText Footer Text value \N \N
+1a515c3b-c6ec-45a0-9be0-a66585e84fb8 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportEmail Support Email value \N \N
+3b4a9559-a285-4364-ab48-535ab0b3d0bc 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 4ebcc2dd-4c61-4085-bff9-89f505dea02a supportPhone Support Phone value \N \N
+f5e85d3e-d6b8-4133-9387-9175ebb42826 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8001ef27-1211-4257-b37a-a46dd415f3c9 logoFileUrl Logo file \N \N
+da044f7b-2671-4e1b-aa71-7d3b6b86899e 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8001ef27-1211-4257-b37a-a46dd415f3c9 faviconFileUrl Favicon file \N \N
+71c6523d-eaef-4871-aac7-95b100bfe54c 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8001ef27-1211-4257-b37a-a46dd415f3c9 loginBackgroundFileUrl Login Background file \N \N
+e701a5fd-9b89-498b-b658-3d3ecd9e7c7a 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8001ef27-1211-4257-b37a-a46dd415f3c9 stampImageFileUrl Stamp Image file \N \N
+8c9e1d63-fa57-46dd-9b63-042a7c299f9f 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8001ef27-1211-4257-b37a-a46dd415f3c9 customCssFileUrl Custom CSS file \N \N
+87b0a070-60d2-42b8-b4e9-42d5b6bf3b34 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8001ef27-1211-4257-b37a-a46dd415f3c9 primaryColor Primary Color value \N \N
+7412ca96-b148-4edc-a989-1bd4d5d1b1ff 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8001ef27-1211-4257-b37a-a46dd415f3c9 secondaryColor Secondary Color value \N \N
+bcde8650-7c21-468f-bd40-b7ce87f89cb7 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8001ef27-1211-4257-b37a-a46dd415f3c9 accentColor Accent Color value \N \N
+4895415f-cadd-4ae5-bbfd-9c7e6ff431a7 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8001ef27-1211-4257-b37a-a46dd415f3c9 loginTitle Login Title value \N \N
+892e0f51-a669-4639-ac22-4d96605fb4ce 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8001ef27-1211-4257-b37a-a46dd415f3c9 loginSubtitle Login Subtitle value \N \N
+fd365f0b-594c-4edb-89f9-7acaab6ff895 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8001ef27-1211-4257-b37a-a46dd415f3c9 sidebarColor Sidebar Color value \N \N
+519af2b0-8098-476c-b32d-f1e388810079 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8001ef27-1211-4257-b37a-a46dd415f3c9 headerColor Header Color value \N \N
+d4055912-4c14-4808-af83-3656bac2d218 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8001ef27-1211-4257-b37a-a46dd415f3c9 stampText Stamp Text value \N \N
+958e8e73-3666-4c76-91cb-a27cb873918c 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8001ef27-1211-4257-b37a-a46dd415f3c9 footerText Footer Text value \N \N
+9d535389-3ff0-4314-8432-06e1bec8da4d 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8001ef27-1211-4257-b37a-a46dd415f3c9 supportEmail Support Email value \N \N
+77d5fddd-e572-4a1c-bd86-690e0dba5936 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8001ef27-1211-4257-b37a-a46dd415f3c9 supportPhone Support Phone value \N \N
+3a92b27d-fcfb-4995-8885-bd572c75a0f5 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 0c3635f1-af28-41f5-b314-ace845f070b9 logoFileUrl Logo file \N \N
+6731ecf1-7dec-42f2-b57c-1e793b0dde73 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 0c3635f1-af28-41f5-b314-ace845f070b9 faviconFileUrl Favicon file \N \N
+012c0038-3e94-44c1-8cab-0497e4990041 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 0c3635f1-af28-41f5-b314-ace845f070b9 loginBackgroundFileUrl Login Background file \N \N
+9fba1248-ac9e-46ca-b687-f57a76be7b35 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 0c3635f1-af28-41f5-b314-ace845f070b9 stampImageFileUrl Stamp Image file \N \N
+3e140114-4b38-4a11-a2ff-45663d424df6 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 0c3635f1-af28-41f5-b314-ace845f070b9 customCssFileUrl Custom CSS file \N \N
+6b002e5c-293b-4071-9a43-70fc6859ac04 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 0c3635f1-af28-41f5-b314-ace845f070b9 primaryColor Primary Color value \N \N
+9cefbbb6-9075-4900-b8cf-256cbf5d6825 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 0c3635f1-af28-41f5-b314-ace845f070b9 secondaryColor Secondary Color value \N \N
+d1237bf6-a4a6-40f6-944f-07d4b29059b6 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 0c3635f1-af28-41f5-b314-ace845f070b9 accentColor Accent Color value \N \N
+25341693-bc53-4237-867f-7f6d07b0449d 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 0c3635f1-af28-41f5-b314-ace845f070b9 loginTitle Login Title value \N \N
+522a7b87-a3ba-4e88-94a9-55bb5434e66a 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 0c3635f1-af28-41f5-b314-ace845f070b9 loginSubtitle Login Subtitle value \N \N
+0c5642d4-bc75-42b5-bc4e-312bb71447d9 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 0c3635f1-af28-41f5-b314-ace845f070b9 sidebarColor Sidebar Color value \N \N
+f8b7eac2-103a-4846-a15c-77844a9fd0c6 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 0c3635f1-af28-41f5-b314-ace845f070b9 headerColor Header Color value \N \N
+4f938601-12dc-40c5-aa62-17e323f18429 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 0c3635f1-af28-41f5-b314-ace845f070b9 stampText Stamp Text value \N \N
+934f0f04-03c8-4778-9159-01b659f5ba82 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 0c3635f1-af28-41f5-b314-ace845f070b9 footerText Footer Text value \N \N
+d2571026-b258-4c50-9903-867d2d06a283 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 0c3635f1-af28-41f5-b314-ace845f070b9 supportEmail Support Email value \N \N
+8b644364-b4b9-4b58-b86f-5eda338f8eeb 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 0c3635f1-af28-41f5-b314-ace845f070b9 supportPhone Support Phone value \N \N
+91e6d104-2a90-46bc-bbc6-978978f8cdd1 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 edc3f308-031c-4315-9a61-0da0f7da8c35 logoFileUrl Logo file \N \N
+f8489c37-cfd4-4058-b298-a765306b70be 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 edc3f308-031c-4315-9a61-0da0f7da8c35 faviconFileUrl Favicon file \N \N
+a370deb7-8a3e-4602-80f4-718edad0c5af 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 edc3f308-031c-4315-9a61-0da0f7da8c35 loginBackgroundFileUrl Login Background file \N \N
+92d592cd-173c-45e0-b58b-ce19f2ad5623 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 edc3f308-031c-4315-9a61-0da0f7da8c35 stampImageFileUrl Stamp Image file \N \N
+18f78a74-5c91-4f77-9747-af4586dace47 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 edc3f308-031c-4315-9a61-0da0f7da8c35 customCssFileUrl Custom CSS file \N \N
+2410f08b-bc9d-41f4-80bf-1b42fe127f55 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 edc3f308-031c-4315-9a61-0da0f7da8c35 primaryColor Primary Color value \N \N
+04a76da3-9bdc-4c10-af47-98a8673d8449 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 edc3f308-031c-4315-9a61-0da0f7da8c35 secondaryColor Secondary Color value \N \N
+97fc562e-ea25-4228-937c-47a43ebd9fb5 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 edc3f308-031c-4315-9a61-0da0f7da8c35 accentColor Accent Color value \N \N
+84730d3d-adc1-44e0-89e2-33c22741f2f5 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 edc3f308-031c-4315-9a61-0da0f7da8c35 loginTitle Login Title value \N \N
+f3b34fe2-652b-4c3d-aba4-999dcba80bf4 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 edc3f308-031c-4315-9a61-0da0f7da8c35 loginSubtitle Login Subtitle value \N \N
+98153a89-382b-494c-911c-9389b7e4c708 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 edc3f308-031c-4315-9a61-0da0f7da8c35 sidebarColor Sidebar Color value \N \N
+e9dd3c8e-e065-4197-83a8-a98a3ee94f59 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 edc3f308-031c-4315-9a61-0da0f7da8c35 headerColor Header Color value \N \N
+37e96603-6691-432a-9457-5a536991e031 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 edc3f308-031c-4315-9a61-0da0f7da8c35 stampText Stamp Text value \N \N
+dbeba8fc-e1dc-4e5f-9d65-c3c449911e6e 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 edc3f308-031c-4315-9a61-0da0f7da8c35 footerText Footer Text value \N \N
+7191d5de-6b31-4fcb-b8ad-a214a67f8972 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 edc3f308-031c-4315-9a61-0da0f7da8c35 supportEmail Support Email value \N \N
+22e19280-3feb-4c2e-a95d-0def797d4a24 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 edc3f308-031c-4315-9a61-0da0f7da8c35 supportPhone Support Phone value \N \N
+bc52de56-b2a5-4cac-aa8c-5a9ad87fc39b 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8170c778-6a0d-40ee-b7dd-53b2bae4102c logoFileUrl Logo file \N \N
+e03477a9-0b1a-4cd2-8b4d-21f5077c7f45 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8170c778-6a0d-40ee-b7dd-53b2bae4102c faviconFileUrl Favicon file \N \N
+10a69541-a4b5-4b18-9dbb-1fcdf5944983 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginBackgroundFileUrl Login Background file \N \N
+04cdd8ce-9871-450e-845f-9c55424c5a79 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampImageFileUrl Stamp Image file \N \N
+0ca9eee1-5635-43bb-8d11-5d4e237c4547 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8170c778-6a0d-40ee-b7dd-53b2bae4102c customCssFileUrl Custom CSS file \N \N
+965fcdd0-33a7-4a80-a2e0-c99c78bf9888 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8170c778-6a0d-40ee-b7dd-53b2bae4102c primaryColor Primary Color value \N \N
+a5d928d3-ba64-4ac0-8ac6-5a1bcfefeceb 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8170c778-6a0d-40ee-b7dd-53b2bae4102c secondaryColor Secondary Color value \N \N
+6c955422-142d-4b4d-8c2a-eefcdd19e06f 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8170c778-6a0d-40ee-b7dd-53b2bae4102c accentColor Accent Color value \N \N
+c1b4da01-7bdd-4b40-9fda-0f4611592907 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginTitle Login Title value \N \N
+9bf89345-4bb9-435e-b78c-79d7b16b4ea2 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8170c778-6a0d-40ee-b7dd-53b2bae4102c loginSubtitle Login Subtitle value \N \N
+449a3e95-477d-42e7-9f25-837f167757c2 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8170c778-6a0d-40ee-b7dd-53b2bae4102c sidebarColor Sidebar Color value \N \N
+c5c69078-3a80-47c6-adea-2d5206807484 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8170c778-6a0d-40ee-b7dd-53b2bae4102c headerColor Header Color value \N \N
+def4cd26-5a24-4106-8cf7-449516a06a39 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8170c778-6a0d-40ee-b7dd-53b2bae4102c stampText Stamp Text value \N \N
+39e732e1-d4d2-4a8c-908e-0d1185153a74 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8170c778-6a0d-40ee-b7dd-53b2bae4102c footerText Footer Text value \N \N
+1ea3d12e-a83b-423d-9e63-d01fbf8a98e0 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportEmail Support Email value \N \N
+1c75d342-03aa-4563-840b-edcc897e1221 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 8170c778-6a0d-40ee-b7dd-53b2bae4102c supportPhone Support Phone value \N \N
+9bc6a1e2-4729-4cf3-b245-ca2c0861cb54 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 786d4153-4c78-4d60-939a-629ffe551a5f logoFileUrl Logo file \N \N
+e647af0c-7d3a-4914-8aa3-732ad76c6a1b 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 786d4153-4c78-4d60-939a-629ffe551a5f faviconFileUrl Favicon file \N \N
+90668b4f-4715-4eec-addf-31eb86982cb2 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 786d4153-4c78-4d60-939a-629ffe551a5f loginBackgroundFileUrl Login Background file \N \N
+2de46142-4ccd-4eda-a3b0-48d2523d30cd 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 786d4153-4c78-4d60-939a-629ffe551a5f stampImageFileUrl Stamp Image file \N \N
+f41d4baa-7b4f-44e7-bacb-56d7a1c03764 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 786d4153-4c78-4d60-939a-629ffe551a5f customCssFileUrl Custom CSS file \N \N
+e2b868cf-f102-4972-9963-527c6c23ca80 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 786d4153-4c78-4d60-939a-629ffe551a5f primaryColor Primary Color value \N \N
+227b7e04-9b5c-4ef3-8046-0e7b61303a01 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 786d4153-4c78-4d60-939a-629ffe551a5f secondaryColor Secondary Color value \N \N
+cd5dc999-c4ed-477f-b784-8da9a84e5df9 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 786d4153-4c78-4d60-939a-629ffe551a5f accentColor Accent Color value \N \N
+abedb27f-53ae-4661-b233-96d30f461724 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 786d4153-4c78-4d60-939a-629ffe551a5f loginTitle Login Title value \N \N
+1bda559f-954b-4a45-b82c-0666212cdea2 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 786d4153-4c78-4d60-939a-629ffe551a5f loginSubtitle Login Subtitle value \N \N
+c15a5881-df63-4715-ae4d-d35f55b738af 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 786d4153-4c78-4d60-939a-629ffe551a5f sidebarColor Sidebar Color value \N \N
+c9d30525-0b7b-41c0-8453-1dfb2bc0909a 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 786d4153-4c78-4d60-939a-629ffe551a5f headerColor Header Color value \N \N
+7bf09bdb-cf4e-4137-bfd1-23f58ad0653c 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 786d4153-4c78-4d60-939a-629ffe551a5f stampText Stamp Text value \N \N
+8b278f26-5820-4215-961c-064b9183736b 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 786d4153-4c78-4d60-939a-629ffe551a5f footerText Footer Text value \N \N
+b85bce1a-5cc5-4ab2-a595-4e37c4eeabd5 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 786d4153-4c78-4d60-939a-629ffe551a5f supportEmail Support Email value \N \N
+83f317fb-09ed-4fe6-9db9-88e557395a9c 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 786d4153-4c78-4d60-939a-629ffe551a5f supportPhone Support Phone value \N \N
+e1ea0a85-d32d-4ffa-b960-0360552be3d7 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 f2994c6f-76fa-4a10-a577-175b49643cb1 logoFileUrl Logo file \N \N
+1081651e-0a82-4c11-9479-25725f1d8993 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 f2994c6f-76fa-4a10-a577-175b49643cb1 faviconFileUrl Favicon file \N \N
+495d34e2-cf37-4399-ad5d-d8be91c0f132 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 f2994c6f-76fa-4a10-a577-175b49643cb1 loginBackgroundFileUrl Login Background file \N \N
+f56b9d06-4612-40ea-bbb2-ebd7b482d318 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 f2994c6f-76fa-4a10-a577-175b49643cb1 stampImageFileUrl Stamp Image file \N \N
+160ec16b-9fcb-41d5-a3bc-a43501f293b1 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 f2994c6f-76fa-4a10-a577-175b49643cb1 customCssFileUrl Custom CSS file \N \N
+9f64f554-afe3-4f64-b0bb-7bdc0bf37569 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 f2994c6f-76fa-4a10-a577-175b49643cb1 primaryColor Primary Color value \N \N
+4d58dd14-adb4-49b6-ae2f-da8722fc218d 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 f2994c6f-76fa-4a10-a577-175b49643cb1 secondaryColor Secondary Color value \N \N
+d87e72c7-ba58-471a-aa3f-31a72446236c 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 f2994c6f-76fa-4a10-a577-175b49643cb1 accentColor Accent Color value \N \N
+5913c410-1e6e-4edf-9045-ea4afb4329d2 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 f2994c6f-76fa-4a10-a577-175b49643cb1 loginTitle Login Title value \N \N
+ec81b520-27ce-4e9a-8549-0b7dd9af90a5 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 f2994c6f-76fa-4a10-a577-175b49643cb1 loginSubtitle Login Subtitle value \N \N
+70cc2233-e855-4c27-a3ac-931006c075f2 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 f2994c6f-76fa-4a10-a577-175b49643cb1 sidebarColor Sidebar Color value \N \N
+07216357-a8fb-4d5a-be8f-e68cb9f520bc 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 f2994c6f-76fa-4a10-a577-175b49643cb1 headerColor Header Color value \N \N
+6e024984-3e4d-4eb8-9be9-2c32c5d49843 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 f2994c6f-76fa-4a10-a577-175b49643cb1 stampText Stamp Text value \N \N
+76f00fc6-f602-4e87-8904-c24a782b8ef1 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 f2994c6f-76fa-4a10-a577-175b49643cb1 footerText Footer Text value \N \N
+fb9b6022-80e7-4984-a58e-a89b9dff42c3 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 f2994c6f-76fa-4a10-a577-175b49643cb1 supportEmail Support Email value \N \N
+6ad25d12-5614-4b5b-a825-76b99bcb3f0c 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 f2994c6f-76fa-4a10-a577-175b49643cb1 supportPhone Support Phone value \N \N
+d1a6002c-d677-40a1-99cb-c769fff64441 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb logoFileUrl Logo file \N \N
+0d793a05-a6e8-4ed2-a900-a2d33cac116c 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb faviconFileUrl Favicon file \N \N
+43d5d6f7-16a2-4e9d-a873-d30360fd5965 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginBackgroundFileUrl Login Background file \N \N
+85136f9c-1a26-4d56-9db0-97ea18923c3f 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampImageFileUrl Stamp Image file \N \N
+18ecf558-246a-449e-ada0-cc012b895d15 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb customCssFileUrl Custom CSS file \N \N
+a72581f0-ccf0-4214-ba2f-d7e4e191e5ec 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb primaryColor Primary Color value \N \N
+bc8ffdd9-7d99-45e2-a38b-3fbdd1022802 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb secondaryColor Secondary Color value \N \N
+dd678ee5-925b-43a9-bdd6-33a18d754851 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb accentColor Accent Color value \N \N
+e40da28e-9503-4391-aabe-b013ff53a259 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginTitle Login Title value \N \N
+28eff3a5-c888-484c-b9fd-4c59127c8036 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb loginSubtitle Login Subtitle value \N \N
+156c0224-2308-47c1-adce-a47c9e2d37f4 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb sidebarColor Sidebar Color value \N \N
+1428b977-9007-4402-bb75-929d4e82c098 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb headerColor Header Color value \N \N
+fafb8c3a-1a07-454b-886b-8119b72b0746 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb stampText Stamp Text value \N \N
+0791525f-b326-4ee9-b891-1a0e6f88ec39 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb footerText Footer Text value \N \N
+c5494e12-03f7-4030-b33c-7b12f462189b 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportEmail Support Email value \N \N
+aecc2ca1-b341-4f01-a799-fd71ac7d3d61 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb supportPhone Support Phone value \N \N
+b7a659aa-19c9-4f7a-8d83-b7c95c48211a 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 a3f7bdac-e218-4554-aaa5-48511f4058d4 logoFileUrl Logo file \N \N
+a829e6f7-892f-40c7-818a-3b47b188a2de 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 a3f7bdac-e218-4554-aaa5-48511f4058d4 faviconFileUrl Favicon file \N \N
+e83c4ca1-f892-4995-907e-d5f1b31f13b6 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginBackgroundFileUrl Login Background file \N \N
+7611ad19-ade9-49a3-94c5-d4583169cc49 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampImageFileUrl Stamp Image file \N \N
+9cae5e34-8d61-4484-8348-5d76cf62ba04 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 a3f7bdac-e218-4554-aaa5-48511f4058d4 customCssFileUrl Custom CSS file \N \N
+c79805f0-af69-451f-8bba-6d18c097da34 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 a3f7bdac-e218-4554-aaa5-48511f4058d4 primaryColor Primary Color value \N \N
+f24e7223-0c93-46de-bc07-ac90bb331b87 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 a3f7bdac-e218-4554-aaa5-48511f4058d4 secondaryColor Secondary Color value \N \N
+32d4f014-7b1a-4b91-80f1-1244a842160a 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 a3f7bdac-e218-4554-aaa5-48511f4058d4 accentColor Accent Color value \N \N
+659eb323-dc00-494a-9de4-e0ecfda4085f 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginTitle Login Title value \N \N
+8399cf0d-2561-4731-9557-f5bdc534968b 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 a3f7bdac-e218-4554-aaa5-48511f4058d4 loginSubtitle Login Subtitle value \N \N
+1afc4f74-29f1-4665-b888-540e488ce391 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 a3f7bdac-e218-4554-aaa5-48511f4058d4 sidebarColor Sidebar Color value \N \N
+cc5ce6af-704e-47ca-a15a-1f0c44605874 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 a3f7bdac-e218-4554-aaa5-48511f4058d4 headerColor Header Color value \N \N
+951501bb-be3a-4a83-b82d-e39d39d7dfa7 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 a3f7bdac-e218-4554-aaa5-48511f4058d4 stampText Stamp Text value \N \N
+f12a3521-a8d7-44a9-b83b-1c0e10a0ab79 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 a3f7bdac-e218-4554-aaa5-48511f4058d4 footerText Footer Text value \N \N
+ac36f9c0-9b81-4a46-ab8d-d95179632baa 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportEmail Support Email value \N \N
+6452f915-2efa-4b79-a365-7be95e188ed9 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 a3f7bdac-e218-4554-aaa5-48511f4058d4 supportPhone Support Phone value \N \N
+\.
+
+
+--
+-- Data for Name: organization_types; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.organization_types (created_at, updated_at, id, name, key) FROM stdin;
+2026-06-16 17:56:00.83431+00 2026-06-16 17:56:00.83431+00 02d7beee-68b5-4420-9de8-5ceb985c19f4 {"am": "ዋና ተቆጣጣሪ", "en": "Super Admin"} super_admin
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 9ee50c37-d712-4759-a07c-80df55980305 {"am": "ወረዳ", "en": "Woreda"} woreda
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b25e8907-0204-4dc2-ac04-d461de7f4d73 {"am": "ክፍለ ከተማ", "en": "Sub City"} subcity
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b9c11b15-abcf-433c-8f6d-92f68832ae59 {"am": "ቢሮ", "en": "Bureau"} office
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 9884260e-c043-43d0-a4d7-b4ffe6620810 {"am": "ቅርንጫፍ", "en": "Branch"} branch
+\.
+
+
+--
+-- Data for Name: organizations; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.organizations (created_at, updated_at, id, name, key, organization_type_id, parent_id, status, is_government_organization, is_super_admin) FROM stdin;
+2026-06-16 17:56:00.83431+00 2026-06-16 17:56:00.83431+00 3b73eaa8-5a7b-4390-bffe-4ff0336d1f76 {"am": "ልደታ ክፍለ ከተማ", "en": "Lideta Sub City"} lideta_sub_city b25e8907-0204-4dc2-ac04-d461de7f4d73 \N Active t f
+2026-06-16 17:56:00.83431+00 2026-06-16 17:56:00.83431+00 180541c3-a1d8-49a8-a972-51df8f07ec64 {"am": "ቂርቆስ ክፍለ ከተማ", "en": "Kirkos Sub City"} kirkos_sub_city b25e8907-0204-4dc2-ac04-d461de7f4d73 \N Active t f
+2026-06-16 17:56:00.83431+00 2026-06-16 17:56:00.83431+00 ecfad834-390e-49ca-87f0-5dd217e629fb {"am": "ቦሌ ክፍለ ከተማ", "en": "Bole Sub City"} bole_sub_city b25e8907-0204-4dc2-ac04-d461de7f4d73 \N Active t f
+2026-06-16 17:56:00.83431+00 2026-06-16 17:56:00.83431+00 65da097d-d9a7-42f9-8445-c60218333a53 {"am": "ንፋስ ስልክ ላፍቶ ክፍለ ከተማ", "en": "Nifas Silk-Lafto Sub City"} nifas_silklafto_sub_city b25e8907-0204-4dc2-ac04-d461de7f4d73 \N Active t f
+2026-06-16 17:56:00.83431+00 2026-06-16 17:56:00.83431+00 4ebcc2dd-4c61-4085-bff9-89f505dea02a {"am": "አራዳ ክፍለ ከተማ", "en": "Arada Sub City"} arada_sub_city b25e8907-0204-4dc2-ac04-d461de7f4d73 \N Active t f
+2026-06-16 17:56:00.83431+00 2026-06-16 17:56:00.83431+00 8001ef27-1211-4257-b37a-a46dd415f3c9 {"am": "አቃቂ ቃሊቲ ክፍለ ከተማ", "en": "Akaki Kality Sub City"} akaki_kality_sub_city b25e8907-0204-4dc2-ac04-d461de7f4d73 \N Active t f
+2026-06-16 17:56:00.83431+00 2026-06-16 17:56:00.83431+00 0c3635f1-af28-41f5-b314-ace845f070b9 {"am": "አዲስ ከተማ ክፍለ ከተማ", "en": "Addis Ketema Sub City"} addis_ketema_sub_city b25e8907-0204-4dc2-ac04-d461de7f4d73 \N Active t f
+2026-06-16 17:56:00.83431+00 2026-06-16 17:56:00.83431+00 edc3f308-031c-4315-9a61-0da0f7da8c35 {"am": "ኮልፌ ቀራንዮ ክፍለ ከተማ", "en": "Kolfe Keranio Sub City"} kolfe_keranio_sub_city b25e8907-0204-4dc2-ac04-d461de7f4d73 \N Active t f
+2026-06-16 17:56:00.83431+00 2026-06-16 17:56:00.83431+00 8170c778-6a0d-40ee-b7dd-53b2bae4102c {"am": "የካ ክፍለ ከተማ", "en": "Yeka Sub City"} yeka_sub_city b25e8907-0204-4dc2-ac04-d461de7f4d73 \N Active t f
+2026-06-16 17:56:00.83431+00 2026-06-16 17:56:00.83431+00 786d4153-4c78-4d60-939a-629ffe551a5f {"am": "ጉለሌ ክፍለ ከተማ", "en": "Gullele Sub City"} gullele_sub_city b25e8907-0204-4dc2-ac04-d461de7f4d73 \N Active t f
+2026-06-16 17:56:00.83431+00 2026-06-16 17:56:00.83431+00 f2994c6f-76fa-4a10-a577-175b49643cb1 {"am": "ለሚ ኩራ ክፍለ ከተማ", "en": "Lemi Kura Sub City"} lemi_kura_sub_city b25e8907-0204-4dc2-ac04-d461de7f4d73 \N Active t f
+2026-06-16 17:56:00.83431+00 2026-06-16 17:56:00.83431+00 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb {"am": "ትሪያ", "en": "TRIA"} tria 02d7beee-68b5-4420-9de8-5ceb985c19f4 \N Active f t
+2026-06-16 17:56:01.129917+00 2026-06-16 17:56:01.129917+00 a3f7bdac-e218-4554-aaa5-48511f4058d4 {"en": "EDR Freight"} edr_freight \N \N Active t f
+\.
+
+
+--
+-- Data for Name: permissions; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.permissions (created_at, updated_at, id, name, key, application_id) FROM stdin;
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000017 {"am": "የመደብ-ሚና መመልከት", "en": "View Position-Permission"} can:view:position_permission 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000018 {"am": "ሁሉንም ድርጅቶች መፈለግ", "en": "Find All Organizations"} can:find_all:organization \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000019 {"am": "ድርጅት ማሻሻል", "en": "Update Organization"} can:update:organization \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000020 {"am": "ድርጅት ማጥፋት", "en": "Delete Organization"} can:delete:organization \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000021 {"am": "ክፍል መፍጠር", "en": "Create Unit"} can:create:unit \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000022 {"am": "ክፍል ማሻሻል", "en": "Update Unit"} can:update:unit \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000023 {"am": "ክፍል ማጥፋት", "en": "Delete Unit"} can:delete:unit \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000024 {"am": "የዩኒት አይነት መፍጠር", "en": "Create Default Unit"} can:create:default_unit \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000025 {"am": "የዩኒት አይነት ማሻሻል", "en": "Update Default Unit"} can:update:default_unit \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000026 {"am": "የዩኒት አይነት ማጥፋት", "en": "Delete Default Unit"} can:delete:default_unit \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000027 {"am": "የስራ መደብ አይነት መፍጠር", "en": "Create Default Position"} can:create:default_position \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000028 {"am": "የስራ መደብ አይነት ማሻሻል", "en": "Update Default Position"} can:update:default_position \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000029 {"am": "የስራ መደብ አይነት ማጥፋት", "en": "Delete Default Position"} can:delete:default_position \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000030 {"am": "የድርጅት አይነት መፍጠር", "en": "Create Organization Type"} can:create:organization_type \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 15353ac5-246b-42e6-9ac3-eb61c4f1cd22 {"am": "Delete hierarchy unit", "en": "Delete hierarchy unit"} edr_freight_app:hierarchy_units:delete \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 37ff6f5b-9fb0-4139-af99-22fe54703029 {"am": "View hierarchy positions", "en": "View hierarchy positions"} edr_freight_app:hierarchy_positions:view \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 af6c091a-6448-4459-a635-c2181efd1de0 {"am": "Create hierarchy position", "en": "Create hierarchy position"} edr_freight_app:hierarchy_positions:create \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 e78f624d-b570-4cd6-8f16-12090a4a9d31 {"am": "Update hierarchy position", "en": "Update hierarchy position"} edr_freight_app:hierarchy_positions:update \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000031 {"am": "የድርጅት አይነት ማሻሻል", "en": "Update Organization Type"} can:update:organization_type \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000032 {"am": "የድርጅት አይነት ማጥፋት", "en": "Delete Organization Type"} can:delete:organization_type \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a9a7c0fa-e4fc-4c0e-b1c2-f74f9da40421 {"am": "የመስሪያ ቤት መፍጠር", "en": "Create Organization"} create:organization 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 c807691b-2693-4079-9dc5-1e080b67006c {"am": "የመስሪያ ቤት አስተካክል", "en": "Activate Organization"} activate:organization 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 457a3659-ed96-456a-a6a1-2881226a86ed {"am": "መቼት መቆጣጠር ይችላል", "en": "Debar Organization"} can:debarOrganization 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 ebd8cf49-243d-4887-b2c9-cbe61e86a17a {"am": "የሰራተኞችን መረጃ መጫን ይችላል", "en": "Can Upload User CSV"} can:uploadUserCSV 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 68bebc03-c1a8-832f-ae5a-b66553e6bcef {"am": "የተቀጣሪዎችን መረጃ ማውጣት ይችላሉ", "en": "Can Export Unit Users"} can:exportUnitUsers 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 c2566286-248e-4cb4-923d-b113d6a5d4ba {"am": "ተጠቃሚዎች መግለጫ መቀየር ይችላል", "en": "Can Change Users Profile"} can:changeUsersProfile 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 14f438c6-9295-44a0-a4f3-4ac9855efc37 {"am": "ተጠቃሚዎችን መቆጣጠር ይችላል", "en": "Can Activate/Deactivate User"} can:activateUser 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 31a39f88-47c0-4322-80ef-f397a6791ff2 {"am": "አዲስ ተመዝጋቢ ማፅደቅ ይችላል", "en": "Can Approve New User"} can:approveNewUser 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 69694936-8b54-8330-b176-16ffc98c33a7 {"am": "ሁሉንም ተጠቃሚዎች ማየት ይችላል", "en": "Can View All Users"} can:viewAllUsers 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 68f1017f-4c60-8322-984d-e4317986e641 {"am": "የተጠቃሚ መለያ አዋቂነት መቆጣጠር ይችላል", "en": "Can Manage Users Account Configuration"} can:manageUsersAccountConfiguration 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 fceaa4c5-621f-45ce-b5a7-0ffc9e366fe1 {"am": "ተመዝጋቢዎች የሚያስገቡትን መረጃ መቆጣጠር ይችላል", "en": "Can Set User Requirement Document"} can:setUserRequirementDocument 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 62b5aa2d-4ef6-474d-913a-994568dce1c8 {"am": "View employee registration", "en": "View employee registration"} edr_freight_app:employee_registration:view \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 8072204d-26de-4e62-88aa-74afd916a0cb {"am": "Create employee registration", "en": "Create employee registration"} edr_freight_app:employee_registration:create \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b7dc55a6-ae7c-4558-8c4e-7d8ce5c7fa08 {"am": "Update employee registration", "en": "Update employee registration"} edr_freight_app:employee_registration:update \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 7ef06121-bd31-4c0d-b36d-5401b4bfd05c {"am": "Activate employee registration", "en": "Activate employee registration"} edr_freight_app:employee_registration:activate \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 2688e144-7f0c-4704-8d59-e92b0c08117a {"am": "Deactivate employee registration", "en": "Deactivate employee registration"} edr_freight_app:employee_registration:deactivate \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000001 {"am": "ሚና መፍጠር", "en": "Create Role"} can:create:role 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000002 {"am": "ሚና ማሻሻል", "en": "Update Role"} can:update:role 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000003 {"am": "ሚና ማጥፋት", "en": "Delete Role"} can:delete:role 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000006 {"am": "ፈቃድ ማሻሻል", "en": "Update Permission"} can:update:permission 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000007 {"am": "ፈቃድ ማጥፋት", "en": "Delete Permission"} can:delete:permission 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000009 {"am": "የሚና-ፈቃድ መፍጠር", "en": "Create Role-Permission"} can:create:role_permission 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000010 {"am": "የሚና-ፈቃድ ማጥፋት", "en": "Delete Role-Permission"} can:delete:role_permission 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000011 {"am": "የሚና-ፈቃድ መመልከት", "en": "View Role-Permission"} can:view:role_permission 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000012 {"am": "የተጠቃሚ-ሚና መፍጠር", "en": "Create User-Role"} can:create:user_role 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000013 {"am": "የተጠቃሚ-ሚና ማጥፋት", "en": "Delete User-Role"} can:delete:user_role 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000014 {"am": "የተጠቃሚ-ሚና መመልከት", "en": "View User-Role"} can:view:user_role 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000015 {"am": "የመደብ-ሚና መፍጠር", "en": "Create Position-Permission"} can:create:position_permission 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019b5993-0000-0000-0000-000000000016 {"am": "የመደብ-ሚና ማጥፋት", "en": "Delete Position-Permission"} can:delete:position_permission 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 2cd9e3c5-bd41-48f3-a849-f497b18b2906 {"am": "መቼት መቆጣጠር ይችላል", "en": "Manage Organization Admin"} manage:organizationAdmin 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 4de87873-e00d-4330-9b4f-f4fb065f49e0 {"am": "View role assignment", "en": "View role assignment"} edr_freight_app:role_assignment:view \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 c1f34177-a0ae-4a46-a24a-3281b9137bab {"am": "Replace role assignment", "en": "Replace role assignment"} edr_freight_app:role_assignment:replace \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 2bfa2428-ec40-4588-9b01-dfacce6a2b82 {"am": "View hierarchy units", "en": "View hierarchy units"} edr_freight_app:hierarchy_units:view \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 1e92daff-9cc7-4a67-9994-879f34bfda16 {"am": "Create hierarchy unit", "en": "Create hierarchy unit"} edr_freight_app:hierarchy_units:create \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 4ef2d8ad-c627-4448-b4b6-dd6b8b602dc1 {"am": "Update hierarchy unit", "en": "Update hierarchy unit"} edr_freight_app:hierarchy_units:update \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a1000001-0001-4000-8000-000000000003 {"am": "Request booking changes", "en": "Request booking changes"} edr_freight_app:bookings:request_changes \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a1000001-0001-4000-8000-000000000004 {"am": "Reject booking submission", "en": "Reject booking submission"} edr_freight_app:bookings:reject \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a1000001-0001-4000-8000-000000000007 {"am": "Approve as CEO", "en": "Approve as CEO"} edr_freight_app:bookings:approve_ceo \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a1000001-0001-4000-8000-000000000008 {"am": "Reject at approval step", "en": "Reject at approval step"} edr_freight_app:bookings:reject_approval \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a1000001-0001-4000-8000-000000000009 {"am": "Generate contract", "en": "Generate contract"} edr_freight_app:bookings:generate_contract \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a1000001-0001-4000-8000-00000000000a {"am": "Staff contract signature", "en": "Staff contract signature"} edr_freight_app:bookings:sign_staff \N
+2026-06-17 04:52:23.577126+00 2026-06-19 13:19:46.433082+00 a1000001-0001-4000-8000-000000000011 {"am": "View fleet", "en": "View fleet"} edr_freight_app:fleet:view \N
+2026-06-17 04:52:23.577126+00 2026-06-19 13:19:46.433082+00 a1000001-0001-4000-8000-000000000012 {"am": "Manage fleet", "en": "Manage fleet"} edr_freight_app:fleet:manage \N
+2026-06-17 04:52:23.577126+00 2026-06-19 13:19:46.433082+00 a1000001-0001-4000-8000-000000000013 {"am": "Freight administration", "en": "Freight administration"} edr_freight_app:admin \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-00000000000d {"am": "View surcharge-types", "en": "View surcharge-types"} edr_freight_app:rule_engine:surcharge_types:view \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-00000000000e {"am": "Manage surcharge-types", "en": "Manage surcharge-types"} edr_freight_app:rule_engine:surcharge_types:manage \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-00000000000f {"am": "View priority-configs", "en": "View priority-configs"} edr_freight_app:rule_engine:priority_configs:view \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-000000000010 {"am": "Manage priority-configs", "en": "Manage priority-configs"} edr_freight_app:rule_engine:priority_configs:manage \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-000000000011 {"am": "View rates", "en": "View rates"} edr_freight_app:rule_engine:rates:view \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-000000000012 {"am": "Manage rates", "en": "Manage rates"} edr_freight_app:rule_engine:rates:manage \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-000000000013 {"am": "View approval-rules", "en": "View approval-rules"} edr_freight_app:rule_engine:approval_rules:view \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-000000000014 {"am": "Manage approval-rules", "en": "Manage approval-rules"} edr_freight_app:rule_engine:approval_rules:manage \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 257d8c6e-ef30-4510-892f-d4a2ad4c814d {"am": "የጽሕፈት ቤት መቼት መቆጣጠር ይችላል", "en": "Manage Unit Admin"} manage:unitAdmin 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 4052b7b8-e9f6-4bfe-9b93-eb59f9e4e576 {"am": "ሰራተኞችን መመደብ/መፍጠር ይችላሉ", "en": "Can create employees"} can:createEmployee 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 965ec76d-bbdb-47a1-a916-07c52f609fa7 {"am": "ሰራተኞችን ማባረር ይችላሉ", "en": "Can deactivate employees"} can:deactivateEmployee 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 019cbdc6-3d7a-73aa-ac57-51436dfa50e9 {"am": "ሰራተኞችን መቀበል ይችላሉ", "en": "Can activate employees"} can:activateEmployee 019bcb17-5470-7604-8708-7ed04d842b41
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 36f022b4-4b94-4220-a46c-df7bd1a1b184 {"am": "Assign role", "en": "Assign role"} edr_freight_app:role_assignment:assign \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 7fba7887-a365-4281-96ea-fb14582b047e {"am": "Delete hierarchy position", "en": "Delete hierarchy position"} edr_freight_app:hierarchy_positions:delete \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a33905ff-f2b8-40b9-a8cf-e2968f6f46fb {"am": "Change hierarchy position parent", "en": "Change hierarchy position parent"} edr_freight_app:hierarchy_positions:change_parent \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b6ca90ff-3e95-4af2-bac8-fb298ca62080 {"am": "View hierarchy employee assignment", "en": "View hierarchy employee assignment"} edr_freight_app:hierarchy_employee_assignment:view \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 0637472f-d6b7-4332-85bb-eaa6a02205c1 {"am": "Invite hierarchy employee assignment", "en": "Invite hierarchy employee assignment"} edr_freight_app:hierarchy_employee_assignment:invite \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 de366c81-b6d1-4cf9-a5f1-a5c8a6fb5e7b {"am": "Assign hierarchy employee assignment", "en": "Assign hierarchy employee assignment"} edr_freight_app:hierarchy_employee_assignment:assign \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 f258fb51-2890-4c93-b024-271b09d705d0 {"am": "View position types", "en": "View position types"} edr_freight_app:position_types:view \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a1000001-0001-4000-8000-000000000001 {"am": "View bookings", "en": "View bookings"} edr_freight_app:bookings:view \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a1000001-0001-4000-8000-000000000002 {"am": "Accept booking intake", "en": "Accept booking intake"} edr_freight_app:bookings:staff_accept \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a1000001-0001-4000-8000-000000000005 {"am": "Approve as line staff", "en": "Approve as line staff"} edr_freight_app:bookings:approve_line_staff \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a1000001-0001-4000-8000-000000000006 {"am": "Approve as director", "en": "Approve as director"} edr_freight_app:bookings:approve_director \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a1000001-0001-4000-8000-00000000000b {"am": "Generate PNR", "en": "Generate PNR"} edr_freight_app:bookings:payment_pnr \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a1000001-0001-4000-8000-00000000000c {"am": "Verify payment", "en": "Verify payment"} edr_freight_app:bookings:payment_verify \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a1000001-0001-4000-8000-00000000000d {"am": "Booking operations", "en": "Booking operations"} edr_freight_app:bookings:operations \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a1000001-0001-4000-8000-00000000000e {"am": "Cancel booking", "en": "Cancel booking"} edr_freight_app:bookings:cancel \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a1000001-0001-4000-8000-00000000000f {"am": "View train scheduling", "en": "View train scheduling"} edr_freight_app:train_scheduling:view \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 a1000001-0001-4000-8000-000000000010 {"am": "Manage train scheduling", "en": "Manage train scheduling"} edr_freight_app:train_scheduling:manage \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-000000000001 {"am": "View cargo-types", "en": "View cargo-types"} edr_freight_app:rule_engine:cargo_types:view \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-000000000002 {"am": "Manage cargo-types", "en": "Manage cargo-types"} edr_freight_app:rule_engine:cargo_types:manage \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-000000000003 {"am": "View container-types", "en": "View container-types"} edr_freight_app:rule_engine:container_types:view \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-000000000004 {"am": "Manage container-types", "en": "Manage container-types"} edr_freight_app:rule_engine:container_types:manage \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-000000000015 {"am": "View wagon-types", "en": "View wagon-types"} edr_freight_app:rule_engine:wagon_types:view \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-000000000016 {"am": "Manage wagon-types", "en": "Manage wagon-types"} edr_freight_app:rule_engine:wagon_types:manage \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-000000000005 {"am": "View service-types", "en": "View service-types"} edr_freight_app:rule_engine:service_types:view \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-000000000006 {"am": "Manage service-types", "en": "Manage service-types"} edr_freight_app:rule_engine:service_types:manage \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-000000000007 {"am": "View yards", "en": "View yards"} edr_freight_app:rule_engine:yards:view \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-000000000008 {"am": "Manage yards", "en": "Manage yards"} edr_freight_app:rule_engine:yards:manage \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-000000000009 {"am": "View shipping-lines", "en": "View shipping-lines"} edr_freight_app:rule_engine:shipping_lines:view \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-00000000000a {"am": "Manage shipping-lines", "en": "Manage shipping-lines"} edr_freight_app:rule_engine:shipping_lines:manage \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-00000000000b {"am": "View weight-limit-rules", "en": "View weight-limit-rules"} edr_freight_app:rule_engine:weight_limit_rules:view \N
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2000001-0001-4000-8000-00000000000c {"am": "Manage weight-limit-rules", "en": "Manage weight-limit-rules"} edr_freight_app:rule_engine:weight_limit_rules:manage \N
+\.
+
+
+--
+-- Data for Name: position_configurations; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.position_configurations (created_at, updated_at, id, sms_notification_when_record_submitted, email_notification_when_record_submitted, inbox_notification_when_record_submitted, position_id, skip_workflow_if_not_assigned, position_scope_to_fetch, can_receive_record) FROM stdin;
+\.
+
+
+--
+-- Data for Name: position_permissions; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.position_permissions (created_at, updated_at, id, position_id, permission_id) FROM stdin;
+\.
+
+
+--
+-- Data for Name: position_type_configuration; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.position_type_configuration (created_at, updated_at, amharic_created_at, amharic_updated_at, id, organization_id, position_type_id, timeframe) FROM stdin;
+\.
+
+
+--
+-- Data for Name: position_type_permissions; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.position_type_permissions (created_at, updated_at, id, position_type_id, permission_id) FROM stdin;
+\.
+
+
+--
+-- Data for Name: position_types; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.position_types (created_at, updated_at, id, name, key, unit_id, is_system) FROM stdin;
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 457a3659-ed96-456a-a6a1-2881226a86ec {"am": "ባለሙያ", "en": "Employee"} employee \N t
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 34a7f69c-3f30-47a0-81c3-fcfc3087e456 {"am": "ቡድን መሪ", "en": "Team Leader"} teamLeader \N t
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 2cd9e3c5-bd41-48f3-a849-f497b18b2905 {"am": "ዳይሬክተር", "en": "Director"} director \N t
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 db310acf-7a78-40a3-83c7-9a9e9e6d1fc7 {"am": "ዘርፍ ኃላፊ", "en": "Deputy"} deputy \N t
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 1a4b4d40-e4fc-4f38-99a6-f81dc5fcff23 {"am": "ቢሮ ኃላፊ", "en": "Office Head"} officeHead \N t
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 83bc6cd3-119e-4a41-917c-c763fb3fd013 {"am": "መዝገብ ቤት", "en": "Record Officer"} recordOfficer \N t
+\.
+
+
+--
+-- Data for Name: positions; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.positions (created_at, updated_at, id, name, key, parent_position_id, unit_id, organization_id, project_id, position_type_id, rank) FROM stdin;
+\.
+
+
+--
+-- Data for Name: projects; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.projects (created_at, updated_at, id, name, key, "from", "to", unit_id, organization_id, amharic_from, amharic_to) FROM stdin;
+\.
+
+
+--
+-- Data for Name: role_permissions; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.role_permissions (created_at, updated_at, id, role_id, permission_id) FROM stdin;
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 d2468745-f511-4a9e-bfc6-96cac15b4a3a 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000020
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 6804e41e-686f-49d8-a754-f2a9d20a0799 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000021
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 9cbd7b08-3891-431f-8c72-ecb338c4e554 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000022
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 5fc29d4d-09a6-498d-8cff-9dfb53b1a954 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000023
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 08959cd5-cc3d-4c01-977d-6fff485c17bc 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000024
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 c94676b4-77ff-4d49-9819-cc5255017507 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000025
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 159abb81-231b-4d2c-85e3-4c725591a8e8 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000026
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 cb478271-366a-4150-a083-a3060d2cd2fc 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000027
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 eb66c475-f272-405f-bcbc-0fe403b26bc3 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000028
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 79b4b3f7-9a2c-42c0-aa4e-c65badbdfcfc 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000029
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 1ecfe840-fd9a-453f-9a45-5cbf2a1d501c 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000030
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 6416e988-c64d-4c81-a8f7-daa9d7de093a 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000031
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 a06caf78-4c20-4126-a71f-6373e618cc3c af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f a1000001-0001-4000-8000-000000000001
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 80fb80b9-87c4-4eb4-a5dd-4ff26bffbca5 af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f a1000001-0001-4000-8000-00000000000d
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 df4b7e02-77bb-48e7-a9ee-8a8f0fd12222 af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f a1000001-0001-4000-8000-00000000000f
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 735892d0-4a3d-45a5-84de-5934caca59ff af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f a1000001-0001-4000-8000-000000000010
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 56c10be1-f439-4565-b744-62af83e588c6 af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f a1000001-0001-4000-8000-000000000011
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 2956c3e0-8130-4068-a52b-c42a9fab5f4c af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f a1000001-0001-4000-8000-000000000012
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 8c918f8d-ca75-41a4-883e-1666e4b67886 af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f b2000001-0001-4000-8000-000000000001
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 7091a2ba-0cc0-48f5-8784-6ee3f9c4c6cc af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f b2000001-0001-4000-8000-000000000003
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 b58f9547-2abb-4100-a919-c7d650c6000c 7c70609a-17c3-4c6d-a4f5-c658f1ec6ebd b2000001-0001-4000-8000-000000000011
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 11095ea8-16c9-4d51-aeff-a34e81149ba5 7c70609a-17c3-4c6d-a4f5-c658f1ec6ebd b2000001-0001-4000-8000-000000000013
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 58b5833a-4387-4bcd-9f97-6dab2d717a2a ecabc1b4-35b0-4f8e-8f76-8d69dfdb3b5c a1000001-0001-4000-8000-000000000001
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 c098621d-6d3d-4a21-a702-bf2189a8568d 3bf24d98-25e3-4ca6-9db9-f58002908ded a1000001-0001-4000-8000-000000000001
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 1fe2a231-d31f-4321-90b0-bf285ca1a2e4 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000032
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 abb44789-e66d-40d3-8747-228048198e54 b2de1eae-ef93-4e90-8ec9-351f0dd8a6a9 019b5993-0000-0000-0000-000000000015
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 428121a0-df5f-40e5-bc54-9f418f7faa89 b2de1eae-ef93-4e90-8ec9-351f0dd8a6a9 019b5993-0000-0000-0000-000000000016
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 bd6774d7-33fe-4859-9f01-857131123dad b2de1eae-ef93-4e90-8ec9-351f0dd8a6a9 019b5993-0000-0000-0000-000000000017
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 3f3b216f-aac3-427d-877f-8d28c7ba3fb6 b2de1eae-ef93-4e90-8ec9-351f0dd8a6a9 019b5993-0000-0000-0000-000000000021
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 f8e4d27b-3b3e-40fe-9814-acced839c20c b2de1eae-ef93-4e90-8ec9-351f0dd8a6a9 019b5993-0000-0000-0000-000000000022
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 661deeb9-8792-4a3b-adb7-b366a37b7314 b2de1eae-ef93-4e90-8ec9-351f0dd8a6a9 019b5993-0000-0000-0000-000000000023
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 635deab2-7c9b-4d9d-b00e-3a51bdbc0053 b3a9a5b5-9825-4290-8498-c62fb5925acd 019b5993-0000-0000-0000-000000000015
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 66985b9a-4e7b-418a-8ef4-3ddb67319bc6 b3a9a5b5-9825-4290-8498-c62fb5925acd 019b5993-0000-0000-0000-000000000016
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 73e5759e-edc9-4771-b464-b44d2714b878 b3a9a5b5-9825-4290-8498-c62fb5925acd 019b5993-0000-0000-0000-000000000017
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 9fe477a9-80ba-4ff9-bc1b-20fd6a46aca6 1283b7d4-6ab4-438d-bff5-e20400baa307 62b5aa2d-4ef6-474d-913a-994568dce1c8
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 4cd04170-32ad-4b08-a3df-d2bcee8aeeab 1283b7d4-6ab4-438d-bff5-e20400baa307 4de87873-e00d-4330-9b4f-f4fb065f49e0
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 8c4ef01a-8990-4457-85b0-015e8c0e40fb 1283b7d4-6ab4-438d-bff5-e20400baa307 2bfa2428-ec40-4588-9b01-dfacce6a2b82
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 a53518bf-61f4-4f4e-a31b-e10a54b6f929 1283b7d4-6ab4-438d-bff5-e20400baa307 37ff6f5b-9fb0-4139-af99-22fe54703029
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 da03ef05-02ad-4f5a-a6af-c118ad28d26f 1283b7d4-6ab4-438d-bff5-e20400baa307 b6ca90ff-3e95-4af2-bac8-fb298ca62080
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 4928c0da-406b-4fc8-adb3-25aaadead7b3 1283b7d4-6ab4-438d-bff5-e20400baa307 f258fb51-2890-4c93-b024-271b09d705d0
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 3e8401df-1418-4e2d-a451-1153d9080719 2389df8c-81f6-422e-aec2-34ad92c73c46 a1000001-0001-4000-8000-000000000001
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 8a5fe730-9d3f-4803-8437-ca1cbeddc50e 2389df8c-81f6-422e-aec2-34ad92c73c46 a1000001-0001-4000-8000-000000000002
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 0ec681f7-7d06-40ee-9187-fc4cf5997662 2389df8c-81f6-422e-aec2-34ad92c73c46 a1000001-0001-4000-8000-000000000003
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 456854b1-2d47-44a7-bc8b-b7699a66b484 2389df8c-81f6-422e-aec2-34ad92c73c46 a1000001-0001-4000-8000-000000000004
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 71790188-8aa9-4600-b0f0-c7443b0f4b2a 2389df8c-81f6-422e-aec2-34ad92c73c46 a1000001-0001-4000-8000-000000000005
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 3206fdee-8059-4628-82ec-058ffcf5d834 2389df8c-81f6-422e-aec2-34ad92c73c46 a1000001-0001-4000-8000-000000000008
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 84f54c42-e0bb-45f8-8fd3-2b55abc1e0c5 2389df8c-81f6-422e-aec2-34ad92c73c46 a1000001-0001-4000-8000-00000000000e
+2026-06-16 17:56:01.129917+00 2026-06-16 22:44:20.854294+00 7547eb9c-30cb-41e6-a188-ce10a5743508 2389df8c-81f6-422e-aec2-34ad92c73c46 a1000001-0001-4000-8000-00000000000f
+2026-06-16 17:56:01.129917+00 2026-06-16 22:44:20.854294+00 a108b247-e653-474c-9e72-ab95b93c4af5 2389df8c-81f6-422e-aec2-34ad92c73c46 a1000001-0001-4000-8000-000000000010
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 9563b7b7-fb13-46aa-b0d4-11679da625b2 2389df8c-81f6-422e-aec2-34ad92c73c46 b2000001-0001-4000-8000-000000000001
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 7af7f45e-fff1-48ea-90af-6cb89dae95b0 2389df8c-81f6-422e-aec2-34ad92c73c46 b2000001-0001-4000-8000-000000000003
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 be3f06f2-3234-45e0-9066-85ea67663be8 2389df8c-81f6-422e-aec2-34ad92c73c46 b2000001-0001-4000-8000-000000000015
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 5007c2f7-99f4-4099-b412-7ae2a733fd7c 2389df8c-81f6-422e-aec2-34ad92c73c46 b2000001-0001-4000-8000-000000000005
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 2e38043e-8bad-4229-b0d4-234e4a446570 2389df8c-81f6-422e-aec2-34ad92c73c46 b2000001-0001-4000-8000-000000000007
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 8d58a86e-789d-42e9-b939-05a8bb6d7771 2389df8c-81f6-422e-aec2-34ad92c73c46 b2000001-0001-4000-8000-000000000009
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 8d735f8a-3990-4ece-b94d-0d546000fa15 2389df8c-81f6-422e-aec2-34ad92c73c46 b2000001-0001-4000-8000-00000000000b
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 687f6f96-fc8a-43e0-b520-5d9321c72bdc 2389df8c-81f6-422e-aec2-34ad92c73c46 b2000001-0001-4000-8000-00000000000d
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 9388c707-69fa-469a-bf8f-06b2df43692f 2389df8c-81f6-422e-aec2-34ad92c73c46 b2000001-0001-4000-8000-00000000000f
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 187af1ba-ed6c-4bec-b214-6c5cac5afd3a 2389df8c-81f6-422e-aec2-34ad92c73c46 b2000001-0001-4000-8000-000000000011
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 4314808d-a144-4727-9609-40f1f57b737e 2389df8c-81f6-422e-aec2-34ad92c73c46 b2000001-0001-4000-8000-000000000013
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 4cb48808-cded-41e1-b360-05e2f8c61486 af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f b2000001-0001-4000-8000-000000000015
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 dd2be41d-6b61-4eb6-8048-d0ee8fe88cbf af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f b2000001-0001-4000-8000-000000000005
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 38635d67-1b2d-44bc-a548-6a07d411ff01 af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f b2000001-0001-4000-8000-000000000007
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 980c9ed1-7084-4fe4-be82-2de8dc14863e af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f b2000001-0001-4000-8000-000000000009
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 8cf0eb6e-57ef-4990-b5ee-a4a01e1a195c af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f b2000001-0001-4000-8000-00000000000b
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 adcca107-94aa-47be-be9e-37b6cfaac580 af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f b2000001-0001-4000-8000-00000000000d
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 b3e79c46-974e-4b4c-b6c3-203d6e4c5283 af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f b2000001-0001-4000-8000-00000000000f
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 df3c96cc-e8f3-41a0-bc1e-738dc668f69f af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f b2000001-0001-4000-8000-000000000011
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 b1f9a6a4-ce66-4c9b-aea6-0a7629aaa30e af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f b2000001-0001-4000-8000-000000000013
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 9c14abfd-f060-4c16-a02d-104f5c01975e 00a47fb6-163f-4c63-b88b-d5149abf33e4 a1000001-0001-4000-8000-000000000001
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 6921fbd3-8854-4106-87c8-371f643bf885 00a47fb6-163f-4c63-b88b-d5149abf33e4 a1000001-0001-4000-8000-000000000006
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 fd4a444b-34fc-40a2-86e8-58ba251e963e 00a47fb6-163f-4c63-b88b-d5149abf33e4 a1000001-0001-4000-8000-000000000008
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 a57d27fc-390b-4974-a983-081741b52f91 00a47fb6-163f-4c63-b88b-d5149abf33e4 a1000001-0001-4000-8000-000000000009
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 4cb9041c-172e-46c2-a918-4937d1afef82 00a47fb6-163f-4c63-b88b-d5149abf33e4 b2000001-0001-4000-8000-000000000001
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 bb92a889-1a34-4cfe-886c-c309766ba634 00a47fb6-163f-4c63-b88b-d5149abf33e4 b2000001-0001-4000-8000-000000000003
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 f2a59a6f-e05d-4f45-82c3-9a8ea1f40696 00a47fb6-163f-4c63-b88b-d5149abf33e4 b2000001-0001-4000-8000-000000000015
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 e2fb887b-5ebe-4893-b28c-7081dff7ce46 00a47fb6-163f-4c63-b88b-d5149abf33e4 b2000001-0001-4000-8000-000000000005
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 7e502c7a-ca54-4a6e-aa9a-5ac1728e934d 00a47fb6-163f-4c63-b88b-d5149abf33e4 b2000001-0001-4000-8000-000000000007
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 1872800b-deaf-4df6-aba9-bf886fadc2dd 00a47fb6-163f-4c63-b88b-d5149abf33e4 b2000001-0001-4000-8000-000000000009
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 fe144daa-a0bc-4f71-ab14-ec5ae712b0b1 00a47fb6-163f-4c63-b88b-d5149abf33e4 b2000001-0001-4000-8000-00000000000b
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 77fc3467-f519-499c-96f9-986b47624259 3bf24d98-25e3-4ca6-9db9-f58002908ded a1000001-0001-4000-8000-000000000002
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 78c24a7d-1596-45b4-8850-d30f7270a1c1 3bf24d98-25e3-4ca6-9db9-f58002908ded a1000001-0001-4000-8000-000000000003
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 29124825-397a-4fac-bf2b-6463281436a3 3bf24d98-25e3-4ca6-9db9-f58002908ded a1000001-0001-4000-8000-000000000004
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 f66a9f98-6d7c-4c51-b398-357b41fa14a0 3bf24d98-25e3-4ca6-9db9-f58002908ded a1000001-0001-4000-8000-000000000005
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 8bf11be4-9bbc-44f0-bba6-63b40e89f531 3bf24d98-25e3-4ca6-9db9-f58002908ded a1000001-0001-4000-8000-000000000008
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 7cda063b-81fd-4255-a6f5-077479a6d6fe 3bf24d98-25e3-4ca6-9db9-f58002908ded a1000001-0001-4000-8000-00000000000e
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 76de1ede-f3bd-4942-9c07-84ae151f824f 3bf24d98-25e3-4ca6-9db9-f58002908ded a1000001-0001-4000-8000-000000000009
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 335b3383-5fce-4a2d-aef3-a13073b9be99 449908c8-cd0e-42da-933a-49211b3e4385 a1000001-0001-4000-8000-000000000004
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 95992da6-b2fa-42c8-9aeb-45c9025aff71 449908c8-cd0e-42da-933a-49211b3e4385 a1000001-0001-4000-8000-000000000005
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 cbdafb64-aa5e-4215-a37f-6c96ad55cffc 449908c8-cd0e-42da-933a-49211b3e4385 a1000001-0001-4000-8000-000000000006
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 5b18b460-fb6c-4757-82fc-401fe17dcf95 449908c8-cd0e-42da-933a-49211b3e4385 a1000001-0001-4000-8000-000000000007
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 fa5f9c93-d976-443f-a29d-2348e8b7d705 449908c8-cd0e-42da-933a-49211b3e4385 a1000001-0001-4000-8000-000000000008
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 c833d9ca-104c-4696-a276-d788a3ec7555 449908c8-cd0e-42da-933a-49211b3e4385 a1000001-0001-4000-8000-000000000009
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 d4cada42-5692-4bd8-b24c-a4d0a3cabab6 449908c8-cd0e-42da-933a-49211b3e4385 a1000001-0001-4000-8000-00000000000a
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 a8b3177d-63d8-4768-b52b-d3da06d1e1be 449908c8-cd0e-42da-933a-49211b3e4385 a1000001-0001-4000-8000-00000000000b
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 b6c69153-fb1b-4338-8832-6c08db40878a 449908c8-cd0e-42da-933a-49211b3e4385 a1000001-0001-4000-8000-00000000000c
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 c3fa922e-83a6-4060-9a58-8299ea60dd4a 449908c8-cd0e-42da-933a-49211b3e4385 a1000001-0001-4000-8000-00000000000d
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 02d6139d-5f58-4139-be96-06a8f2a55fe7 449908c8-cd0e-42da-933a-49211b3e4385 a1000001-0001-4000-8000-00000000000e
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 d9593666-eaf5-49a8-ab94-4c1706f79b9b 449908c8-cd0e-42da-933a-49211b3e4385 a1000001-0001-4000-8000-00000000000f
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 21940e52-aa0c-411c-83d8-af74291d5741 449908c8-cd0e-42da-933a-49211b3e4385 a1000001-0001-4000-8000-000000000010
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 fe1b516f-435a-4d24-a332-5c69eee02c80 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-000000000001
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 27a04e80-781e-4e7d-b04b-530d97ae8c38 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-000000000002
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 a480fa13-dfd6-47b0-a047-112868b89adf 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-000000000003
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 aa9413ed-7cc8-492d-9ab5-52bed10514b2 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000001
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 589cb9b5-6c1d-42b3-9e15-f3ecade8a4ba 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000002
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 126ae1ee-8403-4366-99a0-037e09e7e9c8 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000003
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 4559d23e-4981-44ee-a6d6-d48adf8e2c59 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000006
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 ef824063-5cb7-428a-9789-ea57d97a023b 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000007
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 057718fc-7d0d-44b5-b77a-5a5386e719d7 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000009
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 d682325e-450d-4498-90b6-0618505156ff 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000010
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 f2d5ddab-ef4c-4895-bf49-e7399e5b6e8e 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000011
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 9ddb962c-374a-4a00-95c6-52144902029e 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000012
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 f60a07c9-d583-4585-8ec9-86926a6448bf 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000013
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 16ddcb55-5917-488c-a66d-470c58313ecc 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000014
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 54495116-82a9-4cd5-a138-fcde1dfd0d22 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000015
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 efdb944b-6328-453a-8181-db193ba82381 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000016
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 3fa226ce-d5f6-4b79-bb48-183d8bbdca99 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000017
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 78a6c0c6-52b1-4905-8c23-5c5e5bfb3970 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000018
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b296bc11-da9f-4e55-9928-38f7e3e366f1 520836ee-dc13-4c08-b572-8eced5bfd309 019b5993-0000-0000-0000-000000000019
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 329b932b-d0c2-4eed-a2ce-3097029c1705 00a47fb6-163f-4c63-b88b-d5149abf33e4 b2000001-0001-4000-8000-00000000000d
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 d28982db-23f9-4ec4-b1ad-5004331b120b 00a47fb6-163f-4c63-b88b-d5149abf33e4 b2000001-0001-4000-8000-00000000000f
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 93db3dbe-f913-42bc-abc9-84041a3ea82e 00a47fb6-163f-4c63-b88b-d5149abf33e4 b2000001-0001-4000-8000-000000000011
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 eec87c00-3fa8-46e8-8d65-c727de8d2817 00a47fb6-163f-4c63-b88b-d5149abf33e4 b2000001-0001-4000-8000-000000000013
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 5d014758-a362-452b-bdc0-154aa16995e4 7c70609a-17c3-4c6d-a4f5-c658f1ec6ebd a1000001-0001-4000-8000-000000000001
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 d0ec0573-4f58-4656-9282-cccf280f5932 7c70609a-17c3-4c6d-a4f5-c658f1ec6ebd a1000001-0001-4000-8000-000000000007
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 92969561-557d-4660-8ff0-735d347444ba 7c70609a-17c3-4c6d-a4f5-c658f1ec6ebd a1000001-0001-4000-8000-000000000008
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 7ed67ee8-db23-45ff-99b8-1f68ff20e3aa 7c70609a-17c3-4c6d-a4f5-c658f1ec6ebd b2000001-0001-4000-8000-000000000001
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 5139e32b-079b-44de-a03a-b6c90674fed0 7c70609a-17c3-4c6d-a4f5-c658f1ec6ebd b2000001-0001-4000-8000-000000000003
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 0dc7c638-1fa9-452e-b113-e2cead61c23b 7c70609a-17c3-4c6d-a4f5-c658f1ec6ebd b2000001-0001-4000-8000-000000000015
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 71baa181-da96-4558-9f63-cf3bc6bd54de 7c70609a-17c3-4c6d-a4f5-c658f1ec6ebd b2000001-0001-4000-8000-000000000005
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 e90a9a3e-baa3-44f4-8dec-b72b05c9b634 7c70609a-17c3-4c6d-a4f5-c658f1ec6ebd b2000001-0001-4000-8000-000000000007
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 0714c762-2ab6-457a-9b93-ba0f791add05 7c70609a-17c3-4c6d-a4f5-c658f1ec6ebd b2000001-0001-4000-8000-000000000009
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 6b620177-0915-462e-969d-7576f3639131 7c70609a-17c3-4c6d-a4f5-c658f1ec6ebd b2000001-0001-4000-8000-00000000000b
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 7995ef7b-5e2f-4c83-b018-70903cacc9c3 7c70609a-17c3-4c6d-a4f5-c658f1ec6ebd b2000001-0001-4000-8000-00000000000d
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 57a886e0-b741-42fd-88c1-802d1f509196 7c70609a-17c3-4c6d-a4f5-c658f1ec6ebd b2000001-0001-4000-8000-00000000000f
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 0d2042e6-e999-4e5b-9d88-228265decf99 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-000000000004
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 0d2a207a-3f09-4bf1-a25b-95ef353077da 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-000000000015
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 36725646-2cef-44d3-b9b5-cd1792caadf6 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-000000000006
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 af1e2ad6-6657-44b4-baaf-07b001b8f30e 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-000000000007
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 8a107d9e-df39-4c04-aa01-71e127850eb5 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-000000000008
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 0615e723-3096-43b8-9111-ce82028ce5a3 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-000000000009
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 54ef2633-9d16-4680-b2a7-b7bea0fa4203 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-00000000000a
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 76f384e5-88ed-4e1f-875e-737db7d03cc3 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-00000000000b
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 d6335dc2-f370-452d-b564-66504f046f02 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-00000000000c
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 5a685e93-635d-4f98-b444-7df93491cd78 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-00000000000d
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 264eaba2-ea9f-4654-9f70-cce3ef650027 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-00000000000e
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 f36652e4-1e87-4d11-8b04-d07e69c1ae66 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-00000000000f
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 0a38cd9f-fca3-421d-85e7-25ff5510e84f 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-000000000010
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 c91eccab-03d7-4a54-a496-1722cb2808d8 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-000000000011
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 25063ee8-f353-458e-92f7-f6964fc203c9 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-000000000012
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 c6050026-35bd-4289-8dcf-5646a219d17e 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-000000000013
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 6779fa7d-b453-4bf5-b9d3-43de165ecee3 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-000000000014
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 7f982ce9-8e1c-4d06-8ad1-9f25c267c4ca 449908c8-cd0e-42da-933a-49211b3e4385 62b5aa2d-4ef6-474d-913a-994568dce1c8
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 707130ee-b777-442d-be36-8b9cdccfda3a 449908c8-cd0e-42da-933a-49211b3e4385 8072204d-26de-4e62-88aa-74afd916a0cb
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 cf8184ca-d20a-47c0-8a07-3f3ec5b9b8d5 449908c8-cd0e-42da-933a-49211b3e4385 b7dc55a6-ae7c-4558-8c4e-7d8ce5c7fa08
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 5d057e81-5cea-49d9-a4c6-852ecfb76dbd 449908c8-cd0e-42da-933a-49211b3e4385 7ef06121-bd31-4c0d-b36d-5401b4bfd05c
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 24047be6-a715-42c5-b65f-4811d796d1ff 449908c8-cd0e-42da-933a-49211b3e4385 2688e144-7f0c-4704-8d59-e92b0c08117a
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 912d4efb-e676-4cc5-a24e-1f7dcd412180 449908c8-cd0e-42da-933a-49211b3e4385 4de87873-e00d-4330-9b4f-f4fb065f49e0
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 6d8abe3e-965b-407a-9eda-714fb54aa64e 449908c8-cd0e-42da-933a-49211b3e4385 36f022b4-4b94-4220-a46c-df7bd1a1b184
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 57a00f00-7a78-4bcd-92dc-55865fd7347b 449908c8-cd0e-42da-933a-49211b3e4385 c1f34177-a0ae-4a46-a24a-3281b9137bab
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 6243964d-1ddf-4009-9b79-3c854c02781c 449908c8-cd0e-42da-933a-49211b3e4385 2bfa2428-ec40-4588-9b01-dfacce6a2b82
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 47319f4b-b880-4d0c-a86f-c0421e1c4076 449908c8-cd0e-42da-933a-49211b3e4385 1e92daff-9cc7-4a67-9994-879f34bfda16
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 2529b9cb-41c6-4cd0-af5b-c0dc747fd54d 449908c8-cd0e-42da-933a-49211b3e4385 4ef2d8ad-c627-4448-b4b6-dd6b8b602dc1
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 9e9fa38f-3c71-499b-ae20-717ac0757e16 449908c8-cd0e-42da-933a-49211b3e4385 15353ac5-246b-42e6-9ac3-eb61c4f1cd22
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 0dab0330-412c-4864-b718-67773af09db2 449908c8-cd0e-42da-933a-49211b3e4385 37ff6f5b-9fb0-4139-af99-22fe54703029
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 408da2ec-445a-4a7b-9297-5cf7277b4c47 449908c8-cd0e-42da-933a-49211b3e4385 af6c091a-6448-4459-a635-c2181efd1de0
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 50e33268-371a-46af-ad0f-22e0cf37e9f6 449908c8-cd0e-42da-933a-49211b3e4385 b6ca90ff-3e95-4af2-bac8-fb298ca62080
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 28699326-8fdc-4c01-a03d-3f6c686ddd70 449908c8-cd0e-42da-933a-49211b3e4385 0637472f-d6b7-4332-85bb-eaa6a02205c1
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 6e55e5dc-6e7e-42d6-a25e-afdc5cd84c60 449908c8-cd0e-42da-933a-49211b3e4385 de366c81-b6d1-4cf9-a5f1-a5c8a6fb5e7b
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 e36f295c-6fab-4b24-8d4b-6a772222eb40 449908c8-cd0e-42da-933a-49211b3e4385 f258fb51-2890-4c93-b024-271b09d705d0
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 af1d89d7-a6bc-442d-acb6-d33f395a39c7 449908c8-cd0e-42da-933a-49211b3e4385 4052b7b8-e9f6-4bfe-9b93-eb59f9e4e576
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 db5f5f06-3e5f-4330-a95d-160c503718f7 449908c8-cd0e-42da-933a-49211b3e4385 965ec76d-bbdb-47a1-a916-07c52f609fa7
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 e4164fe0-53e4-4067-b544-ee24549c6926 449908c8-cd0e-42da-933a-49211b3e4385 019cbdc6-3d7a-73aa-ac57-51436dfa50e9
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 cd6a57a7-dfcf-46c0-8a44-05305a29af79 449908c8-cd0e-42da-933a-49211b3e4385 14f438c6-9295-44a0-a4f3-4ac9855efc37
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 0b3ea7ee-f8e7-49d1-8d42-c8190eaa38ca 449908c8-cd0e-42da-933a-49211b3e4385 019b5993-0000-0000-0000-000000000012
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 0515054d-7fb4-4a58-82dd-2b8b6ee08312 449908c8-cd0e-42da-933a-49211b3e4385 019b5993-0000-0000-0000-000000000013
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 061d3974-c6ae-4b58-abc5-a968874e6652 449908c8-cd0e-42da-933a-49211b3e4385 2cd9e3c5-bd41-48f3-a849-f497b18b2906
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 48047ffb-c830-424d-a4eb-663a06a76db1 449908c8-cd0e-42da-933a-49211b3e4385 257d8c6e-ef30-4510-892f-d4a2ad4c814d
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 cab8b77c-7ba9-4356-8563-3762c7615d5e 449908c8-cd0e-42da-933a-49211b3e4385 019b5993-0000-0000-0000-000000000021
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 7c0a9e38-f835-4be2-8b32-fd6172077f10 449908c8-cd0e-42da-933a-49211b3e4385 019b5993-0000-0000-0000-000000000022
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 f8ef83b0-1ef0-44e2-975e-ff264b3138b8 449908c8-cd0e-42da-933a-49211b3e4385 019b5993-0000-0000-0000-000000000023
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 826b58ba-019e-4f03-b52b-6c2ad14c469d 449908c8-cd0e-42da-933a-49211b3e4385 019b5993-0000-0000-0000-000000000015
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 47221c16-af57-4da3-8990-9ee986f772a6 449908c8-cd0e-42da-933a-49211b3e4385 019b5993-0000-0000-0000-000000000016
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 280aa965-a064-4722-90ef-b940e3072e28 449908c8-cd0e-42da-933a-49211b3e4385 019b5993-0000-0000-0000-000000000017
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 aeea3204-1154-43ac-b99c-05d3bdc0e728 449908c8-cd0e-42da-933a-49211b3e4385 019b5993-0000-0000-0000-000000000018
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 f8d410f7-d96e-4125-9e3b-837d16f8867c 520836ee-dc13-4c08-b572-8eced5bfd309 a1000001-0001-4000-8000-000000000003
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 4fbe4a44-3c3d-43cf-9a9a-09168d89250e 520836ee-dc13-4c08-b572-8eced5bfd309 a1000001-0001-4000-8000-000000000004
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 5f457f18-b29e-444f-a97c-85a70a43a1e6 520836ee-dc13-4c08-b572-8eced5bfd309 a1000001-0001-4000-8000-000000000007
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 3a7a8e81-7f29-4a84-b320-f27aa9981a56 520836ee-dc13-4c08-b572-8eced5bfd309 a1000001-0001-4000-8000-000000000008
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 19d7980a-f0d3-4890-83c3-4a9b569242e4 520836ee-dc13-4c08-b572-8eced5bfd309 a1000001-0001-4000-8000-000000000009
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 49af531a-ed72-47dd-92fc-a0aa37aa2581 520836ee-dc13-4c08-b572-8eced5bfd309 a1000001-0001-4000-8000-00000000000a
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 9a52564c-d5ed-45f4-8a80-a995f1bac686 520836ee-dc13-4c08-b572-8eced5bfd309 a1000001-0001-4000-8000-000000000011
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 409cdf63-e613-4a91-bdbf-890c65ea3f73 520836ee-dc13-4c08-b572-8eced5bfd309 a1000001-0001-4000-8000-000000000012
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 57929d71-55df-4a21-9356-14b60f268c4a 520836ee-dc13-4c08-b572-8eced5bfd309 a1000001-0001-4000-8000-000000000013
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 579bec35-2cad-47b8-bd00-a9cc776e699d 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-00000000000d
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 c39fb9bb-3ff1-480e-b51b-118113b21e68 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-00000000000e
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 e2ca4e0c-263f-4a91-8423-415e2cb81b8b 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-00000000000f
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 a199bf4b-9f0f-4cc2-aa2e-fd606e402162 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-000000000010
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 6f75ec2c-9a4b-40a7-afaa-3bc189c67494 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-000000000011
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 c78b4400-b9b7-4eb6-939a-ce7adc0e092e 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-000000000012
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 2d28c152-29b6-434a-a6bb-72cae5497c28 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-000000000013
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 0b377766-e67c-4d2a-9b3a-24761d30fab8 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-000000000014
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 996b554a-4416-4211-85c6-7e9c6fbf34e7 520836ee-dc13-4c08-b572-8eced5bfd309 a1000001-0001-4000-8000-000000000001
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 6f51cafe-a6a9-414d-bdda-150152488cb8 520836ee-dc13-4c08-b572-8eced5bfd309 a1000001-0001-4000-8000-000000000002
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 8276c844-98b5-489a-b0d9-92d63a09b691 520836ee-dc13-4c08-b572-8eced5bfd309 a1000001-0001-4000-8000-000000000005
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 b7e5177d-8231-487e-bf80-1458b6d3c9bf 520836ee-dc13-4c08-b572-8eced5bfd309 a1000001-0001-4000-8000-000000000006
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 fda27329-d504-445e-9f19-f7c4dc6c7f4b 520836ee-dc13-4c08-b572-8eced5bfd309 a1000001-0001-4000-8000-00000000000b
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 9c865122-03c0-44b7-be6a-88f40e644e8c 520836ee-dc13-4c08-b572-8eced5bfd309 a1000001-0001-4000-8000-00000000000c
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 8fe88e99-874e-4d2e-884a-d5afcd6a802a 520836ee-dc13-4c08-b572-8eced5bfd309 a1000001-0001-4000-8000-00000000000d
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 b1ebf69a-d56b-4149-8a1d-bd9698cd6ebd 520836ee-dc13-4c08-b572-8eced5bfd309 a1000001-0001-4000-8000-00000000000e
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 132c3d3e-dae8-46f8-a756-d5621b8d0724 520836ee-dc13-4c08-b572-8eced5bfd309 a1000001-0001-4000-8000-00000000000f
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 9eab3b2a-4452-4bf7-b975-076b95092c77 520836ee-dc13-4c08-b572-8eced5bfd309 a1000001-0001-4000-8000-000000000010
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 278cf3e8-efec-4ef3-a7f5-2a2c3481b472 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-000000000001
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 9c68b6d7-c4ef-41d8-ad2f-a302e699fb70 3bf24d98-25e3-4ca6-9db9-f58002908ded a1000001-0001-4000-8000-00000000000a
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 0eac83a4-f27d-4708-ae0d-6515d7b98082 449908c8-cd0e-42da-933a-49211b3e4385 a1000001-0001-4000-8000-000000000001
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 15095f66-25d1-4d9f-ada6-02220e2ac9a5 449908c8-cd0e-42da-933a-49211b3e4385 a1000001-0001-4000-8000-000000000002
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 ae250dc9-9b21-4cd2-b966-3f2c779618b0 449908c8-cd0e-42da-933a-49211b3e4385 a1000001-0001-4000-8000-000000000003
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 82b95450-c1a7-471d-904c-a121f075f35d 449908c8-cd0e-42da-933a-49211b3e4385 a1000001-0001-4000-8000-000000000011
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 e026b1fe-0495-4c2a-83ab-f1ade0ca8181 449908c8-cd0e-42da-933a-49211b3e4385 a1000001-0001-4000-8000-000000000012
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 7c54fb0d-33aa-4f86-ae4f-a0d0d652ee5d 449908c8-cd0e-42da-933a-49211b3e4385 a1000001-0001-4000-8000-000000000013
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 d68f9aa2-474d-4fda-b4dd-5d4547e67456 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-000000000016
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 1922d898-7e0f-4cf2-a0e0-c3d81b9b716b 449908c8-cd0e-42da-933a-49211b3e4385 b2000001-0001-4000-8000-000000000005
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 b35be64c-c486-469e-bbd9-2056d36891a9 449908c8-cd0e-42da-933a-49211b3e4385 e78f624d-b570-4cd6-8f16-12090a4a9d31
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 968ec13d-d4db-4d35-abd7-a557e5c5f312 449908c8-cd0e-42da-933a-49211b3e4385 7fba7887-a365-4281-96ea-fb14582b047e
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 99de544a-a5d3-439c-a58b-b1903138d389 449908c8-cd0e-42da-933a-49211b3e4385 a33905ff-f2b8-40b9-a8cf-e2968f6f46fb
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 35fb19c9-ad4d-45be-8ac0-cad471badbc5 449908c8-cd0e-42da-933a-49211b3e4385 019b5993-0000-0000-0000-000000000014
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 a744d036-3325-4fa9-8bd0-db2307be0bbf 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-000000000002
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 ef890154-be98-4a3e-8bd9-9e59d221421c 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-000000000003
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 b3b62090-42d6-4b7d-992a-22af36119ed3 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-000000000004
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 04cefd58-06d3-40ff-a4c9-81468b40fd50 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-000000000015
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 5ddecb3f-a0ac-4247-8fe2-d95ddf750759 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-000000000016
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 8d8f2008-5bff-43d9-9688-f18e09edee1a 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-000000000005
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 08648349-3936-4cd1-a79f-61b163302950 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-000000000006
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 1d90c158-b97e-466c-ae8d-a2fa810952c0 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-000000000007
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 814299ee-ccdc-4ba4-9b50-f0163217ad90 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-000000000008
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 37498f16-5206-457d-8822-3e3df9a6208c 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-000000000009
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 7cc155fd-722b-49b1-b8a2-c67cad6fa950 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-00000000000a
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 679cbedf-9560-49ef-abbc-d9fe45da0176 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-00000000000b
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 2b278bb9-129c-4095-a30b-9c773fe6dae1 520836ee-dc13-4c08-b572-8eced5bfd309 b2000001-0001-4000-8000-00000000000c
+\.
+
+
+--
+-- Data for Name: roles; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.roles (created_at, updated_at, id, name, key) FROM stdin;
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 520836ee-dc13-4c08-b572-8eced5bfd309 {"am": "ዋና ተቆጣጣሪ", "en": "Super Admin"} super_admin
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b2de1eae-ef93-4e90-8ec9-351f0dd8a6a9 {"am": "የመስሪያ ቤት ዋና ተቆጣጣሪ", "en": "Organization Admin"} organization_admin
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 b3a9a5b5-9825-4290-8498-c62fb5925acd {"am": "የመስሪያ ቤት ጽሕፈት ቤት ዋና ተቆጣጣሪ", "en": "Organization Unit Admin"} unit_admin
+2026-06-16 17:56:00.83431+00 2026-06-19 13:19:46.433082+00 ffe82427-ab16-4571-913c-553deb1b0f0f {"am": "ተጠቃሚ", "en": "Guest"} guest
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 1283b7d4-6ab4-438d-bff5-e20400baa307 {"en": "EDR Employee"} edr_employee
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 2389df8c-81f6-422e-aec2-34ad92c73c46 {"en": "EDR Line Staff"} edr_line_staff
+2026-06-17 04:52:23.697306+00 2026-06-19 13:19:46.516908+00 af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f {"en": "EDR Operations Officer"} edr_operations_officer
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 00a47fb6-163f-4c63-b88b-d5149abf33e4 {"en": "EDR Director"} edr_director
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 7c70609a-17c3-4c6d-a4f5-c658f1ec6ebd {"en": "EDR CEO"} edr_ceo
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 ecabc1b4-35b0-4f8e-8f76-8d69dfdb3b5c {"en": "EDR Finance"} edr_finance
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 3bf24d98-25e3-4ca6-9db9-f58002908ded {"en": "EDR Marketing"} edr_marketing
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 449908c8-cd0e-42da-933a-49211b3e4385 {"en": "EDR Org Manager"} edr_org_manager
+2026-06-16 17:56:01.129917+00 2026-06-19 13:19:46.516908+00 944215d8-f400-4adc-b130-11ded2312124 {"en": "EDR Customer"} edr_customer
+\.
+
+
+--
+-- Data for Name: seals; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.seals (created_at, updated_at, id, "fileInfo", "uploadedSuccessfully", "isCurrent", name, unit_id) FROM stdin;
+\.
+
+
+--
+-- Data for Name: sessions; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.sessions (created_at, updated_at, id, email, device, "userInfo", user_id, expiry_time, refresh_count, status) FROM stdin;
+2026-06-16 20:13:33.240665+00 2026-06-17 06:26:38.413028+00 4ebd7c97-600e-4733-95a6-c5ce085a0694 superadmin@tria.com 196.190.60.216 {"id": "354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "email": "superadmin@tria.com", "roles": [{"id": "520836ee-dc13-4c08-b572-8eced5bfd309", "key": "super_admin"}], "status": "accepted", "employee": [{"id": "acc4cb94-2563-4d57-a01a-dadc10b01865", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "unitId": null, "positions": [], "organizationId": "5e62a292-c8c6-4b1d-b4bf-2d7086f895bb"}], "userType": "employee", "username": "superadmin", "permissions": [{"id": "019b5993-0000-0000-0000-000000000017", "key": "can:view:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000018", "key": "can:find_all:organization"}, {"id": "019b5993-0000-0000-0000-000000000019", "key": "can:update:organization"}, {"id": "019b5993-0000-0000-0000-000000000020", "key": "can:delete:organization"}, {"id": "019b5993-0000-0000-0000-000000000021", "key": "can:create:unit"}, {"id": "019b5993-0000-0000-0000-000000000022", "key": "can:update:unit"}, {"id": "019b5993-0000-0000-0000-000000000023", "key": "can:delete:unit"}, {"id": "019b5993-0000-0000-0000-000000000024", "key": "can:create:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000025", "key": "can:update:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000026", "key": "can:delete:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000027", "key": "can:create:default_position"}, {"id": "019b5993-0000-0000-0000-000000000028", "key": "can:update:default_position"}, {"id": "019b5993-0000-0000-0000-000000000029", "key": "can:delete:default_position"}, {"id": "019b5993-0000-0000-0000-000000000030", "key": "can:create:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000031", "key": "can:update:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000032", "key": "can:delete:organization_type"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:rule_engine:surcharge_types:manage"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000010", "key": "edr_freight_app:rule_engine:priority_configs:manage"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000012", "key": "edr_freight_app:rule_engine:rates:manage"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000014", "key": "edr_freight_app:rule_engine:approval_rules:manage"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "019b5993-0000-0000-0000-000000000001", "key": "can:create:role"}, {"id": "019b5993-0000-0000-0000-000000000002", "key": "can:update:role"}, {"id": "019b5993-0000-0000-0000-000000000003", "key": "can:delete:role"}, {"id": "019b5993-0000-0000-0000-000000000006", "key": "can:update:permission"}, {"id": "019b5993-0000-0000-0000-000000000007", "key": "can:delete:permission"}, {"id": "019b5993-0000-0000-0000-000000000009", "key": "can:create:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000010", "key": "can:delete:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000011", "key": "can:view:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000012", "key": "can:create:user_role"}, {"id": "019b5993-0000-0000-0000-000000000013", "key": "can:delete:user_role"}, {"id": "019b5993-0000-0000-0000-000000000014", "key": "can:view:user_role"}, {"id": "019b5993-0000-0000-0000-000000000015", "key": "can:create:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000016", "key": "can:delete:position_permission"}, {"id": "a1000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:bookings:payment_pnr"}, {"id": "a1000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:bookings:payment_verify"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000002", "key": "edr_freight_app:rule_engine:cargo_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000004", "key": "edr_freight_app:rule_engine:container_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000016", "key": "edr_freight_app:rule_engine:wagon_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000006", "key": "edr_freight_app:rule_engine:service_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000008", "key": "edr_freight_app:rule_engine:yards:manage"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:rule_engine:shipping_lines:manage"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}, {"id": "b2000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:rule_engine:weight_limit_rules:manage"}], "phoneNumber": "", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-16 22:24:52.98+00 0 EXPIRED
+2026-06-16 20:13:36.300354+00 2026-06-16 20:13:36.300354+00 b47600fd-0910-4595-8c76-5255eebde290 superadmin@tria.com 102.212.68.69 {"id": "354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "email": "superadmin@tria.com", "roles": [{"id": "520836ee-dc13-4c08-b572-8eced5bfd309", "key": "super_admin"}], "status": "accepted", "employee": [{"id": "acc4cb94-2563-4d57-a01a-dadc10b01865", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "unitId": null, "positions": [], "organizationId": "5e62a292-c8c6-4b1d-b4bf-2d7086f895bb"}], "userType": "employee", "username": "superadmin", "permissions": [{"id": "019b5993-0000-0000-0000-000000000017", "key": "can:view:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000018", "key": "can:find_all:organization"}, {"id": "019b5993-0000-0000-0000-000000000019", "key": "can:update:organization"}, {"id": "019b5993-0000-0000-0000-000000000020", "key": "can:delete:organization"}, {"id": "019b5993-0000-0000-0000-000000000021", "key": "can:create:unit"}, {"id": "019b5993-0000-0000-0000-000000000022", "key": "can:update:unit"}, {"id": "019b5993-0000-0000-0000-000000000023", "key": "can:delete:unit"}, {"id": "019b5993-0000-0000-0000-000000000024", "key": "can:create:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000025", "key": "can:update:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000026", "key": "can:delete:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000027", "key": "can:create:default_position"}, {"id": "019b5993-0000-0000-0000-000000000028", "key": "can:update:default_position"}, {"id": "019b5993-0000-0000-0000-000000000029", "key": "can:delete:default_position"}, {"id": "019b5993-0000-0000-0000-000000000030", "key": "can:create:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000031", "key": "can:update:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000032", "key": "can:delete:organization_type"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:bookings:payment_pnr"}, {"id": "b2000001-0001-4000-8000-000000000008", "key": "edr_freight_app:rule_engine:yards:manage"}, {"id": "b2000001-0001-4000-8000-000000000010", "key": "edr_freight_app:rule_engine:priority_configs:manage"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000012", "key": "edr_freight_app:rule_engine:rates:manage"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000014", "key": "edr_freight_app:rule_engine:approval_rules:manage"}, {"id": "019b5993-0000-0000-0000-000000000001", "key": "can:create:role"}, {"id": "019b5993-0000-0000-0000-000000000002", "key": "can:update:role"}, {"id": "019b5993-0000-0000-0000-000000000003", "key": "can:delete:role"}, {"id": "019b5993-0000-0000-0000-000000000006", "key": "can:update:permission"}, {"id": "019b5993-0000-0000-0000-000000000007", "key": "can:delete:permission"}, {"id": "019b5993-0000-0000-0000-000000000009", "key": "can:create:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000010", "key": "can:delete:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000011", "key": "can:view:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000012", "key": "can:create:user_role"}, {"id": "019b5993-0000-0000-0000-000000000013", "key": "can:delete:user_role"}, {"id": "019b5993-0000-0000-0000-000000000014", "key": "can:view:user_role"}, {"id": "019b5993-0000-0000-0000-000000000015", "key": "can:create:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000016", "key": "can:delete:position_permission"}, {"id": "a1000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:bookings:payment_verify"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000002", "key": "edr_freight_app:rule_engine:cargo_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000004", "key": "edr_freight_app:rule_engine:container_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000016", "key": "edr_freight_app:rule_engine:wagon_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000006", "key": "edr_freight_app:rule_engine:service_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:rule_engine:shipping_lines:manage"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}, {"id": "b2000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:rule_engine:weight_limit_rules:manage"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:rule_engine:surcharge_types:manage"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}], "phoneNumber": "", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-16 21:13:36.43+00 0 ACTIVE
+2026-06-16 20:12:45.949201+00 2026-06-17 05:59:06.721107+00 bbcbaa3d-7c1f-4431-836f-47c84cf53e6b superadmin@tria.com 196.188.126.10 {"id": "354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "email": "superadmin@tria.com", "roles": [{"id": "520836ee-dc13-4c08-b572-8eced5bfd309", "key": "super_admin"}], "status": "accepted", "employee": [{"id": "acc4cb94-2563-4d57-a01a-dadc10b01865", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "unitId": null, "positions": [], "organizationId": "5e62a292-c8c6-4b1d-b4bf-2d7086f895bb"}], "userType": "employee", "username": "superadmin", "permissions": [{"id": "019b5993-0000-0000-0000-000000000017", "key": "can:view:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000018", "key": "can:find_all:organization"}, {"id": "019b5993-0000-0000-0000-000000000019", "key": "can:update:organization"}, {"id": "019b5993-0000-0000-0000-000000000020", "key": "can:delete:organization"}, {"id": "019b5993-0000-0000-0000-000000000021", "key": "can:create:unit"}, {"id": "019b5993-0000-0000-0000-000000000022", "key": "can:update:unit"}, {"id": "019b5993-0000-0000-0000-000000000023", "key": "can:delete:unit"}, {"id": "019b5993-0000-0000-0000-000000000024", "key": "can:create:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000025", "key": "can:update:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000026", "key": "can:delete:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000027", "key": "can:create:default_position"}, {"id": "019b5993-0000-0000-0000-000000000028", "key": "can:update:default_position"}, {"id": "019b5993-0000-0000-0000-000000000029", "key": "can:delete:default_position"}, {"id": "019b5993-0000-0000-0000-000000000030", "key": "can:create:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000031", "key": "can:update:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000032", "key": "can:delete:organization_type"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:rule_engine:surcharge_types:manage"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000010", "key": "edr_freight_app:rule_engine:priority_configs:manage"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000012", "key": "edr_freight_app:rule_engine:rates:manage"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000014", "key": "edr_freight_app:rule_engine:approval_rules:manage"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "019b5993-0000-0000-0000-000000000001", "key": "can:create:role"}, {"id": "019b5993-0000-0000-0000-000000000002", "key": "can:update:role"}, {"id": "019b5993-0000-0000-0000-000000000003", "key": "can:delete:role"}, {"id": "019b5993-0000-0000-0000-000000000006", "key": "can:update:permission"}, {"id": "019b5993-0000-0000-0000-000000000007", "key": "can:delete:permission"}, {"id": "019b5993-0000-0000-0000-000000000009", "key": "can:create:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000010", "key": "can:delete:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000011", "key": "can:view:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000012", "key": "can:create:user_role"}, {"id": "019b5993-0000-0000-0000-000000000013", "key": "can:delete:user_role"}, {"id": "019b5993-0000-0000-0000-000000000014", "key": "can:view:user_role"}, {"id": "019b5993-0000-0000-0000-000000000015", "key": "can:create:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000016", "key": "can:delete:position_permission"}, {"id": "a1000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:bookings:payment_pnr"}, {"id": "a1000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:bookings:payment_verify"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000002", "key": "edr_freight_app:rule_engine:cargo_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000004", "key": "edr_freight_app:rule_engine:container_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000016", "key": "edr_freight_app:rule_engine:wagon_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000006", "key": "edr_freight_app:rule_engine:service_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000008", "key": "edr_freight_app:rule_engine:yards:manage"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:rule_engine:shipping_lines:manage"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}, {"id": "b2000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:rule_engine:weight_limit_rules:manage"}], "phoneNumber": "", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-16 21:58:06.57+00 0 EXPIRED
+2026-06-16 20:14:56.33852+00 2026-06-16 20:14:56.33852+00 3424e307-b3a9-4872-8f02-14e59697912e superadmin@tria.com 102.208.96.80 {"id": "354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "email": "superadmin@tria.com", "roles": [{"id": "520836ee-dc13-4c08-b572-8eced5bfd309", "key": "super_admin"}], "status": "accepted", "employee": [{"id": "acc4cb94-2563-4d57-a01a-dadc10b01865", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "unitId": null, "positions": [], "organizationId": "5e62a292-c8c6-4b1d-b4bf-2d7086f895bb"}], "userType": "employee", "username": "superadmin", "permissions": [{"id": "019b5993-0000-0000-0000-000000000017", "key": "can:view:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000018", "key": "can:find_all:organization"}, {"id": "019b5993-0000-0000-0000-000000000019", "key": "can:update:organization"}, {"id": "019b5993-0000-0000-0000-000000000020", "key": "can:delete:organization"}, {"id": "019b5993-0000-0000-0000-000000000021", "key": "can:create:unit"}, {"id": "019b5993-0000-0000-0000-000000000022", "key": "can:update:unit"}, {"id": "019b5993-0000-0000-0000-000000000023", "key": "can:delete:unit"}, {"id": "019b5993-0000-0000-0000-000000000024", "key": "can:create:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000025", "key": "can:update:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000026", "key": "can:delete:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000027", "key": "can:create:default_position"}, {"id": "019b5993-0000-0000-0000-000000000028", "key": "can:update:default_position"}, {"id": "019b5993-0000-0000-0000-000000000029", "key": "can:delete:default_position"}, {"id": "019b5993-0000-0000-0000-000000000030", "key": "can:create:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000031", "key": "can:update:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000032", "key": "can:delete:organization_type"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:bookings:payment_pnr"}, {"id": "b2000001-0001-4000-8000-000000000008", "key": "edr_freight_app:rule_engine:yards:manage"}, {"id": "b2000001-0001-4000-8000-000000000010", "key": "edr_freight_app:rule_engine:priority_configs:manage"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000012", "key": "edr_freight_app:rule_engine:rates:manage"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000014", "key": "edr_freight_app:rule_engine:approval_rules:manage"}, {"id": "019b5993-0000-0000-0000-000000000001", "key": "can:create:role"}, {"id": "019b5993-0000-0000-0000-000000000002", "key": "can:update:role"}, {"id": "019b5993-0000-0000-0000-000000000003", "key": "can:delete:role"}, {"id": "019b5993-0000-0000-0000-000000000006", "key": "can:update:permission"}, {"id": "019b5993-0000-0000-0000-000000000007", "key": "can:delete:permission"}, {"id": "019b5993-0000-0000-0000-000000000009", "key": "can:create:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000010", "key": "can:delete:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000011", "key": "can:view:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000012", "key": "can:create:user_role"}, {"id": "019b5993-0000-0000-0000-000000000013", "key": "can:delete:user_role"}, {"id": "019b5993-0000-0000-0000-000000000014", "key": "can:view:user_role"}, {"id": "019b5993-0000-0000-0000-000000000015", "key": "can:create:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000016", "key": "can:delete:position_permission"}, {"id": "a1000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:bookings:payment_verify"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000002", "key": "edr_freight_app:rule_engine:cargo_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000004", "key": "edr_freight_app:rule_engine:container_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000016", "key": "edr_freight_app:rule_engine:wagon_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000006", "key": "edr_freight_app:rule_engine:service_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:rule_engine:shipping_lines:manage"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}, {"id": "b2000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:rule_engine:weight_limit_rules:manage"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:rule_engine:surcharge_types:manage"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}], "phoneNumber": "", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-16 21:14:56.512+00 0 ACTIVE
+2026-06-16 20:19:08.656371+00 2026-06-16 20:19:08.656371+00 64277094-4521-4a81-85cc-adf60c1e713d superadmin@tria.com 196.188.176.198 {"id": "354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "email": "superadmin@tria.com", "roles": [{"id": "520836ee-dc13-4c08-b572-8eced5bfd309", "key": "super_admin"}], "status": "accepted", "employee": [{"id": "acc4cb94-2563-4d57-a01a-dadc10b01865", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "unitId": null, "positions": [], "organizationId": "5e62a292-c8c6-4b1d-b4bf-2d7086f895bb"}], "userType": "employee", "username": "superadmin", "permissions": [{"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "019b5993-0000-0000-0000-000000000001", "key": "can:create:role"}, {"id": "019b5993-0000-0000-0000-000000000002", "key": "can:update:role"}, {"id": "019b5993-0000-0000-0000-000000000003", "key": "can:delete:role"}, {"id": "019b5993-0000-0000-0000-000000000006", "key": "can:update:permission"}, {"id": "019b5993-0000-0000-0000-000000000007", "key": "can:delete:permission"}, {"id": "019b5993-0000-0000-0000-000000000009", "key": "can:create:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000010", "key": "can:delete:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000011", "key": "can:view:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000012", "key": "can:create:user_role"}, {"id": "019b5993-0000-0000-0000-000000000013", "key": "can:delete:user_role"}, {"id": "019b5993-0000-0000-0000-000000000014", "key": "can:view:user_role"}, {"id": "019b5993-0000-0000-0000-000000000015", "key": "can:create:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000016", "key": "can:delete:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000017", "key": "can:view:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000018", "key": "can:find_all:organization"}, {"id": "019b5993-0000-0000-0000-000000000019", "key": "can:update:organization"}, {"id": "019b5993-0000-0000-0000-000000000020", "key": "can:delete:organization"}, {"id": "019b5993-0000-0000-0000-000000000021", "key": "can:create:unit"}, {"id": "019b5993-0000-0000-0000-000000000022", "key": "can:update:unit"}, {"id": "019b5993-0000-0000-0000-000000000023", "key": "can:delete:unit"}, {"id": "019b5993-0000-0000-0000-000000000024", "key": "can:create:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000025", "key": "can:update:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000026", "key": "can:delete:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000027", "key": "can:create:default_position"}, {"id": "019b5993-0000-0000-0000-000000000028", "key": "can:update:default_position"}, {"id": "019b5993-0000-0000-0000-000000000029", "key": "can:delete:default_position"}, {"id": "019b5993-0000-0000-0000-000000000030", "key": "can:create:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000031", "key": "can:update:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000032", "key": "can:delete:organization_type"}, {"id": "a1000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:bookings:payment_pnr"}, {"id": "a1000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:bookings:payment_verify"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000002", "key": "edr_freight_app:rule_engine:cargo_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000004", "key": "edr_freight_app:rule_engine:container_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000016", "key": "edr_freight_app:rule_engine:wagon_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000006", "key": "edr_freight_app:rule_engine:service_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000008", "key": "edr_freight_app:rule_engine:yards:manage"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:rule_engine:shipping_lines:manage"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}, {"id": "b2000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:rule_engine:weight_limit_rules:manage"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:rule_engine:surcharge_types:manage"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000010", "key": "edr_freight_app:rule_engine:priority_configs:manage"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000012", "key": "edr_freight_app:rule_engine:rates:manage"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000014", "key": "edr_freight_app:rule_engine:approval_rules:manage"}], "phoneNumber": "", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-16 21:19:08.829+00 0 ACTIVE
+2026-06-16 20:19:20.46476+00 2026-06-16 20:19:20.46476+00 9bab12f7-73e1-4ba7-af4b-77630145c1df naodzerihun@gmail.com 102.208.96.80 {"id": "2fc3c733-8c49-47db-b2b4-8f75f522611e", "name": {"am": "Naod Abasiessie", "en": "Naod Abasiessie"}, "email": "naodzerihun@gmail.com", "roles": [], "status": "accepted", "userType": "individual", "username": "naodzerihun@gmail.com", "permissions": [], "phoneNumber": "+251923495365", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 2fc3c733-8c49-47db-b2b4-8f75f522611e 2026-06-16 21:19:20.776+00 0 ACTIVE
+2026-06-16 20:17:13.507152+00 2026-06-18 07:32:50.369572+00 97d4395b-f19a-492d-864d-c4cabae3e118 yaschalewerkihun6@gmail.com 196.190.60.216 {"id": "892478ff-b6f9-4389-94f2-cab4e830c5aa", "name": {"am": "YASCHALEW ERKIHUN", "en": "YASCHALEW ERKIHUN"}, "email": "yaschalewerkihun6@gmail.com", "roles": [], "status": "accepted", "employee": [], "userType": "individual", "username": "yaschalewerkihun6@gmail.com", "permissions": [], "phoneNumber": "+251929022432", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 892478ff-b6f9-4389-94f2-cab4e830c5aa 2026-06-16 22:19:20.714+00 0 EXPIRED
+2026-06-16 20:48:01.418823+00 2026-06-17 06:00:14.574649+00 a3e51024-a609-4336-9d43-5254cbec7c61 betmul@gmail.com 196.188.126.10 {"id": "f3905a90-b034-451c-8ba6-6b929105d423", "name": {"am": "Muluhabt Amsalu", "en": "Muluhabt Amsalu"}, "email": "betmul@gmail.com", "roles": [], "status": "accepted", "userType": "individual", "username": "betmul@gmail.com", "permissions": [], "phoneNumber": "+251940393837", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} f3905a90-b034-451c-8ba6-6b929105d423 2026-06-16 21:48:01.726+00 0 EXPIRED
+2026-06-16 21:33:24.931891+00 2026-06-17 08:22:53.159389+00 cded4049-f2de-4607-a986-4f5d8ecc2fcf marshyordanos@gmail.com 196.188.35.127 {"id": "8d9e3a2a-558c-4cca-987c-202dc8ac3c5c", "name": {"am": "Marshal Yordanos", "en": "Marshal Yordanos"}, "email": "marshyordanos@gmail.com", "roles": [], "status": "accepted", "employee": [], "userType": "individual", "username": "marshyordanos@gmail.com", "permissions": [], "phoneNumber": "+251986680094", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 8d9e3a2a-558c-4cca-987c-202dc8ac3c5c 2026-06-17 07:37:46.84+00 0 EXPIRED
+2026-06-17 19:30:36.760179+00 2026-06-18 06:18:45.350073+00 33dc392b-1602-464b-a4bb-f5e46a7ab8e6 marshyordanos@gmail.com 196.188.38.17 {"id": "8d9e3a2a-558c-4cca-987c-202dc8ac3c5c", "name": {"am": "Marshal Yordanos", "en": "Marshal Yordanos"}, "email": "marshyordanos@gmail.com", "roles": [], "status": "accepted", "employee": [], "userType": "individual", "username": "marshyordanos@gmail.com", "permissions": [], "phoneNumber": "+251986680094", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 8d9e3a2a-558c-4cca-987c-202dc8ac3c5c 2026-06-17 20:30:36.933+00 0 EXPIRED
+2026-06-17 04:57:54.152773+00 2026-06-17 05:01:50.03506+00 3e2a1437-f6ab-4cb4-816a-e1a71b4aa900 operations@edr.local 196.188.35.127 {"id": "645e0886-1e6d-4e5e-a7af-906026a7eb59", "name": {"en": "operations"}, "email": "operations@edr.local", "roles": [{"id": "af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f", "key": "edr_operations_officer"}], "status": "accepted", "employee": [{"id": "8d0a4549-d4c2-4de4-a966-d5be5cb7d9db", "name": {"en": "operations"}, "unitId": null, "positions": [], "organizationId": "a3f7bdac-e218-4554-aaa5-48511f4058d4"}], "userType": "employee", "username": "operations", "permissions": [{"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000011", "key": "edr_freight_app:fleet:view"}, {"id": "a1000001-0001-4000-8000-000000000012", "key": "edr_freight_app:fleet:manage"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}], "phoneNumber": null, "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 645e0886-1e6d-4e5e-a7af-906026a7eb59 2026-06-17 06:01:50.2+00 0 ACTIVE
+2026-06-17 04:58:31.712235+00 2026-06-17 08:23:01.534604+00 5d0d41d9-6110-4417-a177-5dc5719694f4 director@edr.local 196.188.35.127 {"id": "6f70ac3e-76dd-4c7c-be51-4838a5b92ad9", "name": {"en": "director"}, "email": "director@edr.local", "roles": [{"id": "00a47fb6-163f-4c63-b88b-d5149abf33e4", "key": "edr_director"}], "status": "accepted", "employee": [{"id": "f013d712-12ca-488f-883b-75f932ed9495", "name": {"en": "director"}, "unitId": null, "positions": [], "organizationId": "a3f7bdac-e218-4554-aaa5-48511f4058d4"}], "userType": "employee", "username": "director", "permissions": [{"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}], "phoneNumber": null, "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-17 07:34:48.742+00 0 EXPIRED
+2026-06-17 08:28:07.153671+00 2026-06-19 07:02:35.712086+00 1bb356c6-7016-47ae-b44c-04b333d1ff17 marshyordanos@gmail.com 196.188.33.174 {"id": "8d9e3a2a-558c-4cca-987c-202dc8ac3c5c", "name": {"am": "Marshal Yordanos", "en": "Marshal Yordanos"}, "email": "marshyordanos@gmail.com", "roles": [], "status": "accepted", "employee": [], "userType": "individual", "username": "marshyordanos@gmail.com", "permissions": [], "phoneNumber": "+251986680094", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 8d9e3a2a-558c-4cca-987c-202dc8ac3c5c 2026-06-19 07:22:17.28+00 0 LOGGED_OUT
+2026-06-17 04:59:13.492338+00 2026-06-17 04:59:13.492338+00 3a605479-05e9-480c-8e67-2a9cd88d156d ceo@edr.local 196.188.35.127 {"id": "f61f8b8d-e8b8-49c2-8198-14183746cf0b", "name": {"en": "ceo"}, "email": "ceo@edr.local", "roles": [{"id": "7c70609a-17c3-4c6d-a4f5-c658f1ec6ebd", "key": "edr_ceo"}], "status": "accepted", "employee": [{"id": "57d2e2de-f404-465b-8318-15306bc9c317", "name": {"en": "ceo"}, "unitId": null, "positions": [], "organizationId": "a3f7bdac-e218-4554-aaa5-48511f4058d4"}], "userType": "employee", "username": "ceo", "permissions": [{"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}], "phoneNumber": null, "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} f61f8b8d-e8b8-49c2-8198-14183746cf0b 2026-06-17 05:59:13.616+00 0 ACTIVE
+2026-06-17 04:55:34.734843+00 2026-06-17 04:59:28.820558+00 d4f10db0-39b2-4e51-a72f-7daa13120c59 marketing@edr.local 196.188.35.127 {"id": "b7e27b32-2c33-4a15-a13f-b849826d21a4", "name": {"en": "marketing"}, "email": "marketing@edr.local", "roles": [{"id": "3bf24d98-25e3-4ca6-9db9-f58002908ded", "key": "edr_marketing"}], "status": "accepted", "employee": [{"id": "00663904-7ea3-4344-833c-93907972c06a", "name": {"en": "marketing"}, "unitId": null, "positions": [], "organizationId": "a3f7bdac-e218-4554-aaa5-48511f4058d4"}], "userType": "employee", "username": "marketing", "permissions": [{"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}], "phoneNumber": null, "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-17 05:59:28.992+00 0 ACTIVE
+2026-06-16 19:56:49.072133+00 2026-06-17 05:01:34.091775+00 58027443-1a4d-459c-ab91-950dc8f25750 superadmin@tria.com 196.188.35.127 {"id": "354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "email": "superadmin@tria.com", "roles": [{"id": "520836ee-dc13-4c08-b572-8eced5bfd309", "key": "super_admin"}], "status": "accepted", "employee": [{"id": "acc4cb94-2563-4d57-a01a-dadc10b01865", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "unitId": null, "positions": [], "organizationId": "5e62a292-c8c6-4b1d-b4bf-2d7086f895bb"}], "userType": "employee", "username": "superadmin", "permissions": [{"id": "019b5993-0000-0000-0000-000000000017", "key": "can:view:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000018", "key": "can:find_all:organization"}, {"id": "019b5993-0000-0000-0000-000000000019", "key": "can:update:organization"}, {"id": "019b5993-0000-0000-0000-000000000020", "key": "can:delete:organization"}, {"id": "019b5993-0000-0000-0000-000000000021", "key": "can:create:unit"}, {"id": "019b5993-0000-0000-0000-000000000022", "key": "can:update:unit"}, {"id": "019b5993-0000-0000-0000-000000000023", "key": "can:delete:unit"}, {"id": "019b5993-0000-0000-0000-000000000024", "key": "can:create:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000025", "key": "can:update:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000026", "key": "can:delete:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000027", "key": "can:create:default_position"}, {"id": "019b5993-0000-0000-0000-000000000028", "key": "can:update:default_position"}, {"id": "019b5993-0000-0000-0000-000000000029", "key": "can:delete:default_position"}, {"id": "019b5993-0000-0000-0000-000000000030", "key": "can:create:organization_type"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "019b5993-0000-0000-0000-000000000031", "key": "can:update:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000032", "key": "can:delete:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000001", "key": "can:create:role"}, {"id": "019b5993-0000-0000-0000-000000000002", "key": "can:update:role"}, {"id": "019b5993-0000-0000-0000-000000000003", "key": "can:delete:role"}, {"id": "019b5993-0000-0000-0000-000000000006", "key": "can:update:permission"}, {"id": "019b5993-0000-0000-0000-000000000007", "key": "can:delete:permission"}, {"id": "019b5993-0000-0000-0000-000000000009", "key": "can:create:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000010", "key": "can:delete:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000011", "key": "can:view:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000012", "key": "can:create:user_role"}, {"id": "019b5993-0000-0000-0000-000000000013", "key": "can:delete:user_role"}, {"id": "019b5993-0000-0000-0000-000000000014", "key": "can:view:user_role"}, {"id": "019b5993-0000-0000-0000-000000000015", "key": "can:create:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000016", "key": "can:delete:position_permission"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000011", "key": "edr_freight_app:fleet:view"}, {"id": "a1000001-0001-4000-8000-000000000012", "key": "edr_freight_app:fleet:manage"}, {"id": "a1000001-0001-4000-8000-000000000013", "key": "edr_freight_app:admin"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:rule_engine:surcharge_types:manage"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000010", "key": "edr_freight_app:rule_engine:priority_configs:manage"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000012", "key": "edr_freight_app:rule_engine:rates:manage"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000014", "key": "edr_freight_app:rule_engine:approval_rules:manage"}, {"id": "a1000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:bookings:payment_pnr"}, {"id": "a1000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:bookings:payment_verify"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000002", "key": "edr_freight_app:rule_engine:cargo_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000004", "key": "edr_freight_app:rule_engine:container_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000016", "key": "edr_freight_app:rule_engine:wagon_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000006", "key": "edr_freight_app:rule_engine:service_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000008", "key": "edr_freight_app:rule_engine:yards:manage"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:rule_engine:shipping_lines:manage"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}, {"id": "b2000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:rule_engine:weight_limit_rules:manage"}], "phoneNumber": "", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 06:01:34.257+00 0 ACTIVE
+2026-06-18 07:33:35.923011+00 2026-06-19 06:13:48.876672+00 6afa2408-0c34-4193-ae72-1de8bfd8f8be alazarzegeye06@gmail.com 196.188.33.174 {"id": "6f001573-e7e0-4952-81ad-e422cfd4dc1e", "name": {"am": "Alazar Abate", "en": "Alazar Abate"}, "email": "alazarzegeye06@gmail.com", "roles": [], "status": "accepted", "employee": [], "userType": "individual", "username": "alazarzegeye06@gmail.com", "permissions": [], "phoneNumber": "+251922556878", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 6f001573-e7e0-4952-81ad-e422cfd4dc1e 2026-06-18 13:49:04.41+00 0 EXPIRED
+2026-06-17 05:07:43.046354+00 2026-06-20 09:17:48.375329+00 d6f9fcb7-8080-4851-9617-237a492ab929 nathnaelwonisha@gmail.com 196.188.33.174 {"id": "c15ee839-a3fb-4d0a-8848-874dafeac860", "name": {"am": "Nati Wondisha", "en": "Nati Wondisha"}, "email": "nathnaelwonisha@gmail.com", "roles": [], "status": "accepted", "employee": [], "userType": "individual", "username": "nathnaelwonisha@gmail.com", "permissions": [], "phoneNumber": "+251946669787", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} c15ee839-a3fb-4d0a-8848-874dafeac860 2026-06-20 09:16:23.672+00 0 EXPIRED
+2026-06-18 07:43:14.056542+00 2026-06-19 06:11:59.944711+00 7226a7ef-6d19-4cf2-8712-1d791659abec feventamrat4@gmail.com 196.188.33.174 {"id": "f2bd0214-cdcb-47aa-ac28-bd2fafc51a12", "name": {"am": "Feven Tamrat", "en": "Feven Tamrat"}, "email": "feventamrat4@gmail.com", "roles": [], "status": "accepted", "employee": [], "userType": "individual", "username": "feventamrat4@gmail.com", "permissions": [], "phoneNumber": "+251938121414", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} f2bd0214-cdcb-47aa-ac28-bd2fafc51a12 2026-06-18 14:33:52.158+00 0 EXPIRED
+2026-06-18 08:26:58.410594+00 2026-06-18 08:26:58.410594+00 bf73102a-c560-4ed7-8bc8-0917093b89a5 yaschalewerkihun63@gmail.com 196.188.33.174 {"id": "731f1978-b8cf-4597-ab71-18f2af0b0d95", "name": {"am": "YASCHALEW ERKIHUN", "en": "YASCHALEW ERKIHUN"}, "email": "yaschalewerkihun63@gmail.com", "roles": [], "status": "accepted", "userType": "individual", "username": "yaschalewerkihun63@gmail.com", "permissions": [], "phoneNumber": "+251929022411", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 731f1978-b8cf-4597-ab71-18f2af0b0d95 2026-06-18 09:26:58.76+00 0 ACTIVE
+2026-06-17 06:10:39.877366+00 2026-06-19 13:12:13.912943+00 cd821393-2b3b-4ad9-bf39-cce5e8e6d7a5 alazarzegeye06@gmail.com 196.191.149.130 {"id": "6f001573-e7e0-4952-81ad-e422cfd4dc1e", "name": {"am": "Alazar Abate", "en": "Alazar Abate"}, "email": "alazarzegeye06@gmail.com", "roles": [], "status": "accepted", "employee": [], "userType": "individual", "username": "alazarzegeye06@gmail.com", "permissions": [], "phoneNumber": "+251922556878", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 6f001573-e7e0-4952-81ad-e422cfd4dc1e 2026-06-19 13:09:46.813+00 0 EXPIRED
+2026-06-17 06:04:22.778095+00 2026-06-19 08:12:27.947414+00 016dc6a7-0df0-41a2-bdb3-ae60d4802eae marketing@edr.local 196.191.149.129 {"id": "b7e27b32-2c33-4a15-a13f-b849826d21a4", "name": {"en": "marketing"}, "email": "marketing@edr.local", "roles": [{"id": "3bf24d98-25e3-4ca6-9db9-f58002908ded", "key": "edr_marketing"}], "status": "accepted", "employee": [{"id": "00663904-7ea3-4344-833c-93907972c06a", "name": {"en": "marketing"}, "unitId": null, "positions": [], "organizationId": "a3f7bdac-e218-4554-aaa5-48511f4058d4"}], "userType": "employee", "username": "marketing", "permissions": [{"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}], "phoneNumber": null, "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-19 09:12:28.132+00 0 ACTIVE
+2026-06-17 06:34:40.493416+00 2026-06-22 06:15:55.077691+00 afc6b1f8-b003-45db-96a3-51367c5503e9 feventamrat4@gmail.com 196.191.149.129 {"id": "f2bd0214-cdcb-47aa-ac28-bd2fafc51a12", "name": {"am": "Feven Tamrat", "en": "Feven Tamrat"}, "email": "feventamrat4@gmail.com", "roles": [], "status": "accepted", "employee": [], "userType": "individual", "username": "feventamrat4@gmail.com", "permissions": [], "phoneNumber": "+251938121414", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} f2bd0214-cdcb-47aa-ac28-bd2fafc51a12 2026-06-19 09:20:56.785+00 0 EXPIRED
+2026-06-17 05:24:01.786714+00 2026-06-17 07:10:50.232681+00 01b0d92a-a3c9-4a8a-a820-fb4cd1b3bd37 marketing@edr.local 102.203.224.245 {"id": "b7e27b32-2c33-4a15-a13f-b849826d21a4", "name": {"en": "marketing"}, "email": "marketing@edr.local", "roles": [{"id": "3bf24d98-25e3-4ca6-9db9-f58002908ded", "key": "edr_marketing"}], "status": "accepted", "employee": [{"id": "00663904-7ea3-4344-833c-93907972c06a", "name": {"en": "marketing"}, "unitId": null, "positions": [], "organizationId": "a3f7bdac-e218-4554-aaa5-48511f4058d4"}], "userType": "employee", "username": "marketing", "permissions": [{"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}], "phoneNumber": null, "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-17 06:24:01.982+00 0 EXPIRED
+2026-06-18 22:16:37.966102+00 2026-06-19 06:20:42.64972+00 649d1342-6503-4142-85ce-79116b8571c5 director@edr.local 196.188.36.236 {"id": "6f70ac3e-76dd-4c7c-be51-4838a5b92ad9", "name": {"en": "director"}, "email": "director@edr.local", "roles": [{"id": "00a47fb6-163f-4c63-b88b-d5149abf33e4", "key": "edr_director"}], "status": "accepted", "employee": [{"id": "f013d712-12ca-488f-883b-75f932ed9495", "name": {"en": "director"}, "unitId": null, "positions": [], "organizationId": "a3f7bdac-e218-4554-aaa5-48511f4058d4"}], "userType": "employee", "username": "director", "permissions": [{"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}], "phoneNumber": null, "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-18 23:16:38.135+00 0 EXPIRED
+2026-06-17 07:26:36.448133+00 2026-06-17 10:51:35.595025+00 e4294525-d5fa-4899-8065-d2cc3ef92608 betmul@gmail.com 196.188.33.174 {"id": "f3905a90-b034-451c-8ba6-6b929105d423", "name": {"am": "Muluhabt Amsalu", "en": "Muluhabt Amsalu"}, "email": "betmul@gmail.com", "roles": [], "status": "accepted", "employee": [], "userType": "individual", "username": "betmul@gmail.com", "permissions": [], "phoneNumber": "+251940393837", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} f3905a90-b034-451c-8ba6-6b929105d423 2026-06-17 08:26:36.585+00 0 EXPIRED
+2026-06-19 08:10:54.306568+00 2026-06-19 08:10:54.306568+00 6e8deb78-20dd-4846-b6bd-07312a92a699 linestaff@edr.local 196.191.149.129 {"id": "637c7114-8391-4fd4-80be-3885a23df200", "name": {"en": "linestaff"}, "email": "linestaff@edr.local", "roles": [{"id": "2389df8c-81f6-422e-aec2-34ad92c73c46", "key": "edr_line_staff"}], "status": "accepted", "employee": [{"id": "88b43b35-08b8-49de-9af2-f1aeb291391a", "name": {"en": "linestaff"}, "unitId": null, "positions": [], "organizationId": "a3f7bdac-e218-4554-aaa5-48511f4058d4"}], "userType": "employee", "username": "linestaff", "permissions": [{"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}], "phoneNumber": null, "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 637c7114-8391-4fd4-80be-3885a23df200 2026-06-19 09:10:54.498+00 0 ACTIVE
+2026-06-17 07:49:55.482072+00 2026-06-17 09:18:09.009004+00 ff936f44-f5dd-4d05-9506-3e9965413458 hageritina27@gmail.com 196.191.149.130 {"id": "01967f26-5ad0-419c-aa4d-6a5019f8687e", "name": {"am": "Hager Tadesse", "en": "Hager Tadesse"}, "email": "hageritina27@gmail.com", "roles": [], "status": "accepted", "userType": "individual", "username": "hageritina27@gmail.com", "permissions": [], "phoneNumber": "+251930075932", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 01967f26-5ad0-419c-aa4d-6a5019f8687e 2026-06-17 08:49:55.78+00 0 EXPIRED
+2026-06-19 08:14:35.357724+00 2026-06-19 09:16:51.955771+00 27bcaefb-c0ce-4779-bc0f-5a37ba08791e director@edr.local 196.191.149.130 {"id": "6f70ac3e-76dd-4c7c-be51-4838a5b92ad9", "name": {"en": "director"}, "email": "director@edr.local", "roles": [{"id": "00a47fb6-163f-4c63-b88b-d5149abf33e4", "key": "edr_director"}], "status": "accepted", "employee": [{"id": "f013d712-12ca-488f-883b-75f932ed9495", "name": {"en": "director"}, "unitId": null, "positions": [], "organizationId": "a3f7bdac-e218-4554-aaa5-48511f4058d4"}], "userType": "employee", "username": "director", "permissions": [{"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}], "phoneNumber": null, "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-19 09:14:35.542+00 0 EXPIRED
+2026-06-17 12:07:27.252942+00 2026-06-17 18:02:20.839593+00 329331c6-7598-4c5f-86da-2636648f92a7 betmul@gmail.com 196.189.39.58 {"id": "f3905a90-b034-451c-8ba6-6b929105d423", "name": {"am": "Muluhabt Amsalu", "en": "Muluhabt Amsalu"}, "email": "betmul@gmail.com", "roles": [], "status": "accepted", "employee": [], "userType": "individual", "username": "betmul@gmail.com", "permissions": [], "phoneNumber": "+251940393837", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} f3905a90-b034-451c-8ba6-6b929105d423 2026-06-17 13:07:27.445+00 0 EXPIRED
+2026-06-17 08:32:25.318427+00 2026-06-17 11:45:29.103505+00 b88c2659-d3a7-4a2c-abd9-9f32ea630a6e superadmin@tria.com 102.218.51.37 {"id": "354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "email": "superadmin@tria.com", "roles": [{"id": "520836ee-dc13-4c08-b572-8eced5bfd309", "key": "super_admin"}], "status": "accepted", "employee": [{"id": "acc4cb94-2563-4d57-a01a-dadc10b01865", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "unitId": null, "positions": [], "organizationId": "5e62a292-c8c6-4b1d-b4bf-2d7086f895bb"}], "userType": "employee", "username": "superadmin", "permissions": [{"id": "019b5993-0000-0000-0000-000000000017", "key": "can:view:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000018", "key": "can:find_all:organization"}, {"id": "019b5993-0000-0000-0000-000000000019", "key": "can:update:organization"}, {"id": "019b5993-0000-0000-0000-000000000020", "key": "can:delete:organization"}, {"id": "019b5993-0000-0000-0000-000000000021", "key": "can:create:unit"}, {"id": "019b5993-0000-0000-0000-000000000022", "key": "can:update:unit"}, {"id": "019b5993-0000-0000-0000-000000000023", "key": "can:delete:unit"}, {"id": "019b5993-0000-0000-0000-000000000024", "key": "can:create:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000025", "key": "can:update:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000026", "key": "can:delete:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000027", "key": "can:create:default_position"}, {"id": "019b5993-0000-0000-0000-000000000028", "key": "can:update:default_position"}, {"id": "019b5993-0000-0000-0000-000000000029", "key": "can:delete:default_position"}, {"id": "019b5993-0000-0000-0000-000000000030", "key": "can:create:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000031", "key": "can:update:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000032", "key": "can:delete:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000001", "key": "can:create:role"}, {"id": "019b5993-0000-0000-0000-000000000002", "key": "can:update:role"}, {"id": "019b5993-0000-0000-0000-000000000003", "key": "can:delete:role"}, {"id": "019b5993-0000-0000-0000-000000000006", "key": "can:update:permission"}, {"id": "019b5993-0000-0000-0000-000000000007", "key": "can:delete:permission"}, {"id": "019b5993-0000-0000-0000-000000000009", "key": "can:create:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000010", "key": "can:delete:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000011", "key": "can:view:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000012", "key": "can:create:user_role"}, {"id": "019b5993-0000-0000-0000-000000000013", "key": "can:delete:user_role"}, {"id": "019b5993-0000-0000-0000-000000000014", "key": "can:view:user_role"}, {"id": "019b5993-0000-0000-0000-000000000015", "key": "can:create:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000016", "key": "can:delete:position_permission"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000011", "key": "edr_freight_app:fleet:view"}, {"id": "a1000001-0001-4000-8000-000000000012", "key": "edr_freight_app:fleet:manage"}, {"id": "a1000001-0001-4000-8000-000000000013", "key": "edr_freight_app:admin"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:rule_engine:surcharge_types:manage"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000010", "key": "edr_freight_app:rule_engine:priority_configs:manage"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000012", "key": "edr_freight_app:rule_engine:rates:manage"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000014", "key": "edr_freight_app:rule_engine:approval_rules:manage"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000002", "key": "edr_freight_app:rule_engine:cargo_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000004", "key": "edr_freight_app:rule_engine:container_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000016", "key": "edr_freight_app:rule_engine:wagon_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000006", "key": "edr_freight_app:rule_engine:service_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000008", "key": "edr_freight_app:rule_engine:yards:manage"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:rule_engine:shipping_lines:manage"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}, {"id": "b2000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:rule_engine:weight_limit_rules:manage"}, {"id": "a1000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:bookings:payment_pnr"}, {"id": "a1000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:bookings:payment_verify"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}], "phoneNumber": "", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 09:32:25.49+00 0 EXPIRED
+2026-06-19 08:05:45.863231+00 2026-06-19 08:14:51.52443+00 d135dda9-1e97-4d67-b28d-f59989a2f4e5 director@edr.local 196.191.149.129 {"id": "6f70ac3e-76dd-4c7c-be51-4838a5b92ad9", "name": {"en": "director"}, "email": "director@edr.local", "roles": [{"id": "00a47fb6-163f-4c63-b88b-d5149abf33e4", "key": "edr_director"}], "status": "accepted", "employee": [{"id": "f013d712-12ca-488f-883b-75f932ed9495", "name": {"en": "director"}, "unitId": null, "positions": [], "organizationId": "a3f7bdac-e218-4554-aaa5-48511f4058d4"}], "userType": "employee", "username": "director", "permissions": [{"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}], "phoneNumber": null, "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-19 09:14:51.678+00 0 ACTIVE
+2026-06-17 14:00:56.461458+00 2026-06-18 07:42:16.132006+00 031123b9-1e9d-4ccd-9a65-c0fde05b3398 superadmin@tria.com 38.104.242.123 {"id": "354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "email": "superadmin@tria.com", "roles": [{"id": "520836ee-dc13-4c08-b572-8eced5bfd309", "key": "super_admin"}], "status": "accepted", "employee": [{"id": "acc4cb94-2563-4d57-a01a-dadc10b01865", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "unitId": null, "positions": [], "organizationId": "5e62a292-c8c6-4b1d-b4bf-2d7086f895bb"}], "userType": "employee", "username": "superadmin", "permissions": [{"id": "019b5993-0000-0000-0000-000000000017", "key": "can:view:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000018", "key": "can:find_all:organization"}, {"id": "019b5993-0000-0000-0000-000000000019", "key": "can:update:organization"}, {"id": "019b5993-0000-0000-0000-000000000020", "key": "can:delete:organization"}, {"id": "019b5993-0000-0000-0000-000000000021", "key": "can:create:unit"}, {"id": "019b5993-0000-0000-0000-000000000022", "key": "can:update:unit"}, {"id": "019b5993-0000-0000-0000-000000000023", "key": "can:delete:unit"}, {"id": "019b5993-0000-0000-0000-000000000024", "key": "can:create:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000025", "key": "can:update:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000026", "key": "can:delete:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000027", "key": "can:create:default_position"}, {"id": "019b5993-0000-0000-0000-000000000028", "key": "can:update:default_position"}, {"id": "019b5993-0000-0000-0000-000000000029", "key": "can:delete:default_position"}, {"id": "019b5993-0000-0000-0000-000000000030", "key": "can:create:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000031", "key": "can:update:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000032", "key": "can:delete:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000001", "key": "can:create:role"}, {"id": "019b5993-0000-0000-0000-000000000002", "key": "can:update:role"}, {"id": "019b5993-0000-0000-0000-000000000003", "key": "can:delete:role"}, {"id": "019b5993-0000-0000-0000-000000000006", "key": "can:update:permission"}, {"id": "019b5993-0000-0000-0000-000000000007", "key": "can:delete:permission"}, {"id": "019b5993-0000-0000-0000-000000000009", "key": "can:create:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000010", "key": "can:delete:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000011", "key": "can:view:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000012", "key": "can:create:user_role"}, {"id": "019b5993-0000-0000-0000-000000000013", "key": "can:delete:user_role"}, {"id": "019b5993-0000-0000-0000-000000000014", "key": "can:view:user_role"}, {"id": "019b5993-0000-0000-0000-000000000015", "key": "can:create:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000016", "key": "can:delete:position_permission"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000011", "key": "edr_freight_app:fleet:view"}, {"id": "a1000001-0001-4000-8000-000000000012", "key": "edr_freight_app:fleet:manage"}, {"id": "a1000001-0001-4000-8000-000000000013", "key": "edr_freight_app:admin"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:rule_engine:surcharge_types:manage"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000010", "key": "edr_freight_app:rule_engine:priority_configs:manage"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000012", "key": "edr_freight_app:rule_engine:rates:manage"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000014", "key": "edr_freight_app:rule_engine:approval_rules:manage"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "a1000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:bookings:payment_pnr"}, {"id": "a1000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:bookings:payment_verify"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000002", "key": "edr_freight_app:rule_engine:cargo_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000004", "key": "edr_freight_app:rule_engine:container_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000016", "key": "edr_freight_app:rule_engine:wagon_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000006", "key": "edr_freight_app:rule_engine:service_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000008", "key": "edr_freight_app:rule_engine:yards:manage"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:rule_engine:shipping_lines:manage"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}, {"id": "b2000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:rule_engine:weight_limit_rules:manage"}], "phoneNumber": "", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 15:00:56.632+00 0 EXPIRED
+2026-06-17 18:06:42.054296+00 2026-06-18 06:15:17.093162+00 07270c44-9762-4fa2-9c48-e4b6a41a3be2 superadmin@tria.com 196.188.38.17 {"id": "354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "email": "superadmin@tria.com", "roles": [{"id": "520836ee-dc13-4c08-b572-8eced5bfd309", "key": "super_admin"}], "status": "accepted", "employee": [{"id": "acc4cb94-2563-4d57-a01a-dadc10b01865", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "unitId": null, "positions": [], "organizationId": "5e62a292-c8c6-4b1d-b4bf-2d7086f895bb"}], "userType": "employee", "username": "superadmin", "permissions": [{"id": "019b5993-0000-0000-0000-000000000017", "key": "can:view:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000018", "key": "can:find_all:organization"}, {"id": "019b5993-0000-0000-0000-000000000019", "key": "can:update:organization"}, {"id": "019b5993-0000-0000-0000-000000000020", "key": "can:delete:organization"}, {"id": "019b5993-0000-0000-0000-000000000021", "key": "can:create:unit"}, {"id": "019b5993-0000-0000-0000-000000000022", "key": "can:update:unit"}, {"id": "019b5993-0000-0000-0000-000000000023", "key": "can:delete:unit"}, {"id": "019b5993-0000-0000-0000-000000000024", "key": "can:create:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000025", "key": "can:update:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000026", "key": "can:delete:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000027", "key": "can:create:default_position"}, {"id": "019b5993-0000-0000-0000-000000000028", "key": "can:update:default_position"}, {"id": "019b5993-0000-0000-0000-000000000029", "key": "can:delete:default_position"}, {"id": "019b5993-0000-0000-0000-000000000030", "key": "can:create:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000031", "key": "can:update:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000032", "key": "can:delete:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000001", "key": "can:create:role"}, {"id": "019b5993-0000-0000-0000-000000000002", "key": "can:update:role"}, {"id": "019b5993-0000-0000-0000-000000000003", "key": "can:delete:role"}, {"id": "019b5993-0000-0000-0000-000000000006", "key": "can:update:permission"}, {"id": "019b5993-0000-0000-0000-000000000007", "key": "can:delete:permission"}, {"id": "019b5993-0000-0000-0000-000000000009", "key": "can:create:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000010", "key": "can:delete:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000011", "key": "can:view:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000012", "key": "can:create:user_role"}, {"id": "019b5993-0000-0000-0000-000000000013", "key": "can:delete:user_role"}, {"id": "019b5993-0000-0000-0000-000000000014", "key": "can:view:user_role"}, {"id": "019b5993-0000-0000-0000-000000000015", "key": "can:create:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000016", "key": "can:delete:position_permission"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000011", "key": "edr_freight_app:fleet:view"}, {"id": "a1000001-0001-4000-8000-000000000012", "key": "edr_freight_app:fleet:manage"}, {"id": "a1000001-0001-4000-8000-000000000013", "key": "edr_freight_app:admin"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:rule_engine:surcharge_types:manage"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000010", "key": "edr_freight_app:rule_engine:priority_configs:manage"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000012", "key": "edr_freight_app:rule_engine:rates:manage"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000014", "key": "edr_freight_app:rule_engine:approval_rules:manage"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "a1000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:bookings:payment_pnr"}, {"id": "a1000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:bookings:payment_verify"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000002", "key": "edr_freight_app:rule_engine:cargo_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000004", "key": "edr_freight_app:rule_engine:container_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000016", "key": "edr_freight_app:rule_engine:wagon_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000006", "key": "edr_freight_app:rule_engine:service_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000008", "key": "edr_freight_app:rule_engine:yards:manage"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:rule_engine:shipping_lines:manage"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}, {"id": "b2000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:rule_engine:weight_limit_rules:manage"}], "phoneNumber": "", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-17 21:16:21.584+00 0 EXPIRED
+2026-06-19 08:06:24.442228+00 2026-06-19 09:02:31.693246+00 00280b6b-3a75-4fbe-98e5-897fba7af33f lema@gmail.com 196.191.149.129 {"id": "9e05084a-c69e-4d22-825d-c9f4b4da80e1", "name": {"am": "lema lemu", "en": "lema lemu"}, "email": "lema@gmail.com", "roles": [], "status": "accepted", "employee": [], "userType": "individual", "username": "lema@gmail.com", "permissions": [], "phoneNumber": "+251912345678", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 9e05084a-c69e-4d22-825d-c9f4b4da80e1 2026-06-19 10:02:31.692+00 14997 ACTIVE
+2026-06-18 12:45:36.863523+00 2026-06-19 06:39:59.220155+00 c1dc225a-6e87-4df5-b7f5-5dbac7c8d766 director@edr.local 196.188.33.174 {"id": "6f70ac3e-76dd-4c7c-be51-4838a5b92ad9", "name": {"en": "director"}, "email": "director@edr.local", "roles": [{"id": "00a47fb6-163f-4c63-b88b-d5149abf33e4", "key": "edr_director"}], "status": "accepted", "employee": [{"id": "f013d712-12ca-488f-883b-75f932ed9495", "name": {"en": "director"}, "unitId": null, "positions": [], "organizationId": "a3f7bdac-e218-4554-aaa5-48511f4058d4"}], "userType": "employee", "username": "director", "permissions": [{"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}], "phoneNumber": null, "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-19 07:39:59.401+00 0 ACTIVE
+2026-06-18 15:56:11.126365+00 2026-06-18 18:24:19.475525+00 b26c3f06-4098-458c-a9ea-3ce3ae43328f superadmin@tria.com 102.213.68.76 {"id": "354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "email": "superadmin@tria.com", "roles": [{"id": "520836ee-dc13-4c08-b572-8eced5bfd309", "key": "super_admin"}], "status": "accepted", "employee": [{"id": "acc4cb94-2563-4d57-a01a-dadc10b01865", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "unitId": null, "positions": [], "organizationId": "5e62a292-c8c6-4b1d-b4bf-2d7086f895bb"}], "userType": "employee", "username": "superadmin", "permissions": [{"id": "019b5993-0000-0000-0000-000000000017", "key": "can:view:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000018", "key": "can:find_all:organization"}, {"id": "019b5993-0000-0000-0000-000000000019", "key": "can:update:organization"}, {"id": "019b5993-0000-0000-0000-000000000020", "key": "can:delete:organization"}, {"id": "019b5993-0000-0000-0000-000000000021", "key": "can:create:unit"}, {"id": "019b5993-0000-0000-0000-000000000022", "key": "can:update:unit"}, {"id": "019b5993-0000-0000-0000-000000000023", "key": "can:delete:unit"}, {"id": "019b5993-0000-0000-0000-000000000024", "key": "can:create:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000025", "key": "can:update:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000026", "key": "can:delete:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000027", "key": "can:create:default_position"}, {"id": "019b5993-0000-0000-0000-000000000028", "key": "can:update:default_position"}, {"id": "019b5993-0000-0000-0000-000000000029", "key": "can:delete:default_position"}, {"id": "019b5993-0000-0000-0000-000000000030", "key": "can:create:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000031", "key": "can:update:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000032", "key": "can:delete:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000001", "key": "can:create:role"}, {"id": "019b5993-0000-0000-0000-000000000002", "key": "can:update:role"}, {"id": "019b5993-0000-0000-0000-000000000003", "key": "can:delete:role"}, {"id": "019b5993-0000-0000-0000-000000000006", "key": "can:update:permission"}, {"id": "019b5993-0000-0000-0000-000000000007", "key": "can:delete:permission"}, {"id": "019b5993-0000-0000-0000-000000000009", "key": "can:create:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000010", "key": "can:delete:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000011", "key": "can:view:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000012", "key": "can:create:user_role"}, {"id": "019b5993-0000-0000-0000-000000000013", "key": "can:delete:user_role"}, {"id": "019b5993-0000-0000-0000-000000000014", "key": "can:view:user_role"}, {"id": "019b5993-0000-0000-0000-000000000015", "key": "can:create:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000016", "key": "can:delete:position_permission"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000011", "key": "edr_freight_app:fleet:view"}, {"id": "a1000001-0001-4000-8000-000000000012", "key": "edr_freight_app:fleet:manage"}, {"id": "a1000001-0001-4000-8000-000000000013", "key": "edr_freight_app:admin"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:rule_engine:surcharge_types:manage"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000010", "key": "edr_freight_app:rule_engine:priority_configs:manage"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000012", "key": "edr_freight_app:rule_engine:rates:manage"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000014", "key": "edr_freight_app:rule_engine:approval_rules:manage"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "a1000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:bookings:payment_pnr"}, {"id": "a1000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:bookings:payment_verify"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000002", "key": "edr_freight_app:rule_engine:cargo_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000004", "key": "edr_freight_app:rule_engine:container_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000016", "key": "edr_freight_app:rule_engine:wagon_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000006", "key": "edr_freight_app:rule_engine:service_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000008", "key": "edr_freight_app:rule_engine:yards:manage"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:rule_engine:shipping_lines:manage"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}, {"id": "b2000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:rule_engine:weight_limit_rules:manage"}], "phoneNumber": "", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 16:56:18.996+00 3 EXPIRED
+2026-06-18 19:06:54.513613+00 2026-06-19 06:22:12.087761+00 46b9730f-e608-42b1-b1ed-f19090ec479e marshyordanos@gmail.com 196.188.36.236 {"id": "8d9e3a2a-558c-4cca-987c-202dc8ac3c5c", "name": {"am": "Marshal Yordanos", "en": "Marshal Yordanos"}, "email": "marshyordanos@gmail.com", "roles": [], "status": "accepted", "employee": [], "userType": "individual", "username": "marshyordanos@gmail.com", "permissions": [], "phoneNumber": "+251986680094", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 8d9e3a2a-558c-4cca-987c-202dc8ac3c5c 2026-06-18 23:20:14.303+00 0 EXPIRED
+2026-06-18 22:16:20.503069+00 2026-06-18 22:16:20.503069+00 001b17ff-9c38-49b1-9212-31250c623a84 marketing@edr.local 196.188.36.236 {"id": "b7e27b32-2c33-4a15-a13f-b849826d21a4", "name": {"en": "marketing"}, "email": "marketing@edr.local", "roles": [{"id": "3bf24d98-25e3-4ca6-9db9-f58002908ded", "key": "edr_marketing"}], "status": "accepted", "employee": [{"id": "00663904-7ea3-4344-833c-93907972c06a", "name": {"en": "marketing"}, "unitId": null, "positions": [], "organizationId": "a3f7bdac-e218-4554-aaa5-48511f4058d4"}], "userType": "employee", "username": "marketing", "permissions": [{"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}], "phoneNumber": null, "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-18 23:16:20.685+00 0 ACTIVE
+2026-06-18 19:03:02.538961+00 2026-06-18 22:02:28.364208+00 3919608a-b714-4731-b1fd-ae77927d66c3 superadmin@tria.com 196.188.36.236 {"id": "354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "email": "superadmin@tria.com", "roles": [{"id": "520836ee-dc13-4c08-b572-8eced5bfd309", "key": "super_admin"}], "status": "accepted", "employee": [{"id": "acc4cb94-2563-4d57-a01a-dadc10b01865", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "unitId": null, "positions": [], "organizationId": "5e62a292-c8c6-4b1d-b4bf-2d7086f895bb"}], "userType": "employee", "username": "superadmin", "permissions": [{"id": "019b5993-0000-0000-0000-000000000017", "key": "can:view:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000018", "key": "can:find_all:organization"}, {"id": "019b5993-0000-0000-0000-000000000019", "key": "can:update:organization"}, {"id": "019b5993-0000-0000-0000-000000000020", "key": "can:delete:organization"}, {"id": "019b5993-0000-0000-0000-000000000021", "key": "can:create:unit"}, {"id": "019b5993-0000-0000-0000-000000000022", "key": "can:update:unit"}, {"id": "019b5993-0000-0000-0000-000000000023", "key": "can:delete:unit"}, {"id": "019b5993-0000-0000-0000-000000000024", "key": "can:create:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000025", "key": "can:update:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000026", "key": "can:delete:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000027", "key": "can:create:default_position"}, {"id": "019b5993-0000-0000-0000-000000000028", "key": "can:update:default_position"}, {"id": "019b5993-0000-0000-0000-000000000029", "key": "can:delete:default_position"}, {"id": "019b5993-0000-0000-0000-000000000030", "key": "can:create:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000031", "key": "can:update:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000032", "key": "can:delete:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000001", "key": "can:create:role"}, {"id": "019b5993-0000-0000-0000-000000000002", "key": "can:update:role"}, {"id": "019b5993-0000-0000-0000-000000000003", "key": "can:delete:role"}, {"id": "019b5993-0000-0000-0000-000000000006", "key": "can:update:permission"}, {"id": "019b5993-0000-0000-0000-000000000007", "key": "can:delete:permission"}, {"id": "019b5993-0000-0000-0000-000000000009", "key": "can:create:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000010", "key": "can:delete:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000011", "key": "can:view:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000012", "key": "can:create:user_role"}, {"id": "019b5993-0000-0000-0000-000000000013", "key": "can:delete:user_role"}, {"id": "019b5993-0000-0000-0000-000000000014", "key": "can:view:user_role"}, {"id": "019b5993-0000-0000-0000-000000000015", "key": "can:create:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000016", "key": "can:delete:position_permission"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000011", "key": "edr_freight_app:fleet:view"}, {"id": "a1000001-0001-4000-8000-000000000012", "key": "edr_freight_app:fleet:manage"}, {"id": "a1000001-0001-4000-8000-000000000013", "key": "edr_freight_app:admin"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:rule_engine:surcharge_types:manage"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000010", "key": "edr_freight_app:rule_engine:priority_configs:manage"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000012", "key": "edr_freight_app:rule_engine:rates:manage"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000014", "key": "edr_freight_app:rule_engine:approval_rules:manage"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "a1000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:bookings:payment_pnr"}, {"id": "a1000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:bookings:payment_verify"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000002", "key": "edr_freight_app:rule_engine:cargo_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000004", "key": "edr_freight_app:rule_engine:container_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000016", "key": "edr_freight_app:rule_engine:wagon_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000006", "key": "edr_freight_app:rule_engine:service_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000008", "key": "edr_freight_app:rule_engine:yards:manage"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:rule_engine:shipping_lines:manage"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}, {"id": "b2000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:rule_engine:weight_limit_rules:manage"}], "phoneNumber": "", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-18 23:02:28.363+00 1 ACTIVE
+2026-06-18 22:18:51.90756+00 2026-06-18 22:20:09.662819+00 4a21ff6c-77ec-423a-8a83-0e963ce29d20 marshyordanos32@gmail.com 196.188.36.236 {"id": "804bc335-957c-4b13-90ca-43172ef2887b", "name": {"am": "branch 10", "en": "branch 10"}, "email": "marshyordanos32@gmail.com", "roles": [], "status": "accepted", "userType": "individual", "username": "marshyordanos32@gmail.com", "permissions": [], "phoneNumber": "+251986680044", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 804bc335-957c-4b13-90ca-43172ef2887b 2026-06-18 23:18:52.245+00 0 LOGGED_OUT
+2026-06-19 06:26:25.785538+00 2026-06-19 09:16:48.935665+00 d4bc037f-cbaa-44c9-9525-3ab44a608c4c hageritina277@gmail.com 196.188.33.174 {"id": "3d4937e9-3a37-4317-a001-48d555dffb9f", "name": {"am": "Mezemir Wagaw", "en": "Mezemir Wagaw"}, "email": "hageritina277@gmail.com", "roles": [], "status": "accepted", "employee": [], "userType": "individual", "username": "hageritina277@gmail.com", "permissions": [], "phoneNumber": "+251987654345", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 3d4937e9-3a37-4317-a001-48d555dffb9f 2026-06-19 08:36:48.897+00 0 EXPIRED
+2026-06-18 12:43:13.784097+00 2026-06-19 06:36:18.54125+00 0a2d7fd7-f452-4bc8-917f-15d06f574139 marketing@edr.local 196.188.33.174 {"id": "b7e27b32-2c33-4a15-a13f-b849826d21a4", "name": {"en": "marketing"}, "email": "marketing@edr.local", "roles": [{"id": "3bf24d98-25e3-4ca6-9db9-f58002908ded", "key": "edr_marketing"}], "status": "accepted", "employee": [{"id": "00663904-7ea3-4344-833c-93907972c06a", "name": {"en": "marketing"}, "unitId": null, "positions": [], "organizationId": "a3f7bdac-e218-4554-aaa5-48511f4058d4"}], "userType": "employee", "username": "marketing", "permissions": [{"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}], "phoneNumber": null, "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-19 07:36:18.726+00 0 ACTIVE
+2026-06-19 07:03:02.30762+00 2026-06-19 07:22:36.132596+00 03f9c7e4-b027-4082-b250-3d89a19d5244 marshyordanos10@gmail.com 196.188.33.174 {"id": "0e1e709c-7bf6-4852-869e-678924f2315e", "name": {"am": "Main Yordanos", "en": "Main Yordanos"}, "email": "marshyordanos10@gmail.com", "roles": [], "status": "accepted", "userType": "individual", "username": "marshyordanos10@gmail.com", "permissions": [], "phoneNumber": "+251986680089", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 0e1e709c-7bf6-4852-869e-678924f2315e 2026-06-19 08:03:02.661+00 0 LOGGED_OUT
+2026-06-19 07:15:58.710928+00 2026-06-19 07:25:17.174099+00 72e79228-08ba-4819-9f76-df2b5ea60e34 director@edr.local 102.213.68.122 {"id": "6f70ac3e-76dd-4c7c-be51-4838a5b92ad9", "name": {"en": "director"}, "email": "director@edr.local", "roles": [{"id": "00a47fb6-163f-4c63-b88b-d5149abf33e4", "key": "edr_director"}], "status": "accepted", "employee": [{"id": "f013d712-12ca-488f-883b-75f932ed9495", "name": {"en": "director"}, "unitId": null, "positions": [], "organizationId": "a3f7bdac-e218-4554-aaa5-48511f4058d4"}], "userType": "employee", "username": "director", "permissions": [{"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}], "phoneNumber": null, "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-19 08:25:17.348+00 0 ACTIVE
+2026-06-19 06:37:22.240708+00 2026-06-19 07:39:16.517722+00 144025b8-ab73-4bde-af0c-bd7c4646f1ce mikikal@gmail.com 196.191.149.130 {"id": "40106f87-7df8-4d7f-bf2e-d5096da10417", "name": {"am": "Mikias Kal", "en": "Mikias Kal"}, "email": "mikikal@gmail.com", "roles": [], "status": "accepted", "userType": "individual", "username": "mikikal@gmail.com", "permissions": [], "phoneNumber": "+251925658789", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 40106f87-7df8-4d7f-bf2e-d5096da10417 2026-06-19 07:37:22.602+00 0 EXPIRED
+2026-06-19 07:22:42.709687+00 2026-06-19 08:58:54.864677+00 f1029588-a0ef-4c8d-ad56-a7cee98d9f4b marshyordanos10@gmail.com 102.213.68.122 {"id": "0e1e709c-7bf6-4852-869e-678924f2315e", "name": {"am": "Main Yordanos", "en": "Main Yordanos"}, "email": "marshyordanos10@gmail.com", "roles": [], "status": "accepted", "employee": [], "userType": "individual", "username": "marshyordanos10@gmail.com", "permissions": [], "phoneNumber": "+251986680089", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 0e1e709c-7bf6-4852-869e-678924f2315e 2026-06-19 08:22:42.883+00 0 EXPIRED
+2026-06-19 07:15:29.853325+00 2026-06-19 07:24:34.240511+00 afaa43f2-d248-47de-ab1b-0704fe8472ec marketing@edr.local 102.213.68.122 {"id": "b7e27b32-2c33-4a15-a13f-b849826d21a4", "name": {"en": "marketing"}, "email": "marketing@edr.local", "roles": [{"id": "3bf24d98-25e3-4ca6-9db9-f58002908ded", "key": "edr_marketing"}], "status": "accepted", "employee": [{"id": "00663904-7ea3-4344-833c-93907972c06a", "name": {"en": "marketing"}, "unitId": null, "positions": [], "organizationId": "a3f7bdac-e218-4554-aaa5-48511f4058d4"}], "userType": "employee", "username": "marketing", "permissions": [{"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}], "phoneNumber": null, "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-19 08:24:34.359+00 0 ACTIVE
+2026-06-19 07:33:08.507984+00 2026-06-19 07:33:08.507984+00 3bb6bb37-2b6b-46e9-a4ce-489b1c629ec6 marketing@edr.local 196.191.60.79 {"id": "b7e27b32-2c33-4a15-a13f-b849826d21a4", "name": {"en": "marketing"}, "email": "marketing@edr.local", "roles": [{"id": "3bf24d98-25e3-4ca6-9db9-f58002908ded", "key": "edr_marketing"}], "status": "accepted", "employee": [{"id": "00663904-7ea3-4344-833c-93907972c06a", "name": {"en": "marketing"}, "unitId": null, "positions": [], "organizationId": "a3f7bdac-e218-4554-aaa5-48511f4058d4"}], "userType": "employee", "username": "marketing", "permissions": [{"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}], "phoneNumber": null, "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-19 08:33:08.662+00 0 ACTIVE
+2026-06-19 07:35:56.6462+00 2026-06-19 07:35:56.6462+00 88bf939a-123f-4bfd-a1d7-6043fa2db177 director@edr.local 196.191.60.79 {"id": "6f70ac3e-76dd-4c7c-be51-4838a5b92ad9", "name": {"en": "director"}, "email": "director@edr.local", "roles": [{"id": "00a47fb6-163f-4c63-b88b-d5149abf33e4", "key": "edr_director"}], "status": "accepted", "employee": [{"id": "f013d712-12ca-488f-883b-75f932ed9495", "name": {"en": "director"}, "unitId": null, "positions": [], "organizationId": "a3f7bdac-e218-4554-aaa5-48511f4058d4"}], "userType": "employee", "username": "director", "permissions": [{"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}], "phoneNumber": null, "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 2026-06-19 08:35:56.795+00 0 ACTIVE
+2026-06-19 07:38:49.635713+00 2026-06-19 08:01:24.853766+00 77dc5a43-99ea-40f0-b645-c984d61619aa operations@edr.local 196.191.60.79 {"id": "645e0886-1e6d-4e5e-a7af-906026a7eb59", "name": {"en": "operations"}, "email": "operations@edr.local", "roles": [{"id": "af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f", "key": "edr_operations_officer"}], "status": "accepted", "employee": [{"id": "8d0a4549-d4c2-4de4-a966-d5be5cb7d9db", "name": {"en": "operations"}, "unitId": null, "positions": [], "organizationId": "a3f7bdac-e218-4554-aaa5-48511f4058d4"}], "userType": "employee", "username": "operations", "permissions": [{"id": "a1000001-0001-4000-8000-000000000011", "key": "edr_freight_app:fleet:view"}, {"id": "a1000001-0001-4000-8000-000000000012", "key": "edr_freight_app:fleet:manage"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}], "phoneNumber": null, "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 645e0886-1e6d-4e5e-a7af-906026a7eb59 2026-06-19 09:01:25.017+00 0 ACTIVE
+2026-06-19 09:10:23.114942+00 2026-06-22 08:41:52.650016+00 01c1317c-f658-45a3-865f-0e757df4a4a7 marshyordanos10@gmail.com 196.191.149.130 {"id": "0e1e709c-7bf6-4852-869e-678924f2315e", "name": {"am": "Main Yordanos", "en": "Main Yordanos"}, "email": "marshyordanos10@gmail.com", "roles": [], "status": "accepted", "employee": [], "userType": "individual", "username": "marshyordanos10@gmail.com", "permissions": [], "phoneNumber": "+251986680089", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 0e1e709c-7bf6-4852-869e-678924f2315e 2026-06-19 10:41:33.934+00 0 EXPIRED
+2026-06-17 07:29:59.299454+00 2026-06-19 10:45:47.882136+00 9e508374-75a0-473d-8a91-3d3605d66610 marketing@edr.local 196.191.149.130 {"id": "b7e27b32-2c33-4a15-a13f-b849826d21a4", "name": {"en": "marketing"}, "email": "marketing@edr.local", "roles": [{"id": "3bf24d98-25e3-4ca6-9db9-f58002908ded", "key": "edr_marketing"}], "status": "accepted", "employee": [{"id": "00663904-7ea3-4344-833c-93907972c06a", "name": {"en": "marketing"}, "unitId": null, "positions": [], "organizationId": "a3f7bdac-e218-4554-aaa5-48511f4058d4"}], "userType": "employee", "username": "marketing", "permissions": [{"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}], "phoneNumber": null, "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-19 10:43:22.114+00 0 EXPIRED
+2026-06-17 06:08:51.46038+00 2026-06-19 09:43:06.573959+00 85efabf3-2ad5-43b8-be9a-629082013d0b superadmin@tria.com 196.191.149.130 {"id": "354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "email": "superadmin@tria.com", "roles": [{"id": "520836ee-dc13-4c08-b572-8eced5bfd309", "key": "super_admin"}], "status": "accepted", "employee": [{"id": "acc4cb94-2563-4d57-a01a-dadc10b01865", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "unitId": null, "positions": [], "organizationId": "5e62a292-c8c6-4b1d-b4bf-2d7086f895bb"}], "userType": "employee", "username": "superadmin", "permissions": [{"id": "019b5993-0000-0000-0000-000000000017", "key": "can:view:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000018", "key": "can:find_all:organization"}, {"id": "019b5993-0000-0000-0000-000000000019", "key": "can:update:organization"}, {"id": "019b5993-0000-0000-0000-000000000020", "key": "can:delete:organization"}, {"id": "019b5993-0000-0000-0000-000000000021", "key": "can:create:unit"}, {"id": "019b5993-0000-0000-0000-000000000022", "key": "can:update:unit"}, {"id": "019b5993-0000-0000-0000-000000000023", "key": "can:delete:unit"}, {"id": "019b5993-0000-0000-0000-000000000024", "key": "can:create:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000025", "key": "can:update:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000026", "key": "can:delete:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000027", "key": "can:create:default_position"}, {"id": "019b5993-0000-0000-0000-000000000028", "key": "can:update:default_position"}, {"id": "019b5993-0000-0000-0000-000000000029", "key": "can:delete:default_position"}, {"id": "019b5993-0000-0000-0000-000000000030", "key": "can:create:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000031", "key": "can:update:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000032", "key": "can:delete:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000001", "key": "can:create:role"}, {"id": "019b5993-0000-0000-0000-000000000002", "key": "can:update:role"}, {"id": "019b5993-0000-0000-0000-000000000003", "key": "can:delete:role"}, {"id": "019b5993-0000-0000-0000-000000000006", "key": "can:update:permission"}, {"id": "019b5993-0000-0000-0000-000000000007", "key": "can:delete:permission"}, {"id": "019b5993-0000-0000-0000-000000000009", "key": "can:create:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000010", "key": "can:delete:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000011", "key": "can:view:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000012", "key": "can:create:user_role"}, {"id": "019b5993-0000-0000-0000-000000000013", "key": "can:delete:user_role"}, {"id": "019b5993-0000-0000-0000-000000000014", "key": "can:view:user_role"}, {"id": "019b5993-0000-0000-0000-000000000015", "key": "can:create:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000016", "key": "can:delete:position_permission"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000011", "key": "edr_freight_app:fleet:view"}, {"id": "a1000001-0001-4000-8000-000000000012", "key": "edr_freight_app:fleet:manage"}, {"id": "a1000001-0001-4000-8000-000000000013", "key": "edr_freight_app:admin"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:rule_engine:surcharge_types:manage"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000010", "key": "edr_freight_app:rule_engine:priority_configs:manage"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000012", "key": "edr_freight_app:rule_engine:rates:manage"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000014", "key": "edr_freight_app:rule_engine:approval_rules:manage"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "a1000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:bookings:payment_pnr"}, {"id": "a1000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:bookings:payment_verify"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000002", "key": "edr_freight_app:rule_engine:cargo_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000004", "key": "edr_freight_app:rule_engine:container_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000016", "key": "edr_freight_app:rule_engine:wagon_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000006", "key": "edr_freight_app:rule_engine:service_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000008", "key": "edr_freight_app:rule_engine:yards:manage"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:rule_engine:shipping_lines:manage"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}, {"id": "b2000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:rule_engine:weight_limit_rules:manage"}], "phoneNumber": "", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-19 10:43:06.759+00 0 ACTIVE
+2026-06-19 10:46:14.734059+00 2026-06-19 10:46:14.734059+00 ae88dc81-7d69-4d0e-844c-1415e5b828de marketing@edr.local 102.208.96.179 {"id": "b7e27b32-2c33-4a15-a13f-b849826d21a4", "name": {"en": "marketing"}, "email": "marketing@edr.local", "roles": [{"id": "3bf24d98-25e3-4ca6-9db9-f58002908ded", "key": "edr_marketing"}], "status": "accepted", "employee": [{"id": "00663904-7ea3-4344-833c-93907972c06a", "name": {"en": "marketing"}, "unitId": null, "positions": [], "organizationId": "a3f7bdac-e218-4554-aaa5-48511f4058d4"}], "userType": "employee", "username": "marketing", "permissions": [{"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}], "phoneNumber": null, "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} b7e27b32-2c33-4a15-a13f-b849826d21a4 2026-06-19 11:46:14.916+00 0 ACTIVE
+2026-06-19 13:18:46.10723+00 2026-06-20 05:17:16.02532+00 7237cfba-d509-48bd-8fc3-590bc5a8ae7c alazarzegeye06@gmail.com 196.188.93.213 {"id": "6f001573-e7e0-4952-81ad-e422cfd4dc1e", "name": {"am": "Alazar Abate", "en": "Alazar Abate"}, "email": "alazarzegeye06@gmail.com", "roles": [], "status": "accepted", "employee": [], "userType": "individual", "username": "alazarzegeye06@gmail.com", "permissions": [], "phoneNumber": "+251922556878", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 6f001573-e7e0-4952-81ad-e422cfd4dc1e 2026-06-19 14:18:46.249+00 0 EXPIRED
+2026-06-19 13:16:20.892356+00 2026-06-20 05:17:16.036967+00 7a1abf83-5971-4bb4-9236-5401f9c3df8a superadmin@tria.com 196.188.93.213 {"id": "354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "email": "superadmin@tria.com", "roles": [{"id": "520836ee-dc13-4c08-b572-8eced5bfd309", "key": "super_admin"}], "status": "accepted", "employee": [{"id": "acc4cb94-2563-4d57-a01a-dadc10b01865", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "unitId": null, "positions": [], "organizationId": "5e62a292-c8c6-4b1d-b4bf-2d7086f895bb"}], "userType": "employee", "username": "superadmin", "permissions": [{"id": "019b5993-0000-0000-0000-000000000017", "key": "can:view:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000018", "key": "can:find_all:organization"}, {"id": "019b5993-0000-0000-0000-000000000019", "key": "can:update:organization"}, {"id": "019b5993-0000-0000-0000-000000000020", "key": "can:delete:organization"}, {"id": "019b5993-0000-0000-0000-000000000021", "key": "can:create:unit"}, {"id": "019b5993-0000-0000-0000-000000000022", "key": "can:update:unit"}, {"id": "019b5993-0000-0000-0000-000000000023", "key": "can:delete:unit"}, {"id": "019b5993-0000-0000-0000-000000000024", "key": "can:create:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000025", "key": "can:update:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000026", "key": "can:delete:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000027", "key": "can:create:default_position"}, {"id": "019b5993-0000-0000-0000-000000000028", "key": "can:update:default_position"}, {"id": "019b5993-0000-0000-0000-000000000029", "key": "can:delete:default_position"}, {"id": "019b5993-0000-0000-0000-000000000030", "key": "can:create:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000031", "key": "can:update:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000032", "key": "can:delete:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000001", "key": "can:create:role"}, {"id": "019b5993-0000-0000-0000-000000000002", "key": "can:update:role"}, {"id": "019b5993-0000-0000-0000-000000000003", "key": "can:delete:role"}, {"id": "019b5993-0000-0000-0000-000000000006", "key": "can:update:permission"}, {"id": "019b5993-0000-0000-0000-000000000007", "key": "can:delete:permission"}, {"id": "019b5993-0000-0000-0000-000000000009", "key": "can:create:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000010", "key": "can:delete:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000011", "key": "can:view:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000012", "key": "can:create:user_role"}, {"id": "019b5993-0000-0000-0000-000000000013", "key": "can:delete:user_role"}, {"id": "019b5993-0000-0000-0000-000000000014", "key": "can:view:user_role"}, {"id": "019b5993-0000-0000-0000-000000000015", "key": "can:create:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000016", "key": "can:delete:position_permission"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000011", "key": "edr_freight_app:fleet:view"}, {"id": "a1000001-0001-4000-8000-000000000012", "key": "edr_freight_app:fleet:manage"}, {"id": "a1000001-0001-4000-8000-000000000013", "key": "edr_freight_app:admin"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:rule_engine:surcharge_types:manage"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000010", "key": "edr_freight_app:rule_engine:priority_configs:manage"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000012", "key": "edr_freight_app:rule_engine:rates:manage"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000014", "key": "edr_freight_app:rule_engine:approval_rules:manage"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "a1000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:bookings:payment_pnr"}, {"id": "a1000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:bookings:payment_verify"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000002", "key": "edr_freight_app:rule_engine:cargo_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000004", "key": "edr_freight_app:rule_engine:container_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000016", "key": "edr_freight_app:rule_engine:wagon_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000006", "key": "edr_freight_app:rule_engine:service_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000008", "key": "edr_freight_app:rule_engine:yards:manage"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:rule_engine:shipping_lines:manage"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}, {"id": "b2000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:rule_engine:weight_limit_rules:manage"}], "phoneNumber": "", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-19 14:16:21.001+00 0 EXPIRED
+2026-06-20 06:09:44.256532+00 2026-06-20 06:09:44.256532+00 a188f91e-f65e-4708-a34f-88988c8ee10a marshyordanos33@gmail.com 196.188.33.174 {"id": "37d135c3-019b-4fec-9ec8-312b3824a1a6", "name": {"am": "Marshal Yordanos", "en": "Marshal Yordanos"}, "email": "marshyordanos33@gmail.com", "roles": [], "status": "accepted", "userType": "individual", "username": "marshyordanos33@gmail.com", "permissions": [], "phoneNumber": "+251986680027", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 37d135c3-019b-4fec-9ec8-312b3824a1a6 2026-06-20 07:09:44.545+00 0 ACTIVE
+2026-06-21 07:14:40.840712+00 2026-06-21 07:14:40.840712+00 26e815ae-3568-4b9c-9201-24b5d9dd6e68 superadmin@tria.com 196.191.221.148 {"id": "354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "email": "superadmin@tria.com", "roles": [{"id": "520836ee-dc13-4c08-b572-8eced5bfd309", "key": "super_admin"}], "status": "accepted", "employee": [{"id": "acc4cb94-2563-4d57-a01a-dadc10b01865", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "unitId": null, "positions": [], "organizationId": "5e62a292-c8c6-4b1d-b4bf-2d7086f895bb"}], "userType": "employee", "username": "superadmin", "permissions": [{"id": "019b5993-0000-0000-0000-000000000017", "key": "can:view:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000018", "key": "can:find_all:organization"}, {"id": "019b5993-0000-0000-0000-000000000019", "key": "can:update:organization"}, {"id": "019b5993-0000-0000-0000-000000000020", "key": "can:delete:organization"}, {"id": "019b5993-0000-0000-0000-000000000021", "key": "can:create:unit"}, {"id": "019b5993-0000-0000-0000-000000000022", "key": "can:update:unit"}, {"id": "019b5993-0000-0000-0000-000000000023", "key": "can:delete:unit"}, {"id": "019b5993-0000-0000-0000-000000000024", "key": "can:create:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000025", "key": "can:update:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000026", "key": "can:delete:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000027", "key": "can:create:default_position"}, {"id": "019b5993-0000-0000-0000-000000000028", "key": "can:update:default_position"}, {"id": "019b5993-0000-0000-0000-000000000029", "key": "can:delete:default_position"}, {"id": "019b5993-0000-0000-0000-000000000030", "key": "can:create:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000031", "key": "can:update:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000032", "key": "can:delete:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000001", "key": "can:create:role"}, {"id": "019b5993-0000-0000-0000-000000000002", "key": "can:update:role"}, {"id": "019b5993-0000-0000-0000-000000000003", "key": "can:delete:role"}, {"id": "019b5993-0000-0000-0000-000000000006", "key": "can:update:permission"}, {"id": "019b5993-0000-0000-0000-000000000007", "key": "can:delete:permission"}, {"id": "019b5993-0000-0000-0000-000000000009", "key": "can:create:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000010", "key": "can:delete:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000011", "key": "can:view:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000012", "key": "can:create:user_role"}, {"id": "019b5993-0000-0000-0000-000000000013", "key": "can:delete:user_role"}, {"id": "019b5993-0000-0000-0000-000000000014", "key": "can:view:user_role"}, {"id": "019b5993-0000-0000-0000-000000000015", "key": "can:create:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000016", "key": "can:delete:position_permission"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000011", "key": "edr_freight_app:fleet:view"}, {"id": "a1000001-0001-4000-8000-000000000012", "key": "edr_freight_app:fleet:manage"}, {"id": "a1000001-0001-4000-8000-000000000013", "key": "edr_freight_app:admin"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:rule_engine:surcharge_types:manage"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000010", "key": "edr_freight_app:rule_engine:priority_configs:manage"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000012", "key": "edr_freight_app:rule_engine:rates:manage"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000014", "key": "edr_freight_app:rule_engine:approval_rules:manage"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "a1000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:bookings:payment_pnr"}, {"id": "a1000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:bookings:payment_verify"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000002", "key": "edr_freight_app:rule_engine:cargo_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000004", "key": "edr_freight_app:rule_engine:container_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000016", "key": "edr_freight_app:rule_engine:wagon_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000006", "key": "edr_freight_app:rule_engine:service_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000008", "key": "edr_freight_app:rule_engine:yards:manage"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:rule_engine:shipping_lines:manage"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}, {"id": "b2000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:rule_engine:weight_limit_rules:manage"}], "phoneNumber": "", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-21 08:14:41.044+00 0 ACTIVE
+2026-06-17 04:44:25.581926+00 2026-06-22 06:15:50.444538+00 fa90a6ee-94d7-4e0d-8d3f-203c2916a7b7 superadmin@tria.com 196.188.33.174 {"id": "354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "email": "superadmin@tria.com", "roles": [{"id": "520836ee-dc13-4c08-b572-8eced5bfd309", "key": "super_admin"}], "status": "accepted", "employee": [{"id": "acc4cb94-2563-4d57-a01a-dadc10b01865", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "unitId": null, "positions": [], "organizationId": "5e62a292-c8c6-4b1d-b4bf-2d7086f895bb"}], "userType": "employee", "username": "superadmin", "permissions": [{"id": "019b5993-0000-0000-0000-000000000017", "key": "can:view:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000018", "key": "can:find_all:organization"}, {"id": "019b5993-0000-0000-0000-000000000019", "key": "can:update:organization"}, {"id": "019b5993-0000-0000-0000-000000000020", "key": "can:delete:organization"}, {"id": "019b5993-0000-0000-0000-000000000021", "key": "can:create:unit"}, {"id": "019b5993-0000-0000-0000-000000000022", "key": "can:update:unit"}, {"id": "019b5993-0000-0000-0000-000000000023", "key": "can:delete:unit"}, {"id": "019b5993-0000-0000-0000-000000000024", "key": "can:create:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000025", "key": "can:update:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000026", "key": "can:delete:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000027", "key": "can:create:default_position"}, {"id": "019b5993-0000-0000-0000-000000000028", "key": "can:update:default_position"}, {"id": "019b5993-0000-0000-0000-000000000029", "key": "can:delete:default_position"}, {"id": "019b5993-0000-0000-0000-000000000030", "key": "can:create:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000031", "key": "can:update:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000032", "key": "can:delete:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000001", "key": "can:create:role"}, {"id": "019b5993-0000-0000-0000-000000000002", "key": "can:update:role"}, {"id": "019b5993-0000-0000-0000-000000000003", "key": "can:delete:role"}, {"id": "019b5993-0000-0000-0000-000000000006", "key": "can:update:permission"}, {"id": "019b5993-0000-0000-0000-000000000007", "key": "can:delete:permission"}, {"id": "019b5993-0000-0000-0000-000000000009", "key": "can:create:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000010", "key": "can:delete:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000011", "key": "can:view:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000012", "key": "can:create:user_role"}, {"id": "019b5993-0000-0000-0000-000000000013", "key": "can:delete:user_role"}, {"id": "019b5993-0000-0000-0000-000000000014", "key": "can:view:user_role"}, {"id": "019b5993-0000-0000-0000-000000000015", "key": "can:create:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000016", "key": "can:delete:position_permission"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000011", "key": "edr_freight_app:fleet:view"}, {"id": "a1000001-0001-4000-8000-000000000012", "key": "edr_freight_app:fleet:manage"}, {"id": "a1000001-0001-4000-8000-000000000013", "key": "edr_freight_app:admin"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:rule_engine:surcharge_types:manage"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000010", "key": "edr_freight_app:rule_engine:priority_configs:manage"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000012", "key": "edr_freight_app:rule_engine:rates:manage"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000014", "key": "edr_freight_app:rule_engine:approval_rules:manage"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "a1000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:bookings:payment_pnr"}, {"id": "a1000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:bookings:payment_verify"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000002", "key": "edr_freight_app:rule_engine:cargo_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000004", "key": "edr_freight_app:rule_engine:container_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000016", "key": "edr_freight_app:rule_engine:wagon_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000006", "key": "edr_freight_app:rule_engine:service_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000008", "key": "edr_freight_app:rule_engine:yards:manage"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:rule_engine:shipping_lines:manage"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}, {"id": "b2000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:rule_engine:weight_limit_rules:manage"}], "phoneNumber": "", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-20 13:21:29+00 0 EXPIRED
+2026-06-21 08:07:45.792065+00 2026-06-22 07:19:09.375643+00 721937b0-dd91-4d3d-81e3-a4b29e9660bb superadmin@tria.com 102.203.224.3 {"id": "354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "email": "superadmin@tria.com", "roles": [{"id": "520836ee-dc13-4c08-b572-8eced5bfd309", "key": "super_admin"}], "status": "accepted", "employee": [{"id": "acc4cb94-2563-4d57-a01a-dadc10b01865", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "unitId": null, "positions": [], "organizationId": "5e62a292-c8c6-4b1d-b4bf-2d7086f895bb"}], "userType": "employee", "username": "superadmin", "permissions": [{"id": "019b5993-0000-0000-0000-000000000017", "key": "can:view:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000018", "key": "can:find_all:organization"}, {"id": "019b5993-0000-0000-0000-000000000019", "key": "can:update:organization"}, {"id": "019b5993-0000-0000-0000-000000000020", "key": "can:delete:organization"}, {"id": "019b5993-0000-0000-0000-000000000021", "key": "can:create:unit"}, {"id": "019b5993-0000-0000-0000-000000000022", "key": "can:update:unit"}, {"id": "019b5993-0000-0000-0000-000000000023", "key": "can:delete:unit"}, {"id": "019b5993-0000-0000-0000-000000000024", "key": "can:create:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000025", "key": "can:update:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000026", "key": "can:delete:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000027", "key": "can:create:default_position"}, {"id": "019b5993-0000-0000-0000-000000000028", "key": "can:update:default_position"}, {"id": "019b5993-0000-0000-0000-000000000029", "key": "can:delete:default_position"}, {"id": "019b5993-0000-0000-0000-000000000030", "key": "can:create:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000031", "key": "can:update:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000032", "key": "can:delete:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000001", "key": "can:create:role"}, {"id": "019b5993-0000-0000-0000-000000000002", "key": "can:update:role"}, {"id": "019b5993-0000-0000-0000-000000000003", "key": "can:delete:role"}, {"id": "019b5993-0000-0000-0000-000000000006", "key": "can:update:permission"}, {"id": "019b5993-0000-0000-0000-000000000007", "key": "can:delete:permission"}, {"id": "019b5993-0000-0000-0000-000000000009", "key": "can:create:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000010", "key": "can:delete:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000011", "key": "can:view:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000012", "key": "can:create:user_role"}, {"id": "019b5993-0000-0000-0000-000000000013", "key": "can:delete:user_role"}, {"id": "019b5993-0000-0000-0000-000000000014", "key": "can:view:user_role"}, {"id": "019b5993-0000-0000-0000-000000000015", "key": "can:create:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000016", "key": "can:delete:position_permission"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000011", "key": "edr_freight_app:fleet:view"}, {"id": "a1000001-0001-4000-8000-000000000012", "key": "edr_freight_app:fleet:manage"}, {"id": "a1000001-0001-4000-8000-000000000013", "key": "edr_freight_app:admin"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:rule_engine:surcharge_types:manage"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000010", "key": "edr_freight_app:rule_engine:priority_configs:manage"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000012", "key": "edr_freight_app:rule_engine:rates:manage"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000014", "key": "edr_freight_app:rule_engine:approval_rules:manage"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "a1000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:bookings:payment_pnr"}, {"id": "a1000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:bookings:payment_verify"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000002", "key": "edr_freight_app:rule_engine:cargo_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000004", "key": "edr_freight_app:rule_engine:container_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000016", "key": "edr_freight_app:rule_engine:wagon_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000006", "key": "edr_freight_app:rule_engine:service_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000008", "key": "edr_freight_app:rule_engine:yards:manage"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:rule_engine:shipping_lines:manage"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}, {"id": "b2000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:rule_engine:weight_limit_rules:manage"}], "phoneNumber": "", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-21 11:16:51.938+00 0 EXPIRED
+2026-06-22 06:49:33.977932+00 2026-06-22 08:17:36.332214+00 c29d87e3-359c-4129-a626-0cc13aa22747 alazarzegeye06@gmail.com 196.191.149.129 {"id": "6f001573-e7e0-4952-81ad-e422cfd4dc1e", "name": {"am": "Alazar Abate", "en": "Alazar Abate"}, "email": "alazarzegeye06@gmail.com", "roles": [], "status": "accepted", "employee": [], "userType": "individual", "username": "alazarzegeye06@gmail.com", "permissions": [], "phoneNumber": "+251922556878", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 6f001573-e7e0-4952-81ad-e422cfd4dc1e 2026-06-22 07:49:34.155+00 0 EXPIRED
+2026-06-22 05:34:53.596169+00 2026-06-22 10:58:47.545609+00 7fb799bb-8def-4719-b4bd-c0f520fa9385 superadmin@tria.com 196.188.14.149 {"id": "354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "email": "superadmin@tria.com", "roles": [{"id": "520836ee-dc13-4c08-b572-8eced5bfd309", "key": "super_admin"}], "status": "accepted", "employee": [{"id": "acc4cb94-2563-4d57-a01a-dadc10b01865", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "unitId": null, "positions": [], "organizationId": "5e62a292-c8c6-4b1d-b4bf-2d7086f895bb"}], "userType": "employee", "username": "superadmin", "permissions": [{"id": "019b5993-0000-0000-0000-000000000017", "key": "can:view:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000018", "key": "can:find_all:organization"}, {"id": "019b5993-0000-0000-0000-000000000019", "key": "can:update:organization"}, {"id": "019b5993-0000-0000-0000-000000000020", "key": "can:delete:organization"}, {"id": "019b5993-0000-0000-0000-000000000021", "key": "can:create:unit"}, {"id": "019b5993-0000-0000-0000-000000000022", "key": "can:update:unit"}, {"id": "019b5993-0000-0000-0000-000000000023", "key": "can:delete:unit"}, {"id": "019b5993-0000-0000-0000-000000000024", "key": "can:create:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000025", "key": "can:update:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000026", "key": "can:delete:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000027", "key": "can:create:default_position"}, {"id": "019b5993-0000-0000-0000-000000000028", "key": "can:update:default_position"}, {"id": "019b5993-0000-0000-0000-000000000029", "key": "can:delete:default_position"}, {"id": "019b5993-0000-0000-0000-000000000030", "key": "can:create:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000031", "key": "can:update:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000032", "key": "can:delete:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000001", "key": "can:create:role"}, {"id": "019b5993-0000-0000-0000-000000000002", "key": "can:update:role"}, {"id": "019b5993-0000-0000-0000-000000000003", "key": "can:delete:role"}, {"id": "019b5993-0000-0000-0000-000000000006", "key": "can:update:permission"}, {"id": "019b5993-0000-0000-0000-000000000007", "key": "can:delete:permission"}, {"id": "019b5993-0000-0000-0000-000000000009", "key": "can:create:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000010", "key": "can:delete:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000011", "key": "can:view:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000012", "key": "can:create:user_role"}, {"id": "019b5993-0000-0000-0000-000000000013", "key": "can:delete:user_role"}, {"id": "019b5993-0000-0000-0000-000000000014", "key": "can:view:user_role"}, {"id": "019b5993-0000-0000-0000-000000000015", "key": "can:create:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000016", "key": "can:delete:position_permission"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000011", "key": "edr_freight_app:fleet:view"}, {"id": "a1000001-0001-4000-8000-000000000012", "key": "edr_freight_app:fleet:manage"}, {"id": "a1000001-0001-4000-8000-000000000013", "key": "edr_freight_app:admin"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:rule_engine:surcharge_types:manage"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000010", "key": "edr_freight_app:rule_engine:priority_configs:manage"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000012", "key": "edr_freight_app:rule_engine:rates:manage"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000014", "key": "edr_freight_app:rule_engine:approval_rules:manage"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "a1000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:bookings:payment_pnr"}, {"id": "a1000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:bookings:payment_verify"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000002", "key": "edr_freight_app:rule_engine:cargo_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000004", "key": "edr_freight_app:rule_engine:container_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000016", "key": "edr_freight_app:rule_engine:wagon_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000006", "key": "edr_freight_app:rule_engine:service_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000008", "key": "edr_freight_app:rule_engine:yards:manage"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:rule_engine:shipping_lines:manage"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}, {"id": "b2000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:rule_engine:weight_limit_rules:manage"}], "phoneNumber": "", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-22 09:01:07.781+00 3 EXPIRED
+2026-06-22 06:58:26.473428+00 2026-06-22 14:16:44.290846+00 54a5ff6d-9de0-4990-a519-fc90e24f7c72 superadmin@tria.com 196.188.33.82 {"id": "354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "email": "superadmin@tria.com", "roles": [{"id": "520836ee-dc13-4c08-b572-8eced5bfd309", "key": "super_admin"}], "status": "accepted", "employee": [{"id": "acc4cb94-2563-4d57-a01a-dadc10b01865", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "unitId": null, "positions": [], "organizationId": "5e62a292-c8c6-4b1d-b4bf-2d7086f895bb"}], "userType": "employee", "username": "superadmin", "permissions": [{"id": "019b5993-0000-0000-0000-000000000017", "key": "can:view:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000018", "key": "can:find_all:organization"}, {"id": "019b5993-0000-0000-0000-000000000019", "key": "can:update:organization"}, {"id": "019b5993-0000-0000-0000-000000000020", "key": "can:delete:organization"}, {"id": "019b5993-0000-0000-0000-000000000021", "key": "can:create:unit"}, {"id": "019b5993-0000-0000-0000-000000000022", "key": "can:update:unit"}, {"id": "019b5993-0000-0000-0000-000000000023", "key": "can:delete:unit"}, {"id": "019b5993-0000-0000-0000-000000000024", "key": "can:create:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000025", "key": "can:update:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000026", "key": "can:delete:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000027", "key": "can:create:default_position"}, {"id": "019b5993-0000-0000-0000-000000000028", "key": "can:update:default_position"}, {"id": "019b5993-0000-0000-0000-000000000029", "key": "can:delete:default_position"}, {"id": "019b5993-0000-0000-0000-000000000030", "key": "can:create:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000031", "key": "can:update:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000032", "key": "can:delete:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000001", "key": "can:create:role"}, {"id": "019b5993-0000-0000-0000-000000000002", "key": "can:update:role"}, {"id": "019b5993-0000-0000-0000-000000000003", "key": "can:delete:role"}, {"id": "019b5993-0000-0000-0000-000000000006", "key": "can:update:permission"}, {"id": "019b5993-0000-0000-0000-000000000007", "key": "can:delete:permission"}, {"id": "019b5993-0000-0000-0000-000000000009", "key": "can:create:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000010", "key": "can:delete:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000011", "key": "can:view:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000012", "key": "can:create:user_role"}, {"id": "019b5993-0000-0000-0000-000000000013", "key": "can:delete:user_role"}, {"id": "019b5993-0000-0000-0000-000000000014", "key": "can:view:user_role"}, {"id": "019b5993-0000-0000-0000-000000000015", "key": "can:create:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000016", "key": "can:delete:position_permission"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000011", "key": "edr_freight_app:fleet:view"}, {"id": "a1000001-0001-4000-8000-000000000012", "key": "edr_freight_app:fleet:manage"}, {"id": "a1000001-0001-4000-8000-000000000013", "key": "edr_freight_app:admin"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:rule_engine:surcharge_types:manage"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000010", "key": "edr_freight_app:rule_engine:priority_configs:manage"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000012", "key": "edr_freight_app:rule_engine:rates:manage"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000014", "key": "edr_freight_app:rule_engine:approval_rules:manage"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "a1000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:bookings:payment_pnr"}, {"id": "a1000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:bookings:payment_verify"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000002", "key": "edr_freight_app:rule_engine:cargo_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000004", "key": "edr_freight_app:rule_engine:container_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000016", "key": "edr_freight_app:rule_engine:wagon_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000006", "key": "edr_freight_app:rule_engine:service_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000008", "key": "edr_freight_app:rule_engine:yards:manage"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:rule_engine:shipping_lines:manage"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}, {"id": "b2000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:rule_engine:weight_limit_rules:manage"}], "phoneNumber": "", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-22 15:16:44.492+00 0 ACTIVE
+2026-06-22 08:27:20.34657+00 2026-06-22 11:57:05.241752+00 8527988a-d57f-44fc-9e2f-cbe95a05272f superadmin@tria.com 102.218.51.7 {"id": "354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "email": "superadmin@tria.com", "roles": [{"id": "520836ee-dc13-4c08-b572-8eced5bfd309", "key": "super_admin"}], "status": "accepted", "employee": [{"id": "acc4cb94-2563-4d57-a01a-dadc10b01865", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "unitId": null, "positions": [], "organizationId": "5e62a292-c8c6-4b1d-b4bf-2d7086f895bb"}], "userType": "employee", "username": "superadmin", "permissions": [{"id": "019b5993-0000-0000-0000-000000000017", "key": "can:view:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000018", "key": "can:find_all:organization"}, {"id": "019b5993-0000-0000-0000-000000000019", "key": "can:update:organization"}, {"id": "019b5993-0000-0000-0000-000000000020", "key": "can:delete:organization"}, {"id": "019b5993-0000-0000-0000-000000000021", "key": "can:create:unit"}, {"id": "019b5993-0000-0000-0000-000000000022", "key": "can:update:unit"}, {"id": "019b5993-0000-0000-0000-000000000023", "key": "can:delete:unit"}, {"id": "019b5993-0000-0000-0000-000000000024", "key": "can:create:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000025", "key": "can:update:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000026", "key": "can:delete:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000027", "key": "can:create:default_position"}, {"id": "019b5993-0000-0000-0000-000000000028", "key": "can:update:default_position"}, {"id": "019b5993-0000-0000-0000-000000000029", "key": "can:delete:default_position"}, {"id": "019b5993-0000-0000-0000-000000000030", "key": "can:create:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000031", "key": "can:update:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000032", "key": "can:delete:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000001", "key": "can:create:role"}, {"id": "019b5993-0000-0000-0000-000000000002", "key": "can:update:role"}, {"id": "019b5993-0000-0000-0000-000000000003", "key": "can:delete:role"}, {"id": "019b5993-0000-0000-0000-000000000006", "key": "can:update:permission"}, {"id": "019b5993-0000-0000-0000-000000000007", "key": "can:delete:permission"}, {"id": "019b5993-0000-0000-0000-000000000009", "key": "can:create:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000010", "key": "can:delete:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000011", "key": "can:view:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000012", "key": "can:create:user_role"}, {"id": "019b5993-0000-0000-0000-000000000013", "key": "can:delete:user_role"}, {"id": "019b5993-0000-0000-0000-000000000014", "key": "can:view:user_role"}, {"id": "019b5993-0000-0000-0000-000000000015", "key": "can:create:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000016", "key": "can:delete:position_permission"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000011", "key": "edr_freight_app:fleet:view"}, {"id": "a1000001-0001-4000-8000-000000000012", "key": "edr_freight_app:fleet:manage"}, {"id": "a1000001-0001-4000-8000-000000000013", "key": "edr_freight_app:admin"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:rule_engine:surcharge_types:manage"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000010", "key": "edr_freight_app:rule_engine:priority_configs:manage"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000012", "key": "edr_freight_app:rule_engine:rates:manage"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000014", "key": "edr_freight_app:rule_engine:approval_rules:manage"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "a1000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:bookings:payment_pnr"}, {"id": "a1000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:bookings:payment_verify"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000002", "key": "edr_freight_app:rule_engine:cargo_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000004", "key": "edr_freight_app:rule_engine:container_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000016", "key": "edr_freight_app:rule_engine:wagon_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000006", "key": "edr_freight_app:rule_engine:service_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000008", "key": "edr_freight_app:rule_engine:yards:manage"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:rule_engine:shipping_lines:manage"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}, {"id": "b2000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:rule_engine:weight_limit_rules:manage"}], "phoneNumber": "", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-22 09:27:20.534+00 0 EXPIRED
+2026-06-17 12:51:13.587162+00 2026-06-23 05:33:15.580359+00 32fff07d-d9e3-4580-a1a2-ef3dafa912e3 superadmin@tria.com 196.191.149.129 {"id": "354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "email": "superadmin@tria.com", "roles": [{"id": "520836ee-dc13-4c08-b572-8eced5bfd309", "key": "super_admin"}], "status": "accepted", "employee": [{"id": "acc4cb94-2563-4d57-a01a-dadc10b01865", "name": {"am": "ሱፐር አድሚን", "en": "Super Admin"}, "unitId": null, "positions": [], "organizationId": "5e62a292-c8c6-4b1d-b4bf-2d7086f895bb"}], "userType": "employee", "username": "superadmin", "permissions": [{"id": "019b5993-0000-0000-0000-000000000017", "key": "can:view:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000018", "key": "can:find_all:organization"}, {"id": "019b5993-0000-0000-0000-000000000019", "key": "can:update:organization"}, {"id": "019b5993-0000-0000-0000-000000000020", "key": "can:delete:organization"}, {"id": "019b5993-0000-0000-0000-000000000021", "key": "can:create:unit"}, {"id": "019b5993-0000-0000-0000-000000000022", "key": "can:update:unit"}, {"id": "019b5993-0000-0000-0000-000000000023", "key": "can:delete:unit"}, {"id": "019b5993-0000-0000-0000-000000000024", "key": "can:create:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000025", "key": "can:update:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000026", "key": "can:delete:default_unit"}, {"id": "019b5993-0000-0000-0000-000000000027", "key": "can:create:default_position"}, {"id": "019b5993-0000-0000-0000-000000000028", "key": "can:update:default_position"}, {"id": "019b5993-0000-0000-0000-000000000029", "key": "can:delete:default_position"}, {"id": "019b5993-0000-0000-0000-000000000030", "key": "can:create:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000031", "key": "can:update:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000032", "key": "can:delete:organization_type"}, {"id": "019b5993-0000-0000-0000-000000000001", "key": "can:create:role"}, {"id": "019b5993-0000-0000-0000-000000000002", "key": "can:update:role"}, {"id": "019b5993-0000-0000-0000-000000000003", "key": "can:delete:role"}, {"id": "019b5993-0000-0000-0000-000000000006", "key": "can:update:permission"}, {"id": "019b5993-0000-0000-0000-000000000007", "key": "can:delete:permission"}, {"id": "019b5993-0000-0000-0000-000000000009", "key": "can:create:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000010", "key": "can:delete:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000011", "key": "can:view:role_permission"}, {"id": "019b5993-0000-0000-0000-000000000012", "key": "can:create:user_role"}, {"id": "019b5993-0000-0000-0000-000000000013", "key": "can:delete:user_role"}, {"id": "019b5993-0000-0000-0000-000000000014", "key": "can:view:user_role"}, {"id": "019b5993-0000-0000-0000-000000000015", "key": "can:create:position_permission"}, {"id": "019b5993-0000-0000-0000-000000000016", "key": "can:delete:position_permission"}, {"id": "a1000001-0001-4000-8000-000000000003", "key": "edr_freight_app:bookings:request_changes"}, {"id": "a1000001-0001-4000-8000-000000000004", "key": "edr_freight_app:bookings:reject"}, {"id": "a1000001-0001-4000-8000-000000000007", "key": "edr_freight_app:bookings:approve_ceo"}, {"id": "a1000001-0001-4000-8000-000000000008", "key": "edr_freight_app:bookings:reject_approval"}, {"id": "a1000001-0001-4000-8000-000000000009", "key": "edr_freight_app:bookings:generate_contract"}, {"id": "a1000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:bookings:sign_staff"}, {"id": "a1000001-0001-4000-8000-000000000011", "key": "edr_freight_app:fleet:view"}, {"id": "a1000001-0001-4000-8000-000000000012", "key": "edr_freight_app:fleet:manage"}, {"id": "a1000001-0001-4000-8000-000000000013", "key": "edr_freight_app:admin"}, {"id": "b2000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:rule_engine:surcharge_types:view"}, {"id": "b2000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:rule_engine:surcharge_types:manage"}, {"id": "b2000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:rule_engine:priority_configs:view"}, {"id": "b2000001-0001-4000-8000-000000000010", "key": "edr_freight_app:rule_engine:priority_configs:manage"}, {"id": "b2000001-0001-4000-8000-000000000011", "key": "edr_freight_app:rule_engine:rates:view"}, {"id": "b2000001-0001-4000-8000-000000000012", "key": "edr_freight_app:rule_engine:rates:manage"}, {"id": "b2000001-0001-4000-8000-000000000013", "key": "edr_freight_app:rule_engine:approval_rules:view"}, {"id": "b2000001-0001-4000-8000-000000000014", "key": "edr_freight_app:rule_engine:approval_rules:manage"}, {"id": "a1000001-0001-4000-8000-000000000001", "key": "edr_freight_app:bookings:view"}, {"id": "a1000001-0001-4000-8000-000000000002", "key": "edr_freight_app:bookings:staff_accept"}, {"id": "a1000001-0001-4000-8000-000000000005", "key": "edr_freight_app:bookings:approve_line_staff"}, {"id": "a1000001-0001-4000-8000-000000000006", "key": "edr_freight_app:bookings:approve_director"}, {"id": "a1000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:bookings:payment_pnr"}, {"id": "a1000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:bookings:payment_verify"}, {"id": "a1000001-0001-4000-8000-00000000000d", "key": "edr_freight_app:bookings:operations"}, {"id": "a1000001-0001-4000-8000-00000000000e", "key": "edr_freight_app:bookings:cancel"}, {"id": "a1000001-0001-4000-8000-00000000000f", "key": "edr_freight_app:train_scheduling:view"}, {"id": "a1000001-0001-4000-8000-000000000010", "key": "edr_freight_app:train_scheduling:manage"}, {"id": "b2000001-0001-4000-8000-000000000001", "key": "edr_freight_app:rule_engine:cargo_types:view"}, {"id": "b2000001-0001-4000-8000-000000000002", "key": "edr_freight_app:rule_engine:cargo_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000003", "key": "edr_freight_app:rule_engine:container_types:view"}, {"id": "b2000001-0001-4000-8000-000000000004", "key": "edr_freight_app:rule_engine:container_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000015", "key": "edr_freight_app:rule_engine:wagon_types:view"}, {"id": "b2000001-0001-4000-8000-000000000016", "key": "edr_freight_app:rule_engine:wagon_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000005", "key": "edr_freight_app:rule_engine:service_types:view"}, {"id": "b2000001-0001-4000-8000-000000000006", "key": "edr_freight_app:rule_engine:service_types:manage"}, {"id": "b2000001-0001-4000-8000-000000000007", "key": "edr_freight_app:rule_engine:yards:view"}, {"id": "b2000001-0001-4000-8000-000000000008", "key": "edr_freight_app:rule_engine:yards:manage"}, {"id": "b2000001-0001-4000-8000-000000000009", "key": "edr_freight_app:rule_engine:shipping_lines:view"}, {"id": "b2000001-0001-4000-8000-00000000000a", "key": "edr_freight_app:rule_engine:shipping_lines:manage"}, {"id": "b2000001-0001-4000-8000-00000000000b", "key": "edr_freight_app:rule_engine:weight_limit_rules:view"}, {"id": "b2000001-0001-4000-8000-00000000000c", "key": "edr_freight_app:rule_engine:weight_limit_rules:manage"}], "phoneNumber": "", "sharepointId": null, "hasSetPassword": true, "isPhoneNumberVerified": false, "hasFinishedRegistration": true, "hasFinishedDMSOnboarding": false} 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 2026-06-22 15:21:42.345+00 17308 EXPIRED
+\.
+
+
+--
+-- Data for Name: unit_clusters; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.unit_clusters (id, created_at, updated_at, unit_id, location_id, location_type) FROM stdin;
+\.
+
+
+--
+-- Data for Name: unit_global_configurations; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.unit_global_configurations (created_at, updated_at, id, number_of_sub_units, number_of_employees_per_unit, unit_id) FROM stdin;
+\.
+
+
+--
+-- Data for Name: unit_settings; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.unit_settings (id, created_at, updated_at, unit_id, key, display_name, type, value, metadata) FROM stdin;
+8b93cda2-7d74-498f-ba0d-f31d2417999d 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+49b90356-b8fd-4fca-8454-ce0a6eba557e 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+7b98e913-07d9-41de-9e2f-bb76febeb690 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+03a7265a-4b1f-41c1-952f-f36c783ef990 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+2f87df8f-86c2-48b1-9f9a-8c586c3c5ebe 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+f74d8708-515c-4ce9-8f66-bc2f9a980bc2 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+2dde3216-bb08-47f3-8e70-43b90ca1b1e7 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+f2854a6b-611a-4257-8a27-717989274d6b 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+f3002457-77d7-4116-886a-4e003a9b7ea3 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+0792a77e-a828-45d5-a117-284aa047141c 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+c56e6405-dca0-4f42-9818-a220172d5b08 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+b45c604c-edd5-4221-a205-591c5abd64d1 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+bbc67016-fae0-4071-be5e-a92d24012da0 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+1c8cecff-9508-4147-a874-40039d6aa67a 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+3a2837d0-8e22-40c6-9663-336ca45edfbf 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+7a64fed6-ebd1-44cc-8b24-10aa1969178b 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+b39f2467-d8b6-4e8e-83ab-c2f02014b798 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+a10d7b2b-0455-4979-ad26-e976edc23952 2026-06-16 19:12:02.676001 2026-06-16 19:12:02.676001 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+44650609-9d9c-4002-bc87-53fa8c1b7db6 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+9b044318-667a-469c-bff1-678f6e71c6e3 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+22b8da79-b418-48bb-9770-eab8c3039c7b 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+2f9d53c2-09ac-4676-8502-28f91a2518bd 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+f5f055b3-2c3e-44f1-9252-a26a1fcaf5f5 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+57e6200b-be62-4efe-81b0-56b11eae30da 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+8834bb61-91bd-40e2-a708-3bccb87fd23e 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+6b643018-888a-401c-9259-a6b4869ed707 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+6a256f59-2d95-4b55-909b-40b074869d55 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+17dc4146-cb66-4913-a7c7-3902eb796200 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+f87ff2ae-1f34-4b8f-856d-768d30d956e5 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+b4649438-3cd1-4fbd-ae14-28304ea5764c 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+baafa00a-d891-48a7-a21d-bad39c0d60ff 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+585f7622-a105-4658-9d3c-0ab15c7bf22a 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+524c8dcd-7fbb-4035-892b-abf805fdfcb2 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+a86f9484-19dc-4444-ae0d-180c5fe9b169 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+009c7fb9-150f-4c69-b10b-d12987db46a9 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+a62dc828-53e0-4454-bc36-e228474c71e5 2026-06-16 19:30:40.059056 2026-06-16 19:30:40.059056 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+09c612c3-e5ed-4ca9-b8c6-73e498d9f825 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+51ae5e91-36a6-438e-b988-8533107f342c 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+6de10c11-147d-4958-8dee-32e511b5b1a2 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+423826ba-ef88-4b83-96e7-c3cadd18f762 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+d5f297c7-56d9-4b87-9530-cdcad17ee7b7 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+4b785a02-c406-4067-8757-202ecee3c6a7 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+91d30852-4666-4539-b7eb-c490b4302c7b 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+b5786ff7-6590-4e7d-b01d-123e5a8a4ca0 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+c0f7347e-d454-4107-933b-f6de8698ae83 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+b6f6b174-f011-497a-8ec2-d42eb8876e49 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+ff82f5fc-001a-4102-9336-ae8d3328dd86 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+3d8c8641-86ae-4b59-b234-f0520cde703f 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+f81905ae-8bf6-43e4-9da6-dbf594cd1027 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+ca29d847-a57d-49e6-a8cf-f9648123bcd0 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+92676a84-f3f0-43b0-8755-5ca90b81b2a5 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+d2878bb2-2995-4932-ac7c-85bf88e52164 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+16407af3-8f37-4623-9ff3-7af200d4da9f 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+8ee4f731-1504-4d18-ad82-78a390f34d57 2026-06-16 20:18:14.174765 2026-06-16 20:18:14.174765 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+d69cc721-14b0-4042-8dd0-43fd3bf205e1 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+6df22c5e-4cca-4c1a-8620-80db52a6e041 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+e5624bcd-40e1-442c-ad57-1ff8c93bfb92 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+e526f7f8-37c5-473c-a1dd-449599ad91b7 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+535a0791-bbab-4dd4-9240-679103a9aee6 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+f3867b26-308f-4cd6-8ad5-47854886ea17 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+68ec7a5f-3fcc-4ee5-8d0d-0c0127e3a761 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+36011e34-2124-4745-81fc-86c4804ecb0e 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+8223b88b-b83f-49ef-845b-3e150464dc8d 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+c260f79b-bb20-40c9-b6e5-de585e0aaa21 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+daf4a122-711e-4ac6-93ee-84b87ce0f992 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+9d90c603-067b-45ca-bb8a-ed6bd3aa1ae8 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+ad152eb3-cd11-4454-be9c-0d236b2ad816 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+01caee2c-27f5-42c2-a424-9a7a76b84605 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+64f1230c-fc62-4461-86b7-17777fb0837f 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+9566f05a-3dd2-442d-bf24-eab97b7eaa99 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+2cd6a41e-f243-4f6e-9a7b-c56b81314b9e 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+69d83a0d-eaaf-4024-8c6d-a8b11d8dc1f8 2026-06-16 20:41:10.154263 2026-06-16 20:41:10.154263 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+b85ac57f-d193-425f-a703-bbd2042a50e3 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+51a5844b-c0d5-41e5-b1b9-c433c7608c2a 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+d4388a34-fae2-4dac-a6db-ea8e8e7ccd6e 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+d2efcab6-ae2d-4140-be86-a7f9361ebba7 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+6e7a75e4-3b27-4384-b0fe-fefe794e49eb 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+146cc545-3f1e-4017-bd0d-4cec710a0fc0 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+b7246f75-c7ee-43a9-a12e-8542a5dd9a89 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+d674ad53-5a31-4b4d-8f17-470e19a86fc4 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+3de775b1-6559-416e-959a-3dc9fd68667d 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+3450b74c-112a-4dde-920a-3c30bd91e529 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+5b61cfc0-8d18-4f63-8c4a-4b7bd2016d41 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+ac14c817-20d6-43a7-80b6-f3e25b39aca5 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+96ff5b31-603e-4940-b033-a66591a4d3b0 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+3c8011ec-cd1f-4ca7-ac2f-8a8d729fa5ac 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+55687f9b-d495-49a6-a218-673f73a653be 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+e91df7a7-b002-42f7-b3aa-d46382d884e3 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+85245f6a-3b48-4354-a68e-0a30a96ec3e0 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+0fa5da71-9e43-4259-92ed-1d59918e11fb 2026-06-16 22:44:20.751855 2026-06-16 22:44:20.751855 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+2bcd8a98-de3e-4115-8473-dcc879da2450 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+b224f600-07e4-446f-bfc8-87dd93593799 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+c3063e76-6363-40fc-b7db-9d2a8ed2b730 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+c450cb2d-7f54-489e-9ea1-c0ee98495eba 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+7cc9ab10-f7f6-4c7d-b37d-f4fa4895121b 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+a56630fe-2c6c-4ae0-949b-a3cb33bb029c 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+dbb80ac3-ff92-4042-b73e-92fd9cd0c2e4 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+57c0a2db-65e1-48a0-8f6e-16cfe99826bf 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+f0556a9a-0710-4126-8c59-f73963c94361 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+d118d50a-2a93-4430-92ee-1bd1c2c43184 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+b2b475e6-d7d9-4576-b1a2-d773b605e5e6 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+c6e9241d-0bae-49a9-9102-5bc40c2e1e81 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+32dce7cd-2eb8-4acb-a6b6-328a130a4837 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+aaf50eb9-d09c-40a2-bf0f-f571ee115f3f 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+ad8a4586-ed87-421e-9c85-b7c4e69f1e9b 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+80c81cb5-a856-4fa3-9ad5-cb59c8ad56c2 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+e9ca1b43-9988-49d4-8afb-1073462b19d4 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+61f70f6a-0cc4-49f1-817d-65cea842ebcb 2026-06-17 04:52:23.577126 2026-06-17 04:52:23.577126 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+d32c73a7-4805-4b3d-b21f-4331b12c81c7 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+573c42f1-43dc-4464-97aa-8313e4789474 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+60ead36d-9f94-4220-913c-79a6fa7c9f51 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+86b336de-5408-4409-8077-bbf2747fb51e 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+cc1b6799-9110-486f-88be-9f59865a8507 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+cefa361c-17e7-448e-a347-8033c0489744 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+b46025f1-53d6-4d62-97af-e8e63745450e 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+f11705df-242f-4a1c-8098-4e3cbae3457b 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+04163e24-bbc2-47ec-b47f-6cf9145bc21c 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+c7a5626e-dc07-4ff3-b042-1fe8b1813745 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+ca567a9b-c553-4d03-873e-df548d0f35d9 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+5a9d0f32-08d3-41ab-bbe5-ca8386f39372 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+5b549562-0a4d-49ad-9b09-3d1e052ed69e 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+c53fbed1-1a91-4280-ac65-34cb2fe3785a 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+24f90849-1b5d-4c19-a246-523041361c64 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+820dffa2-134d-4d41-8b61-f8c6c285c8f7 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+42d274c2-9d24-43dd-9099-4367bbcc8dc2 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+65ee9cd4-575e-4c69-9b49-74be897aa8fc 2026-06-17 04:57:26.406329 2026-06-17 04:57:26.406329 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+728fc236-c3ea-478f-9849-24595f1191af 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+3031d164-0e0f-4e02-be29-88ed92810827 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+6338d47b-0ac7-409b-af74-fb4585874979 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+1f0e83fe-4a17-4fcc-aa09-674462e14e51 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+c52ae746-ea34-4dfc-b2fc-a4b8314d7e72 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+5b59e29b-5579-4323-9664-2518854ba5ca 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+dc35543b-6398-475d-8afd-44941a94f0dc 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+529dd353-df33-4bde-aefc-8e53761c3563 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+d8937ac3-b907-413a-9d76-142bde2376e1 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+eb4ee57a-8c17-46da-b827-1bfcf5662083 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+905a5fb1-99ab-4539-a7d7-f94ff8ac7e80 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+c9c87604-c6fb-4627-b042-3e6989cdd821 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+55030d41-47da-481a-8693-81029eff9193 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+ba9e2498-019b-42bf-9011-01061898e6ba 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+b42442e7-11a0-44e2-8e8d-8debe6b5c046 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+111b0202-56b9-40ee-808e-2ad4e656ff0e 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+278452ae-4a6c-49a8-8dba-8d399368d32c 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+010e401a-db75-4270-8bd4-1a51d5cdad3d 2026-06-17 06:42:54.357815 2026-06-17 06:42:54.357815 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+40439f28-cc61-4ef5-9d1f-9f4312e5b519 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+c70ed899-4115-496e-953c-038a9c82405f 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+82970ea8-6530-40bd-b066-0004ec982e07 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+a0af88eb-c397-4263-bbd9-a202edf5139d 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+746885a5-9320-4972-b186-83af7fdea03d 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+25a3fe85-5919-492c-bc0c-fa837d77e082 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+46f2a7d9-d891-4f4e-bf7f-2a2a57a0f4b4 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+bef4975f-c674-401b-9f6e-269d02b9128b 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+2034d2f1-51fe-41ee-8689-de9b1bee9f1b 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+c261f199-2e57-49f4-84b6-5b66e9cd8b47 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+ec9f968f-fe80-43e5-952f-2c57865bad74 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+c8fb10c0-699b-4514-acd2-fef25e1e2ab5 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+d1b887a1-2f92-41a9-bd0e-e087a9fcfc5b 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+6d9ad5e9-5549-4678-a305-735d71eaaa2d 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+7c95eec8-8164-4c35-acc6-953e63d88f65 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+6ba2c12b-ca11-4060-a2fa-a2975b55967b 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+564d1aee-7aca-49bc-b577-2b0d090ea0e1 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+47e168a4-178c-4b27-bfe3-d696c2ddb391 2026-06-17 07:53:25.992788 2026-06-17 07:53:25.992788 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+6a761b65-2c48-41e5-8407-630c2ed4fc80 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+6ffd60d6-1f82-4646-92bf-29db3a992308 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+51a6d15d-31da-4133-99bb-65737e344cb4 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+e377d3f6-09b9-4e6c-855c-718269e29747 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+16fef764-6265-4dc5-a6fc-d685bc2759e7 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+bb4408bd-9237-4c5f-84aa-0592c4c64a60 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+cefb0060-646a-4130-8a6c-d5c38162ff31 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+a7919dd3-ba34-40d1-9a59-4199f9313faa 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+5bd10857-7ac0-4d70-a8c9-eeaf218ba855 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+70053ed0-0dd0-4cec-9ca0-c49aa7b35773 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+40e38199-8bce-4b97-9c27-3c81ddeb2d33 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+aa98a746-1106-4144-a51c-641c308463f3 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+8e54151b-d187-4713-9055-83959413d46b 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+1d55fdfe-07aa-484f-a655-b6e9e0ec9121 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+dcec2c06-3873-4185-8416-1e4ae9c988b8 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+f5bde5d6-b8a0-4e08-9903-4742716602ea 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+0fcfda1e-ab68-400e-acd5-ac1a87e41b37 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+c01d9189-5e3f-4812-b3f0-4d047c1cf948 2026-06-17 09:31:23.577447 2026-06-17 09:31:23.577447 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+636dd743-c540-4597-9880-63b12bd1fea7 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+d3f43065-0bf5-4c4e-aff5-8f08d6133601 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+652d87f1-76a0-4623-a67a-dd0d9162e4da 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+1e993f07-e103-4f79-811e-3002e08165cf 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+d7930700-5140-49bd-a9ed-b068991f49c5 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+b20fc762-36bd-4a43-a251-223fdb665c25 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+d33edfbc-177c-4236-8073-db8e13f39adf 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+0eaaaeeb-2894-4277-afe2-8c73038493a9 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+461677fd-0002-4639-a43f-8f116a0a7e77 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+b2af625c-df45-4559-aae2-bba631ff3a55 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+d38c32ba-c30a-48fb-a806-a6dbf0c884f2 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+5c07e44e-f378-4207-81e0-d32910c145f3 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+0f11329c-e990-4cf6-9946-3e4dedf73298 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+c78acc37-74c5-4a4c-aa21-4f2603c383e5 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+1d34a67b-ad06-4573-a305-0687b27e1f55 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+a4668363-0567-40b7-8795-15334f942914 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+b9c70995-8400-4a95-92b6-37f53b5afb4b 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+08da8f55-e585-4dd7-9cca-e421b1338caa 2026-06-17 09:43:02.207784 2026-06-17 09:43:02.207784 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+3ea2e3d2-cdcb-460e-bb6b-cbdbf69a6151 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+04052506-eeb2-4880-ab17-3560071e5801 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+4f3cc64e-46a1-417d-b7a3-7844f6e991f7 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+1ee87cc0-65f3-414a-bd52-cb72d083eda5 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+c9044472-7f86-4989-98ef-2ad68bd714b4 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+89c0350f-3041-4d42-b392-5ff85135e4f6 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+3862ca1a-15f1-4a5c-91bc-5cebc368ca23 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+03e2751f-4e6f-49b3-8c00-61aedbf35dc6 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+209b752d-6cbb-4560-9ae3-bd0e0716af20 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+d2fa119e-cc75-4206-b6c0-7dafd88d6b06 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+359c0bb3-6b1a-4c6d-9946-9e5ed811e016 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+22f7e63b-76e4-4a3a-bc6b-961f52ef7285 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+e5eeb5bc-1047-42d5-bcba-c15b5db23b34 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+ef9f2189-5db1-4fce-b33d-cb157db3c1bf 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+ab0d0cf9-2fa4-4488-8ba9-48431aa7c58f 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+0dcd681a-1bd5-4844-a94c-975b1395441c 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+588dd2f5-1a44-4972-9e6b-1c34145451e6 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+384fcce2-d2c9-4240-9865-2fe6971dfc91 2026-06-17 09:50:20.685322 2026-06-17 09:50:20.685322 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+3d404bf7-2580-4d89-aca5-0e9307507323 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+87d79492-4840-4b20-ac84-5db2311fd205 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+42fa911b-dd73-44b1-a420-bb3920e6148a 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+fa2edf61-ec44-4c8d-be85-a87f7406c917 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+f3d4a1a0-ec2b-4d5b-9348-e3a89b117500 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+cf309ced-61f2-42fd-98bd-ae94d5124a8e 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+3886f38f-9494-428f-aa30-44aa5c882735 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+f34afda8-a78e-4852-9f12-475a790a3256 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+3e9517a2-8c17-4299-89cf-048db124e5cf 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+7f2228bf-43a6-40f2-bbb1-5351aab23afc 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+cb97bed2-6dc7-404d-8285-c4379f30bf22 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+5ea61323-07ff-46b5-9b4f-bb09dca93b13 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+1ae702a3-d195-49e6-87b2-b96e4beac10a 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+efb29c42-d08b-4d8b-9c12-b7c791a051f8 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+b8481a6a-82d1-4cbc-a85a-3191c8e4e5cb 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+aeb6b05b-a8dc-4f47-8b96-230d406a36a7 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+5972fd56-b85b-49ec-b2a4-47f278688fd9 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+5f074f5d-14bd-4ec9-9f55-e072077525f3 2026-06-17 10:00:23.199667 2026-06-17 10:00:23.199667 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+fb2ec4d0-a435-431f-aef0-1eb82830b4ea 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+97104561-0c71-4c8b-9978-37a8a9028798 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+64010739-d27b-4f95-9f76-f847d9f1ff37 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+d421e880-5b14-49d2-8327-92b0bbf98658 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+97f5c00b-3e4b-4088-b27a-7308b9be08ed 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+55a3f133-e5da-41ed-b59b-61da2adcd2a9 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+e37c9ec4-6e16-4d16-a5e0-1c6b442cece1 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+db1d0267-30d1-4a90-99b2-a402f6b89b97 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+2ce1de92-26d3-46fb-a576-4f19be38d99d 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+9a8e432a-f7e2-48cc-b003-528fdaaee333 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+6a8e47b5-b548-4eae-9f37-39a0d8a9f769 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+f0d9e3fd-8773-4a07-86c3-6a029af6446c 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+d6c4ba59-1b8c-4b26-896f-88f3407871dd 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+9503c02a-737b-4bb3-9c06-82ed3ed78db7 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+b1711cd2-19f3-496b-add3-ae3b92932b27 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+de7f55c7-108f-4823-821f-2379c7cd5cd5 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+d4a429dd-92d4-4ae7-aaf4-c82e19044a26 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+10b246b1-4b37-4713-875c-159724c622e8 2026-06-17 11:02:14.246469 2026-06-17 11:02:14.246469 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+cee0460a-aa50-4b40-a574-3bb01717259c 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+5f70e83b-7af3-4733-9a78-7d9e3c2edfc1 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+eb647ec7-e98e-4e3a-b443-0a89f0fdf061 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+e3fa246f-91e6-4014-9574-4d2aef0a6bd9 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+371be7ea-b8ab-4fcf-881d-d4c2a026fa42 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+bf18b336-3c29-4d39-8773-6e1028ac9c40 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+e51ac3fa-3a7d-4913-ad5e-86599fd7e8d6 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+f86b2761-c6ff-4a45-9007-9c23ee6ea5fe 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+4badcab3-5127-474e-969b-7ebf6ae7bd05 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+6193e96d-7503-4c0d-9c4b-f15f7104f13b 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+b9008bce-698a-4cf2-b572-af094470e98a 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+2e1d0359-5aaf-41e0-98b3-47a0520abdfa 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+b0311b0a-5472-4f02-a5d8-d2fdb6c770c3 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+98536c8e-214f-473a-97cb-095530a6b01c 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+0dbd7841-19a1-4c0b-92eb-1e8e84ec7903 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+cfb31338-e3d5-449d-bd1a-7d25f58eda41 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+6db9e7b8-6fa6-4edb-9e75-bc69f75e2f72 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+a328901d-d41f-432b-aa31-5e58f712b56d 2026-06-17 11:30:21.507934 2026-06-17 11:30:21.507934 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+e8263431-6825-4827-b9e3-9396e8dd99d6 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+e674eb22-600e-45ef-bb28-4ff0180f1558 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+e61491e4-27ae-4e6a-b178-7eff81048766 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+227be65d-afe6-4ff5-8598-b85f69908ef9 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+87b43775-3c51-4f53-9a0b-3cee2cc8bedb 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+b40493b5-c7d0-47e2-a96a-ea539a3eb3c5 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+950e486a-9ece-4b94-8849-2ed1b5b7e90f 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+2bc5b859-4176-443b-b531-8b4395cb917e 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+fdbb5725-0ef6-4011-a218-4894d58ae71d 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+e93a1d42-e927-4380-bbfb-dd69328086f0 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+41a04526-9932-4e27-a5ed-952bcdc1a5a8 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+78b012d2-5579-40e7-b629-9adec7e3bfdc 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+ead36691-936f-4e76-a4bb-48d9c7486fec 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+e79a6581-2e81-4663-91c0-337216a0d62e 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+94e29f16-b8a2-4b4e-8bd2-782b560f041d 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+77640baa-70f5-4460-bcaf-d4c8ff2f895c 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+e94c788f-5249-4ba9-92f8-c59a9dace425 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+1565b03d-256f-4176-bd3b-ce860d3940ca 2026-06-17 13:03:49.045435 2026-06-17 13:03:49.045435 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+cf3a6abf-c362-40b2-9c0d-4570d130a0c7 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+a8519ba4-9b72-4f58-8bf5-52bfb435020e 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+b0b1029d-67c2-446b-85ba-393d7a2dad50 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+7fa5a569-8f8b-44f8-a65b-0508fab96d14 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+2a5f2122-c3a2-464f-94ff-09bce27117d6 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+e52fcd4b-5b5c-4518-a1e2-c95747f15944 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+2a43851d-bcaf-4a4b-a6ab-143f4ee612b4 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+d5f71f98-bf65-448f-ac06-fee00a574f03 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+1ed73047-3f73-4bac-a597-9ce2c5bc7e1d 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+2fdff28a-3890-4bb8-92d0-f83bf4f0b0d0 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+811ab1de-603c-4fc3-8413-baa31bb4876c 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+3079bb20-d4b3-41ad-99ad-f03d7bd3c288 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+dd9bece3-8c0f-4c16-8379-1079710479cc 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+bff8440a-0f82-4aab-89d5-c5711698ffcd 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+9b0298b3-a169-4ea1-bc26-020c01e5e19f 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+556fb855-72c0-471a-8166-05e3e322da44 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+bc3fe28e-2652-4c2d-813b-3239a11842c3 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+add488a9-eb2c-4b5c-b752-7e4abc8f826a 2026-06-17 18:05:43.404763 2026-06-17 18:05:43.404763 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+2d2bf1a5-1f4f-4d78-854b-7de32415146d 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+9543e664-a50c-42fc-8533-23202090aa48 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+a5e672c9-b82b-4027-94b8-fc4a0f14f119 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+538fe901-b242-47b2-bd75-6672f0caadee 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+d327f0b5-107d-4207-85b8-0c84fb61a1fa 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+6d558bc9-7479-4979-a3c6-da7ee5b39090 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+1b20b981-4f90-4c30-a812-95086757b2de 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+efb1ef23-7d28-4946-9f68-4dc054af4914 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+3bd9c848-da9a-4e80-92e5-8e19405f8db0 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+ac16d9c9-103e-42ad-afec-ab567997d98e 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+748b92b7-7c8e-430c-85c6-6eafa7ba146d 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+4f269b7d-e5fa-4a60-b139-7956befb90bd 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+ed56cee8-bdd6-4ca8-af1b-0542228bac99 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+dc0fdb4a-0aaf-4d5a-874f-5f0d223cebfb 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+d3958950-9f6d-45bb-aee8-bf108a14ffd9 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+0bfb124b-e0d2-430b-a95b-ed427746ee3f 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+4e608b60-a6e3-4038-bc59-b0e346c5a59f 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+80578b1b-9afd-48be-aec5-b7999ba58030 2026-06-17 19:29:48.162855 2026-06-17 19:29:48.162855 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+2b517cde-9bdc-4096-a491-55427975fff4 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+21639e5c-0594-4fdb-a22c-592ea2535677 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+bef4f66b-facd-49e1-9600-690fabe626da 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+b5831d4d-1689-4f62-844b-854b747bf916 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+a56ade96-89e0-4ab6-b320-93b827362303 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+fd4b870a-7213-45d7-92b4-f32ab747310b 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+3e111123-1703-4116-953d-1d31f91642a6 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+4755e5d7-1fc3-4bf8-8322-3caf2dc7ee2f 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+45bff7a4-f7c5-4d05-877a-cdecdb9b8545 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+e22bf4eb-5f6e-4933-ad61-05cec806f314 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+f6d3c2d7-556a-403b-a0a4-28083dad6f8e 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+8f18ca34-a02c-4627-b29b-8862f518f1fc 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+c180c3ec-1e1f-4a20-9678-c60c891c539b 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+5a9f9069-2f62-4677-8109-271224f9c1a8 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+441ee1b5-55c2-4be7-ac38-db240cde06f4 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+a6882e54-d6a1-4144-b5df-055efda78f0f 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+a0986fe4-4581-481b-a1f0-2ab83fff0ceb 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+904a1e12-9169-49a3-afd6-9656d84499ac 2026-06-17 20:08:18.359542 2026-06-17 20:08:18.359542 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+48675cf3-12f8-48f0-b031-2d47c292f2e8 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+7a489f00-3eeb-4b7b-9b27-0a3131e836e7 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+9a5b225a-af16-4ac2-8cd7-d76f975d1ced 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+922d59a2-cafe-4d87-add5-dab8d0961a28 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+0c8e1878-9451-48b0-9c29-f35f90cdc16a 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+11d516ce-20d9-4393-9dca-b5fc2d5349a4 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+f5f8524a-de1b-46b6-b968-88ca4d671ac2 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+f0f80ffa-2f35-409e-8017-ee6c29cc2fc9 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+c7215e82-d0ab-4ac1-a810-2701ccb87fb3 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+85cbbf30-36aa-487e-8b9f-4cf3c24e1200 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+75901966-2407-4cf9-a4b4-956c5c1ca208 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+01e4b6a5-32ad-4dfc-b957-234df9963f6e 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+2c5c7da9-225c-4b45-b15b-53d3cea4f32d 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+420d421b-bf01-49f0-8e65-979ad5eb13a9 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+22786f56-6274-49d4-af95-efe9863a4b5e 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+1bc8efb0-7d14-4c0e-aad6-119403c4eb2a 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+58ce693d-400e-4d1a-bd60-ade5c600973b 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+5cbf6562-dc52-47ca-8c28-7342cd5bae90 2026-06-18 06:19:33.668144 2026-06-18 06:19:33.668144 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+f19b6294-1b82-4c22-9f62-995d9bfdeb85 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+697320a8-3851-4324-a3a4-5879e1deb088 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+0bc5bd70-3b1b-4892-854e-1577e38d5b24 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+f80d4d95-f701-450f-a584-00df35fb5b3f 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+485c57f5-da32-4a41-825b-29f6fcadaba2 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+e8c28c3b-9216-4b88-838f-bc636670cb6f 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+04474912-dd61-4dba-aa01-7a59629a17e8 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+af88f06b-86e2-4b1f-b184-8f50eca67c12 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+b7621345-6dbd-4189-8b79-3666f9315d27 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+978e05fb-7c3d-46e9-a2ef-7ce106546cac 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+66c43575-334b-48e8-84c9-43c4020b9e54 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+a38d1c87-024e-4c66-8410-cae365f08c10 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+35d3f00b-69fd-4833-8492-6721d885e40e 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+33bbbd56-4e8e-491e-8592-d1db11a1fab3 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+6aec2d61-b908-481d-9ade-6b07186347fd 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+c9fe21a8-4ce8-4695-a7ce-4fe09faa5ab1 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+9be8e8c9-b8ec-4396-9e79-c8e58e361836 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+5e3ce279-5f82-4ca6-9088-19dc3b955961 2026-06-18 07:17:03.70942 2026-06-18 07:17:03.70942 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+63e35b7c-4c48-4c78-a44d-6e03b5f6dcbf 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+62855b0b-9fb8-4919-baae-92314def721d 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+ebe13261-9197-405b-a729-092161661f4b 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+8f48be80-3406-417b-b9c2-c123d39ac29d 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+8fee1a1d-b269-49ff-abba-ebc96bed81fd 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+2e422a03-c529-496b-a1a6-806523dd0bfc 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+ee2c05f6-eb60-456b-b013-d852b4e13d75 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+a8a540ea-3505-4da7-b68d-8ee3ff19d54e 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+5f9ddf9d-9ca1-447a-b999-595320bac689 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+947db343-00dc-4bf8-b3a4-09827b54e447 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+a28a193e-93cb-45b3-9727-1a0f7907a23a 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+9d1d51d6-5f23-405a-9165-d217346db7ac 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+c5ff17a3-7b2e-43dd-a335-d713d3fadba6 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+8f8406e8-faf7-4486-9235-16dcc1f54fba 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+b3bc1361-e752-4590-8eed-f477d0e81e23 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+fcd66d27-65f8-407f-a42c-54f9dd649b8e 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+c66aaeb0-de61-4728-9176-9542cc7e3eb0 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+6a11c19e-6588-456f-9996-789f26208807 2026-06-18 07:32:49.714679 2026-06-18 07:32:49.714679 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+032ebd9e-faa7-499d-9ac1-c84d378fa205 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+ff048ede-5851-4f8c-9d09-9cb286e5b84d 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+9c4cf3ea-3380-44e1-a2c4-4fed7f8e171b 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+b6d7fa3e-ff9b-4f10-9f7e-2fbf9b8b1725 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+977f3c37-e259-4ed0-b3f4-0c1a7229ad94 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+25f64fd5-f0ed-478f-8741-a441450d2646 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+cf9c8122-26df-4108-90d9-a5b04345317b 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+81956190-a861-40f5-86fc-8b687e4d3b89 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+3e26e264-ac2a-44e4-903c-532422a906f9 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+45ca5a7a-3efa-44f9-bca4-d2b976a82428 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+6e4da2b7-15f0-4997-9036-a2ac07d2942d 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+295da465-d381-4c6a-a939-d267b6ed4a1a 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+b1b59eab-b207-496f-9843-7e40b16c87f7 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+6996403a-b262-4918-a00a-7b3d2623566e 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+f3967738-2087-4a91-a036-ac81a59c4bc6 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+e1fe0b9c-6583-483e-be96-bd365546a7bf 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+1604fe59-1d58-46f7-a315-37dc2d70bc54 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+6462f142-ea14-428d-ace5-de87f704b030 2026-06-18 12:13:38.447576 2026-06-18 12:13:38.447576 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+22f4c660-7932-42d6-8c07-b19132dff4f2 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+60382a1c-7a90-4016-b051-5f643c91f065 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+2222a5f3-cf3c-4bfb-a269-a2aaa9fbb65e 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+d83f2033-850b-465d-b89b-a070c24a48cd 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+4bbb0be3-b2f5-439e-be46-1a082f6bc793 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+dda22389-dc98-4695-8489-5d5ce38d33f0 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+eb69ce8d-f65d-4b98-89d9-965b94657a4c 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+4986042a-977e-431b-9e38-c66aa2b69a5a 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+0f2b6359-44a2-4da4-b52d-b83dcbfbd93d 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+c0dbefa7-3166-4945-8ff4-cd7e2e73a8cd 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+99e3fa26-a322-4170-9e88-a8f7cf90dfa9 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+36ad5807-4a76-4615-9a01-23302fbf647f 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+213f09dc-0e72-406c-94b9-df97c44a51bf 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+2fb970c6-632f-4c35-9cbe-6f1d6155d174 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+51a712d1-edc9-424c-9eca-bcc0d20f0b4b 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+8f9db9bd-6ee0-461d-9b2a-7dc58e0f94ea 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+d7c95d15-a2d4-4645-9a61-8e0f005a6782 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+089acc26-909b-41ef-9666-6645add263df 2026-06-18 13:27:59.4129 2026-06-18 13:27:59.4129 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+c24ca205-cd12-4424-b3f3-b43fdbdcbcd6 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+864b9e16-de8e-4e0f-8f71-7364d51b2f5f 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+a6e7db51-4671-4be2-9c37-6802ca9ba032 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+47917158-e542-4591-8ed8-148f9aeee7ad 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+628e04bb-af3f-410d-80b6-5eb8342d0c9b 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+95ccbc0d-936a-4db2-9b2f-f49f96ae10fd 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+d92197c0-81c9-484b-8e34-1ff263795ba6 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+98447386-d27a-4e3a-af2f-9f3d7ad92510 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+a5923b06-7c8a-45e9-82dc-6a9b62dc7263 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+0a6989b0-ed0e-40f7-ab64-7b7cad3c7543 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+0d466097-b9c0-48c7-8019-88c55aab3852 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+4a2632a8-e1ac-4450-910a-b2f3c07d156b 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+d4fa6427-58d8-4c10-87d4-943d1f8b02cc 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+a4204672-1016-4bb2-8509-6415299299c1 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+0c4947df-93b0-42a6-8db3-5ee41d01888a 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+78f4192f-62c8-405e-8392-70a57f632be0 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+fe2eb2ab-4ff3-4b3f-b904-33361b1fda3b 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+ad33113e-2064-4da3-9f74-3e9c474d8692 2026-06-18 21:45:41.238524 2026-06-18 21:45:41.238524 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+059d59d4-71fa-4d74-9a9f-b8488a83c6a3 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+834c59c3-496b-4a68-b06c-dfbfbbdc76fb 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+ed7bcab4-8c4e-4a2c-980d-b047739753db 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+4db1eae1-429b-4d83-acfb-e2667628cc6a 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+f79ca9b2-0b11-4954-b4b4-573399c4d714 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+dd139d77-0830-4e23-9dc2-6c98ba0611a8 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+44973cc2-2c17-40b6-96fb-90214c3ec80f 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+b2f6b44a-d79b-4ae8-bff7-54a4d780c91a 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+96f8ee16-1d2a-48b0-bb82-8e367b4f8c4e 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+3c33be1e-efee-441c-98cb-f19b2b098405 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+c4bc581c-15b6-4593-8ef5-95e4be54b321 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+58bdf0e8-befd-4c8b-9a98-cb794ddc6ada 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+647b0bc7-2fcd-4f08-afdf-5c6cd6198a86 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+ea17a089-08f5-4366-a6cb-b4df54e4b3c4 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+d7e1ae4f-1803-4c58-966e-b1d37effc553 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+eb8570da-6d58-4446-bd91-713bd1aa39fe 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+a0cd3af3-01bd-4cba-98df-0026a3bb27fb 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+34be0f9f-cc4e-48f6-817d-fe9345355dcc 2026-06-19 12:52:57.341027 2026-06-19 12:52:57.341027 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+72cedc3a-b33e-4a18-afbb-137966d3c227 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 97ebd673-8adf-4249-b384-dd998e7f4cbe isMultipleDelegationAllowed Is Multiple Delegation Allowed value \N \N
+f8a9c06e-578c-439f-9912-d2e29610be39 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffix Internal Suffix value \N \N
+c0ba7f8e-b821-489a-b497-a6dd81df6665 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefix Internal Prefix value \N \N
+9556e9e1-923e-4cd2-84a6-0c8cc1a315e7 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 97ebd673-8adf-4249-b384-dd998e7f4cbe internalSuffixCC Internal Suffix CC value \N \N
+58472ddd-69ca-41b3-ac6c-bbb2bdd2986b 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 97ebd673-8adf-4249-b384-dd998e7f4cbe internalPrefixCC Internal Prefix CC value \N \N
+9d6023e4-083b-4298-88f1-42c3d2cf4a24 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 97ebd673-8adf-4249-b384-dd998e7f4cbe referenceNumberPrefix Reference Number Prefix value \N \N
+fa64d10b-c6a2-46c6-807b-a70eb523edcb 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 97ebd673-8adf-4249-b384-dd998e7f4cbe externalReferenceNumberPrefix External Reference Number Prefix value \N \N
+aa6ca890-5bca-470c-98c4-72fac40e1133 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 97ebd673-8adf-4249-b384-dd998e7f4cbe internalMemoReferenceNumberPrefix Internal Memo Reference Number Prefix value \N \N
+882a0d20-db90-4750-b78e-a4a7643306c1 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 97ebd673-8adf-4249-b384-dd998e7f4cbe escalationHour Escalation Hour value \N \N
+32f578ff-151d-47fd-b784-848b23d87be4 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentLetterEscalationHour Urgent Letter Escalation Hour value \N \N
+a8779d30-0e89-4b5d-a79b-1b4e7e90d6ee 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 97ebd673-8adf-4249-b384-dd998e7f4cbe onReviewLetterEscalationHour On Review Letter Escalation Hour value \N \N
+33981f63-d52b-4d78-a1d5-df657acd9e09 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 97ebd673-8adf-4249-b384-dd998e7f4cbe urgentOnReviewLetterEscalationHour Urgent On Review Letter Escalation Hour value \N \N
+732e2d8f-ad5f-42eb-a0b4-a0e33bc69567 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldCollaboratorAlwaysSign Should Collaborator Always Sign value \N \N
+888d3a32-421e-4371-97a8-38d4ecb26814 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 97ebd673-8adf-4249-b384-dd998e7f4cbe waitAllCollaboratorsBeforeAction Wait All Collaborators Before Action value \N \N
+9fcae085-ed50-4191-b080-a206c8532946 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 97ebd673-8adf-4249-b384-dd998e7f4cbe shouldIncludeForYourReferenceInCC Should Include For Your Reference In CC value \N \N
+8f1ca02a-f698-4aef-a265-b3cbead40909 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 97ebd673-8adf-4249-b384-dd998e7f4cbe forwardWithTeeterSignature Forward With Teeter Signature value \N \N
+72301219-be52-4484-8337-776b00d7db7a 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 97ebd673-8adf-4249-b384-dd998e7f4cbe attachSignatureOnAttachment Attach Signature On Attachment value \N \N
+0d44f4cf-d5e6-4c32-872b-4c0942412540 2026-06-19 13:19:46.433082 2026-06-19 13:19:46.433082 97ebd673-8adf-4249-b384-dd998e7f4cbe positionScopeToFetch Position Scope To Fetch value \N \N
+\.
+
+
+--
+-- Data for Name: units; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.units (created_at, updated_at, id, name, key, organization_id, parent_unit_id, reference_number_prefix) FROM stdin;
+2026-06-16 19:12:02.676001+00 2026-06-16 19:12:02.676001+00 97ebd673-8adf-4249-b384-dd998e7f4cbe {"am": "ሱፐር አድሚን ክፍል", "en": "Super Admin Unit"} tria 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb \N \N
+\.
+
+
+--
+-- Data for Name: user_credentials; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.user_credentials (created_at, updated_at, id, user_id, password, is_active, changed_at, amharic_changed_at) FROM stdin;
+2026-06-16 17:56:00.83431+00 2026-06-16 17:56:00.83431+00 d350e96f-556a-4e18-995b-30c1de996c6d 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a $argon2id$v=19$m=65536,t=3,p=4$YS3qtnev3LlFc9fSfnttvQ$LiyPpYwJM/xMrQ3pfVDVUzN4cEWLUAvKOyAodbWpNB8 t \N \N
+2026-06-16 17:56:01.16418+00 2026-06-16 17:56:01.16418+00 d654e4af-e489-4a56-8442-61d923019b38 637c7114-8391-4fd4-80be-3885a23df200 $argon2id$v=19$m=65536,t=3,p=4$pDMxxX6HPUDK0X5/WhZ09Q$3VmO0oxCRMsBs4gDAOhMruFjTvMSRXr1a1HzqBMhvJI t \N \N
+2026-06-16 17:56:01.16418+00 2026-06-16 17:56:01.16418+00 f4c789a0-91eb-4649-b7c1-1cfed7a86db4 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 $argon2id$v=19$m=65536,t=3,p=4$pDMxxX6HPUDK0X5/WhZ09Q$3VmO0oxCRMsBs4gDAOhMruFjTvMSRXr1a1HzqBMhvJI t \N \N
+2026-06-16 17:56:01.16418+00 2026-06-16 17:56:01.16418+00 19e912d1-9ebe-4985-9913-591889fec758 f61f8b8d-e8b8-49c2-8198-14183746cf0b $argon2id$v=19$m=65536,t=3,p=4$pDMxxX6HPUDK0X5/WhZ09Q$3VmO0oxCRMsBs4gDAOhMruFjTvMSRXr1a1HzqBMhvJI t \N \N
+2026-06-16 20:17:13.507152+00 2026-06-16 20:17:13.507152+00 5b28e799-90ee-4baa-aefe-0148a81e495d 892478ff-b6f9-4389-94f2-cab4e830c5aa $argon2id$v=19$m=65536,t=3,p=4$ItUDgIfEsnmw5zdwriyniQ$9b2X4yA0qMVoKAtdKxJiDO0TJ03ajIrY8IeVvDTIZTI t \N ሰኔ 09: 2018 - 05:17 ማታ
+2026-06-16 20:19:20.46476+00 2026-06-16 20:19:20.46476+00 212d631b-d880-497a-baec-287a1db5655d 2fc3c733-8c49-47db-b2b4-8f75f522611e $argon2id$v=19$m=65536,t=3,p=4$CSKGHiGpy/o7lw4q43vk6w$xQ776AcgvvB6W3Mgwbt30cx8fBf/BEeD8ZrM0JjoEd0 t \N ሰኔ 09: 2018 - 05:19 ማታ
+2026-06-16 20:48:01.418823+00 2026-06-16 20:48:01.418823+00 69be5648-3209-4783-bba9-ee7c2b17b13a f3905a90-b034-451c-8ba6-6b929105d423 $argon2id$v=19$m=65536,t=3,p=4$+rGJKIQYK20TyMOFUAJEUA$98oeThTBMMLf9Y68jBuOIp3aAc5bFeli+Edxz94oLpM t \N ሰኔ 09: 2018 - 05:48 ማታ
+2026-06-16 21:07:34.871929+00 2026-06-16 21:07:34.871929+00 529c9526-a0d5-4f16-b93e-46db2181c308 1e4ffa91-fd0d-4fdc-9c3f-7bfd7cbcdc37 $argon2id$v=19$m=65536,t=3,p=4$CIAIkyR7s/4PQmsGdU2C4g$Q2URw49X/vaunCVllKLNOqOK+wQkZ5t3QvxvbqZwOc4 t \N \N
+2026-06-16 21:33:24.931891+00 2026-06-16 21:33:24.931891+00 0ff2fe27-b8d8-4e69-a4f6-ac461fd5e3ca 8d9e3a2a-558c-4cca-987c-202dc8ac3c5c $argon2id$v=19$m=65536,t=3,p=4$D1Ong7cnLobW4LFBSmTpJQ$8sgJXrdVdIpjMjN++YDNsi5c9xqCH+diR7hqoYl2txk t \N ሰኔ 09: 2018 - 06:33 ሌሊት
+2026-06-17 04:52:24.143115+00 2026-06-17 04:52:24.143115+00 621f6921-81d8-4397-abbb-c4cc867fcd05 b7e27b32-2c33-4a15-a13f-b849826d21a4 $argon2id$v=19$m=65536,t=3,p=4$NeqOgxZrjkC4s+3cHdntQQ$awCuA6qKvZmNNGoAPBnIRxxdawtb1ZV8Rs0amQj212I t \N \N
+2026-06-17 04:52:24.143115+00 2026-06-17 04:52:24.143115+00 8ed87c81-b26e-4e39-8b4a-054763913da1 645e0886-1e6d-4e5e-a7af-906026a7eb59 $argon2id$v=19$m=65536,t=3,p=4$NeqOgxZrjkC4s+3cHdntQQ$awCuA6qKvZmNNGoAPBnIRxxdawtb1ZV8Rs0amQj212I t \N \N
+2026-06-17 05:07:43.046354+00 2026-06-17 05:07:43.046354+00 a6d8f25b-49da-4b43-9736-0eaefc2e7f20 c15ee839-a3fb-4d0a-8848-874dafeac860 $argon2id$v=19$m=65536,t=3,p=4$04GTNi3HJUw/ylRPy4o+Nw$xn+A2gy94hlEHxgnyiwwi+YgjIzAkn3IsNa+z5HIPBU t \N ሰኔ 10: 2018 - 02:07 ጠዋት
+2026-06-17 06:10:39.877366+00 2026-06-17 06:10:39.877366+00 86aa4998-be96-4686-9183-6ba4d273ca52 6f001573-e7e0-4952-81ad-e422cfd4dc1e $argon2id$v=19$m=65536,t=3,p=4$LaVUaAQ3T6ke33/f8kX/DQ$KnLAhEuHnji5TNimuFRYiAbBd2gGBvKLc1Faqv4H34c t \N ሰኔ 10: 2018 - 03:10 ጠዋት
+2026-06-17 06:34:40.493416+00 2026-06-17 06:34:40.493416+00 b359c3c2-5f43-43f8-b751-c97597c2e370 f2bd0214-cdcb-47aa-ac28-bd2fafc51a12 $argon2id$v=19$m=65536,t=3,p=4$CNJ0e9i0azA7E1DoqPuDpg$eB36r+TTpmEKcajTJ2g+6+S71BCZjTKvibjLcuWgYoc t \N ሰኔ 10: 2018 - 03:34 ጠዋት
+2026-06-17 07:49:55.482072+00 2026-06-17 07:49:55.482072+00 9a8cfbc6-476d-4560-9c61-768298784d49 01967f26-5ad0-419c-aa4d-6a5019f8687e $argon2id$v=19$m=65536,t=3,p=4$TEfZ41qMsducSL3Gq7+3Pg$163Bm8hNutZP++KiODBYcuGKMBWknbirolOWiM0OFKk t \N ሰኔ 10: 2018 - 04:49 ጠዋት
+2026-06-18 08:26:58.410594+00 2026-06-18 08:26:58.410594+00 d7ba8150-f6e9-497f-bbd7-e79f5f5136d8 731f1978-b8cf-4597-ab71-18f2af0b0d95 $argon2id$v=19$m=65536,t=3,p=4$2SmfoOAjkh3UYBkZFjTGHg$LA4GPFhbVApjOANQQlS/Gq4p0dX9TNjNs28zJnm7DCw t \N ሰኔ 11: 2018 - 05:26 ጠዋት
+2026-06-18 22:18:51.90756+00 2026-06-18 22:18:51.90756+00 b9d98081-48ad-496b-abc6-d52f859bfce3 804bc335-957c-4b13-90ca-43172ef2887b $argon2id$v=19$m=65536,t=3,p=4$Kb2e9qSZ6VvAyrMBQgGsxQ$fmX3UuxxOgzsd47tcjH7CPLs8YGNy0Uv3SAFU8jOUPc t \N ሰኔ 11: 2018 - 07:18 ሌሊት
+2026-06-19 06:26:25.785538+00 2026-06-19 06:26:25.785538+00 07790f25-3d6e-4479-ad90-c12fa0b0f90d 3d4937e9-3a37-4317-a001-48d555dffb9f $argon2id$v=19$m=65536,t=3,p=4$zSCz5R/muqiEvb2dGs0lUA$OezeE7NCGvBgTSdwBlo7KqW3aTVMrHH2hnAYh9BOrB8 t \N ሰኔ 12: 2018 - 03:26 ጠዋት
+2026-06-19 06:37:22.240708+00 2026-06-19 06:37:22.240708+00 6493b335-ee01-4c71-a77f-60570efc0569 40106f87-7df8-4d7f-bf2e-d5096da10417 $argon2id$v=19$m=65536,t=3,p=4$yxvGZeZ8doHaQ9AJ5pOPfQ$gnBdu+m8ftxfeLvDzQB5X4Ym6ebIGp1RMhQflAOwSdg t \N ሰኔ 12: 2018 - 03:37 ጠዋት
+2026-06-19 07:03:02.30762+00 2026-06-19 07:03:02.30762+00 74318fa2-7d5e-4974-95dc-710cfc3cd714 0e1e709c-7bf6-4852-869e-678924f2315e $argon2id$v=19$m=65536,t=3,p=4$XHYQ3i3kQ6j4z/+8HnipHQ$0epbta1HIUon5KDtFhlAWpcYYTWV+WNE5rAowl6DYw8 t \N ሰኔ 12: 2018 - 04:03 ጠዋት
+2026-06-19 08:06:24.442228+00 2026-06-19 08:06:24.442228+00 b9bc87ee-89c5-42b4-a976-c969a7381c7b 9e05084a-c69e-4d22-825d-c9f4b4da80e1 $argon2id$v=19$m=65536,t=3,p=4$8xAUblQDVa/Xrmx+Z9t6/A$MLgDgHVukrubcaRru8WpGHA5iy5kCVEywVX83gRP9Uo t \N ሰኔ 12: 2018 - 05:06 ጠዋት
+2026-06-20 06:09:44.256532+00 2026-06-20 06:09:44.256532+00 0ec115a2-4d3e-4d84-b60d-b491915955b9 37d135c3-019b-4fec-9ec8-312b3824a1a6 $argon2id$v=19$m=65536,t=3,p=4$SIbWVIgxSptnG4FcnIssAQ$nUw8eMAU7DsSPcmMlm5YmLPZ3g2J7r/Lx529+IrOJz0 t \N ሰኔ 13: 2018 - 03:09 ጠዋት
+\.
+
+
+--
+-- Data for Name: user_documents; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.user_documents (created_at, updated_at, id, user_id, document_id, status, "fileInfo", is_current, uploaded_successfully, approved_at, locale_approved_at, approved_by_id, approved_by) FROM stdin;
+\.
+
+
+--
+-- Data for Name: user_roles; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.user_roles (created_at, updated_at, id, user_id, role_id, organization_id, unit_id) FROM stdin;
+2026-06-16 17:56:00.83431+00 2026-06-16 17:56:00.83431+00 58578080-75a5-460e-8283-773be87423a6 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a 520836ee-dc13-4c08-b572-8eced5bfd309 5e62a292-c8c6-4b1d-b4bf-2d7086f895bb \N
+2026-06-16 21:07:34.871929+00 2026-06-16 21:07:34.871929+00 28c3e7aa-0148-4bb8-8a68-bb53e37050ed 1e4ffa91-fd0d-4fdc-9c3f-7bfd7cbcdc37 b2de1eae-ef93-4e90-8ec9-351f0dd8a6a9 a3f7bdac-e218-4554-aaa5-48511f4058d4 \N
+2026-06-16 21:07:34.871929+00 2026-06-16 21:07:34.871929+00 f117204b-c46f-4db0-a73d-cd39742a0104 1e4ffa91-fd0d-4fdc-9c3f-7bfd7cbcdc37 449908c8-cd0e-42da-933a-49211b3e4385 a3f7bdac-e218-4554-aaa5-48511f4058d4 \N
+2026-06-16 17:56:01.16418+00 2026-06-19 13:19:46.549476+00 5e0ac900-e2f2-43db-acc3-e78b8b61ba44 637c7114-8391-4fd4-80be-3885a23df200 2389df8c-81f6-422e-aec2-34ad92c73c46 a3f7bdac-e218-4554-aaa5-48511f4058d4 \N
+2026-06-17 04:52:24.143115+00 2026-06-19 13:19:46.671356+00 14026966-5888-41de-a33f-875bd02e5304 b7e27b32-2c33-4a15-a13f-b849826d21a4 3bf24d98-25e3-4ca6-9db9-f58002908ded a3f7bdac-e218-4554-aaa5-48511f4058d4 \N
+2026-06-17 06:31:28.331862+00 2026-06-19 13:19:46.671356+00 4b0a9a84-f0ec-4866-ba89-ca908f96ce82 645e0886-1e6d-4e5e-a7af-906026a7eb59 af89cbb4-3fc4-4d8d-b5cb-583bfd003f3f a3f7bdac-e218-4554-aaa5-48511f4058d4 \N
+2026-06-16 17:56:01.16418+00 2026-06-19 13:19:46.671356+00 c4dc1049-5c35-455a-bd94-3c82c3fd37a0 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 00a47fb6-163f-4c63-b88b-d5149abf33e4 a3f7bdac-e218-4554-aaa5-48511f4058d4 \N
+2026-06-16 17:56:01.16418+00 2026-06-19 13:19:46.671356+00 ab1def7a-9064-4273-a8cd-609d1a0959aa f61f8b8d-e8b8-49c2-8198-14183746cf0b 7c70609a-17c3-4c6d-a4f5-c658f1ec6ebd a3f7bdac-e218-4554-aaa5-48511f4058d4 \N
+\.
+
+
+--
+-- Data for Name: user_verifications; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.user_verifications (created_at, updated_at, id, user_id, verification_code, expires_at, "isUsed", otp_type, attempt_count) FROM stdin;
+2026-06-16 20:17:13.507152+00 2026-06-16 20:17:13.507152+00 fcda6d80-b78e-49b5-aa68-0838780cb515 892478ff-b6f9-4389-94f2-cab4e830c5aa $argon2id$v=19$m=65536,t=3,p=4$Aoaa1MfNG3XHBxZTUXSgcw$9f8ngg8Tbj7eG4T71m7aZ0QlYoM5SP2gHzC0Veu9U5k 2026-06-16 20:47:13.519+00 f verify-phone-number 0
+2026-06-16 20:19:20.46476+00 2026-06-16 20:19:20.46476+00 ac0c213d-071b-4ad6-bbe3-0a6c4a515348 2fc3c733-8c49-47db-b2b4-8f75f522611e $argon2id$v=19$m=65536,t=3,p=4$/HHriobQFF7687B+Cf7VgQ$576jckFm6QeX2bkwrQg7FpPFDWNV/YPUQYDK/LXpTMw 2026-06-16 20:49:20.485+00 f verify-phone-number 0
+2026-06-16 20:48:01.418823+00 2026-06-16 20:48:01.418823+00 8e0b944e-9a8b-4350-bf58-740ef55418f6 f3905a90-b034-451c-8ba6-6b929105d423 $argon2id$v=19$m=65536,t=3,p=4$P5dU0zEnYsMfMwLstm6rdQ$KDio7T/jsImuXXtLkCKc7xmTTht8HFtloAT5KieJ4Oo 2026-06-16 21:18:01.445+00 f verify-phone-number 0
+2026-06-16 21:33:24.931891+00 2026-06-16 21:33:24.931891+00 cebf553f-f587-487f-86aa-70f6e6066497 8d9e3a2a-558c-4cca-987c-202dc8ac3c5c $argon2id$v=19$m=65536,t=3,p=4$u0L+KSA0mFtvV95DREbxwg$/jEQA2/GUc/umYe2XunBB04tX8s4XwpEpzeAjVkd9Lg 2026-06-16 22:03:24.959+00 f verify-phone-number 0
+2026-06-17 05:07:43.046354+00 2026-06-17 05:07:43.046354+00 94253e93-cde4-45f4-a4c7-74ba73af3267 c15ee839-a3fb-4d0a-8848-874dafeac860 $argon2id$v=19$m=65536,t=3,p=4$6hPAXnm+GvlbggRuhBsJmQ$0s5XK6yvaiZ5Cyl8zTAeSOOJ8Ed+npZazcxSb930i7I 2026-06-17 05:37:43.075+00 f verify-phone-number 0
+2026-06-17 06:10:39.877366+00 2026-06-17 06:10:39.877366+00 0e0d3ac8-5497-4739-a236-da6b2dabc195 6f001573-e7e0-4952-81ad-e422cfd4dc1e $argon2id$v=19$m=65536,t=3,p=4$Css5ghDWAVx4yoZeEe/sDw$nsfCDvNqNbNN+cGDlHgd6ezGDuWRSUp4pjsnIlGwk0M 2026-06-17 06:40:39.885+00 f verify-phone-number 0
+2026-06-17 06:34:40.493416+00 2026-06-17 06:34:40.493416+00 f99a7f0a-22c8-4f03-a6d0-4367f3d33bf0 f2bd0214-cdcb-47aa-ac28-bd2fafc51a12 $argon2id$v=19$m=65536,t=3,p=4$4X6bH8mnfVQy8VIKQ8Frzw$s/xVxNzkckQrZLTXPYUA4DfZY3ZW1ih1U+njEnK6mzg 2026-06-17 07:04:40.515+00 f verify-phone-number 0
+2026-06-17 07:49:55.482072+00 2026-06-17 07:49:55.482072+00 b5c5e6ec-faeb-4c3e-a1e3-2292937add6b 01967f26-5ad0-419c-aa4d-6a5019f8687e $argon2id$v=19$m=65536,t=3,p=4$QCz27yss8QLsdsTJFwTUQg$dxMseFbQP0uS7MseDboQB8HIr9BD7yDgmQf/aYeVuTQ 2026-06-17 08:19:55.493+00 f verify-phone-number 0
+2026-06-18 08:26:58.410594+00 2026-06-18 08:26:58.410594+00 a02b2f8c-16b4-4051-b959-21feecfa122f 731f1978-b8cf-4597-ab71-18f2af0b0d95 $argon2id$v=19$m=65536,t=3,p=4$keY/JFzvfCyIRRJBLLnqXw$vas+V6OWEFEyeb5euqFI7PX0a+ZpiB+iwFEwSDJ3/wQ 2026-06-18 08:56:58.439+00 f verify-phone-number 0
+2026-06-18 22:18:51.90756+00 2026-06-18 22:18:51.90756+00 903fa3a3-ece0-4ece-8bc2-760e0478435a 804bc335-957c-4b13-90ca-43172ef2887b $argon2id$v=19$m=65536,t=3,p=4$6Zg0WL61F8KgCn+yM0LF1A$afp4XTFj/Uqhk8A5pexZiZJ1bYODk8OnmYP9qzhUM6A 2026-06-18 22:48:51.918+00 f verify-phone-number 0
+2026-06-19 06:26:25.785538+00 2026-06-19 06:26:25.785538+00 d1954d71-1c50-4af9-9e2e-5a7113f1533d 3d4937e9-3a37-4317-a001-48d555dffb9f $argon2id$v=19$m=65536,t=3,p=4$y6/EJR++Q/b66c1tKuoBhQ$YBi760QxJKPIzcnCO0YoGfhYLi7RSP3T5juqFV109qM 2026-06-19 06:56:25.815+00 f verify-phone-number 0
+2026-06-19 06:37:22.240708+00 2026-06-19 06:37:22.240708+00 7d858be6-e699-4f32-bf18-1aaa7868606b 40106f87-7df8-4d7f-bf2e-d5096da10417 $argon2id$v=19$m=65536,t=3,p=4$Ia9l0g3py+U76OI6o/nQjw$sC2IBP9vAG7F/ogK9SSKuWfIdTeLmKJOI4qmjkooENs 2026-06-19 07:07:22.263+00 f verify-phone-number 0
+2026-06-19 07:03:02.30762+00 2026-06-19 07:03:02.30762+00 fe2282f6-bd35-4692-9a47-a592fbb3d93c 0e1e709c-7bf6-4852-869e-678924f2315e $argon2id$v=19$m=65536,t=3,p=4$407gbUk2JkMPymu6Vuz3kQ$ZdMPNwg2DonHGT7qrpMJAPj+G7A1hoRg+Ahs1g9D5gs 2026-06-19 07:33:02.332+00 f verify-phone-number 0
+2026-06-19 08:06:24.442228+00 2026-06-19 08:06:24.442228+00 b218d2e1-f014-4a93-a611-e98445e7fa9d 9e05084a-c69e-4d22-825d-c9f4b4da80e1 $argon2id$v=19$m=65536,t=3,p=4$bma6uzNQEXwc6/ZsA0Ytaw$RkW3V0Jtc+DyYLPcZ2KXFWzCZwLWwGEoUv9B6gN0xb0 2026-06-19 08:36:24.449+00 f verify-phone-number 0
+2026-06-20 06:09:44.256532+00 2026-06-20 06:09:44.256532+00 bc945187-aa8d-4bd0-a011-bb335014fcca 37d135c3-019b-4fec-9ec8-312b3824a1a6 $argon2id$v=19$m=65536,t=3,p=4$M/0i1ras4d5M0er1Mgm0lg$CX5eQ+wbmtUBSMBWGm067gqOi5BqICoyYwDDexafY+I 2026-06-20 06:39:44.282+00 f verify-phone-number 0
+\.
+
+
+--
+-- Data for Name: users; Type: TABLE DATA; Schema: iam; Owner: -
+--
+
+COPY iam.users (created_at, updated_at, id, name, email, sharepoint_id, username, user_type, status, is_active, has_set_password, phone_number, is_phone_number_verified, approved_by_id, approved_at, locale_approved_at, verified_by, "licenseNo", metadata) FROM stdin;
+2026-06-16 17:56:00.83431+00 2026-06-16 17:56:00.83431+00 354d0b57-fb8c-4fea-a3f3-cde4d4ba7c5a {"am": "ሱፐር አድሚን", "en": "Super Admin"} superadmin@tria.com \N superadmin employee accepted t t f \N \N \N phone_number \N \N
+2026-06-16 17:56:01.16418+00 2026-06-16 17:56:01.16418+00 637c7114-8391-4fd4-80be-3885a23df200 {"en": "linestaff"} linestaff@edr.local \N linestaff employee accepted t t \N f \N \N \N phone_number \N \N
+2026-06-16 17:56:01.16418+00 2026-06-16 17:56:01.16418+00 6f70ac3e-76dd-4c7c-be51-4838a5b92ad9 {"en": "director"} director@edr.local \N director employee accepted t t \N f \N \N \N phone_number \N \N
+2026-06-16 17:56:01.16418+00 2026-06-16 17:56:01.16418+00 f61f8b8d-e8b8-49c2-8198-14183746cf0b {"en": "ceo"} ceo@edr.local \N ceo employee accepted t t \N f \N \N \N phone_number \N \N
+2026-06-16 20:17:13.507152+00 2026-06-16 20:17:13.507152+00 892478ff-b6f9-4389-94f2-cab4e830c5aa {"am": "YASCHALEW ERKIHUN", "en": "YASCHALEW ERKIHUN"} yaschalewerkihun6@gmail.com \N yaschalewerkihun6@gmail.com individual accepted t t +251929022432 f \N \N \N phone_number \N \N
+2026-06-16 20:19:20.46476+00 2026-06-16 20:19:20.46476+00 2fc3c733-8c49-47db-b2b4-8f75f522611e {"am": "Naod Abasiessie", "en": "Naod Abasiessie"} naodzerihun@gmail.com \N naodzerihun@gmail.com individual accepted t t +251923495365 f \N \N \N phone_number \N \N
+2026-06-16 20:48:01.418823+00 2026-06-16 20:48:01.418823+00 f3905a90-b034-451c-8ba6-6b929105d423 {"am": "Muluhabt Amsalu", "en": "Muluhabt Amsalu"} betmul@gmail.com \N betmul@gmail.com individual accepted t t +251940393837 f \N \N \N phone_number \N \N
+2026-06-16 21:07:34.871929+00 2026-06-16 21:07:34.871929+00 1e4ffa91-fd0d-4fdc-9c3f-7bfd7cbcdc37 {"am": "ihd", "en": "shdiq"} ih@ufh.com \N hfu employee accepted t t 097676735 f \N \N \N phone_number \N \N
+2026-06-16 21:33:24.931891+00 2026-06-16 21:33:24.931891+00 8d9e3a2a-558c-4cca-987c-202dc8ac3c5c {"am": "Marshal Yordanos", "en": "Marshal Yordanos"} marshyordanos@gmail.com \N marshyordanos@gmail.com individual accepted t t +251986680094 f \N \N \N phone_number \N \N
+2026-06-17 04:52:24.143115+00 2026-06-17 04:52:24.143115+00 b7e27b32-2c33-4a15-a13f-b849826d21a4 {"en": "marketing"} marketing@edr.local \N marketing employee accepted t t \N f \N \N \N phone_number \N \N
+2026-06-17 04:52:24.143115+00 2026-06-17 04:52:24.143115+00 645e0886-1e6d-4e5e-a7af-906026a7eb59 {"en": "operations"} operations@edr.local \N operations employee accepted t t \N f \N \N \N phone_number \N \N
+2026-06-17 05:07:43.046354+00 2026-06-17 05:07:43.046354+00 c15ee839-a3fb-4d0a-8848-874dafeac860 {"am": "Nati Wondisha", "en": "Nati Wondisha"} nathnaelwonisha@gmail.com \N nathnaelwonisha@gmail.com individual accepted t t +251946669787 f \N \N \N phone_number \N \N
+2026-06-17 06:34:40.493416+00 2026-06-17 06:34:40.493416+00 f2bd0214-cdcb-47aa-ac28-bd2fafc51a12 {"am": "Feven Tamrat", "en": "Feven Tamrat"} feventamrat4@gmail.com \N feventamrat4@gmail.com individual accepted t t +251938121414 f \N \N \N phone_number \N \N
+2026-06-17 07:49:55.482072+00 2026-06-17 07:49:55.482072+00 01967f26-5ad0-419c-aa4d-6a5019f8687e {"am": "Hager Tadesse", "en": "Hager Tadesse"} hageritina27@gmail.com \N hageritina27@gmail.com individual accepted t t +251930075932 f \N \N \N phone_number \N \N
+2026-06-18 08:26:58.410594+00 2026-06-18 08:26:58.410594+00 731f1978-b8cf-4597-ab71-18f2af0b0d95 {"am": "YASCHALEW ERKIHUN", "en": "YASCHALEW ERKIHUN"} yaschalewerkihun63@gmail.com \N yaschalewerkihun63@gmail.com individual accepted t t +251929022411 f \N \N \N phone_number \N \N
+2026-06-18 22:18:51.90756+00 2026-06-18 22:18:51.90756+00 804bc335-957c-4b13-90ca-43172ef2887b {"am": "branch 10", "en": "branch 10"} marshyordanos32@gmail.com \N marshyordanos32@gmail.com individual accepted t t +251986680044 f \N \N \N phone_number \N \N
+2026-06-19 06:26:25.785538+00 2026-06-19 06:26:25.785538+00 3d4937e9-3a37-4317-a001-48d555dffb9f {"am": "Mezemir Wagaw", "en": "Mezemir Wagaw"} hageritina277@gmail.com \N hageritina277@gmail.com individual accepted t t +251987654345 f \N \N \N phone_number \N \N
+2026-06-19 06:37:22.240708+00 2026-06-19 06:37:22.240708+00 40106f87-7df8-4d7f-bf2e-d5096da10417 {"am": "Mikias Kal", "en": "Mikias Kal"} mikikal@gmail.com \N mikikal@gmail.com individual accepted t t +251925658789 f \N \N \N phone_number \N \N
+2026-06-19 07:03:02.30762+00 2026-06-19 07:03:02.30762+00 0e1e709c-7bf6-4852-869e-678924f2315e {"am": "Main Yordanos", "en": "Main Yordanos"} marshyordanos10@gmail.com \N marshyordanos10@gmail.com individual accepted t t +251986680089 f \N \N \N phone_number \N \N
+2026-06-19 08:06:24.442228+00 2026-06-19 08:06:24.442228+00 9e05084a-c69e-4d22-825d-c9f4b4da80e1 {"am": "lema lemu", "en": "lema lemu"} lema@gmail.com \N lema@gmail.com individual accepted t t +251912345678 f \N \N \N phone_number \N \N
+2026-06-20 06:09:44.256532+00 2026-06-20 06:09:44.256532+00 37d135c3-019b-4fec-9ec8-312b3824a1a6 {"am": "Marshal Yordanos", "en": "Marshal Yordanos"} marshyordanos33@gmail.com \N marshyordanos33@gmail.com individual accepted t t +251986680027 f \N \N \N phone_number \N \N
+2026-06-17 06:10:39.877366+00 2026-06-17 06:10:39.877366+00 6f001573-e7e0-4952-81ad-e422cfd4dc1e {"am": "Alazar Abate", "en": "Alazar Abate"} \N \N 4557b9b729fab5f7c0172f9e716f472a individual accepted t t \N f \N \N \N phone_number \N \N
+\.
+
+
+--
+-- Data for Name: bookings; Type: TABLE DATA; Schema: public; Owner: -
+--
+
+COPY public.bookings (id, created_at, updated_at, deleted_at, reference, customer_id, train_id, status, scheduled_date, total_amount, payment_status) FROM stdin;
+\.
+
+
+--
+-- Data for Name: consignments; Type: TABLE DATA; Schema: public; Owner: -
+--
+
+COPY public.consignments (id, created_at, updated_at, deleted_at, booking_id, tracking_number, cargo_type, weight_kg, status, origin_station, destination_station) FROM stdin;
+\.
+
+
+--
+-- Data for Name: customers; Type: TABLE DATA; Schema: public; Owner: -
+--
+
+COPY public.customers (id, created_at, updated_at, deleted_at, name, email, phone, address, tax_id) FROM stdin;
+\.
+
+
+--
+-- Data for Name: invoices; Type: TABLE DATA; Schema: public; Owner: -
+--
+
+COPY public.invoices (id, created_at, updated_at, deleted_at, booking_id, invoice_number, amount, currency, status, issued_at, due_at) FROM stdin;
+\.
+
+
+--
+-- Data for Name: migrations; Type: TABLE DATA; Schema: public; Owner: -
+--
+
+COPY public.migrations (id, "timestamp", name) FROM stdin;
+1 1747400944029 Init1747400944029
+2 1747465735585 UpdateOnUsernaem1747465735585
+3 1747727523324 BranchAndWoreda1747727523324
+4 1747731303757 OrganizationSeal1747731303757
+5 1747789762279 DefaultUnits1747789762279
+6 1747793320218 ChangedAt1747793320218
+7 1747828599097 ParentId1747828599097
+8 1747830674534 UnitKey1747830674534
+9 1747838266010 EmployeeProject1747838266010
+10 1747842810653 EmployeeProject1747842810653
+11 1747843190824 StartDate1747843190824
+12 1747888964477 EmployeeProject1747888964477
+13 1747965753746 IsProjectLead1747965753746
+14 1748020238276 OrganizationSeal1748020238276
+15 1748064931649 StampAndSignature1748064931649
+16 1748066472857 UploadedSuccessfully1748066472857
+17 1748068428487 ChangeOrgSealToUnit1748068428487
+18 1748070258096 HeadersAndFooter1748070258096
+19 1748350815021 ChangeEmployeeRelation1748350815021
+20 1748427600000 AddServiceTypesAndCargoTypes1748427600000
+21 1748514000000 AddRuleEngineTablesAndCodes1748514000000
+22 1748547859000 IsCurrentEmployee1748547859000
+23 1748550000000 CreateFreightLegacyBaseline1748550000000
+24 1748600000000 ItmlsFullSchemaRewrite1748600000000
+25 1748700000000 AddBookingsConfigForeignKeys1748700000000
+26 1748767029322 OtherRelations1748767029322
+27 1748800000000 AddBookingsRemainingForeignKeys1748800000000
+28 1748900000000 MoveCustomersToFreightSchema1748900000000
+29 1749000000000 NormalizeWeightLimitTradeDirectionBoth1749000000000
+30 1749100000000 CreateFreightFilesTable1749100000000
+31 1749200000000 CreateCompaniesModule1749200000000
+32 1749200000000 BookingFlowRefactor1749200000000
+33 1749300000000 AddFanNumberToCompanies1749300000000
+34 1749300000000 AddBookingFreightType1749300000000
+35 1749400000000 AddTrainScheduling1749400000000
+36 1749400000000 AddContractSignatures1749400000000
+37 1749459090038 OrgStatus1749459090038
+38 1749500000000 AddCompanyIdToBookings1749500000000
+39 1749600000000 AddBlocksRoleToApprovalStep1749600000000
+40 1749700000000 SeedDefaultApprovalRules1749700000000
+41 1749800000000 AddShippingLinesCodeUniqueIndex1749800000000
+42 1749900000000 CreateFileUploadSettingsTables1749900000000
+43 1750000000000 AddTrainExtendedColumns1750000000000
+44 1750000000000 AddCompanyContactColumns1750000000000
+45 1750058511689 OrgStatus1750058511689
+46 1750100000000 CreateFleetCrudTables1750100000000
+47 1750100000000 AddRoutesAndExtendLocomotives1750100000000
+48 1750200000000 SeedDefaultWagonTypes1750200000000
+49 1750300000000 AddRouteToTrainSchedules1750300000000
+50 1750400000000 AddSchedulingAllocationEnhancements1750400000000
+51 1750500000000 AddWagonReadiness1750500000000
+52 1750600000000 AddGovernmentBookingFields1750600000000
+53 1750609921538 PositionType1750609921538
+54 1750610770542 PositionType1750610770542
+55 1750614567253 PositionType1750614567253
+56 1750654922619 PositionType1750654922619
+57 1750656967592 PositionType1750656967592
+58 1750697440966 ActivateUser1750697440966
+59 1750698139264 HasSetVerification1750698139264
+60 1750700000000 CreateSchedulingEvents1750700000000
+61 1750800000000 FixContainerWagonsPerUnit1750800000000
+62 1750900000000 AddContainerNumberToBookingContainer1750900000000
+63 1751000000000 CreateTrainSchedulingGlobalRules1751000000000
+64 1751000000001 AddDeletedAtToTrainSchedulingGlobalRules1751000000001
+65 1751091189049 RemoveMandatoryEmail1751091189049
+66 1751095710013 UserRoleOrganizatoin1751095710013
+67 1751521711029 UserPhoneNumber1751521711029
+68 1752614469059 Delegation1752614469059
+69 1752758661197 ReferenceNumberPrefix1752758661197
+70 1753163952190 Notification1753163952190
+71 1753218200002 Notification1753218200002
+72 1753219436647 Notification1753219436647
+73 1753276272247 UnitConfiguration1753276272247
+74 1753276931580 UnitConfiguration1753276931580
+75 1753277034651 UnitConfiguration1753277034651
+76 1753426887892 UnitConfiguration1753426887892
+77 1753691914858 UnitConfiguration1753691914858
+78 1753784474203 RemoveUniqueness1753784474203
+79 1753852094487 UnitAdmin1753852094487
+80 1753855390034 UnitAdmin1753855390034
+81 1754294896194 AmharicStartDate1754294896194
+82 1754384641158 AmharicStartDate1754384641158
+83 1754507526687 PositionConfiguration1754507526687
+84 1754547735883 CreatedAtMigration1754547735883
+85 1754664763667 PositionTypePermissionCascade1754664763667
+86 1754665722475 PositionTypePermissionCascade1754665722475
+87 1754891709494 PhoneNumberUniqueness1754891709494
+88 1755304105505 UserDocument1755304105505
+89 1755321996242 UserDocument1755321996242
+90 1755327358200 UserDocument1755327358200
+91 1755590421634 DocumentType1755590421634
+92 1755947866128 CreatedAt1755947866128
+93 1756711406311 PositionConfiguration1756711406311
+94 1756725954741 PositionConfigUnitId1756725954741
+95 1757326139740 IsSystemPermission1757326139740
+96 1757678663942 PositionScopeFetch1757678663942
+97 1757920167527 IsSuperAdmin1757920167527
+98 1758186138786 EmployeePositionDelegationLetter1758186138786
+99 1758248452497 PositionConfiguration1758248452497
+100 1758679696895 CanReceiveRecord1758679696895
+101 1759129448141 Session1759129448141
+102 1759437694476 EscalationHour1759437694476
+103 1760019589508 ExternalReferenceNumber1760019589508
+104 1760423068856 SessionUniqueness1760423068856
+105 1760424122000 InternalMemoReferenceNumber1760424122000
+106 1760598034083 SessionUniqueness1760598034083
+107 1760662547038 AccountConfigMigration1760662547038
+108 1760681113477 EscalationHour1760681113477
+109 1760778449374 OrganizationConfig1760778449374
+110 1760961262263 OrganizationConfig1760961262263
+111 1761806671899 ETrade1761806671899
+112 1761935395073 GlobalConfigs1761935395073
+113 1761987182889 SessionUnique1761987182889
+114 1763019890239 Delegation1763019890239
+115 1764166283079 PositionTypeConfiguration1764166283079
+116 1765828703580 AttemptCount1765828703580
+117 1768638611737 Application1768638611737
+118 1771920324720 SessionExpiryTime1771920324720
+119 1772033321239 OrgConfigForNumberOfUnits1772033321239
+120 1772714696414 JSONtoJSONB1772714696414
+121 1773082898585 EmployeePositionStatus1773082898585
+122 1775131786190 ForwardWithTeeter1775131786190
+123 1775211075656 AttachmentSignature1775211075656
+124 1775569532334 CollaborationSignatures1775569532334
+125 1775665142699 DefaultUnit1775665142699
+126 1775668572073 DefaultUnit1775668572073
+127 1777000000000 OrganizationSettings1777000000000
+128 1780262400000 HeaderFooterPositionRelation1780262400000
+129 1780297486244 UnitAndOrganizationSettings1780297486244
+130 1780350555540 LocationTypeLoctionUnitCluster1780350555540
+131 1780639311366 CreatePaymentTable1780639311366
+132 1780639978834 AlterClientActionToJsonb1780639978834
+133 1780644945086 UpdatePaymentTimestamp1780644945086
+134 1781000000000 AddLocomotiveReadiness1781000000000
+135 1781000000001 CreateTrainCheckpointEvents1781000000001
+136 1781000000002 AddBatchBookingFields1781000000002
+137 1781000000003 AddSelectedForBatchStatus1781000000003
+138 1781000000004 AddDomesticWeightLimitTradeDirection1781000000004
+139 1781000000005 CreateTrainCompositionRemovalLog1781000000005
+140 1782000000000 WagonLocomotiveYardLink1782000000000
+141 1782000000001 AddPaymentWebhookEventAndRefund1782000000001
+142 1782000000002 ExtendPaymentMethodEnum1782000000002
+143 1783000000000 ReplacePriorityRulesWithPriorityConfigs1783000000000
+144 1784000000000 CreateSavedSignatures1784000000000
+145 1770000000000 CreateVehiclesTable1770000000000
+146 1784000000001 SeedWagonsWithYardAssignment1784000000001
+147 1750000000000 CreateFacilitiesTable1750000000000
+148 1750000000001 AddFacilityIdToWarehouses1750000000001
+149 1750000000002 AddProofOfDeliveryToCargoes1750000000002
+150 1750000000003 AddWarehouseInspection1750000000003
+151 1750200000000 AddPhysicalWagonToTrainSetWagons1750200000000
+152 1750300000000 AddCurrentLocationToWagons1750300000000
+153 1750400000000 SeedEdRWagonFleet1750400000000
+154 1752000000000 CreateCompanyProfiles1752000000000
+155 1752000000001 MoveBusinessLicenseToProfile1752000000001
+156 1784100000000 AddBookingRouteDayIndex1784100000000
+157 1790000000000 CreateWarehouseModule1790000000000
+158 1790000000000 AddWarehouseAllocationAndFeeRules1790000000000
+159 1790000000001 WarehouseBatch21790000000001
+160 1790000000001 AddWarehouseFeeInvoices1790000000001
+161 1790000000002 WarehouseBatch31790000000002
+\.
+
+
+--
+-- Data for Name: otp_verifications; Type: TABLE DATA; Schema: public; Owner: -
+--
+
+COPY public.otp_verifications (id, created_at, updated_at, deleted_at, phone, otp, verified) FROM stdin;
+8ce8bf0e-e908-4f63-ad5e-2c7f430ee716 2026-06-16 20:17:14.169621+00 2026-06-16 20:17:14.169621+00 \N +251929022432 f
+cc49f71a-71c0-4854-83ca-81cc3fbe116a 2026-06-16 20:19:21.485033+00 2026-06-16 20:19:21.485033+00 \N 251923495365 f
+4e72e103-23f0-45b5-8297-4156932c5e84 2026-06-16 20:48:01.879867+00 2026-06-16 20:48:01.879867+00 \N +251940393837 f
+cca0299f-1d8a-4c18-9290-f8259ca4a40f 2026-06-16 21:33:25.706311+00 2026-06-16 21:33:25.706311+00 \N 251986680094 f
+e3730545-d63d-450a-94ca-1edf1a5ba85b 2026-06-17 05:07:43.523521+00 2026-06-17 05:07:43.523521+00 \N +251946669787 f
+2feb0bc2-59be-4d6e-8b28-000d674e6fd6 2026-06-17 06:10:40.382753+00 2026-06-17 06:10:40.382753+00 \N +251922556878 f
+39e0cd5f-cc69-426d-b7f5-6ed1f25ac77e 2026-06-17 06:34:40.945071+00 2026-06-17 06:34:40.945071+00 \N +251938121414 f
+555a756f-5ba4-4885-95f5-922d8f88555c 2026-06-17 07:49:56.197427+00 2026-06-17 07:49:56.197427+00 \N 251930075932 f
+2453b3d3-9143-4d83-80ed-2666d07c0dae 2026-06-18 08:26:59.304824+00 2026-06-18 08:26:59.304824+00 \N +251929022411 f
+9a838297-e848-489e-9536-1e122fdacf1f 2026-06-18 22:18:52.371369+00 2026-06-18 22:18:52.371369+00 \N +251986680044 f
+6738b068-c96d-4570-961a-e13e580041a6 2026-06-19 06:26:26.456483+00 2026-06-19 06:26:26.456483+00 \N +251987654345 f
+ed4d88c5-d1f5-4819-a015-dae808fd76ca 2026-06-19 06:37:22.853461+00 2026-06-19 06:37:22.853461+00 \N +251925658789 f
+4ca9532c-4898-4318-8536-88f7c5f9ac22 2026-06-19 07:03:02.93697+00 2026-06-19 07:03:02.93697+00 \N +251986680089 f
+04b04335-d419-4511-bfca-03af251bca02 2026-06-19 08:06:25.242723+00 2026-06-19 08:06:25.242723+00 \N +251912345678 f
+fe13d4c1-a3cb-473e-951f-b3f50f72c8b1 2026-06-20 06:09:44.795625+00 2026-06-20 06:09:44.795625+00 \N +251986680027 f
+\.
+
+
+--
+-- Data for Name: tracking_events; Type: TABLE DATA; Schema: public; Owner: -
+--
+
+COPY public.tracking_events (id, created_at, updated_at, deleted_at, consignment_id, location, status, occurred_at, description) FROM stdin;
+\.
+
+
+--
+-- Data for Name: trains; Type: TABLE DATA; Schema: public; Owner: -
+--
+
+COPY public.trains (id, created_at, updated_at, deleted_at, code, capacity_tons, status, notes) FROM stdin;
+\.
+
+
+--
+-- Name: seq_company_profile_ex; Type: SEQUENCE SET; Schema: freight; Owner: -
+--
+
+SELECT pg_catalog.setval('freight.seq_company_profile_ex', 1, false);
+
+
+--
+-- Name: seq_company_profile_ffe; Type: SEQUENCE SET; Schema: freight; Owner: -
+--
+
+SELECT pg_catalog.setval('freight.seq_company_profile_ffe', 1, false);
+
+
+--
+-- Name: seq_company_profile_fwj; Type: SEQUENCE SET; Schema: freight; Owner: -
+--
+
+SELECT pg_catalog.setval('freight.seq_company_profile_fwj', 1, false);
+
+
+--
+-- Name: seq_company_profile_im; Type: SEQUENCE SET; Schema: freight; Owner: -
+--
+
+SELECT pg_catalog.setval('freight.seq_company_profile_im', 1, false);
+
+
+--
+-- Name: seq_company_profile_tr; Type: SEQUENCE SET; Schema: freight; Owner: -
+--
+
+SELECT pg_catalog.setval('freight.seq_company_profile_tr', 1, false);
+
+
+--
+-- Name: migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
+--
+
+SELECT pg_catalog.setval('public.migrations_id_seq', 161, true);
+
+
+--
+-- Name: audit_logs PK_1bb179d048bbc581caa3b013439; Type: CONSTRAINT; Schema: audit; Owner: -
+--
+
+ALTER TABLE ONLY audit.audit_logs
+ ADD CONSTRAINT "PK_1bb179d048bbc581caa3b013439" PRIMARY KEY (id);
+
+
+--
+-- Name: audit_log_commands PK_44241458edfa160fe415456abc6; Type: CONSTRAINT; Schema: audit; Owner: -
+--
+
+ALTER TABLE ONLY audit.audit_log_commands
+ ADD CONSTRAINT "PK_44241458edfa160fe415456abc6" PRIMARY KEY (id);
+
+
+--
+-- Name: audit_log_commands REL_12094509e8bc3a6bb091f2f198; Type: CONSTRAINT; Schema: audit; Owner: -
+--
+
+ALTER TABLE ONLY audit.audit_log_commands
+ ADD CONSTRAINT "REL_12094509e8bc3a6bb091f2f198" UNIQUE (parent_id);
+
+
+--
+-- Name: approval_rules PK_048d2ffdf7169337b4cc237d772; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.approval_rules
+ ADD CONSTRAINT "PK_048d2ffdf7169337b4cc237d772" PRIMARY KEY (id);
+
+
+--
+-- Name: company_profiles PK_1980200b310bd1e2ac86aa1ae4a; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.company_profiles
+ ADD CONSTRAINT "PK_1980200b310bd1e2ac86aa1ae4a" PRIMARY KEY (id);
+
+
+--
+-- Name: service_types PK_1dc93417a097cdee3491f39d7cc; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.service_types
+ ADD CONSTRAINT "PK_1dc93417a097cdee3491f39d7cc" PRIMARY KEY (id);
+
+
+--
+-- Name: train_composition_removal_logs PK_29f7cdb5e0ae32ef1b96155fc9a; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_composition_removal_logs
+ ADD CONSTRAINT "PK_29f7cdb5e0ae32ef1b96155fc9a" PRIMARY KEY (id);
+
+
+--
+-- Name: rates PK_2c804ed4019b80ce48eedba5cec; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.rates
+ ADD CONSTRAINT "PK_2c804ed4019b80ce48eedba5cec" PRIMARY KEY (id);
+
+
+--
+-- Name: facilities PK_2e6c685b2e1195e6d6394a22bc7; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.facilities
+ ADD CONSTRAINT "PK_2e6c685b2e1195e6d6394a22bc7" PRIMARY KEY (id);
+
+
+--
+-- Name: warehouse_allocation_rules PK_2e7632f009769d4da579c14f151; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_allocation_rules
+ ADD CONSTRAINT "PK_2e7632f009769d4da579c14f151" PRIMARY KEY (id);
+
+
+--
+-- Name: shipping_lines PK_336306f24563d798ec54eedca0c; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.shipping_lines
+ ADD CONSTRAINT "PK_336306f24563d798ec54eedca0c" PRIMARY KEY (id);
+
+
+--
+-- Name: yards PK_3aa7dacb4c4fb065b1e2f8dfb5a; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.yards
+ ADD CONSTRAINT "PK_3aa7dacb4c4fb065b1e2f8dfb5a" PRIMARY KEY (id);
+
+
+--
+-- Name: container_types PK_50e6b62fcd07ba58bdb6415d47c; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.container_types
+ ADD CONSTRAINT "PK_50e6b62fcd07ba58bdb6415d47c" PRIMARY KEY (id);
+
+
+--
+-- Name: booking_approval_step PK_50ed09b58be25e0afae12eab84e; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.booking_approval_step
+ ADD CONSTRAINT "PK_50ed09b58be25e0afae12eab84e" PRIMARY KEY (id);
+
+
+--
+-- Name: warehouse_fee_invoice_items PK_5b18b21abd179c00b51e43ae162; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_fee_invoice_items
+ ADD CONSTRAINT "PK_5b18b21abd179c00b51e43ae162" PRIMARY KEY (id);
+
+
+--
+-- Name: warehouse_inspection_reports PK_625df1e3a62e5aa4c3f14e7172e; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_inspection_reports
+ ADD CONSTRAINT "PK_625df1e3a62e5aa4c3f14e7172e" PRIMARY KEY (id);
+
+
+--
+-- Name: invoices PK_668cef7c22a427fd822cc1be3ce; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.invoices
+ ADD CONSTRAINT "PK_668cef7c22a427fd822cc1be3ce" PRIMARY KEY (id);
+
+
+--
+-- Name: surcharge_types PK_6a58296dbc7907dfb544cdab63d; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.surcharge_types
+ ADD CONSTRAINT "PK_6a58296dbc7907dfb544cdab63d" PRIMARY KEY (id);
+
+
+--
+-- Name: booking_rate_snapshot PK_8ca5cf692c4c3e95d91a7343117; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.booking_rate_snapshot
+ ADD CONSTRAINT "PK_8ca5cf692c4c3e95d91a7343117" PRIMARY KEY (id);
+
+
+--
+-- Name: warehouse_fee_invoices PK_8cc6cf78a3f76b9aea8462dd043; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_fee_invoices
+ ADD CONSTRAINT "PK_8cc6cf78a3f76b9aea8462dd043" PRIMARY KEY (id);
+
+
+--
+-- Name: priority_rules PK_95c73e8a6e80f29d81edf66dbe2; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.priority_rules
+ ADD CONSTRAINT "PK_95c73e8a6e80f29d81edf66dbe2" PRIMARY KEY (id);
+
+
+--
+-- Name: dropdown_options PK_a95470b99ebda4518fadc234eb1; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.dropdown_options
+ ADD CONSTRAINT "PK_a95470b99ebda4518fadc234eb1" PRIMARY KEY (id);
+
+
+--
+-- Name: consignments PK_ac4a3e322938f3ea03ee389f7c3; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.consignments
+ ADD CONSTRAINT "PK_ac4a3e322938f3ea03ee389f7c3" PRIMARY KEY (id);
+
+
+--
+-- Name: dropdown_settings PK_afbe2676c746420cc4eeb94f869; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.dropdown_settings
+ ADD CONSTRAINT "PK_afbe2676c746420cc4eeb94f869" PRIMARY KEY (id);
+
+
+--
+-- Name: booking_container PK_c1805410bccc51530297b2960ef; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.booking_container
+ ADD CONSTRAINT "PK_c1805410bccc51530297b2960ef" PRIMARY KEY (id);
+
+
+--
+-- Name: tracking_events PK_cc22ae68e05d9ba5a6575a6f429; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.tracking_events
+ ADD CONSTRAINT "PK_cc22ae68e05d9ba5a6575a6f429" PRIMARY KEY (id);
+
+
+--
+-- Name: warehouse_fee_rules PK_d24f444e0cb6841c1b19342e134; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_fee_rules
+ ADD CONSTRAINT "PK_d24f444e0cb6841c1b19342e134" PRIMARY KEY (id);
+
+
+--
+-- Name: companies PK_d4bc3e82a314fa9e29f652c2c22; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.companies
+ ADD CONSTRAINT "PK_d4bc3e82a314fa9e29f652c2c22" PRIMARY KEY (id);
+
+
+--
+-- Name: weight_limit_rules PK_d82c70fa7e878ca301e2aaff709; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.weight_limit_rules
+ ADD CONSTRAINT "PK_d82c70fa7e878ca301e2aaff709" PRIMARY KEY (id);
+
+
+--
+-- Name: booking_cargo_modifier PK_d949ef8f1b862135ad7e4afdbf1; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.booking_cargo_modifier
+ ADD CONSTRAINT "PK_d949ef8f1b862135ad7e4afdbf1" PRIMARY KEY (id);
+
+
+--
+-- Name: cargo_types PK_db1aa5f07b0c5ea996eaea03394; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.cargo_types
+ ADD CONSTRAINT "PK_db1aa5f07b0c5ea996eaea03394" PRIMARY KEY (id);
+
+
+--
+-- Name: ff_clients PK_eb91bf3ee74a361acee369dbda2; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.ff_clients
+ ADD CONSTRAINT "PK_eb91bf3ee74a361acee369dbda2" PRIMARY KEY (id);
+
+
+--
+-- Name: external_profiles PK_f01bade59a434fa68039620ccb9; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.external_profiles
+ ADD CONSTRAINT "PK_f01bade59a434fa68039620ccb9" PRIMARY KEY (id);
+
+
+--
+-- Name: dropdown_settings UQ_06c5d1c8001204fe6b9573132f6; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.dropdown_settings
+ ADD CONSTRAINT "UQ_06c5d1c8001204fe6b9573132f6" UNIQUE (code);
+
+
+--
+-- Name: external_profiles UQ_115e320c6600cc0120d74e6ced0; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.external_profiles
+ ADD CONSTRAINT "UQ_115e320c6600cc0120d74e6ced0" UNIQUE (email);
+
+
+--
+-- Name: container_types UQ_15cbe97e289785db7a2d13af4a4; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.container_types
+ ADD CONSTRAINT "UQ_15cbe97e289785db7a2d13af4a4" UNIQUE (code);
+
+
+--
+-- Name: companies UQ_1b3738f728d42fc9aca8d4ac19b; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.companies
+ ADD CONSTRAINT "UQ_1b3738f728d42fc9aca8d4ac19b" UNIQUE (tin);
+
+
+--
+-- Name: approval_rules UQ_240476178d15f5ed4868f72cf06; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.approval_rules
+ ADD CONSTRAINT "UQ_240476178d15f5ed4868f72cf06" UNIQUE (requires_director_approval, step_order);
+
+
+--
+-- Name: ff_clients UQ_4107fef2abf7128f890ef276244; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.ff_clients
+ ADD CONSTRAINT "UQ_4107fef2abf7128f890ef276244" UNIQUE (forwarder_company_id, client_company_id);
+
+
+--
+-- Name: service_types UQ_46911ede58bb042f55a83c9349d; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.service_types
+ ADD CONSTRAINT "UQ_46911ede58bb042f55a83c9349d" UNIQUE (code);
+
+
+--
+-- Name: company_profiles UQ_539ff8f8225951adb2ef76b0313; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.company_profiles
+ ADD CONSTRAINT "UQ_539ff8f8225951adb2ef76b0313" UNIQUE (reference);
+
+
+--
+-- Name: payment_webhook_events UQ_63e7344cb5035a5d00bc041a733; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.payment_webhook_events
+ ADD CONSTRAINT "UQ_63e7344cb5035a5d00bc041a733" UNIQUE (provider, external_event_id);
+
+
+--
+-- Name: shipping_lines UQ_bcce91e30a66a9269785369947c; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.shipping_lines
+ ADD CONSTRAINT "UQ_bcce91e30a66a9269785369947c" UNIQUE (code);
+
+
+--
+-- Name: facilities UQ_bf808b325b190fb9049254ba55e; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.facilities
+ ADD CONSTRAINT "UQ_bf808b325b190fb9049254ba55e" UNIQUE (code);
+
+
+--
+-- Name: warehouse_fee_invoices UQ_c458af77ff14c0d0ec34597e50c; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_fee_invoices
+ ADD CONSTRAINT "UQ_c458af77ff14c0d0ec34597e50c" UNIQUE (invoice_number);
+
+
+--
+-- Name: consignments UQ_cafe3c0a2a40072be70d5e52e7e; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.consignments
+ ADD CONSTRAINT "UQ_cafe3c0a2a40072be70d5e52e7e" UNIQUE (tracking_number);
+
+
+--
+-- Name: yards UQ_cd431c4029df1cfa2e7a737ce08; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.yards
+ ADD CONSTRAINT "UQ_cd431c4029df1cfa2e7a737ce08" UNIQUE (code);
+
+
+--
+-- Name: trains UQ_d716e059176f5ae8cdd83eb82f9; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.trains
+ ADD CONSTRAINT "UQ_d716e059176f5ae8cdd83eb82f9" UNIQUE (train_number);
+
+
+--
+-- Name: invoices UQ_d8f8d3788694e1b3f96c42c36fb; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.invoices
+ ADD CONSTRAINT "UQ_d8f8d3788694e1b3f96c42c36fb" UNIQUE (invoice_number);
+
+
+--
+-- Name: booking_contract_signatures UQ_dee1d194617c27876022a706c28; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.booking_contract_signatures
+ ADD CONSTRAINT "UQ_dee1d194617c27876022a706c28" UNIQUE (booking_id, signer_role);
+
+
+--
+-- Name: cargo_types UQ_e1fe7fec7506c93b9ec3de63241; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.cargo_types
+ ADD CONSTRAINT "UQ_e1fe7fec7506c93b9ec3de63241" UNIQUE (code);
+
+
+--
+-- Name: file_upload_settings UQ_e48f98a6dc8abb3e79d98a9c125; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.file_upload_settings
+ ADD CONSTRAINT "UQ_e48f98a6dc8abb3e79d98a9c125" UNIQUE (code);
+
+
+--
+-- Name: surcharge_types UQ_f022ee062a9d1703e474a04247a; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.surcharge_types
+ ADD CONSTRAINT "UQ_f022ee062a9d1703e474a04247a" UNIQUE (code);
+
+
+--
+-- Name: booking_contract_signatures booking_contract_signatures_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.booking_contract_signatures
+ ADD CONSTRAINT booking_contract_signatures_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: booking_review_note booking_review_note_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.booking_review_note
+ ADD CONSTRAINT booking_review_note_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: bookings bookings_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.bookings
+ ADD CONSTRAINT bookings_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: bookings bookings_reference_key; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.bookings
+ ADD CONSTRAINT bookings_reference_key UNIQUE (reference);
+
+
+--
+-- Name: cargoes cargoes_cargo_reference_key; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.cargoes
+ ADD CONSTRAINT cargoes_cargo_reference_key UNIQUE (cargo_reference);
+
+
+--
+-- Name: cargoes cargoes_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.cargoes
+ ADD CONSTRAINT cargoes_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: containers containers_container_number_key; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.containers
+ ADD CONSTRAINT containers_container_number_key UNIQUE (container_number);
+
+
+--
+-- Name: containers containers_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.containers
+ ADD CONSTRAINT containers_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: customers customers_email_key; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.customers
+ ADD CONSTRAINT customers_email_key UNIQUE (email);
+
+
+--
+-- Name: customers customers_fan_number_key; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.customers
+ ADD CONSTRAINT customers_fan_number_key UNIQUE (fan_number);
+
+
+--
+-- Name: customers customers_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.customers
+ ADD CONSTRAINT customers_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: customers customers_tin_number_key; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.customers
+ ADD CONSTRAINT customers_tin_number_key UNIQUE (tin_number);
+
+
+--
+-- Name: file_upload_fields file_upload_fields_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.file_upload_fields
+ ADD CONSTRAINT file_upload_fields_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: file_upload_settings file_upload_settings_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.file_upload_settings
+ ADD CONSTRAINT file_upload_settings_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: files files_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.files
+ ADD CONSTRAINT files_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: locomotives locomotives_code_key; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.locomotives
+ ADD CONSTRAINT locomotives_code_key UNIQUE (code);
+
+
+--
+-- Name: locomotives locomotives_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.locomotives
+ ADD CONSTRAINT locomotives_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: payment_refunds pk_payment_refunds; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.payment_refunds
+ ADD CONSTRAINT pk_payment_refunds PRIMARY KEY (id);
+
+
+--
+-- Name: payment_webhook_events pk_payment_webhook_events; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.payment_webhook_events
+ ADD CONSTRAINT pk_payment_webhook_events PRIMARY KEY (id);
+
+
+--
+-- Name: payments pk_payments; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.payments
+ ADD CONSTRAINT pk_payments PRIMARY KEY (id);
+
+
+--
+-- Name: priority_configs priority_configs_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.priority_configs
+ ADD CONSTRAINT priority_configs_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: route_milestones route_milestones_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.route_milestones
+ ADD CONSTRAINT route_milestones_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: routes routes_name_key; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.routes
+ ADD CONSTRAINT routes_name_key UNIQUE (name);
+
+
+--
+-- Name: routes routes_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.routes
+ ADD CONSTRAINT routes_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: saved_signatures saved_signatures_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.saved_signatures
+ ADD CONSTRAINT saved_signatures_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: scheduling_events scheduling_events_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.scheduling_events
+ ADD CONSTRAINT scheduling_events_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: train_checkpoint_events train_checkpoint_events_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_checkpoint_events
+ ADD CONSTRAINT train_checkpoint_events_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: train_schedule_bookings train_schedule_bookings_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_schedule_bookings
+ ADD CONSTRAINT train_schedule_bookings_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: train_schedules train_schedules_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_schedules
+ ADD CONSTRAINT train_schedules_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: train_schedules train_schedules_train_set_id_key; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_schedules
+ ADD CONSTRAINT train_schedules_train_set_id_key UNIQUE (train_set_id);
+
+
+--
+-- Name: train_scheduling_global_rules train_scheduling_global_rules_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_scheduling_global_rules
+ ADD CONSTRAINT train_scheduling_global_rules_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: train_set_wagons train_set_wagons_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_set_wagons
+ ADD CONSTRAINT train_set_wagons_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: train_sets train_sets_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_sets
+ ADD CONSTRAINT train_sets_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: trains trains_code_key; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.trains
+ ADD CONSTRAINT trains_code_key UNIQUE (code);
+
+
+--
+-- Name: trains trains_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.trains
+ ADD CONSTRAINT trains_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: payments uq_payments_merchant_order_id; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.payments
+ ADD CONSTRAINT uq_payments_merchant_order_id UNIQUE (merchant_order_id);
+
+
+--
+-- Name: payments uq_payments_transaction_id; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.payments
+ ADD CONSTRAINT uq_payments_transaction_id UNIQUE (transaction_id);
+
+
+--
+-- Name: warehouse_yards uq_warehouse_yards_code; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_yards
+ ADD CONSTRAINT uq_warehouse_yards_code UNIQUE (warehouse_id, code);
+
+
+--
+-- Name: warehouse_zones uq_warehouse_zones_code; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_zones
+ ADD CONSTRAINT uq_warehouse_zones_code UNIQUE (yard_id, code);
+
+
+--
+-- Name: vehicles vehicles_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.vehicles
+ ADD CONSTRAINT vehicles_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: vehicles vehicles_plate_number_key; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.vehicles
+ ADD CONSTRAINT vehicles_plate_number_key UNIQUE (plate_number);
+
+
+--
+-- Name: vehicles vehicles_registration_number_key; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.vehicles
+ ADD CONSTRAINT vehicles_registration_number_key UNIQUE (registration_number);
+
+
+--
+-- Name: wagon_allocation_bulk_loads wagon_allocation_bulk_loads_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagon_allocation_bulk_loads
+ ADD CONSTRAINT wagon_allocation_bulk_loads_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: wagon_allocation_bulk_loads wagon_allocation_bulk_loads_wagon_booking_allocation_id_key; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagon_allocation_bulk_loads
+ ADD CONSTRAINT wagon_allocation_bulk_loads_wagon_booking_allocation_id_key UNIQUE (wagon_booking_allocation_id);
+
+
+--
+-- Name: wagon_allocation_container_items wagon_allocation_container_items_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagon_allocation_container_items
+ ADD CONSTRAINT wagon_allocation_container_items_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: wagon_booking_allocations wagon_booking_allocations_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagon_booking_allocations
+ ADD CONSTRAINT wagon_booking_allocations_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: wagon_types wagon_types_code_key; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagon_types
+ ADD CONSTRAINT wagon_types_code_key UNIQUE (code);
+
+
+--
+-- Name: wagon_types wagon_types_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagon_types
+ ADD CONSTRAINT wagon_types_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: wagons wagons_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagons
+ ADD CONSTRAINT wagons_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: wagons wagons_wagon_number_key; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagons
+ ADD CONSTRAINT wagons_wagon_number_key UNIQUE (wagon_number);
+
+
+--
+-- Name: warehouse_activity_log warehouse_activity_log_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_activity_log
+ ADD CONSTRAINT warehouse_activity_log_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: warehouse_inventory_movement warehouse_inventory_movement_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_inventory_movement
+ ADD CONSTRAINT warehouse_inventory_movement_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: warehouse_inventory warehouse_inventory_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_inventory
+ ADD CONSTRAINT warehouse_inventory_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: warehouse_loadings warehouse_loadings_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_loadings
+ ADD CONSTRAINT warehouse_loadings_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: warehouse_yards warehouse_yards_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_yards
+ ADD CONSTRAINT warehouse_yards_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: warehouse_zones warehouse_zones_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_zones
+ ADD CONSTRAINT warehouse_zones_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: warehouses warehouses_code_key; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouses
+ ADD CONSTRAINT warehouses_code_key UNIQUE (code);
+
+
+--
+-- Name: warehouses warehouses_pkey; Type: CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouses
+ ADD CONSTRAINT warehouses_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: documentary_requirements PK_0132181449db184e9c2bebdbb0e; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.documentary_requirements
+ ADD CONSTRAINT "PK_0132181449db184e9c2bebdbb0e" PRIMARY KEY (id);
+
+
+--
+-- Name: organization_configurations PK_16b811ada36260e836cc168873d; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.organization_configurations
+ ADD CONSTRAINT "PK_16b811ada36260e836cc168873d" PRIMARY KEY (id);
+
+
+--
+-- Name: positions PK_17e4e62ccd5749b289ae3fae6f3; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.positions
+ ADD CONSTRAINT "PK_17e4e62ccd5749b289ae3fae6f3" PRIMARY KEY (id);
+
+
+--
+-- Name: account_configurations PK_1917625ed968628a7c1a80df681; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.account_configurations
+ ADD CONSTRAINT "PK_1917625ed968628a7c1a80df681" PRIMARY KEY (id);
+
+
+--
+-- Name: seals PK_1deb9b3472b2f3b2b41173a2cad; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.seals
+ ADD CONSTRAINT "PK_1deb9b3472b2f3b2b41173a2cad" PRIMARY KEY (id);
+
+
+--
+-- Name: organization_types PK_1e086602db2811aa43bfd5ff149; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.organization_types
+ ADD CONSTRAINT "PK_1e086602db2811aa43bfd5ff149" PRIMARY KEY (id);
+
+
+--
+-- Name: default_positions PK_23f92c0ae6f70a3568f68af92bc; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.default_positions
+ ADD CONSTRAINT "PK_23f92c0ae6f70a3568f68af92bc" PRIMARY KEY (id);
+
+
+--
+-- Name: employee_project PK_25639ba1dad5b99d660d557a8ca; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.employee_project
+ ADD CONSTRAINT "PK_25639ba1dad5b99d660d557a8ca" PRIMARY KEY (id);
+
+
+--
+-- Name: footers PK_303ae395bd278e349e12e6fb86c; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.footers
+ ADD CONSTRAINT "PK_303ae395bd278e349e12e6fb86c" PRIMARY KEY (id);
+
+
+--
+-- Name: sessions PK_3238ef96f18b355b671619111bc; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.sessions
+ ADD CONSTRAINT "PK_3238ef96f18b355b671619111bc" PRIMARY KEY (id);
+
+
+--
+-- Name: user_verifications PK_3269a92433d028916ab342b94fb; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.user_verifications
+ ADD CONSTRAINT "PK_3269a92433d028916ab342b94fb" PRIMARY KEY (id);
+
+
+--
+-- Name: headers PK_33a1a4f4fc672e41bdad5e217aa; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.headers
+ ADD CONSTRAINT "PK_33a1a4f4fc672e41bdad5e217aa" PRIMARY KEY (id);
+
+
+--
+-- Name: application PK_569e0c3e863ebdf5f2408ee1670; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.application
+ ADD CONSTRAINT "PK_569e0c3e863ebdf5f2408ee1670" PRIMARY KEY (id);
+
+
+--
+-- Name: units PK_5a8f2f064919b587d93936cb223; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.units
+ ADD CONSTRAINT "PK_5a8f2f064919b587d93936cb223" PRIMARY KEY (id);
+
+
+--
+-- Name: user_credentials PK_5cadc04d03e2d9fe76e1b44eb34; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.user_credentials
+ ADD CONSTRAINT "PK_5cadc04d03e2d9fe76e1b44eb34" PRIMARY KEY (id);
+
+
+--
+-- Name: projects PK_6271df0a7aed1d6c0691ce6ac50; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.projects
+ ADD CONSTRAINT "PK_6271df0a7aed1d6c0691ce6ac50" PRIMARY KEY (id);
+
+
+--
+-- Name: notifications PK_6a72c3c0f683f6462415e653c3a; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.notifications
+ ADD CONSTRAINT "PK_6a72c3c0f683f6462415e653c3a" PRIMARY KEY (id);
+
+
+--
+-- Name: organizations PK_6b031fcd0863e3f6b44230163f9; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.organizations
+ ADD CONSTRAINT "PK_6b031fcd0863e3f6b44230163f9" PRIMARY KEY (id);
+
+
+--
+-- Name: position_type_configuration PK_6e2ff6a5b1512a7ae589bd57fd9; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.position_type_configuration
+ ADD CONSTRAINT "PK_6e2ff6a5b1512a7ae589bd57fd9" PRIMARY KEY (id);
+
+
+--
+-- Name: employee_stamps PK_7447623e3983d908a8fa0bc3446; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.employee_stamps
+ ADD CONSTRAINT "PK_7447623e3983d908a8fa0bc3446" PRIMARY KEY (id);
+
+
+--
+-- Name: role_permissions PK_84059017c90bfcb701b8fa42297; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.role_permissions
+ ADD CONSTRAINT "PK_84059017c90bfcb701b8fa42297" PRIMARY KEY (id);
+
+
+--
+-- Name: employee_positions PK_8544f049d46ad635c8cb2b9fc0c; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.employee_positions
+ ADD CONSTRAINT "PK_8544f049d46ad635c8cb2b9fc0c" PRIMARY KEY (id);
+
+
+--
+-- Name: user_roles PK_8acd5cf26ebd158416f477de799; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.user_roles
+ ADD CONSTRAINT "PK_8acd5cf26ebd158416f477de799" PRIMARY KEY (id);
+
+
+--
+-- Name: permissions PK_920331560282b8bd21bb02290df; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.permissions
+ ADD CONSTRAINT "PK_920331560282b8bd21bb02290df" PRIMARY KEY (id);
+
+
+--
+-- Name: users PK_a3ffb1c0c8416b9fc6f907b7433; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.users
+ ADD CONSTRAINT "PK_a3ffb1c0c8416b9fc6f907b7433" PRIMARY KEY (id);
+
+
+--
+-- Name: organization_global_configurations PK_a7e9fd2a8c4d60223651f55e7a7; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.organization_global_configurations
+ ADD CONSTRAINT "PK_a7e9fd2a8c4d60223651f55e7a7" PRIMARY KEY (id);
+
+
+--
+-- Name: default_units PK_b46dc388a538dced049a3a33e73; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.default_units
+ ADD CONSTRAINT "PK_b46dc388a538dced049a3a33e73" PRIMARY KEY (id);
+
+
+--
+-- Name: employees PK_b9535a98350d5b26e7eb0c26af4; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.employees
+ ADD CONSTRAINT "PK_b9535a98350d5b26e7eb0c26af4" PRIMARY KEY (id);
+
+
+--
+-- Name: roles PK_c1433d71a4838793a49dcad46ab; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.roles
+ ADD CONSTRAINT "PK_c1433d71a4838793a49dcad46ab" PRIMARY KEY (id);
+
+
+--
+-- Name: position_permissions PK_c5f0eafd8bd82887537a19171c5; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.position_permissions
+ ADD CONSTRAINT "PK_c5f0eafd8bd82887537a19171c5" PRIMARY KEY (id);
+
+
+--
+-- Name: position_configurations PK_c5f1dafeae87ba8ed5341c8771a; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.position_configurations
+ ADD CONSTRAINT "PK_c5f1dafeae87ba8ed5341c8771a" PRIMARY KEY (id);
+
+
+--
+-- Name: user_documents PK_cea43819156528b63504c4afd4b; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.user_documents
+ ADD CONSTRAINT "PK_cea43819156528b63504c4afd4b" PRIMARY KEY (id);
+
+
+--
+-- Name: unit_global_configurations PK_d056b53c47e85bb697b8d9a242a; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.unit_global_configurations
+ ADD CONSTRAINT "PK_d056b53c47e85bb697b8d9a242a" PRIMARY KEY (id);
+
+
+--
+-- Name: position_type_permissions PK_d0a20813e601ca5c9c89e3606e4; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.position_type_permissions
+ ADD CONSTRAINT "PK_d0a20813e601ca5c9c89e3606e4" PRIMARY KEY (id);
+
+
+--
+-- Name: employee_signatures PK_e3b5e0e0ff574ebbcb6e7313cb6; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.employee_signatures
+ ADD CONSTRAINT "PK_e3b5e0e0ff574ebbcb6e7313cb6" PRIMARY KEY (id);
+
+
+--
+-- Name: organization_seals PK_e3c48a07ff7575c2aecb1149158; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.organization_seals
+ ADD CONSTRAINT "PK_e3c48a07ff7575c2aecb1149158" PRIMARY KEY (id);
+
+
+--
+-- Name: position_types PK_ed3668ff784994d5bd837b4d88d; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.position_types
+ ADD CONSTRAINT "PK_ed3668ff784994d5bd837b4d88d" PRIMARY KEY (id);
+
+
+--
+-- Name: location_types PK_location_types_id; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.location_types
+ ADD CONSTRAINT "PK_location_types_id" PRIMARY KEY (id);
+
+
+--
+-- Name: locations PK_locations_id; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.locations
+ ADD CONSTRAINT "PK_locations_id" PRIMARY KEY (id);
+
+
+--
+-- Name: organization_settings PK_organization_settings_id; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.organization_settings
+ ADD CONSTRAINT "PK_organization_settings_id" PRIMARY KEY (id);
+
+
+--
+-- Name: unit_clusters PK_unit_clusters_id; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.unit_clusters
+ ADD CONSTRAINT "PK_unit_clusters_id" PRIMARY KEY (id);
+
+
+--
+-- Name: unit_settings PK_unit_settings_id; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.unit_settings
+ ADD CONSTRAINT "PK_unit_settings_id" PRIMARY KEY (id);
+
+
+--
+-- Name: position_configurations REL_2843307d02d670d0dcf14d2b28; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.position_configurations
+ ADD CONSTRAINT "REL_2843307d02d670d0dcf14d2b28" UNIQUE (position_id);
+
+
+--
+-- Name: organization_global_configurations REL_80e606e32f71ba8f8ba0ceb3d7; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.organization_global_configurations
+ ADD CONSTRAINT "REL_80e606e32f71ba8f8ba0ceb3d7" UNIQUE (organization_id);
+
+
+--
+-- Name: account_configurations REL_c9114d71b4447126c0fcc86827; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.account_configurations
+ ADD CONSTRAINT "REL_c9114d71b4447126c0fcc86827" UNIQUE (user_id);
+
+
+--
+-- Name: unit_global_configurations REL_f803c0236bb87e46e5c78be9d3; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.unit_global_configurations
+ ADD CONSTRAINT "REL_f803c0236bb87e46e5c78be9d3" UNIQUE (unit_id);
+
+
+--
+-- Name: permissions UQ_017943867ed5ceef9c03edd9745; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.permissions
+ ADD CONSTRAINT "UQ_017943867ed5ceef9c03edd9745" UNIQUE (key);
+
+
+--
+-- Name: default_positions UQ_06247c59ab36b020356145e0596; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.default_positions
+ ADD CONSTRAINT "UQ_06247c59ab36b020356145e0596" UNIQUE (key, default_unit_id);
+
+
+--
+-- Name: default_units UQ_11bcab4ba2d7405b8fc9fef9dd4; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.default_units
+ ADD CONSTRAINT "UQ_11bcab4ba2d7405b8fc9fef9dd4" UNIQUE (key, organization_type_id);
+
+
+--
+-- Name: position_types UQ_145bdba832a76240b15474c8c28; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.position_types
+ ADD CONSTRAINT "UQ_145bdba832a76240b15474c8c28" UNIQUE (key);
+
+
+--
+-- Name: users UQ_17d1817f241f10a3dbafb169fd2; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.users
+ ADD CONSTRAINT "UQ_17d1817f241f10a3dbafb169fd2" UNIQUE (phone_number);
+
+
+--
+-- Name: user_roles UQ_23ed6f04fe43066df08379fd034; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.user_roles
+ ADD CONSTRAINT "UQ_23ed6f04fe43066df08379fd034" UNIQUE (user_id, role_id);
+
+
+--
+-- Name: role_permissions UQ_25d24010f53bb80b78e412c9656; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.role_permissions
+ ADD CONSTRAINT "UQ_25d24010f53bb80b78e412c9656" UNIQUE (role_id, permission_id);
+
+
+--
+-- Name: organization_configurations UQ_2af16739d2f7f4d81ce555f0864; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.organization_configurations
+ ADD CONSTRAINT "UQ_2af16739d2f7f4d81ce555f0864" UNIQUE (organization_id);
+
+
+--
+-- Name: projects UQ_2bf5b294eb0ae6f4d6a59da72cd; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.projects
+ ADD CONSTRAINT "UQ_2bf5b294eb0ae6f4d6a59da72cd" UNIQUE (key, unit_id);
+
+
+--
+-- Name: position_type_permissions UQ_330f1e52f2938d60606b93e3456; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.position_type_permissions
+ ADD CONSTRAINT "UQ_330f1e52f2938d60606b93e3456" UNIQUE (position_type_id, permission_id);
+
+
+--
+-- Name: organization_types UQ_5247a7e18427040848f5024a27c; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.organization_types
+ ADD CONSTRAINT "UQ_5247a7e18427040848f5024a27c" UNIQUE (key);
+
+
+--
+-- Name: application UQ_5599827f1c826ab46034cba2af0; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.application
+ ADD CONSTRAINT "UQ_5599827f1c826ab46034cba2af0" UNIQUE (key);
+
+
+--
+-- Name: position_permissions UQ_87ee8f7eef7366389a02ff69f04; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.position_permissions
+ ADD CONSTRAINT "UQ_87ee8f7eef7366389a02ff69f04" UNIQUE (position_id, permission_id);
+
+
+--
+-- Name: users UQ_97672ac88f789774dd47f7c8be3; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.users
+ ADD CONSTRAINT "UQ_97672ac88f789774dd47f7c8be3" UNIQUE (email);
+
+
+--
+-- Name: users UQ_a7ebb67e0fe3f97faa6734dc8b2; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.users
+ ADD CONSTRAINT "UQ_a7ebb67e0fe3f97faa6734dc8b2" UNIQUE ("licenseNo");
+
+
+--
+-- Name: roles UQ_a87cf0659c3ac379b339acf36a2; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.roles
+ ADD CONSTRAINT "UQ_a87cf0659c3ac379b339acf36a2" UNIQUE (key);
+
+
+--
+-- Name: units UQ_b4519c52638fb736db972a9b518; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.units
+ ADD CONSTRAINT "UQ_b4519c52638fb736db972a9b518" UNIQUE (key, organization_id);
+
+
+--
+-- Name: position_type_configuration UQ_bab9de5f76de34553a4a800b5aa; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.position_type_configuration
+ ADD CONSTRAINT "UQ_bab9de5f76de34553a4a800b5aa" UNIQUE (organization_id, position_type_id, timeframe);
+
+
+--
+-- Name: documentary_requirements UQ_cbace32686d13674b9d4c244d97; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.documentary_requirements
+ ADD CONSTRAINT "UQ_cbace32686d13674b9d4c244d97" UNIQUE (key);
+
+
+--
+-- Name: organizations UQ_db220d7cec719da00ac553fbb7d; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.organizations
+ ADD CONSTRAINT "UQ_db220d7cec719da00ac553fbb7d" UNIQUE (key);
+
+
+--
+-- Name: users UQ_db4df070ce3fe3ffa6f43704b40; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.users
+ ADD CONSTRAINT "UQ_db4df070ce3fe3ffa6f43704b40" UNIQUE (sharepoint_id);
+
+
+--
+-- Name: sessions UQ_dd25cf00581d5f1ceaa8a8efbf6; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.sessions
+ ADD CONSTRAINT "UQ_dd25cf00581d5f1ceaa8a8efbf6" UNIQUE (user_id, device);
+
+
+--
+-- Name: positions UQ_ee46f44eda7967e969bd17fee78; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.positions
+ ADD CONSTRAINT "UQ_ee46f44eda7967e969bd17fee78" UNIQUE (key, unit_id);
+
+
+--
+-- Name: users UQ_fe0bb3f6520ee0469504521e710; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.users
+ ADD CONSTRAINT "UQ_fe0bb3f6520ee0469504521e710" UNIQUE (username);
+
+
+--
+-- Name: location_types UQ_location_types_code; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.location_types
+ ADD CONSTRAINT "UQ_location_types_code" UNIQUE (code);
+
+
+--
+-- Name: locations UQ_locations_code; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.locations
+ ADD CONSTRAINT "UQ_locations_code" UNIQUE (code);
+
+
+--
+-- Name: unit_clusters UQ_unit_clusters_unit_id_location_id; Type: CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.unit_clusters
+ ADD CONSTRAINT "UQ_unit_clusters_unit_id_location_id" UNIQUE (unit_id, location_id);
+
+
+--
+-- Name: customers PK_133ec679a801fab5e070f73d3ea; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.customers
+ ADD CONSTRAINT "PK_133ec679a801fab5e070f73d3ea" PRIMARY KEY (id);
+
+
+--
+-- Name: invoices PK_668cef7c22a427fd822cc1be3ce; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.invoices
+ ADD CONSTRAINT "PK_668cef7c22a427fd822cc1be3ce" PRIMARY KEY (id);
+
+
+--
+-- Name: migrations PK_8c82d7f526340ab734260ea46be; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.migrations
+ ADD CONSTRAINT "PK_8c82d7f526340ab734260ea46be" PRIMARY KEY (id);
+
+
+--
+-- Name: otp_verifications PK_91d17e75ac3182dba6701869b39; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.otp_verifications
+ ADD CONSTRAINT "PK_91d17e75ac3182dba6701869b39" PRIMARY KEY (id);
+
+
+--
+-- Name: consignments PK_ac4a3e322938f3ea03ee389f7c3; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.consignments
+ ADD CONSTRAINT "PK_ac4a3e322938f3ea03ee389f7c3" PRIMARY KEY (id);
+
+
+--
+-- Name: bookings PK_bee6805982cc1e248e94ce94957; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.bookings
+ ADD CONSTRAINT "PK_bee6805982cc1e248e94ce94957" PRIMARY KEY (id);
+
+
+--
+-- Name: tracking_events PK_cc22ae68e05d9ba5a6575a6f429; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.tracking_events
+ ADD CONSTRAINT "PK_cc22ae68e05d9ba5a6575a6f429" PRIMARY KEY (id);
+
+
+--
+-- Name: trains PK_e4a77c477e29608e7d17d17fb4f; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.trains
+ ADD CONSTRAINT "PK_e4a77c477e29608e7d17d17fb4f" PRIMARY KEY (id);
+
+
+--
+-- Name: otp_verifications UQ_5121c67380278afb68a84537266; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.otp_verifications
+ ADD CONSTRAINT "UQ_5121c67380278afb68a84537266" UNIQUE (phone);
+
+
+--
+-- Name: customers UQ_8536b8b85c06969f84f0c098b03; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.customers
+ ADD CONSTRAINT "UQ_8536b8b85c06969f84f0c098b03" UNIQUE (email);
+
+
+--
+-- Name: consignments UQ_cafe3c0a2a40072be70d5e52e7e; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.consignments
+ ADD CONSTRAINT "UQ_cafe3c0a2a40072be70d5e52e7e" UNIQUE (tracking_number);
+
+
+--
+-- Name: bookings UQ_d7eca65f0a4d442ec4491f2f804; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.bookings
+ ADD CONSTRAINT "UQ_d7eca65f0a4d442ec4491f2f804" UNIQUE (reference);
+
+
+--
+-- Name: invoices UQ_d8f8d3788694e1b3f96c42c36fb; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.invoices
+ ADD CONSTRAINT "UQ_d8f8d3788694e1b3f96c42c36fb" UNIQUE (invoice_number);
+
+
+--
+-- Name: trains UQ_e4c42eb20dd3cc3681d294033e6; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.trains
+ ADD CONSTRAINT "UQ_e4c42eb20dd3cc3681d294033e6" UNIQUE (code);
+
+
+--
+-- Name: IDX_002836f4ec8e83a259e75ee450; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_002836f4ec8e83a259e75ee450" ON freight.priority_configs USING btree (currency, type);
+
+
+--
+-- Name: IDX_058cf889314df20693d60e042d; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE UNIQUE INDEX "IDX_058cf889314df20693d60e042d" ON freight.train_schedule_bookings USING btree (booking_id);
+
+
+--
+-- Name: IDX_06c5d1c8001204fe6b9573132f; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE UNIQUE INDEX "IDX_06c5d1c8001204fe6b9573132f" ON freight.dropdown_settings USING btree (code);
+
+
+--
+-- Name: IDX_08839833780647a693843c4a7d; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_08839833780647a693843c4a7d" ON freight.booking_review_note USING btree (booking_id);
+
+
+--
+-- Name: IDX_09ed96fc036fdc560de7d034fb; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_09ed96fc036fdc560de7d034fb" ON freight.booking_rate_snapshot USING btree (rate_type);
+
+
+--
+-- Name: IDX_1101fbe8e745d91b6bd0747b58; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_1101fbe8e745d91b6bd0747b58" ON freight.ff_clients USING btree (forwarder_company_id);
+
+
+--
+-- Name: IDX_15cbe97e289785db7a2d13af4a; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_15cbe97e289785db7a2d13af4a" ON freight.container_types USING btree (code);
+
+
+--
+-- Name: IDX_18a884d20df2f14795fc392212; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_18a884d20df2f14795fc392212" ON freight.locomotives USING btree (code);
+
+
+--
+-- Name: IDX_198957f5c5a1fa53aeaf2a0838; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_198957f5c5a1fa53aeaf2a0838" ON freight.vehicles USING btree (status);
+
+
+--
+-- Name: IDX_199b1ae7371ca7f615218af185; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_199b1ae7371ca7f615218af185" ON freight.locomotives USING btree (status);
+
+
+--
+-- Name: IDX_1b3738f728d42fc9aca8d4ac19; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_1b3738f728d42fc9aca8d4ac19" ON freight.companies USING btree (tin);
+
+
+--
+-- Name: IDX_1c06ee6b2a818319f29934fd6a; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_1c06ee6b2a818319f29934fd6a" ON freight.routes USING btree (name);
+
+
+--
+-- Name: IDX_1e57cd6c6afae8f303847f159d; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_1e57cd6c6afae8f303847f159d" ON freight.companies USING btree (type);
+
+
+--
+-- Name: IDX_212af3cb5b069a32bc6bcb674e; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE UNIQUE INDEX "IDX_212af3cb5b069a32bc6bcb674e" ON freight.file_upload_fields USING btree (setting_id, file_key);
+
+
+--
+-- Name: IDX_25b2f46272b15f6fdc5a9b7797; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_25b2f46272b15f6fdc5a9b7797" ON freight.booking_container USING btree (is_overweight);
+
+
+--
+-- Name: IDX_26d2a16e263ab4fe0a4c8e9195; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_26d2a16e263ab4fe0a4c8e9195" ON freight.external_profiles USING btree (company_id);
+
+
+--
+-- Name: IDX_2946b89911c9ffaac1334773a0; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_2946b89911c9ffaac1334773a0" ON freight.wagon_allocation_bulk_loads USING btree (booking_id);
+
+
+--
+-- Name: IDX_2abf18fae2b9477bc192767531; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_2abf18fae2b9477bc192767531" ON freight.vehicles USING btree (registration_number);
+
+
+--
+-- Name: IDX_30228dd283a0f14486346e1db9; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_30228dd283a0f14486346e1db9" ON freight.company_profiles USING btree (company_id);
+
+
+--
+-- Name: IDX_30d9ff219a6e2688ec8ed02459; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_30d9ff219a6e2688ec8ed02459" ON freight.customers USING btree (tin_number);
+
+
+--
+-- Name: IDX_36dd2556b133e0033e4fbb02d9; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE UNIQUE INDEX "IDX_36dd2556b133e0033e4fbb02d9" ON freight.train_schedule_bookings USING btree (train_schedule_id, booking_id);
+
+
+--
+-- Name: IDX_3fa8d0c633cd0207cc59de74be; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_3fa8d0c633cd0207cc59de74be" ON freight.train_checkpoint_events USING btree (train_schedule_id, sequence_no);
+
+
+--
+-- Name: IDX_4168f0c5e50663e11a9c05db16; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_4168f0c5e50663e11a9c05db16" ON freight.rates USING btree (status);
+
+
+--
+-- Name: IDX_46911ede58bb042f55a83c9349; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_46911ede58bb042f55a83c9349" ON freight.service_types USING btree (code);
+
+
+--
+-- Name: IDX_4dc82395de5723d6e0b8cd2638; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_4dc82395de5723d6e0b8cd2638" ON freight.surcharge_types USING btree (is_active);
+
+
+--
+-- Name: IDX_4f779c1b85bc78cb1ba4fa6b50; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_4f779c1b85bc78cb1ba4fa6b50" ON freight.cargo_types USING btree (parent_group_id);
+
+
+--
+-- Name: IDX_514743f33b75daf1d564c80581; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_514743f33b75daf1d564c80581" ON freight.train_sets USING btree (locomotive_id);
+
+
+--
+-- Name: IDX_55d7cada90c98cf46e67c22a82; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_55d7cada90c98cf46e67c22a82" ON freight.cargo_types USING btree (is_active);
+
+
+--
+-- Name: IDX_5c6807c87b42b3d6e5de5ec45a; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_5c6807c87b42b3d6e5de5ec45a" ON freight.booking_contract_signatures USING btree (booking_id);
+
+
+--
+-- Name: IDX_5df5c8dac892512a715a852025; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_5df5c8dac892512a715a852025" ON freight.rates USING btree (effective_from);
+
+
+--
+-- Name: IDX_5fb1153839c7295de9682caee5; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_5fb1153839c7295de9682caee5" ON freight.booking_approval_step USING btree (booking_id, step_order);
+
+
+--
+-- Name: IDX_602ad2542188e677b8b42bb828; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_602ad2542188e677b8b42bb828" ON freight.vehicles USING btree (vehicle_type);
+
+
+--
+-- Name: IDX_62e7bb07c6b92e04ca26c77f0e; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_62e7bb07c6b92e04ca26c77f0e" ON freight.wagon_types USING btree (code);
+
+
+--
+-- Name: IDX_647dcd34bb1eb8a85f7d941e45; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_647dcd34bb1eb8a85f7d941e45" ON freight.weight_limit_rules USING btree (container_type_id);
+
+
+--
+-- Name: IDX_687dda9d133fe6fcc94f96907b; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE UNIQUE INDEX "IDX_687dda9d133fe6fcc94f96907b" ON freight.route_milestones USING btree (route_id, sequence_no);
+
+
+--
+-- Name: IDX_6b100520a40e3939b63fe0bc9d; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_6b100520a40e3939b63fe0bc9d" ON freight.cargo_types USING btree (display_order);
+
+
+--
+-- Name: IDX_6dade0e493446e8b59925e92a7; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_6dade0e493446e8b59925e92a7" ON freight.train_checkpoint_events USING btree (train_schedule_id);
+
+
+--
+-- Name: IDX_715346e6de39a838e9a824d5b6; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_715346e6de39a838e9a824d5b6" ON freight.locomotives USING btree (current_yard_id);
+
+
+--
+-- Name: IDX_74022dc735e8f0bfc1a5d2d4af; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_74022dc735e8f0bfc1a5d2d4af" ON freight.booking_cargo_modifier USING btree (booking_id);
+
+
+--
+-- Name: IDX_754a6622c07b6543ca41ff53e0; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_754a6622c07b6543ca41ff53e0" ON freight.wagon_allocation_container_items USING btree (wagon_booking_allocation_id);
+
+
+--
+-- Name: IDX_790e02960960caa83f48e1e9f4; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_790e02960960caa83f48e1e9f4" ON freight.booking_rate_snapshot USING btree (rate_id);
+
+
+--
+-- Name: IDX_7bb82f8034d7f60cc7309a8e1c; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_7bb82f8034d7f60cc7309a8e1c" ON freight.scheduling_events USING btree (train_schedule_id);
+
+
+--
+-- Name: IDX_80bb695b7424283844654eae4d; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_80bb695b7424283844654eae4d" ON freight.train_schedules USING btree (scheduled_departure_date);
+
+
+--
+-- Name: IDX_8536b8b85c06969f84f0c098b0; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_8536b8b85c06969f84f0c098b0" ON freight.customers USING btree (email);
+
+
+--
+-- Name: IDX_853ae2ccb8758e0a9e707c9a2e; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_853ae2ccb8758e0a9e707c9a2e" ON freight.payment_webhook_events USING btree (merchant_order_id);
+
+
+--
+-- Name: IDX_854ffb60c843384a21a42a8de9; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_854ffb60c843384a21a42a8de9" ON freight.container_types USING btree (is_active);
+
+
+--
+-- Name: IDX_8560bd184e9a89e3978f58c35e; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE UNIQUE INDEX "IDX_8560bd184e9a89e3978f58c35e" ON freight.saved_signatures USING btree (user_id);
+
+
+--
+-- Name: IDX_86c25155809c8e61793cc6afb3; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_86c25155809c8e61793cc6afb3" ON freight.wagon_types USING btree (is_active);
+
+
+--
+-- Name: IDX_87b4b4f1ed6b0121cbb091cf63; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_87b4b4f1ed6b0121cbb091cf63" ON freight.priority_configs USING btree (type, is_active);
+
+
+--
+-- Name: IDX_8ab9fa22067dbc99d7c236ad84; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_8ab9fa22067dbc99d7c236ad84" ON freight.approval_rules USING btree (step_order);
+
+
+--
+-- Name: IDX_8c9b92aefb529f8e61e63fe7e4; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_8c9b92aefb529f8e61e63fe7e4" ON freight.booking_cargo_modifier USING btree (surcharge_type_id);
+
+
+--
+-- Name: IDX_91946ca51ff65658f487eae116; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_91946ca51ff65658f487eae116" ON freight.booking_container USING btree (booking_id);
+
+
+--
+-- Name: IDX_9487f16e47b255bcbb513a4e7f; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE UNIQUE INDEX "IDX_9487f16e47b255bcbb513a4e7f" ON freight.train_set_wagons USING btree (train_set_id, sequence_no);
+
+
+--
+-- Name: IDX_9c8e34c0b8942c6d0d5e1d5501; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_9c8e34c0b8942c6d0d5e1d5501" ON freight.yards USING btree (country);
+
+
+--
+-- Name: IDX_a2cdb88780d598756b00cf294e; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_a2cdb88780d598756b00cf294e" ON freight.approval_rules USING btree (requires_director_approval);
+
+
+--
+-- Name: IDX_a48e3df6f92a8dc6116a7f6a21; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_a48e3df6f92a8dc6116a7f6a21" ON freight.booking_rate_snapshot USING btree (booking_id);
+
+
+--
+-- Name: IDX_a7eeeb4b551b2629dd9ee96413; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_a7eeeb4b551b2629dd9ee96413" ON freight.vehicles USING btree (plate_number);
+
+
+--
+-- Name: IDX_ae7681e95e1d4e0ab4631829a4; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_ae7681e95e1d4e0ab4631829a4" ON freight.service_types USING btree (is_active);
+
+
+--
+-- Name: IDX_af1e04b20b7c78e8d747061831; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_af1e04b20b7c78e8d747061831" ON freight.weight_limit_rules USING btree (effective_from);
+
+
+--
+-- Name: IDX_af4d6bac2844d39095b2056e97; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_af4d6bac2844d39095b2056e97" ON freight.ff_clients USING btree (client_company_id);
+
+
+--
+-- Name: IDX_b658cd8f6876645a05c0366a56; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_b658cd8f6876645a05c0366a56" ON freight.external_profiles USING btree (user_id);
+
+
+--
+-- Name: IDX_b6ce5459351171db53cdb88f8c; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_b6ce5459351171db53cdb88f8c" ON freight.booking_approval_step USING btree (booking_id);
+
+
+--
+-- Name: IDX_bcce91e30a66a9269785369947; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_bcce91e30a66a9269785369947" ON freight.shipping_lines USING btree (code);
+
+
+--
+-- Name: IDX_c0a68127ec565b0fd62c778d09; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_c0a68127ec565b0fd62c778d09" ON freight.train_sets USING btree (status);
+
+
+--
+-- Name: IDX_c2eb7fc3cd51f9f71d91bbdc67; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_c2eb7fc3cd51f9f71d91bbdc67" ON freight.surcharge_types USING btree (rate_id);
+
+
+--
+-- Name: IDX_c621631980d6f1e940a215512a; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_c621631980d6f1e940a215512a" ON freight.weight_limit_rules USING btree (trade_direction);
+
+
+--
+-- Name: IDX_c9c5b65262f3bf97ee5da6eba5; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_c9c5b65262f3bf97ee5da6eba5" ON freight.train_schedules USING btree (status);
+
+
+--
+-- Name: IDX_cd431c4029df1cfa2e7a737ce0; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_cd431c4029df1cfa2e7a737ce0" ON freight.yards USING btree (code);
+
+
+--
+-- Name: IDX_d417ead0ab2489eb0db7e2b51a; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_d417ead0ab2489eb0db7e2b51a" ON freight.customers USING btree (fan_number);
+
+
+--
+-- Name: IDX_d5d7f23b748c197a443c1bca10; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE UNIQUE INDEX "IDX_d5d7f23b748c197a443c1bca10" ON freight.dropdown_options USING btree (setting_id, value);
+
+
+--
+-- Name: IDX_d77cf408a70bc592122cf4cf5b; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_d77cf408a70bc592122cf4cf5b" ON freight.wagon_booking_allocations USING btree (train_set_wagon_id, booking_id);
+
+
+--
+-- Name: IDX_dc5620083e42c6ca638f6676ae; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_dc5620083e42c6ca638f6676ae" ON freight.service_types USING btree (display_order);
+
+
+--
+-- Name: IDX_dc808839c3d64c763cc7f6ff68; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_dc808839c3d64c763cc7f6ff68" ON freight.company_profiles USING btree (type);
+
+
+--
+-- Name: IDX_deb3547530a76dc27964abda12; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_deb3547530a76dc27964abda12" ON freight.booking_approval_step USING btree (status);
+
+
+--
+-- Name: IDX_df2e1150f8f9153ee39bdbe1b2; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_df2e1150f8f9153ee39bdbe1b2" ON freight.rates USING btree (container_type_id);
+
+
+--
+-- Name: IDX_e1fe7fec7506c93b9ec3de6324; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_e1fe7fec7506c93b9ec3de6324" ON freight.cargo_types USING btree (code);
+
+
+--
+-- Name: IDX_e48f98a6dc8abb3e79d98a9c12; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE UNIQUE INDEX "IDX_e48f98a6dc8abb3e79d98a9c12" ON freight.file_upload_settings USING btree (code);
+
+
+--
+-- Name: IDX_e669a91069a3aa982b2c99c256; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_e669a91069a3aa982b2c99c256" ON freight.train_composition_removal_logs USING btree (schedule_id);
+
+
+--
+-- Name: IDX_e696543077b339a905fe829e78; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_e696543077b339a905fe829e78" ON freight.yards USING btree (is_active);
+
+
+--
+-- Name: IDX_eff3a78475f13ab80637f7af5a; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_eff3a78475f13ab80637f7af5a" ON freight.vehicles USING btree (manufacturer);
+
+
+--
+-- Name: IDX_f0029307193b6f659899c0a97c; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_f0029307193b6f659899c0a97c" ON freight.shipping_lines USING btree (is_active);
+
+
+--
+-- Name: IDX_f022ee062a9d1703e474a04247; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_f022ee062a9d1703e474a04247" ON freight.surcharge_types USING btree (code);
+
+
+--
+-- Name: IDX_f47e5cc3a98f5ee20f83325a96; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_f47e5cc3a98f5ee20f83325a96" ON freight.wagons USING btree (current_yard_id);
+
+
+--
+-- Name: IDX_f7cc8bfeac808325579733811a; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_f7cc8bfeac808325579733811a" ON freight.rates USING btree (rate_type);
+
+
+--
+-- Name: IDX_f814c03c357fd4509ffd81640d; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_f814c03c357fd4509ffd81640d" ON freight.routes USING btree (is_active);
+
+
+--
+-- Name: IDX_priority_rules_is_active; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_priority_rules_is_active" ON freight.priority_rules USING btree (is_active);
+
+
+--
+-- Name: IDX_wagons_current_location_yard_id; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX "IDX_wagons_current_location_yard_id" ON freight.wagons USING btree (current_location_yard_id);
+
+
+--
+-- Name: UQ_priority_rules_code; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE UNIQUE INDEX "UQ_priority_rules_code" ON freight.priority_rules USING btree (code);
+
+
+--
+-- Name: idx_bookings_route_day; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_bookings_route_day ON freight.bookings USING btree (origin_yard_id, destination_yard_id, scheduled_date, status) WHERE (deleted_at IS NULL);
+
+
+--
+-- Name: idx_facilities_code; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE UNIQUE INDEX idx_facilities_code ON freight.facilities USING btree (code);
+
+
+--
+-- Name: idx_facilities_status; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_facilities_status ON freight.facilities USING btree (facility_status);
+
+
+--
+-- Name: idx_train_set_wagons_physical_wagon; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_train_set_wagons_physical_wagon ON freight.train_set_wagons USING btree (physical_wagon_id);
+
+
+--
+-- Name: idx_war_active; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_war_active ON freight.warehouse_allocation_rules USING btree (is_active);
+
+
+--
+-- Name: idx_war_priority; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_war_priority ON freight.warehouse_allocation_rules USING btree (priority);
+
+
+--
+-- Name: idx_warehouse_activity_log_activity_type; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_activity_log_activity_type ON freight.warehouse_activity_log USING btree (activity_type);
+
+
+--
+-- Name: idx_warehouse_activity_log_inventory_id; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_activity_log_inventory_id ON freight.warehouse_activity_log USING btree (inventory_id);
+
+
+--
+-- Name: idx_warehouse_activity_log_warehouse_id; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_activity_log_warehouse_id ON freight.warehouse_activity_log USING btree (warehouse_id);
+
+
+--
+-- Name: idx_warehouse_inventory_booking_id; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_inventory_booking_id ON freight.warehouse_inventory USING btree (booking_id);
+
+
+--
+-- Name: idx_warehouse_inventory_cargo_id; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_inventory_cargo_id ON freight.warehouse_inventory USING btree (cargo_id);
+
+
+--
+-- Name: idx_warehouse_inventory_container_id; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_inventory_container_id ON freight.warehouse_inventory USING btree (container_id);
+
+
+--
+-- Name: idx_warehouse_inventory_goods_id; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_inventory_goods_id ON freight.warehouse_inventory USING btree (goods_id);
+
+
+--
+-- Name: idx_warehouse_inventory_movement_inventory_id; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_inventory_movement_inventory_id ON freight.warehouse_inventory_movement USING btree (inventory_id);
+
+
+--
+-- Name: idx_warehouse_inventory_status; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_inventory_status ON freight.warehouse_inventory USING btree (status);
+
+
+--
+-- Name: idx_warehouse_inventory_warehouse_id; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_inventory_warehouse_id ON freight.warehouse_inventory USING btree (warehouse_id);
+
+
+--
+-- Name: idx_warehouse_inventory_yard_id; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_inventory_yard_id ON freight.warehouse_inventory USING btree (yard_id);
+
+
+--
+-- Name: idx_warehouse_inventory_zone_id; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_inventory_zone_id ON freight.warehouse_inventory USING btree (zone_id);
+
+
+--
+-- Name: idx_warehouse_loadings_booking_id; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_loadings_booking_id ON freight.warehouse_loadings USING btree (booking_id);
+
+
+--
+-- Name: idx_warehouse_loadings_inventory_id; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_loadings_inventory_id ON freight.warehouse_loadings USING btree (warehouse_inventory_id);
+
+
+--
+-- Name: idx_warehouse_loadings_wagon_id; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_loadings_wagon_id ON freight.warehouse_loadings USING btree (wagon_id);
+
+
+--
+-- Name: idx_warehouse_yards_status; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_yards_status ON freight.warehouse_yards USING btree (status);
+
+
+--
+-- Name: idx_warehouse_yards_type; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_yards_type ON freight.warehouse_yards USING btree (type);
+
+
+--
+-- Name: idx_warehouse_yards_warehouse_id; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_yards_warehouse_id ON freight.warehouse_yards USING btree (warehouse_id);
+
+
+--
+-- Name: idx_warehouse_zones_status; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_zones_status ON freight.warehouse_zones USING btree (status);
+
+
+--
+-- Name: idx_warehouse_zones_type; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_zones_type ON freight.warehouse_zones USING btree (type);
+
+
+--
+-- Name: idx_warehouse_zones_yard_id; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouse_zones_yard_id ON freight.warehouse_zones USING btree (yard_id);
+
+
+--
+-- Name: idx_warehouses_station_id; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouses_station_id ON freight.warehouses USING btree (station_id);
+
+
+--
+-- Name: idx_warehouses_status; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouses_status ON freight.warehouses USING btree (status);
+
+
+--
+-- Name: idx_warehouses_type; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_warehouses_type ON freight.warehouses USING btree (type);
+
+
+--
+-- Name: idx_wfi_booking; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_wfi_booking ON freight.warehouse_fee_invoices USING btree (booking_id);
+
+
+--
+-- Name: idx_wfi_inventory; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_wfi_inventory ON freight.warehouse_fee_invoices USING btree (inventory_id);
+
+
+--
+-- Name: idx_wfi_status; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_wfi_status ON freight.warehouse_fee_invoices USING btree (status);
+
+
+--
+-- Name: idx_wfii_invoice; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_wfii_invoice ON freight.warehouse_fee_invoice_items USING btree (invoice_id);
+
+
+--
+-- Name: idx_wfr_active; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_wfr_active ON freight.warehouse_fee_rules USING btree (is_active);
+
+
+--
+-- Name: idx_wfr_type; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_wfr_type ON freight.warehouse_fee_rules USING btree (rule_type);
+
+
+--
+-- Name: idx_wir_booking; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_wir_booking ON freight.warehouse_inspection_reports USING btree (booking_id);
+
+
+--
+-- Name: idx_wir_inventory; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_wir_inventory ON freight.warehouse_inspection_reports USING btree (inventory_id);
+
+
+--
+-- Name: idx_wir_status; Type: INDEX; Schema: freight; Owner: -
+--
+
+CREATE INDEX idx_wir_status ON freight.warehouse_inspection_reports USING btree (inspection_status);
+
+
+--
+-- Name: IDX_locations_location_type_id; Type: INDEX; Schema: iam; Owner: -
+--
+
+CREATE INDEX "IDX_locations_location_type_id" ON iam.locations USING btree (location_type_id);
+
+
+--
+-- Name: IDX_locations_parent_id; Type: INDEX; Schema: iam; Owner: -
+--
+
+CREATE INDEX "IDX_locations_parent_id" ON iam.locations USING btree (parent_id);
+
+
+--
+-- Name: IDX_organization_settings_organization_id; Type: INDEX; Schema: iam; Owner: -
+--
+
+CREATE INDEX "IDX_organization_settings_organization_id" ON iam.organization_settings USING btree (organization_id);
+
+
+--
+-- Name: IDX_unit_clusters_location_id; Type: INDEX; Schema: iam; Owner: -
+--
+
+CREATE INDEX "IDX_unit_clusters_location_id" ON iam.unit_clusters USING btree (location_id);
+
+
+--
+-- Name: IDX_unit_clusters_unit_id; Type: INDEX; Schema: iam; Owner: -
+--
+
+CREATE INDEX "IDX_unit_clusters_unit_id" ON iam.unit_clusters USING btree (unit_id);
+
+
+--
+-- Name: IDX_unit_settings_unit_id; Type: INDEX; Schema: iam; Owner: -
+--
+
+CREATE INDEX "IDX_unit_settings_unit_id" ON iam.unit_settings USING btree (unit_id);
+
+
+--
+-- Name: UQ_UNIT_CLUSTER_KEBELE; Type: INDEX; Schema: iam; Owner: -
+--
+
+CREATE UNIQUE INDEX "UQ_UNIT_CLUSTER_KEBELE" ON iam.unit_clusters USING btree (location_id) WHERE ((location_type)::text = 'KEBELE'::text);
+
+
+--
+-- Name: audit_log_commands FK_12094509e8bc3a6bb091f2f1987; Type: FK CONSTRAINT; Schema: audit; Owner: -
+--
+
+ALTER TABLE ONLY audit.audit_log_commands
+ ADD CONSTRAINT "FK_12094509e8bc3a6bb091f2f1987" FOREIGN KEY (parent_id) REFERENCES audit.audit_log_commands(id);
+
+
+--
+-- Name: audit_log_commands FK_ec7bf138fb9f823c358f54e8ce7; Type: FK CONSTRAINT; Schema: audit; Owner: -
+--
+
+ALTER TABLE ONLY audit.audit_log_commands
+ ADD CONSTRAINT "FK_ec7bf138fb9f823c358f54e8ce7" FOREIGN KEY (audit_log_id) REFERENCES audit.audit_logs(id) ON DELETE CASCADE;
+
+
+--
+-- Name: wagons FK_0011a1f8c7021d20d58e784b4d6; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagons
+ ADD CONSTRAINT "FK_0011a1f8c7021d20d58e784b4d6" FOREIGN KEY (current_train_schedule_id) REFERENCES freight.train_schedules(id) ON DELETE SET NULL;
+
+
+--
+-- Name: train_schedules FK_00b4a9ec8240b136e520ec6fafd; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_schedules
+ ADD CONSTRAINT "FK_00b4a9ec8240b136e520ec6fafd" FOREIGN KEY (route_id) REFERENCES freight.routes(id);
+
+
+--
+-- Name: train_schedule_bookings FK_058cf889314df20693d60e042d5; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_schedule_bookings
+ ADD CONSTRAINT "FK_058cf889314df20693d60e042d5" FOREIGN KEY (booking_id) REFERENCES freight.bookings(id);
+
+
+--
+-- Name: booking_review_note FK_08839833780647a693843c4a7dd; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.booking_review_note
+ ADD CONSTRAINT "FK_08839833780647a693843c4a7dd" FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
+
+
+--
+-- Name: bookings FK_0a175b31a3ec1357abf07c4e3a8; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.bookings
+ ADD CONSTRAINT "FK_0a175b31a3ec1357abf07c4e3a8" FOREIGN KEY (cargo_type_id) REFERENCES freight.cargo_types(id);
+
+
+--
+-- Name: ff_clients FK_1101fbe8e745d91b6bd0747b582; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.ff_clients
+ ADD CONSTRAINT "FK_1101fbe8e745d91b6bd0747b582" FOREIGN KEY (forwarder_company_id) REFERENCES freight.companies(id);
+
+
+--
+-- Name: wagon_booking_allocations FK_1a4ed740d761bca5293dcc98905; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagon_booking_allocations
+ ADD CONSTRAINT "FK_1a4ed740d761bca5293dcc98905" FOREIGN KEY (booking_id) REFERENCES freight.bookings(id);
+
+
+--
+-- Name: dropdown_options FK_1b21a0519dc5393c2ccf9964f27; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.dropdown_options
+ ADD CONSTRAINT "FK_1b21a0519dc5393c2ccf9964f27" FOREIGN KEY (setting_id) REFERENCES freight.dropdown_settings(id) ON DELETE CASCADE;
+
+
+--
+-- Name: wagon_allocation_container_items FK_1fccc18b82f3053a3599184965a; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagon_allocation_container_items
+ ADD CONSTRAINT "FK_1fccc18b82f3053a3599184965a" FOREIGN KEY (booking_container_id) REFERENCES freight.booking_container(id) ON DELETE SET NULL;
+
+
+--
+-- Name: train_set_wagons FK_2416dbad54b4417899b682fc537; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_set_wagons
+ ADD CONSTRAINT "FK_2416dbad54b4417899b682fc537" FOREIGN KEY (wagon_type_id) REFERENCES freight.wagon_types(id);
+
+
+--
+-- Name: wagons FK_24f7b2c8038bc1bdd2a7912fe1d; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagons
+ ADD CONSTRAINT "FK_24f7b2c8038bc1bdd2a7912fe1d" FOREIGN KEY (train_set_wagon_id) REFERENCES freight.train_set_wagons(id) ON DELETE SET NULL;
+
+
+--
+-- Name: external_profiles FK_26d2a16e263ab4fe0a4c8e91954; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.external_profiles
+ ADD CONSTRAINT "FK_26d2a16e263ab4fe0a4c8e91954" FOREIGN KEY (company_id) REFERENCES freight.companies(id);
+
+
+--
+-- Name: wagon_allocation_bulk_loads FK_2946b89911c9ffaac1334773a07; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagon_allocation_bulk_loads
+ ADD CONSTRAINT "FK_2946b89911c9ffaac1334773a07" FOREIGN KEY (booking_id) REFERENCES freight.bookings(id);
+
+
+--
+-- Name: containers FK_2d0114586a761015d4a6c8a3357; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.containers
+ ADD CONSTRAINT "FK_2d0114586a761015d4a6c8a3357" FOREIGN KEY (booking_container_id) REFERENCES freight.booking_container(id) ON DELETE SET NULL;
+
+
+--
+-- Name: company_profiles FK_30228dd283a0f14486346e1db96; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.company_profiles
+ ADD CONSTRAINT "FK_30228dd283a0f14486346e1db96" FOREIGN KEY (company_id) REFERENCES freight.companies(id);
+
+
+--
+-- Name: route_milestones FK_34802e559bdc07eea6721ebaf68; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.route_milestones
+ ADD CONSTRAINT "FK_34802e559bdc07eea6721ebaf68" FOREIGN KEY (route_id) REFERENCES freight.routes(id) ON DELETE CASCADE;
+
+
+--
+-- Name: wagon_allocation_bulk_loads FK_3614b529effef5b3f9a3cec91bf; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagon_allocation_bulk_loads
+ ADD CONSTRAINT "FK_3614b529effef5b3f9a3cec91bf" FOREIGN KEY (wagon_booking_allocation_id) REFERENCES freight.wagon_booking_allocations(id) ON DELETE CASCADE;
+
+
+--
+-- Name: saved_signatures FK_3dfb56b19155f13020580f23e2c; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.saved_signatures
+ ADD CONSTRAINT "FK_3dfb56b19155f13020580f23e2c" FOREIGN KEY (signature_file_id) REFERENCES freight.files(id);
+
+
+--
+-- Name: route_milestones FK_4929104152e02f64ad998c46136; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.route_milestones
+ ADD CONSTRAINT "FK_4929104152e02f64ad998c46136" FOREIGN KEY (yard_id) REFERENCES freight.yards(id);
+
+
+--
+-- Name: cargo_types FK_4f779c1b85bc78cb1ba4fa6b506; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.cargo_types
+ ADD CONSTRAINT "FK_4f779c1b85bc78cb1ba4fa6b506" FOREIGN KEY (parent_group_id) REFERENCES freight.cargo_types(id) ON DELETE SET NULL;
+
+
+--
+-- Name: train_set_wagons FK_4f91a7eb3aedb6bdefe0ec0ad70; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_set_wagons
+ ADD CONSTRAINT "FK_4f91a7eb3aedb6bdefe0ec0ad70" FOREIGN KEY (train_set_id) REFERENCES freight.train_sets(id) ON DELETE CASCADE;
+
+
+--
+-- Name: train_sets FK_514743f33b75daf1d564c80581f; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_sets
+ ADD CONSTRAINT "FK_514743f33b75daf1d564c80581f" FOREIGN KEY (locomotive_id) REFERENCES freight.locomotives(id);
+
+
+--
+-- Name: bookings FK_59a057d92f130f365ad76b82d30; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.bookings
+ ADD CONSTRAINT "FK_59a057d92f130f365ad76b82d30" FOREIGN KEY (consolidation_partner_id) REFERENCES freight.bookings(id);
+
+
+--
+-- Name: file_upload_fields FK_5c0d4826d982e520fecc8887b62; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.file_upload_fields
+ ADD CONSTRAINT "FK_5c0d4826d982e520fecc8887b62" FOREIGN KEY (setting_id) REFERENCES freight.file_upload_settings(id) ON DELETE CASCADE;
+
+
+--
+-- Name: booking_approval_step FK_5c3f1609c324e6f882df794147f; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.booking_approval_step
+ ADD CONSTRAINT "FK_5c3f1609c324e6f882df794147f" FOREIGN KEY (approval_rule_id) REFERENCES freight.approval_rules(id);
+
+
+--
+-- Name: booking_contract_signatures FK_5c6807c87b42b3d6e5de5ec45a6; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.booking_contract_signatures
+ ADD CONSTRAINT "FK_5c6807c87b42b3d6e5de5ec45a6" FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
+
+
+--
+-- Name: booking_cargo_modifier FK_630a1413a8de620a3db8518f7c8; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.booking_cargo_modifier
+ ADD CONSTRAINT "FK_630a1413a8de620a3db8518f7c8" FOREIGN KEY (rate_snapshot_id) REFERENCES freight.booking_rate_snapshot(id);
+
+
+--
+-- Name: weight_limit_rules FK_647dcd34bb1eb8a85f7d941e453; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.weight_limit_rules
+ ADD CONSTRAINT "FK_647dcd34bb1eb8a85f7d941e453" FOREIGN KEY (container_type_id) REFERENCES freight.container_types(id);
+
+
+--
+-- Name: booking_contract_signatures FK_6b182df4eef29a8b84f35afd9e8; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.booking_contract_signatures
+ ADD CONSTRAINT "FK_6b182df4eef29a8b84f35afd9e8" FOREIGN KEY (signature_file_id) REFERENCES freight.files(id);
+
+
+--
+-- Name: train_checkpoint_events FK_6dade0e493446e8b59925e92a77; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_checkpoint_events
+ ADD CONSTRAINT "FK_6dade0e493446e8b59925e92a77" FOREIGN KEY (train_schedule_id) REFERENCES freight.train_schedules(id) ON DELETE CASCADE;
+
+
+--
+-- Name: train_schedules FK_6eeb4168ac5461b7f28903afa27; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_schedules
+ ADD CONSTRAINT "FK_6eeb4168ac5461b7f28903afa27" FOREIGN KEY (train_set_id) REFERENCES freight.train_sets(id);
+
+
+--
+-- Name: warehouse_fee_invoice_items FK_6f48f26acf47e4ac43e62f0a999; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_fee_invoice_items
+ ADD CONSTRAINT "FK_6f48f26acf47e4ac43e62f0a999" FOREIGN KEY (invoice_id) REFERENCES freight.warehouse_fee_invoices(id) ON DELETE CASCADE;
+
+
+--
+-- Name: bookings FK_6fa72e9c8fdfa587cffd9383470; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.bookings
+ ADD CONSTRAINT "FK_6fa72e9c8fdfa587cffd9383470" FOREIGN KEY (destination_yard_id) REFERENCES freight.yards(id);
+
+
+--
+-- Name: train_schedules FK_71116530eb6d386ef1956c33f02; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_schedules
+ ADD CONSTRAINT "FK_71116530eb6d386ef1956c33f02" FOREIGN KEY (origin_station_id) REFERENCES freight.yards(id);
+
+
+--
+-- Name: locomotives FK_715346e6de39a838e9a824d5b6f; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.locomotives
+ ADD CONSTRAINT "FK_715346e6de39a838e9a824d5b6f" FOREIGN KEY (current_yard_id) REFERENCES freight.yards(id) ON DELETE SET NULL;
+
+
+--
+-- Name: bookings FK_72dbd3365e2977161f9dec96b1a; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.bookings
+ ADD CONSTRAINT "FK_72dbd3365e2977161f9dec96b1a" FOREIGN KEY (company_id) REFERENCES freight.companies(id);
+
+
+--
+-- Name: booking_cargo_modifier FK_74022dc735e8f0bfc1a5d2d4af1; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.booking_cargo_modifier
+ ADD CONSTRAINT "FK_74022dc735e8f0bfc1a5d2d4af1" FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
+
+
+--
+-- Name: wagon_allocation_container_items FK_754a6622c07b6543ca41ff53e01; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagon_allocation_container_items
+ ADD CONSTRAINT "FK_754a6622c07b6543ca41ff53e01" FOREIGN KEY (wagon_booking_allocation_id) REFERENCES freight.wagon_booking_allocations(id) ON DELETE CASCADE;
+
+
+--
+-- Name: booking_rate_snapshot FK_790e02960960caa83f48e1e9f41; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.booking_rate_snapshot
+ ADD CONSTRAINT "FK_790e02960960caa83f48e1e9f41" FOREIGN KEY (rate_id) REFERENCES freight.rates(id);
+
+
+--
+-- Name: containers FK_7fc76d6c47f880ee4bf5a1033b5; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.containers
+ ADD CONSTRAINT "FK_7fc76d6c47f880ee4bf5a1033b5" FOREIGN KEY (wagon_id) REFERENCES freight.wagons(id) ON DELETE SET NULL;
+
+
+--
+-- Name: booking_cargo_modifier FK_8c9b92aefb529f8e61e63fe7e46; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.booking_cargo_modifier
+ ADD CONSTRAINT "FK_8c9b92aefb529f8e61e63fe7e46" FOREIGN KEY (surcharge_type_id) REFERENCES freight.surcharge_types(id);
+
+
+--
+-- Name: booking_container FK_91946ca51ff65658f487eae1162; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.booking_container
+ ADD CONSTRAINT "FK_91946ca51ff65658f487eae1162" FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
+
+
+--
+-- Name: cargoes FK_940155680cb1f460c009872a1e6; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.cargoes
+ ADD CONSTRAINT "FK_940155680cb1f460c009872a1e6" FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE SET NULL;
+
+
+--
+-- Name: routes FK_95d3891d308a151a369fe6019cd; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.routes
+ ADD CONSTRAINT "FK_95d3891d308a151a369fe6019cd" FOREIGN KEY (destination_yard_id) REFERENCES freight.yards(id);
+
+
+--
+-- Name: routes FK_96911c21d8df167fb55f6b318bb; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.routes
+ ADD CONSTRAINT "FK_96911c21d8df167fb55f6b318bb" FOREIGN KEY (origin_yard_id) REFERENCES freight.yards(id);
+
+
+--
+-- Name: cargoes FK_9b7ff002c872f94847d74599e24; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.cargoes
+ ADD CONSTRAINT "FK_9b7ff002c872f94847d74599e24" FOREIGN KEY (container_id) REFERENCES freight.containers(id) ON DELETE RESTRICT;
+
+
+--
+-- Name: containers FK_9ccf171e74d6acdcd1db205a5b1; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.containers
+ ADD CONSTRAINT "FK_9ccf171e74d6acdcd1db205a5b1" FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE SET NULL;
+
+
+--
+-- Name: payment_refunds FK_a10d6c1918989353b79932a2bad; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.payment_refunds
+ ADD CONSTRAINT "FK_a10d6c1918989353b79932a2bad" FOREIGN KEY (payment_id) REFERENCES freight.payments(id) ON DELETE RESTRICT;
+
+
+--
+-- Name: booking_rate_snapshot FK_a48e3df6f92a8dc6116a7f6a21c; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.booking_rate_snapshot
+ ADD CONSTRAINT "FK_a48e3df6f92a8dc6116a7f6a21c" FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
+
+
+--
+-- Name: train_schedules FK_acb74c114224937f181d2dc6de4; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_schedules
+ ADD CONSTRAINT "FK_acb74c114224937f181d2dc6de4" FOREIGN KEY (destination_station_id) REFERENCES freight.yards(id);
+
+
+--
+-- Name: ff_clients FK_af4d6bac2844d39095b2056e978; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.ff_clients
+ ADD CONSTRAINT "FK_af4d6bac2844d39095b2056e978" FOREIGN KEY (client_company_id) REFERENCES freight.companies(id);
+
+
+--
+-- Name: train_checkpoint_events FK_b4eb66bf4d6bc9785e92ed03a76; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_checkpoint_events
+ ADD CONSTRAINT "FK_b4eb66bf4d6bc9785e92ed03a76" FOREIGN KEY (yard_id) REFERENCES freight.yards(id);
+
+
+--
+-- Name: booking_approval_step FK_b6ce5459351171db53cdb88f8ce; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.booking_approval_step
+ ADD CONSTRAINT "FK_b6ce5459351171db53cdb88f8ce" FOREIGN KEY (booking_id) REFERENCES freight.bookings(id) ON DELETE CASCADE;
+
+
+--
+-- Name: surcharge_types FK_c2eb7fc3cd51f9f71d91bbdc678; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.surcharge_types
+ ADD CONSTRAINT "FK_c2eb7fc3cd51f9f71d91bbdc678" FOREIGN KEY (rate_id) REFERENCES freight.rates(id);
+
+
+--
+-- Name: wagons FK_c31fa9a828df48dbe84889a0fd9; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagons
+ ADD CONSTRAINT "FK_c31fa9a828df48dbe84889a0fd9" FOREIGN KEY (train_id) REFERENCES freight.trains(id) ON DELETE SET NULL;
+
+
+--
+-- Name: bookings FK_c83944d9520870722c417431837; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.bookings
+ ADD CONSTRAINT "FK_c83944d9520870722c417431837" FOREIGN KEY (service_type_id) REFERENCES freight.service_types(id);
+
+
+--
+-- Name: bookings FK_c8f3670cbfd233280721cf48951; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.bookings
+ ADD CONSTRAINT "FK_c8f3670cbfd233280721cf48951" FOREIGN KEY (train_id) REFERENCES freight.trains(id);
+
+
+--
+-- Name: train_set_wagons FK_ca153a2c265a3b425381e7db7c9; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_set_wagons
+ ADD CONSTRAINT "FK_ca153a2c265a3b425381e7db7c9" FOREIGN KEY (physical_wagon_id) REFERENCES freight.wagons(id) ON DELETE SET NULL;
+
+
+--
+-- Name: bookings FK_cabe80a0c7b9e0144854a4f353d; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.bookings
+ ADD CONSTRAINT "FK_cabe80a0c7b9e0144854a4f353d" FOREIGN KEY (origin_yard_id) REFERENCES freight.yards(id);
+
+
+--
+-- Name: wagon_booking_allocations FK_cfe4cc4c449495cfdda7a08432b; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagon_booking_allocations
+ ADD CONSTRAINT "FK_cfe4cc4c449495cfdda7a08432b" FOREIGN KEY (train_set_wagon_id) REFERENCES freight.train_set_wagons(id) ON DELETE CASCADE;
+
+
+--
+-- Name: wagon_allocation_container_items FK_d811f5cd0a9a89ea049122f3e65; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagon_allocation_container_items
+ ADD CONSTRAINT "FK_d811f5cd0a9a89ea049122f3e65" FOREIGN KEY (container_type_id) REFERENCES freight.container_types(id);
+
+
+--
+-- Name: booking_container FK_db647bde6d44f13a2576d2eaf9e; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.booking_container
+ ADD CONSTRAINT "FK_db647bde6d44f13a2576d2eaf9e" FOREIGN KEY (container_type_id) REFERENCES freight.container_types(id);
+
+
+--
+-- Name: booking_container FK_dbe9c94b042c401d5cf76783173; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.booking_container
+ ADD CONSTRAINT "FK_dbe9c94b042c401d5cf76783173" FOREIGN KEY (weight_limit_rule_id) REFERENCES freight.weight_limit_rules(id);
+
+
+--
+-- Name: rates FK_df2e1150f8f9153ee39bdbe1b27; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.rates
+ ADD CONSTRAINT "FK_df2e1150f8f9153ee39bdbe1b27" FOREIGN KEY (container_type_id) REFERENCES freight.container_types(id);
+
+
+--
+-- Name: train_schedule_bookings FK_e3ca5b25684329e0b25b112944c; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_schedule_bookings
+ ADD CONSTRAINT "FK_e3ca5b25684329e0b25b112944c" FOREIGN KEY (train_schedule_id) REFERENCES freight.train_schedules(id) ON DELETE CASCADE;
+
+
+--
+-- Name: wagon_allocation_bulk_loads FK_e7173c4e83e769086bfcdfd16de; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagon_allocation_bulk_loads
+ ADD CONSTRAINT "FK_e7173c4e83e769086bfcdfd16de" FOREIGN KEY (cargo_type_id) REFERENCES freight.cargo_types(id) ON DELETE SET NULL;
+
+
+--
+-- Name: wagon_allocation_container_items FK_ea44a89f3ff6c975ba0fd9e7815; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagon_allocation_container_items
+ ADD CONSTRAINT "FK_ea44a89f3ff6c975ba0fd9e7815" FOREIGN KEY (container_id) REFERENCES freight.containers(id) ON DELETE SET NULL;
+
+
+--
+-- Name: cargoes FK_f051c0b4726f5f2e7899b4b09ac; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.cargoes
+ ADD CONSTRAINT "FK_f051c0b4726f5f2e7899b4b09ac" FOREIGN KEY (wagon_booking_allocation_id) REFERENCES freight.wagon_booking_allocations(id) ON DELETE SET NULL;
+
+
+--
+-- Name: containers FK_f21a681bddcff8ecfd0a0aee225; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.containers
+ ADD CONSTRAINT "FK_f21a681bddcff8ecfd0a0aee225" FOREIGN KEY (wagon_booking_allocation_id) REFERENCES freight.wagon_booking_allocations(id) ON DELETE SET NULL;
+
+
+--
+-- Name: bookings FK_f3a6175c32dc49f0b7f5c704136; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.bookings
+ ADD CONSTRAINT "FK_f3a6175c32dc49f0b7f5c704136" FOREIGN KEY (previous_contract_id) REFERENCES freight.bookings(id);
+
+
+--
+-- Name: wagons FK_f47e5cc3a98f5ee20f83325a965; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagons
+ ADD CONSTRAINT "FK_f47e5cc3a98f5ee20f83325a965" FOREIGN KEY (current_yard_id) REFERENCES freight.yards(id) ON DELETE SET NULL;
+
+
+--
+-- Name: bookings FK_f6828f834f4f24dc3942b6a8f42; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.bookings
+ ADD CONSTRAINT "FK_f6828f834f4f24dc3942b6a8f42" FOREIGN KEY (shipping_line_id) REFERENCES freight.shipping_lines(id);
+
+
+--
+-- Name: wagons FK_wagons_current_location_yard_id; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.wagons
+ ADD CONSTRAINT "FK_wagons_current_location_yard_id" FOREIGN KEY (current_location_yard_id) REFERENCES freight.yards(id) ON DELETE SET NULL;
+
+
+--
+-- Name: train_set_wagons fk_train_set_wagons_physical_wagon; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.train_set_wagons
+ ADD CONSTRAINT fk_train_set_wagons_physical_wagon FOREIGN KEY (physical_wagon_id) REFERENCES freight.wagons(id) ON DELETE SET NULL;
+
+
+--
+-- Name: warehouse_inventory_movement warehouse_inventory_movement_inventory_id_fkey; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_inventory_movement
+ ADD CONSTRAINT warehouse_inventory_movement_inventory_id_fkey FOREIGN KEY (inventory_id) REFERENCES freight.warehouse_inventory(id) ON DELETE CASCADE;
+
+
+--
+-- Name: warehouse_inventory warehouse_inventory_warehouse_id_fkey; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_inventory
+ ADD CONSTRAINT warehouse_inventory_warehouse_id_fkey FOREIGN KEY (warehouse_id) REFERENCES freight.warehouses(id);
+
+
+--
+-- Name: warehouse_inventory warehouse_inventory_yard_id_fkey; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_inventory
+ ADD CONSTRAINT warehouse_inventory_yard_id_fkey FOREIGN KEY (yard_id) REFERENCES freight.warehouse_yards(id);
+
+
+--
+-- Name: warehouse_inventory warehouse_inventory_zone_id_fkey; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_inventory
+ ADD CONSTRAINT warehouse_inventory_zone_id_fkey FOREIGN KEY (zone_id) REFERENCES freight.warehouse_zones(id);
+
+
+--
+-- Name: warehouse_loadings warehouse_loadings_warehouse_inventory_id_fkey; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_loadings
+ ADD CONSTRAINT warehouse_loadings_warehouse_inventory_id_fkey FOREIGN KEY (warehouse_inventory_id) REFERENCES freight.warehouse_inventory(id) ON DELETE CASCADE;
+
+
+--
+-- Name: warehouse_yards warehouse_yards_warehouse_id_fkey; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_yards
+ ADD CONSTRAINT warehouse_yards_warehouse_id_fkey FOREIGN KEY (warehouse_id) REFERENCES freight.warehouses(id) ON DELETE CASCADE;
+
+
+--
+-- Name: warehouse_zones warehouse_zones_yard_id_fkey; Type: FK CONSTRAINT; Schema: freight; Owner: -
+--
+
+ALTER TABLE ONLY freight.warehouse_zones
+ ADD CONSTRAINT warehouse_zones_yard_id_fkey FOREIGN KEY (yard_id) REFERENCES freight.warehouse_yards(id) ON DELETE CASCADE;
+
+
+--
+-- Name: position_type_configuration FK_0280c807114461495f0a3de9bdb; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.position_type_configuration
+ ADD CONSTRAINT "FK_0280c807114461495f0a3de9bdb" FOREIGN KEY (position_type_id) REFERENCES iam.position_types(id) ON DELETE CASCADE;
+
+
+--
+-- Name: projects FK_05e6e8db066a4c8a68ab27acb65; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.projects
+ ADD CONSTRAINT "FK_05e6e8db066a4c8a68ab27acb65" FOREIGN KEY (unit_id) REFERENCES iam.units(id) ON DELETE CASCADE;
+
+
+--
+-- Name: sessions FK_085d540d9f418cfbdc7bd55bb19; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.sessions
+ ADD CONSTRAINT "FK_085d540d9f418cfbdc7bd55bb19" FOREIGN KEY (user_id) REFERENCES iam.users(id) ON DELETE CASCADE;
+
+
+--
+-- Name: permissions FK_0c82bccac27c5f6189c35461d2f; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.permissions
+ ADD CONSTRAINT "FK_0c82bccac27c5f6189c35461d2f" FOREIGN KEY (application_id) REFERENCES iam.application(id) ON DELETE CASCADE;
+
+
+--
+-- Name: user_roles FK_1503dd4274109b89d2429101e42; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.user_roles
+ ADD CONSTRAINT "FK_1503dd4274109b89d2429101e42" FOREIGN KEY (organization_id) REFERENCES iam.organizations(id) ON DELETE CASCADE;
+
+
+--
+-- Name: employee_project FK_15caa6a8166f1ddf2ed79001c71; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.employee_project
+ ADD CONSTRAINT "FK_15caa6a8166f1ddf2ed79001c71" FOREIGN KEY (project_id) REFERENCES iam.projects(id);
+
+
+--
+-- Name: headers FK_160f8ffaa62853233c2ac01130e; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.headers
+ ADD CONSTRAINT "FK_160f8ffaa62853233c2ac01130e" FOREIGN KEY (position_id) REFERENCES iam.positions(id);
+
+
+--
+-- Name: role_permissions FK_17022daf3f885f7d35423e9971e; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.role_permissions
+ ADD CONSTRAINT "FK_17022daf3f885f7d35423e9971e" FOREIGN KEY (permission_id) REFERENCES iam.permissions(id) ON DELETE CASCADE;
+
+
+--
+-- Name: role_permissions FK_178199805b901ccd220ab7740ec; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.role_permissions
+ ADD CONSTRAINT "FK_178199805b901ccd220ab7740ec" FOREIGN KEY (role_id) REFERENCES iam.roles(id) ON DELETE CASCADE;
+
+
+--
+-- Name: positions FK_19800b00cfe14b168c39e18b5ac; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.positions
+ ADD CONSTRAINT "FK_19800b00cfe14b168c39e18b5ac" FOREIGN KEY (parent_position_id) REFERENCES iam.positions(id) ON DELETE CASCADE;
+
+
+--
+-- Name: seals FK_1b453d55ca360b2608eebb86ea0; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.seals
+ ADD CONSTRAINT "FK_1b453d55ca360b2608eebb86ea0" FOREIGN KEY (unit_id) REFERENCES iam.units(id);
+
+
+--
+-- Name: employee_positions FK_1f97107ff3fd45a193d7d39761b; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.employee_positions
+ ADD CONSTRAINT "FK_1f97107ff3fd45a193d7d39761b" FOREIGN KEY (position_id) REFERENCES iam.positions(id);
+
+
+--
+-- Name: position_configurations FK_2843307d02d670d0dcf14d2b28c; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.position_configurations
+ ADD CONSTRAINT "FK_2843307d02d670d0dcf14d2b28c" FOREIGN KEY (position_id) REFERENCES iam.positions(id) ON DELETE CASCADE;
+
+
+--
+-- Name: footers FK_298b0dd1efaf2958ef2633503a9; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.footers
+ ADD CONSTRAINT "FK_298b0dd1efaf2958ef2633503a9" FOREIGN KEY (unit_id) REFERENCES iam.units(id);
+
+
+--
+-- Name: organization_configurations FK_2af16739d2f7f4d81ce555f0864; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.organization_configurations
+ ADD CONSTRAINT "FK_2af16739d2f7f4d81ce555f0864" FOREIGN KEY (organization_id) REFERENCES iam.organizations(id) ON DELETE CASCADE;
+
+
+--
+-- Name: user_verifications FK_2c6a037273f1cb3e6fdd832db24; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.user_verifications
+ ADD CONSTRAINT "FK_2c6a037273f1cb3e6fdd832db24" FOREIGN KEY (user_id) REFERENCES iam.users(id) ON DELETE CASCADE;
+
+
+--
+-- Name: employees FK_2d83c53c3e553a48dadb9722e38; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.employees
+ ADD CONSTRAINT "FK_2d83c53c3e553a48dadb9722e38" FOREIGN KEY (user_id) REFERENCES iam.users(id);
+
+
+--
+-- Name: organization_seals FK_2f09594fbdaae38bb024afdbcad; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.organization_seals
+ ADD CONSTRAINT "FK_2f09594fbdaae38bb024afdbcad" FOREIGN KEY (organization_id) REFERENCES iam.organizations(id);
+
+
+--
+-- Name: employees FK_3d3bc4729062b93fb56b084d786; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.employees
+ ADD CONSTRAINT "FK_3d3bc4729062b93fb56b084d786" FOREIGN KEY (organization_id) REFERENCES iam.organizations(id);
+
+
+--
+-- Name: units FK_477b8c9890c6a2f692c2e1f78ca; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.units
+ ADD CONSTRAINT "FK_477b8c9890c6a2f692c2e1f78ca" FOREIGN KEY (organization_id) REFERENCES iam.organizations(id);
+
+
+--
+-- Name: user_documents FK_47bcd81354c71e34b9c0a06696f; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.user_documents
+ ADD CONSTRAINT "FK_47bcd81354c71e34b9c0a06696f" FOREIGN KEY (approved_by) REFERENCES iam.users(id);
+
+
+--
+-- Name: footers FK_4b5b85de6812eeb0974209185a3; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.footers
+ ADD CONSTRAINT "FK_4b5b85de6812eeb0974209185a3" FOREIGN KEY (position_id) REFERENCES iam.positions(id);
+
+
+--
+-- Name: users FK_4e589ae9e8fde5a605d1064dfe9; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.users
+ ADD CONSTRAINT "FK_4e589ae9e8fde5a605d1064dfe9" FOREIGN KEY (approved_by_id) REFERENCES iam.users(id);
+
+
+--
+-- Name: notifications FK_5332a4daa46fd3f4e6625dd275d; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.notifications
+ ADD CONSTRAINT "FK_5332a4daa46fd3f4e6625dd275d" FOREIGN KEY (recipient_id) REFERENCES iam.users(id);
+
+
+--
+-- Name: positions FK_558198775d351c94287b370d082; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.positions
+ ADD CONSTRAINT "FK_558198775d351c94287b370d082" FOREIGN KEY (organization_id) REFERENCES iam.organizations(id) ON DELETE CASCADE;
+
+
+--
+-- Name: projects FK_585c8ce06628c70b70100bfb842; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.projects
+ ADD CONSTRAINT "FK_585c8ce06628c70b70100bfb842" FOREIGN KEY (organization_id) REFERENCES iam.organizations(id) ON DELETE CASCADE;
+
+
+--
+-- Name: notifications FK_59b3769baf8f4d693bbd665edd2; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.notifications
+ ADD CONSTRAINT "FK_59b3769baf8f4d693bbd665edd2" FOREIGN KEY (position_id) REFERENCES iam.positions(id);
+
+
+--
+-- Name: position_types FK_5e8d194a67300857cc1817d3e23; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.position_types
+ ADD CONSTRAINT "FK_5e8d194a67300857cc1817d3e23" FOREIGN KEY (unit_id) REFERENCES iam.units(id);
+
+
+--
+-- Name: employee_positions FK_69c667bcb16ad2c114cb58f1232; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.employee_positions
+ ADD CONSTRAINT "FK_69c667bcb16ad2c114cb58f1232" FOREIGN KEY (delegator_id) REFERENCES iam.employee_positions(id);
+
+
+--
+-- Name: employees FK_6faca26ba30938d439d9ec33930; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.employees
+ ADD CONSTRAINT "FK_6faca26ba30938d439d9ec33930" FOREIGN KEY (unit_id) REFERENCES iam.units(id);
+
+
+--
+-- Name: positions FK_71f39c482e262f1dc0dfe60d693; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.positions
+ ADD CONSTRAINT "FK_71f39c482e262f1dc0dfe60d693" FOREIGN KEY (position_type_id) REFERENCES iam.position_types(id) ON DELETE RESTRICT;
+
+
+--
+-- Name: units FK_742aaadb0e604d1d113bce8e60e; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.units
+ ADD CONSTRAINT "FK_742aaadb0e604d1d113bce8e60e" FOREIGN KEY (parent_unit_id) REFERENCES iam.units(id) ON DELETE SET NULL;
+
+
+--
+-- Name: user_documents FK_7be233cb53d65d6dff4680c14bc; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.user_documents
+ ADD CONSTRAINT "FK_7be233cb53d65d6dff4680c14bc" FOREIGN KEY (document_id) REFERENCES iam.documentary_requirements(id) ON DELETE CASCADE;
+
+
+--
+-- Name: organization_global_configurations FK_80e606e32f71ba8f8ba0ceb3d72; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.organization_global_configurations
+ ADD CONSTRAINT "FK_80e606e32f71ba8f8ba0ceb3d72" FOREIGN KEY (organization_id) REFERENCES iam.organizations(id) ON DELETE CASCADE;
+
+
+--
+-- Name: user_roles FK_87b8888186ca9769c960e926870; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.user_roles
+ ADD CONSTRAINT "FK_87b8888186ca9769c960e926870" FOREIGN KEY (user_id) REFERENCES iam.users(id) ON DELETE CASCADE;
+
+
+--
+-- Name: position_type_permissions FK_96d896f873ef2f8fe11b765ff97; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.position_type_permissions
+ ADD CONSTRAINT "FK_96d896f873ef2f8fe11b765ff97" FOREIGN KEY (position_type_id) REFERENCES iam.position_types(id) ON DELETE CASCADE;
+
+
+--
+-- Name: employee_positions FK_a1a45c4bb41c74004bca1117e81; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.employee_positions
+ ADD CONSTRAINT "FK_a1a45c4bb41c74004bca1117e81" FOREIGN KEY (unit_id) REFERENCES iam.units(id);
+
+
+--
+-- Name: position_permissions FK_a2c37473fb8f9e467cf082c4579; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.position_permissions
+ ADD CONSTRAINT "FK_a2c37473fb8f9e467cf082c4579" FOREIGN KEY (permission_id) REFERENCES iam.permissions(id) ON DELETE CASCADE;
+
+
+--
+-- Name: default_positions FK_a97c101a8f1b5351ce152cbd544; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.default_positions
+ ADD CONSTRAINT "FK_a97c101a8f1b5351ce152cbd544" FOREIGN KEY (default_unit_id) REFERENCES iam.default_units(id) ON DELETE CASCADE;
+
+
+--
+-- Name: employee_positions FK_aa29183a0652f1a189b9d7bcc9f; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.employee_positions
+ ADD CONSTRAINT "FK_aa29183a0652f1a189b9d7bcc9f" FOREIGN KEY (employee_id) REFERENCES iam.employees(id);
+
+
+--
+-- Name: user_documents FK_aa4b82a9943c65b5f622a6925b2; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.user_documents
+ ADD CONSTRAINT "FK_aa4b82a9943c65b5f622a6925b2" FOREIGN KEY (user_id) REFERENCES iam.users(id) ON DELETE CASCADE;
+
+
+--
+-- Name: employee_signatures FK_b0c6d6748d507eb18a32d1a9000; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.employee_signatures
+ ADD CONSTRAINT "FK_b0c6d6748d507eb18a32d1a9000" FOREIGN KEY (employee_id) REFERENCES iam.employees(id);
+
+
+--
+-- Name: user_roles FK_b23c65e50a758245a33ee35fda1; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.user_roles
+ ADD CONSTRAINT "FK_b23c65e50a758245a33ee35fda1" FOREIGN KEY (role_id) REFERENCES iam.roles(id) ON DELETE CASCADE;
+
+
+--
+-- Name: positions FK_b9d6de5429943d29147024bfe2f; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.positions
+ ADD CONSTRAINT "FK_b9d6de5429943d29147024bfe2f" FOREIGN KEY (unit_id) REFERENCES iam.units(id) ON DELETE CASCADE;
+
+
+--
+-- Name: account_configurations FK_c9114d71b4447126c0fcc86827c; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.account_configurations
+ ADD CONSTRAINT "FK_c9114d71b4447126c0fcc86827c" FOREIGN KEY (user_id) REFERENCES iam.users(id) ON DELETE CASCADE;
+
+
+--
+-- Name: position_type_configuration FK_cad36518c5a4e799a9c11184a4c; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.position_type_configuration
+ ADD CONSTRAINT "FK_cad36518c5a4e799a9c11184a4c" FOREIGN KEY (organization_id) REFERENCES iam.organizations(id) ON DELETE CASCADE;
+
+
+--
+-- Name: employee_stamps FK_cb40752f29f94ab849672184a0d; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.employee_stamps
+ ADD CONSTRAINT "FK_cb40752f29f94ab849672184a0d" FOREIGN KEY (employee_position_id) REFERENCES iam.employee_positions(id);
+
+
+--
+-- Name: positions FK_cfbf55e26855320449bfd71f5ee; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.positions
+ ADD CONSTRAINT "FK_cfbf55e26855320449bfd71f5ee" FOREIGN KEY (project_id) REFERENCES iam.projects(id) ON DELETE RESTRICT;
+
+
+--
+-- Name: default_positions FK_d4183504b679cb1fe8f38638b14; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.default_positions
+ ADD CONSTRAINT "FK_d4183504b679cb1fe8f38638b14" FOREIGN KEY (parent_id) REFERENCES iam.default_positions(id) ON DELETE CASCADE;
+
+
+--
+-- Name: position_type_permissions FK_da07c81f9df3affab9ddf7c67f9; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.position_type_permissions
+ ADD CONSTRAINT "FK_da07c81f9df3affab9ddf7c67f9" FOREIGN KEY (permission_id) REFERENCES iam.permissions(id);
+
+
+--
+-- Name: user_credentials FK_dd0918407944553611bb3eb3ddc; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.user_credentials
+ ADD CONSTRAINT "FK_dd0918407944553611bb3eb3ddc" FOREIGN KEY (user_id) REFERENCES iam.users(id) ON DELETE CASCADE;
+
+
+--
+-- Name: user_roles FK_dd3c114a87604e137ca5b322192; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.user_roles
+ ADD CONSTRAINT "FK_dd3c114a87604e137ca5b322192" FOREIGN KEY (unit_id) REFERENCES iam.units(id) ON DELETE CASCADE;
+
+
+--
+-- Name: notifications FK_e1491773523ec3be33ee39c69a0; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.notifications
+ ADD CONSTRAINT "FK_e1491773523ec3be33ee39c69a0" FOREIGN KEY (employee_position_id) REFERENCES iam.employee_positions(id);
+
+
+--
+-- Name: default_units FK_e62e6f9687d5f74e1e34b973a01; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.default_units
+ ADD CONSTRAINT "FK_e62e6f9687d5f74e1e34b973a01" FOREIGN KEY (organization_type_id) REFERENCES iam.organization_types(id);
+
+
+--
+-- Name: headers FK_e9921dc6f61df8991523aeab053; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.headers
+ ADD CONSTRAINT "FK_e9921dc6f61df8991523aeab053" FOREIGN KEY (unit_id) REFERENCES iam.units(id);
+
+
+--
+-- Name: organizations FK_f167f65259aa800018ffee8454c; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.organizations
+ ADD CONSTRAINT "FK_f167f65259aa800018ffee8454c" FOREIGN KEY (organization_type_id) REFERENCES iam.organization_types(id);
+
+
+--
+-- Name: organizations FK_f3a7c9411eaa5f9cbc5363de331; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.organizations
+ ADD CONSTRAINT "FK_f3a7c9411eaa5f9cbc5363de331" FOREIGN KEY (parent_id) REFERENCES iam.organizations(id);
+
+
+--
+-- Name: employee_project FK_f3f2bdd1467556e58c38d68129b; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.employee_project
+ ADD CONSTRAINT "FK_f3f2bdd1467556e58c38d68129b" FOREIGN KEY (employee_id) REFERENCES iam.employees(id);
+
+
+--
+-- Name: unit_global_configurations FK_f803c0236bb87e46e5c78be9d33; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.unit_global_configurations
+ ADD CONSTRAINT "FK_f803c0236bb87e46e5c78be9d33" FOREIGN KEY (unit_id) REFERENCES iam.units(id) ON DELETE CASCADE;
+
+
+--
+-- Name: position_permissions FK_f858ea2359eacfd54c5b3edc738; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.position_permissions
+ ADD CONSTRAINT "FK_f858ea2359eacfd54c5b3edc738" FOREIGN KEY (position_id) REFERENCES iam.positions(id) ON DELETE CASCADE;
+
+
+--
+-- Name: locations FK_locations_location_type_id; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.locations
+ ADD CONSTRAINT "FK_locations_location_type_id" FOREIGN KEY (location_type_id) REFERENCES iam.location_types(id);
+
+
+--
+-- Name: locations FK_locations_parent_id; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.locations
+ ADD CONSTRAINT "FK_locations_parent_id" FOREIGN KEY (parent_id) REFERENCES iam.locations(id) ON DELETE CASCADE;
+
+
+--
+-- Name: organization_settings FK_organization_settings_organization_id; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.organization_settings
+ ADD CONSTRAINT "FK_organization_settings_organization_id" FOREIGN KEY (organization_id) REFERENCES iam.organizations(id) ON DELETE CASCADE;
+
+
+--
+-- Name: unit_clusters FK_unit_clusters_location_id; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.unit_clusters
+ ADD CONSTRAINT "FK_unit_clusters_location_id" FOREIGN KEY (location_id) REFERENCES iam.locations(id) ON DELETE CASCADE;
+
+
+--
+-- Name: unit_clusters FK_unit_clusters_unit_id; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.unit_clusters
+ ADD CONSTRAINT "FK_unit_clusters_unit_id" FOREIGN KEY (unit_id) REFERENCES iam.units(id) ON DELETE CASCADE;
+
+
+--
+-- Name: unit_settings FK_unit_settings_unit_id; Type: FK CONSTRAINT; Schema: iam; Owner: -
+--
+
+ALTER TABLE ONLY iam.unit_settings
+ ADD CONSTRAINT "FK_unit_settings_unit_id" FOREIGN KEY (unit_id) REFERENCES iam.units(id) ON DELETE CASCADE;
+
+
+--
+-- PostgreSQL database dump complete
+--
+
+\unrestrict 0o8bki6pbvuFe2vF4akHmx5FVtVGWDmbSMt0LVrbiy8pGUCi8BvhwvzdGRIKMSh
+
diff --git a/packages/types/src/freight/index.ts b/packages/types/src/freight/index.ts
index 618487d91..8f3e65b55 100644
--- a/packages/types/src/freight/index.ts
+++ b/packages/types/src/freight/index.ts
@@ -178,7 +178,7 @@ export enum InvoiceSource {
Demurrage = "demurrage",
FirstMile = "firstmile",
LastMile = "lastmile",
- /** Customs clearance service fee, prepaid before clearance work begins. */
+ /** Customs clearance service fee — billed on the booking invoice with the freight. */
Clearance = "clearance"
}