From f7ae0d5342e504830623f334644d3624109bf161 Mon Sep 17 00:00:00 2001 From: Ricardo Mancinas Date: Sat, 25 Jul 2026 23:05:21 -0700 Subject: [PATCH] feat(reports): parameterized renewal-notice report + legacy report reference MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replaces ~40 legacy Access renewal-notice report clones (one per carrier per coverage tier, e.g. AMPL/RC/LIC RENEW X MES/VENCE ATLAS 13/2013) with one parameterized aviso-renovacion report driven by real Policy/Vehicle/ coveragesJson data instead of hand-typed label text per clone. - schema.prisma: add RenewalNotice, replacing the legacy CONTROL RENEW[2/3] X MES paper log of which notice generation was sent - reports: new "letter" ReportFormat + aviso-renovacion registry entry + LetterLayout renderer in ReportRunner.tsx - docs/RENEWAL_NOTICES.md + migration/legacy_report_defs/: extracted (via Application.SaveAsText, since the VBA project wouldn't load) and documented the legacy report/query chain this replaces Coveragesjson key names and a mark-as-sent mutation are still unverified/ unbuilt — see caveats in docs/RENEWAL_NOTICES.md. Co-Authored-By: Claude Sonnet 5 --- apps/api/src/reports/reports.registry.ts | 203 ++ apps/api/src/reports/reports.types.ts | 6 +- apps/web/src/app/globals.css | 78 + apps/web/src/components/ReportRunner.tsx | 159 ++ apps/web/src/lib/types.ts | 2 +- docs/RENEWAL_NOTICES.md | 139 ++ .../AMPL_RENEW_X_MES_NEW_ATLAS_2013.txt | 1524 +++++++++++++++ .../AMPL_R_RENEW_X_MES_NEW_ATLAS_13.txt | 1479 +++++++++++++++ .../LIC_RENEW_X_VENCE_ATLAS_2013.txt | 1657 +++++++++++++++++ .../RCR_RENEW_X_MES_NEWATLAS_2013.txt | 1466 +++++++++++++++ .../RC_RENEW_X_MES_NEW_ATLAS_13.txt | 1618 ++++++++++++++++ packages/database/prisma/schema.prisma | 30 + 12 files changed, 8358 insertions(+), 3 deletions(-) create mode 100644 docs/RENEWAL_NOTICES.md create mode 100644 migration/legacy_report_defs/AMPL_RENEW_X_MES_NEW_ATLAS_2013.txt create mode 100644 migration/legacy_report_defs/AMPL_R_RENEW_X_MES_NEW_ATLAS_13.txt create mode 100644 migration/legacy_report_defs/LIC_RENEW_X_VENCE_ATLAS_2013.txt create mode 100644 migration/legacy_report_defs/RCR_RENEW_X_MES_NEWATLAS_2013.txt create mode 100644 migration/legacy_report_defs/RC_RENEW_X_MES_NEW_ATLAS_13.txt diff --git a/apps/api/src/reports/reports.registry.ts b/apps/api/src/reports/reports.registry.ts index d759e97..844e999 100644 --- a/apps/api/src/reports/reports.registry.ts +++ b/apps/api/src/reports/reports.registry.ts @@ -598,6 +598,208 @@ const vigente: ReportDef = { }, }; +/** + * AVISO DE RENOVACION — insurance renewal notice. + * + * Replaces ~40 legacy report clones (one per carrier per coverage tier — + * `AMPL R RENEW X MES NEW ATLAS 13`, `... QUALITAS ...`, `LIC RENEW X + * VENCE ATLAS 2013`, etc., see docs/RENEWAL_NOTICES.md) with one + * parameterized report: pick the ramo, the expiry month/year, which + * notice generation (1st/2nd/3rd, mirroring the legacy RENEW/RENEW2/ + * RENEW3 escalation), and optionally a carrier filter. + * + * The legacy reports hardcoded per-policy figures (deductible, CSL limit, + * premium) as static label text re-typed by hand for every new rate/ + * carrier clone. Here they're read from real columns / `coveragesJson` + * (see docs/RENEWAL_NOTICES.md's column-mapping table) so one template + * covers every carrier and tier instead of a clone per combination. + * + * `sentStatus` is read from `RenewalNotice` (schema.prisma) — the + * replacement for the legacy `CONTROL RENEW[2/3] X MES` paper log + * — but this report is read-only; marking a notice as sent is a separate + * mutation (not yet built) that would upsert `RenewalNotice` by + * `[policyId, generation]`. + */ +const avisoRenovacion: ReportDef = { + slug: "aviso-renovacion", + title: "Aviso de renovación", + description: + "Cartas de aviso de renovación para pólizas por vencer en el mes y " + + "año seleccionados, con la generación de aviso (1a/2a/3a) y filtro " + + "opcional por aseguradora. Sustituye a los ~40 reportes clonados por " + + "aseguradora/cobertura de la legacy (ver docs/RENEWAL_NOTICES.md).", + domain: "polizas", + legacyName: + "AMPL R RENEW X MES NEW ATLAS 13 / RC RENEW X MES NEW ATLAS 13 / " + + "LIC RENEW X VENCE ATLAS 2013 / RCR RENEW X MES NEWATLAS 2013 (y " + + "sus clones por aseguradora y cobertura)", + format: "letter", + params: [ + { + key: "policyType", + label: "Ramo", + kind: "select", + options: [ + { value: "AUTO", label: "Auto" }, + { value: "LICENCIAS", label: "Licencias" }, + { value: "INCENDIO", label: "Incendio" }, + { value: "MULT", label: "Multirriesgo" }, + { value: "M_EMPR", label: "M Empresarial" }, + ], + defaultValue: "AUTO", + }, + { + key: "month", + label: "Mes de vencimiento (1-12)", + kind: "number", + defaultValue: String(new Date().getUTCMonth() + 1), + }, + { + key: "year", + label: "Año de vencimiento", + kind: "number", + defaultValue: String(new Date().getUTCFullYear()), + }, + { + key: "generation", + label: "Generación de aviso", + kind: "select", + options: [ + { value: "1", label: "1er aviso" }, + { value: "2", label: "2o aviso" }, + { value: "3", label: "3er aviso" }, + ], + defaultValue: "1", + }, + { + key: "provider", + label: "Aseguradora (opcional)", + kind: "text", + placeholder: "Ej. ATLAS, QUALITAS…", + }, + ], + // Flat columns so CSV/XLSX/generic PDF exports stay useful even though + // the on-screen view renders each row as a full letter (LetterLayout in + // ReportRunner.tsx) — same trade-off edoCuentaDatos makes for "statement". + columns: [ + { key: "policyNumber", label: "Póliza", type: "text" }, + { key: "customerName", label: "Cliente", type: "text" }, + { key: "provider", label: "Aseguradora", type: "text" }, + { key: "policyTo", label: "Vence", type: "date" }, + { key: "netPremium", label: "Prima neta", type: "money", align: "right" }, + { key: "total", label: "Total", type: "money", align: "right" }, + { key: "generation", label: "Generación", type: "number" }, + { key: "sentAt", label: "Enviado", type: "date" }, + ], + async run(prisma, p) { + const typeName = p.policyType ?? "AUTO"; + const month = intParam(p, "month", new Date().getUTCMonth() + 1, 1, 12); + const year = intParam(p, "year", new Date().getUTCFullYear(), 1990, 2100); + const generation = intParam(p, "generation", 1, 1, 3); + const provider = p.provider?.trim(); + + const from = new Date(Date.UTC(year, month - 1, 1)); + const to = new Date(Date.UTC(year, month, 1)); + + const rows = await prisma.policy.findMany({ + where: { + policyType: { name: typeName }, + archivedAt: null, + policyTo: { gte: from, lt: to }, + ...(provider + ? { insuranceProvider: { name: { contains: provider } } } + : {}), + }, + orderBy: { policyTo: "asc" }, + select: { + id: true, + policyNumber: true, + policyTo: true, + netPremium: true, + policyFee: true, + total: true, + currency: true, + coveragesJson: true, + customer: { select: { name: true, nameMissing: true } }, + insuranceProvider: { select: { name: true } }, + vehicles: { + take: 1, + select: { + make: true, + model: true, + modelYear: true, + bodyType: true, + engineNumber: true, + licensePlate: true, + }, + }, + renewalNotices: { + where: { generation }, + select: { sentAt: true, channel: true }, + }, + }, + }); + + let totalPremium = new Prisma.Decimal(0); + let sentCount = 0; + const out = rows.map((r) => { + if (r.netPremium) totalPremium = totalPremium.plus(r.netPremium); + const notice = r.renewalNotices[0]; + if (notice?.sentAt) sentCount++; + // Legacy coverage columns not modeled as first-class Policy fields — + // see docs/RENEWAL_NOTICES.md's column-mapping table. Keys are best- + // effort (derived from the source schema, not yet verified against a + // live migrated DB) — confirm before relying on them in production. + const cov = (r.coveragesJson ?? {}) as Record; + return { + __kind: "letter", + policyId: r.id, + policyNumber: r.policyNumber, + customerName: nameOf(r.customer), + provider: r.insuranceProvider?.name ?? "—", + policyTo: r.policyTo ? r.policyTo.toISOString().slice(0, 10) : "—", + netPremium: r.netPremium ? r.netPremium.toFixed(2) : null, + policyFee: r.policyFee ? r.policyFee.toFixed(2) : null, + total: r.total ? r.total.toFixed(2) : null, + currency: r.currency, + coverageDays: cov.cobertura ?? null, + cslLimit: cov.csl_limite ?? null, + medicalCoverage: cov.gastos_medico ?? null, + propertyDamage: cov.propiedades ?? null, + perPersonLiability: cov.personas ?? null, + additionalService: cov.servicio_adicional ?? cov.servicio_adiconal ?? null, + vehicle: r.vehicles[0] + ? { + make: r.vehicles[0].make, + model: r.vehicles[0].model, + modelYear: r.vehicles[0].modelYear, + bodyType: r.vehicles[0].bodyType, + engineNumber: r.vehicles[0].engineNumber, + licensePlate: r.vehicles[0].licensePlate, + } + : null, + generation, + sentAt: notice?.sentAt + ? notice.sentAt.toISOString().slice(0, 10) + : null, + }; + }); + + return { + rows: out, + totals: { + cartas: out.length, + enviadas: sentCount, + pendientes: out.length - sentCount, + primaTotal: totalPremium.toFixed(2), + }, + subtitle: `Ramo: ${typeName} · vencen ${String(month).padStart(2, "0")}/${year} · generación ${generation}${ + provider ? ` · aseguradora: ${provider}` : "" + } · ${out.length} avisos`, + }; + }, +}; + /** * EDO CUENTA DATOS — per-customer account statement. * Wraps the existing BillingService.statement() output. The full layout @@ -755,6 +957,7 @@ export const REPORTS: ReportDef[] = [ faltantes, reporteDeEfectivo, vigente, + avisoRenovacion, edoCuentaDatos, ]; diff --git a/apps/api/src/reports/reports.types.ts b/apps/api/src/reports/reports.types.ts index a59549e..f6b003b 100644 --- a/apps/api/src/reports/reports.types.ts +++ b/apps/api/src/reports/reports.types.ts @@ -26,8 +26,10 @@ export type ReportDomain = | "estado-cuenta" | "chequera"; -/** How the runner should render rows: a grid, or a per-customer statement. */ -export type ReportFormat = "tabular" | "statement"; +/** How the runner should render rows: a grid, a per-customer statement, or + * one printable letter per row (e.g. renewal notices — see `format: + * "letter"` reports for the `__kind: "letter"` row shape they emit). */ +export type ReportFormat = "tabular" | "statement" | "letter"; /** Filter controls the report's UI should render. */ export type ParamDef = diff --git a/apps/web/src/app/globals.css b/apps/web/src/app/globals.css index 4340d75..ce2f1bd 100644 --- a/apps/web/src/app/globals.css +++ b/apps/web/src/app/globals.css @@ -2660,6 +2660,84 @@ button { margin: 0 0 8px; } +/* Renewal notices (aviso-renovacion) — one card per policy due, see + docs/RENEWAL_NOTICES.md for the legacy report this replaces. */ +.renewal-letters { + display: flex; + flex-direction: column; + gap: 20px; +} +.renewal-letter { + background: var(--surface); + border: 1px solid var(--line); + border-radius: 8px; + padding: 18px 20px; + break-inside: avoid; +} +.renewal-letter-head { + display: flex; + justify-content: space-between; + align-items: flex-start; + border-bottom: 1px solid var(--line); + padding-bottom: 10px; + margin-bottom: 12px; +} +.renewal-letter-title { + font-family: var(--font-display); + font-size: 18px; + font-weight: 600; + color: var(--ink); + margin: 0; +} +.renewal-letter-grid { + display: grid; + grid-template-columns: repeat(4, 1fr); + gap: 12px; + margin-bottom: 12px; +} +.renewal-letter-vehicle { + background: var(--paper-2); + border-radius: 6px; + padding: 10px 12px; + margin-bottom: 12px; +} +.renewal-letter-coverage { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); + gap: 12px; + margin-bottom: 12px; +} +.renewal-letter-coverage-item { + border-left: 2px solid var(--line-strong); + padding-left: 10px; +} +.renewal-letter-value { + font-size: 14px; + font-weight: 600; + color: var(--ink); + margin: 2px 0 0; +} +.renewal-letter-premium { + display: flex; + gap: 20px; + font-size: 14px; + border-top: 1px solid var(--line); + padding-top: 10px; +} +.renewal-letter-total { + font-weight: 700; + color: var(--brand-800); +} +@media print { + .renewal-letter { + page-break-inside: avoid; + page-break-after: always; + } + .renewal-letter:last-child { + page-break-after: auto; + } +} + /* Context buttons (the inline shortcut on existing pages) */ .context-reports { display: flex; diff --git a/apps/web/src/components/ReportRunner.tsx b/apps/web/src/components/ReportRunner.tsx index b27808e..40e46e4 100644 --- a/apps/web/src/components/ReportRunner.tsx +++ b/apps/web/src/components/ReportRunner.tsx @@ -267,6 +267,8 @@ function ResultBlock({ {def.format === "statement" ? ( + ) : def.format === "letter" ? ( + ) : ( )} @@ -472,5 +474,162 @@ function StatementLayout({ result }: { result: ReportRunResult }) { ); } +/* ----------------------------------------------------------- letter layout */ + +const GENERATION_LABEL: Record = { + "1": "1er aviso", + "2": "2o aviso", + "3": "3er aviso", +}; + +interface LetterVehicle { + make?: string | null; + model?: string | null; + modelYear?: string | number | null; + bodyType?: string | null; + engineNumber?: string | null; + licensePlate?: string | null; +} + +/** + * One card per policy due for renewal — the parameterized replacement for + * the ~40 cloned "AVISO DE RENOVACION" Access reports (see + * docs/RENEWAL_NOTICES.md). Coverage figures (CSL limit, medical coverage, + * etc.) come from data (`aviso-renovacion`'s ReportDef reads + * `Policy.coveragesJson`) instead of the legacy's hand-typed label text, so + * one layout renders every carrier/coverage combination. + */ +function LetterLayout({ result }: { result: ReportRunResult }) { + const letters = result.rows.filter((r) => r.__kind === "letter"); + + if (letters.length === 0) { + return ( +
+ No hay pólizas por vencer con los filtros actuales. +
+ ); + } + + return ( +
+ {letters.map((r, i) => { + const vehicle = r.vehicle as LetterVehicle | null; + const generation = String(r.generation ?? "1"); + return ( +
+
+
+

Aviso de renovación

+

+ {GENERATION_LABEL[generation] ?? `Aviso ${generation}`} +

+
+
+ {r.sentAt ? ( + + + Enviado {String(r.sentAt)} + + ) : ( + + + Pendiente + + )} +
+
+ +
+
+

Cliente

+

+ {String(r.customerName ?? "—")} +

+
+
+

Póliza

+

+ {String(r.policyNumber ?? "—")} +

+
+
+

Aseguradora

+

+ {String(r.provider ?? "—")} +

+
+
+

Vence

+

+ {String(r.policyTo ?? "—")} +

+
+
+ + {vehicle && ( +
+

Vehículo asegurado

+

+ {[vehicle.modelYear, vehicle.make, vehicle.model] + .filter(Boolean) + .join(" ")} + {vehicle.bodyType ? ` · ${vehicle.bodyType}` : ""} +

+

+ {[ + vehicle.engineNumber && `Motor: ${vehicle.engineNumber}`, + vehicle.licensePlate && `Placa: ${vehicle.licensePlate}`, + ] + .filter(Boolean) + .join(" · ")} +

+
+ )} + +
+ + + + + +
+ +
+ {r.netPremium && ( + Prima neta: {formatCell(r.netPremium, "money")} + )} + {r.total && ( + + Total: {formatCell(r.total, "money")} {String(r.currency ?? "")} + + )} +
+
+ ); + })} +
+ ); +} + +function CoverageItem({ + label, + value, + money, +}: { + label: string; + value: unknown; + money?: boolean; +}) { + if (value === null || value === undefined || value === "") return null; + return ( +
+

{label}

+

+ {money ? formatCell(value, "money") : String(value)} +

+
+ ); +} + // Hint to the bundler that API_ORIGIN is part of the API surface used here. void API_ORIGIN; diff --git a/apps/web/src/lib/types.ts b/apps/web/src/lib/types.ts index a111143..dc68257 100644 --- a/apps/web/src/lib/types.ts +++ b/apps/web/src/lib/types.ts @@ -1037,7 +1037,7 @@ export type ReportDomain = | "estado-cuenta" | "chequera"; -export type ReportFormat = "tabular" | "statement"; +export type ReportFormat = "tabular" | "statement" | "letter"; /** Param declaration a report exposes to its filter form. */ export type ReportParam = diff --git a/docs/RENEWAL_NOTICES.md b/docs/RENEWAL_NOTICES.md new file mode 100644 index 0000000..79ae794 --- /dev/null +++ b/docs/RENEWAL_NOTICES.md @@ -0,0 +1,139 @@ +# Insurance Renewal Notices ("Atlas" reports) + +Staff refer to this report in the UI as "the Atlas report", but **Atlas +isn't a report — it's a carrier**: `ATLAS, S.A.` is one of the insurance +companies (`COMP` column) SEGUROS brokers policies for, alongside +`QUALITAS, S.A.` and others. The legacy frontend (`SEGUROS 16.mdb`) never +parameterized carrier or coverage tier in its renewal-notice report — it +cloned the entire report + query chain once per carrier per coverage +variant instead. This doc explains that clone pattern and the underlying +workflow so the new platform can replace ~40 cloned Access objects with +one parameterized feature. + +## Why this needed extra tooling + +`objects.json`/`LEGACY_DATABASES_OBJECTS.md` (see `migration/catalog_objects.py`) +only capture report *names* — DAO's catalog interface doesn't expose a +report's `RecordSource` or control layout, only the full Access object +model does, and that model refused to load here +(`"The Visual Basic for Applications project in the database is corrupt"`, +a common failure mode for old .mdb files opened in a newer Access build). + +The workaround: `Application.SaveAsText(acReport, name, path)` exports a +report's complete design as plain text without touching the VBA project. +The raw (binary-blob-stripped) exports for the ATLAS renewal reports are +committed in [`migration/legacy_report_defs/`](../migration/legacy_report_defs/): + +- `AMPL_R_RENEW_X_MES_NEW_ATLAS_13.txt` — Auto/Amplia (full coverage) +- `AMPL_RENEW_X_MES_NEW_ATLAS_2013.txt` — Auto/Amplia, alternate batch +- `RC_RENEW_X_MES_NEW_ATLAS_13.txt` — Auto/RC (liability only) +- `RCR_RENEW_X_MES_NEWATLAS_2013.txt` — Auto/RC, renewal-of-renewal variant +- `LIC_RENEW_X_VENCE_ATLAS_2013.txt` — Driver's-license insurance + +(`PrtDevMode`/`PrtMip`/`OleData`/`GUID` binary properties — printer +settings and object GUIDs, no business meaning — were stripped so the +files are readable text instead of multi-hundred-KB hex dumps.) + +## The report chain + +Each report is bound to a query that layers 2–3 other queries, filtered to +one carrier, with two typed parameters staff fill in every run: + +``` +Report: AMPL R RENEW X MES NEW ATLAS 13 + RecordSource -> Query: AMPL R RENEW CALC ATLAS 13 + FROM [AMPL R CALC VIG], [AMPL R MENS] (in-force calc view + installment schedule) + WHERE COMP = "ATLAS, S.A." + AND DatePart("m",[HASTA]) = [TECLEE MES DE VENCIMIENTO (1 A 12)] -- typed param + AND DatePart("yyyy",[HASTA]) = [TECLEE AÑO DE VENCIMIENTO (1999)] -- typed param +``` + +``` +Report: LIC RENEW X VENCE ATLAS 2013 + RecordSource -> Query of the SAME NAME (query and report share a name) + FROM [LIC MENS], LIC INNER JOIN DATGRAL ... INNER JOIN [VIGENT CASA] ... + WHERE DatePart("m",[hasta]) = [TECLEE MES DE VENCIMIENTO 1 A 12] + AND DatePart("yyyy",[hasta]) = [TECLE AÑO VENCIMIENTO (1999)] + AND LIC.COMP = "ATLAS, S.A." +``` + +Staff pick a line of business, type the expiry month + year, and the +report prints one notice per matching policy for that carrier that month. +On screen the report is captioned **"AVISO DE RENOVACION"** (auto lines) +or **"R E N E W A L N O T I C E"** (license-insurance line). Every page +prints the notice **twice** (identical top-half/bottom-half sections) — +one copy to mail, one for the office file. + +## The multi-notice (reminder) workflow + +Renewal reminders escalate through **three generations**, each its own +report clone, with a matching `CONTROL ...` companion report (a +send/checklist log): + +| Generation | Report suffix | Control/log report | +|---|---|---| +| 1st notice | `RENEW` / (bare) | `CONTROL RENEW X MES` | +| 2nd notice | `RENEW2` | `CONTROL RENEW2 X MES` (or `X MES` sibling) | +| 3rd notice | `RENEW3` | `CONTROL RENEW3 X MES` | + +This pattern repeats per line of business: `AMPL`/`AMPL R` (auto full +coverage), `RC`/`RC R` (auto liability), `LIC` (driver's license), `RCR`, +`MF`/`MF2`/`MF3` (home/multi-risk), `MCA2`, `ME`, `INCEN` (fire) — none of +it is visible from the table schema alone, only from the report/query +names (see `docs/LEGACY_DATABASES_OBJECTS.md`, "What the Reports actually +reveal"). + +## What's hardcoded vs. what's real policy data + +The extracted designs show the letter body mixes two very different kinds +of content: + +1. **Per-policy data**, pulled live from the query: customer id, policy + number, vehicle (make/model/body/engine), expiry date. +2. **Static label text baked into the report design**, re-typed by hand + every time a batch was cloned for a new rate or carrier — e.g. (from + `AMPL_R_RENEW_X_MES_NEW_ATLAS_13.txt`): + - `"COLLISION DEDUCTIBLE $ 500.00 Dls. THEFT DEDUCTIBLE $ 1000.00 Dls. ..."` + - `"New Renewal annual Premium $ 365.25 Dls."` + - `"Total Annual Premium $ 405.25 Dls"` + - the whole CSL/medical-coverage recommendation and rental-car upsell + paragraphs + +None of those dollar figures are formulas — they're literal text, which is +*why* there are so many near-duplicate reports: a new coverage tier or +rate meant cloning the whole report and hand-editing the labels, rather +than changing a parameter. + +The underlying **data these figures should come from already exists** on +the source tables and is preserved (unmapped-but-captured) in +`Policy.coveragesJson` after migration — confirmed against +`docs/LEGACY_DATABASES.md`'s table appendix: + +| Legacy column | Sanitized `coveragesJson` key | Meaning | +|---|---|---| +| `COBERTURA` | `cobertura` | Coverage days/territory tier (30/40/50/365) | +| `CSL LIMITE` | `csl_limite` | Combined single limit (liability) | +| `GASTOS MEDICO` | `gastos_medico` | Medical coverage amount | +| `SERVICIO ADICIONAL` | `servicio_adicional` (LICENCIAS: `servicio_adiconal`, a source typo) | Add-on service flag | +| `PROPIEDADES` | `propiedades` | Property-damage coverage amount | +| `PERSONAS` | `personas` | Per-person liability amount | + +(`Policy.netPremium`/`total`/`currency` are already first-class columns — +see `packages/database/prisma/schema.prisma`.) + +**Migration implication:** a rebuilt renewal notice should render these +from data (one parameterized template), not from report design text. See +`RenewalNotice` in `schema.prisma` and the `aviso-renovacion` entry in +`apps/api/src/reports/reports.registry.ts` for the first cut at this. + +## Caveats + +- Only the ATLAS variants were extracted verbatim; the QUALITAS and + "generic" (no-carrier-suffix) clones weren't pulled but are presumed + structurally identical modulo the `COMP` filter and hardcoded figures. +- `coveragesJson` key names above are derived from + `migration/extract.py`'s `sanitize_column_name` (lowercase, + non-alphanumeric → `_`) applied to the *source* column names in + `docs/LEGACY_DATABASES.md`, not verified against a live migrated + database (no staged output was present in this environment). Confirm + against real data before wiring a template to these keys. diff --git a/migration/legacy_report_defs/AMPL_RENEW_X_MES_NEW_ATLAS_2013.txt b/migration/legacy_report_defs/AMPL_RENEW_X_MES_NEW_ATLAS_2013.txt new file mode 100644 index 0000000..e84ff8b --- /dev/null +++ b/migration/legacy_report_defs/AMPL_RENEW_X_MES_NEW_ATLAS_2013.txt @@ -0,0 +1,1524 @@ +Version =19 +VersionRequired =19 +Checksum =-123705990 +Begin Report + LayoutForPrint = NotDefault + DefaultView =0 + DateGrouping =1 + GrpKeepTogether =1 + PictureAlignment =2 + DatasheetGridlinesBehavior =3 + GridX =24 + GridY =24 + Width =10905 + DatasheetFontHeight =10 + ItemSuffix =155 + Left =600 + Right =9090 + Bottom =5040 + DatasheetGridlinesColor =12632256 + OnNoData ="IMPRESION RENEW NO DATA" + RecSrcDt = Begin + 0xfe87a6af7e3ce440 + End + RecordSource ="AMPL RENEW X MES ATLAS 2013" + DatasheetFontName ="Arial" + PrtMip = + PrtDevMode = + PrtDevNames = + NoSaveCTIWhenDisabled =1 + Begin + Begin Label + BackStyle =0 + FontSize =10 + FontName ="Arial" + End + Begin Image + OldBorderStyle =0 + PictureAlignment =2 + End + Begin CommandButton + FontSize =8 + FontWeight =400 + ForeColor =-2147483630 + FontName ="Tahoma" + End + Begin TextBox + OldBorderStyle =0 + FontSize =10 + FontName ="Arial" + End + Begin UnboundObjectFrame + OldBorderStyle =1 + End + Begin PageHeader + Height =0 + Name ="PageHeader" + GUID = + End + Begin Section + KeepTogether = NotDefault + CanGrow = NotDefault + ForceNewPage =2 + Height =28741 + Name ="Detail" + GUID = + Begin + Begin Image + Width =10905 + Height =14805 + Name ="OLEIndependiente148" + PictureData = Begin + 0x030000002c01cd0208000000094b000002660000f809269a010009000003b631 , + 0x00000e008d08000000000400000003010800050000000b020000000005000000 , + 0x0c02dc03d702070000001604db03d60200000000030000001e00040000002c01 , + 0x000007000000fc020000ffffff000000040000002d0100000c00000040092100 , + 0xf000000000000000240032013800d30008000000fa0200000000000000000000 , + 0x040000002d010100040000002d010000040000002701ffff030000001e000400 , + 0x00002c0100000400000002010100040000002e01180005000000090200000002 , + 0x1c000000fb02f5ff00000000000090010000000107400022417269616c000000 , + 0x000000000000000000000000000000000000000000000000040000002d010200 , + 0x13000000320a4700f4000800000054656c3a2030313106000600020003000300 , + 0x060006000600040000002d01020009000000320a47001a01010000002dd40400 , + 0x040000002d0102000a000000320a47001e010200000035320600060004000000 , + 0x2d01020009000000320a47002a01010000002dd40400040000002d0102000f00 , + 0x0000320a47002e01050000002836363129000400060006000500040004000000 , + 0x2d01020009000000320a47004701010000002dd40400040000002d0102000c00 , + 0x0000320a47004b010300000036313200060006000500040000002d0102000900 , + 0x0000320a47005c01010000002dd40400040000002d01020021000000320a4700 , + 0x60011100000031323935202a204661783a202836363129010600060006000600 , + 0x0300040003000600060006000300020004000600060006000300040000002d01 , + 0x020009000000320a4700b201010000002dd40400040000002d0102000c000000 , + 0x320a4700b6010300000036313200060006000600040000002d01020009000000 , + 0x320a4700c801010000002dd40400040000002d0102000d000000320a4700cc01 , + 0x04000000313238350600060005000600040000002d01020009000000320a4700 , + 0xe3010100000020d405001c000000fb02f5ff000000000000bc02000000010740 , + 0x0022417269616c00000000000000000000000000000000000000000000000000 , + 0x0000040000002d01030034000000320a530014011e000000456d61696c3a2049 , + 0x6e737572616e6365407061636e65742e636f6d2e6d7806000b00060003000300 , + 0x030003000300060007000600050006000600050007000a000700060006000600 , + 0x060004000300060006000a0002000b000600040000002d01030009000000320a , + 0x5300c3010100000020d40500040000002d0101001c000000fb02100007000000 , + 0x0000bc02000000000102022253797374656d005b9701c47f2800c70100007a28 , + 0xf6bf00005021bcef620054d4040000002d010400040000002701ffff03000000 , + 0x1e00040000002c010000040000002d0100000c00000040092100f00000000000 , + 0x00003000ae0002001501040000002d010100040000002d010000040000002701 , + 0xffff030000001e00040000002c0100000400000002010100040000002e011800 , + 0x05000000090200000002040000002d01020033000000320a110019011d000000 , + 0x5175696e746120506c617a612053686f7070696e672043656e74657220780800 , + 0x0600020006000300060004000600020006000600060003000700060006000600 , + 0x060002000600060003000700060006000300060004000300040000002d010200 , + 0x2e000000320a1e0019011a000000737569746520332050422e20536f75746820 , + 0x4275696c64696e67060006000200030006000300060003000600070003000300 , + 0x0700060006000300060003000700060002000200070002000600060004000000 , + 0x2d01020009000000320a1e0094010100000020d40600040000002d0102003600 , + 0x0000320a2b0019011f000000323237313020506c6179617320646520526f7361 , + 0x7269746f2c20422e20432ea00600060006000600060003000600020006000600 , + 0x0600060003000600060003000700060006000600040002000300060003000300 , + 0x07000300030007000300040000002d01020009000000320a2b00b10101000000 , + 0x20d40600040000002d010100040000002d010400040000002701ffff03000000 , + 0x1e00040000002c010000040000002d0100000c00000040092100f00000000000 , + 0x00001a00f30001000100040000002d010100040000002d010000040000002701 , + 0xffff030000001e00040000002c0100000400000002010100040000002e011800 , + 0x050000000902000000021c000000fb02f3ff0000000000009001000000010740 , + 0x001254696d6573204e657720526f6d616e000000000000000000000000000000 , + 0x0000040000002d0105001f000000320a11002700100000004a4f52474520482e , + 0x2043554144524f5308000c000c000c000a0006000c00060007000b000c000d00 , + 0x0c000c000c000a00040000002d01050009000000320a1100ce000100000020d4 , + 0x0a00040000002d010100040000002d010400040000002701ffff030000001e00 , + 0x040000002c010000070000001604db03d60200000000030000001e0004000000 , + 0x2c010000040000002d0100000c00000040092100f00000000000000013005f00 , + 0xda000100040000002d010100040000002d010000040000002701ffff04000000 , + 0x2c0100000400000002010100040000002e011800050000000902000000021c00 , + 0x0000fb02f6ff000000000000bc02010000010740001254696d6573204e657720 , + 0x526f6d616e0000000000000000000000000000000000040000002d0106001800 , + 0x0000320ae60015000b0000004163636f756e74204e6f2e000700040004000500 , + 0x0600060003000300070005000300040000002d01060009000000320ae6004a00 , + 0x0100000020d40400070000001604db03d60200000000040000002d0101000400 , + 0x00002d010400030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f00000000000000013005500da006000040000002d01010004000000 , + 0x2d010000040000002701ffff040000002c010000040000002d0106000d000000 , + 0x320ae6007c0004000000434f44450700070007000700040000002d0106000900 , + 0x0000320ae60098000100000020d40500070000001604db03d602000000000400 , + 0x00002d010100040000002d010400030000001e00040000002c01000004000000 , + 0x2d0100000c00000040092100f0000000000000001300b600da00b50004000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000004000000 , + 0x2d01060021000000320ae600d80011000000494e535552414e434520434f4d50 , + 0x414e590104000700060007000700070007000700060003000700070009000600 , + 0x070006000700040000002d01060009000000320ae60046010100000020d40400 , + 0x070000001604db03d60200000000040000002d010100040000002d0104000300 , + 0x00001e00040000002c010000040000002d0100000c00000040092100f0000000 , + 0x0000000013006700da006b01040000002d010100040000002d01000004000000 , + 0x2701ffff040000002c010000040000002d01060013000000320ae60084010800 , + 0x0000445545204441544507000700070003000700070006000700040000002d01 , + 0x060009000000320ae600b7010100000020d40400070000001604db03d6020000 , + 0x0000040000002d010100040000002d010400030000001e00040000002c010000 , + 0x040000002d0100000c00000040092100f00000000000000013005700da00d201 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x040000002d01060010000000320ae600e9010600000043524544495407000700 , + 0x0700070004000600040000002d01060009000000320ae6000f020100000020d4 , + 0x0400070000001604db03d60200000000040000002d010100040000002d010400 , + 0x030000001e00040000002c010000040000002d0100000c00000040092100f000 , + 0x00000000000013005600da002902040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c010000040000002d01060010000000320ae6003d02 , + 0x06000000434841524745070008000700070007000700040000002d0106000900 , + 0x0000320ae60068020100000020d40400070000001604db03d602000000000400 , + 0x00002d010100040000002d010400030000001e00040000002c01000004000000 , + 0x2d0100000c00000040092100f00000000000000013005600da007f0204000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000004000000 , + 0x2d01060012000000320ae60091020700000042414c414e434500070007000600 , + 0x0700070007000700040000002d01060009000000320ae600c1020100000020d4 , + 0x0400070000001604db03d60200000000040000002d010100040000002d010400 , + 0x030000001e00040000002c010000040000002d0100000c00000040092100f000 , + 0x00000000000018005f00ed000100040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c0100001c000000fb02f7ff00000000000090010000 , + 0x00010740001254696d6573204e657720526f6d616e0000000000000000000000 , + 0x000000000000040000002d01070009000000320afd0005000100000020d40400 , + 0x070000001604db03d60200000000040000002d010100040000002d0104000300 , + 0x00001e00040000002c010000040000002d0100000c00000040092100f0000000 , + 0x0000000018005500ed006000040000002d010100040000002d01000004000000 , + 0x2701ffff040000002c010000040000002d01070009000000320afd0063000100 , + 0x000020d40400070000001604db03d60200000000040000002d01010004000000 , + 0x2d010400030000001e00040000002c010000040000002d0100000c0000004009 , + 0x2100f0000000000000001800b600ed00b500040000002d010100040000002d01 , + 0x0000040000002701ffff040000002c010000040000002d01070009000000320a , + 0xfd00b8000100000020d40400070000001604db03d60200000000040000002d01 , + 0x0100040000002d010400030000001e00040000002c010000040000002d010000 , + 0x0c00000040092100f00000000000000018006700ed006b01040000002d010100 , + 0x040000002d010000040000002701ffff040000002c010000040000002d010700 , + 0x09000000320afd006e010100000020d40400070000001604db03d60200000000 , + 0x040000002d010100040000002d010400030000001e00040000002c0100000400 , + 0x00002d0100000c00000040092100f00000000000000018005700ed00d2010400 , + 0x00002d010100040000002d010000040000002701ffff040000002c0100000400 , + 0x00002d01070009000000320afd00d5010100000020d40400070000001604db03 , + 0xd60200000000040000002d010100040000002d010400030000001e0004000000 , + 0x2c010000040000002d0100000c00000040092100f00000000000000018005600 , + 0xed002902040000002d010100040000002d010000040000002701ffff04000000 , + 0x2c010000040000002d01070009000000320afd002b020100000020d404000700 , + 0x00001604db03d60200000000040000002d010100040000002d01040003000000 , + 0x1e00040000002c010000040000002d0100000c00000040092100f00000000000 , + 0x000018005600ed007f02040000002d010100040000002d010000040000002701 , + 0xffff040000002c010000040000002d01070009000000320afd00820201000000 , + 0x20d40400070000001604db03d60200000000040000002d010100040000002d01 , + 0x0400030000001e00040000002c010000040000002d0100000c00000040092100 , + 0xf00000000000000018005f0005010100040000002d010100040000002d010000 , + 0x040000002701ffff040000002c010000040000002d01070009000000320a1301 , + 0x05000100000020d40400070000001604db03d60200000000040000002d010100 , + 0x040000002d010400030000001e00040000002c010000040000002d0100000c00 , + 0x000040092100f0000000000000001800550005016000040000002d0101000400 , + 0x00002d010000040000002701ffff040000002c010000040000002d0107000900 , + 0x0000320a130164000100000020d40400070000001604db03d602000000000400 , + 0x00002d010100040000002d010400030000001e00040000002c01000004000000 , + 0x2d0100000c00000040092100f0000000000000001800b6000501b50004000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000004000000 , + 0x2d01070009000000320a1301b9000100000020d40400070000001604db03d602 , + 0x00000000040000002d010100040000002d010400030000001e00040000002c01 , + 0x0000040000002d0100000c00000040092100f000000000000000180067000501 , + 0x6b01040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x0000040000002d01070009000000320a13016f010100000020d4040007000000 , + 0x1604db03d60200000000040000002d010100040000002d010400030000001e00 , + 0x040000002c010000040000002d0100000c00000040092100f000000000000000 , + 0x180057000501d201040000002d010100040000002d010000040000002701ffff , + 0x040000002c0100001c000000fb02edff00000000000090010000000107400022 , + 0x417269616c000000000000000000000000000000000000000000000000000000 , + 0x040000002d01080009000000320a1c0125020100000020d40a00070000001604 , + 0xdb03d60200000000040000002d010100040000002d010400030000001e000400 , + 0x00002c010000040000002d0100000c00000040092100f0000000000000001800 , + 0x560005012902040000002d010100040000002d010000040000002701ffff0400 , + 0x00002c010000040000002d01020010000000320a1901500206000000546f7461 , + 0x6c200600060003000600020003001c000000fb02f0ff000000000000f4010000 , + 0x0002074000024d61726c65747400000000000000000000000000000000000000 , + 0x000000000000040000002d01090009000000320a19016a020100000034011000 , + 0x1c000000fb02f4ff00000000000090010000000107400022417269616c000000 , + 0x000000000000000000000000000000000000000000000000040000002d010a00 , + 0x09000000320a19017a020100000020d40700070000001604db03d60200000000 , + 0x040000002d010100040000002d010400030000001e00040000002c0100000400 , + 0x00002d0100000c00000040092100f0000000000000001800560005017f020400 , + 0x00002d010100040000002d010000040000002701ffff040000002c0100000400 , + 0x00002d01070009000000320a150183020100000020d40400070000001604db03 , + 0xd60200000000040000002d010100040000002d010400030000001e0004000000 , + 0x2c01000007000000fc020000000000000000040000002d010b000c0000004009 , + 0x2100f00000000000000013000100da000100040000002d010100040000002d01 , + 0x0000040000002701ffff040000002c010000070000001604db03d60200000000 , + 0x030000001e00040000002c010000040000002d010b000c00000040092100f000 , + 0x0000000000002a000100da006000040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c010000070000001604db03d6020000000003000000 , + 0x1e00040000002c010000040000002d010b000c00000040092100f00000000000 , + 0x00002a000100da00b500040000002d010100040000002d010000040000002701 , + 0xffff040000002c010000070000001604db03d60200000000030000001e000400 , + 0x00002c010000040000002d010b000c00000040092100f0000000000000002a00 , + 0x0100da006b01040000002d010100040000002d010000040000002701ffff0400 , + 0x00002c010000070000001604db03d60200000000030000001e00040000002c01 , + 0x0000040000002d010b000c00000040092100f0000000000000002a000100da00 , + 0xd201040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x0000070000001604db03d60200000000030000001e00040000002c0100000400 , + 0x00002d010b000c00000040092100f00000000000000043000100da0028020400 , + 0x00002d010100040000002d010000040000002701ffff040000002c0100000700 , + 0x00001604db03d60200000000030000001e00040000002c010000040000002d01 , + 0x0b000c00000040092100f0000000000000002a000100da007f02040000002d01 , + 0x0100040000002d010000040000002701ffff040000002c010000070000001604 , + 0xdb03d60200000000030000001e00040000002c010000040000002d010b000c00 , + 0x000040092100f00000000000000013000100da00d402040000002d0101000400 , + 0x00002d010000040000002701ffff040000002c010000070000001604db03d602 , + 0x00000000030000001e00040000002c010000040000002d010b000c0000004009 , + 0x2100f00000000000000018000200ed000100040000002d010100040000002d01 , + 0x0000040000002701ffff040000002c010000070000001604db03d60200000000 , + 0x030000001e00040000002c010000040000002d010b000c00000040092100f000 , + 0x0000000000002f000200ed00d302040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c010000070000001604db03d6020000000003000000 , + 0x1e00040000002c010000040000002d010b000c00000040092100f00000000000 , + 0x00001600020005017f02040000002d010100040000002d010000040000002701 , + 0xffff040000002c010000070000001604db03d60200000000030000001e000400 , + 0x00002c010000040000002d010b000c00000040092100f0000000000000000100 , + 0xd402da000100040000002d010100040000002d010000040000002701ffff0400 , + 0x00002c010000070000001604db03d60200000000030000001e00040000002c01 , + 0x0000040000002d010b000c00000040092100f0000000000000000200d402ec00 , + 0x0100040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x0000070000001604db03d60200000000030000001e00040000002c0100000400 , + 0x00002d010b000c00000040092100f0000000000000000200d302040101000400 , + 0x00002d010100040000002d010000040000002701ffff040000002c0100000700 , + 0x00001604db03d60200000000030000001e00040000002c010000040000002d01 , + 0x0b000c00000040092100f000000000000000010057001c012802040000002d01 , + 0x0100040000002d010000040000002701ffff040000002c010000070000001604 , + 0xdb03d60200000000030000001e00040000002c010000040000002d010b000c00 , + 0x000040092100f000000000000000020056001b017f02040000002d0101000400 , + 0x00002d010000040000002701ffff040000002c010000040000002701ffff0300 , + 0x00001e00040000002c0100000400000002010100040000002e01180004000000 , + 0xf001030004000000f0010500050000000902000000021c000000fb02f3ff0000 , + 0x00000000bc020000000107400022417269616c00000000000000000000000000 , + 0x0000000000000000000000000000040000002d0103000f000000320a43002402 , + 0x05000000446174653a00090008000400080004001c000000fb02f3ff00000000 , + 0x000090010000000107400022417269616c000000000000000000000000000000 , + 0x000000000000000000000000040000002d01050009000000320a430045020100 , + 0x000020d40f00040000002d01030009000000320a430054020100000020d40700 , + 0x040000002d010100040000002d010400040000002701ffff030000001e000400 , + 0x00002c010000040000002d0100000c00000040092100f0000000000000001200 , + 0xe9009e020900040000002d010100040000002d010000040000002701ffff0300 , + 0x00001e00040000002c0100000400000002010100040000002e01180004000000 , + 0xf0010600050000000902000000021c000000fb02f5ff00000000000090010000 , + 0x00010740001254696d6573204e657720526f6d616e0000000000000000000000 , + 0x000000000000040000002d0106001f000000320aad023b00100000004a4f5247 , + 0x4520482e2043554144524f5306000a0009000900090005000a00050005000900 , + 0x0a000a000a0009000a000700040000002d01060009000000320aad02c0000100 , + 0x000020d40800040000002d010100040000002d010400040000002701ffff0300 , + 0x00001e00040000002c01000008000000fa020000010000000000000004000000 , + 0x2d010c0007000000fc020100000000000000040000002d010d000c0000002403 , + 0x0400010006000100ea02d502ea02d5020600040000002d01010004000000f001 , + 0x0c00040000002d010100040000002d010000040000002701ffff030000001e00 , + 0x040000002c01000008000000fa02000001000000ffffff00040000002d010c00 , + 0x040000002d010d000c00000024030400c1016300c1019f00ce029f00ce026300 , + 0x040000002d01010004000000f0010c00040000002d010100040000002d010000 , + 0x040000002701ffff030000001e00040000002c01000004000000020101000400 , + 0x00002e01180005000000090200000002040000002d0102001f000000320a7200 , + 0xc501100000004d41494c494e4720414444524553533a08000800020007000300 , + 0x07000800030008000700080008000600070007000300040000002d0102000900 , + 0x0000320a720029020100000020d40700040000002d01040004000000f0010800 , + 0x1c000000fb02f5ff000000000000bc020000000107400022417269616c000000 , + 0x000000000000000000000000000000000000000000000000040000002d010800 , + 0x1f000000320a7e00c501100000004a4f52474520482e2043554144524f530600 , + 0x0800070009000600040007000300030008000700090007000800080007000400 , + 0x00002d01080009000000320a7e0030020100000020d40700040000002d010200 , + 0x1b000000320a8a00c5010d000000504f20424f58203433373131300006000800 , + 0x04000700080007000300060006000600060006000600040000002d0102000900 , + 0x0000320a8a0014020100000020d40700040000002d01020027000000320a9600 , + 0xc5011500000053414e2059534944524f2c2043412e203932313433d407000800 , + 0x0700030008000700020008000700080003000300070008000300030006000600 , + 0x060006000600040000002d01020009000000320a96003f02010000002dd40400 , + 0x040000002d0102000d000000320a960043020400000037313130060006000600 , + 0x0600040000002d01020009000000320a96005b020100000020d4050004000000 , + 0x2d010100040000002d010400040000002701ffff030000001e00040000002c01 , + 0x00000400000002010100040000002e01180004000000f0010900050000000902 , + 0x000000021c000000fb02f9ff0000000000009001000000010740002241726961 , + 0x6c00000000000000000000000000000000000000000000000000000004000000 , + 0x2d01090045000000320adf02130129000000504c45415345204b454550205448 , + 0x495320504f5254494f4e20464f5220594f5552205245434f5244530005000400 , + 0x0400050004000500010005000400050004000200040005000200050001000500 , + 0x0500040005000200050005000200040005000500010005000500050005000200 , + 0x0400050005000500050004000500040000002d01090009000000320adf02bb01 , + 0x0100000020d40300040000002d010100040000002d010400040000002701ffff , + 0x030000001e00040000002c0100000400000002010100040000002e0118000400 , + 0x0000f001070005000000090200000002040000002d010a002d000000320ab400 , + 0x1a021900000024205f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f2046 , + 0x0700030007000700070006000700070006000700070006000700070006000700 , + 0x0700070006000700070006000700070002001c000000fb02f4ff000000000000 , + 0xbc020000000107400022417269616c0000000000000000000000000000000000 , + 0x00000000000000000000040000002d01070016000000320ac20041020a000000 , + 0x414d4f554e542044554508000a000a0008000900070004000800090007000400 , + 0x00002d010a0009000000320ac20091020100000020d40700040000002d010100 , + 0x040000002d010400040000002701ffff030000001e00040000002c0100000400 , + 0x00002d010b000c00000040092100f0000000000000001a002702ba0201000400 , + 0x00002d010100040000002d010000040000002701ffff030000001e0004000000 , + 0x2c0100000400000002010100040000002e011800050000000902ffffff020400 , + 0x00002d01070040000000320ac9022100260000004641494c55524520544f2052 , + 0x4553504f4e442057494c4c20524553554c5420494e204e4f4e20070008000400 , + 0x0700090009000700040007000900040009000700080008000a00090008000300 , + 0x0c00030007000800030009000700090008000800070003000400080004000800 , + 0x0a0008000300040000002d01070009000000320ac9022b01010000002dd40500 , + 0x040000002d01070030000000320ac90230011b0000002052454e4557414c204f , + 0x4620544845534520434f5645524147455355030009000800090007000c000800 , + 0x080003000a000700030008000900070009000700040008000900090008000900 , + 0x0900090007000800040000002d01070009000000320ac902ff010100000020d4 , + 0x080005000000090200000002040000002d010100040000002d01040004000000 , + 0x2701ffff030000001e00040000002c010000040000002d010b000c0000004009 , + 0x2100f0000000000000001a00b300ba022202040000002d010100040000002d01 , + 0x0000040000002701ffff030000001e00040000002c0100000400000002010100 , + 0x040000002e01180004000000f0010500050000000902ffffff021c000000fb02 , + 0xf6ff000000000000bc020000000107400022417269616c000000000000000000 , + 0x000000000000000000000000000000000000040000002d01050031000000320a , + 0xc70238021c000000414c4c20414d4f554e54532041524520494e20552e20532e , + 0x2043792e07000600060003000700090008000700070005000700030007000700 , + 0x0700030003000700030007000300030007000300030007000500030004000000 , + 0x2d01050009000000320ac702d1020100000020d4060005000000090200000002 , + 0x040000002d010100040000002d010400040000002701ffff030000001e000400 , + 0x00002c0100000400000002010100040000002e01180004000000f00103000500 , + 0x00000902000000021c000000fb02f1ff00000000000090010100000107400052 , + 0x4861726c6f7720536f6c6964204974616c696300000000000000000000000000 , + 0x040000002d01030015000000320ae3025b02090000005468616e6b20596f75d6 , + 0x0b00070007000800060004000d0006000700040000002d01030009000000320a , + 0xe302a0020100000020d40700040000002d010100040000002d01040004000000 , + 0x2701ffff030000001e00040000002c010000040000002d0100000c0000004009 , + 0x2100f000000000000000300032013203d300040000002d010100040000002d01 , + 0x0000040000002701ffff030000001e00040000002c0100000400000002010100 , + 0x040000002e01180005000000090200000002040000002d01080013000000320a , + 0x4103f3000800000054656c3a2030313106000700030003000300060006000600 , + 0x040000002d01080009000000320a41031b01010000002dd40400040000002d01 , + 0x08000a000000320a41031f0102000000353206000600040000002d0108000900 , + 0x0000320a41032b01010000002dd40300040000002d0108000f000000320a4103 , + 0x2e010500000028363631290004000600060006000300040000002d0108000900 , + 0x0000320a41034701010000002dd40400040000002d0108000c000000320a4103 , + 0x4b010300000036313200060006000600040000002d01080009000000320a4103 , + 0x5d01010000002dd40300040000002d01080021000000320a4103600111000000 , + 0x31323935202a204661783a202836363129010600060006000600030004000300 , + 0x0600060006000300030004000600060006000400040000002d01080009000000 , + 0x320a4103b401010000002dd40400040000002d0108000c000000320a4103b801 , + 0x0300000036313200060006000500040000002d01080009000000320a4103c901 , + 0x010000002dd40400040000002d0108000d000000320a4103cd01040000003132 , + 0x38350600060006000600040000002d01080009000000320a4103e50101000000 , + 0x20d40500040000002d01080034000000320a4e0314011e000000456d61696c3a , + 0x20496e737572616e6365407061636e65742e636f6d2e6d7806000b0006000300 , + 0x0300030003000300060007000600050006000600050007000a00070006000600 , + 0x0600060004000300060006000a0002000b000600040000002d01080009000000 , + 0x320a4e03c3010100000020d40500040000002d010100040000002d0104000400 , + 0x00002701ffff030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f0000000000000003000ae00fc021501040000002d01010004000000 , + 0x2d010000040000002701ffff030000001e00040000002c010000040000000201 , + 0x0100040000002e01180005000000090200000002040000002d01020033000000 , + 0x320a0b0319011d0000005175696e746120506c617a612053686f7070696e6720 , + 0x43656e7465722078080006000200060003000600040006000200060006000600 , + 0x0300070006000600060006000200060006000300070006000600030006000400 , + 0x0300040000002d0102002e000000320a180319011a0000007375697465203320 , + 0x50422e20536f757468204275696c64696e670600060002000300060003000600 , + 0x0300060007000300030007000600060003000600030007000600020002000700 , + 0x020006000600040000002d01020009000000320a180394010100000020d40600 , + 0x040000002d01020036000000320a250319011f000000323237313020506c6179 , + 0x617320646520526f73617269746f2c20422e20432ea006000600060006000600 , + 0x0300060002000600060006000600030006000600030007000600060006000400 , + 0x0200030006000300030007000300030007000300040000002d01020009000000 , + 0x320a2503b1010100000020d40600040000002d010100040000002d0104000400 , + 0x00002701ffff030000001e00040000002c010000070000001604db03d6020000 , + 0x0000030000001e00040000002c010000040000002d0100000c00000040092100 , + 0xf00000000000000013005f00a1030100040000002d010100040000002d010000 , + 0x040000002701ffff040000002c0100000400000002010100040000002e011800 , + 0x04000000f0010600050000000902000000021c000000fb02f6ff000000000000 , + 0xbc02010000010740001254696d6573204e657720526f6d616e00000000000000 , + 0x00000000000000000000040000002d01060018000000320aad0315000b000000 , + 0x4163636f756e74204e6f2e000700040004000500060006000300030007000500 , + 0x0300040000002d01060009000000320aad034a000100000020d4040007000000 , + 0x1604db03d60200000000040000002d010100040000002d010400030000001e00 , + 0x040000002c010000040000002d0100000c00000040092100f000000000000000 , + 0x13005500a1036000040000002d010100040000002d010000040000002701ffff , + 0x040000002c010000040000002d0106000d000000320aad037c0004000000434f , + 0x44450700070007000700040000002d01060009000000320aad03980001000000 , + 0x20d40500070000001604db03d60200000000040000002d010100040000002d01 , + 0x0400030000001e00040000002c010000040000002d0100000c00000040092100 , + 0xf0000000000000001300b600a103b500040000002d010100040000002d010000 , + 0x040000002701ffff040000002c010000040000002d01060021000000320aad03 , + 0xd80011000000494e535552414e434520434f4d50414e59010400070006000700 , + 0x0700070007000700060003000700070009000600070006000700040000002d01 , + 0x060009000000320aad0346010100000020d40400070000001604db03d6020000 , + 0x0000040000002d010100040000002d010400030000001e00040000002c010000 , + 0x040000002d0100000c00000040092100f00000000000000013006700a1036b01 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x040000002d01060013000000320aad0384010800000044554520444154450700 , + 0x0700070003000700070006000700040000002d01060009000000320aad03b701 , + 0x0100000020d40400070000001604db03d60200000000040000002d0101000400 , + 0x00002d010400030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f00000000000000013005700a103d201040000002d01010004000000 , + 0x2d010000040000002701ffff040000002c010000040000002d01060010000000 , + 0x320aad03e9010600000043524544495407000700070007000400060004000000 , + 0x2d01060009000000320aad030f020100000020d40400070000001604db03d602 , + 0x00000000040000002d010100040000002d010400030000001e00040000002c01 , + 0x0000040000002d0100000c00000040092100f00000000000000013005600a103 , + 0x2902040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x0000040000002d01060010000000320aad033d02060000004348415247450700 , + 0x08000700070007000700040000002d01060009000000320aad03680201000000 , + 0x20d40400070000001604db03d60200000000040000002d010100040000002d01 , + 0x0400030000001e00040000002c010000040000002d0100000c00000040092100 , + 0xf00000000000000013005600a1037f02040000002d010100040000002d010000 , + 0x040000002701ffff040000002c010000040000002d01060012000000320aad03 , + 0x91020700000042414c414e434500070007000600070007000700070004000000 , + 0x2d01060009000000320aad03c1020100000020d40400070000001604db03d602 , + 0x00000000040000002d010100040000002d010400030000001e00040000002c01 , + 0x0000040000002d0100000c00000040092100f00000000000000015005f00b403 , + 0x0100040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x000004000000f00109001c000000fb02f7ff0000000000009001000000010740 , + 0x001254696d6573204e657720526f6d616e000000000000000000000000000000 , + 0x0000040000002d01090009000000320ac20305000100000020d4040007000000 , + 0x1604db03d60200000000040000002d010100040000002d010400030000001e00 , + 0x040000002c010000040000002d0100000c00000040092100f000000000000000 , + 0x15005500b4036000040000002d010100040000002d010000040000002701ffff , + 0x040000002c010000040000002d01090009000000320ac20363000100000020d4 , + 0x0400070000001604db03d60200000000040000002d010100040000002d010400 , + 0x030000001e00040000002c010000040000002d0100000c00000040092100f000 , + 0x0000000000001500b600b403b500040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c010000040000002d01090009000000320ac203b800 , + 0x0100000020d40400070000001604db03d60200000000040000002d0101000400 , + 0x00002d010400030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f00000000000000015006700b4036b01040000002d01010004000000 , + 0x2d010000040000002701ffff040000002c010000040000002d01090009000000 , + 0x320ac2036e010100000020d40400070000001604db03d6020000000004000000 , + 0x2d010100040000002d010400030000001e00040000002c010000040000002d01 , + 0x00000c00000040092100f00000000000000015005700b403d201040000002d01 , + 0x0100040000002d010000040000002701ffff040000002c010000040000002d01 , + 0x090009000000320ac203d5010100000020d40400070000001604db03d6020000 , + 0x0000040000002d010100040000002d010400030000001e00040000002c010000 , + 0x040000002d0100000c00000040092100f00000000000000015005600b4032902 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x040000002d01090009000000320ac2032b020100000020d40400070000001604 , + 0xdb03d60200000000040000002d010100040000002d010400030000001e000400 , + 0x00002c010000040000002d0100000c00000040092100f0000000000000001500 , + 0x5600b4037f02040000002d010100040000002d010000040000002701ffff0400 , + 0x00002c010000040000002d01090009000000320ac20382020100000020d40400 , + 0x070000001604db03d60200000000040000002d010100040000002d0104000300 , + 0x00001e00040000002c010000040000002d010b000c00000040092100f0000000 , + 0x0000000013000100a1030100040000002d010100040000002d01000004000000 , + 0x2701ffff040000002c010000070000001604db03d60200000000030000001e00 , + 0x040000002c010000040000002d010b000c00000040092100f000000000000000 , + 0x26000100a2036000040000002d010100040000002d010000040000002701ffff , + 0x040000002c010000070000001604db03d60200000000030000001e0004000000 , + 0x2c010000040000002d010b000c00000040092100f00000000000000026000100 , + 0xa203b500040000002d010100040000002d010000040000002701ffff04000000 , + 0x2c010000070000001604db03d60200000000030000001e00040000002c010000 , + 0x040000002d010b000c00000040092100f00000000000000026000100a2036b01 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x070000001604db03d60200000000030000001e00040000002c01000004000000 , + 0x2d010b000c00000040092100f00000000000000026000100a203d20104000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000007000000 , + 0x1604db03d60200000000030000001e00040000002c010000040000002d010b00 , + 0x0c00000040092100f00000000000000026000100a2032802040000002d010100 , + 0x040000002d010000040000002701ffff040000002c010000070000001604db03 , + 0xd60200000000030000001e00040000002c010000040000002d010b000c000000 , + 0x40092100f00000000000000026000100a2037f02040000002d01010004000000 , + 0x2d010000040000002701ffff040000002c010000070000001604db03d6020000 , + 0x0000030000001e00040000002c010000040000002d010b000c00000040092100 , + 0xf00000000000000013000100a103d402040000002d010100040000002d010000 , + 0x040000002701ffff040000002c010000070000001604db03d602000000000300 , + 0x00001e00040000002c010000040000002d010b000c00000040092100f0000000 , + 0x0000000014000200b4030100040000002d010100040000002d01000004000000 , + 0x2701ffff040000002c010000070000001604db03d60200000000030000001e00 , + 0x040000002c010000040000002d010b000c00000040092100f000000000000000 , + 0x14000200b403d302040000002d010100040000002d010000040000002701ffff , + 0x040000002c010000070000001604db03d60200000000030000001e0004000000 , + 0x2c010000040000002d010b000c00000040092100f0000000000000000100d402 , + 0xa1030100040000002d010100040000002d010000040000002701ffff04000000 , + 0x2c010000070000001604db03d60200000000030000001e00040000002c010000 , + 0x040000002d010b000c00000040092100f0000000000000000200d402b3030100 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x070000001604db03d60200000000030000001e00040000002c01000004000000 , + 0x2d010b000c00000040092100f0000000000000000200d402c703010004000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000004000000 , + 0x2701ffff030000001e00040000002c01000008000000fa02000001000000ffff , + 0xff00040000002d010c00040000002d010d000c000000240304005c015e035c01 , + 0x9a0306029a0306025e03040000002d01010004000000f0010c00040000002d01 , + 0x0100040000002d010000040000002701ffff030000001e00040000002c010000 , + 0x0400000002010100040000002e01180005000000090200000002040000002d01 , + 0x02001f000000320a6e036101100000004d41494c494e4720414444524553533a , + 0x0800080002000700030007000800030008000700080008000600070007000300 , + 0x040000002d01020009000000320a6e03c5010100000020d40700040000002d01 , + 0x08001f000000320a7a036101100000004a4f52474520482e2043554144524f53 , + 0x0600080007000900060004000700030003000800070009000700080008000700 , + 0x040000002d01080009000000320a7a03cc010100000020d40700040000002d01 , + 0x02001b000000320a860361010d000000504f20424f5820343337313130030600 , + 0x080004000700080007000300060006000600060006000600040000002d010200 , + 0x09000000320a8603b0010100000020d40700040000002d01020027000000320a , + 0x920361011500000053414e2059534944524f2c2043412e203932313433d40700 , + 0x0800070003000800070002000800070008000300030007000800030003000600 , + 0x0600060006000600040000002d01020009000000320a9203db01010000002dd4 , + 0x0400040000002d0102000d000000320a9203df01040000003731313006000600 , + 0x06000600040000002d01020009000000320a9203f7010100000020d405000400 , + 0x00002d010100040000002d010400040000002701ffff030000001e0004000000 , + 0x2c0100008d080000410b2000cc003b009000000000003f0098001a0331002800 , + 0x0000900000003b00000001000400000000000000000000000000000000000000 , + 0x00000000000000000000ffffff00fe004000fefefe00fe000000000000000000 , + 0x0000000000000000000000000000000000000000000000000000000000000000 , + 0x0000000000002222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222233333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333223333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333322333 , + 0x3333334444444444444444444444444444444444444444444444444444444333 , + 0x3333333333344444444444444444444444444444444444444444444444444444 , + 0x4443333333322333333334444444444444444444444444444444444444444444 , + 0x4444444444444433333333333344444444444444444444444444444444444444 , + 0x4444444444444444444433333332233333334444444444444444444444444444 , + 0x4444444444444444444444444444444333333333344444444444444444444444 , + 0x4444444444444444444444444444444444444333333223333334444444444444 , + 0x4444444444444444444444444444444444444444444444443333333344444444 , + 0x4444444444444444444444444444444444444444444444444444443333322333 , + 0x3344444444444444444444444444444444444444444444444444444444444444 , + 0x4333333444444444444444444444444444444444444444444444444444444444 , + 0x4444444333322333344444444444444444444444444444444444444444444444 , + 0x4444444444444444443333444444444444444444444444444444444444444444 , + 0x4444444444444444444444443332233344444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433330003333300003303333303000003330333303330000333300003333 , + 0x3300030333333000333330000330333330300000333033330333000033330000 , + 0x3334444443322334444443330333033300333033033303303330333033330330 , + 0x3333033033330333303330333333033303330033303303330330333033303333 , + 0x0330333303303333033444444332233444444330333330330333303300000330 , + 0x3333033033330303333330303333033330330003333033333033033330330000 , + 0x0330333303303333030333333030333303344444433223344444433033333333 , + 0x0333303303330330333303300000030333333033330003333000030333303333 , + 0x3333033330330333033033330330000003033333303333000334444443322334 , + 0x4444433033333333033330333030333033330330333303033333303300333333 , + 0x3330033333303333333303333033303033303333033033330303333330330033 , + 0x3334444443322334444443303333333303333033303033303333033033330303 , + 0x3333303033333333330330333330333333330333303330303330333303303333 , + 0x0303333330303333333444444332233444444333033303330333303330303330 , + 0x3330333033330330333303303333033333033033333303330333033330333030 , + 0x3330333033303333033033330330333303344444433223344444433330003333 , + 0x0333303333033330000033300000333300003333000033333330033333333000 , + 0x3333033330333303333000003330000033330000333300003334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333344444444444444444444444444444444444444444444444444 , + 0x3333333344444444444444444444444444444444444444444444444444333333 , + 0x3334444443322334444443333333334444444444444444444444444444444444 , + 0x4444444444444444433333344444444444444444444444444444444444444444 , + 0x4444444444333333333444444332233444444333333333444444444444444444 , + 0x4444444444444444444444444444444444333344444444444444444444444444 , + 0x4444444444444444444444444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444444444444444444 , + 0x4444444444444444444444444444444444333344444444444444444444444444 , + 0x4444444444444444444444444433333333344444433223344444433333333344 , + 0x4444444444444444444444444444444444444444444444444333333444444444 , + 0x4444444444444444444444444444444444444444443333333334444443322334 , + 0x4444433333333344444444444444444444444444444444444444444444444444 , + 0x3333333344444444444444444444444444444444444444444444444444333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223334444444444444444 , + 0x4444444444444444444444444444444444444444444444444433334444444444 , + 0x4444444444444444444444444444444444444444444444444444444443322333 , + 0x3444444444444444444444444444444444444444444444444444444444444444 , + 0x4333333444444444444444444444444444444444444444444444444444444444 , + 0x4444444433322333334444444444444444444444444444444444444444444444 , + 0x4444444444444444333333334444444444444444444444444444444444444444 , + 0x4444444444444444444444433332233333344444444444444444444444444444 , + 0x4444444444444444444444444444444333333333344444444444444444444444 , + 0x4444444444444444444444444444444444444433333223333333444444444444 , + 0x4444444444444444444444444444444444444444444444333333333333444444 , + 0x4444444444444444444444444444444444444444444444444444433333322333 , + 0x3333344444444444444444444444444444444444444444444444444444444333 , + 0x3333333333344444444444444444444444444444444444444444444444444444 , + 0x4444333333322333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333332233333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222220400 , + 0x00002701ffff030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f0000000000000001b00f300f6020100040000002d01010004000000 , + 0x2d010000040000002701ffff030000001e00040000002c010000040000000201 , + 0x0100040000002e01180004000000f0010a00050000000902000000021c000000 , + 0xfb02f3ff0000000000009001000000010740001254696d6573204e657720526f , + 0x6d616e0000000000000000000000000000000000040000002d010a001f000000 , + 0x320a09032700100000004a4f52474520482e2043554144524f5308000c000c00 , + 0x0c000a0006000c00060007000b000c000d000c000c000c000a00040000002d01 , + 0x0a0009000000320a0903ce000100000020d40a00040000002d01010004000000 , + 0x2d010400040000002701ffff030000001e00040000002c010000040000000201 , + 0x0100040000002e01180004000000f0010700050000000902000000021c000000 , + 0xfb02f3ff000000000000bc020000000107400022417269616c00000000000000 , + 0x0000000000000000000000000000000000000000040000002d0107000f000000 , + 0x320a3a03270205000000446174653a0009000800040008000400040000002d01 , + 0x070009000000320a3a0348020100000020d40700040000002d01010004000000 , + 0x2d010400040000002701ffff030000001e00040000002c01000008000000fa02 , + 0x00000100000000000000040000002d010c00040000002d010d000c0000002403 , + 0x04000100f6020100d703d502d703d502f602040000002d01010004000000f001 , + 0x0c00040000002d010100040000002d010000040000002701ffff030000001e00 , + 0x040000002c0100000400000002010100040000002e01180004000000f0010500 , + 0x050000000902000000021c000000fb02f9ff000000000000bc02000000010740 , + 0x0022417269616c00000000000000000000000000000000000000000000000000 , + 0x0000040000002d01050079000000320ad303d2004c000000464f522050524f50 , + 0x4552204352454449542c20504c454153452044455441434820414e4420524554 , + 0x55524e20424f54544f4d20504f5254494f4e205749544820594f555220504159 , + 0x4d454e5404000500050002000500050005000400050005000200050004000500 , + 0x0500020003000200020005000300050005000400050002000400050003000500 , + 0x0500050002000500050005000200040005000300050005000500020005000500 , + 0x0400030006000500020005000500050003000200050005000200070002000300 , + 0x0500020005000500050005000200050004000500050005000500030004000000 , + 0x2d01050009000000320ad3030c020100000020d40400040000002d0101000400 , + 0x00002d010400040000002701ffff030000001e00040000002c01000004000000 , + 0x02010100040000002e01180004000000f0010300050000000902000000021c00 , + 0x0000fb02f4ff00000000000090010000000107400022417269616c0000000000 , + 0x00000000000000000000000000000000000000000000040000002d0103002d00 , + 0x0000320a8a0319021900000024205f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f , + 0x5f5f5f5f20200700030007000700070006000700070006000700070006000700 , + 0x070006000700070007000600070007000600070007000200040000002d010400 , + 0x04000000f00106001c000000fb02f4ff000000000000bc020000000107400022 , + 0x417269616c000000000000000000000000000000000000000000000000000000 , + 0x040000002d01060016000000320a980340020a000000414d4f554e5420445545 , + 0x08000a000a000800090007000400080009000700040000002d01030009000000 , + 0x320a980390020100000020d40700040000002d010100040000002d0104000400 , + 0x00002701ffff030000001e00040000002c0100008d080000410b2000cc003b00 , + 0x9000000000003e0098001800310028000000900000003b000000010004000000 , + 0x0000000000000000000000000000000000000000000000000000ffffff00fe00 , + 0x4000fefefe00fe00000000000000000000000000000000000000000000000000 , + 0x0000000000000000000000000000000000000000000022222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333322333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333332233333333344444444444444444444444444 , + 0x4444444444444444444444444444433333333333333444444444444444444444 , + 0x4444444444444444444444444444444444433333333223333333344444444444 , + 0x4444444444444444444444444444444444444444444444333333333333444444 , + 0x4444444444444444444444444444444444444444444444444444333333322333 , + 0x3333444444444444444444444444444444444444444444444444444444444443 , + 0x3333333334444444444444444444444444444444444444444444444444444444 , + 0x4444433333322333333444444444444444444444444444444444444444444444 , + 0x4444444444444444333333334444444444444444444444444444444444444444 , + 0x4444444444444444444444333332233333444444444444444444444444444444 , + 0x4444444444444444444444444444444443333334444444444444444444444444 , + 0x4444444444444444444444444444444444444443333223333444444444444444 , + 0x4444444444444444444444444444444444444444444444444433334444444444 , + 0x4444444444444444444444444444444444444444444444444444444433322333 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333300033333000033033333030 , + 0x0000333033330333000033330000333333000303333330003333300003303333 , + 0x3030000033303333033300003333000033344444433223344444433303330333 , + 0x0033303303330330333033303333033033330330333303333033303333330333 , + 0x0333003330330333033033303330333303303333033033330334444443322334 , + 0x4444433033333033033330330000033033330330333303033333303033330333 , + 0x3033000333303333303303333033000003303333033033330303333330303333 , + 0x0334444443322334444443303333333303333033033303303333033000000303 , + 0x3333303333000333300003033330333333330333303303330330333303300000 , + 0x0303333330333300033444444332233444444330333333330333303330303330 , + 0x3333033033330303333330330033333333300333333033333333033330333030 , + 0x3330333303303333030333333033003333344444433223344444433033333333 , + 0x0333303330303330333303303333030333333030333333333303303333303333 , + 0x3333033330333030333033330330333303033333303033333334444443322334 , + 0x4444433303330333033330333030333033303330333303303333033033330333 , + 0x3303303333330333033303333033303033303330333033330330333303303333 , + 0x0334444443322334444443333000333303333033330333300000333000003333 , + 0x0000333300003333333003333333300033330333303333033330000033300000 , + 0x3333000033330000333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333444444444444444444 , + 0x4444444444444444444444444444444433333333444444444444444444444444 , + 0x4444444444444444444444444433333333344444433223344444433333333344 , + 0x4444444444444444444444444444444444444444444444444333333444444444 , + 0x4444444444444444444444444444444444444444443333333334444443322334 , + 0x4444433333333344444444444444444444444444444444444444444444444444 , + 0x4433334444444444444444444444444444444444444444444444444444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344444444444444444444444444444444444444444444444444 , + 0x4433334444444444444444444444444444444444444444444444444444333333 , + 0x3334444443322334444443333333334444444444444444444444444444444444 , + 0x4444444444444444433333344444444444444444444444444444444444444444 , + 0x4444444444333333333444444332233444444333333333444444444444444444 , + 0x4444444444444444444444444444444433333333444444444444444444444444 , + 0x4444444444444444444444444433333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322333444444444444444444444444444444444444444444444444 , + 0x4444444444444444443333444444444444444444444444444444444444444444 , + 0x4444444444444444444444444332233334444444444444444444444444444444 , + 0x4444444444444444444444444444444443333334444444444444444444444444 , + 0x4444444444444444444444444444444444444444333223333344444444444444 , + 0x4444444444444444444444444444444444444444444444443333333344444444 , + 0x4444444444444444444444444444444444444444444444444444444333322333 , + 0x3334444444444444444444444444444444444444444444444444444444444443 , + 0x3333333334444444444444444444444444444444444444444444444444444444 , + 0x4444443333322333333344444444444444444444444444444444444444444444 , + 0x4444444444444433333333333344444444444444444444444444444444444444 , + 0x4444444444444444444443333332233333333444444444444444444444444444 , + 0x4444444444444444444444444444433333333333333444444444444444444444 , + 0x4444444444444444444444444444444444443333333223333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333322333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333322222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222040000002701ffff040000002c0100000300 , + 0x00000000 + End + GUID = + End + Begin Rectangle + OldBorderStyle =0 + Left =60 + Top =7890 + Width =10740 + Height =570 + Name ="Cuadro149" + GUID = + End + Begin Label + TextAlign =2 + Left =6645 + Top =60 + Width =4005 + Height =405 + FontSize =14 + Name ="Label0" + Caption ="R E N E W A L N O T I C E" + FontName ="Albertus Medium" + GUID = + End + Begin Label + Left =1965 + Top =3585 + Width =180 + Height =270 + Name ="Label3" + Caption ="2" + GUID = + End + Begin TextBox + TextAlign =1 + BackStyle =0 + Left =8865 + Top =780 + Width =1860 + Height =270 + Name ="Text4" + ControlSource ="=Format(Date(),\"Medium Date\")" + GUID = + End + Begin Subform + CanGrow = NotDefault + OldBorderStyle =0 + Left =525 + Top =1425 + Width =5289 + Height =1829 + TabIndex =1 + Name ="Labels DATGRAL" + SourceObject ="Report.Labels DATGRAL" + LinkChildFields ="NUM id" + LinkMasterFields ="NUM id" + EventProcPrefix ="Labels_DATGRAL" + GUID = + End + Begin TextBox + DecimalPlaces =0 + TextAlign =2 + Left =90 + Top =3585 + Width =1290 + ColumnWidth =1305 + TabIndex =2 + Name ="NUM id" + ControlSource ="NUMER ID" + Format ="General Number" + StatusBarText ="NUMERO DEL CLIENTE" + EventProcPrefix ="NUM_id" + GUID = + End + Begin TextBox + TextAlign =2 + BackStyle =0 + Left =2610 + Top =3585 + Width =2865 + TabIndex =3 + Name ="COMPAÑIA" + ControlSource ="COMP" + GUID = + End + Begin TextBox + TextAlign =1 + Left =1403 + Top =3960 + ColumnWidth =720 + TabIndex =4 + Name ="NO POLIZA" + ControlSource ="NO POLIZA" + EventProcPrefix ="NO_POLIZA" + GUID = + Begin + Begin Label + TextAlign =3 + Left =105 + Top =3960 + Width =1260 + Height =270 + Name ="Label13" + Caption ="POLICY # TA" + GUID = + End + End + End + Begin TextBox + TextAlign =2 + Left =5595 + Top =3585 + Width =1230 + Height =270 + TabIndex =5 + Name ="Text14" + ControlSource ="HASTA" + Format ="mmm/dd/yy" + InputMask ="99/99/00;0;@" + GUID = + End + Begin Label + Left =60 + Top =5145 + Width =2415 + Height =270 + FontSize =9 + Name ="Label17" + Caption ="INSURED AUTOMOVILE:" + GUID = + End + Begin Label + FontUnderline = NotDefault + Left =2655 + Top =4875 + Width =705 + Height =270 + FontSize =9 + Name ="Label18" + Caption ="YEAR" + GUID = + End + Begin TextBox + DecimalPlaces =2 + Left =8385 + Top =3585 + Width =1185 + TabIndex =6 + Name ="RENOVACIONS" + ControlSource ="=[RENOVACION]+40.01+50" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin TextBox + DecimalPlaces =2 + Left =9705 + Top =3585 + Width =1125 + TabIndex =7 + Name ="Text33" + ControlSource ="=[RENOVACION]+40.01+50" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin Label + FontUnderline = NotDefault + Left =4110 + Top =4860 + Width =780 + Height =285 + FontSize =9 + Name ="Label47" + Caption ="TYPE" + GUID = + End + Begin TextBox + DecimalPlaces =0 + TextAlign =1 + Left =3045 + Top =5460 + Width =3180 + TabIndex =8 + Name ="COBERTURA" + ControlSource ="Expr6" + GUID = + Begin + Begin Label + TextAlign =3 + Left =2160 + Top =5460 + Width =780 + Height =240 + Name ="Label48" + Caption ="DAYS:" + GUID = + End + End + End + Begin TextBox + TextAlign =2 + Left =2520 + Top =5175 + Width =885 + FontSize =9 + TabIndex =9 + Name ="Text71" + ControlSource ="MODELO" + GUID = + End + Begin TextBox + TextAlign =2 + Left =3405 + Top =5175 + Width =2010 + FontSize =9 + TabIndex =10 + Name ="Text74" + ControlSource ="CARROCERIA" + GUID = + End + Begin Label + FontUnderline = NotDefault + Left =5940 + Top =4875 + Width =705 + Height =270 + FontSize =9 + Name ="Label76" + Caption ="MAKE" + GUID = + End + Begin TextBox + TextAlign =2 + Left =5475 + Top =5175 + FontSize =9 + TabIndex =11 + Name ="Text77" + ControlSource ="MARCA" + GUID = + End + Begin Label + FontUnderline = NotDefault + Left =8205 + Top =4875 + Width =405 + Height =270 + FontSize =9 + Name ="Label79" + Caption ="VIN" + GUID = + End + Begin TextBox + TextAlign =2 + Left =6960 + Top =5175 + Width =2655 + FontSize =9 + TabIndex =12 + Name ="Text80" + ControlSource ="MOTOR" + GUID = + End + Begin Label + Left =3075 + Top =3945 + Width =1815 + Height =270 + Name ="Label104" + Caption ="AUTO COVERAGE" + GUID = + End + Begin TextBox + TextFontCharSet =2 + TextFontFamily =2 + Left =9300 + Top =1590 + Width =315 + FontSize =12 + TabIndex =13 + Name ="Text49" + ControlSource ="=IIf([num util] Is Null,\"*\")" + FontName ="Wingdings" + GUID = + End + Begin TextBox + TextFontCharSet =2 + TextFontFamily =2 + Left =9840 + Top =1605 + Width =390 + FontSize =12 + TabIndex =14 + Name ="Expr10" + ControlSource ="Expr10" + FontName ="Vacation MT" + GUID = + End + Begin Label + Left =7695 + Top =435 + Width =1920 + Height =270 + Name ="Label114" + Caption ="(Auto Full Coverage)" + GUID = + End + Begin TextBox + DecimalPlaces =2 + Left =9705 + Top =3945 + Width =1125 + FontWeight =700 + TabIndex =15 + Name ="Texto123" + ControlSource ="=[RENOVACION]+40.01+50" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin TextBox + DecimalPlaces =2 + Left =8760 + Top =2415 + Width =1215 + FontWeight =700 + TabIndex =16 + Name ="Texto124" + ControlSource ="=[RENOVACION]+40.01+50" + Format ="Standard" + GUID = + End + Begin Label + Left =1965 + Top =14220 + Width =180 + Height =270 + Name ="Etiqueta125" + Caption ="2" + GUID = + End + Begin TextBox + DecimalPlaces =0 + TextAlign =2 + Left =90 + Top =14220 + Width =1290 + TabIndex =17 + Name ="Texto126" + ControlSource ="NUMER ID" + Format ="General Number" + StatusBarText ="NUMERO DEL CLIENTE" + GUID = + End + Begin TextBox + TextAlign =2 + BackStyle =0 + Left =2640 + Top =14220 + Width =2865 + TabIndex =18 + Name ="Texto127" + ControlSource ="COMP" + GUID = + End + Begin TextBox + TextAlign =2 + Left =5595 + Top =14220 + Width =1230 + Height =241 + TabIndex =19 + Name ="Texto128" + ControlSource ="HASTA" + Format ="mmm/dd/yy" + InputMask ="99/99/00;0;@" + GUID = + End + Begin TextBox + DecimalPlaces =2 + Left =8385 + Top =14220 + Width =1170 + TabIndex =20 + Name ="Texto129" + ControlSource ="=[RENOVACION]+40.01+50" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin TextBox + DecimalPlaces =2 + Left =9705 + Top =14220 + Width =1140 + TabIndex =21 + Name ="Texto130" + ControlSource ="=[RENOVACION]+40.01+50" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin TextBox + DecimalPlaces =2 + Left =8685 + Top =13320 + Width =1215 + FontWeight =700 + TabIndex =22 + Name ="Texto131" + ControlSource ="=[RENOVACION]+40.01+50" + Format ="Standard" + GUID = + End + Begin Subform + CanGrow = NotDefault + OldBorderStyle =0 + Left =60 + Top =12840 + Width =5064 + Height =1019 + TabIndex =23 + Name ="Secundario132" + SourceObject ="Report.Labels DATGRAL" + LinkChildFields ="NUM id" + LinkMasterFields ="NUM id" + GUID = + End + Begin TextBox + TextAlign =1 + BackStyle =0 + Left =8880 + Top =12180 + Width =1860 + Height =270 + TabIndex =24 + Name ="Texto133" + ControlSource ="=Format(Date(),\"Medium Date\")" + GUID = + End + Begin Label + TextAlign =2 + Left =6645 + Top =11370 + Width =4005 + Height =405 + FontSize =14 + Name ="Etiqueta134" + Caption ="R E N E W A L N O T I C E" + FontName ="Albertus Medium" + GUID = + End + Begin Label + Left =7695 + Top =11775 + Width =1920 + Height =270 + Name ="Etiqueta135" + Caption ="(Auto Full Coverage)" + GUID = + End + Begin Label + BackStyle =1 + TextFontFamily =2 + Left =4620 + Top =1080 + Width =2325 + Height =225 + FontSize =8 + Name ="Etiqueta52" + Caption ="susana@jorgecuadros.com" + GUID = + End + Begin Label + BackStyle =1 + TextFontFamily =2 + Left =4620 + Top =12495 + Width =2325 + Height =225 + FontSize =8 + Name ="Etiqueta136" + Caption ="susana@jorgecuadros.com" + GUID = + End + Begin Label + Left =360 + Top =2880 + Width =7710 + Height =255 + Name ="Etiqueta139" + Caption ="PLEASE PROVIDE YOUR CURRENT E-MAIL:__________________________________" + GUID = + End + Begin Label + Left =120 + Top =4380 + Width =10740 + Height =480 + Name ="Etiqueta140" + Caption ="The current policy referred above will be due at the date shown. Also, we’re des" + "cribing the insured vehicle which we suggest to verify the specific details:" + GUID = + End + Begin Label + Left =75 + Top =5460 + Width =1920 + Height =255 + Name ="Etiqueta141" + Caption ="ACV: $ 7,700.00 Dls." + GUID = + End + Begin Label + Left =60 + Top =5760 + Width =9180 + Height =720 + FontSize =9 + Name ="Etiqueta142" + Caption ="COLLISION DEDUCTIBLE $ 500.00 Dls. THEFT DEDUCTIBLE $ 1,000.00 Dls.\015\012" + "Note: Glass Breakage carries same deductible as Collision. LIABILITY COVERAGE ON" + "LY IN MEXICO (365 days) Annual Premium:\015\012" + GUID = + End + Begin TextBox + DecimalPlaces =2 + IMESentenceMode =3 + Left =9300 + Top =6240 + TabIndex =25 + Name ="RENOVACION" + ControlSource ="RENOVACION" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin Label + Left =60 + Top =6825 + Width =10740 + Height =495 + FontSize =9 + Name ="Etiqueta145" + Caption ="IMPORTANT NOTICE: You have the option to renew as shown above at your own risk, " + "HOWEVER, there’re some important changes in our “Labor Laws” that requires incre" + "asing sum of liability to be properly covered..." + GUID = + End + Begin Label + Left =60 + Top =7365 + Width =10740 + Height =480 + FontSize =9 + Name ="Etiqueta146" + Caption ="We now highly recommend to consider buying a higher amount to avoid being caught" + " under insured, should you be involved in a sever bodily injury accident or poss" + "ibly a death occurrence." + GUID = + End + Begin Label + Left =60 + Top =7890 + Width =8220 + Height =540 + FontSize =9 + Name ="Etiqueta147" + Caption ="I recommend buying a minimum CSL of $300,000 plus Medical $2/10,000 and Legal as" + "sistance. New Renewal annual Premium:" + GUID = + End + Begin TextBox + DecimalPlaces =2 + IMESentenceMode =3 + Left =9300 + Top =8130 + TabIndex =26 + Name ="Texto148" + ControlSource ="=[RENOVACION]+40.01" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin Label + Left =60 + Top =8520 + Width =10740 + Height =735 + FontSize =9 + FontWeight =700 + Name ="Etiqueta150" + Caption ="With this renewal, we’re also offering to buy a NEW RENTAL CAR option, to have a" + " rented car while possibly having: a) Collision, b) Break Dow" + "n due to Mechanical Failure or c) Possibly have your car Stolen (Details on the " + "back of this page) Annual Premium $ 50.00" + GUID = + End + Begin TextBox + DecimalPlaces =2 + IMESentenceMode =3 + Left =9300 + Top =8970 + FontWeight =700 + TabIndex =27 + Name ="Texto151" + ControlSource ="=[RENOVACION]+40.01+50" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin Label + BackStyle =1 + Left =60 + Top =9360 + Width =10740 + Height =1080 + FontSize =7 + Name ="Etiqueta152" + Caption ="We still suggest reading this important reminder so you do not loose the rights " + "of your claim:\015\012NEVER NEVER: Leave the scene of the accident, Make private" + " agreements, Drive without a license, Drive under the influence of drugs or alco" + "hol, Avoid calling our Adjuster regardless of the size of the accident, if you c" + "annot find him, you can always call our office, using the numbers provided in yo" + "ur pocket ID. You will be detained when causing a Bodily Injury accident, and an" + " Attorney will be provide to post a Bail Bond to bailed you out ASAP. If the ins" + "ured vehicle is a SUV, Pick up or any other type other than an automobile, deduc" + "tibles for collision and theft will increase to $1000 Dls.\015\012" + GUID = + End + Begin UnboundObjectFrame + Locked = NotDefault + SizeMode =1 + OldBorderStyle =0 + Top =14880 + Width =10861 + Height =13861 + TabIndex =28 + Name ="OLEIndependiente153" + OleData = + Class ="Word.Document.8" + OLEClass ="Microsoft Office Word 97 - 2003" + GUID = + End + Begin Label + Left =60 + Top =6465 + Width =6720 + Height =255 + Name ="Etiqueta154" + Caption ="PD: $25,000 PL: $40/80,000 MEDICAL: $ 2/10,000 LEGAL INCLUDED" + GUID = + End + End + End + Begin PageFooter + Height =0 + Name ="PageFooter" + GUID = + End + End +End \ No newline at end of file diff --git a/migration/legacy_report_defs/AMPL_R_RENEW_X_MES_NEW_ATLAS_13.txt b/migration/legacy_report_defs/AMPL_R_RENEW_X_MES_NEW_ATLAS_13.txt new file mode 100644 index 0000000..f276292 --- /dev/null +++ b/migration/legacy_report_defs/AMPL_R_RENEW_X_MES_NEW_ATLAS_13.txt @@ -0,0 +1,1479 @@ +Version =19 +VersionRequired =19 +Checksum =-58753601 +Begin Report + LayoutForPrint = NotDefault + DefaultView =0 + DateGrouping =1 + GrpKeepTogether =1 + PictureAlignment =2 + DatasheetGridlinesBehavior =3 + GridX =24 + GridY =24 + Width =10905 + DatasheetFontHeight =10 + ItemSuffix =156 + Left =600 + Right =9090 + Bottom =5040 + DatasheetGridlinesColor =12632256 + OnNoData ="IMPRESION RENEW NO DATA" + RecSrcDt = Begin + 0x2f5abc8ffb3ce440 + End + RecordSource ="AMPL R RENEW CALC ATLAS 13" + DatasheetFontName ="Arial" + PrtMip = + PrtDevMode = + PrtDevNames = + NoSaveCTIWhenDisabled =1 + Begin + Begin Label + BackStyle =0 + FontSize =10 + FontName ="Arial" + End + Begin Image + OldBorderStyle =0 + PictureAlignment =2 + End + Begin CommandButton + FontSize =8 + FontWeight =400 + ForeColor =-2147483630 + FontName ="Tahoma" + End + Begin TextBox + OldBorderStyle =0 + FontSize =10 + FontName ="Arial" + End + Begin UnboundObjectFrame + OldBorderStyle =1 + End + Begin PageHeader + Height =0 + Name ="PageHeader" + GUID = + End + Begin Section + KeepTogether = NotDefault + CanGrow = NotDefault + ForceNewPage =2 + Height =28681 + Name ="Detail" + GUID = + Begin + Begin Image + Width =10905 + Height =14805 + Name ="OLEIndependiente148" + PictureData = Begin + 0x03000000d401ab0108000000094b000002660000470826ab010009000003b631 , + 0x00000e008d08000000000400000003010800050000000b020000000005000000 , + 0x0c02dc03d702070000001604db03d60200000000030000001e00040000002c01 , + 0x000007000000fc020000ffffff000000040000002d0100000c00000040092100 , + 0xf000000000000000240032013800d30008000000fa0200000000000000000000 , + 0x040000002d010100040000002d010000040000002701ffff030000001e000400 , + 0x00002c0100000400000002010100040000002e01180005000000090200000002 , + 0x1c000000fb02f5ff00000000000090010000000107400022417269616c000000 , + 0x000000000000000000000000000000000000000000000000040000002d010200 , + 0x13000000320a4700f4000800000054656c3a2030313106000600020003000300 , + 0x060006000600040000002d01020009000000320a47001a01010000002dd40400 , + 0x040000002d0102000a000000320a47001e010200000035320600060004000000 , + 0x2d01020009000000320a47002a01010000002dd40400040000002d0102000f00 , + 0x0000320a47002e01050000002836363129000400060006000500040004000000 , + 0x2d01020009000000320a47004701010000002dd40400040000002d0102000c00 , + 0x0000320a47004b010300000036313200060006000500040000002d0102000900 , + 0x0000320a47005c01010000002dd40400040000002d01020021000000320a4700 , + 0x60011100000031323935202a204661783a202836363129010600060006000600 , + 0x0300040003000600060006000300020004000600060006000300040000002d01 , + 0x020009000000320a4700b201010000002dd40400040000002d0102000c000000 , + 0x320a4700b6010300000036313200060006000600040000002d01020009000000 , + 0x320a4700c801010000002dd40400040000002d0102000d000000320a4700cc01 , + 0x04000000313238350600060005000600040000002d01020009000000320a4700 , + 0xe3010100000020d405001c000000fb02f5ff000000000000bc02000000010740 , + 0x0022417269616c00000000000000000000000000000000000000000000000000 , + 0x0000040000002d01030034000000320a530014011e000000456d61696c3a2049 , + 0x6e737572616e6365407061636e65742e636f6d2e6d7806000b00060003000300 , + 0x030003000300060007000600050006000600050007000a000700060006000600 , + 0x060004000300060006000a0002000b000600040000002d01030009000000320a , + 0x5300c3010100000020d40500040000002d0101001c000000fb02100007000000 , + 0x0000bc02000000000102022253797374656d005b9701c47f2800c70100007a28 , + 0xf6bf00005021bcef620054d4040000002d010400040000002701ffff03000000 , + 0x1e00040000002c010000040000002d0100000c00000040092100f00000000000 , + 0x00003000ae0002001501040000002d010100040000002d010000040000002701 , + 0xffff030000001e00040000002c0100000400000002010100040000002e011800 , + 0x05000000090200000002040000002d01020033000000320a110019011d000000 , + 0x5175696e746120506c617a612053686f7070696e672043656e74657220780800 , + 0x0600020006000300060004000600020006000600060003000700060006000600 , + 0x060002000600060003000700060006000300060004000300040000002d010200 , + 0x2e000000320a1e0019011a000000737569746520332050422e20536f75746820 , + 0x4275696c64696e67060006000200030006000300060003000600070003000300 , + 0x0700060006000300060003000700060002000200070002000600060004000000 , + 0x2d01020009000000320a1e0094010100000020d40600040000002d0102003600 , + 0x0000320a2b0019011f000000323237313020506c6179617320646520526f7361 , + 0x7269746f2c20422e20432ea00600060006000600060003000600020006000600 , + 0x0600060003000600060003000700060006000600040002000300060003000300 , + 0x07000300030007000300040000002d01020009000000320a2b00b10101000000 , + 0x20d40600040000002d010100040000002d010400040000002701ffff03000000 , + 0x1e00040000002c010000040000002d0100000c00000040092100f00000000000 , + 0x00001a00f30001000100040000002d010100040000002d010000040000002701 , + 0xffff030000001e00040000002c0100000400000002010100040000002e011800 , + 0x050000000902000000021c000000fb02f3ff0000000000009001000000010740 , + 0x001254696d6573204e657720526f6d616e000000000000000000000000000000 , + 0x0000040000002d0105001f000000320a11002700100000004a4f52474520482e , + 0x2043554144524f5308000c000c000c000a0006000c00060007000b000c000d00 , + 0x0c000c000c000a00040000002d01050009000000320a1100ce000100000020d4 , + 0x0a00040000002d010100040000002d010400040000002701ffff030000001e00 , + 0x040000002c010000070000001604db03d60200000000030000001e0004000000 , + 0x2c010000040000002d0100000c00000040092100f00000000000000013005f00 , + 0xda000100040000002d010100040000002d010000040000002701ffff04000000 , + 0x2c0100000400000002010100040000002e011800050000000902000000021c00 , + 0x0000fb02f6ff000000000000bc02010000010740001254696d6573204e657720 , + 0x526f6d616e0000000000000000000000000000000000040000002d0106001800 , + 0x0000320ae60015000b0000004163636f756e74204e6f2e000700040004000500 , + 0x0600060003000300070005000300040000002d01060009000000320ae6004a00 , + 0x0100000020d40400070000001604db03d60200000000040000002d0101000400 , + 0x00002d010400030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f00000000000000013005500da006000040000002d01010004000000 , + 0x2d010000040000002701ffff040000002c010000040000002d0106000d000000 , + 0x320ae6007c0004000000434f44450700070007000700040000002d0106000900 , + 0x0000320ae60098000100000020d40500070000001604db03d602000000000400 , + 0x00002d010100040000002d010400030000001e00040000002c01000004000000 , + 0x2d0100000c00000040092100f0000000000000001300b600da00b50004000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000004000000 , + 0x2d01060021000000320ae600d80011000000494e535552414e434520434f4d50 , + 0x414e590104000700060007000700070007000700060003000700070009000600 , + 0x070006000700040000002d01060009000000320ae60046010100000020d40400 , + 0x070000001604db03d60200000000040000002d010100040000002d0104000300 , + 0x00001e00040000002c010000040000002d0100000c00000040092100f0000000 , + 0x0000000013006700da006b01040000002d010100040000002d01000004000000 , + 0x2701ffff040000002c010000040000002d01060013000000320ae60084010800 , + 0x0000445545204441544507000700070003000700070006000700040000002d01 , + 0x060009000000320ae600b7010100000020d40400070000001604db03d6020000 , + 0x0000040000002d010100040000002d010400030000001e00040000002c010000 , + 0x040000002d0100000c00000040092100f00000000000000013005700da00d201 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x040000002d01060010000000320ae600e9010600000043524544495407000700 , + 0x0700070004000600040000002d01060009000000320ae6000f020100000020d4 , + 0x0400070000001604db03d60200000000040000002d010100040000002d010400 , + 0x030000001e00040000002c010000040000002d0100000c00000040092100f000 , + 0x00000000000013005600da002902040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c010000040000002d01060010000000320ae6003d02 , + 0x06000000434841524745070008000700070007000700040000002d0106000900 , + 0x0000320ae60068020100000020d40400070000001604db03d602000000000400 , + 0x00002d010100040000002d010400030000001e00040000002c01000004000000 , + 0x2d0100000c00000040092100f00000000000000013005600da007f0204000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000004000000 , + 0x2d01060012000000320ae60091020700000042414c414e434500070007000600 , + 0x0700070007000700040000002d01060009000000320ae600c1020100000020d4 , + 0x0400070000001604db03d60200000000040000002d010100040000002d010400 , + 0x030000001e00040000002c010000040000002d0100000c00000040092100f000 , + 0x00000000000018005f00ed000100040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c0100001c000000fb02f7ff00000000000090010000 , + 0x00010740001254696d6573204e657720526f6d616e0000000000000000000000 , + 0x000000000000040000002d01070009000000320afd0005000100000020d40400 , + 0x070000001604db03d60200000000040000002d010100040000002d0104000300 , + 0x00001e00040000002c010000040000002d0100000c00000040092100f0000000 , + 0x0000000018005500ed006000040000002d010100040000002d01000004000000 , + 0x2701ffff040000002c010000040000002d01070009000000320afd0063000100 , + 0x000020d40400070000001604db03d60200000000040000002d01010004000000 , + 0x2d010400030000001e00040000002c010000040000002d0100000c0000004009 , + 0x2100f0000000000000001800b600ed00b500040000002d010100040000002d01 , + 0x0000040000002701ffff040000002c010000040000002d01070009000000320a , + 0xfd00b8000100000020d40400070000001604db03d60200000000040000002d01 , + 0x0100040000002d010400030000001e00040000002c010000040000002d010000 , + 0x0c00000040092100f00000000000000018006700ed006b01040000002d010100 , + 0x040000002d010000040000002701ffff040000002c010000040000002d010700 , + 0x09000000320afd006e010100000020d40400070000001604db03d60200000000 , + 0x040000002d010100040000002d010400030000001e00040000002c0100000400 , + 0x00002d0100000c00000040092100f00000000000000018005700ed00d2010400 , + 0x00002d010100040000002d010000040000002701ffff040000002c0100000400 , + 0x00002d01070009000000320afd00d5010100000020d40400070000001604db03 , + 0xd60200000000040000002d010100040000002d010400030000001e0004000000 , + 0x2c010000040000002d0100000c00000040092100f00000000000000018005600 , + 0xed002902040000002d010100040000002d010000040000002701ffff04000000 , + 0x2c010000040000002d01070009000000320afd002b020100000020d404000700 , + 0x00001604db03d60200000000040000002d010100040000002d01040003000000 , + 0x1e00040000002c010000040000002d0100000c00000040092100f00000000000 , + 0x000018005600ed007f02040000002d010100040000002d010000040000002701 , + 0xffff040000002c010000040000002d01070009000000320afd00820201000000 , + 0x20d40400070000001604db03d60200000000040000002d010100040000002d01 , + 0x0400030000001e00040000002c010000040000002d0100000c00000040092100 , + 0xf00000000000000018005f0005010100040000002d010100040000002d010000 , + 0x040000002701ffff040000002c010000040000002d01070009000000320a1301 , + 0x05000100000020d40400070000001604db03d60200000000040000002d010100 , + 0x040000002d010400030000001e00040000002c010000040000002d0100000c00 , + 0x000040092100f0000000000000001800550005016000040000002d0101000400 , + 0x00002d010000040000002701ffff040000002c010000040000002d0107000900 , + 0x0000320a130164000100000020d40400070000001604db03d602000000000400 , + 0x00002d010100040000002d010400030000001e00040000002c01000004000000 , + 0x2d0100000c00000040092100f0000000000000001800b6000501b50004000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000004000000 , + 0x2d01070009000000320a1301b9000100000020d40400070000001604db03d602 , + 0x00000000040000002d010100040000002d010400030000001e00040000002c01 , + 0x0000040000002d0100000c00000040092100f000000000000000180067000501 , + 0x6b01040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x0000040000002d01070009000000320a13016f010100000020d4040007000000 , + 0x1604db03d60200000000040000002d010100040000002d010400030000001e00 , + 0x040000002c010000040000002d0100000c00000040092100f000000000000000 , + 0x180057000501d201040000002d010100040000002d010000040000002701ffff , + 0x040000002c0100001c000000fb02edff00000000000090010000000107400022 , + 0x417269616c000000000000000000000000000000000000000000000000000000 , + 0x040000002d01080009000000320a1c0125020100000020d40a00070000001604 , + 0xdb03d60200000000040000002d010100040000002d010400030000001e000400 , + 0x00002c010000040000002d0100000c00000040092100f0000000000000001800 , + 0x560005012902040000002d010100040000002d010000040000002701ffff0400 , + 0x00002c010000040000002d01020010000000320a1901500206000000546f7461 , + 0x6c200600060003000600020003001c000000fb02f0ff000000000000f4010000 , + 0x0002074000024d61726c65747400000000000000000000000000000000000000 , + 0x000000000000040000002d01090009000000320a19016a020100000034011000 , + 0x1c000000fb02f4ff00000000000090010000000107400022417269616c000000 , + 0x000000000000000000000000000000000000000000000000040000002d010a00 , + 0x09000000320a19017a020100000020d40700070000001604db03d60200000000 , + 0x040000002d010100040000002d010400030000001e00040000002c0100000400 , + 0x00002d0100000c00000040092100f0000000000000001800560005017f020400 , + 0x00002d010100040000002d010000040000002701ffff040000002c0100000400 , + 0x00002d01070009000000320a150183020100000020d40400070000001604db03 , + 0xd60200000000040000002d010100040000002d010400030000001e0004000000 , + 0x2c01000007000000fc020000000000000000040000002d010b000c0000004009 , + 0x2100f00000000000000013000100da000100040000002d010100040000002d01 , + 0x0000040000002701ffff040000002c010000070000001604db03d60200000000 , + 0x030000001e00040000002c010000040000002d010b000c00000040092100f000 , + 0x0000000000002a000100da006000040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c010000070000001604db03d6020000000003000000 , + 0x1e00040000002c010000040000002d010b000c00000040092100f00000000000 , + 0x00002a000100da00b500040000002d010100040000002d010000040000002701 , + 0xffff040000002c010000070000001604db03d60200000000030000001e000400 , + 0x00002c010000040000002d010b000c00000040092100f0000000000000002a00 , + 0x0100da006b01040000002d010100040000002d010000040000002701ffff0400 , + 0x00002c010000070000001604db03d60200000000030000001e00040000002c01 , + 0x0000040000002d010b000c00000040092100f0000000000000002a000100da00 , + 0xd201040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x0000070000001604db03d60200000000030000001e00040000002c0100000400 , + 0x00002d010b000c00000040092100f00000000000000043000100da0028020400 , + 0x00002d010100040000002d010000040000002701ffff040000002c0100000700 , + 0x00001604db03d60200000000030000001e00040000002c010000040000002d01 , + 0x0b000c00000040092100f0000000000000002a000100da007f02040000002d01 , + 0x0100040000002d010000040000002701ffff040000002c010000070000001604 , + 0xdb03d60200000000030000001e00040000002c010000040000002d010b000c00 , + 0x000040092100f00000000000000013000100da00d402040000002d0101000400 , + 0x00002d010000040000002701ffff040000002c010000070000001604db03d602 , + 0x00000000030000001e00040000002c010000040000002d010b000c0000004009 , + 0x2100f00000000000000018000200ed000100040000002d010100040000002d01 , + 0x0000040000002701ffff040000002c010000070000001604db03d60200000000 , + 0x030000001e00040000002c010000040000002d010b000c00000040092100f000 , + 0x0000000000002f000200ed00d302040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c010000070000001604db03d6020000000003000000 , + 0x1e00040000002c010000040000002d010b000c00000040092100f00000000000 , + 0x00001600020005017f02040000002d010100040000002d010000040000002701 , + 0xffff040000002c010000070000001604db03d60200000000030000001e000400 , + 0x00002c010000040000002d010b000c00000040092100f0000000000000000100 , + 0xd402da000100040000002d010100040000002d010000040000002701ffff0400 , + 0x00002c010000070000001604db03d60200000000030000001e00040000002c01 , + 0x0000040000002d010b000c00000040092100f0000000000000000200d402ec00 , + 0x0100040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x0000070000001604db03d60200000000030000001e00040000002c0100000400 , + 0x00002d010b000c00000040092100f0000000000000000200d302040101000400 , + 0x00002d010100040000002d010000040000002701ffff040000002c0100000700 , + 0x00001604db03d60200000000030000001e00040000002c010000040000002d01 , + 0x0b000c00000040092100f000000000000000010057001c012802040000002d01 , + 0x0100040000002d010000040000002701ffff040000002c010000070000001604 , + 0xdb03d60200000000030000001e00040000002c010000040000002d010b000c00 , + 0x000040092100f000000000000000020056001b017f02040000002d0101000400 , + 0x00002d010000040000002701ffff040000002c010000040000002701ffff0300 , + 0x00001e00040000002c0100000400000002010100040000002e01180004000000 , + 0xf001030004000000f0010500050000000902000000021c000000fb02f3ff0000 , + 0x00000000bc020000000107400022417269616c00000000000000000000000000 , + 0x0000000000000000000000000000040000002d0103000f000000320a43002402 , + 0x05000000446174653a00090008000400080004001c000000fb02f3ff00000000 , + 0x000090010000000107400022417269616c000000000000000000000000000000 , + 0x000000000000000000000000040000002d01050009000000320a430045020100 , + 0x000020d40f00040000002d01030009000000320a430054020100000020d40700 , + 0x040000002d010100040000002d010400040000002701ffff030000001e000400 , + 0x00002c010000040000002d0100000c00000040092100f0000000000000001200 , + 0xe9009e020900040000002d010100040000002d010000040000002701ffff0300 , + 0x00001e00040000002c0100000400000002010100040000002e01180004000000 , + 0xf0010600050000000902000000021c000000fb02f5ff00000000000090010000 , + 0x00010740001254696d6573204e657720526f6d616e0000000000000000000000 , + 0x000000000000040000002d0106001f000000320aad023b00100000004a4f5247 , + 0x4520482e2043554144524f5306000a0009000900090005000a00050005000900 , + 0x0a000a000a0009000a000700040000002d01060009000000320aad02c0000100 , + 0x000020d40800040000002d010100040000002d010400040000002701ffff0300 , + 0x00001e00040000002c01000008000000fa020000010000000000000004000000 , + 0x2d010c0007000000fc020100000000000000040000002d010d000c0000002403 , + 0x0400010006000100ea02d502ea02d5020600040000002d01010004000000f001 , + 0x0c00040000002d010100040000002d010000040000002701ffff030000001e00 , + 0x040000002c01000008000000fa02000001000000ffffff00040000002d010c00 , + 0x040000002d010d000c00000024030400c1016300c1019f00ce029f00ce026300 , + 0x040000002d01010004000000f0010c00040000002d010100040000002d010000 , + 0x040000002701ffff030000001e00040000002c01000004000000020101000400 , + 0x00002e01180005000000090200000002040000002d0102001f000000320a7200 , + 0xc501100000004d41494c494e4720414444524553533a08000800020007000300 , + 0x07000800030008000700080008000600070007000300040000002d0102000900 , + 0x0000320a720029020100000020d40700040000002d01040004000000f0010800 , + 0x1c000000fb02f5ff000000000000bc020000000107400022417269616c000000 , + 0x000000000000000000000000000000000000000000000000040000002d010800 , + 0x1f000000320a7e00c501100000004a4f52474520482e2043554144524f530600 , + 0x0800070009000600040007000300030008000700090007000800080007000400 , + 0x00002d01080009000000320a7e0030020100000020d40700040000002d010200 , + 0x1b000000320a8a00c5010d000000504f20424f58203433373131300006000800 , + 0x04000700080007000300060006000600060006000600040000002d0102000900 , + 0x0000320a8a0014020100000020d40700040000002d01020027000000320a9600 , + 0xc5011500000053414e2059534944524f2c2043412e203932313433d407000800 , + 0x0700030008000700020008000700080003000300070008000300030006000600 , + 0x060006000600040000002d01020009000000320a96003f02010000002dd40400 , + 0x040000002d0102000d000000320a960043020400000037313130060006000600 , + 0x0600040000002d01020009000000320a96005b020100000020d4050004000000 , + 0x2d010100040000002d010400040000002701ffff030000001e00040000002c01 , + 0x00000400000002010100040000002e01180004000000f0010900050000000902 , + 0x000000021c000000fb02f9ff0000000000009001000000010740002241726961 , + 0x6c00000000000000000000000000000000000000000000000000000004000000 , + 0x2d01090045000000320adf02130129000000504c45415345204b454550205448 , + 0x495320504f5254494f4e20464f5220594f5552205245434f5244530005000400 , + 0x0400050004000500010005000400050004000200040005000200050001000500 , + 0x0500040005000200050005000200040005000500010005000500050005000200 , + 0x0400050005000500050004000500040000002d01090009000000320adf02bb01 , + 0x0100000020d40300040000002d010100040000002d010400040000002701ffff , + 0x030000001e00040000002c0100000400000002010100040000002e0118000400 , + 0x0000f001070005000000090200000002040000002d010a002d000000320ab400 , + 0x1a021900000024205f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f2046 , + 0x0700030007000700070006000700070006000700070006000700070006000700 , + 0x0700070006000700070006000700070002001c000000fb02f4ff000000000000 , + 0xbc020000000107400022417269616c0000000000000000000000000000000000 , + 0x00000000000000000000040000002d01070016000000320ac20041020a000000 , + 0x414d4f554e542044554508000a000a0008000900070004000800090007000400 , + 0x00002d010a0009000000320ac20091020100000020d40700040000002d010100 , + 0x040000002d010400040000002701ffff030000001e00040000002c0100000400 , + 0x00002d010b000c00000040092100f0000000000000001a002702ba0201000400 , + 0x00002d010100040000002d010000040000002701ffff030000001e0004000000 , + 0x2c0100000400000002010100040000002e011800050000000902ffffff020400 , + 0x00002d01070040000000320ac9022100260000004641494c55524520544f2052 , + 0x4553504f4e442057494c4c20524553554c5420494e204e4f4e20070008000400 , + 0x0700090009000700040007000900040009000700080008000a00090008000300 , + 0x0c00030007000800030009000700090008000800070003000400080004000800 , + 0x0a0008000300040000002d01070009000000320ac9022b01010000002dd40500 , + 0x040000002d01070030000000320ac90230011b0000002052454e4557414c204f , + 0x4620544845534520434f5645524147455355030009000800090007000c000800 , + 0x080003000a000700030008000900070009000700040008000900090008000900 , + 0x0900090007000800040000002d01070009000000320ac902ff010100000020d4 , + 0x080005000000090200000002040000002d010100040000002d01040004000000 , + 0x2701ffff030000001e00040000002c010000040000002d010b000c0000004009 , + 0x2100f0000000000000001a00b300ba022202040000002d010100040000002d01 , + 0x0000040000002701ffff030000001e00040000002c0100000400000002010100 , + 0x040000002e01180004000000f0010500050000000902ffffff021c000000fb02 , + 0xf6ff000000000000bc020000000107400022417269616c000000000000000000 , + 0x000000000000000000000000000000000000040000002d01050031000000320a , + 0xc70238021c000000414c4c20414d4f554e54532041524520494e20552e20532e , + 0x2043792e07000600060003000700090008000700070005000700030007000700 , + 0x0700030003000700030007000300030007000300030007000500030004000000 , + 0x2d01050009000000320ac702d1020100000020d4060005000000090200000002 , + 0x040000002d010100040000002d010400040000002701ffff030000001e000400 , + 0x00002c0100000400000002010100040000002e01180004000000f00103000500 , + 0x00000902000000021c000000fb02f1ff00000000000090010100000107400052 , + 0x4861726c6f7720536f6c6964204974616c696300000000000000000000000000 , + 0x040000002d01030015000000320ae3025b02090000005468616e6b20596f75d6 , + 0x0b00070007000800060004000d0006000700040000002d01030009000000320a , + 0xe302a0020100000020d40700040000002d010100040000002d01040004000000 , + 0x2701ffff030000001e00040000002c010000040000002d0100000c0000004009 , + 0x2100f000000000000000300032013203d300040000002d010100040000002d01 , + 0x0000040000002701ffff030000001e00040000002c0100000400000002010100 , + 0x040000002e01180005000000090200000002040000002d01080013000000320a , + 0x4103f3000800000054656c3a2030313106000700030003000300060006000600 , + 0x040000002d01080009000000320a41031b01010000002dd40400040000002d01 , + 0x08000a000000320a41031f0102000000353206000600040000002d0108000900 , + 0x0000320a41032b01010000002dd40300040000002d0108000f000000320a4103 , + 0x2e010500000028363631290004000600060006000300040000002d0108000900 , + 0x0000320a41034701010000002dd40400040000002d0108000c000000320a4103 , + 0x4b010300000036313200060006000600040000002d01080009000000320a4103 , + 0x5d01010000002dd40300040000002d01080021000000320a4103600111000000 , + 0x31323935202a204661783a202836363129010600060006000600030004000300 , + 0x0600060006000300030004000600060006000400040000002d01080009000000 , + 0x320a4103b401010000002dd40400040000002d0108000c000000320a4103b801 , + 0x0300000036313200060006000500040000002d01080009000000320a4103c901 , + 0x010000002dd40400040000002d0108000d000000320a4103cd01040000003132 , + 0x38350600060006000600040000002d01080009000000320a4103e50101000000 , + 0x20d40500040000002d01080034000000320a4e0314011e000000456d61696c3a , + 0x20496e737572616e6365407061636e65742e636f6d2e6d7806000b0006000300 , + 0x0300030003000300060007000600050006000600050007000a00070006000600 , + 0x0600060004000300060006000a0002000b000600040000002d01080009000000 , + 0x320a4e03c3010100000020d40500040000002d010100040000002d0104000400 , + 0x00002701ffff030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f0000000000000003000ae00fc021501040000002d01010004000000 , + 0x2d010000040000002701ffff030000001e00040000002c010000040000000201 , + 0x0100040000002e01180005000000090200000002040000002d01020033000000 , + 0x320a0b0319011d0000005175696e746120506c617a612053686f7070696e6720 , + 0x43656e7465722078080006000200060003000600040006000200060006000600 , + 0x0300070006000600060006000200060006000300070006000600030006000400 , + 0x0300040000002d0102002e000000320a180319011a0000007375697465203320 , + 0x50422e20536f757468204275696c64696e670600060002000300060003000600 , + 0x0300060007000300030007000600060003000600030007000600020002000700 , + 0x020006000600040000002d01020009000000320a180394010100000020d40600 , + 0x040000002d01020036000000320a250319011f000000323237313020506c6179 , + 0x617320646520526f73617269746f2c20422e20432ea006000600060006000600 , + 0x0300060002000600060006000600030006000600030007000600060006000400 , + 0x0200030006000300030007000300030007000300040000002d01020009000000 , + 0x320a2503b1010100000020d40600040000002d010100040000002d0104000400 , + 0x00002701ffff030000001e00040000002c010000070000001604db03d6020000 , + 0x0000030000001e00040000002c010000040000002d0100000c00000040092100 , + 0xf00000000000000013005f00a1030100040000002d010100040000002d010000 , + 0x040000002701ffff040000002c0100000400000002010100040000002e011800 , + 0x04000000f0010600050000000902000000021c000000fb02f6ff000000000000 , + 0xbc02010000010740001254696d6573204e657720526f6d616e00000000000000 , + 0x00000000000000000000040000002d01060018000000320aad0315000b000000 , + 0x4163636f756e74204e6f2e000700040004000500060006000300030007000500 , + 0x0300040000002d01060009000000320aad034a000100000020d4040007000000 , + 0x1604db03d60200000000040000002d010100040000002d010400030000001e00 , + 0x040000002c010000040000002d0100000c00000040092100f000000000000000 , + 0x13005500a1036000040000002d010100040000002d010000040000002701ffff , + 0x040000002c010000040000002d0106000d000000320aad037c0004000000434f , + 0x44450700070007000700040000002d01060009000000320aad03980001000000 , + 0x20d40500070000001604db03d60200000000040000002d010100040000002d01 , + 0x0400030000001e00040000002c010000040000002d0100000c00000040092100 , + 0xf0000000000000001300b600a103b500040000002d010100040000002d010000 , + 0x040000002701ffff040000002c010000040000002d01060021000000320aad03 , + 0xd80011000000494e535552414e434520434f4d50414e59010400070006000700 , + 0x0700070007000700060003000700070009000600070006000700040000002d01 , + 0x060009000000320aad0346010100000020d40400070000001604db03d6020000 , + 0x0000040000002d010100040000002d010400030000001e00040000002c010000 , + 0x040000002d0100000c00000040092100f00000000000000013006700a1036b01 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x040000002d01060013000000320aad0384010800000044554520444154450700 , + 0x0700070003000700070006000700040000002d01060009000000320aad03b701 , + 0x0100000020d40400070000001604db03d60200000000040000002d0101000400 , + 0x00002d010400030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f00000000000000013005700a103d201040000002d01010004000000 , + 0x2d010000040000002701ffff040000002c010000040000002d01060010000000 , + 0x320aad03e9010600000043524544495407000700070007000400060004000000 , + 0x2d01060009000000320aad030f020100000020d40400070000001604db03d602 , + 0x00000000040000002d010100040000002d010400030000001e00040000002c01 , + 0x0000040000002d0100000c00000040092100f00000000000000013005600a103 , + 0x2902040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x0000040000002d01060010000000320aad033d02060000004348415247450700 , + 0x08000700070007000700040000002d01060009000000320aad03680201000000 , + 0x20d40400070000001604db03d60200000000040000002d010100040000002d01 , + 0x0400030000001e00040000002c010000040000002d0100000c00000040092100 , + 0xf00000000000000013005600a1037f02040000002d010100040000002d010000 , + 0x040000002701ffff040000002c010000040000002d01060012000000320aad03 , + 0x91020700000042414c414e434500070007000600070007000700070004000000 , + 0x2d01060009000000320aad03c1020100000020d40400070000001604db03d602 , + 0x00000000040000002d010100040000002d010400030000001e00040000002c01 , + 0x0000040000002d0100000c00000040092100f00000000000000015005f00b403 , + 0x0100040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x000004000000f00109001c000000fb02f7ff0000000000009001000000010740 , + 0x001254696d6573204e657720526f6d616e000000000000000000000000000000 , + 0x0000040000002d01090009000000320ac20305000100000020d4040007000000 , + 0x1604db03d60200000000040000002d010100040000002d010400030000001e00 , + 0x040000002c010000040000002d0100000c00000040092100f000000000000000 , + 0x15005500b4036000040000002d010100040000002d010000040000002701ffff , + 0x040000002c010000040000002d01090009000000320ac20363000100000020d4 , + 0x0400070000001604db03d60200000000040000002d010100040000002d010400 , + 0x030000001e00040000002c010000040000002d0100000c00000040092100f000 , + 0x0000000000001500b600b403b500040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c010000040000002d01090009000000320ac203b800 , + 0x0100000020d40400070000001604db03d60200000000040000002d0101000400 , + 0x00002d010400030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f00000000000000015006700b4036b01040000002d01010004000000 , + 0x2d010000040000002701ffff040000002c010000040000002d01090009000000 , + 0x320ac2036e010100000020d40400070000001604db03d6020000000004000000 , + 0x2d010100040000002d010400030000001e00040000002c010000040000002d01 , + 0x00000c00000040092100f00000000000000015005700b403d201040000002d01 , + 0x0100040000002d010000040000002701ffff040000002c010000040000002d01 , + 0x090009000000320ac203d5010100000020d40400070000001604db03d6020000 , + 0x0000040000002d010100040000002d010400030000001e00040000002c010000 , + 0x040000002d0100000c00000040092100f00000000000000015005600b4032902 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x040000002d01090009000000320ac2032b020100000020d40400070000001604 , + 0xdb03d60200000000040000002d010100040000002d010400030000001e000400 , + 0x00002c010000040000002d0100000c00000040092100f0000000000000001500 , + 0x5600b4037f02040000002d010100040000002d010000040000002701ffff0400 , + 0x00002c010000040000002d01090009000000320ac20382020100000020d40400 , + 0x070000001604db03d60200000000040000002d010100040000002d0104000300 , + 0x00001e00040000002c010000040000002d010b000c00000040092100f0000000 , + 0x0000000013000100a1030100040000002d010100040000002d01000004000000 , + 0x2701ffff040000002c010000070000001604db03d60200000000030000001e00 , + 0x040000002c010000040000002d010b000c00000040092100f000000000000000 , + 0x26000100a2036000040000002d010100040000002d010000040000002701ffff , + 0x040000002c010000070000001604db03d60200000000030000001e0004000000 , + 0x2c010000040000002d010b000c00000040092100f00000000000000026000100 , + 0xa203b500040000002d010100040000002d010000040000002701ffff04000000 , + 0x2c010000070000001604db03d60200000000030000001e00040000002c010000 , + 0x040000002d010b000c00000040092100f00000000000000026000100a2036b01 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x070000001604db03d60200000000030000001e00040000002c01000004000000 , + 0x2d010b000c00000040092100f00000000000000026000100a203d20104000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000007000000 , + 0x1604db03d60200000000030000001e00040000002c010000040000002d010b00 , + 0x0c00000040092100f00000000000000026000100a2032802040000002d010100 , + 0x040000002d010000040000002701ffff040000002c010000070000001604db03 , + 0xd60200000000030000001e00040000002c010000040000002d010b000c000000 , + 0x40092100f00000000000000026000100a2037f02040000002d01010004000000 , + 0x2d010000040000002701ffff040000002c010000070000001604db03d6020000 , + 0x0000030000001e00040000002c010000040000002d010b000c00000040092100 , + 0xf00000000000000013000100a103d402040000002d010100040000002d010000 , + 0x040000002701ffff040000002c010000070000001604db03d602000000000300 , + 0x00001e00040000002c010000040000002d010b000c00000040092100f0000000 , + 0x0000000014000200b4030100040000002d010100040000002d01000004000000 , + 0x2701ffff040000002c010000070000001604db03d60200000000030000001e00 , + 0x040000002c010000040000002d010b000c00000040092100f000000000000000 , + 0x14000200b403d302040000002d010100040000002d010000040000002701ffff , + 0x040000002c010000070000001604db03d60200000000030000001e0004000000 , + 0x2c010000040000002d010b000c00000040092100f0000000000000000100d402 , + 0xa1030100040000002d010100040000002d010000040000002701ffff04000000 , + 0x2c010000070000001604db03d60200000000030000001e00040000002c010000 , + 0x040000002d010b000c00000040092100f0000000000000000200d402b3030100 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x070000001604db03d60200000000030000001e00040000002c01000004000000 , + 0x2d010b000c00000040092100f0000000000000000200d402c703010004000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000004000000 , + 0x2701ffff030000001e00040000002c01000008000000fa02000001000000ffff , + 0xff00040000002d010c00040000002d010d000c000000240304005c015e035c01 , + 0x9a0306029a0306025e03040000002d01010004000000f0010c00040000002d01 , + 0x0100040000002d010000040000002701ffff030000001e00040000002c010000 , + 0x0400000002010100040000002e01180005000000090200000002040000002d01 , + 0x02001f000000320a6e036101100000004d41494c494e4720414444524553533a , + 0x0800080002000700030007000800030008000700080008000600070007000300 , + 0x040000002d01020009000000320a6e03c5010100000020d40700040000002d01 , + 0x08001f000000320a7a036101100000004a4f52474520482e2043554144524f53 , + 0x0600080007000900060004000700030003000800070009000700080008000700 , + 0x040000002d01080009000000320a7a03cc010100000020d40700040000002d01 , + 0x02001b000000320a860361010d000000504f20424f5820343337313130030600 , + 0x080004000700080007000300060006000600060006000600040000002d010200 , + 0x09000000320a8603b0010100000020d40700040000002d01020027000000320a , + 0x920361011500000053414e2059534944524f2c2043412e203932313433d40700 , + 0x0800070003000800070002000800070008000300030007000800030003000600 , + 0x0600060006000600040000002d01020009000000320a9203db01010000002dd4 , + 0x0400040000002d0102000d000000320a9203df01040000003731313006000600 , + 0x06000600040000002d01020009000000320a9203f7010100000020d405000400 , + 0x00002d010100040000002d010400040000002701ffff030000001e0004000000 , + 0x2c0100008d080000410b2000cc003b009000000000003f0098001a0331002800 , + 0x0000900000003b00000001000400000000000000000000000000000000000000 , + 0x00000000000000000000ffffff00fe004000fefefe00fe000000000000000000 , + 0x0000000000000000000000000000000000000000000000000000000000000000 , + 0x0000000000002222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222233333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333223333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333322333 , + 0x3333334444444444444444444444444444444444444444444444444444444333 , + 0x3333333333344444444444444444444444444444444444444444444444444444 , + 0x4443333333322333333334444444444444444444444444444444444444444444 , + 0x4444444444444433333333333344444444444444444444444444444444444444 , + 0x4444444444444444444433333332233333334444444444444444444444444444 , + 0x4444444444444444444444444444444333333333344444444444444444444444 , + 0x4444444444444444444444444444444444444333333223333334444444444444 , + 0x4444444444444444444444444444444444444444444444443333333344444444 , + 0x4444444444444444444444444444444444444444444444444444443333322333 , + 0x3344444444444444444444444444444444444444444444444444444444444444 , + 0x4333333444444444444444444444444444444444444444444444444444444444 , + 0x4444444333322333344444444444444444444444444444444444444444444444 , + 0x4444444444444444443333444444444444444444444444444444444444444444 , + 0x4444444444444444444444443332233344444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433330003333300003303333303000003330333303330000333300003333 , + 0x3300030333333000333330000330333330300000333033330333000033330000 , + 0x3334444443322334444443330333033300333033033303303330333033330330 , + 0x3333033033330333303330333333033303330033303303330330333033303333 , + 0x0330333303303333033444444332233444444330333330330333303300000330 , + 0x3333033033330303333330303333033330330003333033333033033330330000 , + 0x0330333303303333030333333030333303344444433223344444433033333333 , + 0x0333303303330330333303300000030333333033330003333000030333303333 , + 0x3333033330330333033033330330000003033333303333000334444443322334 , + 0x4444433033333333033330333030333033330330333303033333303300333333 , + 0x3330033333303333333303333033303033303333033033330303333330330033 , + 0x3334444443322334444443303333333303333033303033303333033033330303 , + 0x3333303033333333330330333330333333330333303330303330333303303333 , + 0x0303333330303333333444444332233444444333033303330333303330303330 , + 0x3330333033330330333303303333033333033033333303330333033330333030 , + 0x3330333033303333033033330330333303344444433223344444433330003333 , + 0x0333303333033330000033300000333300003333000033333330033333333000 , + 0x3333033330333303333000003330000033330000333300003334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333344444444444444444444444444444444444444444444444444 , + 0x3333333344444444444444444444444444444444444444444444444444333333 , + 0x3334444443322334444443333333334444444444444444444444444444444444 , + 0x4444444444444444433333344444444444444444444444444444444444444444 , + 0x4444444444333333333444444332233444444333333333444444444444444444 , + 0x4444444444444444444444444444444444333344444444444444444444444444 , + 0x4444444444444444444444444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444444444444444444 , + 0x4444444444444444444444444444444444333344444444444444444444444444 , + 0x4444444444444444444444444433333333344444433223344444433333333344 , + 0x4444444444444444444444444444444444444444444444444333333444444444 , + 0x4444444444444444444444444444444444444444443333333334444443322334 , + 0x4444433333333344444444444444444444444444444444444444444444444444 , + 0x3333333344444444444444444444444444444444444444444444444444333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223334444444444444444 , + 0x4444444444444444444444444444444444444444444444444433334444444444 , + 0x4444444444444444444444444444444444444444444444444444444443322333 , + 0x3444444444444444444444444444444444444444444444444444444444444444 , + 0x4333333444444444444444444444444444444444444444444444444444444444 , + 0x4444444433322333334444444444444444444444444444444444444444444444 , + 0x4444444444444444333333334444444444444444444444444444444444444444 , + 0x4444444444444444444444433332233333344444444444444444444444444444 , + 0x4444444444444444444444444444444333333333344444444444444444444444 , + 0x4444444444444444444444444444444444444433333223333333444444444444 , + 0x4444444444444444444444444444444444444444444444333333333333444444 , + 0x4444444444444444444444444444444444444444444444444444433333322333 , + 0x3333344444444444444444444444444444444444444444444444444444444333 , + 0x3333333333344444444444444444444444444444444444444444444444444444 , + 0x4444333333322333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333332233333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222220400 , + 0x00002701ffff030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f0000000000000001b00f300f6020100040000002d01010004000000 , + 0x2d010000040000002701ffff030000001e00040000002c010000040000000201 , + 0x0100040000002e01180004000000f0010a00050000000902000000021c000000 , + 0xfb02f3ff0000000000009001000000010740001254696d6573204e657720526f , + 0x6d616e0000000000000000000000000000000000040000002d010a001f000000 , + 0x320a09032700100000004a4f52474520482e2043554144524f5308000c000c00 , + 0x0c000a0006000c00060007000b000c000d000c000c000c000a00040000002d01 , + 0x0a0009000000320a0903ce000100000020d40a00040000002d01010004000000 , + 0x2d010400040000002701ffff030000001e00040000002c010000040000000201 , + 0x0100040000002e01180004000000f0010700050000000902000000021c000000 , + 0xfb02f3ff000000000000bc020000000107400022417269616c00000000000000 , + 0x0000000000000000000000000000000000000000040000002d0107000f000000 , + 0x320a3a03270205000000446174653a0009000800040008000400040000002d01 , + 0x070009000000320a3a0348020100000020d40700040000002d01010004000000 , + 0x2d010400040000002701ffff030000001e00040000002c01000008000000fa02 , + 0x00000100000000000000040000002d010c00040000002d010d000c0000002403 , + 0x04000100f6020100d703d502d703d502f602040000002d01010004000000f001 , + 0x0c00040000002d010100040000002d010000040000002701ffff030000001e00 , + 0x040000002c0100000400000002010100040000002e01180004000000f0010500 , + 0x050000000902000000021c000000fb02f9ff000000000000bc02000000010740 , + 0x0022417269616c00000000000000000000000000000000000000000000000000 , + 0x0000040000002d01050079000000320ad303d2004c000000464f522050524f50 , + 0x4552204352454449542c20504c454153452044455441434820414e4420524554 , + 0x55524e20424f54544f4d20504f5254494f4e205749544820594f555220504159 , + 0x4d454e5404000500050002000500050005000400050005000200050004000500 , + 0x0500020003000200020005000300050005000400050002000400050003000500 , + 0x0500050002000500050005000200040005000300050005000500020005000500 , + 0x0400030006000500020005000500050003000200050005000200070002000300 , + 0x0500020005000500050005000200050004000500050005000500030004000000 , + 0x2d01050009000000320ad3030c020100000020d40400040000002d0101000400 , + 0x00002d010400040000002701ffff030000001e00040000002c01000004000000 , + 0x02010100040000002e01180004000000f0010300050000000902000000021c00 , + 0x0000fb02f4ff00000000000090010000000107400022417269616c0000000000 , + 0x00000000000000000000000000000000000000000000040000002d0103002d00 , + 0x0000320a8a0319021900000024205f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f , + 0x5f5f5f5f20200700030007000700070006000700070006000700070006000700 , + 0x070006000700070007000600070007000600070007000200040000002d010400 , + 0x04000000f00106001c000000fb02f4ff000000000000bc020000000107400022 , + 0x417269616c000000000000000000000000000000000000000000000000000000 , + 0x040000002d01060016000000320a980340020a000000414d4f554e5420445545 , + 0x08000a000a000800090007000400080009000700040000002d01030009000000 , + 0x320a980390020100000020d40700040000002d010100040000002d0104000400 , + 0x00002701ffff030000001e00040000002c0100008d080000410b2000cc003b00 , + 0x9000000000003e0098001800310028000000900000003b000000010004000000 , + 0x0000000000000000000000000000000000000000000000000000ffffff00fe00 , + 0x4000fefefe00fe00000000000000000000000000000000000000000000000000 , + 0x0000000000000000000000000000000000000000000022222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333322333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333332233333333344444444444444444444444444 , + 0x4444444444444444444444444444433333333333333444444444444444444444 , + 0x4444444444444444444444444444444444433333333223333333344444444444 , + 0x4444444444444444444444444444444444444444444444333333333333444444 , + 0x4444444444444444444444444444444444444444444444444444333333322333 , + 0x3333444444444444444444444444444444444444444444444444444444444443 , + 0x3333333334444444444444444444444444444444444444444444444444444444 , + 0x4444433333322333333444444444444444444444444444444444444444444444 , + 0x4444444444444444333333334444444444444444444444444444444444444444 , + 0x4444444444444444444444333332233333444444444444444444444444444444 , + 0x4444444444444444444444444444444443333334444444444444444444444444 , + 0x4444444444444444444444444444444444444443333223333444444444444444 , + 0x4444444444444444444444444444444444444444444444444433334444444444 , + 0x4444444444444444444444444444444444444444444444444444444433322333 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333300033333000033033333030 , + 0x0000333033330333000033330000333333000303333330003333300003303333 , + 0x3030000033303333033300003333000033344444433223344444433303330333 , + 0x0033303303330330333033303333033033330330333303333033303333330333 , + 0x0333003330330333033033303330333303303333033033330334444443322334 , + 0x4444433033333033033330330000033033330330333303033333303033330333 , + 0x3033000333303333303303333033000003303333033033330303333330303333 , + 0x0334444443322334444443303333333303333033033303303333033000000303 , + 0x3333303333000333300003033330333333330333303303330330333303300000 , + 0x0303333330333300033444444332233444444330333333330333303330303330 , + 0x3333033033330303333330330033333333300333333033333333033330333030 , + 0x3330333303303333030333333033003333344444433223344444433033333333 , + 0x0333303330303330333303303333030333333030333333333303303333303333 , + 0x3333033330333030333033330330333303033333303033333334444443322334 , + 0x4444433303330333033330333030333033303330333303303333033033330333 , + 0x3303303333330333033303333033303033303330333033330330333303303333 , + 0x0334444443322334444443333000333303333033330333300000333000003333 , + 0x0000333300003333333003333333300033330333303333033330000033300000 , + 0x3333000033330000333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333444444444444444444 , + 0x4444444444444444444444444444444433333333444444444444444444444444 , + 0x4444444444444444444444444433333333344444433223344444433333333344 , + 0x4444444444444444444444444444444444444444444444444333333444444444 , + 0x4444444444444444444444444444444444444444443333333334444443322334 , + 0x4444433333333344444444444444444444444444444444444444444444444444 , + 0x4433334444444444444444444444444444444444444444444444444444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344444444444444444444444444444444444444444444444444 , + 0x4433334444444444444444444444444444444444444444444444444444333333 , + 0x3334444443322334444443333333334444444444444444444444444444444444 , + 0x4444444444444444433333344444444444444444444444444444444444444444 , + 0x4444444444333333333444444332233444444333333333444444444444444444 , + 0x4444444444444444444444444444444433333333444444444444444444444444 , + 0x4444444444444444444444444433333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322333444444444444444444444444444444444444444444444444 , + 0x4444444444444444443333444444444444444444444444444444444444444444 , + 0x4444444444444444444444444332233334444444444444444444444444444444 , + 0x4444444444444444444444444444444443333334444444444444444444444444 , + 0x4444444444444444444444444444444444444444333223333344444444444444 , + 0x4444444444444444444444444444444444444444444444443333333344444444 , + 0x4444444444444444444444444444444444444444444444444444444333322333 , + 0x3334444444444444444444444444444444444444444444444444444444444443 , + 0x3333333334444444444444444444444444444444444444444444444444444444 , + 0x4444443333322333333344444444444444444444444444444444444444444444 , + 0x4444444444444433333333333344444444444444444444444444444444444444 , + 0x4444444444444444444443333332233333333444444444444444444444444444 , + 0x4444444444444444444444444444433333333333333444444444444444444444 , + 0x4444444444444444444444444444444444443333333223333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333322333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333322222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222040000002701ffff040000002c0100000300 , + 0x00000000 + End + GUID = + End + Begin Label + OverlapFlags =211 + TextAlign =2 + Left =6885 + Top =60 + Width =3525 + Height =390 + FontSize =14 + Name ="Label0" + Caption ="AVISO DE RENOVACION" + FontName ="Albertus Medium" + GUID = + End + Begin Label + OverlapFlags =211 + Left =1965 + Top =3585 + Width =180 + Height =270 + Name ="Label3" + Caption ="2" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =1 + BackStyle =0 + Left =8940 + Top =780 + Width =1785 + Height =270 + Name ="Text4" + ControlSource ="=Format(Date(),\"Medium Date\")" + GUID = + End + Begin Subform + CanGrow = NotDefault + OverlapFlags =211 + OldBorderStyle =0 + Left =525 + Top =1425 + Width =5289 + Height =1829 + TabIndex =1 + Name ="Labels DATGRAL" + SourceObject ="Report.Labels DATGRAL" + LinkChildFields ="NUM id" + LinkMasterFields ="NUM id" + EventProcPrefix ="Labels_DATGRAL" + GUID = + End + Begin TextBox + DecimalPlaces =0 + OverlapFlags =211 + TextAlign =2 + Left =90 + Top =3585 + Width =1290 + ColumnWidth =1305 + TabIndex =2 + Name ="NUM id" + ControlSource ="NUMER ID" + Format ="General Number" + StatusBarText ="NUMERO DEL CLIENTE" + EventProcPrefix ="NUM_id" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + BackStyle =0 + Left =2610 + Top =3585 + Width =2865 + TabIndex =3 + Name ="COMPAÑIA" + ControlSource ="COMP" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =1 + Left =398 + Top =3960 + Width =2175 + ColumnWidth =720 + TabIndex =4 + Name ="NO P" + ControlSource ="=(\"POLIZA #: CAR \" & [NO POLIZA])" + EventProcPrefix ="NO_P" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + BackStyle =0 + Left =5475 + Top =3585 + Width =1665 + Height =270 + TabIndex =5 + LineSpacing =144 + Name ="Text14" + ControlSource ="Expr18" + Format ="mmm/dd/yy" + InputMask ="99/99/00;0;@" + GUID = + End + Begin Label + OverlapFlags =211 + TextAlign =3 + Left =450 + Top =5100 + Width =2010 + Height =270 + Name ="Label17" + Caption ="AUTO ASEGURADO:" + GUID = + End + Begin Label + FontUnderline = NotDefault + OverlapFlags =211 + Left =2640 + Top =4830 + Width =705 + Height =270 + Name ="Label18" + Caption ="AÑO" + GUID = + End + Begin Label + FontUnderline = NotDefault + OverlapFlags =211 + Left =4455 + Top =4815 + Width =780 + Height =285 + Name ="Label47" + Caption ="TIPO" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + Left =2505 + Top =5130 + Width =885 + TabIndex =6 + Name ="Text71" + ControlSource ="MODELO" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + Left =3390 + Top =5130 + Width =2670 + TabIndex =7 + Name ="Text74" + ControlSource ="CARROCERIA" + GUID = + End + Begin Label + FontUnderline = NotDefault + OverlapFlags =211 + Left =6615 + Top =4830 + Width =795 + Height =270 + Name ="Label76" + Caption ="MARCA" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + Left =6150 + Top =5130 + TabIndex =8 + Name ="Text77" + ControlSource ="MARCA" + GUID = + End + Begin Label + FontUnderline = NotDefault + OverlapFlags =211 + Left =8880 + Top =4830 + Width =1080 + Height =270 + Name ="Label79" + Caption ="NO. SERIE" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + Left =7635 + Top =5130 + Width =2655 + TabIndex =9 + Name ="Text80" + ControlSource ="MOTOR" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextFontCharSet =2 + TextFontFamily =2 + Left =9300 + Top =1590 + Width =315 + FontSize =12 + TabIndex =10 + Name ="Text49" + ControlSource ="=IIf([num util] Is Null,\"*\")" + FontName ="Wingdings" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextFontCharSet =2 + TextFontFamily =2 + Left =9840 + Top =1605 + Width =390 + FontSize =12 + TabIndex =11 + Name ="Expr10" + ControlSource ="Expr10" + FontName ="Vacation MT" + GUID = + End + Begin Label + OverlapFlags =211 + Left =7530 + Top =435 + Width =2220 + Height =270 + Name ="Label114" + Caption ="(Auto Cobertura Amplia)" + GUID = + End + Begin Label + OverlapFlags =211 + Left =1965 + Top =14220 + Width =180 + Height =270 + Name ="Etiqueta125" + Caption ="2" + GUID = + End + Begin TextBox + DecimalPlaces =0 + OverlapFlags =211 + TextAlign =2 + Left =90 + Top =14220 + Width =1290 + TabIndex =12 + Name ="Texto126" + ControlSource ="NUMER ID" + Format ="General Number" + StatusBarText ="NUMERO DEL CLIENTE" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + BackStyle =0 + Left =2640 + Top =14220 + Width =2865 + TabIndex =13 + Name ="Texto127" + ControlSource ="COMP" + GUID = + End + Begin Subform + CanGrow = NotDefault + OverlapFlags =211 + OldBorderStyle =0 + Left =60 + Top =12840 + Width =5064 + Height =1019 + TabIndex =14 + Name ="Secundario132" + SourceObject ="Report.Labels DATGRAL" + LinkChildFields ="NUM id" + LinkMasterFields ="NUM id" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =1 + BackStyle =0 + Left =8985 + Top =12150 + Width =1860 + Height =270 + TabIndex =15 + Name ="Texto133" + ControlSource ="=Format(Date(),\"Medium Date\")" + GUID = + End + Begin Label + OverlapFlags =211 + TextAlign =2 + Left =6885 + Top =11370 + Width =3525 + Height =390 + FontSize =14 + Name ="Etiqueta134" + Caption ="AVISO DE RENOVACION" + FontName ="Albertus Medium" + GUID = + End + Begin Label + OverlapFlags =211 + Left =7530 + Top =11760 + Width =2220 + Height =270 + Name ="Etiqueta136" + Caption ="(Auto Cobertura Amplia)" + GUID = + End + Begin TextBox + OverlapFlags =243 + TextAlign =2 + BackStyle =0 + Left =5475 + Top =14190 + Width =1665 + Height =270 + TabIndex =16 + Name ="Texto140" + ControlSource ="Expr18" + Format ="mmm/dd/yy" + InputMask ="99/99/00;0;@" + GUID = + End + Begin Label + BackStyle =1 + OverlapFlags =211 + TextFontFamily =2 + Left =4620 + Top =1080 + Width =2325 + Height =225 + FontSize =8 + Name ="Etiqueta52" + Caption ="susana@jorgecuadros.com" + GUID = + End + Begin Label + BackStyle =1 + OverlapFlags =211 + TextFontFamily =2 + Left =4620 + Top =12480 + Width =2325 + Height =225 + FontSize =8 + Name ="Etiqueta142" + Caption ="susana@jorgecuadros.com" + GUID = + End + Begin Label + OverlapFlags =211 + Left =60 + Top =4290 + Width =10740 + Height =480 + Name ="Etiqueta145" + Caption ="The current policy referred above will be due at the date shown. Also, we’re des" + "cribing the insured vehicle which we suggest to verify the specific details:" + GUID = + End + Begin Label + OverlapFlags =211 + Left =480 + Top =5370 + Width =1920 + Height =480 + Name ="Etiqueta146" + Caption ="ACV: $ Comercial.\015\012DAYS: 365\015\012" + GUID = + End + Begin Label + OverlapFlags =211 + Left =60 + Top =5880 + Width =10740 + Height =1080 + Name ="Etiqueta147" + Caption ="COLLISION DEDUCTIBLE $ 500.00 Dls. THEFT DEDUCTIBLE $ 1000.00 Dls. LIABILITY CO" + "VERAGE ONLY IN MEXICO (365 days) Annual Premium $ 325.15 PD: $25,000 PL: $40/80" + ",000 MEDICAL: $ 2/10,000 LEGAL INCLUDED\015\012IMPORTANT NOTICE: You have the" + " option to renew as shown above at your own risk, HOWEVER, there’re some importa" + "nt changes in our “Labor Laws” that requires increasing sum of liability to be p" + "roperly covered...\015\012" + GUID = + End + Begin Label + OverlapFlags =211 + Left =60 + Top =6900 + Width =10740 + Height =540 + Name ="Etiqueta148" + Caption ="We now highly recommend to consider buying a higher amount to avoid being caught" + " under insured, should you be involved in a sever bodily injury accident or poss" + "ibly a death occurrence." + GUID = + End + Begin Label + OverlapFlags =211 + Left =60 + Top =7485 + Width =8460 + Height =300 + Name ="Etiqueta149" + Caption ="I recommend buying a minimum CSL of $300,000 plus Medical $2/10,000 and Legal as" + "sistance. " + GUID = + End + Begin Label + OverlapFlags =211 + Left =60 + Top =8040 + Width =10740 + Height =750 + FontWeight =700 + Name ="Etiqueta150" + Caption ="With this renewal, we’re also offering to buy a NEW RENTAL CAR option, to have a" + " rented car while possibly having: a) Collision, b) Break Down due to Mechanical" + " Failure or c) Possibly have your car Stolen (Details on the back of this page) " + "Annual Premium $ 50.00 Dls.\015\012" + GUID = + End + Begin Label + OverlapFlags =211 + TextAlign =2 + Left =8760 + Top =2415 + Width =1215 + Height =240 + FontSize =16 + Name ="Texto124" + Caption ="*" + GUID = + End + Begin Label + OverlapFlags =211 + TextAlign =2 + Left =8385 + Top =3585 + Width =1155 + Height =240 + FontSize =16 + FontWeight =700 + Name ="RENOVACIONS" + Caption ="*" + GUID = + End + Begin Label + OverlapFlags =211 + TextAlign =2 + Left =9630 + Top =3585 + Width =1170 + Height =240 + FontSize =16 + Name ="Text33" + Caption ="*" + GUID = + End + Begin Label + OverlapFlags =211 + TextAlign =2 + Left =9645 + Top =3945 + Width =1155 + Height =240 + FontSize =16 + FontWeight =700 + Name ="Texto123" + Caption ="*" + GUID = + End + Begin Label + OverlapFlags =211 + Left =60 + Top =8820 + Width =4350 + Height =255 + Name ="Etiqueta151" + Caption ="We still suggest reading this important reminder:" + GUID = + End + Begin Label + BackStyle =1 + OverlapFlags =211 + Left =60 + Top =9135 + Width =10740 + Height =1260 + Name ="Etiqueta152" + Caption ="NEVER NEVER: Leave the scene of the accident, Make private agreements, Drive wit" + "hout a license, Drive under the influence of drugs or alcohol, Avoid calling our" + " Adjuster regardless of the size of the accident, if you cannot find him, you ca" + "n always call our office, using the numbers provided in your pocket ID. You will" + " be detained when causing a Bodily Injury accident, and an Attorney will be prov" + "ide to post a Bail Bond to bailed you out ASAP. If the insured vehicle is a SUV," + " Pick up or any other type other than an automobile, deductibles for collision a" + "nd theft will increase to $1000 Dls." + GUID = + End + Begin Label + OverlapFlags =211 + TextAlign =3 + Left =6660 + Top =7740 + Width =4140 + Height =255 + Name ="Etiqueta153" + Caption ="New Renewal annual Premium $ 365.25 Dls." + GUID = + End + Begin Label + OverlapFlags =211 + TextAlign =3 + Left =7440 + Top =8520 + Width =3390 + Height =255 + FontWeight =700 + Name ="Etiqueta154" + Caption ="Total Annual Premium $ 405.25 Dls" + GUID = + End + Begin UnboundObjectFrame + SizeMode =1 + BackStyle =0 + OldBorderStyle =0 + OverlapFlags =81 + Top =14940 + Width =10861 + Height =13741 + TabIndex =17 + Name ="OLEIndependiente155" + OleData = + Class ="Word.Document.8" + OLEClass ="Microsoft Office Word 97 - 2003" + GUID = + End + Begin Label + OverlapFlags =211 + TextAlign =2 + Left =8685 + Top =13320 + Width =1215 + Height =240 + FontSize =16 + FontWeight =700 + Name ="Texto131" + Caption ="*" + GUID = + End + Begin Label + OverlapFlags =211 + TextAlign =2 + Left =8310 + Top =14220 + Width =1230 + Height =240 + FontSize =16 + Name ="Texto129" + Caption ="*" + GUID = + End + Begin Label + OverlapFlags =211 + TextAlign =2 + Left =9645 + Top =14220 + Width =1155 + Height =240 + FontSize =16 + FontWeight =700 + Name ="Texto141" + Caption ="*" + GUID = + End + End + End + Begin PageFooter + Height =0 + Name ="PageFooter" + GUID = + End + End +End \ No newline at end of file diff --git a/migration/legacy_report_defs/LIC_RENEW_X_VENCE_ATLAS_2013.txt b/migration/legacy_report_defs/LIC_RENEW_X_VENCE_ATLAS_2013.txt new file mode 100644 index 0000000..776f7e2 --- /dev/null +++ b/migration/legacy_report_defs/LIC_RENEW_X_VENCE_ATLAS_2013.txt @@ -0,0 +1,1657 @@ +Version =19 +VersionRequired =19 +Checksum =123705986 +Begin Report + LayoutForPrint = NotDefault + AllowDesignChanges = NotDefault + DefaultView =0 + TabularFamily =55 + DateGrouping =1 + GrpKeepTogether =1 + PictureAlignment =2 + DatasheetGridlinesBehavior =3 + GridX =24 + GridY =24 + Width =10920 + DatasheetFontHeight =10 + ItemSuffix =64 + DatasheetGridlinesColor =12632256 + RecSrcDt = Begin + 0x9c1911845d3ce440 + End + RecordSource ="LIC RENEW X VENCE ATLAS 2013" + DatasheetFontName ="Tahoma" + PrtMip = + PrtDevMode = + PrtDevNames = + NoSaveCTIWhenDisabled =1 + Begin + Begin Label + BackStyle =0 + TextFontFamily =2 + FontName ="Arial" + End + Begin Image + OldBorderStyle =0 + PictureAlignment =2 + End + Begin TextBox + FELineBreak = NotDefault + OldBorderStyle =0 + TextFontFamily =2 + FontName ="Arial" + End + Begin UnboundObjectFrame + OldBorderStyle =1 + End + Begin BreakLevel + ControlSource ="NUM id" + End + Begin Section + KeepTogether = NotDefault + CanGrow = NotDefault + Height =29161 + Name ="Detalle" + GUID = + Begin + Begin Image + Width =10905 + Height =14805 + Name ="OLEIndependiente148" + PictureData = Begin + 0x030000003c01cd0208000000094b000002660000560826ae010009000003b631 , + 0x00000e008d08000000000400000003010800050000000b020000000005000000 , + 0x0c02dc03d702070000001604db03d60200000000030000001e00040000002c01 , + 0x000007000000fc020000ffffff000000040000002d0100000c00000040092100 , + 0xf000000000000000240032013800d30008000000fa0200000000000000000000 , + 0x040000002d010100040000002d010000040000002701ffff030000001e000400 , + 0x00002c0100000400000002010100040000002e01180005000000090200000002 , + 0x1c000000fb02f5ff00000000000090010000000107400022417269616c000000 , + 0x000000000000000000000000000000000000000000000000040000002d010200 , + 0x13000000320a4700f4000800000054656c3a2030313106000600020003000300 , + 0x060006000600040000002d01020009000000320a47001a01010000002dd40400 , + 0x040000002d0102000a000000320a47001e010200000035320600060004000000 , + 0x2d01020009000000320a47002a01010000002dd40400040000002d0102000f00 , + 0x0000320a47002e01050000002836363129000400060006000500040004000000 , + 0x2d01020009000000320a47004701010000002dd40400040000002d0102000c00 , + 0x0000320a47004b010300000036313200060006000500040000002d0102000900 , + 0x0000320a47005c01010000002dd40400040000002d01020021000000320a4700 , + 0x60011100000031323935202a204661783a202836363129010600060006000600 , + 0x0300040003000600060006000300020004000600060006000300040000002d01 , + 0x020009000000320a4700b201010000002dd40400040000002d0102000c000000 , + 0x320a4700b6010300000036313200060006000600040000002d01020009000000 , + 0x320a4700c801010000002dd40400040000002d0102000d000000320a4700cc01 , + 0x04000000313238350600060005000600040000002d01020009000000320a4700 , + 0xe3010100000020d405001c000000fb02f5ff000000000000bc02000000010740 , + 0x0022417269616c00000000000000000000000000000000000000000000000000 , + 0x0000040000002d01030034000000320a530014011e000000456d61696c3a2049 , + 0x6e737572616e6365407061636e65742e636f6d2e6d7806000b00060003000300 , + 0x030003000300060007000600050006000600050007000a000700060006000600 , + 0x060004000300060006000a0002000b000600040000002d01030009000000320a , + 0x5300c3010100000020d40500040000002d0101001c000000fb02100007000000 , + 0x0000bc02000000000102022253797374656d005b9701c47f2800c70100007a28 , + 0xf6bf00005021bcef620054d4040000002d010400040000002701ffff03000000 , + 0x1e00040000002c010000040000002d0100000c00000040092100f00000000000 , + 0x00003000ae0002001501040000002d010100040000002d010000040000002701 , + 0xffff030000001e00040000002c0100000400000002010100040000002e011800 , + 0x05000000090200000002040000002d01020033000000320a110019011d000000 , + 0x5175696e746120506c617a612053686f7070696e672043656e74657220780800 , + 0x0600020006000300060004000600020006000600060003000700060006000600 , + 0x060002000600060003000700060006000300060004000300040000002d010200 , + 0x2e000000320a1e0019011a000000737569746520332050422e20536f75746820 , + 0x4275696c64696e67060006000200030006000300060003000600070003000300 , + 0x0700060006000300060003000700060002000200070002000600060004000000 , + 0x2d01020009000000320a1e0094010100000020d40600040000002d0102003600 , + 0x0000320a2b0019011f000000323237313020506c6179617320646520526f7361 , + 0x7269746f2c20422e20432ea00600060006000600060003000600020006000600 , + 0x0600060003000600060003000700060006000600040002000300060003000300 , + 0x07000300030007000300040000002d01020009000000320a2b00b10101000000 , + 0x20d40600040000002d010100040000002d010400040000002701ffff03000000 , + 0x1e00040000002c010000040000002d0100000c00000040092100f00000000000 , + 0x00001a00f30001000100040000002d010100040000002d010000040000002701 , + 0xffff030000001e00040000002c0100000400000002010100040000002e011800 , + 0x050000000902000000021c000000fb02f3ff0000000000009001000000010740 , + 0x001254696d6573204e657720526f6d616e000000000000000000000000000000 , + 0x0000040000002d0105001f000000320a11002700100000004a4f52474520482e , + 0x2043554144524f5308000c000c000c000a0006000c00060007000b000c000d00 , + 0x0c000c000c000a00040000002d01050009000000320a1100ce000100000020d4 , + 0x0a00040000002d010100040000002d010400040000002701ffff030000001e00 , + 0x040000002c010000070000001604db03d60200000000030000001e0004000000 , + 0x2c010000040000002d0100000c00000040092100f00000000000000013005f00 , + 0xda000100040000002d010100040000002d010000040000002701ffff04000000 , + 0x2c0100000400000002010100040000002e011800050000000902000000021c00 , + 0x0000fb02f6ff000000000000bc02010000010740001254696d6573204e657720 , + 0x526f6d616e0000000000000000000000000000000000040000002d0106001800 , + 0x0000320ae60015000b0000004163636f756e74204e6f2e000700040004000500 , + 0x0600060003000300070005000300040000002d01060009000000320ae6004a00 , + 0x0100000020d40400070000001604db03d60200000000040000002d0101000400 , + 0x00002d010400030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f00000000000000013005500da006000040000002d01010004000000 , + 0x2d010000040000002701ffff040000002c010000040000002d0106000d000000 , + 0x320ae6007c0004000000434f44450700070007000700040000002d0106000900 , + 0x0000320ae60098000100000020d40500070000001604db03d602000000000400 , + 0x00002d010100040000002d010400030000001e00040000002c01000004000000 , + 0x2d0100000c00000040092100f0000000000000001300b600da00b50004000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000004000000 , + 0x2d01060021000000320ae600d80011000000494e535552414e434520434f4d50 , + 0x414e590104000700060007000700070007000700060003000700070009000600 , + 0x070006000700040000002d01060009000000320ae60046010100000020d40400 , + 0x070000001604db03d60200000000040000002d010100040000002d0104000300 , + 0x00001e00040000002c010000040000002d0100000c00000040092100f0000000 , + 0x0000000013006700da006b01040000002d010100040000002d01000004000000 , + 0x2701ffff040000002c010000040000002d01060013000000320ae60084010800 , + 0x0000445545204441544507000700070003000700070006000700040000002d01 , + 0x060009000000320ae600b7010100000020d40400070000001604db03d6020000 , + 0x0000040000002d010100040000002d010400030000001e00040000002c010000 , + 0x040000002d0100000c00000040092100f00000000000000013005700da00d201 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x040000002d01060010000000320ae600e9010600000043524544495407000700 , + 0x0700070004000600040000002d01060009000000320ae6000f020100000020d4 , + 0x0400070000001604db03d60200000000040000002d010100040000002d010400 , + 0x030000001e00040000002c010000040000002d0100000c00000040092100f000 , + 0x00000000000013005600da002902040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c010000040000002d01060010000000320ae6003d02 , + 0x06000000434841524745070008000700070007000700040000002d0106000900 , + 0x0000320ae60068020100000020d40400070000001604db03d602000000000400 , + 0x00002d010100040000002d010400030000001e00040000002c01000004000000 , + 0x2d0100000c00000040092100f00000000000000013005600da007f0204000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000004000000 , + 0x2d01060012000000320ae60091020700000042414c414e434500070007000600 , + 0x0700070007000700040000002d01060009000000320ae600c1020100000020d4 , + 0x0400070000001604db03d60200000000040000002d010100040000002d010400 , + 0x030000001e00040000002c010000040000002d0100000c00000040092100f000 , + 0x00000000000018005f00ed000100040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c0100001c000000fb02f7ff00000000000090010000 , + 0x00010740001254696d6573204e657720526f6d616e0000000000000000000000 , + 0x000000000000040000002d01070009000000320afd0005000100000020d40400 , + 0x070000001604db03d60200000000040000002d010100040000002d0104000300 , + 0x00001e00040000002c010000040000002d0100000c00000040092100f0000000 , + 0x0000000018005500ed006000040000002d010100040000002d01000004000000 , + 0x2701ffff040000002c010000040000002d01070009000000320afd0063000100 , + 0x000020d40400070000001604db03d60200000000040000002d01010004000000 , + 0x2d010400030000001e00040000002c010000040000002d0100000c0000004009 , + 0x2100f0000000000000001800b600ed00b500040000002d010100040000002d01 , + 0x0000040000002701ffff040000002c010000040000002d01070009000000320a , + 0xfd00b8000100000020d40400070000001604db03d60200000000040000002d01 , + 0x0100040000002d010400030000001e00040000002c010000040000002d010000 , + 0x0c00000040092100f00000000000000018006700ed006b01040000002d010100 , + 0x040000002d010000040000002701ffff040000002c010000040000002d010700 , + 0x09000000320afd006e010100000020d40400070000001604db03d60200000000 , + 0x040000002d010100040000002d010400030000001e00040000002c0100000400 , + 0x00002d0100000c00000040092100f00000000000000018005700ed00d2010400 , + 0x00002d010100040000002d010000040000002701ffff040000002c0100000400 , + 0x00002d01070009000000320afd00d5010100000020d40400070000001604db03 , + 0xd60200000000040000002d010100040000002d010400030000001e0004000000 , + 0x2c010000040000002d0100000c00000040092100f00000000000000018005600 , + 0xed002902040000002d010100040000002d010000040000002701ffff04000000 , + 0x2c010000040000002d01070009000000320afd002b020100000020d404000700 , + 0x00001604db03d60200000000040000002d010100040000002d01040003000000 , + 0x1e00040000002c010000040000002d0100000c00000040092100f00000000000 , + 0x000018005600ed007f02040000002d010100040000002d010000040000002701 , + 0xffff040000002c010000040000002d01070009000000320afd00820201000000 , + 0x20d40400070000001604db03d60200000000040000002d010100040000002d01 , + 0x0400030000001e00040000002c010000040000002d0100000c00000040092100 , + 0xf00000000000000018005f0005010100040000002d010100040000002d010000 , + 0x040000002701ffff040000002c010000040000002d01070009000000320a1301 , + 0x05000100000020d40400070000001604db03d60200000000040000002d010100 , + 0x040000002d010400030000001e00040000002c010000040000002d0100000c00 , + 0x000040092100f0000000000000001800550005016000040000002d0101000400 , + 0x00002d010000040000002701ffff040000002c010000040000002d0107000900 , + 0x0000320a130164000100000020d40400070000001604db03d602000000000400 , + 0x00002d010100040000002d010400030000001e00040000002c01000004000000 , + 0x2d0100000c00000040092100f0000000000000001800b6000501b50004000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000004000000 , + 0x2d01070009000000320a1301b9000100000020d40400070000001604db03d602 , + 0x00000000040000002d010100040000002d010400030000001e00040000002c01 , + 0x0000040000002d0100000c00000040092100f000000000000000180067000501 , + 0x6b01040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x0000040000002d01070009000000320a13016f010100000020d4040007000000 , + 0x1604db03d60200000000040000002d010100040000002d010400030000001e00 , + 0x040000002c010000040000002d0100000c00000040092100f000000000000000 , + 0x180057000501d201040000002d010100040000002d010000040000002701ffff , + 0x040000002c0100001c000000fb02edff00000000000090010000000107400022 , + 0x417269616c000000000000000000000000000000000000000000000000000000 , + 0x040000002d01080009000000320a1c0125020100000020d40a00070000001604 , + 0xdb03d60200000000040000002d010100040000002d010400030000001e000400 , + 0x00002c010000040000002d0100000c00000040092100f0000000000000001800 , + 0x560005012902040000002d010100040000002d010000040000002701ffff0400 , + 0x00002c010000040000002d01020010000000320a1901500206000000546f7461 , + 0x6c200600060003000600020003001c000000fb02f0ff000000000000f4010000 , + 0x0002074000024d61726c65747400000000000000000000000000000000000000 , + 0x000000000000040000002d01090009000000320a19016a020100000034011000 , + 0x1c000000fb02f4ff00000000000090010000000107400022417269616c000000 , + 0x000000000000000000000000000000000000000000000000040000002d010a00 , + 0x09000000320a19017a020100000020d40700070000001604db03d60200000000 , + 0x040000002d010100040000002d010400030000001e00040000002c0100000400 , + 0x00002d0100000c00000040092100f0000000000000001800560005017f020400 , + 0x00002d010100040000002d010000040000002701ffff040000002c0100000400 , + 0x00002d01070009000000320a150183020100000020d40400070000001604db03 , + 0xd60200000000040000002d010100040000002d010400030000001e0004000000 , + 0x2c01000007000000fc020000000000000000040000002d010b000c0000004009 , + 0x2100f00000000000000013000100da000100040000002d010100040000002d01 , + 0x0000040000002701ffff040000002c010000070000001604db03d60200000000 , + 0x030000001e00040000002c010000040000002d010b000c00000040092100f000 , + 0x0000000000002a000100da006000040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c010000070000001604db03d6020000000003000000 , + 0x1e00040000002c010000040000002d010b000c00000040092100f00000000000 , + 0x00002a000100da00b500040000002d010100040000002d010000040000002701 , + 0xffff040000002c010000070000001604db03d60200000000030000001e000400 , + 0x00002c010000040000002d010b000c00000040092100f0000000000000002a00 , + 0x0100da006b01040000002d010100040000002d010000040000002701ffff0400 , + 0x00002c010000070000001604db03d60200000000030000001e00040000002c01 , + 0x0000040000002d010b000c00000040092100f0000000000000002a000100da00 , + 0xd201040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x0000070000001604db03d60200000000030000001e00040000002c0100000400 , + 0x00002d010b000c00000040092100f00000000000000043000100da0028020400 , + 0x00002d010100040000002d010000040000002701ffff040000002c0100000700 , + 0x00001604db03d60200000000030000001e00040000002c010000040000002d01 , + 0x0b000c00000040092100f0000000000000002a000100da007f02040000002d01 , + 0x0100040000002d010000040000002701ffff040000002c010000070000001604 , + 0xdb03d60200000000030000001e00040000002c010000040000002d010b000c00 , + 0x000040092100f00000000000000013000100da00d402040000002d0101000400 , + 0x00002d010000040000002701ffff040000002c010000070000001604db03d602 , + 0x00000000030000001e00040000002c010000040000002d010b000c0000004009 , + 0x2100f00000000000000018000200ed000100040000002d010100040000002d01 , + 0x0000040000002701ffff040000002c010000070000001604db03d60200000000 , + 0x030000001e00040000002c010000040000002d010b000c00000040092100f000 , + 0x0000000000002f000200ed00d302040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c010000070000001604db03d6020000000003000000 , + 0x1e00040000002c010000040000002d010b000c00000040092100f00000000000 , + 0x00001600020005017f02040000002d010100040000002d010000040000002701 , + 0xffff040000002c010000070000001604db03d60200000000030000001e000400 , + 0x00002c010000040000002d010b000c00000040092100f0000000000000000100 , + 0xd402da000100040000002d010100040000002d010000040000002701ffff0400 , + 0x00002c010000070000001604db03d60200000000030000001e00040000002c01 , + 0x0000040000002d010b000c00000040092100f0000000000000000200d402ec00 , + 0x0100040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x0000070000001604db03d60200000000030000001e00040000002c0100000400 , + 0x00002d010b000c00000040092100f0000000000000000200d302040101000400 , + 0x00002d010100040000002d010000040000002701ffff040000002c0100000700 , + 0x00001604db03d60200000000030000001e00040000002c010000040000002d01 , + 0x0b000c00000040092100f000000000000000010057001c012802040000002d01 , + 0x0100040000002d010000040000002701ffff040000002c010000070000001604 , + 0xdb03d60200000000030000001e00040000002c010000040000002d010b000c00 , + 0x000040092100f000000000000000020056001b017f02040000002d0101000400 , + 0x00002d010000040000002701ffff040000002c010000040000002701ffff0300 , + 0x00001e00040000002c0100000400000002010100040000002e01180004000000 , + 0xf001030004000000f0010500050000000902000000021c000000fb02f3ff0000 , + 0x00000000bc020000000107400022417269616c00000000000000000000000000 , + 0x0000000000000000000000000000040000002d0103000f000000320a43002402 , + 0x05000000446174653a00090008000400080004001c000000fb02f3ff00000000 , + 0x000090010000000107400022417269616c000000000000000000000000000000 , + 0x000000000000000000000000040000002d01050009000000320a430045020100 , + 0x000020d40f00040000002d01030009000000320a430054020100000020d40700 , + 0x040000002d010100040000002d010400040000002701ffff030000001e000400 , + 0x00002c010000040000002d0100000c00000040092100f0000000000000001200 , + 0xe9009e020900040000002d010100040000002d010000040000002701ffff0300 , + 0x00001e00040000002c0100000400000002010100040000002e01180004000000 , + 0xf0010600050000000902000000021c000000fb02f5ff00000000000090010000 , + 0x00010740001254696d6573204e657720526f6d616e0000000000000000000000 , + 0x000000000000040000002d0106001f000000320aad023b00100000004a4f5247 , + 0x4520482e2043554144524f5306000a0009000900090005000a00050005000900 , + 0x0a000a000a0009000a000700040000002d01060009000000320aad02c0000100 , + 0x000020d40800040000002d010100040000002d010400040000002701ffff0300 , + 0x00001e00040000002c01000008000000fa020000010000000000000004000000 , + 0x2d010c0007000000fc020100000000000000040000002d010d000c0000002403 , + 0x0400010006000100ea02d502ea02d5020600040000002d01010004000000f001 , + 0x0c00040000002d010100040000002d010000040000002701ffff030000001e00 , + 0x040000002c01000008000000fa02000001000000ffffff00040000002d010c00 , + 0x040000002d010d000c00000024030400c1016300c1019f00ce029f00ce026300 , + 0x040000002d01010004000000f0010c00040000002d010100040000002d010000 , + 0x040000002701ffff030000001e00040000002c01000004000000020101000400 , + 0x00002e01180005000000090200000002040000002d0102001f000000320a7200 , + 0xc501100000004d41494c494e4720414444524553533a08000800020007000300 , + 0x07000800030008000700080008000600070007000300040000002d0102000900 , + 0x0000320a720029020100000020d40700040000002d01040004000000f0010800 , + 0x1c000000fb02f5ff000000000000bc020000000107400022417269616c000000 , + 0x000000000000000000000000000000000000000000000000040000002d010800 , + 0x1f000000320a7e00c501100000004a4f52474520482e2043554144524f530600 , + 0x0800070009000600040007000300030008000700090007000800080007000400 , + 0x00002d01080009000000320a7e0030020100000020d40700040000002d010200 , + 0x1b000000320a8a00c5010d000000504f20424f58203433373131300006000800 , + 0x04000700080007000300060006000600060006000600040000002d0102000900 , + 0x0000320a8a0014020100000020d40700040000002d01020027000000320a9600 , + 0xc5011500000053414e2059534944524f2c2043412e203932313433d407000800 , + 0x0700030008000700020008000700080003000300070008000300030006000600 , + 0x060006000600040000002d01020009000000320a96003f02010000002dd40400 , + 0x040000002d0102000d000000320a960043020400000037313130060006000600 , + 0x0600040000002d01020009000000320a96005b020100000020d4050004000000 , + 0x2d010100040000002d010400040000002701ffff030000001e00040000002c01 , + 0x00000400000002010100040000002e01180004000000f0010900050000000902 , + 0x000000021c000000fb02f9ff0000000000009001000000010740002241726961 , + 0x6c00000000000000000000000000000000000000000000000000000004000000 , + 0x2d01090045000000320adf02130129000000504c45415345204b454550205448 , + 0x495320504f5254494f4e20464f5220594f5552205245434f5244530005000400 , + 0x0400050004000500010005000400050004000200040005000200050001000500 , + 0x0500040005000200050005000200040005000500010005000500050005000200 , + 0x0400050005000500050004000500040000002d01090009000000320adf02bb01 , + 0x0100000020d40300040000002d010100040000002d010400040000002701ffff , + 0x030000001e00040000002c0100000400000002010100040000002e0118000400 , + 0x0000f001070005000000090200000002040000002d010a002d000000320ab400 , + 0x1a021900000024205f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f2046 , + 0x0700030007000700070006000700070006000700070006000700070006000700 , + 0x0700070006000700070006000700070002001c000000fb02f4ff000000000000 , + 0xbc020000000107400022417269616c0000000000000000000000000000000000 , + 0x00000000000000000000040000002d01070016000000320ac20041020a000000 , + 0x414d4f554e542044554508000a000a0008000900070004000800090007000400 , + 0x00002d010a0009000000320ac20091020100000020d40700040000002d010100 , + 0x040000002d010400040000002701ffff030000001e00040000002c0100000400 , + 0x00002d010b000c00000040092100f0000000000000001a002702ba0201000400 , + 0x00002d010100040000002d010000040000002701ffff030000001e0004000000 , + 0x2c0100000400000002010100040000002e011800050000000902ffffff020400 , + 0x00002d01070040000000320ac9022100260000004641494c55524520544f2052 , + 0x4553504f4e442057494c4c20524553554c5420494e204e4f4e20070008000400 , + 0x0700090009000700040007000900040009000700080008000a00090008000300 , + 0x0c00030007000800030009000700090008000800070003000400080004000800 , + 0x0a0008000300040000002d01070009000000320ac9022b01010000002dd40500 , + 0x040000002d01070030000000320ac90230011b0000002052454e4557414c204f , + 0x4620544845534520434f5645524147455355030009000800090007000c000800 , + 0x080003000a000700030008000900070009000700040008000900090008000900 , + 0x0900090007000800040000002d01070009000000320ac902ff010100000020d4 , + 0x080005000000090200000002040000002d010100040000002d01040004000000 , + 0x2701ffff030000001e00040000002c010000040000002d010b000c0000004009 , + 0x2100f0000000000000001a00b300ba022202040000002d010100040000002d01 , + 0x0000040000002701ffff030000001e00040000002c0100000400000002010100 , + 0x040000002e01180004000000f0010500050000000902ffffff021c000000fb02 , + 0xf6ff000000000000bc020000000107400022417269616c000000000000000000 , + 0x000000000000000000000000000000000000040000002d01050031000000320a , + 0xc70238021c000000414c4c20414d4f554e54532041524520494e20552e20532e , + 0x2043792e07000600060003000700090008000700070005000700030007000700 , + 0x0700030003000700030007000300030007000300030007000500030004000000 , + 0x2d01050009000000320ac702d1020100000020d4060005000000090200000002 , + 0x040000002d010100040000002d010400040000002701ffff030000001e000400 , + 0x00002c0100000400000002010100040000002e01180004000000f00103000500 , + 0x00000902000000021c000000fb02f1ff00000000000090010100000107400052 , + 0x4861726c6f7720536f6c6964204974616c696300000000000000000000000000 , + 0x040000002d01030015000000320ae3025b02090000005468616e6b20596f75d6 , + 0x0b00070007000800060004000d0006000700040000002d01030009000000320a , + 0xe302a0020100000020d40700040000002d010100040000002d01040004000000 , + 0x2701ffff030000001e00040000002c010000040000002d0100000c0000004009 , + 0x2100f000000000000000300032013203d300040000002d010100040000002d01 , + 0x0000040000002701ffff030000001e00040000002c0100000400000002010100 , + 0x040000002e01180005000000090200000002040000002d01080013000000320a , + 0x4103f3000800000054656c3a2030313106000700030003000300060006000600 , + 0x040000002d01080009000000320a41031b01010000002dd40400040000002d01 , + 0x08000a000000320a41031f0102000000353206000600040000002d0108000900 , + 0x0000320a41032b01010000002dd40300040000002d0108000f000000320a4103 , + 0x2e010500000028363631290004000600060006000300040000002d0108000900 , + 0x0000320a41034701010000002dd40400040000002d0108000c000000320a4103 , + 0x4b010300000036313200060006000600040000002d01080009000000320a4103 , + 0x5d01010000002dd40300040000002d01080021000000320a4103600111000000 , + 0x31323935202a204661783a202836363129010600060006000600030004000300 , + 0x0600060006000300030004000600060006000400040000002d01080009000000 , + 0x320a4103b401010000002dd40400040000002d0108000c000000320a4103b801 , + 0x0300000036313200060006000500040000002d01080009000000320a4103c901 , + 0x010000002dd40400040000002d0108000d000000320a4103cd01040000003132 , + 0x38350600060006000600040000002d01080009000000320a4103e50101000000 , + 0x20d40500040000002d01080034000000320a4e0314011e000000456d61696c3a , + 0x20496e737572616e6365407061636e65742e636f6d2e6d7806000b0006000300 , + 0x0300030003000300060007000600050006000600050007000a00070006000600 , + 0x0600060004000300060006000a0002000b000600040000002d01080009000000 , + 0x320a4e03c3010100000020d40500040000002d010100040000002d0104000400 , + 0x00002701ffff030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f0000000000000003000ae00fc021501040000002d01010004000000 , + 0x2d010000040000002701ffff030000001e00040000002c010000040000000201 , + 0x0100040000002e01180005000000090200000002040000002d01020033000000 , + 0x320a0b0319011d0000005175696e746120506c617a612053686f7070696e6720 , + 0x43656e7465722078080006000200060003000600040006000200060006000600 , + 0x0300070006000600060006000200060006000300070006000600030006000400 , + 0x0300040000002d0102002e000000320a180319011a0000007375697465203320 , + 0x50422e20536f757468204275696c64696e670600060002000300060003000600 , + 0x0300060007000300030007000600060003000600030007000600020002000700 , + 0x020006000600040000002d01020009000000320a180394010100000020d40600 , + 0x040000002d01020036000000320a250319011f000000323237313020506c6179 , + 0x617320646520526f73617269746f2c20422e20432ea006000600060006000600 , + 0x0300060002000600060006000600030006000600030007000600060006000400 , + 0x0200030006000300030007000300030007000300040000002d01020009000000 , + 0x320a2503b1010100000020d40600040000002d010100040000002d0104000400 , + 0x00002701ffff030000001e00040000002c010000070000001604db03d6020000 , + 0x0000030000001e00040000002c010000040000002d0100000c00000040092100 , + 0xf00000000000000013005f00a1030100040000002d010100040000002d010000 , + 0x040000002701ffff040000002c0100000400000002010100040000002e011800 , + 0x04000000f0010600050000000902000000021c000000fb02f6ff000000000000 , + 0xbc02010000010740001254696d6573204e657720526f6d616e00000000000000 , + 0x00000000000000000000040000002d01060018000000320aad0315000b000000 , + 0x4163636f756e74204e6f2e000700040004000500060006000300030007000500 , + 0x0300040000002d01060009000000320aad034a000100000020d4040007000000 , + 0x1604db03d60200000000040000002d010100040000002d010400030000001e00 , + 0x040000002c010000040000002d0100000c00000040092100f000000000000000 , + 0x13005500a1036000040000002d010100040000002d010000040000002701ffff , + 0x040000002c010000040000002d0106000d000000320aad037c0004000000434f , + 0x44450700070007000700040000002d01060009000000320aad03980001000000 , + 0x20d40500070000001604db03d60200000000040000002d010100040000002d01 , + 0x0400030000001e00040000002c010000040000002d0100000c00000040092100 , + 0xf0000000000000001300b600a103b500040000002d010100040000002d010000 , + 0x040000002701ffff040000002c010000040000002d01060021000000320aad03 , + 0xd80011000000494e535552414e434520434f4d50414e59010400070006000700 , + 0x0700070007000700060003000700070009000600070006000700040000002d01 , + 0x060009000000320aad0346010100000020d40400070000001604db03d6020000 , + 0x0000040000002d010100040000002d010400030000001e00040000002c010000 , + 0x040000002d0100000c00000040092100f00000000000000013006700a1036b01 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x040000002d01060013000000320aad0384010800000044554520444154450700 , + 0x0700070003000700070006000700040000002d01060009000000320aad03b701 , + 0x0100000020d40400070000001604db03d60200000000040000002d0101000400 , + 0x00002d010400030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f00000000000000013005700a103d201040000002d01010004000000 , + 0x2d010000040000002701ffff040000002c010000040000002d01060010000000 , + 0x320aad03e9010600000043524544495407000700070007000400060004000000 , + 0x2d01060009000000320aad030f020100000020d40400070000001604db03d602 , + 0x00000000040000002d010100040000002d010400030000001e00040000002c01 , + 0x0000040000002d0100000c00000040092100f00000000000000013005600a103 , + 0x2902040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x0000040000002d01060010000000320aad033d02060000004348415247450700 , + 0x08000700070007000700040000002d01060009000000320aad03680201000000 , + 0x20d40400070000001604db03d60200000000040000002d010100040000002d01 , + 0x0400030000001e00040000002c010000040000002d0100000c00000040092100 , + 0xf00000000000000013005600a1037f02040000002d010100040000002d010000 , + 0x040000002701ffff040000002c010000040000002d01060012000000320aad03 , + 0x91020700000042414c414e434500070007000600070007000700070004000000 , + 0x2d01060009000000320aad03c1020100000020d40400070000001604db03d602 , + 0x00000000040000002d010100040000002d010400030000001e00040000002c01 , + 0x0000040000002d0100000c00000040092100f00000000000000015005f00b403 , + 0x0100040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x000004000000f00109001c000000fb02f7ff0000000000009001000000010740 , + 0x001254696d6573204e657720526f6d616e000000000000000000000000000000 , + 0x0000040000002d01090009000000320ac20305000100000020d4040007000000 , + 0x1604db03d60200000000040000002d010100040000002d010400030000001e00 , + 0x040000002c010000040000002d0100000c00000040092100f000000000000000 , + 0x15005500b4036000040000002d010100040000002d010000040000002701ffff , + 0x040000002c010000040000002d01090009000000320ac20363000100000020d4 , + 0x0400070000001604db03d60200000000040000002d010100040000002d010400 , + 0x030000001e00040000002c010000040000002d0100000c00000040092100f000 , + 0x0000000000001500b600b403b500040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c010000040000002d01090009000000320ac203b800 , + 0x0100000020d40400070000001604db03d60200000000040000002d0101000400 , + 0x00002d010400030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f00000000000000015006700b4036b01040000002d01010004000000 , + 0x2d010000040000002701ffff040000002c010000040000002d01090009000000 , + 0x320ac2036e010100000020d40400070000001604db03d6020000000004000000 , + 0x2d010100040000002d010400030000001e00040000002c010000040000002d01 , + 0x00000c00000040092100f00000000000000015005700b403d201040000002d01 , + 0x0100040000002d010000040000002701ffff040000002c010000040000002d01 , + 0x090009000000320ac203d5010100000020d40400070000001604db03d6020000 , + 0x0000040000002d010100040000002d010400030000001e00040000002c010000 , + 0x040000002d0100000c00000040092100f00000000000000015005600b4032902 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x040000002d01090009000000320ac2032b020100000020d40400070000001604 , + 0xdb03d60200000000040000002d010100040000002d010400030000001e000400 , + 0x00002c010000040000002d0100000c00000040092100f0000000000000001500 , + 0x5600b4037f02040000002d010100040000002d010000040000002701ffff0400 , + 0x00002c010000040000002d01090009000000320ac20382020100000020d40400 , + 0x070000001604db03d60200000000040000002d010100040000002d0104000300 , + 0x00001e00040000002c010000040000002d010b000c00000040092100f0000000 , + 0x0000000013000100a1030100040000002d010100040000002d01000004000000 , + 0x2701ffff040000002c010000070000001604db03d60200000000030000001e00 , + 0x040000002c010000040000002d010b000c00000040092100f000000000000000 , + 0x26000100a2036000040000002d010100040000002d010000040000002701ffff , + 0x040000002c010000070000001604db03d60200000000030000001e0004000000 , + 0x2c010000040000002d010b000c00000040092100f00000000000000026000100 , + 0xa203b500040000002d010100040000002d010000040000002701ffff04000000 , + 0x2c010000070000001604db03d60200000000030000001e00040000002c010000 , + 0x040000002d010b000c00000040092100f00000000000000026000100a2036b01 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x070000001604db03d60200000000030000001e00040000002c01000004000000 , + 0x2d010b000c00000040092100f00000000000000026000100a203d20104000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000007000000 , + 0x1604db03d60200000000030000001e00040000002c010000040000002d010b00 , + 0x0c00000040092100f00000000000000026000100a2032802040000002d010100 , + 0x040000002d010000040000002701ffff040000002c010000070000001604db03 , + 0xd60200000000030000001e00040000002c010000040000002d010b000c000000 , + 0x40092100f00000000000000026000100a2037f02040000002d01010004000000 , + 0x2d010000040000002701ffff040000002c010000070000001604db03d6020000 , + 0x0000030000001e00040000002c010000040000002d010b000c00000040092100 , + 0xf00000000000000013000100a103d402040000002d010100040000002d010000 , + 0x040000002701ffff040000002c010000070000001604db03d602000000000300 , + 0x00001e00040000002c010000040000002d010b000c00000040092100f0000000 , + 0x0000000014000200b4030100040000002d010100040000002d01000004000000 , + 0x2701ffff040000002c010000070000001604db03d60200000000030000001e00 , + 0x040000002c010000040000002d010b000c00000040092100f000000000000000 , + 0x14000200b403d302040000002d010100040000002d010000040000002701ffff , + 0x040000002c010000070000001604db03d60200000000030000001e0004000000 , + 0x2c010000040000002d010b000c00000040092100f0000000000000000100d402 , + 0xa1030100040000002d010100040000002d010000040000002701ffff04000000 , + 0x2c010000070000001604db03d60200000000030000001e00040000002c010000 , + 0x040000002d010b000c00000040092100f0000000000000000200d402b3030100 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x070000001604db03d60200000000030000001e00040000002c01000004000000 , + 0x2d010b000c00000040092100f0000000000000000200d402c703010004000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000004000000 , + 0x2701ffff030000001e00040000002c01000008000000fa02000001000000ffff , + 0xff00040000002d010c00040000002d010d000c000000240304005c015e035c01 , + 0x9a0306029a0306025e03040000002d01010004000000f0010c00040000002d01 , + 0x0100040000002d010000040000002701ffff030000001e00040000002c010000 , + 0x0400000002010100040000002e01180005000000090200000002040000002d01 , + 0x02001f000000320a6e036101100000004d41494c494e4720414444524553533a , + 0x0800080002000700030007000800030008000700080008000600070007000300 , + 0x040000002d01020009000000320a6e03c5010100000020d40700040000002d01 , + 0x08001f000000320a7a036101100000004a4f52474520482e2043554144524f53 , + 0x0600080007000900060004000700030003000800070009000700080008000700 , + 0x040000002d01080009000000320a7a03cc010100000020d40700040000002d01 , + 0x02001b000000320a860361010d000000504f20424f5820343337313130030600 , + 0x080004000700080007000300060006000600060006000600040000002d010200 , + 0x09000000320a8603b0010100000020d40700040000002d01020027000000320a , + 0x920361011500000053414e2059534944524f2c2043412e203932313433d40700 , + 0x0800070003000800070002000800070008000300030007000800030003000600 , + 0x0600060006000600040000002d01020009000000320a9203db01010000002dd4 , + 0x0400040000002d0102000d000000320a9203df01040000003731313006000600 , + 0x06000600040000002d01020009000000320a9203f7010100000020d405000400 , + 0x00002d010100040000002d010400040000002701ffff030000001e0004000000 , + 0x2c0100008d080000410b2000cc003b009000000000003f0098001a0331002800 , + 0x0000900000003b00000001000400000000000000000000000000000000000000 , + 0x00000000000000000000ffffff00fe004000fefefe00fe000000000000000000 , + 0x0000000000000000000000000000000000000000000000000000000000000000 , + 0x0000000000002222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222233333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333223333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333322333 , + 0x3333334444444444444444444444444444444444444444444444444444444333 , + 0x3333333333344444444444444444444444444444444444444444444444444444 , + 0x4443333333322333333334444444444444444444444444444444444444444444 , + 0x4444444444444433333333333344444444444444444444444444444444444444 , + 0x4444444444444444444433333332233333334444444444444444444444444444 , + 0x4444444444444444444444444444444333333333344444444444444444444444 , + 0x4444444444444444444444444444444444444333333223333334444444444444 , + 0x4444444444444444444444444444444444444444444444443333333344444444 , + 0x4444444444444444444444444444444444444444444444444444443333322333 , + 0x3344444444444444444444444444444444444444444444444444444444444444 , + 0x4333333444444444444444444444444444444444444444444444444444444444 , + 0x4444444333322333344444444444444444444444444444444444444444444444 , + 0x4444444444444444443333444444444444444444444444444444444444444444 , + 0x4444444444444444444444443332233344444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433330003333300003303333303000003330333303330000333300003333 , + 0x3300030333333000333330000330333330300000333033330333000033330000 , + 0x3334444443322334444443330333033300333033033303303330333033330330 , + 0x3333033033330333303330333333033303330033303303330330333033303333 , + 0x0330333303303333033444444332233444444330333330330333303300000330 , + 0x3333033033330303333330303333033330330003333033333033033330330000 , + 0x0330333303303333030333333030333303344444433223344444433033333333 , + 0x0333303303330330333303300000030333333033330003333000030333303333 , + 0x3333033330330333033033330330000003033333303333000334444443322334 , + 0x4444433033333333033330333030333033330330333303033333303300333333 , + 0x3330033333303333333303333033303033303333033033330303333330330033 , + 0x3334444443322334444443303333333303333033303033303333033033330303 , + 0x3333303033333333330330333330333333330333303330303330333303303333 , + 0x0303333330303333333444444332233444444333033303330333303330303330 , + 0x3330333033330330333303303333033333033033333303330333033330333030 , + 0x3330333033303333033033330330333303344444433223344444433330003333 , + 0x0333303333033330000033300000333300003333000033333330033333333000 , + 0x3333033330333303333000003330000033330000333300003334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333344444444444444444444444444444444444444444444444444 , + 0x3333333344444444444444444444444444444444444444444444444444333333 , + 0x3334444443322334444443333333334444444444444444444444444444444444 , + 0x4444444444444444433333344444444444444444444444444444444444444444 , + 0x4444444444333333333444444332233444444333333333444444444444444444 , + 0x4444444444444444444444444444444444333344444444444444444444444444 , + 0x4444444444444444444444444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444444444444444444 , + 0x4444444444444444444444444444444444333344444444444444444444444444 , + 0x4444444444444444444444444433333333344444433223344444433333333344 , + 0x4444444444444444444444444444444444444444444444444333333444444444 , + 0x4444444444444444444444444444444444444444443333333334444443322334 , + 0x4444433333333344444444444444444444444444444444444444444444444444 , + 0x3333333344444444444444444444444444444444444444444444444444333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223334444444444444444 , + 0x4444444444444444444444444444444444444444444444444433334444444444 , + 0x4444444444444444444444444444444444444444444444444444444443322333 , + 0x3444444444444444444444444444444444444444444444444444444444444444 , + 0x4333333444444444444444444444444444444444444444444444444444444444 , + 0x4444444433322333334444444444444444444444444444444444444444444444 , + 0x4444444444444444333333334444444444444444444444444444444444444444 , + 0x4444444444444444444444433332233333344444444444444444444444444444 , + 0x4444444444444444444444444444444333333333344444444444444444444444 , + 0x4444444444444444444444444444444444444433333223333333444444444444 , + 0x4444444444444444444444444444444444444444444444333333333333444444 , + 0x4444444444444444444444444444444444444444444444444444433333322333 , + 0x3333344444444444444444444444444444444444444444444444444444444333 , + 0x3333333333344444444444444444444444444444444444444444444444444444 , + 0x4444333333322333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333332233333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222220400 , + 0x00002701ffff030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f0000000000000001b00f300f6020100040000002d01010004000000 , + 0x2d010000040000002701ffff030000001e00040000002c010000040000000201 , + 0x0100040000002e01180004000000f0010a00050000000902000000021c000000 , + 0xfb02f3ff0000000000009001000000010740001254696d6573204e657720526f , + 0x6d616e0000000000000000000000000000000000040000002d010a001f000000 , + 0x320a09032700100000004a4f52474520482e2043554144524f5308000c000c00 , + 0x0c000a0006000c00060007000b000c000d000c000c000c000a00040000002d01 , + 0x0a0009000000320a0903ce000100000020d40a00040000002d01010004000000 , + 0x2d010400040000002701ffff030000001e00040000002c010000040000000201 , + 0x0100040000002e01180004000000f0010700050000000902000000021c000000 , + 0xfb02f3ff000000000000bc020000000107400022417269616c00000000000000 , + 0x0000000000000000000000000000000000000000040000002d0107000f000000 , + 0x320a3a03270205000000446174653a0009000800040008000400040000002d01 , + 0x070009000000320a3a0348020100000020d40700040000002d01010004000000 , + 0x2d010400040000002701ffff030000001e00040000002c01000008000000fa02 , + 0x00000100000000000000040000002d010c00040000002d010d000c0000002403 , + 0x04000100f6020100d703d502d703d502f602040000002d01010004000000f001 , + 0x0c00040000002d010100040000002d010000040000002701ffff030000001e00 , + 0x040000002c0100000400000002010100040000002e01180004000000f0010500 , + 0x050000000902000000021c000000fb02f9ff000000000000bc02000000010740 , + 0x0022417269616c00000000000000000000000000000000000000000000000000 , + 0x0000040000002d01050079000000320ad303d2004c000000464f522050524f50 , + 0x4552204352454449542c20504c454153452044455441434820414e4420524554 , + 0x55524e20424f54544f4d20504f5254494f4e205749544820594f555220504159 , + 0x4d454e5404000500050002000500050005000400050005000200050004000500 , + 0x0500020003000200020005000300050005000400050002000400050003000500 , + 0x0500050002000500050005000200040005000300050005000500020005000500 , + 0x0400030006000500020005000500050003000200050005000200070002000300 , + 0x0500020005000500050005000200050004000500050005000500030004000000 , + 0x2d01050009000000320ad3030c020100000020d40400040000002d0101000400 , + 0x00002d010400040000002701ffff030000001e00040000002c01000004000000 , + 0x02010100040000002e01180004000000f0010300050000000902000000021c00 , + 0x0000fb02f4ff00000000000090010000000107400022417269616c0000000000 , + 0x00000000000000000000000000000000000000000000040000002d0103002d00 , + 0x0000320a8a0319021900000024205f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f , + 0x5f5f5f5f20200700030007000700070006000700070006000700070006000700 , + 0x070006000700070007000600070007000600070007000200040000002d010400 , + 0x04000000f00106001c000000fb02f4ff000000000000bc020000000107400022 , + 0x417269616c000000000000000000000000000000000000000000000000000000 , + 0x040000002d01060016000000320a980340020a000000414d4f554e5420445545 , + 0x08000a000a000800090007000400080009000700040000002d01030009000000 , + 0x320a980390020100000020d40700040000002d010100040000002d0104000400 , + 0x00002701ffff030000001e00040000002c0100008d080000410b2000cc003b00 , + 0x9000000000003e0098001800310028000000900000003b000000010004000000 , + 0x0000000000000000000000000000000000000000000000000000ffffff00fe00 , + 0x4000fefefe00fe00000000000000000000000000000000000000000000000000 , + 0x0000000000000000000000000000000000000000000022222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333322333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333332233333333344444444444444444444444444 , + 0x4444444444444444444444444444433333333333333444444444444444444444 , + 0x4444444444444444444444444444444444433333333223333333344444444444 , + 0x4444444444444444444444444444444444444444444444333333333333444444 , + 0x4444444444444444444444444444444444444444444444444444333333322333 , + 0x3333444444444444444444444444444444444444444444444444444444444443 , + 0x3333333334444444444444444444444444444444444444444444444444444444 , + 0x4444433333322333333444444444444444444444444444444444444444444444 , + 0x4444444444444444333333334444444444444444444444444444444444444444 , + 0x4444444444444444444444333332233333444444444444444444444444444444 , + 0x4444444444444444444444444444444443333334444444444444444444444444 , + 0x4444444444444444444444444444444444444443333223333444444444444444 , + 0x4444444444444444444444444444444444444444444444444433334444444444 , + 0x4444444444444444444444444444444444444444444444444444444433322333 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333300033333000033033333030 , + 0x0000333033330333000033330000333333000303333330003333300003303333 , + 0x3030000033303333033300003333000033344444433223344444433303330333 , + 0x0033303303330330333033303333033033330330333303333033303333330333 , + 0x0333003330330333033033303330333303303333033033330334444443322334 , + 0x4444433033333033033330330000033033330330333303033333303033330333 , + 0x3033000333303333303303333033000003303333033033330303333330303333 , + 0x0334444443322334444443303333333303333033033303303333033000000303 , + 0x3333303333000333300003033330333333330333303303330330333303300000 , + 0x0303333330333300033444444332233444444330333333330333303330303330 , + 0x3333033033330303333330330033333333300333333033333333033330333030 , + 0x3330333303303333030333333033003333344444433223344444433033333333 , + 0x0333303330303330333303303333030333333030333333333303303333303333 , + 0x3333033330333030333033330330333303033333303033333334444443322334 , + 0x4444433303330333033330333030333033303330333303303333033033330333 , + 0x3303303333330333033303333033303033303330333033330330333303303333 , + 0x0334444443322334444443333000333303333033330333300000333000003333 , + 0x0000333300003333333003333333300033330333303333033330000033300000 , + 0x3333000033330000333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333444444444444444444 , + 0x4444444444444444444444444444444433333333444444444444444444444444 , + 0x4444444444444444444444444433333333344444433223344444433333333344 , + 0x4444444444444444444444444444444444444444444444444333333444444444 , + 0x4444444444444444444444444444444444444444443333333334444443322334 , + 0x4444433333333344444444444444444444444444444444444444444444444444 , + 0x4433334444444444444444444444444444444444444444444444444444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344444444444444444444444444444444444444444444444444 , + 0x4433334444444444444444444444444444444444444444444444444444333333 , + 0x3334444443322334444443333333334444444444444444444444444444444444 , + 0x4444444444444444433333344444444444444444444444444444444444444444 , + 0x4444444444333333333444444332233444444333333333444444444444444444 , + 0x4444444444444444444444444444444433333333444444444444444444444444 , + 0x4444444444444444444444444433333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322333444444444444444444444444444444444444444444444444 , + 0x4444444444444444443333444444444444444444444444444444444444444444 , + 0x4444444444444444444444444332233334444444444444444444444444444444 , + 0x4444444444444444444444444444444443333334444444444444444444444444 , + 0x4444444444444444444444444444444444444444333223333344444444444444 , + 0x4444444444444444444444444444444444444444444444443333333344444444 , + 0x4444444444444444444444444444444444444444444444444444444333322333 , + 0x3334444444444444444444444444444444444444444444444444444444444443 , + 0x3333333334444444444444444444444444444444444444444444444444444444 , + 0x4444443333322333333344444444444444444444444444444444444444444444 , + 0x4444444444444433333333333344444444444444444444444444444444444444 , + 0x4444444444444444444443333332233333333444444444444444444444444444 , + 0x4444444444444444444444444444433333333333333444444444444444444444 , + 0x4444444444444444444444444444444444443333333223333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333322333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333322222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222040000002701ffff040000002c0100000300 , + 0x00000000 + End + GUID = + End + Begin TextBox + FELineBreak = NotDefault + DecimalPlaces =0 + TextAlign =2 + TextFontFamily =34 + BackStyle =0 + Left =120 + Top =3585 + Width =1185 + FontSize =10 + Name ="NUM id" + ControlSource ="NUM id" + Format ="General Number" + StatusBarText ="NUMERO DEL CLIENTE" + EventProcPrefix ="NUM_id" + GUID = + End + Begin Label + TextFontFamily =34 + Left =1920 + Top =3585 + Width =180 + Height =239 + FontSize =10 + Name ="Label3" + Caption ="2" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + TextAlign =2 + TextFontFamily =34 + Left =2910 + Top =3585 + Width =2235 + FontSize =10 + TabIndex =1 + Name ="COMPAÑIA" + ControlSource ="COMP" + GUID = + End + Begin Label + TextAlign =2 + TextFontFamily =34 + Left =6810 + Top =60 + Width =4005 + Height =405 + FontSize =12 + Name ="Label0" + Caption ="R E N E W A L N O T I C E" + FontName ="Albertus Medium" + GUID = + End + Begin Label + TextAlign =2 + TextFontFamily =34 + Left =7800 + Top =375 + Width =2025 + Height =315 + FontSize =11 + Name ="Label70" + Caption ="(For drivers license)" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + TextAlign =1 + TextFontFamily =34 + BackStyle =0 + Left =8820 + Top =795 + Width =1860 + Height =270 + FontSize =10 + TabIndex =2 + Name ="Text4" + ControlSource ="=Format(Date(),\"Medium Date\")" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + TextAlign =2 + TextFontFamily =34 + BackStyle =0 + Left =5475 + Top =3585 + Height =270 + FontSize =10 + TabIndex =3 + Name ="Text14" + ControlSource ="HASTA" + Format ="mmm/dd/yy" + InputMask ="99/99/00;0;@" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + DecimalPlaces =2 + TextFontFamily =34 + BackStyle =0 + Left =8340 + Top =3585 + Width =1125 + FontSize =10 + TabIndex =4 + Name ="RENOVACION" + ControlSource ="RENOVACION" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + DecimalPlaces =2 + TextFontFamily =34 + BackStyle =0 + Left =9660 + Top =3585 + Width =1125 + FontSize =10 + TabIndex =5 + Name ="Texto6" + ControlSource ="RENOVACION" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + DecimalPlaces =2 + TextFontFamily =34 + BackStyle =0 + Left =9660 + Top =3960 + Width =1125 + FontSize =10 + FontWeight =700 + TabIndex =6 + Name ="Texto7" + ControlSource ="RENOVACION" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin Label + FontUnderline = NotDefault + TextFontFamily =34 + Left =1260 + Top =4815 + Width =1785 + Height =270 + FontSize =10 + Name ="Label17" + Caption ="INSURED DRIVER" + GUID = + End + Begin Label + FontUnderline = NotDefault + TextFontFamily =34 + Left =3720 + Top =4815 + Width =1860 + Height =270 + FontSize =10 + Name ="Label18" + Caption ="LICENSE NUMBER" + GUID = + End + Begin Label + FontUnderline = NotDefault + TextFontFamily =34 + Left =6330 + Top =4815 + Width =780 + Height =285 + FontSize =10 + Name ="Label47" + Caption ="STATE" + GUID = + End + Begin TextBox + FontUnderline = NotDefault + FELineBreak = NotDefault + DecimalPlaces =0 + TextAlign =1 + TextFontFamily =34 + Top =5880 + Width =6135 + Height =270 + FontSize =10 + TabIndex =7 + Name ="COBERTURA" + ControlSource ="EXPR9" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + Left =1035 + Top =5115 + Width =2565 + TabIndex =8 + Name ="NOMBRE ASEG 1" + ControlSource ="NOMBRE ASEG 1" + EventProcPrefix ="NOMBRE_ASEG_1" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + TextAlign =2 + Left =3825 + Top =5115 + Width =1785 + TabIndex =9 + Name ="LIC 1" + ControlSource ="LIC 1" + EventProcPrefix ="LIC_1" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + TextAlign =2 + Left =5925 + Top =5115 + TabIndex =10 + Name ="EDO 1" + ControlSource ="EDO 1" + EventProcPrefix ="EDO_1" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + TextAlign =2 + Left =3825 + Top =5355 + Width =1785 + TabIndex =11 + Name ="LIC 2" + ControlSource ="LIC 2" + EventProcPrefix ="LIC_2" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + TextAlign =2 + Left =5925 + Top =5355 + TabIndex =12 + Name ="EDO 2" + ControlSource ="EDO 2" + EventProcPrefix ="EDO_2" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + TextAlign =2 + Left =3825 + Top =5595 + Width =1785 + TabIndex =13 + Name ="LIC 3" + ControlSource ="LIC 3" + EventProcPrefix ="LIC_3" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + TextAlign =2 + Left =5925 + Top =5595 + TabIndex =14 + Name ="EDO 3" + ControlSource ="EDO 3" + EventProcPrefix ="EDO_3" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + TextFontFamily =34 + Left =1035 + Top =5355 + Width =2565 + TabIndex =15 + Name ="Text70" + ControlSource ="=IIf([NOMBRE ASEG 2]>\"\",[NOMBRE ASEG 2],\"EXCLUDED\")" + GUID = + Begin + Begin Label + TextFontFamily =34 + Left =60 + Top =5355 + Width =930 + Height =240 + Name ="Label71" + Caption ="LICENCE 2:" + GUID = + End + End + End + Begin TextBox + FELineBreak = NotDefault + TextFontFamily =34 + Left =1035 + Top =5595 + Width =2565 + TabIndex =16 + Name ="Text72" + ControlSource ="=IIf([NOMBRE ASEG 3]>\"\",[NOMBRE ASEG 3],\"EXCLUDED\")" + GUID = + Begin + Begin Label + TextFontFamily =34 + Left =60 + Top =5595 + Width =930 + Height =240 + Name ="Label73" + Caption ="LICENCE 3:" + GUID = + End + End + End + Begin Label + TextFontFamily =34 + Left =60 + Top =5115 + Width =930 + Height =240 + Name ="Label74" + Caption ="LICENCE 1:" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + DecimalPlaces =2 + TextAlign =1 + Left =120 + Top =6180 + Width =4800 + TabIndex =17 + Name ="PROPIEDADES" + ControlSource ="Expr16" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + DecimalPlaces =2 + TextAlign =1 + Left =120 + Top =6435 + Width =4800 + TabIndex =18 + Name ="PERSONAS" + ControlSource ="=IIf([EXPR5]>0,\"BODILY INJURY: \" & \"$\" & [EXPR5] & \".00\" & \" / \" & \"$\"" + " & [EXPR6] & \".00\")" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + TextAlign =3 + TextFontFamily =34 + Left =7125 + Top =6180 + Width =1635 + TabIndex =19 + Name ="Text119" + ControlSource ="=IIf([SERVICIO ADICIONAL]=-1,\"INCLUDED\",\"EXCLUDED\")" + GUID = + Begin + Begin Label + TextAlign =3 + TextFontFamily =34 + Left =5340 + Top =6180 + Width =1740 + Height =240 + FontWeight =700 + Name ="Label120" + Caption ="LEGAL ASSISTANCE:" + GUID = + End + End + End + Begin TextBox + FELineBreak = NotDefault + TextFontFamily =34 + Left =7125 + Top =6435 + Width =1635 + TabIndex =20 + Name ="Text121" + ControlSource ="Expr13" + Format ="$#,##0.00;($#,##0.00)" + GUID = + Begin + Begin Label + TextAlign =3 + TextFontFamily =34 + Left =5280 + Top =6435 + Width =1800 + Height =240 + FontWeight =700 + Name ="Label122" + Caption ="MEDICAL COVERAGE:" + GUID = + End + End + End + Begin Label + TextFontFamily =34 + Left =8790 + Top =6435 + Width =120 + Height =240 + Name ="Label123" + Caption ="/" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + TextAlign =1 + TextFontFamily =34 + Left =8940 + Top =6435 + TabIndex =21 + Name ="Text124" + ControlSource ="Expr14" + Format ="$#,##0.00;($#,##0.00)" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + DecimalPlaces =0 + TextAlign =2 + TextFontFamily =34 + BackStyle =0 + Left =120 + Top =14235 + Width =1185 + FontSize =10 + TabIndex =22 + Name ="Texto9" + ControlSource ="NUM id" + Format ="General Number" + StatusBarText ="NUMERO DEL CLIENTE" + GUID = + End + Begin Label + TextFontFamily =34 + Left =1920 + Top =14234 + Width =180 + Height =239 + FontSize =10 + Name ="Etiqueta10" + Caption ="2" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + TextAlign =2 + TextFontFamily =34 + Left =2910 + Top =14234 + Width =2235 + FontSize =10 + TabIndex =23 + Name ="Texto11" + ControlSource ="COMP" + GUID = + End + Begin Label + TextAlign =2 + TextFontFamily =34 + Left =6810 + Top =11430 + Width =4005 + Height =405 + FontSize =12 + Name ="Etiqueta12" + Caption ="R E N E W A L N O T I C E" + FontName ="Albertus Medium" + GUID = + End + Begin Label + TextAlign =2 + TextFontFamily =34 + Left =7800 + Top =11850 + Width =2025 + Height =315 + FontSize =11 + Name ="Etiqueta13" + Caption ="(For drivers license)" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + TextAlign =1 + TextFontFamily =34 + BackStyle =0 + Left =8880 + Top =12180 + Width =1860 + Height =270 + FontSize =10 + TabIndex =24 + Name ="Texto14" + ControlSource ="=Format(Date(),\"Medium Date\")" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + TextAlign =2 + TextFontFamily =34 + BackStyle =0 + Left =5475 + Top =14220 + Height =270 + FontSize =10 + TabIndex =25 + Name ="Texto15" + ControlSource ="HASTA" + Format ="mmm/dd/yy" + InputMask ="99/99/00;0;@" + GUID = + End + Begin Subform + CanGrow = NotDefault + OldBorderStyle =0 + Left =45 + Top =12825 + Width =5034 + Height =1034 + TabIndex =26 + Name ="Secundario16" + SourceObject ="Report.Labels DATGRAL" + LinkChildFields ="NUM id" + LinkMasterFields ="NUM id" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + DecimalPlaces =2 + TextFontFamily =34 + BackStyle =0 + Left =8340 + Top =14234 + Width =1125 + FontSize =10 + TabIndex =27 + Name ="Texto17" + ControlSource ="RENOVACION" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + DecimalPlaces =2 + TextFontFamily =34 + BackStyle =0 + Left =9660 + Top =14234 + Width =1125 + FontSize =10 + TabIndex =28 + Name ="Texto18" + ControlSource ="RENOVACION" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + DecimalPlaces =2 + TextFontFamily =34 + BackStyle =0 + Left =8715 + Top =13290 + Width =1125 + FontSize =10 + FontWeight =700 + TabIndex =29 + Name ="Texto49" + ControlSource ="RENOVACION" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + DecimalPlaces =2 + TextFontFamily =34 + BackStyle =0 + Left =8715 + Top =2385 + Width =1125 + FontSize =10 + FontWeight =700 + TabIndex =30 + Name ="Texto50" + ControlSource ="RENOVACION" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + TextFontCharSet =2 + Left =9945 + Top =1485 + Width =315 + FontSize =12 + TabIndex =31 + Name ="Text49" + ControlSource ="=IIf([num util] Is Null,\"*\")" + FontName ="Wingdings" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + TextFontCharSet =2 + Left =10395 + Top =1485 + Width =390 + FontSize =12 + TabIndex =32 + Name ="Expr12" + ControlSource ="Expr12" + FontName ="Vacation MT" + GUID = + End + Begin TextBox + FELineBreak = NotDefault + TextAlign =1 + TextFontFamily =34 + Left =9383 + Top =5385 + FontSize =11 + TabIndex =33 + Name ="NO POLIZA" + ControlSource ="NO POLIZA" + EventProcPrefix ="NO_POLIZA" + GUID = + Begin + Begin Label + TextAlign =3 + TextFontFamily =34 + Left =8220 + Top =5385 + Width =1125 + Height =270 + FontSize =10 + Name ="Label13" + Caption ="POLICY # L" + GUID = + End + End + End + Begin Subform + CanGrow = NotDefault + OldBorderStyle =0 + Left =45 + Top =1710 + Width =6699 + Height =1664 + TabIndex =34 + Name ="Labels DATGRAL" + SourceObject ="Report.Labels DATGRAL" + LinkChildFields ="NUM id" + LinkMasterFields ="NUM id" + EventProcPrefix ="Labels_DATGRAL" + GUID = + End + Begin Label + BackStyle =1 + Left =4605 + Top =1065 + Width =2325 + Height =225 + Name ="Etiqueta52" + Caption ="susana@jorgecuadros.com" + GUID = + End + Begin Label + BackStyle =1 + Left =4620 + Top =12480 + Width =2325 + Height =225 + Name ="Etiqueta53" + Caption ="susana@jorgecuadros.com" + GUID = + End + Begin Label + TextFontFamily =34 + Left =1560 + Top =2880 + Width =6840 + Height =345 + FontSize =10 + Name ="Etiqueta54" + Caption ="PLEASE PROVIDE YOUR CURRENT E-MAIL:___________________________" + GUID = + End + Begin UnboundObjectFrame + SizeMode =1 + OldBorderStyle =0 + Top =14880 + Width =10861 + Height =14281 + TabIndex =35 + Name ="OLEIndependiente55" + OleData = + Class ="Word.Document.8" + OLEClass ="Microsoft Office Word 97 - 2003" + GUID = + End + Begin Label + TextFontFamily =34 + Top =4290 + Width =10680 + Height =495 + FontSize =10 + Name ="Etiqueta56" + Caption ="The current policy referred above will be due at date shown. Also, we're describ" + "ing the insured driver's licence which we suggest to verify the specific detail" + "s:" + GUID = + End + Begin Label + Left =60 + Top =6720 + Width =10740 + Height =435 + Name ="Etiqueta58" + Caption ="NOTE: You may renew this policy at your own risk and do nothing, except if you " + "remit annual premium as referred, you accepting the risk of not being properly c" + "overed." + GUID = + End + Begin Label + Left =60 + Top =7200 + Width =10740 + Height =645 + Name ="Etiqueta59" + Caption ="PLEASE READ AND CONSIDER BUYING NEW PROPER COVERAGE, AS OUR \"LABOR LAWS\" WERE" + " RECENTLY MODIFY AND YOU'RE NOW REQUIRED TO CARRY A BIGGER SUM TO AVOID BEEN C" + "AUGHT UNDER INSURED, IN CASE OF A SEVERE BODILY INJURY OR POSSIBLY DEATH OCCURR" + "ENCE. WE'RE NOW SUGGESTING CARRYING A MINIMUM SUM:" + GUID = + End + Begin Label + Left =60 + Top =7890 + Width =8595 + Height =225 + Name ="Etiqueta60" + Caption ="CSL: $300,000 FOR PD & PL, PLUS MEDICAL$ 2/10,000 AND LEGAL ASSISTANCE RENEWAL " + "ANNUAL PREMIUM AT " + GUID = + End + Begin Label + OldBorderStyle =1 + Left =9045 + Top =7890 + Width =1755 + Height =225 + Name ="Etiqueta61" + Caption ="Sub-Total $ 135.10 Dls." + GUID = + End + Begin Label + Left =60 + Top =8160 + Width =10740 + Height =645 + Name ="Etiqueta62" + Caption ="IN ADDITION TO THIS RENEWAL, WE'RE ALSO OFFERING A NEW COVERAGE \"RENTAL AGREEM" + "ENT\" TO HAVE A RENTED CAR WHILE HAVING: A COLLISION, BREAK DOWN , MECHANICAL" + " FAILURE OR HAVING YOUR VEHICLE STOLEN. ALL FOR A MINIMUM ANNUAL FEE OF$ 50.00 " + "Dls. DETAILS ON THE BACK OF THIS NOTICE" + GUID = + End + Begin Label + Left =60 + Top =8850 + Width =4980 + Height =225 + Name ="Etiqueta63" + Caption ="WE STILL SUGGEST READING THIS IMPORTANT REMINDER:" + GUID = + End + End + End + End +End \ No newline at end of file diff --git a/migration/legacy_report_defs/RCR_RENEW_X_MES_NEWATLAS_2013.txt b/migration/legacy_report_defs/RCR_RENEW_X_MES_NEWATLAS_2013.txt new file mode 100644 index 0000000..dda3dbb --- /dev/null +++ b/migration/legacy_report_defs/RCR_RENEW_X_MES_NEWATLAS_2013.txt @@ -0,0 +1,1466 @@ +Version =19 +VersionRequired =19 +Checksum =-123705990 +Begin Report + LayoutForPrint = NotDefault + DefaultView =0 + DateGrouping =1 + GrpKeepTogether =1 + PictureAlignment =2 + DatasheetGridlinesBehavior =3 + GridX =24 + GridY =24 + Width =10905 + DatasheetFontHeight =10 + ItemSuffix =165 + Left =600 + Right =9090 + Bottom =5040 + DatasheetGridlinesColor =12632256 + OnNoData ="IMPRESION RENEW NO DATA" + RecSrcDt = Begin + 0xf74d39e7be3ce440 + End + RecordSource ="RCR RENEW X MES ATLAS 2013" + DatasheetFontName ="Arial" + PrtMip = + PrtDevMode = + PrtDevNames = + NoSaveCTIWhenDisabled =1 + Begin + Begin Label + BackStyle =0 + FontSize =10 + FontName ="Arial" + End + Begin Image + OldBorderStyle =0 + PictureAlignment =2 + End + Begin TextBox + OldBorderStyle =0 + FontName ="Arial" + End + Begin UnboundObjectFrame + OldBorderStyle =1 + End + Begin BreakLevel + ControlSource ="NUMER ID" + End + Begin Section + KeepTogether = NotDefault + CanGrow = NotDefault + ForceNewPage =2 + Height =29521 + Name ="Detail" + GUID = + Begin + Begin Image + Width =10905 + Height =14805 + Name ="OLEIndependiente148" + PictureData = Begin + 0x030000002c01cd0208000000094b000002660000990e26cf010009000003b631 , + 0x00000e008d08000000000400000003010800050000000b020000000005000000 , + 0x0c02dc03d702070000001604db03d60200000000030000001e00040000002c01 , + 0x000007000000fc020000ffffff000000040000002d0100000c00000040092100 , + 0xf000000000000000240032013800d30008000000fa0200000000000000000000 , + 0x040000002d010100040000002d010000040000002701ffff030000001e000400 , + 0x00002c0100000400000002010100040000002e01180005000000090200000002 , + 0x1c000000fb02f5ff00000000000090010000000107400022417269616c000000 , + 0x000000000000000000000000000000000000000000000000040000002d010200 , + 0x13000000320a4700f4000800000054656c3a2030313106000600020003000300 , + 0x060006000600040000002d01020009000000320a47001a01010000002dd40400 , + 0x040000002d0102000a000000320a47001e010200000035320600060004000000 , + 0x2d01020009000000320a47002a01010000002dd40400040000002d0102000f00 , + 0x0000320a47002e01050000002836363129000400060006000500040004000000 , + 0x2d01020009000000320a47004701010000002dd40400040000002d0102000c00 , + 0x0000320a47004b010300000036313200060006000500040000002d0102000900 , + 0x0000320a47005c01010000002dd40400040000002d01020021000000320a4700 , + 0x60011100000031323935202a204661783a202836363129010600060006000600 , + 0x0300040003000600060006000300020004000600060006000300040000002d01 , + 0x020009000000320a4700b201010000002dd40400040000002d0102000c000000 , + 0x320a4700b6010300000036313200060006000600040000002d01020009000000 , + 0x320a4700c801010000002dd40400040000002d0102000d000000320a4700cc01 , + 0x04000000313238350600060005000600040000002d01020009000000320a4700 , + 0xe3010100000020d405001c000000fb02f5ff000000000000bc02000000010740 , + 0x0022417269616c00000000000000000000000000000000000000000000000000 , + 0x0000040000002d01030034000000320a530014011e000000456d61696c3a2049 , + 0x6e737572616e6365407061636e65742e636f6d2e6d7806000b00060003000300 , + 0x030003000300060007000600050006000600050007000a000700060006000600 , + 0x060004000300060006000a0002000b000600040000002d01030009000000320a , + 0x5300c3010100000020d40500040000002d0101001c000000fb02100007000000 , + 0x0000bc02000000000102022253797374656d005b9701c47f2800c70100007a28 , + 0xf6bf00005021bcef620054d4040000002d010400040000002701ffff03000000 , + 0x1e00040000002c010000040000002d0100000c00000040092100f00000000000 , + 0x00003000ae0002001501040000002d010100040000002d010000040000002701 , + 0xffff030000001e00040000002c0100000400000002010100040000002e011800 , + 0x05000000090200000002040000002d01020033000000320a110019011d000000 , + 0x5175696e746120506c617a612053686f7070696e672043656e74657220780800 , + 0x0600020006000300060004000600020006000600060003000700060006000600 , + 0x060002000600060003000700060006000300060004000300040000002d010200 , + 0x2e000000320a1e0019011a000000737569746520332050422e20536f75746820 , + 0x4275696c64696e67060006000200030006000300060003000600070003000300 , + 0x0700060006000300060003000700060002000200070002000600060004000000 , + 0x2d01020009000000320a1e0094010100000020d40600040000002d0102003600 , + 0x0000320a2b0019011f000000323237313020506c6179617320646520526f7361 , + 0x7269746f2c20422e20432ea00600060006000600060003000600020006000600 , + 0x0600060003000600060003000700060006000600040002000300060003000300 , + 0x07000300030007000300040000002d01020009000000320a2b00b10101000000 , + 0x20d40600040000002d010100040000002d010400040000002701ffff03000000 , + 0x1e00040000002c010000040000002d0100000c00000040092100f00000000000 , + 0x00001a00f30001000100040000002d010100040000002d010000040000002701 , + 0xffff030000001e00040000002c0100000400000002010100040000002e011800 , + 0x050000000902000000021c000000fb02f3ff0000000000009001000000010740 , + 0x001254696d6573204e657720526f6d616e000000000000000000000000000000 , + 0x0000040000002d0105001f000000320a11002700100000004a4f52474520482e , + 0x2043554144524f5308000c000c000c000a0006000c00060007000b000c000d00 , + 0x0c000c000c000a00040000002d01050009000000320a1100ce000100000020d4 , + 0x0a00040000002d010100040000002d010400040000002701ffff030000001e00 , + 0x040000002c010000070000001604db03d60200000000030000001e0004000000 , + 0x2c010000040000002d0100000c00000040092100f00000000000000013005f00 , + 0xda000100040000002d010100040000002d010000040000002701ffff04000000 , + 0x2c0100000400000002010100040000002e011800050000000902000000021c00 , + 0x0000fb02f6ff000000000000bc02010000010740001254696d6573204e657720 , + 0x526f6d616e0000000000000000000000000000000000040000002d0106001800 , + 0x0000320ae60015000b0000004163636f756e74204e6f2e000700040004000500 , + 0x0600060003000300070005000300040000002d01060009000000320ae6004a00 , + 0x0100000020d40400070000001604db03d60200000000040000002d0101000400 , + 0x00002d010400030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f00000000000000013005500da006000040000002d01010004000000 , + 0x2d010000040000002701ffff040000002c010000040000002d0106000d000000 , + 0x320ae6007c0004000000434f44450700070007000700040000002d0106000900 , + 0x0000320ae60098000100000020d40500070000001604db03d602000000000400 , + 0x00002d010100040000002d010400030000001e00040000002c01000004000000 , + 0x2d0100000c00000040092100f0000000000000001300b600da00b50004000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000004000000 , + 0x2d01060021000000320ae600d80011000000494e535552414e434520434f4d50 , + 0x414e590104000700060007000700070007000700060003000700070009000600 , + 0x070006000700040000002d01060009000000320ae60046010100000020d40400 , + 0x070000001604db03d60200000000040000002d010100040000002d0104000300 , + 0x00001e00040000002c010000040000002d0100000c00000040092100f0000000 , + 0x0000000013006700da006b01040000002d010100040000002d01000004000000 , + 0x2701ffff040000002c010000040000002d01060013000000320ae60084010800 , + 0x0000445545204441544507000700070003000700070006000700040000002d01 , + 0x060009000000320ae600b7010100000020d40400070000001604db03d6020000 , + 0x0000040000002d010100040000002d010400030000001e00040000002c010000 , + 0x040000002d0100000c00000040092100f00000000000000013005700da00d201 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x040000002d01060010000000320ae600e9010600000043524544495407000700 , + 0x0700070004000600040000002d01060009000000320ae6000f020100000020d4 , + 0x0400070000001604db03d60200000000040000002d010100040000002d010400 , + 0x030000001e00040000002c010000040000002d0100000c00000040092100f000 , + 0x00000000000013005600da002902040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c010000040000002d01060010000000320ae6003d02 , + 0x06000000434841524745070008000700070007000700040000002d0106000900 , + 0x0000320ae60068020100000020d40400070000001604db03d602000000000400 , + 0x00002d010100040000002d010400030000001e00040000002c01000004000000 , + 0x2d0100000c00000040092100f00000000000000013005600da007f0204000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000004000000 , + 0x2d01060012000000320ae60091020700000042414c414e434500070007000600 , + 0x0700070007000700040000002d01060009000000320ae600c1020100000020d4 , + 0x0400070000001604db03d60200000000040000002d010100040000002d010400 , + 0x030000001e00040000002c010000040000002d0100000c00000040092100f000 , + 0x00000000000018005f00ed000100040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c0100001c000000fb02f7ff00000000000090010000 , + 0x00010740001254696d6573204e657720526f6d616e0000000000000000000000 , + 0x000000000000040000002d01070009000000320afd0005000100000020d40400 , + 0x070000001604db03d60200000000040000002d010100040000002d0104000300 , + 0x00001e00040000002c010000040000002d0100000c00000040092100f0000000 , + 0x0000000018005500ed006000040000002d010100040000002d01000004000000 , + 0x2701ffff040000002c010000040000002d01070009000000320afd0063000100 , + 0x000020d40400070000001604db03d60200000000040000002d01010004000000 , + 0x2d010400030000001e00040000002c010000040000002d0100000c0000004009 , + 0x2100f0000000000000001800b600ed00b500040000002d010100040000002d01 , + 0x0000040000002701ffff040000002c010000040000002d01070009000000320a , + 0xfd00b8000100000020d40400070000001604db03d60200000000040000002d01 , + 0x0100040000002d010400030000001e00040000002c010000040000002d010000 , + 0x0c00000040092100f00000000000000018006700ed006b01040000002d010100 , + 0x040000002d010000040000002701ffff040000002c010000040000002d010700 , + 0x09000000320afd006e010100000020d40400070000001604db03d60200000000 , + 0x040000002d010100040000002d010400030000001e00040000002c0100000400 , + 0x00002d0100000c00000040092100f00000000000000018005700ed00d2010400 , + 0x00002d010100040000002d010000040000002701ffff040000002c0100000400 , + 0x00002d01070009000000320afd00d5010100000020d40400070000001604db03 , + 0xd60200000000040000002d010100040000002d010400030000001e0004000000 , + 0x2c010000040000002d0100000c00000040092100f00000000000000018005600 , + 0xed002902040000002d010100040000002d010000040000002701ffff04000000 , + 0x2c010000040000002d01070009000000320afd002b020100000020d404000700 , + 0x00001604db03d60200000000040000002d010100040000002d01040003000000 , + 0x1e00040000002c010000040000002d0100000c00000040092100f00000000000 , + 0x000018005600ed007f02040000002d010100040000002d010000040000002701 , + 0xffff040000002c010000040000002d01070009000000320afd00820201000000 , + 0x20d40400070000001604db03d60200000000040000002d010100040000002d01 , + 0x0400030000001e00040000002c010000040000002d0100000c00000040092100 , + 0xf00000000000000018005f0005010100040000002d010100040000002d010000 , + 0x040000002701ffff040000002c010000040000002d01070009000000320a1301 , + 0x05000100000020d40400070000001604db03d60200000000040000002d010100 , + 0x040000002d010400030000001e00040000002c010000040000002d0100000c00 , + 0x000040092100f0000000000000001800550005016000040000002d0101000400 , + 0x00002d010000040000002701ffff040000002c010000040000002d0107000900 , + 0x0000320a130164000100000020d40400070000001604db03d602000000000400 , + 0x00002d010100040000002d010400030000001e00040000002c01000004000000 , + 0x2d0100000c00000040092100f0000000000000001800b6000501b50004000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000004000000 , + 0x2d01070009000000320a1301b9000100000020d40400070000001604db03d602 , + 0x00000000040000002d010100040000002d010400030000001e00040000002c01 , + 0x0000040000002d0100000c00000040092100f000000000000000180067000501 , + 0x6b01040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x0000040000002d01070009000000320a13016f010100000020d4040007000000 , + 0x1604db03d60200000000040000002d010100040000002d010400030000001e00 , + 0x040000002c010000040000002d0100000c00000040092100f000000000000000 , + 0x180057000501d201040000002d010100040000002d010000040000002701ffff , + 0x040000002c0100001c000000fb02edff00000000000090010000000107400022 , + 0x417269616c000000000000000000000000000000000000000000000000000000 , + 0x040000002d01080009000000320a1c0125020100000020d40a00070000001604 , + 0xdb03d60200000000040000002d010100040000002d010400030000001e000400 , + 0x00002c010000040000002d0100000c00000040092100f0000000000000001800 , + 0x560005012902040000002d010100040000002d010000040000002701ffff0400 , + 0x00002c010000040000002d01020010000000320a1901500206000000546f7461 , + 0x6c200600060003000600020003001c000000fb02f0ff000000000000f4010000 , + 0x0002074000024d61726c65747400000000000000000000000000000000000000 , + 0x000000000000040000002d01090009000000320a19016a020100000034011000 , + 0x1c000000fb02f4ff00000000000090010000000107400022417269616c000000 , + 0x000000000000000000000000000000000000000000000000040000002d010a00 , + 0x09000000320a19017a020100000020d40700070000001604db03d60200000000 , + 0x040000002d010100040000002d010400030000001e00040000002c0100000400 , + 0x00002d0100000c00000040092100f0000000000000001800560005017f020400 , + 0x00002d010100040000002d010000040000002701ffff040000002c0100000400 , + 0x00002d01070009000000320a150183020100000020d40400070000001604db03 , + 0xd60200000000040000002d010100040000002d010400030000001e0004000000 , + 0x2c01000007000000fc020000000000000000040000002d010b000c0000004009 , + 0x2100f00000000000000013000100da000100040000002d010100040000002d01 , + 0x0000040000002701ffff040000002c010000070000001604db03d60200000000 , + 0x030000001e00040000002c010000040000002d010b000c00000040092100f000 , + 0x0000000000002a000100da006000040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c010000070000001604db03d6020000000003000000 , + 0x1e00040000002c010000040000002d010b000c00000040092100f00000000000 , + 0x00002a000100da00b500040000002d010100040000002d010000040000002701 , + 0xffff040000002c010000070000001604db03d60200000000030000001e000400 , + 0x00002c010000040000002d010b000c00000040092100f0000000000000002a00 , + 0x0100da006b01040000002d010100040000002d010000040000002701ffff0400 , + 0x00002c010000070000001604db03d60200000000030000001e00040000002c01 , + 0x0000040000002d010b000c00000040092100f0000000000000002a000100da00 , + 0xd201040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x0000070000001604db03d60200000000030000001e00040000002c0100000400 , + 0x00002d010b000c00000040092100f00000000000000043000100da0028020400 , + 0x00002d010100040000002d010000040000002701ffff040000002c0100000700 , + 0x00001604db03d60200000000030000001e00040000002c010000040000002d01 , + 0x0b000c00000040092100f0000000000000002a000100da007f02040000002d01 , + 0x0100040000002d010000040000002701ffff040000002c010000070000001604 , + 0xdb03d60200000000030000001e00040000002c010000040000002d010b000c00 , + 0x000040092100f00000000000000013000100da00d402040000002d0101000400 , + 0x00002d010000040000002701ffff040000002c010000070000001604db03d602 , + 0x00000000030000001e00040000002c010000040000002d010b000c0000004009 , + 0x2100f00000000000000018000200ed000100040000002d010100040000002d01 , + 0x0000040000002701ffff040000002c010000070000001604db03d60200000000 , + 0x030000001e00040000002c010000040000002d010b000c00000040092100f000 , + 0x0000000000002f000200ed00d302040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c010000070000001604db03d6020000000003000000 , + 0x1e00040000002c010000040000002d010b000c00000040092100f00000000000 , + 0x00001600020005017f02040000002d010100040000002d010000040000002701 , + 0xffff040000002c010000070000001604db03d60200000000030000001e000400 , + 0x00002c010000040000002d010b000c00000040092100f0000000000000000100 , + 0xd402da000100040000002d010100040000002d010000040000002701ffff0400 , + 0x00002c010000070000001604db03d60200000000030000001e00040000002c01 , + 0x0000040000002d010b000c00000040092100f0000000000000000200d402ec00 , + 0x0100040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x0000070000001604db03d60200000000030000001e00040000002c0100000400 , + 0x00002d010b000c00000040092100f0000000000000000200d302040101000400 , + 0x00002d010100040000002d010000040000002701ffff040000002c0100000700 , + 0x00001604db03d60200000000030000001e00040000002c010000040000002d01 , + 0x0b000c00000040092100f000000000000000010057001c012802040000002d01 , + 0x0100040000002d010000040000002701ffff040000002c010000070000001604 , + 0xdb03d60200000000030000001e00040000002c010000040000002d010b000c00 , + 0x000040092100f000000000000000020056001b017f02040000002d0101000400 , + 0x00002d010000040000002701ffff040000002c010000040000002701ffff0300 , + 0x00001e00040000002c0100000400000002010100040000002e01180004000000 , + 0xf001030004000000f0010500050000000902000000021c000000fb02f3ff0000 , + 0x00000000bc020000000107400022417269616c00000000000000000000000000 , + 0x0000000000000000000000000000040000002d0103000f000000320a43002402 , + 0x05000000446174653a00090008000400080004001c000000fb02f3ff00000000 , + 0x000090010000000107400022417269616c000000000000000000000000000000 , + 0x000000000000000000000000040000002d01050009000000320a430045020100 , + 0x000020d40f00040000002d01030009000000320a430054020100000020d40700 , + 0x040000002d010100040000002d010400040000002701ffff030000001e000400 , + 0x00002c010000040000002d0100000c00000040092100f0000000000000001200 , + 0xe9009e020900040000002d010100040000002d010000040000002701ffff0300 , + 0x00001e00040000002c0100000400000002010100040000002e01180004000000 , + 0xf0010600050000000902000000021c000000fb02f5ff00000000000090010000 , + 0x00010740001254696d6573204e657720526f6d616e0000000000000000000000 , + 0x000000000000040000002d0106001f000000320aad023b00100000004a4f5247 , + 0x4520482e2043554144524f5306000a0009000900090005000a00050005000900 , + 0x0a000a000a0009000a000700040000002d01060009000000320aad02c0000100 , + 0x000020d40800040000002d010100040000002d010400040000002701ffff0300 , + 0x00001e00040000002c01000008000000fa020000010000000000000004000000 , + 0x2d010c0007000000fc020100000000000000040000002d010d000c0000002403 , + 0x0400010006000100ea02d502ea02d5020600040000002d01010004000000f001 , + 0x0c00040000002d010100040000002d010000040000002701ffff030000001e00 , + 0x040000002c01000008000000fa02000001000000ffffff00040000002d010c00 , + 0x040000002d010d000c00000024030400c1016300c1019f00ce029f00ce026300 , + 0x040000002d01010004000000f0010c00040000002d010100040000002d010000 , + 0x040000002701ffff030000001e00040000002c01000004000000020101000400 , + 0x00002e01180005000000090200000002040000002d0102001f000000320a7200 , + 0xc501100000004d41494c494e4720414444524553533a08000800020007000300 , + 0x07000800030008000700080008000600070007000300040000002d0102000900 , + 0x0000320a720029020100000020d40700040000002d01040004000000f0010800 , + 0x1c000000fb02f5ff000000000000bc020000000107400022417269616c000000 , + 0x000000000000000000000000000000000000000000000000040000002d010800 , + 0x1f000000320a7e00c501100000004a4f52474520482e2043554144524f530600 , + 0x0800070009000600040007000300030008000700090007000800080007000400 , + 0x00002d01080009000000320a7e0030020100000020d40700040000002d010200 , + 0x1b000000320a8a00c5010d000000504f20424f58203433373131300006000800 , + 0x04000700080007000300060006000600060006000600040000002d0102000900 , + 0x0000320a8a0014020100000020d40700040000002d01020027000000320a9600 , + 0xc5011500000053414e2059534944524f2c2043412e203932313433d407000800 , + 0x0700030008000700020008000700080003000300070008000300030006000600 , + 0x060006000600040000002d01020009000000320a96003f02010000002dd40400 , + 0x040000002d0102000d000000320a960043020400000037313130060006000600 , + 0x0600040000002d01020009000000320a96005b020100000020d4050004000000 , + 0x2d010100040000002d010400040000002701ffff030000001e00040000002c01 , + 0x00000400000002010100040000002e01180004000000f0010900050000000902 , + 0x000000021c000000fb02f9ff0000000000009001000000010740002241726961 , + 0x6c00000000000000000000000000000000000000000000000000000004000000 , + 0x2d01090045000000320adf02130129000000504c45415345204b454550205448 , + 0x495320504f5254494f4e20464f5220594f5552205245434f5244530005000400 , + 0x0400050004000500010005000400050004000200040005000200050001000500 , + 0x0500040005000200050005000200040005000500010005000500050005000200 , + 0x0400050005000500050004000500040000002d01090009000000320adf02bb01 , + 0x0100000020d40300040000002d010100040000002d010400040000002701ffff , + 0x030000001e00040000002c0100000400000002010100040000002e0118000400 , + 0x0000f001070005000000090200000002040000002d010a002d000000320ab400 , + 0x1a021900000024205f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f2046 , + 0x0700030007000700070006000700070006000700070006000700070006000700 , + 0x0700070006000700070006000700070002001c000000fb02f4ff000000000000 , + 0xbc020000000107400022417269616c0000000000000000000000000000000000 , + 0x00000000000000000000040000002d01070016000000320ac20041020a000000 , + 0x414d4f554e542044554508000a000a0008000900070004000800090007000400 , + 0x00002d010a0009000000320ac20091020100000020d40700040000002d010100 , + 0x040000002d010400040000002701ffff030000001e00040000002c0100000400 , + 0x00002d010b000c00000040092100f0000000000000001a002702ba0201000400 , + 0x00002d010100040000002d010000040000002701ffff030000001e0004000000 , + 0x2c0100000400000002010100040000002e011800050000000902ffffff020400 , + 0x00002d01070040000000320ac9022100260000004641494c55524520544f2052 , + 0x4553504f4e442057494c4c20524553554c5420494e204e4f4e20070008000400 , + 0x0700090009000700040007000900040009000700080008000a00090008000300 , + 0x0c00030007000800030009000700090008000800070003000400080004000800 , + 0x0a0008000300040000002d01070009000000320ac9022b01010000002dd40500 , + 0x040000002d01070030000000320ac90230011b0000002052454e4557414c204f , + 0x4620544845534520434f5645524147455355030009000800090007000c000800 , + 0x080003000a000700030008000900070009000700040008000900090008000900 , + 0x0900090007000800040000002d01070009000000320ac902ff010100000020d4 , + 0x080005000000090200000002040000002d010100040000002d01040004000000 , + 0x2701ffff030000001e00040000002c010000040000002d010b000c0000004009 , + 0x2100f0000000000000001a00b300ba022202040000002d010100040000002d01 , + 0x0000040000002701ffff030000001e00040000002c0100000400000002010100 , + 0x040000002e01180004000000f0010500050000000902ffffff021c000000fb02 , + 0xf6ff000000000000bc020000000107400022417269616c000000000000000000 , + 0x000000000000000000000000000000000000040000002d01050031000000320a , + 0xc70238021c000000414c4c20414d4f554e54532041524520494e20552e20532e , + 0x2043792e07000600060003000700090008000700070005000700030007000700 , + 0x0700030003000700030007000300030007000300030007000500030004000000 , + 0x2d01050009000000320ac702d1020100000020d4060005000000090200000002 , + 0x040000002d010100040000002d010400040000002701ffff030000001e000400 , + 0x00002c0100000400000002010100040000002e01180004000000f00103000500 , + 0x00000902000000021c000000fb02f1ff00000000000090010100000107400052 , + 0x4861726c6f7720536f6c6964204974616c696300000000000000000000000000 , + 0x040000002d01030015000000320ae3025b02090000005468616e6b20596f75d6 , + 0x0b00070007000800060004000d0006000700040000002d01030009000000320a , + 0xe302a0020100000020d40700040000002d010100040000002d01040004000000 , + 0x2701ffff030000001e00040000002c010000040000002d0100000c0000004009 , + 0x2100f000000000000000300032013203d300040000002d010100040000002d01 , + 0x0000040000002701ffff030000001e00040000002c0100000400000002010100 , + 0x040000002e01180005000000090200000002040000002d01080013000000320a , + 0x4103f3000800000054656c3a2030313106000700030003000300060006000600 , + 0x040000002d01080009000000320a41031b01010000002dd40400040000002d01 , + 0x08000a000000320a41031f0102000000353206000600040000002d0108000900 , + 0x0000320a41032b01010000002dd40300040000002d0108000f000000320a4103 , + 0x2e010500000028363631290004000600060006000300040000002d0108000900 , + 0x0000320a41034701010000002dd40400040000002d0108000c000000320a4103 , + 0x4b010300000036313200060006000600040000002d01080009000000320a4103 , + 0x5d01010000002dd40300040000002d01080021000000320a4103600111000000 , + 0x31323935202a204661783a202836363129010600060006000600030004000300 , + 0x0600060006000300030004000600060006000400040000002d01080009000000 , + 0x320a4103b401010000002dd40400040000002d0108000c000000320a4103b801 , + 0x0300000036313200060006000500040000002d01080009000000320a4103c901 , + 0x010000002dd40400040000002d0108000d000000320a4103cd01040000003132 , + 0x38350600060006000600040000002d01080009000000320a4103e50101000000 , + 0x20d40500040000002d01080034000000320a4e0314011e000000456d61696c3a , + 0x20496e737572616e6365407061636e65742e636f6d2e6d7806000b0006000300 , + 0x0300030003000300060007000600050006000600050007000a00070006000600 , + 0x0600060004000300060006000a0002000b000600040000002d01080009000000 , + 0x320a4e03c3010100000020d40500040000002d010100040000002d0104000400 , + 0x00002701ffff030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f0000000000000003000ae00fc021501040000002d01010004000000 , + 0x2d010000040000002701ffff030000001e00040000002c010000040000000201 , + 0x0100040000002e01180005000000090200000002040000002d01020033000000 , + 0x320a0b0319011d0000005175696e746120506c617a612053686f7070696e6720 , + 0x43656e7465722078080006000200060003000600040006000200060006000600 , + 0x0300070006000600060006000200060006000300070006000600030006000400 , + 0x0300040000002d0102002e000000320a180319011a0000007375697465203320 , + 0x50422e20536f757468204275696c64696e670600060002000300060003000600 , + 0x0300060007000300030007000600060003000600030007000600020002000700 , + 0x020006000600040000002d01020009000000320a180394010100000020d40600 , + 0x040000002d01020036000000320a250319011f000000323237313020506c6179 , + 0x617320646520526f73617269746f2c20422e20432ea006000600060006000600 , + 0x0300060002000600060006000600030006000600030007000600060006000400 , + 0x0200030006000300030007000300030007000300040000002d01020009000000 , + 0x320a2503b1010100000020d40600040000002d010100040000002d0104000400 , + 0x00002701ffff030000001e00040000002c010000070000001604db03d6020000 , + 0x0000030000001e00040000002c010000040000002d0100000c00000040092100 , + 0xf00000000000000013005f00a1030100040000002d010100040000002d010000 , + 0x040000002701ffff040000002c0100000400000002010100040000002e011800 , + 0x04000000f0010600050000000902000000021c000000fb02f6ff000000000000 , + 0xbc02010000010740001254696d6573204e657720526f6d616e00000000000000 , + 0x00000000000000000000040000002d01060018000000320aad0315000b000000 , + 0x4163636f756e74204e6f2e000700040004000500060006000300030007000500 , + 0x0300040000002d01060009000000320aad034a000100000020d4040007000000 , + 0x1604db03d60200000000040000002d010100040000002d010400030000001e00 , + 0x040000002c010000040000002d0100000c00000040092100f000000000000000 , + 0x13005500a1036000040000002d010100040000002d010000040000002701ffff , + 0x040000002c010000040000002d0106000d000000320aad037c0004000000434f , + 0x44450700070007000700040000002d01060009000000320aad03980001000000 , + 0x20d40500070000001604db03d60200000000040000002d010100040000002d01 , + 0x0400030000001e00040000002c010000040000002d0100000c00000040092100 , + 0xf0000000000000001300b600a103b500040000002d010100040000002d010000 , + 0x040000002701ffff040000002c010000040000002d01060021000000320aad03 , + 0xd80011000000494e535552414e434520434f4d50414e59010400070006000700 , + 0x0700070007000700060003000700070009000600070006000700040000002d01 , + 0x060009000000320aad0346010100000020d40400070000001604db03d6020000 , + 0x0000040000002d010100040000002d010400030000001e00040000002c010000 , + 0x040000002d0100000c00000040092100f00000000000000013006700a1036b01 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x040000002d01060013000000320aad0384010800000044554520444154450700 , + 0x0700070003000700070006000700040000002d01060009000000320aad03b701 , + 0x0100000020d40400070000001604db03d60200000000040000002d0101000400 , + 0x00002d010400030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f00000000000000013005700a103d201040000002d01010004000000 , + 0x2d010000040000002701ffff040000002c010000040000002d01060010000000 , + 0x320aad03e9010600000043524544495407000700070007000400060004000000 , + 0x2d01060009000000320aad030f020100000020d40400070000001604db03d602 , + 0x00000000040000002d010100040000002d010400030000001e00040000002c01 , + 0x0000040000002d0100000c00000040092100f00000000000000013005600a103 , + 0x2902040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x0000040000002d01060010000000320aad033d02060000004348415247450700 , + 0x08000700070007000700040000002d01060009000000320aad03680201000000 , + 0x20d40400070000001604db03d60200000000040000002d010100040000002d01 , + 0x0400030000001e00040000002c010000040000002d0100000c00000040092100 , + 0xf00000000000000013005600a1037f02040000002d010100040000002d010000 , + 0x040000002701ffff040000002c010000040000002d01060012000000320aad03 , + 0x91020700000042414c414e434500070007000600070007000700070004000000 , + 0x2d01060009000000320aad03c1020100000020d40400070000001604db03d602 , + 0x00000000040000002d010100040000002d010400030000001e00040000002c01 , + 0x0000040000002d0100000c00000040092100f00000000000000015005f00b403 , + 0x0100040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x000004000000f00109001c000000fb02f7ff0000000000009001000000010740 , + 0x001254696d6573204e657720526f6d616e000000000000000000000000000000 , + 0x0000040000002d01090009000000320ac20305000100000020d4040007000000 , + 0x1604db03d60200000000040000002d010100040000002d010400030000001e00 , + 0x040000002c010000040000002d0100000c00000040092100f000000000000000 , + 0x15005500b4036000040000002d010100040000002d010000040000002701ffff , + 0x040000002c010000040000002d01090009000000320ac20363000100000020d4 , + 0x0400070000001604db03d60200000000040000002d010100040000002d010400 , + 0x030000001e00040000002c010000040000002d0100000c00000040092100f000 , + 0x0000000000001500b600b403b500040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c010000040000002d01090009000000320ac203b800 , + 0x0100000020d40400070000001604db03d60200000000040000002d0101000400 , + 0x00002d010400030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f00000000000000015006700b4036b01040000002d01010004000000 , + 0x2d010000040000002701ffff040000002c010000040000002d01090009000000 , + 0x320ac2036e010100000020d40400070000001604db03d6020000000004000000 , + 0x2d010100040000002d010400030000001e00040000002c010000040000002d01 , + 0x00000c00000040092100f00000000000000015005700b403d201040000002d01 , + 0x0100040000002d010000040000002701ffff040000002c010000040000002d01 , + 0x090009000000320ac203d5010100000020d40400070000001604db03d6020000 , + 0x0000040000002d010100040000002d010400030000001e00040000002c010000 , + 0x040000002d0100000c00000040092100f00000000000000015005600b4032902 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x040000002d01090009000000320ac2032b020100000020d40400070000001604 , + 0xdb03d60200000000040000002d010100040000002d010400030000001e000400 , + 0x00002c010000040000002d0100000c00000040092100f0000000000000001500 , + 0x5600b4037f02040000002d010100040000002d010000040000002701ffff0400 , + 0x00002c010000040000002d01090009000000320ac20382020100000020d40400 , + 0x070000001604db03d60200000000040000002d010100040000002d0104000300 , + 0x00001e00040000002c010000040000002d010b000c00000040092100f0000000 , + 0x0000000013000100a1030100040000002d010100040000002d01000004000000 , + 0x2701ffff040000002c010000070000001604db03d60200000000030000001e00 , + 0x040000002c010000040000002d010b000c00000040092100f000000000000000 , + 0x26000100a2036000040000002d010100040000002d010000040000002701ffff , + 0x040000002c010000070000001604db03d60200000000030000001e0004000000 , + 0x2c010000040000002d010b000c00000040092100f00000000000000026000100 , + 0xa203b500040000002d010100040000002d010000040000002701ffff04000000 , + 0x2c010000070000001604db03d60200000000030000001e00040000002c010000 , + 0x040000002d010b000c00000040092100f00000000000000026000100a2036b01 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x070000001604db03d60200000000030000001e00040000002c01000004000000 , + 0x2d010b000c00000040092100f00000000000000026000100a203d20104000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000007000000 , + 0x1604db03d60200000000030000001e00040000002c010000040000002d010b00 , + 0x0c00000040092100f00000000000000026000100a2032802040000002d010100 , + 0x040000002d010000040000002701ffff040000002c010000070000001604db03 , + 0xd60200000000030000001e00040000002c010000040000002d010b000c000000 , + 0x40092100f00000000000000026000100a2037f02040000002d01010004000000 , + 0x2d010000040000002701ffff040000002c010000070000001604db03d6020000 , + 0x0000030000001e00040000002c010000040000002d010b000c00000040092100 , + 0xf00000000000000013000100a103d402040000002d010100040000002d010000 , + 0x040000002701ffff040000002c010000070000001604db03d602000000000300 , + 0x00001e00040000002c010000040000002d010b000c00000040092100f0000000 , + 0x0000000014000200b4030100040000002d010100040000002d01000004000000 , + 0x2701ffff040000002c010000070000001604db03d60200000000030000001e00 , + 0x040000002c010000040000002d010b000c00000040092100f000000000000000 , + 0x14000200b403d302040000002d010100040000002d010000040000002701ffff , + 0x040000002c010000070000001604db03d60200000000030000001e0004000000 , + 0x2c010000040000002d010b000c00000040092100f0000000000000000100d402 , + 0xa1030100040000002d010100040000002d010000040000002701ffff04000000 , + 0x2c010000070000001604db03d60200000000030000001e00040000002c010000 , + 0x040000002d010b000c00000040092100f0000000000000000200d402b3030100 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x070000001604db03d60200000000030000001e00040000002c01000004000000 , + 0x2d010b000c00000040092100f0000000000000000200d402c703010004000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000004000000 , + 0x2701ffff030000001e00040000002c01000008000000fa02000001000000ffff , + 0xff00040000002d010c00040000002d010d000c000000240304005c015e035c01 , + 0x9a0306029a0306025e03040000002d01010004000000f0010c00040000002d01 , + 0x0100040000002d010000040000002701ffff030000001e00040000002c010000 , + 0x0400000002010100040000002e01180005000000090200000002040000002d01 , + 0x02001f000000320a6e036101100000004d41494c494e4720414444524553533a , + 0x0800080002000700030007000800030008000700080008000600070007000300 , + 0x040000002d01020009000000320a6e03c5010100000020d40700040000002d01 , + 0x08001f000000320a7a036101100000004a4f52474520482e2043554144524f53 , + 0x0600080007000900060004000700030003000800070009000700080008000700 , + 0x040000002d01080009000000320a7a03cc010100000020d40700040000002d01 , + 0x02001b000000320a860361010d000000504f20424f5820343337313130030600 , + 0x080004000700080007000300060006000600060006000600040000002d010200 , + 0x09000000320a8603b0010100000020d40700040000002d01020027000000320a , + 0x920361011500000053414e2059534944524f2c2043412e203932313433d40700 , + 0x0800070003000800070002000800070008000300030007000800030003000600 , + 0x0600060006000600040000002d01020009000000320a9203db01010000002dd4 , + 0x0400040000002d0102000d000000320a9203df01040000003731313006000600 , + 0x06000600040000002d01020009000000320a9203f7010100000020d405000400 , + 0x00002d010100040000002d010400040000002701ffff030000001e0004000000 , + 0x2c0100008d080000410b2000cc003b009000000000003f0098001a0331002800 , + 0x0000900000003b00000001000400000000000000000000000000000000000000 , + 0x00000000000000000000ffffff00fe004000fefefe00fe000000000000000000 , + 0x0000000000000000000000000000000000000000000000000000000000000000 , + 0x0000000000002222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222233333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333223333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333322333 , + 0x3333334444444444444444444444444444444444444444444444444444444333 , + 0x3333333333344444444444444444444444444444444444444444444444444444 , + 0x4443333333322333333334444444444444444444444444444444444444444444 , + 0x4444444444444433333333333344444444444444444444444444444444444444 , + 0x4444444444444444444433333332233333334444444444444444444444444444 , + 0x4444444444444444444444444444444333333333344444444444444444444444 , + 0x4444444444444444444444444444444444444333333223333334444444444444 , + 0x4444444444444444444444444444444444444444444444443333333344444444 , + 0x4444444444444444444444444444444444444444444444444444443333322333 , + 0x3344444444444444444444444444444444444444444444444444444444444444 , + 0x4333333444444444444444444444444444444444444444444444444444444444 , + 0x4444444333322333344444444444444444444444444444444444444444444444 , + 0x4444444444444444443333444444444444444444444444444444444444444444 , + 0x4444444444444444444444443332233344444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433330003333300003303333303000003330333303330000333300003333 , + 0x3300030333333000333330000330333330300000333033330333000033330000 , + 0x3334444443322334444443330333033300333033033303303330333033330330 , + 0x3333033033330333303330333333033303330033303303330330333033303333 , + 0x0330333303303333033444444332233444444330333330330333303300000330 , + 0x3333033033330303333330303333033330330003333033333033033330330000 , + 0x0330333303303333030333333030333303344444433223344444433033333333 , + 0x0333303303330330333303300000030333333033330003333000030333303333 , + 0x3333033330330333033033330330000003033333303333000334444443322334 , + 0x4444433033333333033330333030333033330330333303033333303300333333 , + 0x3330033333303333333303333033303033303333033033330303333330330033 , + 0x3334444443322334444443303333333303333033303033303333033033330303 , + 0x3333303033333333330330333330333333330333303330303330333303303333 , + 0x0303333330303333333444444332233444444333033303330333303330303330 , + 0x3330333033330330333303303333033333033033333303330333033330333030 , + 0x3330333033303333033033330330333303344444433223344444433330003333 , + 0x0333303333033330000033300000333300003333000033333330033333333000 , + 0x3333033330333303333000003330000033330000333300003334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333344444444444444444444444444444444444444444444444444 , + 0x3333333344444444444444444444444444444444444444444444444444333333 , + 0x3334444443322334444443333333334444444444444444444444444444444444 , + 0x4444444444444444433333344444444444444444444444444444444444444444 , + 0x4444444444333333333444444332233444444333333333444444444444444444 , + 0x4444444444444444444444444444444444333344444444444444444444444444 , + 0x4444444444444444444444444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444444444444444444 , + 0x4444444444444444444444444444444444333344444444444444444444444444 , + 0x4444444444444444444444444433333333344444433223344444433333333344 , + 0x4444444444444444444444444444444444444444444444444333333444444444 , + 0x4444444444444444444444444444444444444444443333333334444443322334 , + 0x4444433333333344444444444444444444444444444444444444444444444444 , + 0x3333333344444444444444444444444444444444444444444444444444333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223334444444444444444 , + 0x4444444444444444444444444444444444444444444444444433334444444444 , + 0x4444444444444444444444444444444444444444444444444444444443322333 , + 0x3444444444444444444444444444444444444444444444444444444444444444 , + 0x4333333444444444444444444444444444444444444444444444444444444444 , + 0x4444444433322333334444444444444444444444444444444444444444444444 , + 0x4444444444444444333333334444444444444444444444444444444444444444 , + 0x4444444444444444444444433332233333344444444444444444444444444444 , + 0x4444444444444444444444444444444333333333344444444444444444444444 , + 0x4444444444444444444444444444444444444433333223333333444444444444 , + 0x4444444444444444444444444444444444444444444444333333333333444444 , + 0x4444444444444444444444444444444444444444444444444444433333322333 , + 0x3333344444444444444444444444444444444444444444444444444444444333 , + 0x3333333333344444444444444444444444444444444444444444444444444444 , + 0x4444333333322333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333332233333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222220400 , + 0x00002701ffff030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f0000000000000001b00f300f6020100040000002d01010004000000 , + 0x2d010000040000002701ffff030000001e00040000002c010000040000000201 , + 0x0100040000002e01180004000000f0010a00050000000902000000021c000000 , + 0xfb02f3ff0000000000009001000000010740001254696d6573204e657720526f , + 0x6d616e0000000000000000000000000000000000040000002d010a001f000000 , + 0x320a09032700100000004a4f52474520482e2043554144524f5308000c000c00 , + 0x0c000a0006000c00060007000b000c000d000c000c000c000a00040000002d01 , + 0x0a0009000000320a0903ce000100000020d40a00040000002d01010004000000 , + 0x2d010400040000002701ffff030000001e00040000002c010000040000000201 , + 0x0100040000002e01180004000000f0010700050000000902000000021c000000 , + 0xfb02f3ff000000000000bc020000000107400022417269616c00000000000000 , + 0x0000000000000000000000000000000000000000040000002d0107000f000000 , + 0x320a3a03270205000000446174653a0009000800040008000400040000002d01 , + 0x070009000000320a3a0348020100000020d40700040000002d01010004000000 , + 0x2d010400040000002701ffff030000001e00040000002c01000008000000fa02 , + 0x00000100000000000000040000002d010c00040000002d010d000c0000002403 , + 0x04000100f6020100d703d502d703d502f602040000002d01010004000000f001 , + 0x0c00040000002d010100040000002d010000040000002701ffff030000001e00 , + 0x040000002c0100000400000002010100040000002e01180004000000f0010500 , + 0x050000000902000000021c000000fb02f9ff000000000000bc02000000010740 , + 0x0022417269616c00000000000000000000000000000000000000000000000000 , + 0x0000040000002d01050079000000320ad303d2004c000000464f522050524f50 , + 0x4552204352454449542c20504c454153452044455441434820414e4420524554 , + 0x55524e20424f54544f4d20504f5254494f4e205749544820594f555220504159 , + 0x4d454e5404000500050002000500050005000400050005000200050004000500 , + 0x0500020003000200020005000300050005000400050002000400050003000500 , + 0x0500050002000500050005000200040005000300050005000500020005000500 , + 0x0400030006000500020005000500050003000200050005000200070002000300 , + 0x0500020005000500050005000200050004000500050005000500030004000000 , + 0x2d01050009000000320ad3030c020100000020d40400040000002d0101000400 , + 0x00002d010400040000002701ffff030000001e00040000002c01000004000000 , + 0x02010100040000002e01180004000000f0010300050000000902000000021c00 , + 0x0000fb02f4ff00000000000090010000000107400022417269616c0000000000 , + 0x00000000000000000000000000000000000000000000040000002d0103002d00 , + 0x0000320a8a0319021900000024205f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f , + 0x5f5f5f5f20200700030007000700070006000700070006000700070006000700 , + 0x070006000700070007000600070007000600070007000200040000002d010400 , + 0x04000000f00106001c000000fb02f4ff000000000000bc020000000107400022 , + 0x417269616c000000000000000000000000000000000000000000000000000000 , + 0x040000002d01060016000000320a980340020a000000414d4f554e5420445545 , + 0x08000a000a000800090007000400080009000700040000002d01030009000000 , + 0x320a980390020100000020d40700040000002d010100040000002d0104000400 , + 0x00002701ffff030000001e00040000002c0100008d080000410b2000cc003b00 , + 0x9000000000003e0098001800310028000000900000003b000000010004000000 , + 0x0000000000000000000000000000000000000000000000000000ffffff00fe00 , + 0x4000fefefe00fe00000000000000000000000000000000000000000000000000 , + 0x0000000000000000000000000000000000000000000022222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333322333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333332233333333344444444444444444444444444 , + 0x4444444444444444444444444444433333333333333444444444444444444444 , + 0x4444444444444444444444444444444444433333333223333333344444444444 , + 0x4444444444444444444444444444444444444444444444333333333333444444 , + 0x4444444444444444444444444444444444444444444444444444333333322333 , + 0x3333444444444444444444444444444444444444444444444444444444444443 , + 0x3333333334444444444444444444444444444444444444444444444444444444 , + 0x4444433333322333333444444444444444444444444444444444444444444444 , + 0x4444444444444444333333334444444444444444444444444444444444444444 , + 0x4444444444444444444444333332233333444444444444444444444444444444 , + 0x4444444444444444444444444444444443333334444444444444444444444444 , + 0x4444444444444444444444444444444444444443333223333444444444444444 , + 0x4444444444444444444444444444444444444444444444444433334444444444 , + 0x4444444444444444444444444444444444444444444444444444444433322333 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333300033333000033033333030 , + 0x0000333033330333000033330000333333000303333330003333300003303333 , + 0x3030000033303333033300003333000033344444433223344444433303330333 , + 0x0033303303330330333033303333033033330330333303333033303333330333 , + 0x0333003330330333033033303330333303303333033033330334444443322334 , + 0x4444433033333033033330330000033033330330333303033333303033330333 , + 0x3033000333303333303303333033000003303333033033330303333330303333 , + 0x0334444443322334444443303333333303333033033303303333033000000303 , + 0x3333303333000333300003033330333333330333303303330330333303300000 , + 0x0303333330333300033444444332233444444330333333330333303330303330 , + 0x3333033033330303333330330033333333300333333033333333033330333030 , + 0x3330333303303333030333333033003333344444433223344444433033333333 , + 0x0333303330303330333303303333030333333030333333333303303333303333 , + 0x3333033330333030333033330330333303033333303033333334444443322334 , + 0x4444433303330333033330333030333033303330333303303333033033330333 , + 0x3303303333330333033303333033303033303330333033330330333303303333 , + 0x0334444443322334444443333000333303333033330333300000333000003333 , + 0x0000333300003333333003333333300033330333303333033330000033300000 , + 0x3333000033330000333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333444444444444444444 , + 0x4444444444444444444444444444444433333333444444444444444444444444 , + 0x4444444444444444444444444433333333344444433223344444433333333344 , + 0x4444444444444444444444444444444444444444444444444333333444444444 , + 0x4444444444444444444444444444444444444444443333333334444443322334 , + 0x4444433333333344444444444444444444444444444444444444444444444444 , + 0x4433334444444444444444444444444444444444444444444444444444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344444444444444444444444444444444444444444444444444 , + 0x4433334444444444444444444444444444444444444444444444444444333333 , + 0x3334444443322334444443333333334444444444444444444444444444444444 , + 0x4444444444444444433333344444444444444444444444444444444444444444 , + 0x4444444444333333333444444332233444444333333333444444444444444444 , + 0x4444444444444444444444444444444433333333444444444444444444444444 , + 0x4444444444444444444444444433333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322333444444444444444444444444444444444444444444444444 , + 0x4444444444444444443333444444444444444444444444444444444444444444 , + 0x4444444444444444444444444332233334444444444444444444444444444444 , + 0x4444444444444444444444444444444443333334444444444444444444444444 , + 0x4444444444444444444444444444444444444444333223333344444444444444 , + 0x4444444444444444444444444444444444444444444444443333333344444444 , + 0x4444444444444444444444444444444444444444444444444444444333322333 , + 0x3334444444444444444444444444444444444444444444444444444444444443 , + 0x3333333334444444444444444444444444444444444444444444444444444444 , + 0x4444443333322333333344444444444444444444444444444444444444444444 , + 0x4444444444444433333333333344444444444444444444444444444444444444 , + 0x4444444444444444444443333332233333333444444444444444444444444444 , + 0x4444444444444444444444444444433333333333333444444444444444444444 , + 0x4444444444444444444444444444444444443333333223333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333322333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333322222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222040000002701ffff040000002c0100000300 , + 0x00000000 + End + GUID = + End + Begin Label + TextAlign =2 + Left =6990 + Top =11370 + Width =3525 + Height =390 + FontSize =14 + Name ="Label0" + Caption ="AVISO DE RENOVACION" + FontName ="Albertus Medium" + GUID = + End + Begin Label + Left =2040 + Top =3586 + Width =180 + Height =239 + Name ="Label3" + Caption ="2" + GUID = + End + Begin TextBox + TextAlign =1 + BackStyle =0 + Left =8895 + Top =765 + Width =1860 + Height =270 + FontSize =10 + Name ="Text4" + ControlSource ="=Format(Date(),\"Medium Date\")" + GUID = + End + Begin Subform + CanGrow = NotDefault + OldBorderStyle =0 + Left =315 + Top =1575 + Width =6369 + Height =1664 + TabIndex =1 + Name ="Labels DATGRAL" + SourceObject ="Report.Labels DATGRAL" + LinkChildFields ="NUM id" + LinkMasterFields ="NUM id" + EventProcPrefix ="Labels_DATGRAL" + GUID = + End + Begin TextBox + DecimalPlaces =0 + TextAlign =2 + Left =135 + Top =3585 + Width =1080 + ColumnWidth =1305 + FontSize =10 + TabIndex =2 + Name ="NUM id" + ControlSource ="NUMER ID" + Format ="General Number" + StatusBarText ="NUMERO DEL CLIENTE" + EventProcPrefix ="NUM_id" + GUID = + End + Begin TextBox + Left =3255 + Top =3585 + Width =1845 + FontSize =10 + TabIndex =3 + Name ="COMPAÑIA" + ControlSource ="COMP" + GUID = + End + Begin TextBox + TextAlign =1 + Left =105 + Top =4035 + Width =3105 + ColumnWidth =720 + FontSize =10 + TabIndex =4 + Name ="t" + ControlSource ="=(\"POLIZA #: RCR \" & [NO POLIZA])" + GUID = + End + Begin TextBox + TextAlign =2 + BackStyle =0 + Left =5595 + Top =3585 + FontSize =10 + TabIndex =5 + Name ="Text14" + ControlSource ="HASTA" + Format ="Short Date" + InputMask ="99/99/00;0;@" + GUID = + End + Begin Label + TextAlign =3 + Left =60 + Top =5295 + Width =1800 + Height =270 + Name ="Label17" + Caption ="AUTO:" + GUID = + End + Begin Label + FontUnderline = NotDefault + TextAlign =2 + Left =2227 + Top =4995 + Width =510 + Height =270 + Name ="Label18" + Caption ="AÑO" + GUID = + End + Begin Label + FontUnderline = NotDefault + TextAlign =2 + Left =3982 + Top =4980 + Width =540 + Height =270 + Name ="Label47" + Caption ="TIPO" + GUID = + End + Begin TextBox + TextAlign =2 + Left =1890 + Top =5325 + Width =1080 + FontSize =9 + TabIndex =6 + Name ="Text71" + ControlSource ="MODELO" + GUID = + End + Begin TextBox + TextAlign =2 + Left =2985 + Top =5325 + Width =2490 + FontSize =10 + TabIndex =7 + Name ="Text74" + ControlSource ="CARROCERIA" + GUID = + End + Begin Label + FontUnderline = NotDefault + Left =6390 + Top =4995 + Width =795 + Height =270 + Name ="Label76" + Caption ="MARCA" + GUID = + End + Begin TextBox + TextAlign =2 + Left =5505 + Top =5325 + Width =2415 + FontSize =10 + TabIndex =8 + Name ="Text77" + ControlSource ="MARCA" + GUID = + End + Begin Label + FontUnderline = NotDefault + Left =9900 + Top =4995 + Width =405 + Height =270 + Name ="Label79" + Caption ="VIN" + GUID = + End + Begin TextBox + TextAlign =2 + Left =7965 + Top =5325 + Width =2820 + FontSize =10 + TabIndex =9 + Name ="Text80" + ControlSource ="MOTOR" + GUID = + End + Begin TextBox + TextFontCharSet =2 + TextFontFamily =2 + Left =9960 + Top =1560 + Width =315 + FontSize =12 + TabIndex =10 + Name ="Text49" + ControlSource ="=IIf([num util] Is Null,\"*\")" + FontName ="Wingdings" + GUID = + End + Begin TextBox + TextFontCharSet =2 + TextFontFamily =2 + Left =10410 + Top =1560 + Width =390 + FontSize =12 + TabIndex =11 + Name ="Expr10" + ControlSource ="Expr10" + FontName ="Vacation MT" + GUID = + End + Begin Label + TextAlign =2 + Left =7597 + Top =450 + Width =2310 + Height =300 + FontSize =11 + Name ="Label127" + Caption ="(Responsabilidad Civil)" + GUID = + End + Begin TextBox + DecimalPlaces =2 + TextAlign =2 + Left =8760 + Top =2415 + Width =1155 + FontSize =10 + FontWeight =700 + TabIndex =12 + Name ="Texto128" + ControlSource ="RENOVACION" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin Label + Left =2040 + Top =14235 + Width =180 + Height =239 + Name ="Etiqueta129" + Caption ="2" + GUID = + End + Begin TextBox + DecimalPlaces =0 + TextAlign =2 + Left =135 + Top =14235 + Width =1080 + FontSize =10 + TabIndex =13 + Name ="Texto130" + ControlSource ="NUMER ID" + Format ="General Number" + StatusBarText ="NUMERO DEL CLIENTE" + GUID = + End + Begin TextBox + Left =3255 + Top =14235 + Width =1845 + FontSize =10 + TabIndex =14 + Name ="Texto131" + ControlSource ="COMP" + GUID = + End + Begin TextBox + TextAlign =2 + BackStyle =0 + Left =5595 + Top =14235 + FontSize =10 + TabIndex =15 + Name ="Texto132" + ControlSource ="HASTA" + Format ="Short Date" + InputMask ="99/99/00;0;@" + GUID = + End + Begin TextBox + TextAlign =1 + BackStyle =0 + Left =8895 + Top =12165 + Width =1860 + Height =270 + FontSize =10 + TabIndex =16 + Name ="Texto136" + ControlSource ="=Format(Date(),\"Medium Date\")" + GUID = + End + Begin Label + TextAlign =2 + Left =6990 + Top =75 + Width =3525 + Height =390 + FontSize =14 + Name ="Etiqueta138" + Caption ="AVISO DE RENOVACION" + FontName ="Albertus Medium" + GUID = + End + Begin Label + TextAlign =2 + Left =7597 + Top =11775 + Width =2310 + Height =300 + FontSize =11 + Name ="Etiqueta139" + Caption ="(Responsabilidad Civil)" + GUID = + End + Begin Subform + CanGrow = NotDefault + OldBorderStyle =0 + Left =315 + Top =12915 + Width =4929 + Height =569 + TabIndex =17 + Name ="Secundario140" + SourceObject ="Report.Labels DATGRAL" + LinkChildFields ="NUM id" + LinkMasterFields ="NUM id" + GUID = + End + Begin Label + BackStyle =1 + TextFontFamily =2 + Left =4620 + Top =1080 + Width =2325 + Height =225 + FontSize =8 + Name ="Etiqueta52" + Caption ="susana@jorgecuadros.com" + GUID = + End + Begin Label + BackStyle =1 + TextFontFamily =2 + Left =4620 + Top =12495 + Width =2325 + Height =225 + FontSize =8 + Name ="Etiqueta144" + Caption ="susana@jorgecuadros.com" + GUID = + End + Begin Label + Left =120 + Top =4440 + Width =10680 + Height =540 + Name ="Etiqueta145" + Caption ="The current policy referred above will be due at the date shown. Also, we’re des" + "cribing the insured vehicle which we suggest to verify the specific details:" + GUID = + End + Begin Label + Left =60 + Top =5700 + Width =9450 + Height =255 + Name ="Etiqueta150" + Caption ="LIABILITY COVERAGE ONLY IN MEXICO (365 days) " + " Annual Premium Pesos: " + GUID = + End + Begin TextBox + DecimalPlaces =2 + Left =9660 + Top =5700 + Width =1125 + FontSize =10 + TabIndex =18 + Name ="Texto151" + ControlSource ="=[RENOVACION]" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin Label + Left =60 + Top =6060 + Width =10740 + Height =735 + Name ="Etiqueta152" + Caption ="PD. PL. CSL $100,000.00 pesos\011MEDICAL: $ 150,000.00 LEGAL INCLUDED\015" + "\012IMPORTANT NOTICE: You have the option to renew as shown above at your own ri" + "sk, HOWEVER, there’re some important changes in our “Labor Laws” that requires i" + "ncreasing sum of liability to be properly covered...\015\012" + GUID = + End + Begin Label + Left =60 + Top =6900 + Width =10740 + Height =540 + FontSize =8 + Name ="Etiqueta153" + Caption ="We now highly recommend to consider buying a higher amount to avoid being caught" + " under insured, should you be involved in a sever bodily injury accident or poss" + "ibly a death occurrence." + GUID = + End + Begin Label + Left =60 + Top =7455 + Width =9660 + Height =255 + FontSize =8 + Name ="Etiqueta154" + Caption ="I recommend buying a minimum CSL of $300,000 plus Medical $2/10,000 and Legal as" + "sistance. New Renewal annual Premium: " + GUID = + End + Begin TextBox + DecimalPlaces =2 + Left =9660 + Top =7440 + Width =1125 + FontSize =10 + TabIndex =19 + Name ="Texto156" + ControlSource ="=[RENOVACION]+400" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin Label + Left =60 + Top =7860 + Width =10740 + Height =780 + FontWeight =700 + Name ="Etiqueta157" + Caption ="With this renewal, we’re also offering to buy a NEW RENTAL CAR option, to have a" + " rented car while possibly having: a) Collision, b) Break Down due to Mechanical" + " Failure or c) Possibly have your car Stolen (Details on the back of this page) " + "Annual Premium $ 50.00 Dls." + GUID = + End + Begin TextBox + DecimalPlaces =2 + TextAlign =3 + Left =5280 + Top =8355 + Width =5505 + FontSize =10 + FontWeight =700 + TabIndex =20 + Name ="Texto158" + ControlSource ="=\"Total Annual Premium Pesos \" & [RENOVACION]+400 & \" Plus $ 50.00 Dls.\"" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin Label + TextAlign =2 + Left =8280 + Top =3585 + Width =1275 + Height =255 + FontSize =16 + FontWeight =700 + Name ="RENOVACIONs" + Caption ="*" + GUID = + End + Begin Label + TextAlign =2 + Left =9660 + Top =3585 + Width =1125 + Height =240 + FontSize =16 + FontWeight =700 + Name ="Text33" + Caption ="*" + GUID = + End + Begin Label + TextAlign =2 + Left =9645 + Top =3945 + Width =1155 + Height =255 + FontSize =16 + FontWeight =700 + Name ="Texto127" + Caption ="*" + GUID = + End + Begin Label + TextAlign =2 + Left =5055 + Top =8355 + Width =165 + Height =285 + FontSize =16 + FontWeight =700 + Name ="Etiqueta159" + Caption ="*" + GUID = + End + Begin Label + Left =60 + Top =9000 + Width =10740 + Height =1080 + Name ="Etiqueta160" + Caption ="NEVER NEVER: Leave the scene of the accident, Make private agreements, Drive wit" + "hout a license, Drive under the influence of drugs or alcohol, Avoid calling our" + " Adjuster regardless of the size of the accident, if you cannot find him, you ca" + "n always call our office, using the numbers provided in your pocket ID. You will" + " be detained when causing a Bodily Injury accident, and an Attorney will be prov" + "ide to post a Bail Bond to bailed you out ASAP. " + GUID = + End + Begin Label + TextAlign =2 + Left =8760 + Top =13305 + Width =1155 + Height =240 + FontSize =16 + FontWeight =700 + Name ="Texto135" + Caption ="*" + GUID = + End + Begin Label + TextAlign =2 + Left =8295 + Top =14235 + Width =1245 + Height =240 + FontSize =16 + Name ="Texto133" + Caption ="*" + GUID = + End + Begin Label + TextAlign =2 + Left =9660 + Top =14235 + Width =1125 + Height =240 + FontSize =16 + Name ="Texto134" + Caption ="*" + GUID = + End + Begin UnboundObjectFrame + Locked = NotDefault + SizeMode =1 + OldBorderStyle =0 + Top =14880 + Width =10861 + Height =14641 + TabIndex =21 + Name ="OLEIndependiente161" + OleData = + Class ="Word.Document.8" + OLEClass ="Microsoft Office Word 97 - 2003" + GUID = + End + Begin Rectangle + Left =8400 + Top =10500 + Width =2400 + Height =240 + BackColor =0 + Name ="Cuadro163" + GUID = + End + Begin Label + Left =60 + Top =8700 + Width =4560 + Height =255 + Name ="Etiqueta164" + Caption ="We still suggest reading this important reminder:" + GUID = + End + End + End + End +End \ No newline at end of file diff --git a/migration/legacy_report_defs/RC_RENEW_X_MES_NEW_ATLAS_13.txt b/migration/legacy_report_defs/RC_RENEW_X_MES_NEW_ATLAS_13.txt new file mode 100644 index 0000000..418adfa --- /dev/null +++ b/migration/legacy_report_defs/RC_RENEW_X_MES_NEW_ATLAS_13.txt @@ -0,0 +1,1618 @@ +Version =19 +VersionRequired =19 +Checksum =-58816601 +Begin Report + LayoutForPrint = NotDefault + DefaultView =0 + DateGrouping =1 + GrpKeepTogether =1 + PictureAlignment =2 + DatasheetGridlinesBehavior =3 + GridX =24 + GridY =24 + Width =10905 + DatasheetFontHeight =10 + ItemSuffix =153 + Left =600 + Right =9090 + Bottom =5040 + DatasheetGridlinesColor =12632256 + OnNoData ="IMPRESION RENEW NO DATA" + RecSrcDt = Begin + 0x140d6643bd3ce440 + End + RecordSource ="RC RENEW X MES ATLAS 13" + DatasheetFontName ="Arial" + PrtMip = + PrtDevMode = + PrtDevNames = + NoSaveCTIWhenDisabled =1 + Begin + Begin Label + BackStyle =0 + FontSize =10 + FontName ="Arial" + End + Begin Image + OldBorderStyle =0 + PictureAlignment =2 + End + Begin TextBox + OldBorderStyle =0 + FontName ="Arial" + End + Begin UnboundObjectFrame + OldBorderStyle =1 + End + Begin BreakLevel + ControlSource ="NUMER ID" + End + Begin Section + KeepTogether = NotDefault + CanGrow = NotDefault + ForceNewPage =2 + Height =28681 + Name ="Detail" + GUID = + Begin + Begin Image + Width =10905 + Height =14805 + Name ="OLEIndependiente148" + PictureData = Begin + 0x030000003c2dcc0108000000094b000002660000a0062612010009000003b631 , + 0x00000e008d08000000000400000003010800050000000b020000000005000000 , + 0x0c02dc03d702070000001604db03d60200000000030000001e00040000002c01 , + 0x000007000000fc020000ffffff000000040000002d0100000c00000040092100 , + 0xf000000000000000240032013800d30008000000fa0200000000000000000000 , + 0x040000002d010100040000002d010000040000002701ffff030000001e000400 , + 0x00002c0100000400000002010100040000002e01180005000000090200000002 , + 0x1c000000fb02f5ff00000000000090010000000107400022417269616c000000 , + 0x000000000000000000000000000000000000000000000000040000002d010200 , + 0x13000000320a4700f4000800000054656c3a2030313106000600020003000300 , + 0x060006000600040000002d01020009000000320a47001a01010000002dd40400 , + 0x040000002d0102000a000000320a47001e010200000035320600060004000000 , + 0x2d01020009000000320a47002a01010000002dd40400040000002d0102000f00 , + 0x0000320a47002e01050000002836363129000400060006000500040004000000 , + 0x2d01020009000000320a47004701010000002dd40400040000002d0102000c00 , + 0x0000320a47004b010300000036313200060006000500040000002d0102000900 , + 0x0000320a47005c01010000002dd40400040000002d01020021000000320a4700 , + 0x60011100000031323935202a204661783a202836363129010600060006000600 , + 0x0300040003000600060006000300020004000600060006000300040000002d01 , + 0x020009000000320a4700b201010000002dd40400040000002d0102000c000000 , + 0x320a4700b6010300000036313200060006000600040000002d01020009000000 , + 0x320a4700c801010000002dd40400040000002d0102000d000000320a4700cc01 , + 0x04000000313238350600060005000600040000002d01020009000000320a4700 , + 0xe3010100000020d405001c000000fb02f5ff000000000000bc02000000010740 , + 0x0022417269616c00000000000000000000000000000000000000000000000000 , + 0x0000040000002d01030034000000320a530014011e000000456d61696c3a2049 , + 0x6e737572616e6365407061636e65742e636f6d2e6d7806000b00060003000300 , + 0x030003000300060007000600050006000600050007000a000700060006000600 , + 0x060004000300060006000a0002000b000600040000002d01030009000000320a , + 0x5300c3010100000020d40500040000002d0101001c000000fb02100007000000 , + 0x0000bc02000000000102022253797374656d005b9701c47f2800c70100007a28 , + 0xf6bf00005021bcef620054d4040000002d010400040000002701ffff03000000 , + 0x1e00040000002c010000040000002d0100000c00000040092100f00000000000 , + 0x00003000ae0002001501040000002d010100040000002d010000040000002701 , + 0xffff030000001e00040000002c0100000400000002010100040000002e011800 , + 0x05000000090200000002040000002d01020033000000320a110019011d000000 , + 0x5175696e746120506c617a612053686f7070696e672043656e74657220780800 , + 0x0600020006000300060004000600020006000600060003000700060006000600 , + 0x060002000600060003000700060006000300060004000300040000002d010200 , + 0x2e000000320a1e0019011a000000737569746520332050422e20536f75746820 , + 0x4275696c64696e67060006000200030006000300060003000600070003000300 , + 0x0700060006000300060003000700060002000200070002000600060004000000 , + 0x2d01020009000000320a1e0094010100000020d40600040000002d0102003600 , + 0x0000320a2b0019011f000000323237313020506c6179617320646520526f7361 , + 0x7269746f2c20422e20432ea00600060006000600060003000600020006000600 , + 0x0600060003000600060003000700060006000600040002000300060003000300 , + 0x07000300030007000300040000002d01020009000000320a2b00b10101000000 , + 0x20d40600040000002d010100040000002d010400040000002701ffff03000000 , + 0x1e00040000002c010000040000002d0100000c00000040092100f00000000000 , + 0x00001a00f30001000100040000002d010100040000002d010000040000002701 , + 0xffff030000001e00040000002c0100000400000002010100040000002e011800 , + 0x050000000902000000021c000000fb02f3ff0000000000009001000000010740 , + 0x001254696d6573204e657720526f6d616e000000000000000000000000000000 , + 0x0000040000002d0105001f000000320a11002700100000004a4f52474520482e , + 0x2043554144524f5308000c000c000c000a0006000c00060007000b000c000d00 , + 0x0c000c000c000a00040000002d01050009000000320a1100ce000100000020d4 , + 0x0a00040000002d010100040000002d010400040000002701ffff030000001e00 , + 0x040000002c010000070000001604db03d60200000000030000001e0004000000 , + 0x2c010000040000002d0100000c00000040092100f00000000000000013005f00 , + 0xda000100040000002d010100040000002d010000040000002701ffff04000000 , + 0x2c0100000400000002010100040000002e011800050000000902000000021c00 , + 0x0000fb02f6ff000000000000bc02010000010740001254696d6573204e657720 , + 0x526f6d616e0000000000000000000000000000000000040000002d0106001800 , + 0x0000320ae60015000b0000004163636f756e74204e6f2e000700040004000500 , + 0x0600060003000300070005000300040000002d01060009000000320ae6004a00 , + 0x0100000020d40400070000001604db03d60200000000040000002d0101000400 , + 0x00002d010400030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f00000000000000013005500da006000040000002d01010004000000 , + 0x2d010000040000002701ffff040000002c010000040000002d0106000d000000 , + 0x320ae6007c0004000000434f44450700070007000700040000002d0106000900 , + 0x0000320ae60098000100000020d40500070000001604db03d602000000000400 , + 0x00002d010100040000002d010400030000001e00040000002c01000004000000 , + 0x2d0100000c00000040092100f0000000000000001300b600da00b50004000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000004000000 , + 0x2d01060021000000320ae600d80011000000494e535552414e434520434f4d50 , + 0x414e590104000700060007000700070007000700060003000700070009000600 , + 0x070006000700040000002d01060009000000320ae60046010100000020d40400 , + 0x070000001604db03d60200000000040000002d010100040000002d0104000300 , + 0x00001e00040000002c010000040000002d0100000c00000040092100f0000000 , + 0x0000000013006700da006b01040000002d010100040000002d01000004000000 , + 0x2701ffff040000002c010000040000002d01060013000000320ae60084010800 , + 0x0000445545204441544507000700070003000700070006000700040000002d01 , + 0x060009000000320ae600b7010100000020d40400070000001604db03d6020000 , + 0x0000040000002d010100040000002d010400030000001e00040000002c010000 , + 0x040000002d0100000c00000040092100f00000000000000013005700da00d201 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x040000002d01060010000000320ae600e9010600000043524544495407000700 , + 0x0700070004000600040000002d01060009000000320ae6000f020100000020d4 , + 0x0400070000001604db03d60200000000040000002d010100040000002d010400 , + 0x030000001e00040000002c010000040000002d0100000c00000040092100f000 , + 0x00000000000013005600da002902040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c010000040000002d01060010000000320ae6003d02 , + 0x06000000434841524745070008000700070007000700040000002d0106000900 , + 0x0000320ae60068020100000020d40400070000001604db03d602000000000400 , + 0x00002d010100040000002d010400030000001e00040000002c01000004000000 , + 0x2d0100000c00000040092100f00000000000000013005600da007f0204000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000004000000 , + 0x2d01060012000000320ae60091020700000042414c414e434500070007000600 , + 0x0700070007000700040000002d01060009000000320ae600c1020100000020d4 , + 0x0400070000001604db03d60200000000040000002d010100040000002d010400 , + 0x030000001e00040000002c010000040000002d0100000c00000040092100f000 , + 0x00000000000018005f00ed000100040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c0100001c000000fb02f7ff00000000000090010000 , + 0x00010740001254696d6573204e657720526f6d616e0000000000000000000000 , + 0x000000000000040000002d01070009000000320afd0005000100000020d40400 , + 0x070000001604db03d60200000000040000002d010100040000002d0104000300 , + 0x00001e00040000002c010000040000002d0100000c00000040092100f0000000 , + 0x0000000018005500ed006000040000002d010100040000002d01000004000000 , + 0x2701ffff040000002c010000040000002d01070009000000320afd0063000100 , + 0x000020d40400070000001604db03d60200000000040000002d01010004000000 , + 0x2d010400030000001e00040000002c010000040000002d0100000c0000004009 , + 0x2100f0000000000000001800b600ed00b500040000002d010100040000002d01 , + 0x0000040000002701ffff040000002c010000040000002d01070009000000320a , + 0xfd00b8000100000020d40400070000001604db03d60200000000040000002d01 , + 0x0100040000002d010400030000001e00040000002c010000040000002d010000 , + 0x0c00000040092100f00000000000000018006700ed006b01040000002d010100 , + 0x040000002d010000040000002701ffff040000002c010000040000002d010700 , + 0x09000000320afd006e010100000020d40400070000001604db03d60200000000 , + 0x040000002d010100040000002d010400030000001e00040000002c0100000400 , + 0x00002d0100000c00000040092100f00000000000000018005700ed00d2010400 , + 0x00002d010100040000002d010000040000002701ffff040000002c0100000400 , + 0x00002d01070009000000320afd00d5010100000020d40400070000001604db03 , + 0xd60200000000040000002d010100040000002d010400030000001e0004000000 , + 0x2c010000040000002d0100000c00000040092100f00000000000000018005600 , + 0xed002902040000002d010100040000002d010000040000002701ffff04000000 , + 0x2c010000040000002d01070009000000320afd002b020100000020d404000700 , + 0x00001604db03d60200000000040000002d010100040000002d01040003000000 , + 0x1e00040000002c010000040000002d0100000c00000040092100f00000000000 , + 0x000018005600ed007f02040000002d010100040000002d010000040000002701 , + 0xffff040000002c010000040000002d01070009000000320afd00820201000000 , + 0x20d40400070000001604db03d60200000000040000002d010100040000002d01 , + 0x0400030000001e00040000002c010000040000002d0100000c00000040092100 , + 0xf00000000000000018005f0005010100040000002d010100040000002d010000 , + 0x040000002701ffff040000002c010000040000002d01070009000000320a1301 , + 0x05000100000020d40400070000001604db03d60200000000040000002d010100 , + 0x040000002d010400030000001e00040000002c010000040000002d0100000c00 , + 0x000040092100f0000000000000001800550005016000040000002d0101000400 , + 0x00002d010000040000002701ffff040000002c010000040000002d0107000900 , + 0x0000320a130164000100000020d40400070000001604db03d602000000000400 , + 0x00002d010100040000002d010400030000001e00040000002c01000004000000 , + 0x2d0100000c00000040092100f0000000000000001800b6000501b50004000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000004000000 , + 0x2d01070009000000320a1301b9000100000020d40400070000001604db03d602 , + 0x00000000040000002d010100040000002d010400030000001e00040000002c01 , + 0x0000040000002d0100000c00000040092100f000000000000000180067000501 , + 0x6b01040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x0000040000002d01070009000000320a13016f010100000020d4040007000000 , + 0x1604db03d60200000000040000002d010100040000002d010400030000001e00 , + 0x040000002c010000040000002d0100000c00000040092100f000000000000000 , + 0x180057000501d201040000002d010100040000002d010000040000002701ffff , + 0x040000002c0100001c000000fb02edff00000000000090010000000107400022 , + 0x417269616c000000000000000000000000000000000000000000000000000000 , + 0x040000002d01080009000000320a1c0125020100000020d40a00070000001604 , + 0xdb03d60200000000040000002d010100040000002d010400030000001e000400 , + 0x00002c010000040000002d0100000c00000040092100f0000000000000001800 , + 0x560005012902040000002d010100040000002d010000040000002701ffff0400 , + 0x00002c010000040000002d01020010000000320a1901500206000000546f7461 , + 0x6c200600060003000600020003001c000000fb02f0ff000000000000f4010000 , + 0x0002074000024d61726c65747400000000000000000000000000000000000000 , + 0x000000000000040000002d01090009000000320a19016a020100000034011000 , + 0x1c000000fb02f4ff00000000000090010000000107400022417269616c000000 , + 0x000000000000000000000000000000000000000000000000040000002d010a00 , + 0x09000000320a19017a020100000020d40700070000001604db03d60200000000 , + 0x040000002d010100040000002d010400030000001e00040000002c0100000400 , + 0x00002d0100000c00000040092100f0000000000000001800560005017f020400 , + 0x00002d010100040000002d010000040000002701ffff040000002c0100000400 , + 0x00002d01070009000000320a150183020100000020d40400070000001604db03 , + 0xd60200000000040000002d010100040000002d010400030000001e0004000000 , + 0x2c01000007000000fc020000000000000000040000002d010b000c0000004009 , + 0x2100f00000000000000013000100da000100040000002d010100040000002d01 , + 0x0000040000002701ffff040000002c010000070000001604db03d60200000000 , + 0x030000001e00040000002c010000040000002d010b000c00000040092100f000 , + 0x0000000000002a000100da006000040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c010000070000001604db03d6020000000003000000 , + 0x1e00040000002c010000040000002d010b000c00000040092100f00000000000 , + 0x00002a000100da00b500040000002d010100040000002d010000040000002701 , + 0xffff040000002c010000070000001604db03d60200000000030000001e000400 , + 0x00002c010000040000002d010b000c00000040092100f0000000000000002a00 , + 0x0100da006b01040000002d010100040000002d010000040000002701ffff0400 , + 0x00002c010000070000001604db03d60200000000030000001e00040000002c01 , + 0x0000040000002d010b000c00000040092100f0000000000000002a000100da00 , + 0xd201040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x0000070000001604db03d60200000000030000001e00040000002c0100000400 , + 0x00002d010b000c00000040092100f00000000000000043000100da0028020400 , + 0x00002d010100040000002d010000040000002701ffff040000002c0100000700 , + 0x00001604db03d60200000000030000001e00040000002c010000040000002d01 , + 0x0b000c00000040092100f0000000000000002a000100da007f02040000002d01 , + 0x0100040000002d010000040000002701ffff040000002c010000070000001604 , + 0xdb03d60200000000030000001e00040000002c010000040000002d010b000c00 , + 0x000040092100f00000000000000013000100da00d402040000002d0101000400 , + 0x00002d010000040000002701ffff040000002c010000070000001604db03d602 , + 0x00000000030000001e00040000002c010000040000002d010b000c0000004009 , + 0x2100f00000000000000018000200ed000100040000002d010100040000002d01 , + 0x0000040000002701ffff040000002c010000070000001604db03d60200000000 , + 0x030000001e00040000002c010000040000002d010b000c00000040092100f000 , + 0x0000000000002f000200ed00d302040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c010000070000001604db03d6020000000003000000 , + 0x1e00040000002c010000040000002d010b000c00000040092100f00000000000 , + 0x00001600020005017f02040000002d010100040000002d010000040000002701 , + 0xffff040000002c010000070000001604db03d60200000000030000001e000400 , + 0x00002c010000040000002d010b000c00000040092100f0000000000000000100 , + 0xd402da000100040000002d010100040000002d010000040000002701ffff0400 , + 0x00002c010000070000001604db03d60200000000030000001e00040000002c01 , + 0x0000040000002d010b000c00000040092100f0000000000000000200d402ec00 , + 0x0100040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x0000070000001604db03d60200000000030000001e00040000002c0100000400 , + 0x00002d010b000c00000040092100f0000000000000000200d302040101000400 , + 0x00002d010100040000002d010000040000002701ffff040000002c0100000700 , + 0x00001604db03d60200000000030000001e00040000002c010000040000002d01 , + 0x0b000c00000040092100f000000000000000010057001c012802040000002d01 , + 0x0100040000002d010000040000002701ffff040000002c010000070000001604 , + 0xdb03d60200000000030000001e00040000002c010000040000002d010b000c00 , + 0x000040092100f000000000000000020056001b017f02040000002d0101000400 , + 0x00002d010000040000002701ffff040000002c010000040000002701ffff0300 , + 0x00001e00040000002c0100000400000002010100040000002e01180004000000 , + 0xf001030004000000f0010500050000000902000000021c000000fb02f3ff0000 , + 0x00000000bc020000000107400022417269616c00000000000000000000000000 , + 0x0000000000000000000000000000040000002d0103000f000000320a43002402 , + 0x05000000446174653a00090008000400080004001c000000fb02f3ff00000000 , + 0x000090010000000107400022417269616c000000000000000000000000000000 , + 0x000000000000000000000000040000002d01050009000000320a430045020100 , + 0x000020d40f00040000002d01030009000000320a430054020100000020d40700 , + 0x040000002d010100040000002d010400040000002701ffff030000001e000400 , + 0x00002c010000040000002d0100000c00000040092100f0000000000000001200 , + 0xe9009e020900040000002d010100040000002d010000040000002701ffff0300 , + 0x00001e00040000002c0100000400000002010100040000002e01180004000000 , + 0xf0010600050000000902000000021c000000fb02f5ff00000000000090010000 , + 0x00010740001254696d6573204e657720526f6d616e0000000000000000000000 , + 0x000000000000040000002d0106001f000000320aad023b00100000004a4f5247 , + 0x4520482e2043554144524f5306000a0009000900090005000a00050005000900 , + 0x0a000a000a0009000a000700040000002d01060009000000320aad02c0000100 , + 0x000020d40800040000002d010100040000002d010400040000002701ffff0300 , + 0x00001e00040000002c01000008000000fa020000010000000000000004000000 , + 0x2d010c0007000000fc020100000000000000040000002d010d000c0000002403 , + 0x0400010006000100ea02d502ea02d5020600040000002d01010004000000f001 , + 0x0c00040000002d010100040000002d010000040000002701ffff030000001e00 , + 0x040000002c01000008000000fa02000001000000ffffff00040000002d010c00 , + 0x040000002d010d000c00000024030400c1016300c1019f00ce029f00ce026300 , + 0x040000002d01010004000000f0010c00040000002d010100040000002d010000 , + 0x040000002701ffff030000001e00040000002c01000004000000020101000400 , + 0x00002e01180005000000090200000002040000002d0102001f000000320a7200 , + 0xc501100000004d41494c494e4720414444524553533a08000800020007000300 , + 0x07000800030008000700080008000600070007000300040000002d0102000900 , + 0x0000320a720029020100000020d40700040000002d01040004000000f0010800 , + 0x1c000000fb02f5ff000000000000bc020000000107400022417269616c000000 , + 0x000000000000000000000000000000000000000000000000040000002d010800 , + 0x1f000000320a7e00c501100000004a4f52474520482e2043554144524f530600 , + 0x0800070009000600040007000300030008000700090007000800080007000400 , + 0x00002d01080009000000320a7e0030020100000020d40700040000002d010200 , + 0x1b000000320a8a00c5010d000000504f20424f58203433373131300006000800 , + 0x04000700080007000300060006000600060006000600040000002d0102000900 , + 0x0000320a8a0014020100000020d40700040000002d01020027000000320a9600 , + 0xc5011500000053414e2059534944524f2c2043412e203932313433d407000800 , + 0x0700030008000700020008000700080003000300070008000300030006000600 , + 0x060006000600040000002d01020009000000320a96003f02010000002dd40400 , + 0x040000002d0102000d000000320a960043020400000037313130060006000600 , + 0x0600040000002d01020009000000320a96005b020100000020d4050004000000 , + 0x2d010100040000002d010400040000002701ffff030000001e00040000002c01 , + 0x00000400000002010100040000002e01180004000000f0010900050000000902 , + 0x000000021c000000fb02f9ff0000000000009001000000010740002241726961 , + 0x6c00000000000000000000000000000000000000000000000000000004000000 , + 0x2d01090045000000320adf02130129000000504c45415345204b454550205448 , + 0x495320504f5254494f4e20464f5220594f5552205245434f5244530005000400 , + 0x0400050004000500010005000400050004000200040005000200050001000500 , + 0x0500040005000200050005000200040005000500010005000500050005000200 , + 0x0400050005000500050004000500040000002d01090009000000320adf02bb01 , + 0x0100000020d40300040000002d010100040000002d010400040000002701ffff , + 0x030000001e00040000002c0100000400000002010100040000002e0118000400 , + 0x0000f001070005000000090200000002040000002d010a002d000000320ab400 , + 0x1a021900000024205f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f2046 , + 0x0700030007000700070006000700070006000700070006000700070006000700 , + 0x0700070006000700070006000700070002001c000000fb02f4ff000000000000 , + 0xbc020000000107400022417269616c0000000000000000000000000000000000 , + 0x00000000000000000000040000002d01070016000000320ac20041020a000000 , + 0x414d4f554e542044554508000a000a0008000900070004000800090007000400 , + 0x00002d010a0009000000320ac20091020100000020d40700040000002d010100 , + 0x040000002d010400040000002701ffff030000001e00040000002c0100000400 , + 0x00002d010b000c00000040092100f0000000000000001a002702ba0201000400 , + 0x00002d010100040000002d010000040000002701ffff030000001e0004000000 , + 0x2c0100000400000002010100040000002e011800050000000902ffffff020400 , + 0x00002d01070040000000320ac9022100260000004641494c55524520544f2052 , + 0x4553504f4e442057494c4c20524553554c5420494e204e4f4e20070008000400 , + 0x0700090009000700040007000900040009000700080008000a00090008000300 , + 0x0c00030007000800030009000700090008000800070003000400080004000800 , + 0x0a0008000300040000002d01070009000000320ac9022b01010000002dd40500 , + 0x040000002d01070030000000320ac90230011b0000002052454e4557414c204f , + 0x4620544845534520434f5645524147455355030009000800090007000c000800 , + 0x080003000a000700030008000900070009000700040008000900090008000900 , + 0x0900090007000800040000002d01070009000000320ac902ff010100000020d4 , + 0x080005000000090200000002040000002d010100040000002d01040004000000 , + 0x2701ffff030000001e00040000002c010000040000002d010b000c0000004009 , + 0x2100f0000000000000001a00b300ba022202040000002d010100040000002d01 , + 0x0000040000002701ffff030000001e00040000002c0100000400000002010100 , + 0x040000002e01180004000000f0010500050000000902ffffff021c000000fb02 , + 0xf6ff000000000000bc020000000107400022417269616c000000000000000000 , + 0x000000000000000000000000000000000000040000002d01050031000000320a , + 0xc70238021c000000414c4c20414d4f554e54532041524520494e20552e20532e , + 0x2043792e07000600060003000700090008000700070005000700030007000700 , + 0x0700030003000700030007000300030007000300030007000500030004000000 , + 0x2d01050009000000320ac702d1020100000020d4060005000000090200000002 , + 0x040000002d010100040000002d010400040000002701ffff030000001e000400 , + 0x00002c0100000400000002010100040000002e01180004000000f00103000500 , + 0x00000902000000021c000000fb02f1ff00000000000090010100000107400052 , + 0x4861726c6f7720536f6c6964204974616c696300000000000000000000000000 , + 0x040000002d01030015000000320ae3025b02090000005468616e6b20596f75d6 , + 0x0b00070007000800060004000d0006000700040000002d01030009000000320a , + 0xe302a0020100000020d40700040000002d010100040000002d01040004000000 , + 0x2701ffff030000001e00040000002c010000040000002d0100000c0000004009 , + 0x2100f000000000000000300032013203d300040000002d010100040000002d01 , + 0x0000040000002701ffff030000001e00040000002c0100000400000002010100 , + 0x040000002e01180005000000090200000002040000002d01080013000000320a , + 0x4103f3000800000054656c3a2030313106000700030003000300060006000600 , + 0x040000002d01080009000000320a41031b01010000002dd40400040000002d01 , + 0x08000a000000320a41031f0102000000353206000600040000002d0108000900 , + 0x0000320a41032b01010000002dd40300040000002d0108000f000000320a4103 , + 0x2e010500000028363631290004000600060006000300040000002d0108000900 , + 0x0000320a41034701010000002dd40400040000002d0108000c000000320a4103 , + 0x4b010300000036313200060006000600040000002d01080009000000320a4103 , + 0x5d01010000002dd40300040000002d01080021000000320a4103600111000000 , + 0x31323935202a204661783a202836363129010600060006000600030004000300 , + 0x0600060006000300030004000600060006000400040000002d01080009000000 , + 0x320a4103b401010000002dd40400040000002d0108000c000000320a4103b801 , + 0x0300000036313200060006000500040000002d01080009000000320a4103c901 , + 0x010000002dd40400040000002d0108000d000000320a4103cd01040000003132 , + 0x38350600060006000600040000002d01080009000000320a4103e50101000000 , + 0x20d40500040000002d01080034000000320a4e0314011e000000456d61696c3a , + 0x20496e737572616e6365407061636e65742e636f6d2e6d7806000b0006000300 , + 0x0300030003000300060007000600050006000600050007000a00070006000600 , + 0x0600060004000300060006000a0002000b000600040000002d01080009000000 , + 0x320a4e03c3010100000020d40500040000002d010100040000002d0104000400 , + 0x00002701ffff030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f0000000000000003000ae00fc021501040000002d01010004000000 , + 0x2d010000040000002701ffff030000001e00040000002c010000040000000201 , + 0x0100040000002e01180005000000090200000002040000002d01020033000000 , + 0x320a0b0319011d0000005175696e746120506c617a612053686f7070696e6720 , + 0x43656e7465722078080006000200060003000600040006000200060006000600 , + 0x0300070006000600060006000200060006000300070006000600030006000400 , + 0x0300040000002d0102002e000000320a180319011a0000007375697465203320 , + 0x50422e20536f757468204275696c64696e670600060002000300060003000600 , + 0x0300060007000300030007000600060003000600030007000600020002000700 , + 0x020006000600040000002d01020009000000320a180394010100000020d40600 , + 0x040000002d01020036000000320a250319011f000000323237313020506c6179 , + 0x617320646520526f73617269746f2c20422e20432ea006000600060006000600 , + 0x0300060002000600060006000600030006000600030007000600060006000400 , + 0x0200030006000300030007000300030007000300040000002d01020009000000 , + 0x320a2503b1010100000020d40600040000002d010100040000002d0104000400 , + 0x00002701ffff030000001e00040000002c010000070000001604db03d6020000 , + 0x0000030000001e00040000002c010000040000002d0100000c00000040092100 , + 0xf00000000000000013005f00a1030100040000002d010100040000002d010000 , + 0x040000002701ffff040000002c0100000400000002010100040000002e011800 , + 0x04000000f0010600050000000902000000021c000000fb02f6ff000000000000 , + 0xbc02010000010740001254696d6573204e657720526f6d616e00000000000000 , + 0x00000000000000000000040000002d01060018000000320aad0315000b000000 , + 0x4163636f756e74204e6f2e000700040004000500060006000300030007000500 , + 0x0300040000002d01060009000000320aad034a000100000020d4040007000000 , + 0x1604db03d60200000000040000002d010100040000002d010400030000001e00 , + 0x040000002c010000040000002d0100000c00000040092100f000000000000000 , + 0x13005500a1036000040000002d010100040000002d010000040000002701ffff , + 0x040000002c010000040000002d0106000d000000320aad037c0004000000434f , + 0x44450700070007000700040000002d01060009000000320aad03980001000000 , + 0x20d40500070000001604db03d60200000000040000002d010100040000002d01 , + 0x0400030000001e00040000002c010000040000002d0100000c00000040092100 , + 0xf0000000000000001300b600a103b500040000002d010100040000002d010000 , + 0x040000002701ffff040000002c010000040000002d01060021000000320aad03 , + 0xd80011000000494e535552414e434520434f4d50414e59010400070006000700 , + 0x0700070007000700060003000700070009000600070006000700040000002d01 , + 0x060009000000320aad0346010100000020d40400070000001604db03d6020000 , + 0x0000040000002d010100040000002d010400030000001e00040000002c010000 , + 0x040000002d0100000c00000040092100f00000000000000013006700a1036b01 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x040000002d01060013000000320aad0384010800000044554520444154450700 , + 0x0700070003000700070006000700040000002d01060009000000320aad03b701 , + 0x0100000020d40400070000001604db03d60200000000040000002d0101000400 , + 0x00002d010400030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f00000000000000013005700a103d201040000002d01010004000000 , + 0x2d010000040000002701ffff040000002c010000040000002d01060010000000 , + 0x320aad03e9010600000043524544495407000700070007000400060004000000 , + 0x2d01060009000000320aad030f020100000020d40400070000001604db03d602 , + 0x00000000040000002d010100040000002d010400030000001e00040000002c01 , + 0x0000040000002d0100000c00000040092100f00000000000000013005600a103 , + 0x2902040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x0000040000002d01060010000000320aad033d02060000004348415247450700 , + 0x08000700070007000700040000002d01060009000000320aad03680201000000 , + 0x20d40400070000001604db03d60200000000040000002d010100040000002d01 , + 0x0400030000001e00040000002c010000040000002d0100000c00000040092100 , + 0xf00000000000000013005600a1037f02040000002d010100040000002d010000 , + 0x040000002701ffff040000002c010000040000002d01060012000000320aad03 , + 0x91020700000042414c414e434500070007000600070007000700070004000000 , + 0x2d01060009000000320aad03c1020100000020d40400070000001604db03d602 , + 0x00000000040000002d010100040000002d010400030000001e00040000002c01 , + 0x0000040000002d0100000c00000040092100f00000000000000015005f00b403 , + 0x0100040000002d010100040000002d010000040000002701ffff040000002c01 , + 0x000004000000f00109001c000000fb02f7ff0000000000009001000000010740 , + 0x001254696d6573204e657720526f6d616e000000000000000000000000000000 , + 0x0000040000002d01090009000000320ac20305000100000020d4040007000000 , + 0x1604db03d60200000000040000002d010100040000002d010400030000001e00 , + 0x040000002c010000040000002d0100000c00000040092100f000000000000000 , + 0x15005500b4036000040000002d010100040000002d010000040000002701ffff , + 0x040000002c010000040000002d01090009000000320ac20363000100000020d4 , + 0x0400070000001604db03d60200000000040000002d010100040000002d010400 , + 0x030000001e00040000002c010000040000002d0100000c00000040092100f000 , + 0x0000000000001500b600b403b500040000002d010100040000002d0100000400 , + 0x00002701ffff040000002c010000040000002d01090009000000320ac203b800 , + 0x0100000020d40400070000001604db03d60200000000040000002d0101000400 , + 0x00002d010400030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f00000000000000015006700b4036b01040000002d01010004000000 , + 0x2d010000040000002701ffff040000002c010000040000002d01090009000000 , + 0x320ac2036e010100000020d40400070000001604db03d6020000000004000000 , + 0x2d010100040000002d010400030000001e00040000002c010000040000002d01 , + 0x00000c00000040092100f00000000000000015005700b403d201040000002d01 , + 0x0100040000002d010000040000002701ffff040000002c010000040000002d01 , + 0x090009000000320ac203d5010100000020d40400070000001604db03d6020000 , + 0x0000040000002d010100040000002d010400030000001e00040000002c010000 , + 0x040000002d0100000c00000040092100f00000000000000015005600b4032902 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x040000002d01090009000000320ac2032b020100000020d40400070000001604 , + 0xdb03d60200000000040000002d010100040000002d010400030000001e000400 , + 0x00002c010000040000002d0100000c00000040092100f0000000000000001500 , + 0x5600b4037f02040000002d010100040000002d010000040000002701ffff0400 , + 0x00002c010000040000002d01090009000000320ac20382020100000020d40400 , + 0x070000001604db03d60200000000040000002d010100040000002d0104000300 , + 0x00001e00040000002c010000040000002d010b000c00000040092100f0000000 , + 0x0000000013000100a1030100040000002d010100040000002d01000004000000 , + 0x2701ffff040000002c010000070000001604db03d60200000000030000001e00 , + 0x040000002c010000040000002d010b000c00000040092100f000000000000000 , + 0x26000100a2036000040000002d010100040000002d010000040000002701ffff , + 0x040000002c010000070000001604db03d60200000000030000001e0004000000 , + 0x2c010000040000002d010b000c00000040092100f00000000000000026000100 , + 0xa203b500040000002d010100040000002d010000040000002701ffff04000000 , + 0x2c010000070000001604db03d60200000000030000001e00040000002c010000 , + 0x040000002d010b000c00000040092100f00000000000000026000100a2036b01 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x070000001604db03d60200000000030000001e00040000002c01000004000000 , + 0x2d010b000c00000040092100f00000000000000026000100a203d20104000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000007000000 , + 0x1604db03d60200000000030000001e00040000002c010000040000002d010b00 , + 0x0c00000040092100f00000000000000026000100a2032802040000002d010100 , + 0x040000002d010000040000002701ffff040000002c010000070000001604db03 , + 0xd60200000000030000001e00040000002c010000040000002d010b000c000000 , + 0x40092100f00000000000000026000100a2037f02040000002d01010004000000 , + 0x2d010000040000002701ffff040000002c010000070000001604db03d6020000 , + 0x0000030000001e00040000002c010000040000002d010b000c00000040092100 , + 0xf00000000000000013000100a103d402040000002d010100040000002d010000 , + 0x040000002701ffff040000002c010000070000001604db03d602000000000300 , + 0x00001e00040000002c010000040000002d010b000c00000040092100f0000000 , + 0x0000000014000200b4030100040000002d010100040000002d01000004000000 , + 0x2701ffff040000002c010000070000001604db03d60200000000030000001e00 , + 0x040000002c010000040000002d010b000c00000040092100f000000000000000 , + 0x14000200b403d302040000002d010100040000002d010000040000002701ffff , + 0x040000002c010000070000001604db03d60200000000030000001e0004000000 , + 0x2c010000040000002d010b000c00000040092100f0000000000000000100d402 , + 0xa1030100040000002d010100040000002d010000040000002701ffff04000000 , + 0x2c010000070000001604db03d60200000000030000001e00040000002c010000 , + 0x040000002d010b000c00000040092100f0000000000000000200d402b3030100 , + 0x040000002d010100040000002d010000040000002701ffff040000002c010000 , + 0x070000001604db03d60200000000030000001e00040000002c01000004000000 , + 0x2d010b000c00000040092100f0000000000000000200d402c703010004000000 , + 0x2d010100040000002d010000040000002701ffff040000002c01000004000000 , + 0x2701ffff030000001e00040000002c01000008000000fa02000001000000ffff , + 0xff00040000002d010c00040000002d010d000c000000240304005c015e035c01 , + 0x9a0306029a0306025e03040000002d01010004000000f0010c00040000002d01 , + 0x0100040000002d010000040000002701ffff030000001e00040000002c010000 , + 0x0400000002010100040000002e01180005000000090200000002040000002d01 , + 0x02001f000000320a6e036101100000004d41494c494e4720414444524553533a , + 0x0800080002000700030007000800030008000700080008000600070007000300 , + 0x040000002d01020009000000320a6e03c5010100000020d40700040000002d01 , + 0x08001f000000320a7a036101100000004a4f52474520482e2043554144524f53 , + 0x0600080007000900060004000700030003000800070009000700080008000700 , + 0x040000002d01080009000000320a7a03cc010100000020d40700040000002d01 , + 0x02001b000000320a860361010d000000504f20424f5820343337313130030600 , + 0x080004000700080007000300060006000600060006000600040000002d010200 , + 0x09000000320a8603b0010100000020d40700040000002d01020027000000320a , + 0x920361011500000053414e2059534944524f2c2043412e203932313433d40700 , + 0x0800070003000800070002000800070008000300030007000800030003000600 , + 0x0600060006000600040000002d01020009000000320a9203db01010000002dd4 , + 0x0400040000002d0102000d000000320a9203df01040000003731313006000600 , + 0x06000600040000002d01020009000000320a9203f7010100000020d405000400 , + 0x00002d010100040000002d010400040000002701ffff030000001e0004000000 , + 0x2c0100008d080000410b2000cc003b009000000000003f0098001a0331002800 , + 0x0000900000003b00000001000400000000000000000000000000000000000000 , + 0x00000000000000000000ffffff00fe004000fefefe00fe000000000000000000 , + 0x0000000000000000000000000000000000000000000000000000000000000000 , + 0x0000000000002222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222233333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333223333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333322333 , + 0x3333334444444444444444444444444444444444444444444444444444444333 , + 0x3333333333344444444444444444444444444444444444444444444444444444 , + 0x4443333333322333333334444444444444444444444444444444444444444444 , + 0x4444444444444433333333333344444444444444444444444444444444444444 , + 0x4444444444444444444433333332233333334444444444444444444444444444 , + 0x4444444444444444444444444444444333333333344444444444444444444444 , + 0x4444444444444444444444444444444444444333333223333334444444444444 , + 0x4444444444444444444444444444444444444444444444443333333344444444 , + 0x4444444444444444444444444444444444444444444444444444443333322333 , + 0x3344444444444444444444444444444444444444444444444444444444444444 , + 0x4333333444444444444444444444444444444444444444444444444444444444 , + 0x4444444333322333344444444444444444444444444444444444444444444444 , + 0x4444444444444444443333444444444444444444444444444444444444444444 , + 0x4444444444444444444444443332233344444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433330003333300003303333303000003330333303330000333300003333 , + 0x3300030333333000333330000330333330300000333033330333000033330000 , + 0x3334444443322334444443330333033300333033033303303330333033330330 , + 0x3333033033330333303330333333033303330033303303330330333033303333 , + 0x0330333303303333033444444332233444444330333330330333303300000330 , + 0x3333033033330303333330303333033330330003333033333033033330330000 , + 0x0330333303303333030333333030333303344444433223344444433033333333 , + 0x0333303303330330333303300000030333333033330003333000030333303333 , + 0x3333033330330333033033330330000003033333303333000334444443322334 , + 0x4444433033333333033330333030333033330330333303033333303300333333 , + 0x3330033333303333333303333033303033303333033033330303333330330033 , + 0x3334444443322334444443303333333303333033303033303333033033330303 , + 0x3333303033333333330330333330333333330333303330303330333303303333 , + 0x0303333330303333333444444332233444444333033303330333303330303330 , + 0x3330333033330330333303303333033333033033333303330333033330333030 , + 0x3330333033303333033033330330333303344444433223344444433330003333 , + 0x0333303333033330000033300000333300003333000033333330033333333000 , + 0x3333033330333303333000003330000033330000333300003334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333344444444444444444444444444444444444444444444444444 , + 0x3333333344444444444444444444444444444444444444444444444444333333 , + 0x3334444443322334444443333333334444444444444444444444444444444444 , + 0x4444444444444444433333344444444444444444444444444444444444444444 , + 0x4444444444333333333444444332233444444333333333444444444444444444 , + 0x4444444444444444444444444444444444333344444444444444444444444444 , + 0x4444444444444444444444444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444444444444444444 , + 0x4444444444444444444444444444444444333344444444444444444444444444 , + 0x4444444444444444444444444433333333344444433223344444433333333344 , + 0x4444444444444444444444444444444444444444444444444333333444444444 , + 0x4444444444444444444444444444444444444444443333333334444443322334 , + 0x4444433333333344444444444444444444444444444444444444444444444444 , + 0x3333333344444444444444444444444444444444444444444444444444333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223334444444444444444 , + 0x4444444444444444444444444444444444444444444444444433334444444444 , + 0x4444444444444444444444444444444444444444444444444444444443322333 , + 0x3444444444444444444444444444444444444444444444444444444444444444 , + 0x4333333444444444444444444444444444444444444444444444444444444444 , + 0x4444444433322333334444444444444444444444444444444444444444444444 , + 0x4444444444444444333333334444444444444444444444444444444444444444 , + 0x4444444444444444444444433332233333344444444444444444444444444444 , + 0x4444444444444444444444444444444333333333344444444444444444444444 , + 0x4444444444444444444444444444444444444433333223333333444444444444 , + 0x4444444444444444444444444444444444444444444444333333333333444444 , + 0x4444444444444444444444444444444444444444444444444444433333322333 , + 0x3333344444444444444444444444444444444444444444444444444444444333 , + 0x3333333333344444444444444444444444444444444444444444444444444444 , + 0x4444333333322333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333332233333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222220400 , + 0x00002701ffff030000001e00040000002c010000040000002d0100000c000000 , + 0x40092100f0000000000000001b00f300f6020100040000002d01010004000000 , + 0x2d010000040000002701ffff030000001e00040000002c010000040000000201 , + 0x0100040000002e01180004000000f0010a00050000000902000000021c000000 , + 0xfb02f3ff0000000000009001000000010740001254696d6573204e657720526f , + 0x6d616e0000000000000000000000000000000000040000002d010a001f000000 , + 0x320a09032700100000004a4f52474520482e2043554144524f5308000c000c00 , + 0x0c000a0006000c00060007000b000c000d000c000c000c000a00040000002d01 , + 0x0a0009000000320a0903ce000100000020d40a00040000002d01010004000000 , + 0x2d010400040000002701ffff030000001e00040000002c010000040000000201 , + 0x0100040000002e01180004000000f0010700050000000902000000021c000000 , + 0xfb02f3ff000000000000bc020000000107400022417269616c00000000000000 , + 0x0000000000000000000000000000000000000000040000002d0107000f000000 , + 0x320a3a03270205000000446174653a0009000800040008000400040000002d01 , + 0x070009000000320a3a0348020100000020d40700040000002d01010004000000 , + 0x2d010400040000002701ffff030000001e00040000002c01000008000000fa02 , + 0x00000100000000000000040000002d010c00040000002d010d000c0000002403 , + 0x04000100f6020100d703d502d703d502f602040000002d01010004000000f001 , + 0x0c00040000002d010100040000002d010000040000002701ffff030000001e00 , + 0x040000002c0100000400000002010100040000002e01180004000000f0010500 , + 0x050000000902000000021c000000fb02f9ff000000000000bc02000000010740 , + 0x0022417269616c00000000000000000000000000000000000000000000000000 , + 0x0000040000002d01050079000000320ad303d2004c000000464f522050524f50 , + 0x4552204352454449542c20504c454153452044455441434820414e4420524554 , + 0x55524e20424f54544f4d20504f5254494f4e205749544820594f555220504159 , + 0x4d454e5404000500050002000500050005000400050005000200050004000500 , + 0x0500020003000200020005000300050005000400050002000400050003000500 , + 0x0500050002000500050005000200040005000300050005000500020005000500 , + 0x0400030006000500020005000500050003000200050005000200070002000300 , + 0x0500020005000500050005000200050004000500050005000500030004000000 , + 0x2d01050009000000320ad3030c020100000020d40400040000002d0101000400 , + 0x00002d010400040000002701ffff030000001e00040000002c01000004000000 , + 0x02010100040000002e01180004000000f0010300050000000902000000021c00 , + 0x0000fb02f4ff00000000000090010000000107400022417269616c0000000000 , + 0x00000000000000000000000000000000000000000000040000002d0103002d00 , + 0x0000320a8a0319021900000024205f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f5f , + 0x5f5f5f5f20200700030007000700070006000700070006000700070006000700 , + 0x070006000700070007000600070007000600070007000200040000002d010400 , + 0x04000000f00106001c000000fb02f4ff000000000000bc020000000107400022 , + 0x417269616c000000000000000000000000000000000000000000000000000000 , + 0x040000002d01060016000000320a980340020a000000414d4f554e5420445545 , + 0x08000a000a000800090007000400080009000700040000002d01030009000000 , + 0x320a980390020100000020d40700040000002d010100040000002d0104000400 , + 0x00002701ffff030000001e00040000002c0100008d080000410b2000cc003b00 , + 0x9000000000003e0098001800310028000000900000003b000000010004000000 , + 0x0000000000000000000000000000000000000000000000000000ffffff00fe00 , + 0x4000fefefe00fe00000000000000000000000000000000000000000000000000 , + 0x0000000000000000000000000000000000000000000022222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333322333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333332233333333344444444444444444444444444 , + 0x4444444444444444444444444444433333333333333444444444444444444444 , + 0x4444444444444444444444444444444444433333333223333333344444444444 , + 0x4444444444444444444444444444444444444444444444333333333333444444 , + 0x4444444444444444444444444444444444444444444444444444333333322333 , + 0x3333444444444444444444444444444444444444444444444444444444444443 , + 0x3333333334444444444444444444444444444444444444444444444444444444 , + 0x4444433333322333333444444444444444444444444444444444444444444444 , + 0x4444444444444444333333334444444444444444444444444444444444444444 , + 0x4444444444444444444444333332233333444444444444444444444444444444 , + 0x4444444444444444444444444444444443333334444444444444444444444444 , + 0x4444444444444444444444444444444444444443333223333444444444444444 , + 0x4444444444444444444444444444444444444444444444444433334444444444 , + 0x4444444444444444444444444444444444444444444444444444444433322333 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333300033333000033033333030 , + 0x0000333033330333000033330000333333000303333330003333300003303333 , + 0x3030000033303333033300003333000033344444433223344444433303330333 , + 0x0033303303330330333033303333033033330330333303333033303333330333 , + 0x0333003330330333033033303330333303303333033033330334444443322334 , + 0x4444433033333033033330330000033033330330333303033333303033330333 , + 0x3033000333303333303303333033000003303333033033330303333330303333 , + 0x0334444443322334444443303333333303333033033303303333033000000303 , + 0x3333303333000333300003033330333333330333303303330330333303300000 , + 0x0303333330333300033444444332233444444330333333330333303330303330 , + 0x3333033033330303333330330033333333300333333033333333033330333030 , + 0x3330333303303333030333333033003333344444433223344444433033333333 , + 0x0333303330303330333303303333030333333030333333333303303333303333 , + 0x3333033330333030333033330330333303033333303033333334444443322334 , + 0x4444433303330333033330333030333033303330333303303333033033330333 , + 0x3303303333330333033303333033303033303330333033330330333303303333 , + 0x0334444443322334444443333000333303333033330333300000333000003333 , + 0x0000333300003333333003333333300033330333303333033330000033300000 , + 0x3333000033330000333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333444444444444444444 , + 0x4444444444444444444444444444444433333333444444444444444444444444 , + 0x4444444444444444444444444433333333344444433223344444433333333344 , + 0x4444444444444444444444444444444444444444444444444333333444444444 , + 0x4444444444444444444444444444444444444444443333333334444443322334 , + 0x4444433333333344444444444444444444444444444444444444444444444444 , + 0x4433334444444444444444444444444444444444444444444444444444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344443333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333334444333333 , + 0x3334444443322334444443333333334444333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333334444333333333444444332233444444333333333444433333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333444433333333344444433223344444433333333344 , + 0x4433333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333344443333333334444443322334 , + 0x4444433333333344444444444444444444444444444444444444444444444444 , + 0x4433334444444444444444444444444444444444444444444444444444333333 , + 0x3334444443322334444443333333334444444444444444444444444444444444 , + 0x4444444444444444433333344444444444444444444444444444444444444444 , + 0x4444444444333333333444444332233444444333333333444444444444444444 , + 0x4444444444444444444444444444444433333333444444444444444444444444 , + 0x4444444444444444444444444433333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322334444443333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333444444332233444444333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333344444433223344444433333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333334444443322334 , + 0x4444433333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3334444443322333444444444444444444444444444444444444444444444444 , + 0x4444444444444444443333444444444444444444444444444444444444444444 , + 0x4444444444444444444444444332233334444444444444444444444444444444 , + 0x4444444444444444444444444444444443333334444444444444444444444444 , + 0x4444444444444444444444444444444444444444333223333344444444444444 , + 0x4444444444444444444444444444444444444444444444443333333344444444 , + 0x4444444444444444444444444444444444444444444444444444444333322333 , + 0x3334444444444444444444444444444444444444444444444444444444444443 , + 0x3333333334444444444444444444444444444444444444444444444444444444 , + 0x4444443333322333333344444444444444444444444444444444444444444444 , + 0x4444444444444433333333333344444444444444444444444444444444444444 , + 0x4444444444444444444443333332233333333444444444444444444444444444 , + 0x4444444444444444444444444444433333333333333444444444444444444444 , + 0x4444444444444444444444444444444444443333333223333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333322333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333333333333333333333333333333333333333333333333333333333 , + 0x3333333333322222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222222222222222222222222222222222222222 , + 0x2222222222222222222222222222040000002701ffff040000002c0100000300 , + 0x00000000 + End + GUID = + End + Begin Label + OverlapFlags =211 + TextAlign =2 + Left =6750 + Top =11370 + Width =4005 + Height =405 + FontSize =14 + Name ="Label0" + Caption ="R E N E W A L N O T I C E" + FontName ="Albertus Medium" + GUID = + End + Begin Label + OverlapFlags =211 + Left =2040 + Top =3586 + Width =180 + Height =239 + Name ="Label3" + Caption ="2" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =1 + BackStyle =0 + Left =8895 + Top =780 + Width =1860 + Height =270 + FontSize =10 + Name ="Text4" + ControlSource ="=Format(Date(),\"Medium Date\")" + GUID = + End + Begin Subform + CanGrow = NotDefault + OverlapFlags =211 + OldBorderStyle =0 + Left =315 + Top =1575 + Width =6369 + Height =1664 + TabIndex =1 + Name ="Labels DATGRAL" + SourceObject ="Report.Labels DATGRAL" + LinkChildFields ="NUM id" + LinkMasterFields ="NUM id" + EventProcPrefix ="Labels_DATGRAL" + GUID = + End + Begin TextBox + DecimalPlaces =0 + OverlapFlags =211 + TextAlign =2 + Left =135 + Top =3585 + Width =1080 + ColumnWidth =1305 + FontSize =10 + TabIndex =2 + Name ="NUM id" + ControlSource ="NUMER ID" + Format ="General Number" + StatusBarText ="NUMERO DEL CLIENTE" + EventProcPrefix ="NUM_id" + GUID = + End + Begin TextBox + OverlapFlags =211 + Left =3255 + Top =3585 + Width =1845 + FontSize =10 + TabIndex =3 + Name ="COMPAÑIA" + ControlSource ="COMP" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =1 + Left =105 + Top =4035 + Width =2790 + ColumnWidth =720 + FontSize =10 + TabIndex =4 + Name ="t" + ControlSource ="=(\"POLICY #: RC \" & [NO POLIZA])" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + BackStyle =0 + Left =5595 + Top =3585 + Height =270 + FontSize =10 + TabIndex =5 + Name ="Text14" + ControlSource ="HASTA" + Format ="mmm/dd/yy" + InputMask ="99/99/00;0;@" + GUID = + End + Begin Label + OverlapFlags =211 + TextAlign =3 + Left =60 + Top =5205 + Width =1800 + Height =270 + Name ="Label17" + Caption ="INSURED AUTO 1:" + GUID = + End + Begin Label + FontUnderline = NotDefault + OverlapFlags =211 + TextAlign =2 + Left =2130 + Top =4905 + Width =705 + Height =270 + Name ="Label18" + Caption ="YEAR" + GUID = + End + Begin TextBox + DecimalPlaces =2 + OverlapFlags =211 + BackStyle =0 + Left =8295 + Top =3585 + Width =1245 + FontSize =10 + TabIndex =6 + Name ="RENOVACIONS" + ControlSource ="=[RENOVACION]+71.46" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin TextBox + DecimalPlaces =2 + OverlapFlags =211 + Left =9645 + Top =3585 + Width =1155 + FontSize =10 + TabIndex =7 + Name ="Text33" + ControlSource ="=[RENOVACION]+71.46" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin Label + FontUnderline = NotDefault + OverlapFlags =211 + TextAlign =2 + Left =3870 + Top =4890 + Width =780 + Height =285 + Name ="Label47" + Caption ="TYPE" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + Left =1890 + Top =5235 + Width =1080 + FontSize =9 + TabIndex =8 + Name ="Text71" + ControlSource ="MODELO 1" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + Left =2985 + Top =5235 + Width =2490 + FontSize =10 + TabIndex =9 + Name ="Text74" + ControlSource ="CARROCERIA 1" + GUID = + End + Begin Label + FontUnderline = NotDefault + OverlapFlags =211 + Left =6390 + Top =4905 + Width =705 + Height =270 + Name ="Label76" + Caption ="MAKE" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + Left =5505 + Top =5235 + Width =2415 + FontSize =10 + TabIndex =10 + Name ="Text77" + ControlSource ="MARCA 1" + GUID = + End + Begin Label + FontUnderline = NotDefault + OverlapFlags =211 + Left =9900 + Top =4905 + Width =405 + Height =270 + Name ="Label79" + Caption ="VIN" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + Left =7965 + Top =5235 + Width =2820 + FontSize =10 + TabIndex =11 + Name ="Text80" + ControlSource ="MOTOR 1" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + Left =1890 + Top =5505 + Width =1080 + FontSize =9 + TabIndex =12 + Name ="Text103" + ControlSource ="=IIf([MODELO 2]>\" \",[MODELO 2],\"EXCLUDED\")" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + Left =2985 + Top =5505 + Width =2490 + FontSize =10 + TabIndex =13 + Name ="Text104" + ControlSource ="CARROCERIA 2" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + Left =5505 + Top =5505 + Width =2415 + FontSize =10 + TabIndex =14 + Name ="Text105" + ControlSource ="MARCA 2" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + Left =7965 + Top =5505 + Width =2820 + FontSize =10 + TabIndex =15 + Name ="Text106" + ControlSource ="MOTOR 2" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + Left =1890 + Top =5775 + Width =1080 + FontSize =9 + TabIndex =16 + Name ="Text110" + ControlSource ="=IIf([MODELO 3]>\" \",[MODELO 3],\"EXCLUDED\")" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + Left =2985 + Top =5775 + Width =2490 + FontSize =10 + TabIndex =17 + Name ="Text111" + ControlSource ="CARROCERIA 3" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + Left =5505 + Top =5775 + Width =2415 + FontSize =10 + TabIndex =18 + Name ="Text112" + ControlSource ="MARCA 3" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + Left =7965 + Top =5775 + Width =2820 + FontSize =10 + TabIndex =19 + Name ="Text113" + ControlSource ="MOTOR 3" + GUID = + End + Begin Label + OverlapFlags =211 + TextAlign =3 + Left =60 + Top =5475 + Width =1800 + Height =270 + Name ="Label115" + Caption ="INSURED AUTO 2:" + GUID = + End + Begin Label + OverlapFlags =211 + TextAlign =3 + Left =60 + Top =5745 + Width =1800 + Height =270 + Name ="Label116" + Caption ="INSURED AUTO 3:" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextFontCharSet =2 + TextFontFamily =2 + Left =9960 + Top =1560 + Width =315 + FontSize =12 + TabIndex =20 + Name ="Text49" + ControlSource ="=IIf([num util] Is Null,\"*\")" + FontName ="Wingdings" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextFontCharSet =2 + TextFontFamily =2 + Left =10410 + Top =1560 + Width =390 + FontSize =12 + TabIndex =21 + Name ="Expr10" + ControlSource ="Expr10" + FontName ="Vacation MT" + GUID = + End + Begin Label + OverlapFlags =211 + TextAlign =2 + Left =7800 + Top =450 + Width =1905 + Height =315 + FontSize =11 + Name ="Label127" + Caption ="(For Autos liability)" + GUID = + End + Begin TextBox + DecimalPlaces =2 + OverlapFlags =211 + Left =9645 + Top =3945 + Width =1155 + FontSize =10 + FontWeight =700 + TabIndex =22 + Name ="Texto127" + ControlSource ="=[RENOVACION]+71.46" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin TextBox + DecimalPlaces =2 + OverlapFlags =211 + Left =8760 + Top =2415 + Width =1155 + FontSize =10 + FontWeight =700 + TabIndex =23 + Name ="Texto128" + ControlSource ="=[RENOVACION]+71.46" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin Label + OverlapFlags =211 + Left =2040 + Top =14235 + Width =180 + Height =239 + Name ="Etiqueta129" + Caption ="2" + GUID = + End + Begin TextBox + DecimalPlaces =0 + OverlapFlags =211 + TextAlign =2 + Left =135 + Top =14235 + Width =1080 + FontSize =10 + TabIndex =24 + Name ="Texto130" + ControlSource ="NUMER ID" + Format ="General Number" + StatusBarText ="NUMERO DEL CLIENTE" + GUID = + End + Begin TextBox + OverlapFlags =211 + Left =3255 + Top =14235 + Width =1845 + FontSize =10 + TabIndex =25 + Name ="Texto131" + ControlSource ="COMP" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =2 + BackStyle =0 + Left =5595 + Top =14235 + Height =270 + FontSize =10 + TabIndex =26 + Name ="Texto132" + ControlSource ="HASTA" + Format ="mmm/dd/yy" + InputMask ="99/99/00;0;@" + GUID = + End + Begin TextBox + DecimalPlaces =2 + OverlapFlags =211 + BackStyle =0 + Left =8280 + Top =14235 + Width =1260 + FontSize =10 + TabIndex =27 + Name ="Texto133" + ControlSource ="=[RENOVACION]+71.46" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin TextBox + DecimalPlaces =2 + OverlapFlags =211 + Left =9645 + Top =14235 + Width =1155 + FontSize =10 + TabIndex =28 + Name ="Texto134" + ControlSource ="=[RENOVACION]+71.46" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin TextBox + DecimalPlaces =2 + OverlapFlags =211 + Left =8760 + Top =13305 + Width =1155 + FontSize =10 + FontWeight =700 + TabIndex =29 + Name ="Texto135" + ControlSource ="=[RENOVACION]+71.46" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin TextBox + OverlapFlags =211 + TextAlign =1 + BackStyle =0 + Left =8895 + Top =12195 + Width =1860 + Height =270 + FontSize =10 + TabIndex =30 + Name ="Texto136" + ControlSource ="=Format(Date(),\"Medium Date\")" + GUID = + End + Begin Label + OverlapFlags =211 + TextAlign =2 + Left =6750 + Top =75 + Width =4005 + Height =405 + FontSize =14 + Name ="Etiqueta138" + Caption ="R E N E W A L N O T I C E" + FontName ="Albertus Medium" + GUID = + End + Begin Label + OverlapFlags =211 + TextAlign =2 + Left =7800 + Top =11775 + Width =1905 + Height =315 + FontSize =11 + Name ="Etiqueta139" + Caption ="(For Autos liability)" + GUID = + End + Begin Subform + CanGrow = NotDefault + OverlapFlags =211 + OldBorderStyle =0 + Left =315 + Top =12840 + Width =4929 + Height =1019 + TabIndex =31 + Name ="Secundario140" + SourceObject ="Report.Labels DATGRAL" + LinkChildFields ="NUM id" + LinkMasterFields ="NUM id" + GUID = + End + Begin Label + BackStyle =1 + OverlapFlags =211 + TextFontFamily =2 + Left =4620 + Top =1080 + Width =2325 + Height =225 + FontSize =8 + Name ="Etiqueta52" + Caption ="susana@jorgecuadros.com" + GUID = + End + Begin Label + BackStyle =1 + OverlapFlags =211 + TextFontFamily =2 + Left =4620 + Top =12495 + Width =2325 + Height =225 + FontSize =8 + Name ="Etiqueta141" + Caption ="susana@jorgecuadros.com" + GUID = + End + Begin Label + OverlapFlags =211 + Left =540 + Top =2940 + Width =8130 + Height =255 + Name ="Etiqueta144" + Caption ="PLEASE PROVIDE YOUR CURRENT E-MAIL:______________________________________" + GUID = + End + Begin Label + OverlapFlags =211 + Left =60 + Top =4380 + Width =10740 + Height =480 + Name ="Etiqueta145" + Caption ="The current policy referred above will be due at the date shown. Also, we’re des" + "cribing the insured vehicle which we suggest to verify the specific details:" + GUID = + End + Begin Label + OverlapFlags =211 + Left =60 + Top =6075 + Width =9495 + Height =255 + Name ="Etiqueta146" + Caption ="LIABILITY COVERAGE ONLY IN MEXICO (365 days) " + " Annual Premium: " + GUID = + End + Begin TextBox + DecimalPlaces =2 + OverlapFlags =211 + Left =9660 + Top =6075 + Width =1155 + FontSize =10 + TabIndex =32 + Name ="Texto147" + ControlSource ="RENOVACION" + Format ="$ #,##0.00;-$ #,##0.00" + GUID = + End + Begin Label + OverlapFlags =211 + Left =60 + Top =6420 + Width =10740 + Height =735 + FontSize =8 + Name ="Etiqueta148" + Caption ="PD: $25,000 PL: $40/80,000 MEDICAL: $ 2/10,000 LEGAL INCLUDED\015\012IMPORTAN" + "T NOTICE: You have the option to renew as shown above at your own risk, HOWEVER," + " there’re some important changes in our “Labor Laws” that requires increasing su" + "m of liability to be properly covered...\015\012" + GUID = + End + Begin Label + OverlapFlags =211 + Left =60 + Top =7320 + Width =10740 + Height =540 + FontSize =8 + Name ="Etiqueta149" + Caption ="We now highly recommend to consider buying a higher amount to avoid being caught" + " under insured, should you be involved in a sever bodily injury accident or poss" + "ibly a death occurrence." + GUID = + End + Begin Label + OverlapFlags =211 + TextFontFamily =2 + Left =60 + Top =7800 + Width =9315 + Height =225 + FontSize =8 + Name ="Etiqueta69" + Caption ="I recommend buying a minimum CSL of $300,000 plus Medical $2/10,000 and Legal as" + "sistance..." + GUID = + End + Begin TextBox + FELineBreak = NotDefault + DecimalPlaces =2 + OverlapFlags =211 + IMESentenceMode =3 + Left =9480 + Top =8160 + Width =1380 + Height =270 + FontSize =10 + TabIndex =33 + Name ="Etiqueta61" + ControlSource ="=[RENOVACION]+71.46" + Format ="$#,##0.00;($#,##0.00)" + GUID = + End + Begin Label + OverlapFlags =211 + Left =60 + Top =8760 + Width =5370 + Height =255 + FontSize =9 + Name ="Etiqueta63" + Caption ="WE STILL SUGGEST READING THIS IMPORTANT REMINDER:" + GUID = + End + Begin Label + OverlapFlags =211 + Left =60 + Top =9060 + Width =10680 + Height =960 + FontSize =9 + Name ="Etiqueta64" + Caption ="NEVER NEVER: Leave the scene of the accident, Make private agreements, Drive wit" + "hout a license, Drive under the influence of drugs or alcohol, Avoid calling our" + " Adjuster regardless of the size of the accident, if you cannot find him, you ca" + "n always call our office, using the numbers provided in your pocket ID. You will" + " be detained when causing a Bodily Injury accident, and an Attorney will be prov" + "ide to post a Bail Bond to bailed you out ASAP. " + GUID = + End + Begin UnboundObjectFrame + SizeMode =1 + OldBorderStyle =0 + OverlapFlags =81 + Top =14880 + Width =10801 + Height =13801 + TabIndex =34 + Name ="OLEIndependiente152" + OleData = + Class ="Word.Document.8" + OLEClass ="Microsoft Office Word 97 - 2003" + GUID = + End + Begin Label + OverlapFlags =211 + TextAlign =3 + TextFontFamily =2 + Top =8205 + Width =9315 + Height =225 + FontSize =8 + Name ="Etiqueta153" + Caption ="New renewed annual Premium :" + GUID = + End + End + End + End +End \ No newline at end of file diff --git a/packages/database/prisma/schema.prisma b/packages/database/prisma/schema.prisma index f891f24..1cddc46 100644 --- a/packages/database/prisma/schema.prisma +++ b/packages/database/prisma/schema.prisma @@ -181,12 +181,42 @@ model Policy { claims Claim[] documents PolicyDocument[] properties Property[] + renewalNotices RenewalNotice[] @@unique([legacySourceDb, legacySourceTable, legacyId]) @@index([policyNumber]) @@map("policies") } +enum RenewalNoticeChannel { + MAIL + EMAIL +} + +/// Replaces the legacy `CONTROL RENEW[2/3] X MES` reports — a +/// per-batch printed checklist of who'd been sent which reminder. One row +/// per notice generation actually sent for a policy, so "who got a 1st/2nd/ +/// 3rd notice and when" is a query instead of a paper trail. See +/// docs/RENEWAL_NOTICES.md for the legacy report chain this replaces. +model RenewalNotice { + id String @id @default(uuid()) + policyId String + policy Policy @relation(fields: [policyId], references: [id]) + // 1 = first notice (bare RENEW), 2 = RENEW2, 3 = RENEW3 in the legacy naming. + generation Int + channel RenewalNoticeChannel @default(MAIL) + sentAt DateTime? + sentById String? + notes String? @db.Text + createdAt DateTime @default(now()) + + // One row per generation per policy — matches the legacy's 1st/2nd/3rd + // notice cadence; re-running the same generation for a policy updates it + // rather than duplicating a log entry. + @@unique([policyId, generation]) + @@map("renewal_notices") +} + /// Unpivots the 4 hardcoded payment-installment columns found on every /// legacy policy table (1ER PAGO/FECHA PAGO/NO CHEQUE, ...2, ...3, ...4). model PolicyPaymentInstallment {