@classytic/ca-tax 0.0.17 → 0.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/forms.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  //#region src/t2/at1/forms/at4970.ts
2
2
  /** `SSSFFFOOO` — placeholder schedule code; see the module note above. */
3
- const id$20 = (field, occurrence = 1) => `497${field}${String(occurrence).padStart(3, "0")}`;
3
+ const id$15 = (field, occurrence = 1) => `497${field}${String(occurrence).padStart(3, "0")}`;
4
4
  const AT4970 = {
5
5
  id: "AT4970",
6
6
  program: "AT1",
@@ -83,7 +83,7 @@ const AT4970 = {
83
83
  }
84
84
  ].map(({ field, ...rest }) => ({
85
85
  ...rest,
86
- line: id$20(field)
86
+ line: id$15(field)
87
87
  })).sort((a, b) => a.line.localeCompare(b.line)),
88
88
  provenance: {
89
89
  document: "research/sources/tra-guides/tra-guide-claiming-the-innovation-employment-grant.pdf",
@@ -547,8 +547,8 @@ const AT1_JACKET_CAPTIONS = [
547
547
  //#endregion
548
548
  //#region src/t2/at1/forms/jacket.ts
549
549
  /** `SSSFFFOOO` — schedule, field, occurrence. The jacket is schedule 000. */
550
- const id$19 = (field, occurrence = 1) => `000${field}${String(occurrence).padStart(3, "0")}`;
551
- const SECTIONS$41 = [
550
+ const id$14 = (field, occurrence = 1) => `000${field}${String(occurrence).padStart(3, "0")}`;
551
+ const SECTIONS$36 = [
552
552
  {
553
553
  id: "identification",
554
554
  title: "Identification",
@@ -633,20 +633,19 @@ const COMPUTED = /* @__PURE__ */ new Set([
633
633
  "090"
634
634
  ]);
635
635
  const NOTES$2 = {
636
+ "064": "Royalty tax deduction (was AT1 Schedule 5). ALWAYS NIL — the Alberta Royalty Tax Credit programme was eliminated at the end of 2006. Retained because the specification still marks it mandatory; not on the printed form.",
637
+ "071": "Alberta manufacturing and processing profits deduction (was AT1 Schedule 11). ALWAYS NIL — pre-2001-04-01 only. Retained because the specification still marks it mandatory; not on the printed form.",
638
+ "074": "Alberta political contributions tax credit (was AT1 Schedule 8). ALWAYS NIL — corporate political contributions have been prohibited in Alberta since 2015-06-15 (Bill 1), so the contribution the credit rewards cannot lawfully be made. Retained because the specification still marks it mandatory; not on the printed form.",
639
+ "081": "Alberta SR&ED tax CREDIT (was AT1 Schedule 9) — distinct from Schedule 16’s expenditure-pool deduction, which is live. ALWAYS NIL: eliminated for expenditures after 2019-12-31 and replaced by the Innovation Employment Grant at line 129. Retained because the specification still marks it mandatory; not on the printed form.",
636
640
  "062": "Alberta taxable income. Where it differs from federal, Schedule 12 must reconcile the difference item by item.",
637
641
  "065": "The Reg 402 allocation factor from Schedule 2, to six decimal places. A single-jurisdiction corporation files 1.0, not a blank.",
638
642
  "068": "A = (062 − 064) × 065 × rate. The base every deduction below works against.",
639
643
  "080": "Tax payable before credits — the 090 balance starts here.",
640
644
  "087": "Other credits, for a qualifying environmental trust. Mandatory, and part of the 090 formula — it was missing from the payload table while still being subtracted from the balance.",
641
- "090": "080 − (081 + 082 + 085 + 086 + 087). SIGNED: negative is an overpayment, and 092 then chooses between refunding it and applying it to next year.",
642
- "129": "The Innovation Employment Grant is mandatory to report but is deliberately NOT in the 090 formula netting it would understate what is owing."
645
+ "090": "080 − (129 + 082 + 085 + 086 + 115 + 087), the printed form’s own 088 subtotal. SIGNED: negative is an overpayment, and 092 then chooses between refunding it and applying it to next year. The Net File specification still states the pre-2020 formula — see AT1_BALANCE_CREDIT_LINES for why the form governs.",
646
+ "129": "The Innovation Employment Grant. Netted at 090 via the printed form’s 088 subtotal, which the Net File specification’s own line-090 rule omits see AT1_BALANCE_CREDIT_LINES."
643
647
  };
644
648
  const CARRIED_IN$1 = {
645
- "064": {
646
- form: "AT1SCH5",
647
- line: "",
648
- note: "Royalty tax deduction"
649
- },
650
649
  "065": {
651
650
  form: "AT1SCH2",
652
651
  line: "",
@@ -667,11 +666,6 @@ const CARRIED_IN$1 = {
667
666
  line: "003604001",
668
667
  note: "Maximum Allowable Deduction (MAD) — printed on Schedule 3 itself: \"Enter this amount on AT1 page 2, line 076.\""
669
668
  },
670
- "081": {
671
- form: "AT1SCH9",
672
- line: "",
673
- note: "Alberta SR&ED tax credit"
674
- },
675
669
  "129": {
676
670
  form: "AT1SCH29",
677
671
  line: "029134001",
@@ -685,7 +679,7 @@ const AT1_JACKET = {
685
679
  title: "Alberta Corporate Income Tax Return — AT1",
686
680
  scheme: "tra-line-item-id",
687
681
  taxYears: { from: 2025 },
688
- sections: SECTIONS$41,
682
+ sections: SECTIONS$36,
689
683
  fields: [{
690
684
  line: "000001001",
691
685
  caption: "Is the corporation associated with one or more Canadian-controlled private corporations?",
@@ -697,7 +691,7 @@ const AT1_JACKET = {
697
691
  const carried = CARRIED_IN$1[c.line];
698
692
  const note = NOTES$2[c.line];
699
693
  return {
700
- line: id$19(c.line),
694
+ line: id$14(c.line),
701
695
  caption: c.caption,
702
696
  kind: kindOf(c),
703
697
  role: COMPUTED.has(c.line) ? "computed" : carried ? "carried-in" : "input",
@@ -723,24 +717,64 @@ const AT1_JACKET = {
723
717
  ]
724
718
  };
725
719
  /** 000080001 — Alberta tax payable, before credits. */
726
- const AT1_TAX_PAYABLE_LINE = id$19("080");
720
+ const AT1_TAX_PAYABLE_LINE = id$14("080");
727
721
  /** 000090001 — the balance, signed. Negative is an overpayment. */
728
- const AT1_BALANCE_LINE = id$19("090");
722
+ const AT1_BALANCE_LINE = id$14("090");
729
723
  /**
730
- * The five credits the specification nets against 080 to reach 090. The
731
- * Innovation Employment Grant (129) is NOT among them.
724
+ * The credits netted against 080 to reach 090, per the PRINTED AT1.
725
+ *
726
+ * ── The specification and the form disagree, and the form is right ─────────
727
+ *
728
+ * AT1 page 2 (TRA11722 Rev. 2025-07) prints a subtotal at 088:
729
+ *
730
+ * 088 = 129 + 082 + 085 + 086 + 115 + 087
731
+ * 090 = 080 − 088
732
+ *
733
+ * The Net File specification (AT1-Chapter3 §3.2.3.1, line 090) instead says
734
+ * `000080 - (000081 + 000082 + 00085 + 000086 + 000087)` — which includes 081,
735
+ * the Alberta SR&ED tax credit, and omits BOTH 129 (Innovation Employment
736
+ * Grant) and 115 (Film and Television Tax Credit).
737
+ *
738
+ * Four things say the specification's rule is the stale half:
739
+ *
740
+ * - 081's credit was eliminated for expenditures after 2019-12-31 and
741
+ * replaced by the Innovation Employment Grant. It is always nil now.
742
+ * - The specification itself makes 115 and 129 MANDATORY fields, then omits
743
+ * both from its own balance formula. A rule that ignores two credits the
744
+ * same document requires is a documentation lag, not a rule.
745
+ * - Its rule text carries a typo (`00085` for `000085`).
746
+ * - Its worked RSI example is a 2009 tax year, carrying lines 083 and 084
747
+ * that are not on the current form at all.
748
+ *
749
+ * Following the specification overstated the balance by the whole Innovation
750
+ * Employment Grant — the credit AT1 Schedule 29 exists to compute — for every
751
+ * corporation that claimed one. The review layer raises
752
+ * `AT1_BALANCE_FORMULA_CONFLICT` on any return where the two formulas differ,
753
+ * so a preparer sees the disagreement before transmitting rather than
754
+ * discovering it on assessment.
755
+ *
756
+ * 088 itself is NOT in this list and is not filed: it exists only on the
757
+ * printed page. The RSI carries the parts and 090.
732
758
  */
733
759
  const AT1_BALANCE_CREDIT_LINES = Object.freeze([
734
- id$19("081"),
735
- id$19("082"),
736
- id$19("085"),
737
- id$19("086"),
738
- id$19("087")
760
+ id$14("129"),
761
+ id$14("082"),
762
+ id$14("085"),
763
+ id$14("086"),
764
+ id$14("115"),
765
+ id$14("087")
766
+ ]);
767
+ Object.freeze([
768
+ id$14("081"),
769
+ id$14("082"),
770
+ id$14("085"),
771
+ id$14("086"),
772
+ id$14("087")
739
773
  ]);
740
774
  //#endregion
741
775
  //#region src/t2/at1/forms/schedule1.ts
742
776
  /** `SSSFFFOOO` — schedule, field, occurrence. */
743
- const id$18 = (field, occurrence = 1) => `001${field}${String(occurrence).padStart(3, "0")}`;
777
+ const id$13 = (field, occurrence = 1) => `001${field}${String(occurrence).padStart(3, "0")}`;
744
778
  const AT1_SCHEDULE_1 = {
745
779
  id: "AT1SCH1",
746
780
  program: "AT1",
@@ -846,7 +880,7 @@ const AT1_SCHEDULE_1 = {
846
880
  }
847
881
  ].map(({ field, ...rest }) => ({
848
882
  ...rest,
849
- line: id$18(field)
883
+ line: id$13(field)
850
884
  })),
851
885
  provenance: {
852
886
  document: "research/sources/tra-forms/pdf/AT1SCH01-small-business-deduction-TRA11723.pdf",
@@ -863,7 +897,7 @@ const AT1_SCHEDULE_1 = {
863
897
  //#endregion
864
898
  //#region src/t2/at1/forms/schedule2.ts
865
899
  /** `SSSFFFOOO` — schedule, field, occurrence. */
866
- const id$17 = (field, occurrence = 1) => `002${field}${String(occurrence).padStart(3, "0")}`;
900
+ const id$12 = (field, occurrence = 1) => `002${field}${String(occurrence).padStart(3, "0")}`;
867
901
  const AT1_SCHEDULE_2 = {
868
902
  id: "AT1SCH2",
869
903
  program: "AT1",
@@ -931,7 +965,7 @@ const AT1_SCHEDULE_2 = {
931
965
  }
932
966
  ].map(({ field, ...rest }) => ({
933
967
  ...rest,
934
- line: id$17(field)
968
+ line: id$12(field)
935
969
  })),
936
970
  provenance: {
937
971
  document: "research/sources/tra-forms/pdf/AT1SCH02-income-allocation-factor-TRA11724.pdf",
@@ -947,7 +981,7 @@ const AT1_SCHEDULE_2 = {
947
981
  //#endregion
948
982
  //#region src/t2/at1/forms/schedule3.ts
949
983
  /** `SSSFFFOOO` — schedule, field, occurrence. */
950
- const id$16 = (field, occurrence = 1) => `003${field}${String(occurrence).padStart(3, "0")}`;
984
+ const id$11 = (field, occurrence = 1) => `003${field}${String(occurrence).padStart(3, "0")}`;
951
985
  const AT1_SCHEDULE_3 = {
952
986
  id: "AT1SCH03",
953
987
  program: "AT1",
@@ -1146,7 +1180,7 @@ const AT1_SCHEDULE_3 = {
1146
1180
  }
1147
1181
  ].map(({ field, ...rest }) => ({
1148
1182
  ...rest,
1149
- line: id$16(field)
1183
+ line: id$11(field)
1150
1184
  })).sort((a, b) => a.line.localeCompare(b.line)),
1151
1185
  provenance: {
1152
1186
  document: "research/sources/tra-forms/pdf/AT1SCH03-other-tax-deductions-credits-TRA11725.pdf",
@@ -1158,7 +1192,7 @@ const AT1_SCHEDULE_3 = {
1158
1192
  //#endregion
1159
1193
  //#region src/t2/at1/forms/schedule4.ts
1160
1194
  /** `SSSFFFOOO` — schedule, field, occurrence. */
1161
- const id$15 = (field, occurrence = 1) => `004${field}${String(occurrence).padStart(3, "0")}`;
1195
+ const id$10 = (field, occurrence = 1) => `004${field}${String(occurrence).padStart(3, "0")}`;
1162
1196
  const AT1_SCHEDULE_4 = {
1163
1197
  id: "AT1SCH04",
1164
1198
  program: "AT1",
@@ -1250,7 +1284,7 @@ const AT1_SCHEDULE_4 = {
1250
1284
  }
1251
1285
  ].map(({ field, ...rest }) => ({
1252
1286
  ...rest,
1253
- line: id$15(field)
1287
+ line: id$10(field)
1254
1288
  })),
1255
1289
  provenance: {
1256
1290
  document: "research/sources/tra-forms/pdf/AT1SCH04-foreign-investment-income-tax-credit-TRA11728.pdf",
@@ -1260,1033 +1294,186 @@ const AT1_SCHEDULE_4 = {
1260
1294
  footnotes: ["If the corporation has permanent establishments in Alberta only, enter \"1\" in column C (the Alberta allocation factor).", "If the corporation's deduction from income under Alberta Corporate Tax Act subsection 8(2.2) differs from the deduction under Income Tax Act subsection 20(12) for any country, Alberta Schedule 12 is required — the total of these amounts for each country is included in the amount at Schedule 12, line 040."]
1261
1295
  };
1262
1296
  //#endregion
1263
- //#region src/t2/at1/forms/schedule5.ts
1297
+ //#region src/t2/at1/forms/schedule10.ts
1264
1298
  /** `SSSFFFOOO` — schedule, field, occurrence. */
1265
- const id$14 = (field, occurrence = 1) => `005${field}${String(occurrence).padStart(3, "0")}`;
1266
- const AT1_SCHEDULE_5 = {
1267
- id: "AT1SCH05",
1299
+ const id$9 = (field, occurrence = 1) => `010${field}${String(occurrence).padStart(3, "0")}`;
1300
+ const AT1_SCHEDULE_10 = {
1301
+ id: "AT1SCH10",
1268
1302
  program: "AT1",
1269
- schedule: "005",
1270
- title: "Alberta Royalty Tax Deduction",
1303
+ schedule: "010",
1304
+ title: "Alberta Loss Carry-Back Application",
1271
1305
  scheme: "tra-line-item-id",
1272
1306
  taxYears: { from: 2024 },
1273
1307
  sections: [
1274
1308
  {
1275
- id: "crtd",
1276
- title: "Calculation of the Royalty Tax Deduction (CRTD)",
1277
- description: "The corporation's own unsuccessored pool. Line 016 is discretionary blank claims the maximum the pool and Alberta taxable income both allow."
1278
- },
1279
- {
1280
- id: "transfer",
1281
- title: "Pool Transfer / Change in Control",
1282
- description: "026/027 required only when a transfer occurred; 100 is informational, cross-checked against the AT1 jacket's own tax-year-end-change fields."
1283
- },
1284
- {
1285
- id: "sspi",
1286
- title: "Second Successored Pool Information (SSPI)",
1287
- description: "One occurrence per vendor/predecessor. 105 and 107 are mutually exclusive per occurrence — supply exactly one. Must not exist unless line 200 is Yes."
1309
+ id: "carryback",
1310
+ title: "Application of current year losses",
1311
+ description: "Amount A the current-year loss available for carry-back, per column: non-capital, farm, a shared \"other loss\" column selected by the check box(es) at 023/025 (restricted farm and/or listed personal property), and capital at its gross amount."
1288
1312
  },
1289
1313
  {
1290
- id: "fspi",
1291
- title: "First Successored Pool Information (FSPI)",
1292
- description: "One occurrence per vendor/predecessor. 125 and 127 are mutually exclusive per occurrence supply exactly one. Must not exist unless line 200 is Yes."
1314
+ id: "deduct",
1315
+ title: "Deduct loss to be applied under the Alberta Corporate Tax Act to:",
1316
+ description: "One row per preceding taxation year, up to three. The year-end date (003/005/007) is shared across every loss column one set of three years, not one per loss type."
1293
1317
  },
1294
1318
  {
1295
- id: "total",
1296
- title: "Successored Total"
1319
+ id: "carry-forward",
1320
+ title: "Balance of current year loss available for carry forward",
1321
+ description: "Amount A minus amount B, per column."
1297
1322
  }
1298
1323
  ],
1299
1324
  fields: [
1300
1325
  {
1301
- field: "001",
1302
- caption: "Crown charges under s.20(6)(a)-(e), with reference to s.20(13)",
1303
- kind: "money",
1304
- role: "input",
1305
- section: "crtd",
1306
- note: "AT1 Schedule 7, line 061. Floored at zero."
1307
- },
1308
- {
1309
- field: "005",
1310
- caption: "Deduct: Resource allowance claimed under s.20(6)(g)",
1311
- kind: "money",
1312
- role: "input",
1313
- section: "crtd",
1314
- note: "AT1 Schedule 12, line 024, or federal Schedule 1, line 346."
1315
- },
1316
- {
1317
- field: "007",
1318
- caption: "Deduct: Reimbursements received under a contract in respect of amounts on line 001, under s.20(6)(f)",
1319
- kind: "money",
1320
- role: "input",
1321
- section: "crtd",
1322
- note: "Excludes ARTC and other government rebates or credits."
1323
- },
1324
- {
1325
- field: "011",
1326
- caption: "Attributed Royalty Income carried forward from the preceding year",
1327
- kind: "money",
1328
- role: "computed",
1329
- section: "crtd",
1330
- note: "= opening unsuccessored pool balance (line 043) + Σ predecessor transfers (line 037)."
1331
- },
1332
- {
1333
- field: "016",
1334
- caption: "Royalty tax deduction claim amount in respect of the pool for the year",
1326
+ field: "002",
1327
+ caption: "Non-capital Loss: Amt of current yr loss available for carry-back",
1335
1328
  kind: "money",
1336
- role: "input",
1337
- section: "crtd",
1338
- note: "Discretionary. Blank = claim the maximum the pool and Alberta taxable income both allow."
1329
+ role: "carried-in",
1330
+ section: "carryback",
1331
+ requirement: "conditional",
1332
+ from: {
1333
+ form: "AT1SCH21",
1334
+ line: "021037001",
1335
+ note: "The Alberta non-capital loss of the year. Where Schedule 21 is not filed, TRA takes federal 004110 instead."
1336
+ }
1339
1337
  },
1340
1338
  {
1341
- field: "017",
1342
- caption: "Pool available, carried forward to next year",
1339
+ field: "012",
1340
+ caption: "Farm Loss: Amt of current yr loss available for carry-back",
1343
1341
  kind: "money",
1344
- role: "computed",
1345
- section: "crtd",
1346
- note: "= line 013 (unlabeled internal subtotal) − line 016."
1342
+ role: "carried-in",
1343
+ section: "carryback",
1344
+ requirement: "conditional",
1345
+ from: {
1346
+ form: "AT1SCH21",
1347
+ line: "021077001",
1348
+ note: "The Alberta farm loss of the year. Where Schedule 21 is not filed, TRA takes federal 004310 instead."
1349
+ }
1347
1350
  },
1348
1351
  {
1349
1352
  field: "023",
1350
- caption: "Deduct: Transfers of Attributed Royalty Income to another corporation during the year due to disposal of substantially all Canadian Resource Properties",
1351
- kind: "money",
1352
- role: "input",
1353
- section: "crtd"
1354
- },
1355
- {
1356
- field: "025",
1357
- caption: "Attributed Royalty Income carried forward to next year",
1358
- kind: "money",
1353
+ caption: "Other Losses: Restricted farm",
1354
+ kind: "flag",
1359
1355
  role: "computed",
1360
- section: "crtd",
1361
- note: "Floored at zero. Literal spec formula omits line 007 and subtracts the COMBINED royalty tax deduction (line 064), not just line 016 — see module doc."
1362
- },
1363
- {
1364
- field: "026",
1365
- caption: "Was there a transfer of the resource pools during the year?",
1366
- kind: "code",
1367
- role: "input",
1368
- section: "transfer",
1369
- requirement: "conditional",
1370
- note: "1 = disposition of all/substantially all CRP (s.20(8)); 2 = change in control / ceasing s.20(14) exemption; 3 = no transfer."
1371
- },
1372
- {
1373
- field: "027",
1374
- caption: "Legal name of the corporation who acquired the resource pools",
1375
- kind: "text",
1376
- role: "input",
1377
- section: "transfer",
1378
- requirement: "conditional",
1379
- note: "Required when line 026 is 1 or 2; must be absent when 3."
1356
+ section: "carryback",
1357
+ requirement: "mandatory",
1358
+ note: "Printed as one of the two \"Other Losses (check box(es))\" boxes heading the shared column. Always filed once Schedule 10 is filed at all — 1 (Yes) or 2 (No, not applicable), never omitted. NOT mutually exclusive with line 025; both may be checked."
1380
1359
  },
1381
1360
  {
1382
- field: "100",
1383
- caption: "Was there a change in control that created the immediately preceding taxation year end?",
1361
+ field: "025",
1362
+ caption: "Other Losses: Listed Personal Property",
1384
1363
  kind: "flag",
1385
- role: "input",
1386
- section: "transfer",
1387
- requirement: "optional"
1388
- },
1389
- {
1390
- field: "101",
1391
- caption: "Legal name of vendor, predecessor, or the corporation itself on a change in control",
1392
- kind: "text",
1393
- role: "input",
1394
- section: "sspi"
1395
- },
1396
- {
1397
- field: "103",
1398
- caption: "Date of Event",
1399
- kind: "date",
1400
- role: "input",
1401
- section: "sspi"
1402
- },
1403
- {
1404
- field: "105",
1405
- caption: "Pool amount available for carry-forward at the end of the preceding year",
1406
- kind: "money",
1407
- role: "input",
1408
- section: "sspi",
1409
- requirement: "conditional"
1410
- },
1411
- {
1412
- field: "107",
1413
- caption: "Cost on acquisition of all/substantially all Canadian resource properties, or on a change in control, under s.20(8) or 20(14)",
1414
- kind: "money",
1415
- role: "input",
1416
- section: "sspi",
1417
- requirement: "conditional"
1418
- },
1419
- {
1420
- field: "109",
1421
- caption: "Property income under s.20(1)(c)",
1422
- kind: "money",
1423
- role: "input",
1424
- section: "sspi"
1425
- },
1426
- {
1427
- field: "111",
1428
- caption: "Claim",
1429
- kind: "money",
1430
1364
  role: "computed",
1431
- section: "sspi",
1432
- note: "= min(pool base, property income). Mandatory arithmetic, not discretionary."
1365
+ section: "carryback",
1366
+ requirement: "mandatory",
1367
+ note: "Printed as one of the two \"Other Losses (check box(es))\" boxes heading the shared column. Always filed once Schedule 10 is filed at all — 1 (Yes) or 2 (No, not applicable), never omitted. NOT mutually exclusive with line 023; both may be checked."
1433
1368
  },
1434
1369
  {
1435
- field: "113",
1436
- caption: "Carried forward, before transfer",
1370
+ field: "032",
1371
+ caption: "Other Losses: Amt of current yr loss available for carry-back",
1437
1372
  kind: "money",
1438
- role: "computed",
1439
- section: "sspi",
1440
- note: "= pool base − claim."
1373
+ role: "carried-in",
1374
+ section: "carryback",
1375
+ requirement: "conditional",
1376
+ from: {
1377
+ form: "AT1SCH21",
1378
+ line: "021097001",
1379
+ note: "Restricted farm (021097) and/or listed personal property (021117), per whichever of 023/025 are checked — the SUM of both when both are, not one or the other."
1380
+ }
1441
1381
  },
1442
1382
  {
1443
- field: "115",
1444
- caption: "Second Successored Pool subtotal",
1383
+ field: "042",
1384
+ caption: "Capital: Gross Amt of current yr loss available for carry-back",
1445
1385
  kind: "money",
1446
- role: "computed",
1447
- section: "sspi",
1448
- note: "Σ line 113 across all SSPI occurrences."
1449
- },
1450
- {
1451
- field: "121",
1452
- caption: "Legal name of vendor, predecessor, or the corporation itself on a change in control",
1453
- kind: "text",
1454
- role: "input",
1455
- section: "fspi"
1386
+ role: "carried-in",
1387
+ section: "carryback",
1388
+ requirement: "conditional",
1389
+ from: {
1390
+ form: "AT1SCH21",
1391
+ line: "021057001",
1392
+ note: "Gross, not at the inclusion rate the column is headed \"Gross Amount Available\". Where Schedule 21 is not filed, TRA takes federal 004210 instead."
1393
+ }
1456
1394
  },
1457
1395
  {
1458
- field: "123",
1459
- caption: "Date of Event",
1396
+ field: "003",
1397
+ caption: "1st preceding taxation year ending (YYYY MM DD)",
1460
1398
  kind: "date",
1461
- role: "input",
1462
- section: "fspi"
1463
- },
1464
- {
1465
- field: "125",
1466
- caption: "Pool amount available for carry-forward at the end of the preceding year",
1467
- kind: "money",
1468
- role: "input",
1469
- section: "fspi",
1470
- requirement: "conditional"
1471
- },
1472
- {
1473
- field: "127",
1474
- caption: "Cost on acquisition of all/substantially all Canadian resource properties, or on a change in control, under s.20(8) or 20(14)",
1475
- kind: "money",
1476
- role: "input",
1477
- section: "fspi",
1478
- requirement: "conditional"
1479
- },
1480
- {
1481
- field: "129",
1482
- caption: "Property income under s.20(1)(c)",
1483
- kind: "money",
1484
- role: "input",
1485
- section: "fspi"
1486
- },
1487
- {
1488
- field: "131",
1489
- caption: "Claim",
1490
- kind: "money",
1491
- role: "computed",
1492
- section: "fspi",
1493
- note: "= min(pool base, property income). Mandatory arithmetic, not discretionary."
1494
- },
1495
- {
1496
- field: "133",
1497
- caption: "Carried forward, before transfer",
1498
- kind: "money",
1499
- role: "computed",
1500
- section: "fspi",
1501
- note: "= pool base − claim."
1502
- },
1503
- {
1504
- field: "135",
1505
- caption: "First Successored Pool subtotal",
1506
- kind: "money",
1507
- role: "computed",
1508
- section: "fspi",
1509
- note: "Σ line 133 across all FSPI occurrences."
1399
+ role: "carried-in",
1400
+ section: "deduct",
1401
+ requirement: "conditional",
1402
+ note: "Must exist if any of 004, 014, 034 or 044 exists.",
1403
+ from: {
1404
+ form: "AT1SCH21",
1405
+ line: "",
1406
+ note: "Shared across every loss-type column — whichever pool has carry-back rows first supplies the three preceding-year dates. Entered as part of that pool's carry-back breakdown on the Schedule 21 continuity editor (or, for non-capital, on federal T2SCH4), not on this schedule."
1407
+ }
1510
1408
  },
1511
1409
  {
1512
- field: "140",
1513
- caption: "Successored Total",
1410
+ field: "004",
1411
+ caption: "Non-capital Loss: 1st preceding taxation year ending",
1514
1412
  kind: "money",
1515
- role: "computed",
1516
- section: "total",
1517
- note: "= Σ SSPI claims (111) + Σ FSPI claims (131). Feeds AT1 core line 064 alongside line 016."
1518
- }
1519
- ].map(({ field, ...rest }) => ({
1520
- ...rest,
1521
- line: id$14(field)
1522
- })),
1523
- provenance: {
1524
- document: "research/sources/tra-spec/AT1-Chapter3-2025.2-full.txt",
1525
- retrieved: "2026-08-31",
1526
- revision: "AT1 Chapter 3, 2025.2 — no fillable PDF exists for this schedule; 031-043 not individually filed, see module doc"
1527
- }
1528
- };
1529
- //#endregion
1530
- //#region src/t2/at1/forms/schedule6.ts
1531
- /** `SSSFFFOOO` — schedule, field, occurrence. */
1532
- const id$13 = (field, occurrence = 1) => `006${field}${String(occurrence).padStart(3, "0")}`;
1533
- const AT1_SCHEDULE_6 = {
1534
- id: "AT1SCH06",
1535
- program: "AT1",
1536
- schedule: "006",
1537
- title: "Alberta Royalty Tax Credit",
1538
- scheme: "tra-line-item-id",
1539
- taxYears: { from: 2024 },
1540
- sections: [
1541
- {
1542
- id: "core",
1543
- title: "Alberta Royalty Tax Credit",
1544
- description: "No credit dollar amount is computed here — the ARTC is administered as an instalment program (AT1 jacket line 000082). This schedule establishes the royalty amount, shelter and rate TRA uses for that determination."
1545
- },
1546
- {
1547
- id: "acrs",
1548
- title: "Aggregate of the Crown Royalty Shelter (ACRS)",
1549
- description: "Complete only when associated (line 002 = Yes)."
1550
- },
1551
- {
1552
- id: "aacrs",
1553
- title: "Allocation of the Aggregate of the Crown Royalty Shelter (AACRS)",
1554
- description: "Complete only when associated. Put the corporation filing this return FIRST — its own allocation becomes line 006 directly."
1555
- }
1556
- ],
1557
- fields: [
1558
- {
1559
- field: "002",
1560
- caption: "Is the corporation associated with one or more corporations that have incurred Alberta Crown Royalty in the year?",
1561
- kind: "flag",
1562
- role: "input",
1563
- section: "core",
1564
- requirement: "mandatory",
1565
- note: "Default 2 (No)."
1413
+ role: "carried-in",
1414
+ section: "deduct",
1415
+ requirement: "conditional",
1416
+ note: "May exist only if 002 exists, and must not exceed it.",
1417
+ from: {
1418
+ form: "T2SCH4",
1419
+ line: "901",
1420
+ note: "Non-capital loss carry-back, 1st preceding year."
1421
+ }
1566
1422
  },
1567
1423
  {
1568
- field: "004",
1569
- caption: "Alberta Crown Royalty incurred in the taxation year",
1424
+ field: "014",
1425
+ caption: "Farm Loss: 1st preceding taxation year ending",
1570
1426
  kind: "money",
1571
- role: "input",
1572
- section: "core",
1573
- requirement: "mandatory",
1574
- note: "= Schedule 7, line 003 + Σ line 077 Σ line 087 + Σ line 089."
1427
+ role: "carried-in",
1428
+ section: "deduct",
1429
+ requirement: "conditional",
1430
+ note: "May exist only if 012 exists, and must not exceed it.",
1431
+ from: {
1432
+ form: "AT1SCH21",
1433
+ line: "021085001",
1434
+ note: "Entered as a per-year row on the Schedule 21 continuity editor's farm carry-back breakdown; this schedule shows the result, it is not entered here."
1435
+ }
1575
1436
  },
1576
1437
  {
1577
- field: "006",
1578
- caption: "Crown Royalty Shelter",
1438
+ field: "034",
1439
+ caption: "Other Losses: 1st preceding taxation year ending",
1579
1440
  kind: "money",
1580
- role: "computed",
1581
- section: "core",
1582
- note: "Not associated: $2,000,000 × (days in own tax year, max 365) / 365. Associated: this filer's own AACRS allocation (line 034, first occurrence)."
1441
+ role: "carried-in",
1442
+ section: "deduct",
1443
+ requirement: "conditional",
1444
+ note: "May exist only if 032 exists, and must not exceed it.",
1445
+ from: {
1446
+ form: "AT1SCH21",
1447
+ line: "",
1448
+ note: "Entered as a per-year row on the Schedule 21 continuity editor's restricted-farm (021105) and/or listed-personal-property (021123) carry-back breakdown, per whichever box(es) 023/025 have checked; this schedule shows the combined result, it is not entered here."
1449
+ }
1583
1450
  },
1584
1451
  {
1585
- field: "008",
1586
- caption: "Weighted Average Rate",
1452
+ field: "043",
1453
+ caption: "Inclusion Rate",
1587
1454
  kind: "rate",
1588
- role: "computed",
1589
- section: "core",
1590
- note: "Day-weighted average of the published RTC quarterly rate across every calendar quarter the taxation year spans, to 4 decimal places."
1591
- },
1592
- {
1593
- field: "022",
1594
- caption: "Corporate Account Number of the associated corporation with the longest taxation year",
1595
- kind: "code",
1596
- role: "input",
1597
- section: "acrs"
1598
- },
1599
- {
1600
- field: "024",
1601
- caption: "Taxation Year Beginning",
1602
- kind: "date",
1603
- role: "input",
1604
- section: "acrs"
1605
- },
1606
- {
1607
- field: "026",
1608
- caption: "Taxation Year Ending",
1609
- kind: "date",
1610
- role: "input",
1611
- section: "acrs"
1612
- },
1613
- {
1614
- field: "028",
1615
- caption: "Number of days in the longest year",
1616
- kind: "text",
1617
1455
  role: "input",
1618
- section: "acrs",
1619
- note: "Max 365. Spec Type N — not money; matches the same field's kind on schedule29.ts."
1456
+ section: "deduct",
1457
+ requirement: "conditional",
1458
+ note: "The rate of the year applied TO, not of the loss year — off AT1 Schedule 18 for that year where it was filed, otherwise federal Schedule 6 amount \"m\". Transmitted as a decimal to exactly six digits (2/3 = .666667, 1/2 = .500000). May exist only if 042 exists."
1620
1459
  },
1621
1460
  {
1622
- field: "030",
1623
- caption: "Name of Corporation",
1624
- kind: "text",
1625
- role: "input",
1626
- section: "aacrs",
1627
- note: "One occurrence per associated corporation sharing the pool."
1628
- },
1629
- {
1630
- field: "032",
1631
- caption: "Alberta Corporate Account Number",
1632
- kind: "code",
1633
- role: "input",
1634
- section: "aacrs",
1635
- requirement: "optional"
1636
- },
1637
- {
1638
- field: "034",
1639
- caption: "Allocated Amount",
1640
- kind: "money",
1641
- role: "input",
1642
- section: "aacrs",
1643
- note: "Capped at $2,000,000 × (line 028 / 365), aggregate across all occurrences."
1644
- }
1645
- ].map(({ field, ...rest }) => ({
1646
- ...rest,
1647
- line: id$13(field)
1648
- })),
1649
- provenance: {
1650
- document: "research/sources/tra-spec/AT1-Chapter3-2025.2-full.txt",
1651
- retrieved: "2026-08-31",
1652
- revision: "AT1 Chapter 3, 2025.2 — no fillable PDF exists for this schedule"
1653
- }
1654
- };
1655
- //#endregion
1656
- //#region src/t2/at1/forms/schedule7.ts
1657
- /** `SSSFFFOOO` — schedule, field, occurrence. */
1658
- const id$12 = (field, occurrence = 1) => `007${field}${String(occurrence).padStart(3, "0")}`;
1659
- const AT1_SCHEDULE_7 = {
1660
- id: "AT1SCH07",
1661
- program: "AT1",
1662
- schedule: "007",
1663
- title: "Alberta Royalty Tax Credit/Deduction Supplemental Information",
1664
- scheme: "tra-line-item-id",
1665
- taxYears: { from: 2024 },
1666
- sections: [
1667
- {
1668
- id: "cpi",
1669
- title: "Crown Payment Information",
1670
- description: "Transcribed directly from the income statement (federal form 125) and balance sheet (federal form 100)."
1671
- },
1672
- {
1673
- id: "piti",
1674
- title: "Partnership Income Tax Information",
1675
- description: "One occurrence per partnership the corporation is a member of."
1676
- },
1677
- {
1678
- id: "acra",
1679
- title: "Adjustments to ACR Reported in the Current Year but Relating to Prior Taxation Years",
1680
- description: "One occurrence per correction relating to a prior production year but reported this year."
1681
- },
1682
- {
1683
- id: "totals",
1684
- title: "Totals",
1685
- description: "Both computed — neither has a preparer-entered box. 061 has no defining row anywhere in this schedule's own MAPPINGS block; its formula is transcribed from Schedule 5's own field 005001 definition."
1686
- }
1687
- ],
1688
- fields: [
1689
- {
1690
- field: "003",
1691
- caption: "Alberta crown royalty eligible for Royalty Tax Credit",
1692
- kind: "money",
1693
- role: "input",
1694
- section: "cpi"
1695
- },
1696
- {
1697
- field: "005",
1698
- caption: "Other royalties paid to Alberta not eligible for Royalty Tax Credit",
1699
- kind: "money",
1700
- role: "input",
1701
- section: "cpi"
1702
- },
1703
- {
1704
- field: "007",
1705
- caption: "Crown royalty paid to other provincial or federal jurisdictions",
1706
- kind: "money",
1707
- role: "input",
1708
- section: "cpi"
1709
- },
1710
- {
1711
- field: "009",
1712
- caption: "Non-deductible crown lease rentals",
1713
- kind: "money",
1714
- role: "input",
1715
- section: "cpi"
1716
- },
1717
- {
1718
- field: "011",
1719
- caption: "Mineral taxes",
1720
- kind: "money",
1721
- role: "input",
1722
- section: "cpi"
1723
- },
1724
- {
1725
- field: "013",
1726
- caption: "Saskatchewan resources surcharge (non-deductible portion only)",
1727
- kind: "money",
1728
- role: "input",
1729
- section: "cpi"
1730
- },
1731
- {
1732
- field: "014",
1733
- caption: "Other non-deductible crown charges — type",
1734
- kind: "text",
1735
- role: "input",
1736
- section: "cpi",
1737
- requirement: "optional"
1738
- },
1739
- {
1740
- field: "015",
1741
- caption: "Other non-deductible crown charges — type",
1742
- kind: "text",
1743
- role: "input",
1744
- section: "cpi",
1745
- requirement: "optional"
1746
- },
1747
- {
1748
- field: "016",
1749
- caption: "Other non-deductible crown charges — type",
1750
- kind: "text",
1751
- role: "input",
1752
- section: "cpi",
1753
- requirement: "optional"
1754
- },
1755
- {
1756
- field: "017",
1757
- caption: "Other non-deductible crown charges — amount",
1758
- kind: "money",
1759
- role: "input",
1760
- section: "cpi",
1761
- note: "Blank/zero when no type is named at 014-016."
1762
- },
1763
- {
1764
- field: "025",
1765
- caption: "Crown lease rentals capitalized during the year on non-producing properties (non-deductible portion)",
1766
- kind: "money",
1767
- role: "input",
1768
- section: "cpi"
1769
- },
1770
- {
1771
- field: "027",
1772
- caption: "Other balance sheet eligible deduction — name",
1773
- kind: "text",
1774
- role: "input",
1775
- section: "cpi",
1776
- requirement: "optional"
1777
- },
1778
- {
1779
- field: "029",
1780
- caption: "Other balance sheet eligible deduction — amount",
1781
- kind: "money",
1782
- role: "input",
1783
- section: "cpi",
1784
- note: "Blank/zero when no name is given at 027."
1785
- },
1786
- {
1787
- field: "071",
1788
- caption: "Partnership name",
1789
- kind: "text",
1790
- role: "input",
1791
- section: "piti",
1792
- requirement: "mandatory"
1793
- },
1794
- {
1795
- field: "073",
1796
- caption: "Corporation's percentage interest in partnership",
1797
- kind: "rate",
1798
- role: "input",
1799
- section: "piti",
1800
- note: "Decimal to 4 places, e.g. .7500 for 75% — not a whole percentage."
1801
- },
1802
- {
1803
- field: "075",
1804
- caption: "Partnership fiscal period end",
1805
- kind: "date",
1806
- role: "input",
1807
- section: "piti"
1808
- },
1809
- {
1810
- field: "077",
1811
- caption: "Corporation's share of Alberta Crown Royalties eligible for Royalty Tax Credit",
1812
- kind: "money",
1813
- role: "input",
1814
- section: "piti"
1815
- },
1816
- {
1817
- field: "079",
1818
- caption: "Corporation's share of other royalties paid to Alberta not eligible for Royalty Tax Credit",
1819
- kind: "money",
1820
- role: "input",
1821
- section: "piti"
1822
- },
1823
- {
1824
- field: "081",
1825
- caption: "Corporation's share of other Crown charges eligible for Royalty Tax Deduction",
1826
- kind: "money",
1827
- role: "input",
1828
- section: "piti",
1829
- note: "Feeds AT1 Schedule 5, not this schedule's own arithmetic."
1830
- },
1831
- {
1832
- field: "083",
1833
- caption: "Prior production period the adjustment relates to",
1834
- kind: "date",
1835
- role: "input",
1836
- section: "acra",
1837
- requirement: "mandatory"
1838
- },
1839
- {
1840
- field: "085",
1841
- caption: "Source of Adjustment",
1842
- kind: "code",
1843
- role: "input",
1844
- section: "acra",
1845
- note: "1 = Department of Resource Development (formerly Energy), 2 = Operator."
1846
- },
1847
- {
1848
- field: "087",
1849
- caption: "Amount of increase to eligible crown royalties for that prior year",
1850
- kind: "money",
1851
- role: "input",
1852
- section: "acra"
1853
- },
1854
- {
1855
- field: "089",
1856
- caption: "Amount of decrease to eligible crown royalties for that prior year",
1857
- kind: "money",
1858
- role: "input",
1859
- section: "acra"
1860
- },
1861
- {
1862
- field: "091",
1863
- caption: "Adjustment to the amount not eligible for the Royalty Tax Credit for that prior year",
1864
- kind: "money",
1865
- role: "input",
1866
- section: "acra"
1867
- },
1868
- {
1869
- field: "051",
1870
- caption: "Total Adjustments to current year Alberta Crown Royalty due to adjustments from Prior Production Years",
1871
- kind: "money",
1872
- role: "computed",
1873
- section: "totals",
1874
- note: "= Σ (087 − 089 + 091)."
1875
- },
1876
- {
1877
- field: "061",
1878
- caption: "Crown charges net of reimbursements",
1879
- kind: "money",
1880
- role: "computed",
1881
- section: "totals",
1882
- note: "No defining row in this schedule's own MAPPINGS block — formula transcribed from Schedule 5's field 005001. Signed; Schedule 5 applies its own floor at zero."
1883
- }
1884
- ].map(({ field, ...rest }) => ({
1885
- ...rest,
1886
- line: id$12(field)
1887
- })),
1888
- provenance: {
1889
- document: "research/sources/tra-spec/AT1-Chapter3-2025.2-full.txt",
1890
- retrieved: "2026-08-31",
1891
- revision: "AT1 Chapter 3, 2025.2 — no fillable PDF exists for this schedule"
1892
- }
1893
- };
1894
- //#endregion
1895
- //#region src/t2/at1/forms/schedule8.ts
1896
- /** `SSSFFFOOO` — schedule, field, occurrence. */
1897
- const id$11 = (field, occurrence = 1) => `008${field}${String(occurrence).padStart(3, "0")}`;
1898
- const AT1_SCHEDULE_8 = {
1899
- id: "AT1SCH08",
1900
- program: "AT1",
1901
- schedule: "008",
1902
- title: "Alberta Political Contributions Tax Credit",
1903
- scheme: "tra-line-item-id",
1904
- taxYears: { from: 2024 },
1905
- sections: [{
1906
- id: "contributions",
1907
- title: "Political Contribution Details",
1908
- description: "One occurrence per receipted contribution to a party, constituency association or candidate registered in Alberta."
1909
- }, {
1910
- id: "partnership",
1911
- title: "Alberta Political Contributions Through a Partnership",
1912
- description: "Sourced from federal T5013 — not derivable from anything else on this schedule."
1913
- }],
1914
- fields: [
1915
- {
1916
- field: "002",
1917
- caption: "Name of Party, Constituency Association or Candidate",
1918
- kind: "text",
1919
- role: "input",
1920
- section: "contributions",
1921
- requirement: "mandatory"
1922
- },
1923
- {
1924
- field: "004",
1925
- caption: "Official Receipt Number",
1926
- kind: "code",
1927
- role: "input",
1928
- section: "contributions",
1929
- requirement: "mandatory"
1930
- },
1931
- {
1932
- field: "006",
1933
- caption: "Date of Donation",
1934
- kind: "date",
1935
- role: "input",
1936
- section: "contributions",
1937
- requirement: "mandatory",
1938
- note: "The spec requires one for every receipted contribution — never left blank."
1939
- },
1940
- {
1941
- field: "008",
1942
- caption: "Donation Amount",
1943
- kind: "money",
1944
- role: "input",
1945
- section: "contributions",
1946
- requirement: "mandatory"
1947
- },
1948
- {
1949
- field: "012",
1950
- caption: "Alberta political contributions from a partnership made in 2003 or earlier",
1951
- kind: "money",
1952
- role: "input",
1953
- section: "partnership",
1954
- requirement: "optional",
1955
- note: "Federal T5013 box 37."
1956
- },
1957
- {
1958
- field: "013",
1959
- caption: "Alberta political contributions from a partnership made in 2004 or later",
1960
- kind: "money",
1961
- role: "input",
1962
- section: "partnership",
1963
- requirement: "optional",
1964
- note: "Federal T5013."
1965
- }
1966
- ].map(({ field, ...rest }) => ({
1967
- ...rest,
1968
- line: id$11(field)
1969
- })),
1970
- provenance: {
1971
- document: "research/sources/tra-spec/AT1-Chapter3-2025.2-full.txt",
1972
- retrieved: "2026-08-31",
1973
- revision: "AT1 Chapter 3, 2025.2 — no fillable PDF exists for this schedule"
1974
- }
1975
- };
1976
- //#endregion
1977
- //#region src/t2/at1/forms/schedule9.ts
1978
- /** `SSSFFFOOO` — schedule, field, occurrence. */
1979
- const id$10 = (field, occurrence = 1) => `009${field}${String(occurrence).padStart(3, "0")}`;
1980
- const AT1_SCHEDULE_9 = {
1981
- id: "AT1SCH09",
1982
- program: "AT1",
1983
- schedule: "009",
1984
- title: "Alberta Scientific Research & Experimental Development Tax Credit",
1985
- scheme: "tra-line-item-id",
1986
- taxYears: { from: 2024 },
1987
- sections: [
1988
- {
1989
- id: "expenditures",
1990
- title: "Eligible Expenditures",
1991
- description: "The credit is wound down — no expenditures carried out in Alberta on or after 2020-01-01 are eligible."
1992
- },
1993
- {
1994
- id: "limit",
1995
- title: "Expenditure Limit and Credit"
1996
- },
1997
- {
1998
- id: "group",
1999
- title: "Allocation of the Maximum Expenditure Limit",
2000
- description: "Required whenever line 100 is Yes. Each occurrence, and the group total, capped at $4,000,000 × (line 206 / 365)."
2001
- }
2002
- ],
2003
- fields: [
2004
- {
2005
- field: "003",
2006
- caption: "Federal amount of total qualified SR&ED expenditures",
2007
- kind: "money",
2008
- role: "input",
2009
- section: "expenditures",
2010
- requirement: "mandatory",
2011
- note: "Must equal fed T661 line 559."
2012
- },
2013
- {
2014
- field: "005",
2015
- caption: "Portion of line 559 incurred in Alberta",
2016
- kind: "money",
2017
- role: "input",
2018
- section: "expenditures",
2019
- note: "Must not exceed line 003. Excludes spending on or after 2020-01-01."
2020
- },
2021
- {
2022
- field: "007",
2023
- caption: "Deduct: federal prescribed proxy amount included in the Alberta portion",
2024
- kind: "money",
2025
- role: "input",
2026
- section: "expenditures"
2027
- },
2028
- {
2029
- field: "009",
2030
- caption: "Add: Alberta proxy amount",
2031
- kind: "money",
2032
- role: "input",
2033
- section: "expenditures"
2034
- },
2035
- {
2036
- field: "011",
2037
- caption: "Add: Alberta SR&ED credit that reduced the federal expense in the taxation year",
2038
- kind: "money",
2039
- role: "input",
2040
- section: "expenditures",
2041
- note: "Calculation deferred by the spec to the Guide to Claiming the Alberta SR&ED Tax Credit."
2042
- },
2043
- {
2044
- field: "015",
2045
- caption: "Federal Investment Tax Credit received in the immediately preceding taxation year",
2046
- kind: "money",
2047
- role: "input",
2048
- section: "expenditures",
2049
- note: "Fed T661 line 435."
2050
- },
2051
- {
2052
- field: "017",
2053
- caption: "Total Alberta-eligible expenditures for years in which incurred",
2054
- kind: "money",
2055
- role: "input",
2056
- section: "expenditures"
2057
- },
2058
- {
2059
- field: "019",
2060
- caption: "Total federal expenditures for those same years",
2061
- kind: "money",
2062
- role: "input",
2063
- section: "expenditures",
2064
- note: "Fed T661 line 570."
2065
- },
2066
- {
2067
- field: "023",
2068
- caption: "Deduct: Alberta portion of the prior-year federal ITC",
2069
- kind: "money",
2070
- role: "computed",
2071
- section: "expenditures",
2072
- note: "= 015 × 017 / 019."
2073
- },
2074
- {
2075
- field: "025",
2076
- caption: "Add: Alberta portion of any repayment of assistance and contract payments",
2077
- kind: "money",
2078
- role: "input",
2079
- section: "expenditures"
2080
- },
2081
- {
2082
- field: "031",
2083
- caption: "Eligible expenditures for Alberta purposes",
2084
- kind: "money",
2085
- role: "computed",
2086
- section: "expenditures",
2087
- note: "No confirmed formula/caption of its own in the spec — filed alongside 106, same figure. Derived as 005 − 007 + 009 + 011 − 023 + 025 unless overridden."
2088
- },
2089
- {
2090
- field: "040",
2091
- caption: "Primary field of science or technology",
2092
- kind: "code",
2093
- role: "input",
2094
- section: "limit",
2095
- requirement: "mandatory",
2096
- note: "1-4."
2097
- },
2098
- {
2099
- field: "100",
2100
- caption: "Is the corporation associated with one or more corporations for SR&ED purposes?",
2101
- kind: "flag",
2102
- role: "input",
2103
- section: "limit",
2104
- requirement: "mandatory"
2105
- },
2106
- {
2107
- field: "102",
2108
- caption: "Allocated amount from line 240 on page 3",
2109
- kind: "money",
2110
- role: "computed",
2111
- section: "limit",
2112
- requirement: "conditional",
2113
- note: "Filed only when line 100 = Yes."
2114
- },
2115
- {
2116
- field: "104",
2117
- caption: "Maximum Expenditure Limit",
2118
- kind: "money",
2119
- role: "computed",
2120
- section: "limit",
2121
- requirement: "conditional",
2122
- note: "Filed only when line 100 = No. = $4,000,000 × (days in tax year / 365)."
2123
- },
2124
- {
2125
- field: "106",
2126
- caption: "Eligible expenditures for Alberta purposes",
2127
- kind: "money",
2128
- role: "computed",
2129
- section: "limit",
2130
- note: "Must equal line 031."
2131
- },
2132
- {
2133
- field: "108",
2134
- caption: "Maximum Expenditure Limit for the year",
2135
- kind: "money",
2136
- role: "computed",
2137
- section: "limit",
2138
- note: "= line 102 or 104, whichever applies."
2139
- },
2140
- {
2141
- field: "112",
2142
- caption: "Recapture on disposal (or deemed disposal) of Alberta SR&ED property",
2143
- kind: "money",
2144
- role: "input",
2145
- section: "limit",
2146
- requirement: "optional"
2147
- },
2148
- {
2149
- field: "116",
2150
- caption: "Less: Alberta portion of prior year federal investment tax credit",
2151
- kind: "money",
2152
- role: "input",
2153
- section: "limit",
2154
- requirement: "optional",
2155
- note: "Schedule 9 Supplemental line 428 — only when the taxation year end is on or before 2012-03-31."
2156
- },
2157
- {
2158
- field: "120",
2159
- caption: "Net Alberta SR&ED Tax Credit (Repayment)",
2160
- kind: "money",
2161
- role: "computed",
2162
- section: "limit",
2163
- note: "= (lesser of 031 and 108 × 10%) − 112 − 116. Signed — may be negative. To AT1 page 2 line 081."
2164
- },
2165
- {
2166
- field: "200",
2167
- caption: "Alberta CAN of the associated corporation with the longest taxation year",
2168
- kind: "code",
2169
- role: "input",
2170
- section: "group",
2171
- requirement: "conditional"
2172
- },
2173
- {
2174
- field: "202",
2175
- caption: "Taxation Year Beginning",
2176
- kind: "date",
2177
- role: "input",
2178
- section: "group",
2179
- requirement: "conditional"
2180
- },
2181
- {
2182
- field: "204",
2183
- caption: "Taxation Year Ending",
2184
- kind: "date",
2185
- role: "input",
2186
- section: "group",
2187
- requirement: "conditional"
2188
- },
2189
- {
2190
- field: "206",
2191
- caption: "Number of days in the longest year",
2192
- kind: "text",
2193
- role: "input",
2194
- section: "group",
2195
- requirement: "conditional",
2196
- note: "Max 365 (366 across a February 29). Spec Type N — not money; matches the same field's kind on schedule29.ts."
2197
- },
2198
- {
2199
- field: "220",
2200
- caption: "Name of Corporation",
2201
- kind: "text",
2202
- role: "input",
2203
- section: "group",
2204
- note: "One occurrence per associated corporation, claimant first."
2205
- },
2206
- {
2207
- field: "230",
2208
- caption: "Alberta Corporate Account Number",
2209
- kind: "code",
2210
- role: "input",
2211
- section: "group",
2212
- requirement: "optional"
2213
- },
2214
- {
2215
- field: "240",
2216
- caption: "Allocated Amount",
2217
- kind: "money",
2218
- role: "input",
2219
- section: "group",
2220
- note: "Capped at $4,000,000 × (line 206 / 365), aggregate across all occurrences."
2221
- }
2222
- ].map(({ field, ...rest }) => ({
2223
- ...rest,
2224
- line: id$10(field)
2225
- })),
2226
- provenance: {
2227
- document: "research/sources/tra-spec/AT1-Chapter3-2025.2-full.txt",
2228
- retrieved: "2026-08-31",
2229
- revision: "AT1 Chapter 3, 2025.2 — no fillable PDF exists for this schedule; wound down, no post-2019 expenditures eligible"
2230
- }
2231
- };
2232
- //#endregion
2233
- //#region src/t2/at1/forms/schedule10.ts
2234
- /** `SSSFFFOOO` — schedule, field, occurrence. */
2235
- const id$9 = (field, occurrence = 1) => `010${field}${String(occurrence).padStart(3, "0")}`;
2236
- const AT1_SCHEDULE_10 = {
2237
- id: "AT1SCH10",
2238
- program: "AT1",
2239
- schedule: "010",
2240
- title: "Alberta Loss Carry-Back Application",
2241
- scheme: "tra-line-item-id",
2242
- taxYears: { from: 2024 },
2243
- sections: [{
2244
- id: "carryback",
2245
- title: "Application of current year losses",
2246
- description: "Non-capital, farm, one checkbox-selected \"other loss\" column (restricted farm or listed personal property), and capital."
2247
- }],
2248
- fields: [
2249
- {
2250
- field: "002",
2251
- caption: "Amount of current year non-capital loss available for carry-back",
2252
- kind: "money",
2253
- role: "computed",
2254
- section: "carryback",
2255
- requirement: "mandatory"
2256
- },
2257
- {
2258
- field: "003",
2259
- caption: "1st preceding taxation year ending",
2260
- kind: "date",
2261
- role: "carried-in",
2262
- section: "carryback",
2263
- requirement: "conditional",
2264
- from: {
2265
- form: "AT1SCH21",
2266
- line: "",
2267
- note: "Shared across every loss-type column — whichever pool has carry-back rows first supplies the three preceding-year dates. Entered as part of that pool's carry-back breakdown on the Schedule 21 continuity editor (or, for non-capital, on federal T2SCH4), not on this schedule."
2268
- }
2269
- },
2270
- {
2271
- field: "004",
2272
- caption: "Non-capital loss carried back — 1st preceding taxation year",
2273
- kind: "money",
2274
- role: "carried-in",
2275
- section: "carryback",
1461
+ field: "044",
1462
+ caption: "Capital: Gross amount applied to 1st preceding taxation year ending",
1463
+ kind: "money",
1464
+ role: "input",
1465
+ section: "deduct",
2276
1466
  requirement: "conditional",
2277
- from: {
2278
- form: "T2SCH4",
2279
- line: "901",
2280
- note: "Non-capital loss carry-back, 1st preceding year."
2281
- }
1467
+ note: "GROSS, not at the inclusion rate — TRA multiplies it by 043 itself to reach the printed \"Amount of Loss Applied\", which has no line code of its own. May exist only if 042 and 043 exist, and must not exceed 042."
2282
1468
  },
2283
1469
  {
2284
1470
  field: "005",
2285
- caption: "2nd preceding taxation year ending",
1471
+ caption: "2nd preceding taxation year ending (YYYY MM DD)",
2286
1472
  kind: "date",
2287
1473
  role: "carried-in",
2288
- section: "carryback",
1474
+ section: "deduct",
2289
1475
  requirement: "conditional",
1476
+ note: "Must exist if any of 006, 016, 036 or 046 exists.",
2290
1477
  from: {
2291
1478
  form: "AT1SCH21",
2292
1479
  line: "",
@@ -2295,11 +1482,12 @@ const AT1_SCHEDULE_10 = {
2295
1482
  },
2296
1483
  {
2297
1484
  field: "006",
2298
- caption: "Non-capital loss carried back — 2nd preceding taxation year",
1485
+ caption: "Non-capital Loss: 2nd preceding taxation year ending",
2299
1486
  kind: "money",
2300
1487
  role: "carried-in",
2301
- section: "carryback",
1488
+ section: "deduct",
2302
1489
  requirement: "conditional",
1490
+ note: "May exist only if 002 exists, and must not exceed it.",
2303
1491
  from: {
2304
1492
  form: "T2SCH4",
2305
1493
  line: "902",
@@ -2307,81 +1495,87 @@ const AT1_SCHEDULE_10 = {
2307
1495
  }
2308
1496
  },
2309
1497
  {
2310
- field: "007",
2311
- caption: "3rd preceding taxation year ending",
2312
- kind: "date",
1498
+ field: "016",
1499
+ caption: "Farm Loss: 2nd preceding taxation year ending",
1500
+ kind: "money",
2313
1501
  role: "carried-in",
2314
- section: "carryback",
1502
+ section: "deduct",
2315
1503
  requirement: "conditional",
1504
+ note: "May exist only if 012 exists, and must not exceed it.",
2316
1505
  from: {
2317
1506
  form: "AT1SCH21",
2318
- line: "",
2319
- note: "Shared across every loss-type column whichever pool has carry-back rows first supplies the three preceding-year dates. Entered as part of that pool's carry-back breakdown on the Schedule 21 continuity editor (or, for non-capital, on federal T2SCH4), not on this schedule."
1507
+ line: "021085001",
1508
+ note: "Entered as a per-year row on the Schedule 21 continuity editor's farm carry-back breakdown; this schedule shows the result, it is not entered here."
2320
1509
  }
2321
1510
  },
2322
1511
  {
2323
- field: "008",
2324
- caption: "Non-capital loss carried back — 3rd preceding taxation year",
1512
+ field: "036",
1513
+ caption: "Other Losses: 2nd preceding taxation year ending",
2325
1514
  kind: "money",
2326
1515
  role: "carried-in",
2327
- section: "carryback",
1516
+ section: "deduct",
2328
1517
  requirement: "conditional",
1518
+ note: "May exist only if 032 exists, and must not exceed it.",
2329
1519
  from: {
2330
- form: "T2SCH4",
2331
- line: "903",
2332
- note: "Non-capital loss carry-back, 3rd preceding year."
1520
+ form: "AT1SCH21",
1521
+ line: "",
1522
+ note: "Entered as a per-year row on the Schedule 21 continuity editor's restricted-farm (021105) and/or listed-personal-property (021123) carry-back breakdown, per whichever box(es) 023/025 have checked; this schedule shows the combined result, it is not entered here."
2333
1523
  }
2334
1524
  },
2335
1525
  {
2336
- field: "010",
2337
- caption: "Balance of current year non-capital loss available for carry forward",
2338
- kind: "money",
2339
- role: "computed",
2340
- section: "carryback",
2341
- requirement: "mandatory",
2342
- note: "Line 002 minus the total carried back."
1526
+ field: "045",
1527
+ caption: "Inclusion Rate",
1528
+ kind: "rate",
1529
+ role: "input",
1530
+ section: "deduct",
1531
+ requirement: "conditional",
1532
+ note: "The rate of the year applied TO, not of the loss year — off AT1 Schedule 18 for that year where it was filed, otherwise federal Schedule 6 amount \"m\". Transmitted as a decimal to exactly six digits (2/3 = .666667, 1/2 = .500000). May exist only if 042 exists."
2343
1533
  },
2344
1534
  {
2345
- field: "012",
2346
- caption: "Amount of current year farm loss available for carry-back",
1535
+ field: "046",
1536
+ caption: "Capital: Gross amount applied to 2nd preceding taxation year ending",
2347
1537
  kind: "money",
2348
- role: "computed",
2349
- section: "carryback",
2350
- requirement: "mandatory"
1538
+ role: "input",
1539
+ section: "deduct",
1540
+ requirement: "conditional",
1541
+ note: "GROSS, not at the inclusion rate — TRA multiplies it by 045 itself to reach the printed \"Amount of Loss Applied\", which has no line code of its own. May exist only if 042 and 045 exist, and must not exceed 042."
2351
1542
  },
2352
1543
  {
2353
- field: "014",
2354
- caption: "Farm loss carried back 1st preceding taxation year",
2355
- kind: "money",
1544
+ field: "007",
1545
+ caption: "3rd preceding taxation year ending (YYYY MM DD)",
1546
+ kind: "date",
2356
1547
  role: "carried-in",
2357
- section: "carryback",
1548
+ section: "deduct",
2358
1549
  requirement: "conditional",
1550
+ note: "Must exist if any of 008, 018, 038 or 048 exists.",
2359
1551
  from: {
2360
1552
  form: "AT1SCH21",
2361
- line: "021085001",
2362
- note: "Entered as a per-year row on the Schedule 21 continuity editor's farm carry-back breakdown; this schedule shows the result, it is not entered here."
1553
+ line: "",
1554
+ note: "Shared across every loss-type column whichever pool has carry-back rows first supplies the three preceding-year dates. Entered as part of that pool's carry-back breakdown on the Schedule 21 continuity editor (or, for non-capital, on federal T2SCH4), not on this schedule."
2363
1555
  }
2364
1556
  },
2365
1557
  {
2366
- field: "016",
2367
- caption: "Farm loss carried back — 2nd preceding taxation year",
1558
+ field: "008",
1559
+ caption: "Non-capital Loss: 3rd preceding taxation year ending",
2368
1560
  kind: "money",
2369
1561
  role: "carried-in",
2370
- section: "carryback",
1562
+ section: "deduct",
2371
1563
  requirement: "conditional",
1564
+ note: "May exist only if 002 exists, and must not exceed it.",
2372
1565
  from: {
2373
- form: "AT1SCH21",
2374
- line: "021085001",
2375
- note: "Entered as a per-year row on the Schedule 21 continuity editor's farm carry-back breakdown; this schedule shows the result, it is not entered here."
1566
+ form: "T2SCH4",
1567
+ line: "903",
1568
+ note: "Non-capital loss carry-back, 3rd preceding year."
2376
1569
  }
2377
1570
  },
2378
1571
  {
2379
1572
  field: "018",
2380
- caption: "Farm loss carried back — 3rd preceding taxation year",
1573
+ caption: "Farm Loss: 3rd preceding taxation year ending",
2381
1574
  kind: "money",
2382
1575
  role: "carried-in",
2383
- section: "carryback",
1576
+ section: "deduct",
2384
1577
  requirement: "conditional",
1578
+ note: "May exist only if 012 exists, and must not exceed it.",
2385
1579
  from: {
2386
1580
  form: "AT1SCH21",
2387
1581
  line: "021085001",
@@ -2389,48 +1583,13 @@ const AT1_SCHEDULE_10 = {
2389
1583
  }
2390
1584
  },
2391
1585
  {
2392
- field: "020",
2393
- caption: "Balance of current year farm loss available for carry forward",
2394
- kind: "money",
2395
- role: "computed",
2396
- section: "carryback",
2397
- requirement: "mandatory",
2398
- note: "Line 012 minus the total carried back."
2399
- },
2400
- {
2401
- field: "023",
2402
- caption: "Other Losses: Restricted Farm (check box)",
2403
- kind: "flag",
2404
- role: "computed",
2405
- section: "carryback",
2406
- requirement: "mandatory",
2407
- note: "Always filed once Schedule 10 is filed at all — 1 (Yes) or 2 (No). NOT mutually exclusive with line 025; both may be checked."
2408
- },
2409
- {
2410
- field: "025",
2411
- caption: "Other Losses: Listed Personal Property (check box)",
2412
- kind: "flag",
2413
- role: "computed",
2414
- section: "carryback",
2415
- requirement: "mandatory",
2416
- note: "Always filed once Schedule 10 is filed at all — 1 (Yes) or 2 (No). NOT mutually exclusive with line 023; both may be checked."
2417
- },
2418
- {
2419
- field: "032",
2420
- caption: "Amount of current year \"other\" loss available for carry-back",
2421
- kind: "money",
2422
- role: "computed",
2423
- section: "carryback",
2424
- requirement: "conditional",
2425
- note: "Restricted farm and/or listed personal property, per 023/025 — the SUM of both when both are checked, not one or the other."
2426
- },
2427
- {
2428
- field: "034",
2429
- caption: "\"Other\" loss carried back — 1st preceding taxation year",
1586
+ field: "038",
1587
+ caption: "Other Losses: 3rd preceding taxation year ending",
2430
1588
  kind: "money",
2431
1589
  role: "carried-in",
2432
- section: "carryback",
1590
+ section: "deduct",
2433
1591
  requirement: "conditional",
1592
+ note: "May exist only if 032 exists, and must not exceed it.",
2434
1593
  from: {
2435
1594
  form: "AT1SCH21",
2436
1595
  line: "",
@@ -2438,74 +1597,58 @@ const AT1_SCHEDULE_10 = {
2438
1597
  }
2439
1598
  },
2440
1599
  {
2441
- field: "036",
2442
- caption: "\"Other\" loss carried back — 2nd preceding taxation year",
2443
- kind: "money",
2444
- role: "carried-in",
2445
- section: "carryback",
1600
+ field: "047",
1601
+ caption: "Inclusion Rate",
1602
+ kind: "rate",
1603
+ role: "input",
1604
+ section: "deduct",
2446
1605
  requirement: "conditional",
2447
- from: {
2448
- form: "AT1SCH21",
2449
- line: "",
2450
- note: "Entered as a per-year row on the Schedule 21 continuity editor's restricted-farm (021105) and/or listed-personal-property (021123) carry-back breakdown, per whichever box(es) 023/025 have checked; this schedule shows the combined result, it is not entered here."
2451
- }
1606
+ note: "The rate of the year applied TO, not of the loss year — off AT1 Schedule 18 for that year where it was filed, otherwise federal Schedule 6 amount \"m\". Transmitted as a decimal to exactly six digits (2/3 = .666667, 1/2 = .500000). May exist only if 042 exists."
2452
1607
  },
2453
1608
  {
2454
- field: "038",
2455
- caption: "\"Other\" loss carried back 3rd preceding taxation year",
1609
+ field: "048",
1610
+ caption: "Capital: Gross amount applied to 3rd preceding taxation year ending",
2456
1611
  kind: "money",
2457
- role: "carried-in",
2458
- section: "carryback",
1612
+ role: "input",
1613
+ section: "deduct",
2459
1614
  requirement: "conditional",
2460
- from: {
2461
- form: "AT1SCH21",
2462
- line: "",
2463
- note: "Entered as a per-year row on the Schedule 21 continuity editor's restricted-farm (021105) and/or listed-personal-property (021123) carry-back breakdown, per whichever box(es) 023/025 have checked; this schedule shows the combined result, it is not entered here."
2464
- }
2465
- },
2466
- {
2467
- field: "040",
2468
- caption: "Balance of current year \"other\" loss available for carry forward",
2469
- kind: "money",
2470
- role: "computed",
2471
- section: "carryback",
2472
- requirement: "mandatory",
2473
- note: "Line 032 minus the total carried back."
1615
+ note: "GROSS, not at the inclusion rate — TRA multiplies it by 047 itself to reach the printed \"Amount of Loss Applied\", which has no line code of its own. May exist only if 042 and 047 exist, and must not exceed 042."
2474
1616
  },
2475
1617
  {
2476
- field: "042",
2477
- caption: "Gross amount of current year capital loss available for carry-back",
1618
+ field: "010",
1619
+ caption: "Non-capital Loss: Balance of current year loss available for carry forward",
2478
1620
  kind: "money",
2479
1621
  role: "computed",
2480
- section: "carryback",
2481
- requirement: "mandatory"
1622
+ section: "carry-forward",
1623
+ requirement: "conditional",
1624
+ note: "Must exist if 002 does. 002 - (004 + 006 + 008), which cannot exceed 002."
2482
1625
  },
2483
1626
  {
2484
- field: "044",
2485
- caption: "Capital loss applied 1st preceding taxation year (at the inclusion rate)",
1627
+ field: "020",
1628
+ caption: "Farm Loss: Balance of current year loss available for carry forward",
2486
1629
  kind: "money",
2487
1630
  role: "computed",
2488
- section: "carryback",
1631
+ section: "carry-forward",
2489
1632
  requirement: "conditional",
2490
- note: "The gross carry-back request × the inclusion rate not the raw entered amount."
1633
+ note: "Must exist if 012 does. 012 - (014 + 016 + 018), which cannot exceed 012."
2491
1634
  },
2492
1635
  {
2493
- field: "046",
2494
- caption: "Capital loss applied 2nd preceding taxation year (at the inclusion rate)",
1636
+ field: "040",
1637
+ caption: "Other Losses: Balance of current year loss available for carry forward",
2495
1638
  kind: "money",
2496
1639
  role: "computed",
2497
- section: "carryback",
1640
+ section: "carry-forward",
2498
1641
  requirement: "conditional",
2499
- note: "The gross carry-back request × the inclusion rate not the raw entered amount."
1642
+ note: "Must exist if 032 does. 032 - (034 + 036 + 038), which cannot exceed 032."
2500
1643
  },
2501
1644
  {
2502
- field: "048",
2503
- caption: "Capital loss applied 3rd preceding taxation year (at the inclusion rate)",
1645
+ field: "050",
1646
+ caption: "Capital: Balance of current year loss available for carry forward",
2504
1647
  kind: "money",
2505
1648
  role: "computed",
2506
- section: "carryback",
1649
+ section: "carry-forward",
2507
1650
  requirement: "conditional",
2508
- note: "The gross carry-back request × the inclusion rate not the raw entered amount."
1651
+ note: "Must exist if 042 does. Gross throughout: 042 - (044 + 046 + 048), which cannot exceed 042. The inclusion rate never enters this line."
2509
1652
  }
2510
1653
  ].map(({ field, ...rest }) => ({
2511
1654
  ...rest,
@@ -2737,6 +1880,30 @@ const AT1_SCHEDULE_12_PAIRS = [
2737
1880
  section: "area-b",
2738
1881
  emitOnlyWhenDifferent: false,
2739
1882
  note: "No Alberta divergence path — always equals federal."
1883
+ },
1884
+ {
1885
+ label: "Prospector's and grubstaker's shares",
1886
+ federal: "079",
1887
+ alberta: "078",
1888
+ section: "area-b",
1889
+ emitOnlyWhenDifferent: false,
1890
+ note: "Both sides read T2 line 350 — the form prints that source over each box."
1891
+ },
1892
+ {
1893
+ label: "Employer deduction for non-qualified securities",
1894
+ federal: "141",
1895
+ alberta: "140",
1896
+ section: "area-b",
1897
+ emitOnlyWhenDifferent: false,
1898
+ note: "Both sides read T2 line 352."
1899
+ },
1900
+ {
1901
+ label: "ITA section 110.5 and/or subparagraph 115(1)(a)(vii) additions",
1902
+ federal: "083",
1903
+ alberta: "082",
1904
+ section: "area-b",
1905
+ emitOnlyWhenDifferent: false,
1906
+ note: "An ADDITION, after the subtotal — the Alberta side is Schedule 21 line 017."
2740
1907
  }
2741
1908
  ];
2742
1909
  /** Lines that stand alone rather than forming a federal/Alberta pair. */
@@ -2792,6 +1959,42 @@ const SINGLES = [
2792
1959
  section: "area-a",
2793
1960
  requirement: "mandatory",
2794
1961
  note: "Line 002 minus line 050 plus line 052."
1962
+ },
1963
+ {
1964
+ field: "080",
1965
+ caption: "Subtotal of the Alberta deductions",
1966
+ kind: "money",
1967
+ role: "total",
1968
+ section: "area-b"
1969
+ },
1970
+ {
1971
+ field: "081",
1972
+ caption: "Subtotal of the federal deductions",
1973
+ kind: "money",
1974
+ role: "total",
1975
+ section: "area-b"
1976
+ },
1977
+ {
1978
+ field: "090",
1979
+ caption: "Taxable income for Alberta purposes or (loss)",
1980
+ kind: "money",
1981
+ role: "computed",
1982
+ section: "area-b",
1983
+ requirement: "mandatory",
1984
+ note: "Lines 054 − 080 + 082. Where there is an amount at 082 and 054 − 080 is negative, this must equal 082. Carried to AT1 page 2, line 062.",
1985
+ to: {
1986
+ form: "AT1",
1987
+ line: "000062001",
1988
+ note: "Taxable income for Alberta purposes"
1989
+ }
1990
+ },
1991
+ {
1992
+ field: "091",
1993
+ caption: "Taxable income for federal purposes or (loss)",
1994
+ kind: "money",
1995
+ role: "computed",
1996
+ section: "area-b",
1997
+ note: "Lines 002 − 081 + 083. Where there is an amount at 083 and 002 − 081 is negative, this must equal 083."
2795
1998
  }
2796
1999
  ];
2797
2000
  const pairFields = AT1_SCHEDULE_12_PAIRS.flatMap((p) => {
@@ -2829,9 +2032,9 @@ const AT1_SCHEDULE_12 = {
2829
2032
  line: id$8(field)
2830
2033
  })), ...pairFields].sort((a, b) => a.line.localeCompare(b.line)),
2831
2034
  provenance: {
2832
- document: "research/field-maps/at1-schedules-12-21.md",
2833
- retrieved: "2026-08-08",
2834
- revision: "verified against the live TRA-certified form"
2035
+ document: "research/sources/tra-forms/pdf/AT1SCH12-income-loss-reconciliation-TRA11732.pdf",
2036
+ retrieved: "2026-09-08",
2037
+ revision: "Captions and the Area B reconciling pairs read off the rendered pages; line numbers were separately verified against the live TRA-certified form (research/field-maps/at1-schedules-12-21.md, 2026-08-08)."
2835
2038
  }
2836
2039
  };
2837
2040
  //#endregion
@@ -2905,44 +2108,52 @@ const AT1_SCHEDULE_13_COLUMNS = [
2905
2108
  column: 1,
2906
2109
  line: "001",
2907
2110
  caption: "Class number",
2908
- note: "Chosen from a list, not free text."
2111
+ note: "Chosen from a list, not free text.",
2112
+ printedHeading: "Class number"
2909
2113
  },
2910
2114
  {
2911
2115
  column: 2,
2116
+ printedHeading: "Undepreciated capital cost UCC at the beginning of the year (must equal the closing balance from last year's CCA schedule)",
2912
2117
  line: "003",
2913
2118
  caption: "UCC at the beginning of the year",
2914
2119
  note: "Must equal the closing balance from last year's CCA schedule."
2915
2120
  },
2916
2121
  {
2917
2122
  column: 3,
2123
+ printedHeading: "Cost of acquisitions during the year (new property must be available for use)",
2918
2124
  line: "005",
2919
2125
  caption: "Cost of acquisitions during the year",
2920
2126
  note: "New property must be available for use."
2921
2127
  },
2922
2128
  {
2923
2129
  column: 4,
2130
+ printedHeading: "Cost of acquisitions from column 3 that are designated immediate expensing property (DIEP)",
2924
2131
  line: "039",
2925
2132
  caption: "Of which designated immediate expensing property (DIEP)",
2926
2133
  note: "A subset of column 3, not an addition to it."
2927
2134
  },
2928
2135
  {
2929
2136
  column: 5,
2137
+ printedHeading: "Net adjustments (show negative amounts in brackets)",
2930
2138
  line: "007",
2931
2139
  caption: "Net adjustments",
2932
2140
  note: "SIGNED — negative amounts are shown in brackets."
2933
2141
  },
2934
2142
  {
2935
2143
  column: 6,
2144
+ printedHeading: "Amount from column 5 that is assistance received or receivable during the year for a property, subsequent to its disposition",
2936
2145
  line: "031",
2937
2146
  caption: "Assistance received or receivable, subsequent to disposition"
2938
2147
  },
2939
2148
  {
2940
2149
  column: 7,
2941
2150
  line: "033",
2942
- caption: "Assistance repaid, subsequent to disposition"
2151
+ caption: "Assistance repaid, subsequent to disposition",
2152
+ printedHeading: "Amount from column 5 that is assistance repaid during the year for a property, subsequent to its disposition"
2943
2153
  },
2944
2154
  {
2945
2155
  column: 8,
2156
+ printedHeading: "Proceeds of dispositions during the year (amount not to exceed the capital cost)",
2946
2157
  line: "009",
2947
2158
  caption: "Proceeds of dispositions",
2948
2159
  note: "Not to exceed the capital cost."
@@ -2950,37 +2161,44 @@ const AT1_SCHEDULE_13_COLUMNS = [
2950
2161
  {
2951
2162
  column: 9,
2952
2163
  line: "041",
2953
- caption: "Proceeds of dispositions of the DIEP"
2164
+ caption: "Proceeds of dispositions of the DIEP",
2165
+ printedHeading: "Proceeds of disposition of the DIEP (amount from column 8 that relate to DIEP reported in column 4)"
2954
2166
  },
2955
2167
  {
2956
2168
  column: 11,
2957
2169
  line: "043",
2958
- caption: "UCC of the DIEP"
2170
+ caption: "UCC of the DIEP",
2171
+ printedHeading: "UCC of the DIEP (UCC amount that relates to DIEP reported in column 4)"
2959
2172
  },
2960
2173
  {
2961
2174
  column: 12,
2962
2175
  line: "045",
2963
- caption: "Immediate expensing"
2176
+ caption: "Immediate expensing",
2177
+ printedHeading: "Immediate Expensing"
2964
2178
  },
2965
2179
  {
2966
2180
  column: 14,
2967
2181
  line: "029",
2968
- caption: "Of which AIIP or property in classes 54 to 56"
2182
+ caption: "Of which AIIP or property in classes 54 to 56",
2183
+ printedHeading: "Cost of acquisitions from column 13 that are accelerated investment incentive properties (AIIP) or properties in Classes 54 to 56"
2969
2184
  },
2970
2185
  {
2971
2186
  column: 18,
2187
+ printedHeading: "UCC adjustment for AIIP and property included in Classes 54 to 56 acquired during the year (column 17 multiplied by the relevant factor)",
2972
2188
  line: "035",
2973
2189
  caption: "UCC adjustment for AIIP",
2974
2190
  note: "The accelerated uplift — a different factor from the half-year rule below."
2975
2191
  },
2976
2192
  {
2977
2193
  column: 19,
2194
+ printedHeading: "UCC adjustment for property acquired during the year other than AIIP and property included in Class 54 to 56 (0.5 multiplied by the result of column 13 minus column 14 minus column 6 plus column 7 minus column 8 plus column 9) (if negative enter \"0\")",
2978
2195
  line: "037",
2979
2196
  caption: "UCC adjustment for property other than AIIP",
2980
2197
  note: "The half-year rule: half of net additions is held out of this year’s base."
2981
2198
  },
2982
2199
  {
2983
2200
  column: 20,
2201
+ printedHeading: "CCA rate %",
2984
2202
  line: "013",
2985
2203
  caption: "CCA rate",
2986
2204
  note: "Reported as NA for classes with no fixed rate, such as 13 and 14."
@@ -2988,15 +2206,18 @@ const AT1_SCHEDULE_13_COLUMNS = [
2988
2206
  {
2989
2207
  column: 21,
2990
2208
  line: "015",
2991
- caption: "Recapture of capital cost allowance"
2209
+ caption: "Recapture of capital cost allowance",
2210
+ printedHeading: "Recapture of CCA"
2992
2211
  },
2993
2212
  {
2994
2213
  column: 22,
2995
2214
  line: "017",
2996
- caption: "Terminal loss"
2215
+ caption: "Terminal loss",
2216
+ printedHeading: "Terminal loss"
2997
2217
  },
2998
2218
  {
2999
2219
  column: 23,
2220
+ printedHeading: "CCA (for declining balance method, the result of column 15 plus column 18 minus column 19, multiplied by column 20, or a lower amount, plus column 12)",
3000
2221
  line: "019",
3001
2222
  caption: "Capital cost allowance",
3002
2223
  note: "Declining balance, or a lower amount — the claim is optional."
@@ -3004,7 +2225,8 @@ const AT1_SCHEDULE_13_COLUMNS = [
3004
2225
  {
3005
2226
  column: 24,
3006
2227
  line: "021",
3007
- caption: "UCC at the end of the year"
2228
+ caption: "UCC at the end of the year",
2229
+ printedHeading: "UCC at the end of the year (column 10 minus column 23)"
3008
2230
  }
3009
2231
  ];
3010
2232
  /** The per-return immediate expensing limit, which is not a column. */
@@ -3037,6 +2259,22 @@ const TOTALS$3 = [
3037
2259
  note: "Schedule 12 line 004 is the sum of every occurrence of 013019. The form footer lists 006, 008 and 004 out of order, and filing positionally puts the allowance on the recapture line."
3038
2260
  }
3039
2261
  ];
2262
+ const SECTIONS$29 = [{
2263
+ id: "grid",
2264
+ title: "Alberta capital cost allowance by class",
2265
+ description: "One row per class. Twenty-four columns, of which nineteen carry a line number; the rest are arithmetic the form shows on the way."
2266
+ }, {
2267
+ id: "totals",
2268
+ title: "Totals carried to Schedule 12",
2269
+ description: "Three figures on two different sides of the Alberta reconciliation — recapture is income, the other two are deductions."
2270
+ }];
2271
+ /**
2272
+ * One column's `note`: the form's own heading first, then whatever the
2273
+ * definition adds on top of it. Either half may be absent.
2274
+ */
2275
+ function columnNote(c) {
2276
+ return [c.printedHeading && c.printedHeading !== c.caption ? `Printed on the form: "${c.printedHeading}".` : void 0, c.note].filter(Boolean).join(" ") || void 0;
2277
+ }
3040
2278
  const AT1_SCHEDULE_13 = {
3041
2279
  id: "AT1SCH13",
3042
2280
  program: "AT1",
@@ -3044,15 +2282,7 @@ const AT1_SCHEDULE_13 = {
3044
2282
  title: "Alberta capital cost allowance",
3045
2283
  scheme: "tra-line-item-id",
3046
2284
  taxYears: { from: 2024 },
3047
- sections: [{
3048
- id: "grid",
3049
- title: "Alberta capital cost allowance by class",
3050
- description: "One row per class. Twenty-four columns, of which nineteen carry a line number; the rest are arithmetic the form shows on the way."
3051
- }, {
3052
- id: "totals",
3053
- title: "Totals carried to Schedule 12",
3054
- description: "Three figures on two different sides of the Alberta reconciliation — recapture is income, the other two are deductions."
3055
- }],
2285
+ sections: SECTIONS$29,
3056
2286
  fields: [
3057
2287
  ...RETURN_LEVEL.map(({ field, ...rest }) => ({
3058
2288
  ...rest,
@@ -3067,7 +2297,7 @@ const AT1_SCHEDULE_13 = {
3067
2297
  role: override?.role ?? "input",
3068
2298
  section: "grid",
3069
2299
  ...override?.from ? { from: override.from } : {},
3070
- ...c.note ? { note: c.note } : {}
2300
+ ...columnNote(c) ? { note: columnNote(c) } : {}
3071
2301
  };
3072
2302
  }),
3073
2303
  ...TOTALS$3.map((t) => ({
@@ -3084,11 +2314,16 @@ const AT1_SCHEDULE_13 = {
3084
2314
  }))
3085
2315
  ].sort((a, b) => a.line.localeCompare(b.line)),
3086
2316
  provenance: {
3087
- document: "research/field-maps/at1-schedule-13-cca.md",
3088
- retrieved: "2026-08-07",
3089
- revision: "captured from the live TRA-certified form"
2317
+ document: "research/sources/tra-forms/pdf/AT1SCH13-cca-TRA11733.pdf",
2318
+ retrieved: "2026-09-08",
2319
+ revision: "TRA11733 (AT13) Rev. 2025-10 — every column heading and footnote read off the rendered pages into `printedHeading`; line numbers were separately captured from the live TRA-certified form (research/field-maps/at1-schedule-13-cca.md, 2026-08-07)."
3090
2320
  },
3091
- footnotes: ["This schedule is required if the opening UCC or the CCA claimed for Alberta purposes for any class of assets differs from that for federal purposes.", "All federal notes listed on the T2 Schedule 8 — Capital Cost Allowance — also apply for Alberta purposes."]
2321
+ footnotes: [
2322
+ "This schedule is required if the opening UCC or the CCA claimed for Alberta purposes for any class of assets differs from that for federal purposes.",
2323
+ "Report all monetary amounts in dollars; DO NOT include cents.",
2324
+ "NOTE: All federal notes listed on the T2 Schedule 8 - Capital Cost Allowance, also apply for Alberta purposes.",
2325
+ "Carry forward the amounts from lines 023, 025 and 027 to Schedule 12 lines 006, 008 and 004, respectively."
2326
+ ]
3092
2327
  };
3093
2328
  //#endregion
3094
2329
  //#region src/t2/at1/forms/schedule15.ts
@@ -3172,7 +2407,7 @@ const AT1_SCHEDULE_16 = {
3172
2407
  id: "AT1SCH16",
3173
2408
  program: "AT1",
3174
2409
  schedule: "016",
3175
- title: "Alberta scientific research and experimental development expenditures",
2410
+ title: "Alberta scientific research expenditures",
3176
2411
  scheme: "tra-line-item-id",
3177
2412
  taxYears: { from: 2024 },
3178
2413
  sections: [{
@@ -3183,7 +2418,7 @@ const AT1_SCHEDULE_16 = {
3183
2418
  fields: [
3184
2419
  {
3185
2420
  field: "002",
3186
- caption: "Allowable current-year SR&ED expenditures",
2421
+ caption: "Allowable SR&ED expenditures (federal schedule 32 (T661) line 400)",
3187
2422
  kind: "money",
3188
2423
  role: "carried-in",
3189
2424
  section: "pool",
@@ -3195,7 +2430,7 @@ const AT1_SCHEDULE_16 = {
3195
2430
  },
3196
2431
  {
3197
2432
  field: "004",
3198
- caption: "Deduct: government and non-government assistance",
2433
+ caption: "Government and non-government assistance for expenditures included in above line (use federal schedule 32 (T661) line 430 from 2007 and prior versions; use sum of lines 429, 431 and 432 from 2008 and later versions)",
3199
2434
  kind: "money",
3200
2435
  role: "carried-in",
3201
2436
  section: "pool",
@@ -3207,7 +2442,7 @@ const AT1_SCHEDULE_16 = {
3207
2442
  },
3208
2443
  {
3209
2444
  field: "006",
3210
- caption: "Deduct: previous year's investment tax credit claimed for SR&ED",
2445
+ caption: "Previous year's investment tax credit (ITC) claimed for SR&ED (federal schedule 32 (T661) line 435)",
3211
2446
  kind: "money",
3212
2447
  role: "carried-in",
3213
2448
  section: "pool",
@@ -3218,7 +2453,7 @@ const AT1_SCHEDULE_16 = {
3218
2453
  },
3219
2454
  {
3220
2455
  field: "008",
3221
- caption: "Deduct: sale of SR&ED capital assets and other",
2456
+ caption: "Sale of SR&ED capital assets and other deductions (federal schedule 32 (T661) line 440)",
3222
2457
  kind: "money",
3223
2458
  role: "carried-in",
3224
2459
  section: "pool",
@@ -3229,7 +2464,7 @@ const AT1_SCHEDULE_16 = {
3229
2464
  },
3230
2465
  {
3231
2466
  field: "010",
3232
- caption: "Add: repayments of assistance",
2467
+ caption: "Repayments of government and non-government assistance for SR&ED (federal schedule 32 (T661) line 445)",
3233
2468
  kind: "money",
3234
2469
  role: "carried-in",
3235
2470
  section: "pool",
@@ -3240,7 +2475,7 @@ const AT1_SCHEDULE_16 = {
3240
2475
  },
3241
2476
  {
3242
2477
  field: "012",
3243
- caption: "Add: unclaimed pool balance from the previous year",
2478
+ caption: "Unclaimed SR&ED expenditure pool balance from the previous year",
3244
2479
  kind: "money",
3245
2480
  role: "input",
3246
2481
  section: "pool",
@@ -3248,7 +2483,7 @@ const AT1_SCHEDULE_16 = {
3248
2483
  },
3249
2484
  {
3250
2485
  field: "014",
3251
- caption: "Add: pool transferred on an amalgamation or the wind-up of a wholly-owned subsidiary",
2486
+ caption: "SR&ED expenditure pool transfer from amalgamation or wind-up of a wholly-owned subsidiary",
3252
2487
  kind: "money",
3253
2488
  role: "input",
3254
2489
  section: "pool",
@@ -3256,7 +2491,7 @@ const AT1_SCHEDULE_16 = {
3256
2491
  },
3257
2492
  {
3258
2493
  field: "015",
3259
- caption: "Add: investment tax credit recaptured in the previous taxation year",
2494
+ caption: "Amount of ITC recaptured in the previous tax year (federal schedule 32 (T661) line 453)",
3260
2495
  kind: "money",
3261
2496
  role: "carried-in",
3262
2497
  section: "pool",
@@ -3267,43 +2502,55 @@ const AT1_SCHEDULE_16 = {
3267
2502
  },
3268
2503
  {
3269
2504
  field: "016",
3270
- caption: "Subtotal",
2505
+ caption: "Subtotal: Line 002 - (004 + 006 + 008) + 010 + 012 + 014 + 015",
3271
2506
  kind: "money",
3272
2507
  role: "total",
3273
- section: "pool"
2508
+ section: "pool",
2509
+ note: "If this amount is positive, enter that amount on line 018. If it is NEGATIVE, carry the negative amount forward to Schedule 12, line 034 and enter \"0\" on lines 018, 020 and 022 — a negative pool is an income inclusion, not a nil deduction.",
2510
+ to: {
2511
+ form: "AT1SCH12",
2512
+ line: "012034001",
2513
+ note: "Only when line 016 is negative — carry the negative amount."
2514
+ }
3274
2515
  },
3275
2516
  {
3276
2517
  field: "018",
3277
- caption: "Pool deduction available",
2518
+ caption: "SR&ED expenditure pool deduction available",
3278
2519
  kind: "money",
3279
2520
  role: "computed",
3280
2521
  section: "pool"
3281
2522
  },
3282
2523
  {
3283
2524
  field: "020",
3284
- caption: "Pool deduction claimed",
2525
+ caption: "Deduct: SR&ED expenditure pool deduction claimed in the current year",
3285
2526
  kind: "money",
3286
2527
  role: "input",
3287
2528
  section: "pool",
3288
- note: "DISCRETIONARY, up to the amount available. A loss year should claim less: the pool does not expire, and a deduction against nil income is lost."
2529
+ note: "DISCRETIONARY, up to the amount available. A loss year should claim less: the pool does not expire, and a deduction against nil income is lost. Printed on the form: if other than \"0\", carry this amount forward to Schedule 12, line 034.",
2530
+ to: {
2531
+ form: "AT1SCH12",
2532
+ line: "012034001",
2533
+ note: "If other than \"0\"."
2534
+ }
3289
2535
  },
3290
2536
  {
3291
2537
  field: "022",
3292
- caption: "Unclaimed pool balance carried forward",
2538
+ caption: "Unclaimed SR&ED expenditure pool deduction balance (line 018 - 020)",
3293
2539
  kind: "money",
3294
2540
  role: "computed",
3295
2541
  section: "pool",
3296
- note: "Becomes next year's line 012."
2542
+ note: "Use this amount as the carry forward amount for next year, line 012."
3297
2543
  }
3298
2544
  ].map(({ field, ...rest }) => ({
3299
2545
  ...rest,
3300
2546
  line: id$5(field)
3301
2547
  })),
3302
2548
  provenance: {
3303
- document: "research/field-maps/at1-schedules-16-17.md",
3304
- retrieved: "2026-08-08",
3305
- revision: "verified against the live TRA-certified form"
3306
- }
2549
+ document: "research/sources/tra-forms/pdf/AT1SCH16-scientific-research-TRA11737.pdf",
2550
+ retrieved: "2026-09-08",
2551
+ revision: "TRA11737 (AT238) Rev. 2026-03 — captions and footnotes read off the rendered page; line numbers cross-checked against the live TRA-certified form (research/field-maps/at1-schedules-16-17.md, 2026-08-08)."
2552
+ },
2553
+ footnotes: ["This schedule is required if the opening balance or the claim for Alberta purposes differs from that for federal purposes.", "Report all monetary amounts in dollars; DO NOT include cents. Show negative amounts in brackets ( )."]
3307
2554
  };
3308
2555
  /** Line 022 becomes the following year's line 012. */
3309
2556
  const AT1_SCHEDULE_16_CARRYFORWARD_LINE = "016022001";
@@ -3313,7 +2560,7 @@ const AT1_SCHEDULE_16_CARRYFORWARD_LINE = "016022001";
3313
2560
  const id$4 = (field, occurrence = 1) => `017${field}${String(occurrence).padStart(3, "0")}`;
3314
2561
  const AT1_SCHEDULE_17_RESERVES = [
3315
2562
  {
3316
- label: "Doubtful debts",
2563
+ label: "Reserve for doubtful debts",
3317
2564
  opening: "001",
3318
2565
  transfer: "031",
3319
2566
  closing: "061",
@@ -3322,7 +2569,7 @@ const AT1_SCHEDULE_17_RESERVES = [
3322
2569
  federalClosing: "120"
3323
2570
  },
3324
2571
  {
3325
- label: "Undelivered goods and services not rendered",
2572
+ label: "Reserve for undelivered goods and services not rendered",
3326
2573
  opening: "003",
3327
2574
  transfer: "033",
3328
2575
  closing: "063",
@@ -3331,7 +2578,7 @@ const AT1_SCHEDULE_17_RESERVES = [
3331
2578
  federalClosing: "140"
3332
2579
  },
3333
2580
  {
3334
- label: "Prepaid rent",
2581
+ label: "Reserve for prepaid rent",
3335
2582
  opening: "005",
3336
2583
  transfer: "035",
3337
2584
  closing: "065",
@@ -3340,7 +2587,7 @@ const AT1_SCHEDULE_17_RESERVES = [
3340
2587
  federalClosing: "160"
3341
2588
  },
3342
2589
  {
3343
- label: "Returnable containers",
2590
+ label: "Reserve for returnable containers",
3344
2591
  opening: "009",
3345
2592
  transfer: "039",
3346
2593
  closing: "069",
@@ -3349,7 +2596,7 @@ const AT1_SCHEDULE_17_RESERVES = [
3349
2596
  federalClosing: "200"
3350
2597
  },
3351
2598
  {
3352
- label: "Unpaid amounts",
2599
+ label: "Reserve for unpaid amounts",
3353
2600
  opening: "011",
3354
2601
  transfer: "041",
3355
2602
  closing: "071",
@@ -3358,19 +2605,19 @@ const AT1_SCHEDULE_17_RESERVES = [
3358
2605
  federalClosing: "220"
3359
2606
  },
3360
2607
  {
3361
- label: "Insurance corporations policy reserves",
2608
+ label: "Insurance Corporations Policy Reserves",
3362
2609
  opening: "013",
3363
2610
  transfer: "043",
3364
2611
  closing: "073"
3365
2612
  },
3366
2613
  {
3367
- label: "Bank reserves",
2614
+ label: "Bank Reserves",
3368
2615
  opening: "015",
3369
2616
  transfer: "045",
3370
2617
  closing: "075"
3371
2618
  },
3372
2619
  {
3373
- label: "Other tax reserves",
2620
+ label: "Other Tax Reserves",
3374
2621
  opening: "017",
3375
2622
  transfer: "047",
3376
2623
  closing: "077",
@@ -3381,12 +2628,12 @@ const AT1_SCHEDULE_17_RESERVES = [
3381
2628
  ];
3382
2629
  const SECTIONS$26 = [{
3383
2630
  id: "reserves",
3384
- title: "Continuity of reserves",
2631
+ title: "Reserves",
3385
2632
  description: "Eight reserve kinds. Six mirror federal Schedule 13; policy reserves and bank reserves exist only on the Alberta form."
3386
2633
  }, {
3387
- id: "totals",
3388
- title: "Totals carried to Schedule 12",
3389
- description: "Two totals, because the swing has two halves what returns to income and what is deducted again."
2634
+ id: "carried-forward",
2635
+ title: "Carried forward to Schedule 12",
2636
+ description: "Line 091 is the sum of the opening and transfer totals. Line 081, the closing total, carries separately from inside the reserves box."
3390
2637
  }];
3391
2638
  const COLUMNS$1 = [
3392
2639
  [
@@ -3396,7 +2643,7 @@ const COLUMNS$1 = [
3396
2643
  ],
3397
2644
  [
3398
2645
  "transfer",
3399
- "Transfer on a wind-up or amalgamation",
2646
+ "Transfer on amalgamation or wind-up of subsidiary",
3400
2647
  "federalTransfer"
3401
2648
  ],
3402
2649
  [
@@ -3424,24 +2671,24 @@ const reserveFields$1 = AT1_SCHEDULE_17_RESERVES.flatMap((r) => COLUMNS$1.map(([
3424
2671
  const TOTALS$2 = [
3425
2672
  {
3426
2673
  line: id$4("021"),
3427
- caption: "Total of the opening balances",
2674
+ caption: "TOTALS: Balance at the beginning of the year",
3428
2675
  kind: "money",
3429
2676
  role: "total",
3430
- section: "totals"
2677
+ section: "reserves"
3431
2678
  },
3432
2679
  {
3433
2680
  line: id$4("051"),
3434
- caption: "Total of the transfers on wind-up or amalgamation",
2681
+ caption: "TOTALS: Transfer on amalgamation or wind-up of subsidiary",
3435
2682
  kind: "money",
3436
2683
  role: "total",
3437
- section: "totals"
2684
+ section: "reserves"
3438
2685
  },
3439
2686
  {
3440
2687
  line: id$4("081"),
3441
- caption: "Total of the closing balances",
2688
+ caption: "TOTALS: Balance at the end of the year",
3442
2689
  kind: "money",
3443
2690
  role: "total",
3444
- section: "totals",
2691
+ section: "reserves",
3445
2692
  to: {
3446
2693
  form: "AT1SCH12",
3447
2694
  line: "012038001"
@@ -3450,10 +2697,10 @@ const TOTALS$2 = [
3450
2697
  },
3451
2698
  {
3452
2699
  line: id$4("091"),
3453
- caption: "Total of line 021 plus line 051",
2700
+ caption: "Line 021 + line 051 =",
3454
2701
  kind: "money",
3455
2702
  role: "computed",
3456
- section: "totals",
2703
+ section: "carried-forward",
3457
2704
  to: {
3458
2705
  form: "AT1SCH12",
3459
2706
  line: "012036001"
@@ -3465,15 +2712,15 @@ const AT1_SCHEDULE_17 = {
3465
2712
  id: "AT1SCH17",
3466
2713
  program: "AT1",
3467
2714
  schedule: "017",
3468
- title: "Alberta continuity of reserves",
2715
+ title: "Alberta reserves",
3469
2716
  scheme: "tra-line-item-id",
3470
2717
  taxYears: { from: 2024 },
3471
2718
  sections: SECTIONS$26,
3472
2719
  fields: [...reserveFields$1, ...TOTALS$2].sort((a, b) => a.line.localeCompare(b.line)),
3473
2720
  provenance: {
3474
- document: "research/field-maps/at1-schedules-16-17.md",
3475
- retrieved: "2026-08-08",
3476
- revision: "verified line by line against the live TRA-certified form"
2721
+ document: "research/sources/tra-forms/pdf/AT1SCH17-reserves-TRA11738.pdf",
2722
+ retrieved: "2026-09-08",
2723
+ revision: "TRA11738 (AT170) Rev. 2026-06 — reserve labels, column headings and the two carry-forwards read off the rendered page; line numbers were separately verified line by line against the live TRA-certified form (research/field-maps/at1-schedules-16-17.md, 2026-08-08)."
3477
2724
  },
3478
2725
  footnotes: ["This schedule is required if the opening balance or the claim for Alberta purposes differs from that for federal purposes."]
3479
2726
  };
@@ -3483,35 +2730,35 @@ const AT1_SCHEDULE_17 = {
3483
2730
  const id$3 = (field, occurrence = 1) => `018${field}${String(occurrence).padStart(3, "0")}`;
3484
2731
  const AT1_SCHEDULE_18_CATEGORIES = [
3485
2732
  {
3486
- label: "Shares",
2733
+ label: "Total of all shares",
3487
2734
  proceeds: "002",
3488
2735
  adjustedCostBase: "022",
3489
2736
  outlays: "042",
3490
2737
  gainOrLoss: "054"
3491
2738
  },
3492
2739
  {
3493
- label: "Real estate",
2740
+ label: "Total of all real estate",
3494
2741
  proceeds: "004",
3495
2742
  adjustedCostBase: "024",
3496
2743
  outlays: "044",
3497
2744
  gainOrLoss: "055"
3498
2745
  },
3499
2746
  {
3500
- label: "Bonds",
2747
+ label: "Total of all bonds",
3501
2748
  proceeds: "006",
3502
2749
  adjustedCostBase: "026",
3503
2750
  outlays: "046",
3504
2751
  gainOrLoss: "056"
3505
2752
  },
3506
2753
  {
3507
- label: "Other properties",
2754
+ label: "Total of all other properties",
3508
2755
  proceeds: "008",
3509
2756
  adjustedCostBase: "028",
3510
2757
  outlays: "048",
3511
2758
  gainOrLoss: "057"
3512
2759
  },
3513
2760
  {
3514
- label: "Personal-use property",
2761
+ label: "Total of all personal-use property",
3515
2762
  proceeds: "010",
3516
2763
  adjustedCostBase: "030",
3517
2764
  outlays: "050",
@@ -3519,7 +2766,7 @@ const AT1_SCHEDULE_18_CATEGORIES = [
3519
2766
  lossRestricted: true
3520
2767
  },
3521
2768
  {
3522
- label: "Listed personal property",
2769
+ label: "Total of all listed personal property",
3523
2770
  proceeds: "012",
3524
2771
  adjustedCostBase: "032",
3525
2772
  outlays: "052",
@@ -3545,15 +2792,28 @@ const SECTIONS$25 = [
3545
2792
  description: "A capital loss on a small business corporation, deductible against any income."
3546
2793
  }
3547
2794
  ];
2795
+ /**
2796
+ * The four printed columns, and the prefix §3.2.3.19 puts on each column's own
2797
+ * Line Name — "Adjusted cost base: Total of all shares", not "Shares — B".
2798
+ * Column A carries no prefix at all in the spec, which is why its entry is empty.
2799
+ *
2800
+ * The personal-use and listed-personal-property rows word column D as "Gain:"
2801
+ * rather than "Gain or (loss):", because a loss on those categories is not
2802
+ * deductible — the page says so twice ("Report gain only", "Note: losses are not
2803
+ * deductible"), and 018058's own rule is "if amount is negative, default to
2804
+ * zero". See `gainColumnPrefix` below.
2805
+ */
3548
2806
  const COLUMNS = [
3549
- ["proceeds", "A — proceeds of disposition"],
3550
- ["adjustedCostBase", "B — adjusted cost base"],
3551
- ["outlays", "C — outlays and expenses"],
3552
- ["gainOrLoss", "D — gain or (loss)"]
2807
+ ["proceeds", ""],
2808
+ ["adjustedCostBase", "Adjusted cost base: "],
2809
+ ["outlays", "Outlays and expenses: "],
2810
+ ["gainOrLoss", "Gain or (loss): "]
3553
2811
  ];
2812
+ /** Column D's prefix for one category — restricted-loss categories print "Gain:". */
2813
+ const gainColumnPrefix = (c) => c.lossRestricted ? "Gain: " : "Gain or (loss): ";
3554
2814
  const categoryFields = AT1_SCHEDULE_18_CATEGORIES.flatMap((c) => COLUMNS.map(([key, columnCaption]) => ({
3555
2815
  line: id$3(c[key]),
3556
- caption: `${c.label} ${columnCaption}`,
2816
+ caption: `${key === "gainOrLoss" ? gainColumnPrefix(c) : columnCaption}${c.label}`,
3557
2817
  kind: "money",
3558
2818
  role: key === "gainOrLoss" ? "computed" : "input",
3559
2819
  section: "dispositions",
@@ -3562,34 +2822,39 @@ const categoryFields = AT1_SCHEDULE_18_CATEGORIES.flatMap((c) => COLUMNS.map(([k
3562
2822
  const REST = [
3563
2823
  {
3564
2824
  field: "001",
3565
- caption: "Is the corporation electing to transfer property under ACTA subsection 14.1(3), 14.2(3) or 16.1(3)?",
2825
+ caption: "Is the corporation electing to transfer property as stated under ACTA section 14.1(3), 14.2(3) or 16.1(3)?",
3566
2826
  kind: "flag",
3567
2827
  role: "input",
3568
2828
  section: "dispositions"
3569
2829
  },
3570
2830
  {
3571
2831
  field: "053",
3572
- caption: "Add: adjustment under subsection 112(3) to losses",
2832
+ caption: "Add: Line 160 of federal Schedule 6",
3573
2833
  kind: "money",
3574
2834
  role: "carried-in",
3575
2835
  section: "dispositions",
3576
2836
  from: {
3577
2837
  form: "T2SCH6",
3578
2838
  line: "160",
3579
- note: "Enters the shares row"
2839
+ note: "§3.2.3.19: \"Must equal fed 006160.\" The page prints only the reference, not a description."
3580
2840
  }
3581
2841
  },
3582
2842
  {
3583
2843
  field: "060",
3584
- caption: "Subtract: unapplied listed personal property losses from other years",
2844
+ caption: "Subtract: Unapplied listed personal property losses from other years up to the total listed personal property gains",
3585
2845
  kind: "money",
3586
2846
  role: "input",
3587
2847
  section: "dispositions",
3588
- note: "Capped at the total listed personal property gains."
2848
+ note: "Net listed personal property losses may only be applied against listed personal property gains. Capped at line 059; where Schedule 21 exists, capped at the lesser of that and Schedule 21 line 115.",
2849
+ to: {
2850
+ form: "AT1SCH21",
2851
+ line: "021119001",
2852
+ note: "Printed on the form: \"carry this amount forward to schedule 21, line 119, if applicable\"."
2853
+ }
3589
2854
  },
3590
2855
  {
3591
2856
  field: "062",
3592
- caption: "Total of column D",
2857
+ caption: "Total of Column D",
3593
2858
  kind: "money",
3594
2859
  role: "computed",
3595
2860
  section: "adjustments",
@@ -3597,28 +2862,28 @@ const REST = [
3597
2862
  },
3598
2863
  {
3599
2864
  field: "064",
3600
- caption: "Add: capital gains dividends",
2865
+ caption: "Capital gains dividends",
3601
2866
  kind: "money",
3602
2867
  role: "input",
3603
2868
  section: "adjustments"
3604
2869
  },
3605
2870
  {
3606
2871
  field: "066",
3607
- caption: "Add: capital gain reserve, opening balance",
2872
+ caption: "Add: capital gain reserve opening balance, if any",
3608
2873
  kind: "money",
3609
2874
  role: "input",
3610
2875
  section: "adjustments"
3611
2876
  },
3612
2877
  {
3613
2878
  field: "068",
3614
- caption: "Deduct: capital gain reserve, closing balance",
2879
+ caption: "Deduct: capital gain reserve closing balance, if any",
3615
2880
  kind: "money",
3616
2881
  role: "input",
3617
2882
  section: "adjustments"
3618
2883
  },
3619
2884
  {
3620
2885
  field: "070",
3621
- caption: "Capital gain or (loss)",
2886
+ caption: "Capital gain or (loss): Line 062 + line 064 + line 066 - line 068",
3622
2887
  kind: "money",
3623
2888
  role: "computed",
3624
2889
  section: "adjustments",
@@ -3626,21 +2891,21 @@ const REST = [
3626
2891
  },
3627
2892
  {
3628
2893
  field: "071",
3629
- caption: "Deduct: gain on donated listed securities under paragraph 38(a.1)(i) or (iii)",
2894
+ caption: "Deduct: Gain on the donation to a qualified donee of a share, debt obligation, or right listed on a designated stock exchange and other securities under paragraphs 38(a.1)(i) and (iii) of the federal Act",
3630
2895
  kind: "money",
3631
2896
  role: "input",
3632
2897
  section: "adjustments"
3633
2898
  },
3634
2899
  {
3635
2900
  field: "073",
3636
- caption: "Deduct: gain on donated ecologically sensitive land under paragraph 38(a.2)",
2901
+ caption: "Deduct: Gain on the donation to a qualified donee of ecologically sensitive land under paragraph 38(a.2) of the federal Act",
3637
2902
  kind: "money",
3638
2903
  role: "input",
3639
2904
  section: "adjustments"
3640
2905
  },
3641
2906
  {
3642
2907
  field: "075",
3643
- caption: "Subtotal",
2908
+ caption: "Line 070 minus (line 071 + 073)",
3644
2909
  kind: "money",
3645
2910
  role: "computed",
3646
2911
  section: "adjustments",
@@ -3648,7 +2913,7 @@ const REST = [
3648
2913
  },
3649
2914
  {
3650
2915
  field: "077",
3651
- caption: "Exemption threshold at the time of disposal",
2916
+ caption: "Add: Exemption threshold at time of disposal",
3652
2917
  kind: "money",
3653
2918
  role: "input",
3654
2919
  section: "adjustments",
@@ -3656,14 +2921,14 @@ const REST = [
3656
2921
  },
3657
2922
  {
3658
2923
  field: "078",
3659
- caption: "Total capital gains from the disposition of the actual property",
2924
+ caption: "Add: Total of all capital gains from the disposition of the actual property",
3660
2925
  kind: "money",
3661
2926
  role: "input",
3662
2927
  section: "adjustments"
3663
2928
  },
3664
2929
  {
3665
2930
  field: "079",
3666
- caption: "Flow-through share adjustment",
2931
+ caption: "Lesser of lines 077 or 078",
3667
2932
  kind: "money",
3668
2933
  role: "computed",
3669
2934
  section: "adjustments",
@@ -3671,7 +2936,7 @@ const REST = [
3671
2936
  },
3672
2937
  {
3673
2938
  field: "096",
3674
- caption: "Add: taxable capital gains under section 34.2",
2939
+ caption: "Taxable capital gains under section 34.2 of the federal Act (line 275 of federal Schedule 73, Income Inclusion Summary for Corporations that are members of Partnerships) X 2 =",
3675
2940
  kind: "money",
3676
2941
  role: "carried-in",
3677
2942
  section: "adjustments",
@@ -3683,7 +2948,7 @@ const REST = [
3683
2948
  },
3684
2949
  {
3685
2950
  field: "097",
3686
- caption: "Subtotal",
2951
+ caption: "Subtotal: Line 075 + line 079 + line 096",
3687
2952
  kind: "money",
3688
2953
  role: "computed",
3689
2954
  section: "adjustments",
@@ -3691,7 +2956,7 @@ const REST = [
3691
2956
  },
3692
2957
  {
3693
2958
  field: "098",
3694
- caption: "Deduct: allowable capital losses under section 34.2",
2959
+ caption: "Deduct: Allowable capital losses under section 34.2 of the federal Act (line 285 of federal Schedule 73, Income Inclusion Summary for Corporations that are Members of Partnerships) X 2 =",
3695
2960
  kind: "money",
3696
2961
  role: "carried-in",
3697
2962
  section: "adjustments",
@@ -3703,76 +2968,91 @@ const REST = [
3703
2968
  },
3704
2969
  {
3705
2970
  field: "099",
3706
- caption: "Total capital gains or losses",
2971
+ caption: "Total capital gains or losses: Line 097 - line 098",
3707
2972
  kind: "money",
3708
2973
  role: "computed",
3709
2974
  section: "adjustments",
3710
- note: "Line 097 minus line 098."
2975
+ note: "If line 099 is NEGATIVE, carry the capital loss forward to Schedule 21, line 057, and no taxable capital gain arises at line 076.",
2976
+ to: {
2977
+ form: "AT1SCH21",
2978
+ line: "021057001",
2979
+ note: "Only when negative — the capital loss, not the gain."
2980
+ }
3711
2981
  },
3712
2982
  {
3713
2983
  field: "076",
3714
- caption: "Taxable capital gain",
2984
+ caption: "Taxable capital gain: Line 099 X 50%",
3715
2985
  kind: "money",
3716
2986
  role: "computed",
3717
2987
  section: "adjustments",
3718
- note: "Line 099 at the inclusion rate. The only place the halving happens."
2988
+ note: "Line 099 at the inclusion rate the only place the halving happens. If line 099 is positive, carry this forward to Schedule 12, line 040. The 50% printed here is the current rate; a year whose dispositions straddle an inclusion-rate change needs supporting documentation with the RSI (§3.2.3.19 filing-requirement exception).",
2989
+ to: {
2990
+ form: "AT1SCH12",
2991
+ line: "012040001",
2992
+ note: "Only when line 099 is positive."
2993
+ }
3719
2994
  },
3720
2995
  {
3721
2996
  field: "082",
3722
- caption: "Name of the small business corporation",
2997
+ caption: "Name of small business corporation",
3723
2998
  kind: "text",
3724
2999
  role: "input",
3725
3000
  section: "abil"
3726
3001
  },
3727
3002
  {
3728
3003
  field: "084",
3729
- caption: "Shares (1) or debt (2)",
3004
+ caption: "Specify: 1 = shares or 2 = debt",
3730
3005
  kind: "code",
3731
3006
  role: "input",
3732
3007
  section: "abil"
3733
3008
  },
3734
3009
  {
3735
3010
  field: "086",
3736
- caption: "Date of acquisition",
3011
+ caption: "Date of Acquisition (YYYYMMDD)",
3737
3012
  kind: "date",
3738
3013
  role: "input",
3739
3014
  section: "abil"
3740
3015
  },
3741
3016
  {
3742
3017
  field: "088",
3743
- caption: "A proceeds of disposition",
3018
+ caption: "A - Proceeds of disposition",
3744
3019
  kind: "money",
3745
3020
  role: "input",
3746
3021
  section: "abil"
3747
3022
  },
3748
3023
  {
3749
3024
  field: "090",
3750
- caption: "B adjusted cost base",
3025
+ caption: "B - Adjusted cost base",
3751
3026
  kind: "money",
3752
3027
  role: "input",
3753
3028
  section: "abil"
3754
3029
  },
3755
3030
  {
3756
3031
  field: "092",
3757
- caption: "C outlays and expenses",
3032
+ caption: "C - Outlays and expenses (re dispositions)",
3758
3033
  kind: "money",
3759
3034
  role: "input",
3760
3035
  section: "abil"
3761
3036
  },
3762
3037
  {
3763
3038
  field: "094",
3764
- caption: "Allowable business investment loss",
3039
+ caption: "Allowable Business Investment Loss: total of column D X Inclusion Rate",
3765
3040
  kind: "money",
3766
3041
  role: "computed",
3767
3042
  section: "abil",
3768
- note: "Column D at the inclusion rate. Unlike an ordinary capital loss this is deductible against ANY income, which is why it has its own part."
3043
+ note: "Column D at the inclusion rate (see the note at line 076). Unlike an ordinary capital loss this is deductible against ANY income, which is why it has its own part. Printed on the form: carry this amount forward to Schedule 12, and include it in line 040.",
3044
+ to: {
3045
+ form: "AT1SCH12",
3046
+ line: "012040001",
3047
+ note: "Included IN line 040, alongside the taxable capital gain at line 076 — not instead of it."
3048
+ }
3769
3049
  }
3770
3050
  ];
3771
3051
  const AT1_SCHEDULE_18 = {
3772
3052
  id: "AT1SCH18",
3773
3053
  program: "AT1",
3774
3054
  schedule: "018",
3775
- title: "Alberta dispositions of capital property",
3055
+ title: "Alberta dispositions of capital property (for taxation years ending on or after July 1, 2019)",
3776
3056
  scheme: "tra-line-item-id",
3777
3057
  taxYears: { from: 2024 },
3778
3058
  sections: SECTIONS$25,
@@ -3781,10 +3061,17 @@ const AT1_SCHEDULE_18 = {
3781
3061
  line: id$3(field)
3782
3062
  }))].sort((a, b) => a.line.localeCompare(b.line)),
3783
3063
  provenance: {
3784
- document: "research/field-maps/at1-schedule-18-dispositions.md",
3785
- retrieved: "2026-08-08",
3786
- revision: "verified against the live TRA-certified form"
3787
- }
3064
+ document: "research/sources/tra-forms/xfa/AT1SCH18-dispositions-TRA15156.template.txt",
3065
+ retrieved: "2026-09-08",
3066
+ revision: "TRA15156 / AT18 Rev. 2026-08. The PDF is a DYNAMIC XFA form — its pages carry only Adobe's placeholder, so the captions come from the XFA template stream (extraction and how to reproduce it are in the cited file). The 054-059 row mapping and line 053 were settled against the spec’s own business rules in AT1-Chapter3-2026.4 §3.2.3.19, since the template’s two coordinate blocks use different units and adjacency alone cannot pair a number with its caption. Line numbers were separately cross-checked against the live TRA-certified form (research/field-maps/at1-schedule-18-dispositions.md, 2026-08-08)."
3067
+ },
3068
+ footnotes: [
3069
+ "This schedule is required if the opening balance, proceeds of disposition, adjusted cost base or gain/loss for Alberta purposes differs from that for federal purposes.",
3070
+ "Report all monetary amounts in dollars; DO NOT include cents. Show negative amounts in brackets ( ).",
3071
+ "Net listed personal property losses may only be applied against listed personal property gains. Do not include listed personal property losses in total.",
3072
+ "If the corporation is electing to transfer property under ACTA section 14.1(3), 14.2(3) or 16.1(3), the applicable Alberta election form (AT107, AT108 or AT109) must be completed and submitted by the corporation acquiring the property (\"transferee\"). See the election form for filing instructions.",
3073
+ "If dispositions in a taxation year straddle one or more inclusion rate periods, supporting documentation MUST be submitted with the AT1 RSI to detail how the inclusion rate was calculated."
3074
+ ]
3788
3075
  };
3789
3076
  /** Lines 096 and 098 gross the federal Schedule 73 figures back up. */
3790
3077
  const AT1_SECTION_34_2_GROSS_UP = 2;
@@ -3832,6 +3119,18 @@ const AT1_SCHEDULE_20_POOLS = [{
3832
3119
  applied: "016",
3833
3120
  closing: "018"
3834
3121
  },
3122
+ captions: {
3123
+ opening: "Charitable donations at the end of the preceding taxation year",
3124
+ expired: "Deduct: donations expired after five taxation years",
3125
+ beginning: "Charitable donations at the beginning of the taxation year",
3126
+ transferred: "Add: Donations transferred on amalgamation or wind-up of subsidiary",
3127
+ currentYear: "Add: Total current year charitable donations made",
3128
+ subtotal: "Subtotal: Lines 008 + 010",
3129
+ acquisitionOfControl: "Deduct: Adjustment for an acquisition of control (for donations made after March 22, 2004)",
3130
+ available: "Total donations available: lines 006 + 012 - 013",
3131
+ applied: "Amount applied against taxable income",
3132
+ closing: "Charitable donations closing balance: lines 014 - 016"
3133
+ },
3835
3134
  toSchedule12: "056"
3836
3135
  }, {
3837
3136
  key: "gifts",
@@ -3848,77 +3147,100 @@ const AT1_SCHEDULE_20_POOLS = [{
3848
3147
  applied: "076",
3849
3148
  closing: "078"
3850
3149
  },
3150
+ captions: {
3151
+ opening: "Gifts balance at the end of the preceding taxation year",
3152
+ expired: "Deduct: gifts expired after five taxation years, or after ten taxation years for gifts of certified ecological sensitive land made after February 10, 2014",
3153
+ beginning: "Gifts balance at the beginning of the taxation year",
3154
+ transferred: "Add: Gifts transferred on amalgamation or wind-up of a subsidiary",
3155
+ currentYear: "Add: Total current year gifts",
3156
+ subtotal: "Subtotal: Lines 068 + 070",
3157
+ acquisitionOfControl: "Deduct: Adjustment for an acquisition of control (for donations made after March 22, 2004)",
3158
+ available: "Total gifts available: lines 066 + 072 - 073",
3159
+ applied: "Deduct: Amount applied against taxable income",
3160
+ closing: "Gifts closing balance: lines 074 - 076"
3161
+ },
3851
3162
  toSchedule12: "058"
3852
3163
  }];
3164
+ /**
3165
+ * In PRINTED order, page by page. The renderer walks this array, so an order
3166
+ * that reads well in the abstract is the wrong order here — a preparer holding
3167
+ * the paper form should find the blocks where the paper puts them. Area B sits
3168
+ * directly beneath Area A on page 1 because it is the ceiling on Area A's own
3169
+ * claim; the gifts continuity is overleaf.
3170
+ */
3853
3171
  const SECTIONS$24 = [
3854
3172
  {
3855
3173
  id: "charitable",
3856
3174
  title: "Area A — Charitable donations",
3857
- description: "The ordinary donation pool, capped by the Area B maximum."
3175
+ description: "The ordinary donation pool, capped by the Area B maximum.",
3176
+ page: 1
3858
3177
  },
3859
3178
  {
3860
- id: "gifts",
3861
- title: "Area AGifts to Canada, cultural property and ecological land",
3862
- description: "The same ten-row continuity, sixty lines apart. These gifts carry different limits, so a figure in the wrong pool is a wrong return even though the rows still foot."
3179
+ id: "maximum",
3180
+ title: "Area BMaximum deduction calculation for donations for taxation years starting after 1996",
3181
+ description: "75% of income, plus 25% of the taxable capital gain and recapture on gifted capital property. Alberta does have this ceiling.",
3182
+ page: 1
3863
3183
  },
3864
3184
  {
3865
- id: "maximum",
3866
- title: "Area B Maximum deduction",
3867
- description: "75% of income, plus 25% of the taxable capital gain and recapture on gifted capital property. Alberta does have this ceiling."
3185
+ id: "gifts",
3186
+ title: "Gifts to Canada or a province, gifts of certified cultural property and gifts of certified ecologically sensitive land",
3187
+ description: "Report the combined totals for all three categories of gifts. The same ten-row continuity as Area A, sixty lines apart but these gifts carry different limits, so a figure in the wrong pool is a wrong return even though the rows still foot.",
3188
+ page: 2
3868
3189
  },
3869
3190
  {
3870
3191
  id: "carryforward",
3871
- title: "Carryforward available, by category",
3192
+ title: "Amount available for carryforward by year of origin",
3193
+ page: 2,
3872
3194
  description: "Filed only when at least one category figure is entered. Charitable donations (002-018) and gifts (062-078) are each ONE combined continuity on this schedule; this block reports how much of the gifts pool's closing balance belongs to each of the three federal source categories, plus the medicine-gift deduction (ITA s.110.1(1)(a.1)), which nothing else on this schedule models at all."
3873
3195
  }
3874
3196
  ];
3875
3197
  const MAXIMUM = [
3876
3198
  {
3877
3199
  field: "030",
3878
- caption: "Income component of the maximum",
3200
+ caption: "Alberta net income for tax purposes*: Schedule 12, line 054 x 75%",
3879
3201
  kind: "money",
3880
3202
  role: "computed",
3881
3203
  section: "maximum",
3882
- note: "75% of Alberta net income for the year."
3204
+ note: "75% of Alberta net income for the year. The asterisk is the form’s own, and points at the credit-union footnote below."
3883
3205
  },
3884
3206
  {
3885
3207
  field: "032",
3886
- caption: "Taxable capital gains arising on gifts of capital property",
3208
+ caption: "Taxable capital gains arising in respect of gifts of capital property",
3887
3209
  kind: "money",
3888
3210
  role: "input",
3889
3211
  section: "maximum"
3890
3212
  },
3891
3213
  {
3892
3214
  field: "034",
3893
- caption: "Taxable capital gain on deemed gifts of non-qualifying securities (ITA subsection 40(1.01))",
3215
+ caption: "Taxable capital gain in respect of deemed gifts of non-qualifying securities per ITA subsection 40(1.01)",
3894
3216
  kind: "money",
3895
3217
  role: "input",
3896
3218
  section: "maximum"
3897
3219
  },
3898
3220
  {
3899
3221
  field: "036",
3900
- caption: "Recapture of capital cost allowance on charitable gifts",
3222
+ caption: "The amount of the recapture of capital cost allowance in respect of charitable gifts",
3901
3223
  kind: "money",
3902
3224
  role: "input",
3903
3225
  section: "maximum"
3904
3226
  },
3905
3227
  {
3906
3228
  field: "038",
3907
- caption: "Proceeds of disposition, less outlays and expenses",
3229
+ caption: "Proceeds of dispositions less outlays and expenses",
3908
3230
  kind: "money",
3909
3231
  role: "input",
3910
3232
  section: "maximum"
3911
3233
  },
3912
3234
  {
3913
3235
  field: "040",
3914
- caption: "Capital cost of the gifted property",
3236
+ caption: "The capital cost",
3915
3237
  kind: "money",
3916
3238
  role: "input",
3917
3239
  section: "maximum"
3918
3240
  },
3919
3241
  {
3920
3242
  field: "042",
3921
- caption: "Lesser of proceeds of disposition and capital cost of gifted capital property",
3243
+ caption: "The lesser of amounts on lines 038 and 040",
3922
3244
  kind: "money",
3923
3245
  role: "computed",
3924
3246
  section: "maximum",
@@ -3926,14 +3248,14 @@ const MAXIMUM = [
3926
3248
  },
3927
3249
  {
3928
3250
  field: "044",
3929
- caption: "Allowable recapture on gifted capital property",
3251
+ caption: "The lesser of amounts on lines 036 and 042",
3930
3252
  kind: "money",
3931
3253
  role: "computed",
3932
3254
  section: "maximum"
3933
3255
  },
3934
3256
  {
3935
3257
  field: "046",
3936
- caption: "Gains component of the maximum",
3258
+ caption: "Calculate: (lines 032 + 034 + 044) x 25%",
3937
3259
  kind: "money",
3938
3260
  role: "computed",
3939
3261
  section: "maximum",
@@ -3941,7 +3263,7 @@ const MAXIMUM = [
3941
3263
  },
3942
3264
  {
3943
3265
  field: "048",
3944
- caption: "Maximum deduction for the year",
3266
+ caption: "Maximum deduction allowable: lines 030 + 046",
3945
3267
  kind: "money",
3946
3268
  role: "computed",
3947
3269
  section: "maximum",
@@ -3949,7 +3271,7 @@ const MAXIMUM = [
3949
3271
  },
3950
3272
  {
3951
3273
  field: "090",
3952
- caption: "Year of origin",
3274
+ caption: "Year of origin YYYY/MM/DD",
3953
3275
  kind: "date",
3954
3276
  role: "input",
3955
3277
  section: "carryforward",
@@ -3966,7 +3288,7 @@ const MAXIMUM = [
3966
3288
  },
3967
3289
  {
3968
3290
  field: "094",
3969
- caption: "Gifts to Canada, a province or territory available for carryforward",
3291
+ caption: "Gifts to Canada, a province, or territory available for carryforward",
3970
3292
  kind: "money",
3971
3293
  role: "input",
3972
3294
  section: "carryforward",
@@ -4030,12 +3352,12 @@ const AT1_SCHEDULE_20 = {
4030
3352
  scheme: "tra-line-item-id",
4031
3353
  taxYears: { from: 2024 },
4032
3354
  sections: SECTIONS$24,
4033
- fields: [...AT1_SCHEDULE_20_POOLS.flatMap((pool) => CONTINUITY_ROWS.map(([key, caption]) => {
3355
+ fields: [...AT1_SCHEDULE_20_POOLS.flatMap((pool) => CONTINUITY_ROWS.map(([key]) => {
4034
3356
  const computed = key === "beginning" || key === "subtotal" || key === "available" || key === "closing";
4035
3357
  const carriedFromFederal = pool.key === "charitable" ? CARRIED_IN_FROM_FEDERAL[key] : void 0;
4036
3358
  return {
4037
3359
  line: id$2(pool.lines[key]),
4038
- caption: `${pool.label} — ${caption}`,
3360
+ caption: pool.captions[key],
4039
3361
  kind: "money",
4040
3362
  role: carriedFromFederal ? "carried-in" : computed ? "computed" : "input",
4041
3363
  section: pool.key,
@@ -4055,14 +3377,16 @@ const AT1_SCHEDULE_20 = {
4055
3377
  line: id$2(field)
4056
3378
  }))].sort((a, b) => a.line.localeCompare(b.line)),
4057
3379
  provenance: {
4058
- document: "research/validation/auratax/2026-08-07-cca-classes/README.md",
4059
- retrieved: "2026-08-08",
4060
- revision: "line numbers verified against the live TRA-certified form"
3380
+ document: "research/sources/tra-forms/pdf/AT1SCH20-charitable-donations-TRA11740.pdf",
3381
+ retrieved: "2026-09-08",
3382
+ revision: "TRA11740 (AT20) Rev. 2026-06 — every caption, section heading and footnote read off the rendered pages. Line numbers were separately cross-checked against the live TRA-certified form in research/validation/auratax/2026-08-07-cca-classes."
4061
3383
  },
4062
3384
  footnotes: [
4063
3385
  "This schedule is required if the opening balance or the claim for Alberta purposes differs from that for federal purposes.",
4064
3386
  "If the corporation is reporting nil net income or a loss for the year, donations cannot be claimed.",
4065
- "If the corporation elects to differ its Alberta claim for the additional deduction for gifts of medicine (federal T2 Schedule 2, line 660), enter the Alberta amount on Schedule 12, line 40, the federal amount on Schedule 12, line 41, and provide the explanation of the difference on Schedule 12, line 48."
3387
+ "If the corporation elects to differ its Alberta claim for the additional deduction for gifts of medicine (federal T2 Schedule 2, line 660), enter the Alberta amount on Schedule 12, line 40, the federal amount on Schedule 12, line 41, and provide the explanation of the difference on Schedule 12, line 48.",
3388
+ "Report the combined totals for all three categories of gifts (to Canada or a province, of certified cultural property, and of certified ecologically sensitive land) in the 062-078 block.",
3389
+ "* For credit unions this amount is before the deduction of payments pursuant to allocations in proportion to borrowing and bonus interest."
4066
3390
  ]
4067
3391
  };
4068
3392
  /**
@@ -4080,6 +3404,15 @@ const AT1_DONATION_CARRYFORWARD_YEARS = 5;
4080
3404
  const id$1 = (field, occurrence = 1) => `021${field}${String(occurrence).padStart(3, "0")}`;
4081
3405
  /** {@link id}, exported for consumers building their own Schedule 21 layouts (e.g. the UI's paper Form View generator) from {@link AT1_SCHEDULE_21_POOLS} directly. */
4082
3406
  const scheduleTwentyOneLineId = id$1;
3407
+ /** The wording every block shares, so each pool's `captions` states only what is its own. */
3408
+ const SHARED_CAPTIONS = {
3409
+ carriedForward: "Losses carried forward from preceding taxation year",
3410
+ opening: "Losses - beginning of taxation year",
3411
+ currentYearLoss: "Current year loss",
3412
+ section80Adjustment: "ITA section 80 adjustment",
3413
+ carryBack: "Total loss carry back to prior taxation years (Schedule 10 must also be completed)",
3414
+ closing: "Losses - closing balance"
3415
+ };
4083
3416
  const AT1_SCHEDULE_21_POOLS = [
4084
3417
  {
4085
3418
  key: "non-capital",
@@ -4094,7 +3427,14 @@ const AT1_SCHEDULE_21_POOLS = [
4094
3427
  otherAdjustments: "045",
4095
3428
  carryBack: "047",
4096
3429
  closing: "049",
4097
- toSchedule12: "064"
3430
+ toSchedule12: "064",
3431
+ captions: {
3432
+ ...SHARED_CAPTIONS,
3433
+ expired: "Deduct: losses expired",
3434
+ windUpTransfer: "Add: Losses transfer from wind-up of a wholly-owned subsidiary or amalgamation",
3435
+ appliedAgainstIncome: "Deduct: Amount applied against taxable income",
3436
+ otherAdjustments: "Other adjustments (enter as a positive amount)"
3437
+ }
4098
3438
  },
4099
3439
  {
4100
3440
  key: "capital",
@@ -4102,13 +3442,21 @@ const AT1_SCHEDULE_21_POOLS = [
4102
3442
  carriedForward: "051",
4103
3443
  windUpTransfer: "055",
4104
3444
  currentYearLoss: "057",
3445
+ abilExpired: "059",
4105
3446
  appliedAgainstIncome: "061",
4106
3447
  section80Adjustment: "063",
4107
3448
  otherAdjustments: "065",
4108
3449
  carryBack: "067",
4109
3450
  closing: "069",
4110
3451
  toSchedule12: "066",
4111
- toSchedule12Note: "Carry forward this amount × the inclusion rate. Schedule 21 tracks capital losses at their full amount; Schedule 12 wants the allowable portion — carrying the raw figure over-deducts by roughly two."
3452
+ toSchedule12Note: "Carry forward this amount × the inclusion rate. Schedule 21 tracks capital losses at their full amount; Schedule 12 wants the allowable portion — carrying the raw figure over-deducts by roughly two.",
3453
+ captions: {
3454
+ ...SHARED_CAPTIONS,
3455
+ windUpTransfer: "Add: Losses transfer from wind-up of a wholly-owned subsidiary or amalgamation",
3456
+ abilExpired: "Allowable business investment loss expired as reported on Federal Schedule 4 line 220",
3457
+ appliedAgainstIncome: "Amount applied against current year capital gain",
3458
+ otherAdjustments: "Other adjustments (enter as a positive amount)"
3459
+ }
4112
3460
  },
4113
3461
  {
4114
3462
  key: "farm",
@@ -4123,7 +3471,14 @@ const AT1_SCHEDULE_21_POOLS = [
4123
3471
  otherAdjustments: "083",
4124
3472
  carryBack: "085",
4125
3473
  closing: "087",
4126
- toSchedule12: "070"
3474
+ toSchedule12: "070",
3475
+ captions: {
3476
+ ...SHARED_CAPTIONS,
3477
+ expired: "Deduct: losses expired (see note on page 4)",
3478
+ windUpTransfer: "Losses transfer from wind-up of a wholly-owned subsidiary and amalgamation",
3479
+ appliedAgainstIncome: "Deduct: Amount applied against taxable income",
3480
+ otherAdjustments: "Other adjustments"
3481
+ }
4127
3482
  },
4128
3483
  {
4129
3484
  key: "restricted-farm",
@@ -4138,7 +3493,14 @@ const AT1_SCHEDULE_21_POOLS = [
4138
3493
  otherAdjustments: "103",
4139
3494
  carryBack: "105",
4140
3495
  closing: "107",
4141
- toSchedule12: "068"
3496
+ toSchedule12: "068",
3497
+ captions: {
3498
+ ...SHARED_CAPTIONS,
3499
+ expired: "Deduct: losses expired (see note on page 4)",
3500
+ windUpTransfer: "Losses transfer from wind-up of a wholly-owned subsidiary and amalgamation",
3501
+ appliedAgainstIncome: "Amount applied against farming income",
3502
+ otherAdjustments: "Other adjustments"
3503
+ }
4142
3504
  },
4143
3505
  {
4144
3506
  key: "listed-personal",
@@ -4151,7 +3513,13 @@ const AT1_SCHEDULE_21_POOLS = [
4151
3513
  otherAdjustments: "121",
4152
3514
  carryBack: "123",
4153
3515
  closing: "125",
4154
- appliedAgainstIncomeNote: "If Schedule 18 exists, carry forward the amount from Schedule 18 line 060. Otherwise, carry forward the amount from federal Schedule 6 line 655."
3516
+ appliedAgainstIncomeNote: "If Schedule 18 exists, carry forward the amount from Schedule 18 line 060. Otherwise, carry forward the amount from federal Schedule 6 line 655.",
3517
+ captions: {
3518
+ ...SHARED_CAPTIONS,
3519
+ expired: "Deduct: losses expired after seven taxation years",
3520
+ appliedAgainstIncome: "Deduct: Amount applied against listed personal property gain (If Schedule 18 exists, enter amount from line 060. Otherwise, enter amount from federal Schedule 6, line 655).",
3521
+ otherAdjustments: "Adjustments"
3522
+ }
4155
3523
  }
4156
3524
  ];
4157
3525
  const SECTIONS$23 = [
@@ -4286,7 +3654,7 @@ const RIFE = [
4286
3654
  const PART_1 = [
4287
3655
  {
4288
3656
  field: "001",
4289
- caption: "Net income (loss) for Alberta purposes",
3657
+ caption: "Net Income (loss) per Alberta Schedule 12 line 054",
4290
3658
  kind: "money",
4291
3659
  role: "carried-in",
4292
3660
  section: "current-year",
@@ -4299,14 +3667,15 @@ const PART_1 = [
4299
3667
  },
4300
3668
  {
4301
3669
  field: "002",
4302
- caption: "Restricted interest and financing expenses deducted under ITA paragraph 111(1)(a.1)",
3670
+ caption: "RIFE deducted in the year under paragraph 111(1)(a.1) of ITA (enter as a positive amount)",
4303
3671
  kind: "money",
4304
3672
  role: "input",
4305
- section: "current-year"
3673
+ section: "current-year",
3674
+ note: "RIFE is restricted interest and financing expenses."
4306
3675
  },
4307
3676
  {
4308
3677
  field: "003",
4309
- caption: "Net capital losses deducted in the year",
3678
+ caption: "Net capital losses deducted in the year (enter as a positive amount)",
4310
3679
  kind: "money",
4311
3680
  role: "input",
4312
3681
  section: "current-year"
@@ -4320,21 +3689,21 @@ const PART_1 = [
4320
3689
  },
4321
3690
  {
4322
3691
  field: "007",
4323
- caption: "Part VI.1 tax deductible",
3692
+ caption: "Amount of Part VI.1 tax deductible",
4324
3693
  kind: "money",
4325
3694
  role: "input",
4326
3695
  section: "current-year"
4327
3696
  },
4328
3697
  {
4329
3698
  field: "011",
4330
- caption: "Prospector's and grubstaker's shares",
3699
+ caption: "Amount deductible as prospector's and grubstaker's shares",
4331
3700
  kind: "money",
4332
3701
  role: "input",
4333
3702
  section: "current-year"
4334
3703
  },
4335
3704
  {
4336
3705
  field: "012",
4337
- caption: "Employer deduction for non-qualified securities under ITA paragraph 110(1)(e)",
3706
+ caption: "Employer deduction for non-qualified securities - Paragraph 110(1)(e) of ITA",
4338
3707
  kind: "money",
4339
3708
  role: "input",
4340
3709
  section: "current-year"
@@ -4348,41 +3717,62 @@ const PART_1 = [
4348
3717
  },
4349
3718
  {
4350
3719
  field: "015",
4351
- caption: "Line 001 minus line 013",
3720
+ caption: "Line 001 - line 013: (if positive, enter \"0\")",
4352
3721
  kind: "money",
4353
3722
  role: "computed",
4354
3723
  section: "current-year"
4355
3724
  },
4356
3725
  {
4357
3726
  field: "017",
4358
- caption: "Additions under ITA section 110.5 or subparagraph 115(1)(a)(vii) for foreign tax credits",
3727
+ caption: "Deduct: ITA section 110.5 or subparagraph 115(1)(a)(vii) additions for foreign tax credits",
4359
3728
  kind: "money",
4360
3729
  role: "input",
4361
- section: "current-year"
3730
+ section: "current-year",
3731
+ /**
3732
+ * The form prints "Carry forward to Schedule 12, line 082" in bold italic
3733
+ * directly beneath this line's caption, and it was the one carry-forward on
3734
+ * the page the definition did not record — so the interface showed this line
3735
+ * with no destination while the four around it had theirs.
3736
+ */
3737
+ to: {
3738
+ form: "AT1SCH12",
3739
+ line: "012082001",
3740
+ note: "Carry forward to Schedule 12, line 082"
3741
+ }
4362
3742
  },
4363
3743
  {
4364
3744
  field: "019",
4365
- caption: "Current-year farm loss",
3745
+ caption: "Add: Current year farm loss",
4366
3746
  kind: "money",
4367
3747
  role: "input",
4368
3748
  section: "current-year"
4369
3749
  },
4370
3750
  {
4371
3751
  field: "021",
4372
- caption: "Non-capital loss for the current year",
3752
+ caption: "Non-capital loss for the current year: Line 015 - 017 + 019 (if positive, enter \"0\")",
4373
3753
  kind: "money",
4374
3754
  role: "computed",
4375
3755
  section: "current-year",
4376
- note: "Line 015 minus line 017 plus line 019."
3756
+ note: "If negative, enter this amount into line 037 as a positive."
4377
3757
  }
4378
3758
  ];
4379
- /** The row labels for one pool's continuity, in print order — exported so a UI-side paper Form View can build the same per-pool grid without re-typing the captions. */
3759
+ /**
3760
+ * The GENERIC row label for each continuity row, in print order.
3761
+ *
3762
+ * This is the fallback and the row-ORDER source, not the form's own wording:
3763
+ * each pool carries its own verbatim captions (see {@link AlbertaLossPool}'s
3764
+ * `captions`), because the three printed blocks word the same row differently
3765
+ * and the "applied" row is a different deduction per column. Use a pool's own
3766
+ * caption wherever one exists; this map is for the cases that want one short
3767
+ * neutral name for the concept — a column key, an aria-label, a log line.
3768
+ */
4380
3769
  const CONTINUITY_CAPTIONS = {
4381
3770
  carriedForward: "Carried forward from the preceding year",
4382
3771
  expired: "Losses expired",
4383
3772
  opening: "Balance at the beginning of the taxation year",
4384
3773
  windUpTransfer: "Transfer on a wind-up or amalgamation",
4385
3774
  currentYearLoss: "Current-year loss",
3775
+ abilExpired: "Allowable business investment loss expired (federal Schedule 4 line 220)",
4386
3776
  appliedAgainstIncome: "Applied against income",
4387
3777
  section80Adjustment: "Adjustment under ITA section 80",
4388
3778
  otherAdjustments: "Other adjustments",
@@ -4423,7 +3813,7 @@ const continuityFields = AT1_SCHEDULE_21_POOLS.flatMap((pool) => CONTINUITY_ORDE
4423
3813
  const footnoteMarks = isClosing ? closingFootnotes[pool.key] : void 0;
4424
3814
  return {
4425
3815
  line: id$1(pool[k]),
4426
- caption: `${pool.label} — ${CONTINUITY_CAPTIONS[k]}`,
3816
+ caption: `${pool.label} — ${pool.captions[k] ?? CONTINUITY_CAPTIONS[k]}`,
4427
3817
  kind: "money",
4428
3818
  role,
4429
3819
  section: "continuity",
@@ -4458,9 +3848,9 @@ const AT1_SCHEDULE_21 = {
4458
3848
  }))
4459
3849
  ].sort((a, b) => a.line.localeCompare(b.line)),
4460
3850
  provenance: {
4461
- document: "research/field-maps/at1-schedules-12-21.md",
4462
- retrieved: "2026-08-08",
4463
- revision: "verified against the live TRA-certified form"
3851
+ document: "research/sources/tra-forms/pdf/AT1SCH21-loss-continuity-TRA11741.pdf",
3852
+ retrieved: "2026-09-08",
3853
+ revision: "TRA11741 (AT173) Rev. 2026-03 — Part 1 captions, the per-pool continuity captions and the by-year-of-origin shading read off the rendered pages 1-4; line numbers were separately verified against the live TRA-certified form (research/field-maps/at1-schedules-12-21.md, 2026-08-08)."
4464
3854
  },
4465
3855
  footnotes: [
4466
3856
  "This schedule is required if the opening balance or the claim for Alberta purposes differs from that for federal purposes.",
@@ -11833,12 +11223,7 @@ const FORMS = [
11833
11223
  AT1_SCHEDULE_20,
11834
11224
  AT1_SCHEDULE_21,
11835
11225
  AT1_SCHEDULE_29,
11836
- AT1_SCHEDULE_8,
11837
11226
  AT1_SCHEDULE_4,
11838
- AT1_SCHEDULE_6,
11839
- AT1_SCHEDULE_7,
11840
- AT1_SCHEDULE_5,
11841
- AT1_SCHEDULE_9,
11842
11227
  AT4970
11843
11228
  ];
11844
11229
  const BY_ID = new Map(FORMS.map((f) => [f.id, f]));
@@ -11886,4 +11271,4 @@ function findBrokenLinks() {
11886
11271
  return problems;
11887
11272
  }
11888
11273
  //#endregion
11889
- export { SCHEDULE_3_ELIGIBLE_PAID_LINE as $, AT1_SCHEDULE_10 as $t, T2_SCHEDULE_21 as A, AT1_SCHEDULE_29 as At, T2_SCHEDULE_7 as B, CONTINUITY_ROWS as Bt, T2_SCHEDULE_31 as C, CO17_TAXABLE_INCOME_BOX as Ct, T2_SCHEDULE_23 as D, AT1_IEG_JACKET_LINE as Dt, SCHEDULE_23_GROUP_BUSINESS_LIMIT as E, AT1_IEG_ENHANCED_RATE as Et, SCHEDULE_8_RECAPTURE_LINE as F, scheduleTwentyOneLineId as Ft, SCHEDULE_5_SALARIES_OFFSET as G, AT1_SCHEDULE_17_RESERVES as Gt, T2_SCHEDULE_6 as H, AT1_SCHEDULE_18_CATEGORIES as Ht, SCHEDULE_8_TERMINAL_LOSS_LINE as I, AT1_DONATION_CARRYFORWARD_YEARS as It, SCHEDULE_4_LPP_CARRYFORWARD_YEARS as J, AT1_SCHEDULE_15 as Jt, T2_SCHEDULE_5 as K, AT1_SCHEDULE_16 as Kt, T2_SCHEDULE_8 as L, AT1_SCHEDULE_20 as Lt, T2_SCHEDULE_13 as M, AT1_SCHEDULE_21_POOLS as Mt, SCHEDULE_8_CCA_LINE as N, CONTINUITY_CAPTIONS as Nt, SCHEDULE_21_BUSINESS_CREDIT_LINE as O, AT1_IEG_MAX_EXPENDITURE as Ot, SCHEDULE_8_COLUMNS as P, CONTINUITY_ORDER as Pt, buildFields as Q, AT1_SCHEDULE_12_PAIRS as Qt, SCHEDULE_7_ADJUSTED_AII_LINE as R, AT1_SCHEDULE_20_POOLS as Rt, SCHEDULE_31_GENERAL_SRED_RATE as S, CO17_RETURN as St, T2_SCHEDULE_24 as T, AT1_IEG_BASE_RATE as Tt, SCHEDULE_5_JURISDICTIONS as U, AT1_SECTION_34_2_GROSS_UP as Ut, SCHEDULE_6_GRIDS as V, AT1_SCHEDULE_18 as Vt, SCHEDULE_5_REVENUE_OFFSET as W, AT1_SCHEDULE_17 as Wt, T2_SCHEDULE_4 as X, AT1_SCHEDULE_13_COLUMNS as Xt, SCHEDULE_4_NON_CAPITAL_CARRYFORWARD_YEARS as Y, AT1_SCHEDULE_13 as Yt, UnclassifiedLineError as Z, AT1_SCHEDULE_12 as Zt, SCHEDULE_43_DIVIDEND_ALLOWANCE as _, T2_NET_INCOME_FOR_TAX_LINE as _t, getField as a, AT1_SCHEDULE_4 as an, SCHEDULE_1_LINES as at, T2_SCHEDULE_33 as b, T2_TOTAL_TAX_PAYABLE_LINE as bt, SCHEDULE_141_RESERVATION_LINE as c, AT1_SCHEDULE_1 as cn, SCHEDULE_1_TOTAL_DEDUCTIONS_LINE as ct, T2_SCHEDULE_55 as d, AT1_JACKET as dn, indexByLine as dt, AT1_SCHEDULE_9 as en, SCHEDULE_3_TAXABLE_PAID_LINE as et, SCHEDULE_53_CLOSING_GRIP_LINE as f, AT1_TAX_PAYABLE_LINE as fn, inputFields as ft, T2_SCHEDULE_50 as g, T2_JACKET as gt, SCHEDULE_50_DISCLOSURE_THRESHOLD as h, T2_BASE_PART_I_RATE as ht, formsForProgram as i, AT1_SCHEDULE_5 as in, T2_SCHEDULE_2 as it, SCHEDULE_13_RESERVE_ROWS as j, AT1_SCHEDULE_21 as jt, SCHEDULE_21_NON_BUSINESS_CREDIT_LINE as k, AT1_IEG_PRIOR_YEARS as kt, T2_SCHEDULE_141 as l, AT1_BALANCE_CREDIT_LINES as ln, T2_SCHEDULE_1 as lt, T2_SCHEDULE_53 as m, AT4970_JURISDICTIONS as mn, validateFormDefinition as mt, describeLine as n, AT1_SCHEDULE_7 as nn, SCHEDULE_2_CARRYFORWARD_YEARS as nt, getForm as o, AT1_SCHEDULE_3 as on, SCHEDULE_1_LINE_BY_NUMBER as ot, SCHEDULE_53_GENERAL_RATE_FACTOR as p, AT4970 as pn, isEnterableLine as pt, SCHEDULE_4_CARRYBACK_YEARS as q, AT1_SCHEDULE_16_CARRYFORWARD_LINE as qt, findBrokenLinks as r, AT1_SCHEDULE_6 as rn, SCHEDULE_2_CHARITABLE_CURRENT_LINE as rt, SCHEDULE_141_PREPARER_IDENTIFIED_LINE as s, AT1_SCHEDULE_2 as sn, SCHEDULE_1_TOTAL_ADDITIONS_LINE as st, FORMS as t, AT1_SCHEDULE_8 as tn, T2_SCHEDULE_3 as tt, T2_SCHEDULE_130 as u, AT1_BALANCE_LINE as un, fieldsInSection as ut, T2_SCHEDULE_43 as v, T2_SMALL_BUSINESS_DEDUCTION_RATE as vt, SCHEDULE_24_OPERATION_TYPE_LINE as w, CO17_TAX_PAYABLE_BOX as wt, SCHEDULE_31_ENHANCED_SRED_RATE as x, CO17_QUEBEC_PROPORTION_BOX as xt, SCHEDULE_33_TAXABLE_CAPITAL_IN_CANADA_LINE as y, T2_TAXABLE_INCOME_LINE as yt, SCHEDULE_7_PASSIVE_INCOME_THRESHOLD as z, COMPUTED_CONTINUITY_ROWS as zt };
11274
+ export { SCHEDULE_3_ELIGIBLE_PAID_LINE as $, AT1_SCHEDULE_10 as $t, T2_SCHEDULE_21 as A, AT1_SCHEDULE_29 as At, T2_SCHEDULE_7 as B, CONTINUITY_ROWS as Bt, T2_SCHEDULE_31 as C, CO17_TAXABLE_INCOME_BOX as Ct, T2_SCHEDULE_23 as D, AT1_IEG_JACKET_LINE as Dt, SCHEDULE_23_GROUP_BUSINESS_LIMIT as E, AT1_IEG_ENHANCED_RATE as Et, SCHEDULE_8_RECAPTURE_LINE as F, scheduleTwentyOneLineId as Ft, SCHEDULE_5_SALARIES_OFFSET as G, AT1_SCHEDULE_17_RESERVES as Gt, T2_SCHEDULE_6 as H, AT1_SCHEDULE_18_CATEGORIES as Ht, SCHEDULE_8_TERMINAL_LOSS_LINE as I, AT1_DONATION_CARRYFORWARD_YEARS as It, SCHEDULE_4_LPP_CARRYFORWARD_YEARS as J, AT1_SCHEDULE_15 as Jt, T2_SCHEDULE_5 as K, AT1_SCHEDULE_16 as Kt, T2_SCHEDULE_8 as L, AT1_SCHEDULE_20 as Lt, T2_SCHEDULE_13 as M, AT1_SCHEDULE_21_POOLS as Mt, SCHEDULE_8_CCA_LINE as N, CONTINUITY_CAPTIONS as Nt, SCHEDULE_21_BUSINESS_CREDIT_LINE as O, AT1_IEG_MAX_EXPENDITURE as Ot, SCHEDULE_8_COLUMNS as P, CONTINUITY_ORDER as Pt, buildFields as Q, AT1_SCHEDULE_12_PAIRS as Qt, SCHEDULE_7_ADJUSTED_AII_LINE as R, AT1_SCHEDULE_20_POOLS as Rt, SCHEDULE_31_GENERAL_SRED_RATE as S, CO17_RETURN as St, T2_SCHEDULE_24 as T, AT1_IEG_BASE_RATE as Tt, SCHEDULE_5_JURISDICTIONS as U, AT1_SECTION_34_2_GROSS_UP as Ut, SCHEDULE_6_GRIDS as V, AT1_SCHEDULE_18 as Vt, SCHEDULE_5_REVENUE_OFFSET as W, AT1_SCHEDULE_17 as Wt, T2_SCHEDULE_4 as X, AT1_SCHEDULE_13_COLUMNS as Xt, SCHEDULE_4_NON_CAPITAL_CARRYFORWARD_YEARS as Y, AT1_SCHEDULE_13 as Yt, UnclassifiedLineError as Z, AT1_SCHEDULE_12 as Zt, SCHEDULE_43_DIVIDEND_ALLOWANCE as _, T2_NET_INCOME_FOR_TAX_LINE as _t, getField as a, AT1_BALANCE_LINE as an, SCHEDULE_1_LINES as at, T2_SCHEDULE_33 as b, T2_TOTAL_TAX_PAYABLE_LINE as bt, SCHEDULE_141_RESERVATION_LINE as c, AT4970 as cn, SCHEDULE_1_TOTAL_DEDUCTIONS_LINE as ct, T2_SCHEDULE_55 as d, indexByLine as dt, AT1_SCHEDULE_4 as en, SCHEDULE_3_TAXABLE_PAID_LINE as et, SCHEDULE_53_CLOSING_GRIP_LINE as f, inputFields as ft, T2_SCHEDULE_50 as g, T2_JACKET as gt, SCHEDULE_50_DISCLOSURE_THRESHOLD as h, T2_BASE_PART_I_RATE as ht, formsForProgram as i, AT1_BALANCE_CREDIT_LINES as in, T2_SCHEDULE_2 as it, SCHEDULE_13_RESERVE_ROWS as j, AT1_SCHEDULE_21 as jt, SCHEDULE_21_NON_BUSINESS_CREDIT_LINE as k, AT1_IEG_PRIOR_YEARS as kt, T2_SCHEDULE_141 as l, AT4970_JURISDICTIONS as ln, T2_SCHEDULE_1 as lt, T2_SCHEDULE_53 as m, validateFormDefinition as mt, describeLine as n, AT1_SCHEDULE_2 as nn, SCHEDULE_2_CARRYFORWARD_YEARS as nt, getForm as o, AT1_JACKET as on, SCHEDULE_1_LINE_BY_NUMBER as ot, SCHEDULE_53_GENERAL_RATE_FACTOR as p, isEnterableLine as pt, SCHEDULE_4_CARRYBACK_YEARS as q, AT1_SCHEDULE_16_CARRYFORWARD_LINE as qt, findBrokenLinks as r, AT1_SCHEDULE_1 as rn, SCHEDULE_2_CHARITABLE_CURRENT_LINE as rt, SCHEDULE_141_PREPARER_IDENTIFIED_LINE as s, AT1_TAX_PAYABLE_LINE as sn, SCHEDULE_1_TOTAL_ADDITIONS_LINE as st, FORMS as t, AT1_SCHEDULE_3 as tn, T2_SCHEDULE_3 as tt, T2_SCHEDULE_130 as u, fieldsInSection as ut, T2_SCHEDULE_43 as v, T2_SMALL_BUSINESS_DEDUCTION_RATE as vt, SCHEDULE_24_OPERATION_TYPE_LINE as w, CO17_TAX_PAYABLE_BOX as wt, SCHEDULE_31_ENHANCED_SRED_RATE as x, CO17_QUEBEC_PROPORTION_BOX as xt, SCHEDULE_33_TAXABLE_CAPITAL_IN_CANADA_LINE as y, T2_TAXABLE_INCOME_LINE as yt, SCHEDULE_7_PASSIVE_INCOME_THRESHOLD as z, COMPUTED_CONTINUITY_ROWS as zt };