torn-client 0.4.3 → 0.4.6

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/index.d.mts CHANGED
@@ -59,7 +59,7 @@ declare class PaginatedResponse<T> {
59
59
  type AmmoId = number;
60
60
 
61
61
  /** @category Models */
62
- type ApiError = ErrorUnknown | ErrorKeyEmpty | ErrorIncorrectKey | ErrorWrongType | ErrorWrongFields | ErrorTooManyRequests | ErrorIncorrectId | ErrorIncorrectIdEntityRelation | ErrorIpBlocked | ErrorApiDisabled | ErrorKeyOwnerInFederalJail | ErrorKeyChangeCooldown | ErrorKeyReadError | ErrorKeyTemporaryDisabled | ErrorDailyReadLimitReached | ErrorLogUnavailable | ErrorAccessLevelTooLow | ErrorBackendError | ErrorApiKeyPaused | ErrorMustMigrateToCrimesV2 | ErrorRaceNotFinished | ErrorIncorrectCategory | ErrorOnlyAvailableInApiV1 | ErrorOnlyAvailableInApiV2 | ErrorClosedTemporarily | ErrorInvalidStatRequested | ErrorOnlyCategoryOrStatsAllowed | ErrorMustMigrateToOrganizedCrimesV2 | ErrorIncorrectLogId | ErrorCategorySelectionUnavailableForInteractionLogs;
62
+ type ApiError = ErrorUnknown | ErrorKeyEmpty | ErrorIncorrectKey | ErrorWrongType | ErrorWrongFields | ErrorTooManyRequests | ErrorIncorrectId | ErrorIncorrectIdEntityRelation | ErrorIpBlocked | ErrorApiDisabled | ErrorKeyOwnerInFederalJail | ErrorKeyChangeCooldown | ErrorKeyReadError | ErrorKeyTemporaryDisabled | ErrorDailyReadLimitReached | ErrorLogUnavailable | ErrorAccessLevelTooLow | ErrorBackendError | ErrorApiKeyPaused | ErrorMustMigrateToCrimesV2 | ErrorRaceNotFinished | ErrorIncorrectCategory | ErrorOnlyAvailableInApiV1 | ErrorOnlyAvailableInApiV2 | ErrorClosedTemporarily | ErrorInvalidStatRequested | ErrorOnlyCategoryOrStatsAllowed | ErrorMustMigrateToOrganizedCrimesV2 | ErrorIncorrectLogId | ErrorCategorySelectionUnavailableForInteractionLogs | ErrorFileDoesNotExist;
63
63
 
64
64
  /** @category Models */
65
65
  type ApiFiltersAttacksRevivesEnum = "incoming" | "outgoing" | "idFilter";
@@ -67,6 +67,9 @@ type ApiFiltersAttacksRevivesEnum = "incoming" | "outgoing" | "idFilter";
67
67
  /** @category Models */
68
68
  type ApiKeyAccessTypeEnum = "Custom" | "Public Only" | "Minimal Access" | "Limited Access" | "Full Access";
69
69
 
70
+ /** @category Models */
71
+ type ApplicationStatusEnum = "accepted" | "declined" | "withdrawn" | "active";
72
+
70
73
  /** @category Models */
71
74
  type Attack = {
72
75
  id: AttackId;
@@ -205,6 +208,11 @@ type AuctionHouseListing = {
205
208
  item: AuctionHouseStackableItem | TornItemDetails;
206
209
  };
207
210
 
211
+ /** @category Models */
212
+ type AuctionHouseListingResponse = {
213
+ auctionhouselisting: AuctionHouseListing;
214
+ };
215
+
208
216
  /** @category Models */
209
217
  type AuctionHouseResponse = {
210
218
  auctionhouse: AuctionHouseListing[];
@@ -328,12 +336,255 @@ type Bounty = {
328
336
  /** @category Models */
329
337
  type ChainId = number;
330
338
 
339
+ /** @category Models */
340
+ type CompaniesResponse = {
341
+ companies: CompanyProfile[];
342
+ companies_timestamp: number;
343
+ companies_delay: number;
344
+ _metadata: RequestMetadataWithLinksAndTotal;
345
+ };
346
+
347
+ /** @category Models */
348
+ type CompaniesSearchResponse = {
349
+ search: CompanySearchProfile[];
350
+ _metadata: RequestMetadataWithLinks;
351
+ };
352
+
353
+ /** @category Models */
354
+ type CompanyApplication = {
355
+ player: CompanyApplicationPlayer;
356
+ message: string | null;
357
+ expires_at: number;
358
+ status: ApplicationStatusEnum;
359
+ };
360
+
361
+ /** @category Models */
362
+ type CompanyApplicationPlayer = {
363
+ id: UserId;
364
+ name: string;
365
+ level: number;
366
+ stats: CompanyApplicationPlayerStats;
367
+ };
368
+
369
+ /** @category Models */
370
+ type CompanyApplicationPlayerStats = {
371
+ manual_labor: number;
372
+ intelligence: number;
373
+ endurance: number;
374
+ };
375
+
376
+ /** @category Models */
377
+ type CompanyApplicationsResponse = {
378
+ applications: CompanyApplication[];
379
+ };
380
+
381
+ /** @category Models */
382
+ type CompanyCustomers = {
383
+ daily: number;
384
+ weekly: number;
385
+ };
386
+
387
+ /** @category Models */
388
+ type CompanyDirector = {
389
+ id: UserId;
390
+ name: string;
391
+ status: UserStatus;
392
+ last_action: UserLastAction;
393
+ };
394
+
395
+ /** @category Models */
396
+ type CompanyEmployee = {
397
+ id: UserId;
398
+ name: string;
399
+ position: CompanyEmployeePosition;
400
+ days_in_company: number;
401
+ status: UserStatus;
402
+ last_action: UserLastAction;
403
+ };
404
+
405
+ /** @category Models */
406
+ type CompanyEmployeeEffectiveness = {
407
+ working_stats: number;
408
+ settled_in: number;
409
+ book: number;
410
+ merits: number;
411
+ director_education: number;
412
+ management: number;
413
+ wrong_gender: number;
414
+ addiction: number;
415
+ inactivity: number;
416
+ total: number;
417
+ };
418
+
419
+ /** @category Models */
420
+ type CompanyEmployeeExtended = CompanyEmployee & {
421
+ stats: CompanyEmployeeStats;
422
+ effectiveness: CompanyEmployeeEffectiveness;
423
+ };
424
+
425
+ /** @category Models */
426
+ type CompanyEmployeeFull = CompanyEmployeeExtended & {
427
+ joined_at: number;
428
+ wage: number;
429
+ value: number | null;
430
+ };
431
+
432
+ /** @category Models */
433
+ type CompanyEmployeePosition = {
434
+ id: CompanyPositionId;
435
+ name: string;
436
+ };
437
+
438
+ /** @category Models */
439
+ type CompanyEmployees = {
440
+ hired: number;
441
+ capacity: number;
442
+ };
443
+
444
+ /** @category Models */
445
+ type CompanyEmployeesResponse = {
446
+ employees: CompanyEmployee | CompanyEmployeeExtended | CompanyEmployeeFull[];
447
+ };
448
+
449
+ /** @category Models */
450
+ type CompanyEmployeesResponseBasic = {
451
+ employees: CompanyEmployee[];
452
+ };
453
+
454
+ /** @category Models */
455
+ type CompanyEmployeeStats = {
456
+ manual_labor: number;
457
+ intelligence: number;
458
+ endurance: number;
459
+ };
460
+
331
461
  /** @category Models */
332
462
  type CompanyId = number;
333
463
 
464
+ /** @category Models */
465
+ type CompanyIncome = {
466
+ daily: number;
467
+ weekly: number;
468
+ };
469
+
470
+ /** @category Models */
471
+ type CompanyLookupResponse = {
472
+ selections: CompanySelectionName[];
473
+ };
474
+
475
+ /** @category Models */
476
+ type CompanyNewsCategory = "main" | "funds" | "training" | "employees" | "all";
477
+
478
+ /** @category Models */
479
+ type CompanyPositionId = number;
480
+
481
+ /** @category Models */
482
+ type CompanyProfile = {
483
+ id: CompanyId;
484
+ name: string;
485
+ created_at: number;
486
+ days_old: number;
487
+ image: string | null;
488
+ type: CompanyType;
489
+ rating: number;
490
+ director: CompanyDirector;
491
+ employees: CompanyEmployees;
492
+ income: CompanyIncome;
493
+ customers: CompanyCustomers;
494
+ applications_allowed: boolean;
495
+ };
496
+
497
+ /** @category Models */
498
+ type CompanyProfileExtended = CompanyProfile & {
499
+ funds: number;
500
+ popularity: number;
501
+ efficiency: number;
502
+ environment: number;
503
+ trains: number;
504
+ advertisement_budget: number;
505
+ upgrades: CompanyUpgrades;
506
+ value: number;
507
+ };
508
+
509
+ /** @category Models */
510
+ type CompanyProfileExtendedResponse = {
511
+ profile: CompanyProfileExtended;
512
+ };
513
+
514
+ /** @category Models */
515
+ type CompanyProfileResponse = {
516
+ profile: CompanyProfile;
517
+ };
518
+
519
+ /** @category Models */
520
+ type CompanyProfileResponseMixed = {
521
+ profile: CompanyProfile | CompanyProfileExtended;
522
+ };
523
+
524
+ /** @category Models */
525
+ type CompanyResponse = CompanyApplicationsResponse | CompanyEmployeesResponse | CompanyEmployeesResponseBasic | CompanyProfileResponseMixed | CompanyProfileResponse | NewsResponse | CompanyStockResponse | CompanyLookupResponse | TimestampResponse;
526
+
527
+ /** @category Models */
528
+ type CompanySearchParameter = "recruiting" | "notRecruiting" | string;
529
+
530
+ /** @category Models */
531
+ type CompanySearchProfile = {
532
+ id: CompanyId;
533
+ name: string;
534
+ created_at: number;
535
+ days_old: number;
536
+ image: string | null;
537
+ type: CompanyType;
538
+ rating: number;
539
+ employees: CompanyEmployees;
540
+ income: CompanyIncome;
541
+ customers: CompanyCustomers;
542
+ applications_allowed: boolean;
543
+ };
544
+
545
+ /** @category Models */
546
+ type CompanySelectionName = "applications" | "companies" | "employees" | "lookup" | "news" | "profile" | "snapshot" | "stock" | "timestamp" | string;
547
+
548
+ /** @category Models */
549
+ type CompanyStaffRoomSizeEnum = "No staff room" | "Small staff room" | "Standard staff room" | "Large staff room" | "Very large staff room" | "Huge staff room" | "Colossal staff room";
550
+
551
+ /** @category Models */
552
+ type CompanyStockItem = {
553
+ name: string;
554
+ id: number;
555
+ cost: number;
556
+ rrp: number;
557
+ price: number;
558
+ in_stock: number;
559
+ on_order: number;
560
+ sold_amount: number;
561
+ sold_worth: number;
562
+ };
563
+
564
+ /** @category Models */
565
+ type CompanyStockResponse = {
566
+ stock: CompanyStockItem[];
567
+ };
568
+
569
+ /** @category Models */
570
+ type CompanyStorageSizeEnum = "Small room" | "Standard room" | "Large room" | "Huge room" | "Warehouse" | "Large warehouse" | "Huge warehouse";
571
+
572
+ /** @category Models */
573
+ type CompanyType = {
574
+ id: CompanyTypeId;
575
+ name: string;
576
+ };
577
+
334
578
  /** @category Models */
335
579
  type CompanyTypeId = number;
336
580
 
581
+ /** @category Models */
582
+ type CompanyUpgrades = {
583
+ staff_room: CompanyStaffRoomSizeEnum;
584
+ storage: string;
585
+ storage_capacity: number;
586
+ };
587
+
337
588
  /** @category Models */
338
589
  type CountryEnum = "Mexico" | "Hawaii" | "South Africa" | "Japan" | "China" | "Argentina" | "Switzerland" | "Canada" | "United Kingdom" | "UAE" | "Cayman Islands" | "Torn";
339
590
 
@@ -391,6 +642,12 @@ type ErrorDailyReadLimitReached = {
391
642
  error: string;
392
643
  };
393
644
 
645
+ /** @category Models */
646
+ type ErrorFileDoesNotExist = {
647
+ code: number;
648
+ error: string;
649
+ };
650
+
394
651
  /** @category Models */
395
652
  type ErrorIncorrectCategory = {
396
653
  code: number;
@@ -570,7 +827,7 @@ type FactionApplication = {
570
827
  };
571
828
  message: string | null;
572
829
  valid_until: number;
573
- status: FactionApplicationStatusEnum;
830
+ status: ApplicationStatusEnum;
574
831
  };
575
832
 
576
833
  /** @category Models */
@@ -578,9 +835,6 @@ type FactionApplicationsResponse = {
578
835
  applications: FactionApplication[];
579
836
  };
580
837
 
581
- /** @category Models */
582
- type FactionApplicationStatusEnum = "accepted" | "declined" | "withdrawn" | "active";
583
-
584
838
  /** @category Models */
585
839
  type FactionAttackResult = "None" | "Attacked" | "Mugged" | "Hospitalized" | "Arrested" | "Looted" | "Lost" | "Stalemate" | "Assist" | "Escape" | "Timeout" | "Special" | "Bounty" | "Interrupted";
586
840
 
@@ -680,7 +934,7 @@ type FactionChainReportAttackerAttacks = {
680
934
  retaliations: number;
681
935
  overseas: number;
682
936
  draws: number;
683
- escapes?: number;
937
+ escapes: number;
684
938
  losses: number;
685
939
  war: number;
686
940
  bonuses: number;
@@ -772,7 +1026,7 @@ type FactionCrime = {
772
1026
  type FactionCrimeId = number;
773
1027
 
774
1028
  /** @category Models */
775
- type FactionCrimeItemOutcomeEnum = "lost" | "used";
1029
+ type FactionCrimeItemOutcomeEnum = "lost" | "used" | "unused";
776
1030
 
777
1031
  /** @category Models */
778
1032
  type FactionCrimeResponse = {
@@ -806,8 +1060,6 @@ type FactionCrimeRewardPayout = {
806
1060
  type FactionCrimeSlot = {
807
1061
  position: string;
808
1062
  position_info: FactionSlotPositionInfo;
809
- position_id?: TornOrganizedCrimePositionIdDeprecated;
810
- position_number?: number;
811
1063
  item_requirement: {
812
1064
  id: ItemId;
813
1065
  is_reusable: boolean;
@@ -901,22 +1153,9 @@ type FactionMembersResponse = {
901
1153
  members: FactionMember[];
902
1154
  };
903
1155
 
904
- /** @category Models */
905
- type FactionNews = {
906
- id: string;
907
- text: string;
908
- timestamp: number;
909
- };
910
-
911
1156
  /** @category Models */
912
1157
  type FactionNewsCategory = "main" | "attack" | "armoryDeposit" | "armoryAction" | "territoryWar" | "rankedWar" | "territoryGain" | "chain" | "crime" | "membership" | "depositFunds" | "giveFunds";
913
1158
 
914
- /** @category Models */
915
- type FactionNewsResponse = {
916
- news: FactionNews[];
917
- _metadata: RequestMetadataWithLinks;
918
- };
919
-
920
1159
  /** @category Models */
921
1160
  type FactionOngoingChain = {
922
1161
  id: ChainId;
@@ -1040,7 +1279,7 @@ type FactionRaidWarParticipant = {
1040
1279
 
1041
1280
  /** @category Models */
1042
1281
  type FactionRaidWarReportResponse = {
1043
- raidreport: FactionRaidReport[];
1282
+ raidreport: FactionRaidReport;
1044
1283
  };
1045
1284
 
1046
1285
  /** @category Models */
@@ -1135,7 +1374,7 @@ type FactionRankedWarsCategoryEnum = "all" | "ongoing";
1135
1374
  type FactionRankEnum = "Unranked" | "Bronze" | "Silver" | "Gold" | "Platinum" | "Diamond";
1136
1375
 
1137
1376
  /** @category Models */
1138
- type FactionResponse = FactionHofResponse | FactionMembersResponse | FactionBasicResponse | FactionWarsResponse | FactionNewsResponse | RevivesResponse | FactionTerritoryWarsHistoryResponse | AttacksResponse | FactionBalanceResponse | FactionRaidWarReportResponse | FactionTerritoriesOwnershipResponse | FactionPositionsResponse | RevivesFullResponse | AttacksFullResponse | FactionApplicationsResponse | FactionOngoingChainResponse | FactionChainsResponse | FactionChainReportResponse | FactionCrimesResponse | FactionCrimeResponse | FactionRaidsResponse | FactionWarfareResponse | FactionRankedWarReportResponse | FactionTerritoryWarReportResponse | FactionTerritoriesResponse | FactionUpgradesResponse | FactionStatsResponse | FactionContributorsResponse | FactionRacketsResponse | FactionRankedWarResponse | FactionLookupResponse | TimestampResponse;
1377
+ type FactionResponse = FactionHofResponse | FactionMembersResponse | FactionBasicResponse | FactionWarsResponse | NewsResponse | RevivesResponse | FactionTerritoryWarsHistoryResponse | AttacksResponse | FactionBalanceResponse | FactionRaidWarReportResponse | FactionTerritoriesOwnershipResponse | FactionPositionsResponse | RevivesFullResponse | AttacksFullResponse | FactionApplicationsResponse | FactionOngoingChainResponse | FactionChainsResponse | FactionChainReportResponse | FactionCrimesResponse | FactionCrimeResponse | FactionRaidsResponse | FactionWarfareResponse | FactionRankedWarReportResponse | FactionTerritoryWarReportResponse | FactionTerritoriesResponse | FactionUpgradesResponse | FactionStatsResponse | FactionContributorsResponse | FactionRacketsResponse | FactionRankedWarResponse | FactionLookupResponse | TimestampResponse;
1139
1378
 
1140
1379
  /** @category Models */
1141
1380
  type FactionSearch = {
@@ -1143,6 +1382,7 @@ type FactionSearch = {
1143
1382
  name: string;
1144
1383
  respect: number;
1145
1384
  members: number;
1385
+ members_max: number;
1146
1386
  leader: FactionSearchLeader;
1147
1387
  co_leader: FactionSearchLeader | null;
1148
1388
  image: string | null;
@@ -1212,11 +1452,12 @@ type FactionTerritory = {
1212
1452
  };
1213
1453
 
1214
1454
  /** @category Models */
1215
- type FactionTerritoryEnum = "AAB" | "AAC" | "AAD" | "AAE" | "AAF" | "AAG" | "ABA" | "ABB" | "ABC" | "ABD" | "ABE" | "ABF" | "ACA" | "ACB" | "ACC" | "ACD" | "ACE" | "ACF" | "ACG" | "ADA" | "ADB" | "ADC" | "ADD" | "ADE" | "ADF" | "ADG" | "AEA" | "AEB" | "AEC" | "AED" | "AEE" | "AEF" | "AFA" | "AFB" | "AFC" | "AFD" | "AFE" | "AFF" | "AFG" | "AGA" | "AGB" | "AGC" | "AGD" | "AGE" | "AGF" | "AGG" | "AHA" | "AHB" | "AHC" | "AHD" | "AHE" | "AHF" | "AIA" | "AIB" | "AIC" | "AID" | "AIE" | "AIF" | "AJA" | "AJB" | "AJC" | "AJD" | "AJE" | "AJF" | "AKA" | "AKB" | "AKC" | "AKD" | "AKE" | "AKF" | "ALA" | "ALB" | "ALC" | "ALD" | "ALE" | "ALF" | "AMA" | "AMB" | "AMC" | "AMD" | "AME" | "AMF" | "ANB" | "ANC" | "AND" | "ANE" | "ANF" | "ANG" | "AOB" | "AOC" | "AOD" | "AOE" | "AOF" | "AOG" | "APB" | "APC" | "APD" | "APE" | "APF" | "APG" | "AQB" | "AQC" | "AQD" | "AQE" | "AQF" | "AQG" | "ARB" | "ARC" | "ARD" | "ARE" | "ARF" | "ASB" | "ASC" | "ASD" | "ASE" | "ASF" | "ASG" | "ATB" | "ATC" | "ATD" | "ATE" | "ATF" | "ATG" | "AUB" | "AUC" | "AUD" | "AUE" | "AUF" | "AUG" | "AVB" | "AVC" | "AVD" | "AVE" | "AVF" | "AVG" | "AWB" | "AWC" | "AWD" | "AWE" | "AWF" | "AWG" | "AXB" | "AXC" | "AXD" | "AXE" | "AXF" | "AXG" | "AYB" | "AYC" | "AYD" | "AYE" | "AYF" | "AYG" | "AZB" | "AZC" | "AZD" | "AZE" | "AZF" | "AZG" | "BAA" | "BAB" | "BAC" | "BAD" | "BAE" | "BAF" | "BAG" | "BBA" | "BBB" | "BBC" | "BBD" | "BBE" | "BBF" | "BBG" | "BCA" | "BCB" | "BCC" | "BCD" | "BCE" | "BCF" | "BCG" | "BDA" | "BDB" | "BDC" | "BDD" | "BDE" | "BDF" | "BDG" | "BEA" | "BEB" | "BEC" | "BED" | "BEE" | "BEF" | "BFA" | "BFB" | "BFC" | "BFD" | "BFE" | "BFF" | "BFG" | "BGA" | "BGB" | "BGC" | "BGD" | "BGE" | "BGF" | "BGG" | "BHA" | "BHB" | "BHC" | "BHD" | "BHE" | "BHF" | "BIA" | "BIB" | "BIC" | "BID" | "BIE" | "BIF" | "BJA" | "BJB" | "BJC" | "BJD" | "BJE" | "BJF" | "BKA" | "BKB" | "BKC" | "BKD" | "BKE" | "BKF" | "BLA" | "BLB" | "BLC" | "BLD" | "BLE" | "BLF" | "BMA" | "BMB" | "BMC" | "BMD" | "BME" | "BMF" | "BNB" | "BNC" | "BND" | "BNE" | "BNF" | "BNG" | "BOB" | "BOC" | "BOD" | "BOE" | "BOF" | "BPB" | "BPC" | "BPD" | "BPE" | "BPF" | "BPG" | "BQB" | "BQC" | "BQD" | "BQF" | "BQG" | "BRB" | "BRC" | "BRD" | "BRE" | "BRF" | "BRG" | "BSB" | "BSC" | "BSD" | "BSE" | "BSF" | "BTB" | "BTC" | "BTD" | "BTE" | "BTF" | "BTG" | "BUB" | "BUC" | "BUD" | "BUE" | "BUF" | "BUG" | "BVB" | "BVC" | "BVD" | "BVE" | "BVF" | "BVG" | "BWB" | "BWC" | "BWD" | "BWE" | "BWF" | "BWG" | "BXB" | "BXC" | "BXD" | "BXE" | "BXF" | "BXG" | "BYB" | "BYC" | "BYD" | "BYE" | "BYF" | "BYG" | "BZB" | "BZC" | "BZD" | "BZE" | "BZF" | "BZG" | "CAA" | "CAB" | "CAC" | "CAD" | "CAE" | "CAF" | "CAG" | "CBA" | "CBB" | "CBC" | "CBD" | "CBE" | "CBF" | "CBG" | "CCA" | "CCB" | "CCC" | "CCD" | "CCE" | "CCF" | "CCG" | "CDA" | "CDB" | "CDC" | "CDD" | "CDE" | "CDF" | "CDG" | "CEA" | "CEB" | "CEC" | "CED" | "CEE" | "CEF" | "CFA" | "CFB" | "CFC" | "CFD" | "CFE" | "CFG" | "CGA" | "CGB" | "CGC" | "CGD" | "CGE" | "CGF" | "CGG" | "CHA" | "CHB" | "CHC" | "CHD" | "CHE" | "CHF" | "CIA" | "CIB" | "CIC" | "CID" | "CIE" | "CIF" | "CJA" | "CJB" | "CJC" | "CJD" | "CJE" | "CJF" | "CKA" | "CKB" | "CKC" | "CKD" | "CKE" | "CKF" | "CLA" | "CLB" | "CLC" | "CLD" | "CLE" | "CLF" | "CMA" | "CMB" | "CMC" | "CMD" | "CME" | "CMF" | "CNB" | "CNC" | "CND" | "CNE" | "CNF" | "CNG" | "COB" | "COC" | "COD" | "COE" | "COF" | "COG" | "CPB" | "CPC" | "CPD" | "CPE" | "CPF" | "CPG" | "CQB" | "CQC" | "CQD" | "CQF" | "CQG" | "CRB" | "CRC" | "CRD" | "CRE" | "CRF" | "CRG" | "CSB" | "CSC" | "CSD" | "CSE" | "CSF" | "CSG" | "CTB" | "CTC" | "CTD" | "CTE" | "CTF" | "CTG" | "CUB" | "CUC" | "CUD" | "CUE" | "CUF" | "CUG" | "CVB" | "CVC" | "CVD" | "CVE" | "CVF" | "CVG" | "CWB" | "CWC" | "CWD" | "CWE" | "CWF" | "CWG" | "CXB" | "CXC" | "CXD" | "CXE" | "CXF" | "CXG" | "CYB" | "CYC" | "CYD" | "CYE" | "CYF" | "CZB" | "CZC" | "CZD" | "CZE" | "CZF" | "CZG" | "DAA" | "DAB" | "DAC" | "DAD" | "DAE" | "DAF" | "DAG" | "DBA" | "DBB" | "DBC" | "DBD" | "DBE" | "DBF" | "DBG" | "DCA" | "DCB" | "DCC" | "DCD" | "DCE" | "DCF" | "DCG" | "DDA" | "DDB" | "DDC" | "DDD" | "DDE" | "DDF" | "DDG" | "DEA" | "DEB" | "DEC" | "DED" | "DEE" | "DEF" | "DFA" | "DFB" | "DFC" | "DFD" | "DFE" | "DFF" | "DFG" | "DGA" | "DGB" | "DGC" | "DGD" | "DGE" | "DGF" | "DGG" | "DHA" | "DHB" | "DHC" | "DHD" | "DHE" | "DHF" | "DIA" | "DIB" | "DIC" | "DID" | "DIE" | "DIF" | "DJA" | "DJB" | "DJC" | "DJD" | "DJE" | "DKA" | "DKB" | "DKC" | "DKD" | "DKE" | "DKF" | "DLA" | "DLB" | "DLC" | "DLD" | "DLE" | "DLF" | "DMA" | "DMB" | "DMC" | "DMD" | "DME" | "DMF" | "DNB" | "DNC" | "DND" | "DNE" | "DNF" | "DNG" | "DOB" | "DOC" | "DOD" | "DOE" | "DOF" | "DOG" | "DPB" | "DPC" | "DPD" | "DPE" | "DPF" | "DPG" | "DQB" | "DQC" | "DQD" | "DQF" | "DQG" | "DRB" | "DRC" | "DRD" | "DRE" | "DRF" | "DRG" | "DSB" | "DSC" | "DSD" | "DSE" | "DSF" | "DSG" | "DTB" | "DTC" | "DTD" | "DTE" | "DTF" | "DTG" | "DUB" | "DUC" | "DUD" | "DUE" | "DUF" | "DUG" | "DVB" | "DVC" | "DVD" | "DVE" | "DVF" | "DVG" | "DWB" | "DWC" | "DWD" | "DWE" | "DWF" | "DWG" | "DXB" | "DXC" | "DXD" | "DXE" | "DXF" | "DXG" | "DYB" | "DYC" | "DYD" | "DYE" | "DYF" | "DYG" | "DZB" | "DZC" | "DZD" | "DZE" | "DZF" | "DZG" | "EAA" | "EAB" | "EAC" | "EAD" | "EAE" | "EAF" | "EAG" | "EBA" | "EBB" | "EBC" | "EBD" | "EBE" | "EBF" | "EBG" | "ECA" | "ECB" | "ECC" | "ECD" | "ECE" | "ECF" | "ECG" | "EDA" | "EDB" | "EDC" | "EDD" | "EDE" | "EDF" | "EDG" | "EEA" | "EEB" | "EEC" | "EED" | "EEE" | "EEF" | "EFA" | "EFB" | "EFC" | "EFD" | "EFE" | "EFF" | "EFG" | "EGA" | "EGB" | "EGC" | "EGD" | "EGE" | "EGF" | "EHA" | "EHB" | "EHC" | "EHD" | "EHE" | "EHF" | "EIA" | "EIB" | "EIC" | "EID" | "EIE" | "EIF" | "EJA" | "EJB" | "EJC" | "EJD" | "EJE" | "EKA" | "EKB" | "EKC" | "EKD" | "EKE" | "EKF" | "ELA" | "ELB" | "ELC" | "ELD" | "ELE" | "ELF" | "EMA" | "EMB" | "EMC" | "EMD" | "EME" | "EMF" | "ENB" | "ENC" | "END" | "ENE" | "ENF" | "ENG" | "EOB" | "EOC" | "EOD" | "EOE" | "EOF" | "EPB" | "EPC" | "EPD" | "EPE" | "EPF" | "EPG" | "EQB" | "EQC" | "EQD" | "EQF" | "EQG" | "ERB" | "ERC" | "ERD" | "ERE" | "ERF" | "ERG" | "ESB" | "ESC" | "ESD" | "ESE" | "ESF" | "ESG" | "ETB" | "ETC" | "ETD" | "ETE" | "ETF" | "ETG" | "EUB" | "EUC" | "EUD" | "EUE" | "EUF" | "EUG" | "EVB" | "EVC" | "EVD" | "EVE" | "EVF" | "EVG" | "EWB" | "EWC" | "EWD" | "EWE" | "EWF" | "EWG" | "EXB" | "EXC" | "EXD" | "EXE" | "EXF" | "EXG" | "EYB" | "EYC" | "EYD" | "EYE" | "EYF" | "EYG" | "EZB" | "EZC" | "EZD" | "EZE" | "EZF" | "EZG" | "FAA" | "FAB" | "FAC" | "FAD" | "FAE" | "FAF" | "FAG" | "FBA" | "FBB" | "FBC" | "FBD" | "FBF" | "FBG" | "FCA" | "FCB" | "FCC" | "FCD" | "FCE" | "FCF" | "FCG" | "FDA" | "FDB" | "FDC" | "FDD" | "FDE" | "FDF" | "FDG" | "FEA" | "FEB" | "FEC" | "FED" | "FEE" | "FEF" | "FFA" | "FFB" | "FFC" | "FFD" | "FFE" | "FFF" | "FFG" | "FGA" | "FGB" | "FGC" | "FGD" | "FGE" | "FGF" | "FGG" | "FHA" | "FHB" | "FHC" | "FHD" | "FHE" | "FHF" | "FIA" | "FIB" | "FIC" | "FID" | "FIE" | "FIF" | "FJA" | "FJB" | "FJC" | "FJD" | "FJE" | "FJF" | "FKA" | "FKB" | "FKC" | "FKD" | "FKE" | "FKF" | "FLA" | "FLB" | "FLC" | "FLD" | "FLE" | "FLF" | "FMA" | "FMC" | "FMD" | "FME" | "FMF" | "FNB" | "FNC" | "FND" | "FNE" | "FNF" | "FNG" | "FOB" | "FOC" | "FOD" | "FOE" | "FOF" | "FPB" | "FPC" | "FPD" | "FPE" | "FPF" | "FPG" | "FQB" | "FQC" | "FQD" | "FQF" | "FQG" | "FRB" | "FRC" | "FRD" | "FRE" | "FRF" | "FRG" | "FSB" | "FSC" | "FSD" | "FSE" | "FSF" | "FSG" | "FTB" | "FTC" | "FTD" | "FTE" | "FTF" | "FTG" | "FUB" | "FUC" | "FUD" | "FUE" | "FUF" | "FUG" | "FVB" | "FVC" | "FVD" | "FVE" | "FVF" | "FVG" | "FWB" | "FWC" | "FWD" | "FWE" | "FWF" | "FWG" | "FXB" | "FXC" | "FXD" | "FXE" | "FXF" | "FXG" | "FYB" | "FYC" | "FYD" | "FYE" | "FYF" | "FYG" | "FZB" | "FZC" | "FZD" | "FZE" | "FZF" | "FZG" | "GAA" | "GAB" | "GAC" | "GAD" | "GAE" | "GAF" | "GAG" | "GBA" | "GBB" | "GBC" | "GBD" | "GBE" | "GBF" | "GCA" | "GCB" | "GCC" | "GCD" | "GCE" | "GCF" | "GCG" | "GDA" | "GDB" | "GDC" | "GDD" | "GDE" | "GDF" | "GDG" | "GEA" | "GEB" | "GEC" | "GED" | "GEE" | "GEF" | "GFA" | "GFB" | "GFC" | "GFD" | "GFE" | "GFF" | "GFG" | "GGA" | "GGB" | "GGC" | "GGD" | "GGE" | "GGF" | "GHA" | "GHB" | "GHC" | "GHD" | "GHE" | "GHF" | "GIA" | "GIB" | "GIC" | "GID" | "GIE" | "GJA" | "GJB" | "GJC" | "GJD" | "GJE" | "GJF" | "GKA" | "GKB" | "GKC" | "GKD" | "GKE" | "GKF" | "GLA" | "GLB" | "GLC" | "GLD" | "GLE" | "GLF" | "GMA" | "GMC" | "GMD" | "GME" | "GMF" | "GNB" | "GNC" | "GND" | "GNE" | "GNF" | "GNG" | "GOB" | "GOC" | "GOD" | "GOE" | "GOF" | "GPB" | "GPC" | "GPD" | "GPE" | "GPF" | "GPG" | "GQC" | "GQD" | "GQF" | "GQG" | "GRB" | "GRC" | "GRD" | "GRE" | "GRF" | "GRG" | "GSB" | "GSC" | "GSD" | "GSE" | "GSF" | "GSG" | "GTB" | "GTC" | "GTD" | "GTE" | "GTF" | "GTG" | "GUB" | "GUC" | "GUD" | "GUF" | "GUG" | "GVB" | "GVC" | "GVD" | "GVE" | "GVF" | "GVG" | "GWB" | "GWC" | "GWD" | "GWE" | "GWF" | "GWG" | "GXB" | "GXC" | "GXD" | "GXE" | "GXF" | "GXG" | "GYB" | "GYC" | "GYD" | "GYE" | "GYF" | "GYG" | "GZB" | "GZC" | "GZD" | "GZE" | "GZF" | "GZG" | "HAA" | "HAB" | "HAC" | "HAD" | "HAE" | "HAF" | "HAG" | "HBA" | "HBB" | "HBC" | "HBD" | "HBE" | "HBF" | "HCA" | "HCB" | "HCC" | "HCD" | "HCE" | "HCF" | "HCG" | "HDA" | "HDB" | "HDC" | "HDD" | "HDE" | "HDF" | "HDG" | "HEA" | "HEB" | "HEC" | "HED" | "HEE" | "HEF" | "HFA" | "HFB" | "HFC" | "HFD" | "HFE" | "HFF" | "HGA" | "HGB" | "HGC" | "HGD" | "HGE" | "HGF" | "HHA" | "HHB" | "HHC" | "HHD" | "HHE" | "HHF" | "HIA" | "HIB" | "HIC" | "HID" | "HIE" | "HJA" | "HJB" | "HJC" | "HJD" | "HJE" | "HJF" | "HKA" | "HKB" | "HKC" | "HKD" | "HKE" | "HKF" | "HLA" | "HLB" | "HLC" | "HLD" | "HLE" | "HLF" | "HMA" | "HMC" | "HMD" | "HME" | "HMF" | "HNB" | "HNC" | "HND" | "HNE" | "HNF" | "HNG" | "HOB" | "HOC" | "HOD" | "HOE" | "HOF" | "HPB" | "HPC" | "HPD" | "HPE" | "HPF" | "HPG" | "HQB" | "HQC" | "HQD" | "HQF" | "HQG" | "HRB" | "HRC" | "HRD" | "HRE" | "HRF" | "HRG" | "HSB" | "HSC" | "HSD" | "HSE" | "HSF" | "HSG" | "HTB" | "HTC" | "HTD" | "HTE" | "HTF" | "HTG" | "HUB" | "HUC" | "HUD" | "HUE" | "HUF" | "HUG" | "HVB" | "HVC" | "HVD" | "HVE" | "HVF" | "HVG" | "HWB" | "HWC" | "HWD" | "HWE" | "HWF" | "HWG" | "HXB" | "HXC" | "HXD" | "HXE" | "HXF" | "HXG" | "HYB" | "HYC" | "HYD" | "HYE" | "HYF" | "HYG" | "HZB" | "HZC" | "HZD" | "HZE" | "HZF" | "HZG" | "IAA" | "IAB" | "IAC" | "IAD" | "IAE" | "IAF" | "IAG" | "IBA" | "IBB" | "IBC" | "IBD" | "IBE" | "IBF" | "ICA" | "ICB" | "ICC" | "ICD" | "ICE" | "ICF" | "ICG" | "IDA" | "IDB" | "IDC" | "IDD" | "IDE" | "IDF" | "IDG" | "IEA" | "IEB" | "IEC" | "IED" | "IEE" | "IEF" | "IFA" | "IFB" | "IFC" | "IFD" | "IFE" | "IFF" | "IFG" | "IGA" | "IGB" | "IGC" | "IGD" | "IGE" | "IGF" | "IGG" | "IHA" | "IHB" | "IHC" | "IHD" | "IHE" | "IHF" | "IIA" | "IIB" | "IIC" | "IID" | "IIE" | "IJA" | "IJB" | "IJC" | "IJD" | "IJE" | "IJF" | "IKA" | "IKB" | "IKC" | "IKD" | "IKE" | "IKF" | "ILA" | "ILB" | "ILC" | "ILD" | "ILE" | "ILF" | "IMA" | "IMB" | "IMC" | "IMD" | "IME" | "IMF" | "INB" | "INC" | "IND" | "INE" | "INF" | "ING" | "IOB" | "IOC" | "IOD" | "IOE" | "IOF" | "IPB" | "IPC" | "IPD" | "IPE" | "IPF" | "IPG" | "IQB" | "IQC" | "IQD" | "IQF" | "IQG" | "IRB" | "IRC" | "IRD" | "IRE" | "IRF" | "IRG" | "ISB" | "ISC" | "ISD" | "ISE" | "ISF" | "ISG" | "ITB" | "ITC" | "ITD" | "ITE" | "ITF" | "ITG" | "IUB" | "IUC" | "IUD" | "IUE" | "IUF" | "IUG" | "IVB" | "IVC" | "IVD" | "IVE" | "IVF" | "IVG" | "IWB" | "IWC" | "IWD" | "IWE" | "IWF" | "IWG" | "IXB" | "IXC" | "IXD" | "IXE" | "IXF" | "IXG" | "IYB" | "IYC" | "IYD" | "IYE" | "IYF" | "IYG" | "IZB" | "IZC" | "IZD" | "IZE" | "IZF" | "IZG" | "JAA" | "JAB" | "JAC" | "JAD" | "JAE" | "JAF" | "JAG" | "JBA" | "JBB" | "JBC" | "JBD" | "JBE" | "JBF" | "JCA" | "JCB" | "JCC" | "JCD" | "JCE" | "JCF" | "JCG" | "JDA" | "JDB" | "JDC" | "JDD" | "JDE" | "JDF" | "JDG" | "JEA" | "JEB" | "JEC" | "JED" | "JEE" | "JEF" | "JFA" | "JFB" | "JFC" | "JFD" | "JFE" | "JFF" | "JFG" | "JGA" | "JGB" | "JGC" | "JGD" | "JGE" | "JGF" | "JHA" | "JHB" | "JHC" | "JHD" | "JHE" | "JHF" | "JIA" | "JIB" | "JIC" | "JID" | "JIE" | "JIF" | "JJA" | "JJB" | "JJC" | "JJD" | "JJE" | "JJF" | "JKA" | "JKB" | "JKC" | "JKD" | "JKE" | "JKF" | "JLA" | "JLB" | "JLC" | "JLD" | "JLE" | "JLF" | "JMA" | "JMC" | "JMD" | "JME" | "JMF" | "JNB" | "JNC" | "JND" | "JNE" | "JNF" | "JNG" | "JOB" | "JOC" | "JOD" | "JOE" | "JOF" | "JPB" | "JPC" | "JPD" | "JPE" | "JPF" | "JPG" | "JQB" | "JQC" | "JQD" | "JQF" | "JQG" | "JRB" | "JRC" | "JRD" | "JRE" | "JRF" | "JRG" | "JSB" | "JSC" | "JSD" | "JSE" | "JSF" | "JSG" | "JTB" | "JTC" | "JTD" | "JTE" | "JTF" | "JTG" | "JUB" | "JUC" | "JUD" | "JUE" | "JUF" | "JUG" | "JVB" | "JVC" | "JVD" | "JVE" | "JVF" | "JVG" | "JWB" | "JWC" | "JWD" | "JWE" | "JWF" | "JWG" | "JXB" | "JXC" | "JXD" | "JXE" | "JXF" | "JXG" | "JYB" | "JYC" | "JYD" | "JYE" | "JYF" | "JYG" | "JZB" | "JZC" | "JZD" | "JZE" | "JZF" | "JZG" | "KAA" | "KAB" | "KAC" | "KAD" | "KAE" | "KAF" | "KAG" | "KBA" | "KBB" | "KBC" | "KBD" | "KBE" | "KBF" | "KBG" | "KCA" | "KCB" | "KCC" | "KCD" | "KCE" | "KCF" | "KCG" | "KDA" | "KDB" | "KDC" | "KDD" | "KDE" | "KEA" | "KEB" | "KEC" | "KED" | "KEE" | "KEF" | "KFA" | "KFB" | "KFC" | "KFD" | "KFE" | "KFF" | "KFG" | "KGA" | "KGB" | "KGC" | "KGD" | "KGE" | "KGF" | "KGG" | "KHA" | "KHB" | "KHC" | "KHD" | "KHE" | "KHF" | "KIA" | "KIB" | "KIC" | "KID" | "KIE" | "KIF" | "KJA" | "KJB" | "KJC" | "KJD" | "KJE" | "KJF" | "KKA" | "KKB" | "KKC" | "KKD" | "KKE" | "KKF" | "KLA" | "KLB" | "KLC" | "KLD" | "KLE" | "KLF" | "KMA" | "KMC" | "KMD" | "KME" | "KMF" | "KNB" | "KNC" | "KND" | "KNE" | "KNF" | "KNG" | "KOB" | "KOC" | "KOD" | "KOE" | "KOF" | "KPB" | "KPC" | "KPD" | "KPE" | "KPF" | "KPG" | "KQB" | "KQC" | "KQD" | "KQE" | "KQF" | "KQG" | "KRB" | "KRC" | "KRD" | "KRE" | "KRF" | "KRG" | "KSB" | "KSC" | "KSD" | "KSE" | "KSF" | "KSG" | "KTB" | "KTC" | "KTD" | "KTE" | "KTF" | "KTG" | "KUB" | "KUC" | "KUD" | "KUE" | "KUF" | "KUG" | "KVB" | "KVC" | "KVD" | "KVE" | "KVF" | "KVG" | "KWB" | "KWC" | "KWD" | "KWE" | "KWF" | "KWG" | "KXB" | "KXC" | "KXD" | "KXE" | "KXF" | "KXG" | "KYB" | "KYC" | "KYD" | "KYE" | "KYF" | "KYG" | "KZB" | "KZC" | "KZD" | "KZE" | "KZF" | "KZG" | "LAA" | "LAB" | "LAC" | "LAD" | "LAE" | "LAF" | "LAG" | "LBA" | "LBB" | "LBC" | "LBD" | "LBE" | "LBF" | "LBG" | "LCA" | "LCB" | "LCC" | "LCD" | "LCE" | "LCF" | "LCG" | "LDA" | "LDB" | "LDC" | "LDD" | "LDE" | "LDF" | "LEA" | "LEB" | "LEC" | "LED" | "LEE" | "LEF" | "LFA" | "LFB" | "LFC" | "LFD" | "LFE" | "LFF" | "LFG" | "LGA" | "LGB" | "LGC" | "LGD" | "LGE" | "LGF" | "LGG" | "LHA" | "LHB" | "LHC" | "LHD" | "LHE" | "LHF" | "LIA" | "LIB" | "LIC" | "LID" | "LIE" | "LIF" | "LJA" | "LJB" | "LJC" | "LJD" | "LJE" | "LJF" | "LKA" | "LKB" | "LKC" | "LKD" | "LKE" | "LKF" | "LLA" | "LLB" | "LLC" | "LLD" | "LLE" | "LLF" | "LMA" | "LMC" | "LMD" | "LME" | "LMF" | "LNB" | "LNC" | "LND" | "LNE" | "LNF" | "LNG" | "LOB" | "LOC" | "LOD" | "LOE" | "LOF" | "LPB" | "LPC" | "LPD" | "LPE" | "LPF" | "LPG" | "LQB" | "LQC" | "LQD" | "LQE" | "LQF" | "LQG" | "LRB" | "LRC" | "LRD" | "LRE" | "LRF" | "LRG" | "LSB" | "LSC" | "LSD" | "LSE" | "LSF" | "LSG" | "LTB" | "LTC" | "LTD" | "LTE" | "LTF" | "LTG" | "LUB" | "LUC" | "LUD" | "LUE" | "LUF" | "LUG" | "LVB" | "LVC" | "LVD" | "LVE" | "LVF" | "LVG" | "LWB" | "LWC" | "LWD" | "LWE" | "LWF" | "LWG" | "LXB" | "LXC" | "LXD" | "LXE" | "LXF" | "LXG" | "LYB" | "LYC" | "LYD" | "LYE" | "LYF" | "LYG" | "LZB" | "LZC" | "LZD" | "LZE" | "LZF" | "LZG" | "MAA" | "MAB" | "MAC" | "MAD" | "MAE" | "MAF" | "MAG" | "MBA" | "MBB" | "MBC" | "MBD" | "MBE" | "MBF" | "MBG" | "MCA" | "MCB" | "MCC" | "MCD" | "MCE" | "MCF" | "MCG" | "MDA" | "MDB" | "MDC" | "MDD" | "MDE" | "MDF" | "MDG" | "MEA" | "MEB" | "MEC" | "MED" | "MEE" | "MEF" | "MEG" | "MFA" | "MFB" | "MFC" | "MFD" | "MFE" | "MFF" | "MFG" | "MGA" | "MGB" | "MGC" | "MGD" | "MGE" | "MGF" | "MGG" | "MHA" | "MHB" | "MHC" | "MHD" | "MHE" | "MHF" | "MIA" | "MIB" | "MIC" | "MID" | "MIE" | "MIF" | "MJA" | "MJB" | "MJC" | "MJD" | "MJE" | "MKA" | "MKB" | "MKC" | "MKD" | "MKE" | "MKF" | "MLA" | "MLB" | "MLC" | "MLD" | "MLE" | "MLF" | "MMA" | "MMC" | "MMD" | "MME" | "MMF" | "MNB" | "MNC" | "MND" | "MNE" | "MNF" | "MNG" | "MOB" | "MOC" | "MOD" | "MOE" | "MOF" | "MPB" | "MPC" | "MPD" | "MPE" | "MPF" | "MPG" | "MQB" | "MQC" | "MQD" | "MQE" | "MQF" | "MQG" | "MRB" | "MRC" | "MRD" | "MRE" | "MRF" | "MRG" | "MSB" | "MSC" | "MSD" | "MSE" | "MSF" | "MSG" | "MTB" | "MTC" | "MTD" | "MTE" | "MTF" | "MTG" | "MUB" | "MUC" | "MUD" | "MUE" | "MUF" | "MUG" | "MVB" | "MVC" | "MVD" | "MVE" | "MVF" | "MVG" | "MWB" | "MWC" | "MWD" | "MWE" | "MWF" | "MWG" | "MXB" | "MXC" | "MXD" | "MXE" | "MXF" | "MXG" | "MYB" | "MYC" | "MYD" | "MYE" | "MYF" | "MYG" | "MZB" | "MZC" | "MZD" | "MZE" | "MZF" | "MZG" | "NAB" | "NAC" | "NAD" | "NAE" | "NAF" | "NAG" | "NBA" | "NBB" | "NBC" | "NBD" | "NBE" | "NBF" | "NBG" | "NCA" | "NCB" | "NCC" | "NCD" | "NCE" | "NCF" | "NCG" | "NDA" | "NDB" | "NDC" | "NDD" | "NDE" | "NDF" | "NDG" | "NEA" | "NEB" | "NEC" | "NED" | "NEE" | "NEF" | "NEG" | "NFA" | "NFB" | "NFC" | "NFD" | "NFE" | "NFF" | "NFG" | "NGA" | "NGB" | "NGC" | "NGD" | "NGE" | "NGF" | "NGG" | "NHA" | "NHB" | "NHC" | "NHD" | "NHE" | "NHF" | "NIA" | "NIB" | "NIC" | "NID" | "NIE" | "NIF" | "NJA" | "NJB" | "NJC" | "NJD" | "NJE" | "NJF" | "NKA" | "NKB" | "NKC" | "NKD" | "NKE" | "NKF" | "NLA" | "NLB" | "NLC" | "NLD" | "NLE" | "NLF" | "NMA" | "NMB" | "NMC" | "NMD" | "NME" | "NMF" | "NNB" | "NND" | "NNE" | "NNF" | "NNG" | "NOB" | "NOC" | "NOD" | "NOE" | "NOF" | "NOG" | "NPB" | "NPC" | "NPD" | "NPE" | "NPF" | "NQB" | "NQC" | "NQD" | "NQE" | "NQF" | "NQG" | "NRB" | "NRC" | "NRD" | "NRE" | "NRF" | "NRG" | "NSB" | "NSC" | "NSD" | "NSE" | "NSF" | "NSG" | "NTB" | "NTC" | "NTD" | "NTE" | "NTF" | "NTG" | "NUB" | "NUC" | "NUD" | "NUE" | "NUF" | "NUG" | "NVB" | "NVC" | "NVD" | "NVE" | "NVF" | "NVG" | "NWB" | "NWC" | "NWD" | "NWE" | "NWF" | "NWG" | "NXB" | "NXC" | "NXD" | "NXE" | "NXF" | "NXG" | "NYB" | "NYC" | "NYD" | "NYE" | "NYF" | "NYG" | "NZB" | "NZC" | "NZD" | "NZE" | "NZF" | "NZG" | "OAB" | "OAC" | "OAD" | "OAE" | "OAF" | "OAG" | "OBA" | "OBB" | "OBC" | "OBD" | "OBE" | "OBF" | "OCA" | "OCB" | "OCC" | "OCD" | "OCE" | "OCF" | "OCG" | "ODA" | "ODB" | "ODC" | "ODD" | "ODE" | "ODF" | "ODG" | "OEA" | "OEB" | "OEC" | "OED" | "OEE" | "OEF" | "OFA" | "OFB" | "OFC" | "OFD" | "OFE" | "OFF" | "OFG" | "OGA" | "OGB" | "OGC" | "OGD" | "OGE" | "OGF" | "OGG" | "OHA" | "OHB" | "OHC" | "OHD" | "OHE" | "OHF" | "OIA" | "OIB" | "OIC" | "OID" | "OIE" | "OIF" | "OJA" | "OJB" | "OJC" | "OJD" | "OJE" | "OJF" | "OKA" | "OKB" | "OKC" | "OKD" | "OKE" | "OKF" | "OLA" | "OLB" | "OLC" | "OLD" | "OLE" | "OLF" | "OMA" | "OMB" | "OMC" | "OMD" | "OME" | "OMF" | "ONB" | "OND" | "ONE" | "ONF" | "ONG" | "OOB" | "OOC" | "OOD" | "OOE" | "OOF" | "OOG" | "OPB" | "OPC" | "OPD" | "OPE" | "OPF" | "OQB" | "OQC" | "OQD" | "OQE" | "OQF" | "OQG" | "ORB" | "ORC" | "ORD" | "ORE" | "ORF" | "ORG" | "OSB" | "OSC" | "OSD" | "OSE" | "OSF" | "OTB" | "OTC" | "OTD" | "OTE" | "OTG" | "OUB" | "OUC" | "OUD" | "OUE" | "OUF" | "OUG" | "OVB" | "OVC" | "OVD" | "OVE" | "OVF" | "OVG" | "OWB" | "OWC" | "OWD" | "OWE" | "OWF" | "OWG" | "OXB" | "OXC" | "OXD" | "OXE" | "OXF" | "OXG" | "OYB" | "OYC" | "OYD" | "OYE" | "OYF" | "OYG" | "OZB" | "OZC" | "OZD" | "OZE" | "OZF" | "OZG" | "PAB" | "PAC" | "PAD" | "PAE" | "PAF" | "PAG" | "PBA" | "PBB" | "PBC" | "PBD" | "PBE" | "PBF" | "PCA" | "PCB" | "PCC" | "PCD" | "PCE" | "PCF" | "PCG" | "PDA" | "PDB" | "PDC" | "PDD" | "PDE" | "PDF" | "PDG" | "PEA" | "PEB" | "PEC" | "PED" | "PEE" | "PEF" | "PFA" | "PFB" | "PFC" | "PFD" | "PFE" | "PFF" | "PFG" | "PGA" | "PGB" | "PGC" | "PGD" | "PGE" | "PGF" | "PGG" | "PHA" | "PHB" | "PHC" | "PHD" | "PHE" | "PHF" | "PIA" | "PIB" | "PIC" | "PID" | "PIE" | "PIF" | "PJA" | "PJB" | "PJC" | "PJD" | "PJE" | "PJF" | "PKA" | "PKB" | "PKC" | "PKD" | "PKE" | "PKF" | "PLA" | "PLB" | "PLC" | "PLD" | "PLE" | "PLF" | "PMA" | "PMB" | "PMC" | "PMD" | "PME" | "PMF" | "PNB" | "PND" | "PNE" | "PNF" | "PNG" | "POB" | "POC" | "POD" | "POE" | "POF" | "POG" | "PPB" | "PPC" | "PPD" | "PPE" | "PPF" | "PQB" | "PQC" | "PQD" | "PQE" | "PQF" | "PQG" | "PRB" | "PRC" | "PRD" | "PRE" | "PRF" | "PRG" | "PSB" | "PSC" | "PSD" | "PSE" | "PSF" | "PTB" | "PTC" | "PTD" | "PTE" | "PTF" | "PTG" | "PUB" | "PUC" | "PUD" | "PUE" | "PUF" | "PUG" | "PVB" | "PVC" | "PVD" | "PVE" | "PVF" | "PVG" | "PWB" | "PWC" | "PWD" | "PWE" | "PWF" | "PWG" | "PXB" | "PXC" | "PXD" | "PXE" | "PXF" | "PXG" | "PYB" | "PYC" | "PYD" | "PYE" | "PYF" | "PYG" | "PZB" | "PZC" | "PZD" | "PZE" | "PZF" | "PZG" | "QAB" | "QAC" | "QAD" | "QAE" | "QAF" | "QAG" | "QBA" | "QBB" | "QBC" | "QBD" | "QBE" | "QBF" | "QCA" | "QCB" | "QCC" | "QCD" | "QCE" | "QCF" | "QCG" | "QDA" | "QDB" | "QDC" | "QDD" | "QDE" | "QDG" | "QEA" | "QEB" | "QEC" | "QED" | "QEE" | "QEF" | "QFA" | "QFB" | "QFC" | "QFD" | "QFE" | "QFF" | "QFG" | "QGA" | "QGB" | "QGC" | "QGD" | "QGE" | "QGF" | "QGG" | "QHA" | "QHB" | "QHC" | "QHD" | "QHE" | "QHF" | "QIA" | "QIB" | "QIC" | "QID" | "QIE" | "QIF" | "QJA" | "QJB" | "QJC" | "QJD" | "QJE" | "QJF" | "QKA" | "QKB" | "QKC" | "QKD" | "QKE" | "QKF" | "QLA" | "QLB" | "QLC" | "QLD" | "QLE" | "QLF" | "QMA" | "QMB" | "QMC" | "QMD" | "QME" | "QMF" | "QNB" | "QND" | "QNE" | "QNF" | "QNG" | "QOB" | "QOC" | "QOD" | "QOE" | "QOF" | "QOG" | "QPB" | "QPC" | "QPD" | "QPE" | "QPF" | "QQB" | "QQC" | "QQD" | "QQE" | "QQF" | "QQG" | "QRB" | "QRC" | "QRD" | "QRE" | "QRF" | "QRG" | "QSB" | "QSC" | "QSD" | "QSE" | "QSF" | "QSG" | "QTB" | "QTC" | "QTD" | "QTE" | "QTF" | "QTG" | "QUB" | "QUC" | "QUD" | "QUE" | "QUF" | "QUG" | "QVB" | "QVC" | "QVD" | "QVE" | "QVF" | "QWB" | "QWC" | "QWD" | "QWE" | "QWF" | "QWG" | "QXB" | "QXC" | "QXD" | "QXE" | "QXF" | "QXG" | "QYB" | "QYC" | "QYD" | "QYE" | "QYF" | "QYG" | "QZB" | "QZC" | "QZD" | "QZE" | "QZF" | "QZG" | "RAB" | "RAC" | "RAD" | "RAE" | "RAF" | "RAG" | "RBA" | "RBB" | "RBC" | "RBD" | "RBE" | "RBF" | "RCA" | "RCB" | "RCC" | "RCD" | "RCE" | "RCF" | "RCG" | "RDA" | "RDB" | "RDC" | "RDD" | "RDE" | "RDF" | "RDG" | "REA" | "REB" | "REC" | "RED" | "REE" | "REF" | "RFA" | "RFB" | "RFC" | "RFD" | "RFE" | "RFF" | "RFG" | "RGA" | "RGB" | "RGC" | "RGD" | "RGE" | "RGF" | "RGG" | "RHA" | "RHB" | "RHC" | "RHD" | "RHE" | "RHF" | "RIA" | "RIB" | "RIC" | "RID" | "RIE" | "RIF" | "RJA" | "RJB" | "RJC" | "RJD" | "RJE" | "RJF" | "RKA" | "RKB" | "RKC" | "RKD" | "RKE" | "RKF" | "RLA" | "RLB" | "RLC" | "RLD" | "RLE" | "RLF" | "RMA" | "RMB" | "RMC" | "RMD" | "RME" | "RMF" | "RNB" | "RND" | "RNE" | "RNF" | "RNG" | "ROB" | "ROC" | "ROD" | "ROE" | "ROF" | "ROG" | "RPB" | "RPC" | "RPD" | "RPE" | "RPF" | "RQB" | "RQC" | "RQD" | "RQE" | "RQF" | "RQG" | "RRC" | "RRD" | "RRE" | "RRF" | "RRG" | "RSB" | "RSC" | "RSD" | "RSE" | "RSF" | "RTB" | "RTC" | "RTD" | "RTE" | "RTF" | "RTG" | "RUB" | "RUC" | "RUD" | "RUE" | "RUF" | "RUG" | "RVB" | "RVC" | "RVD" | "RVE" | "RVF" | "RVG" | "RWB" | "RWC" | "RWD" | "RWE" | "RWF" | "RWG" | "RXB" | "RXC" | "RXD" | "RXE" | "RXF" | "RXG" | "RYB" | "RYC" | "RYD" | "RYE" | "RYF" | "RYG" | "RZB" | "RZC" | "RZD" | "RZE" | "RZF" | "RZG" | "SAB" | "SAC" | "SAD" | "SAE" | "SAF" | "SAG" | "SBA" | "SBB" | "SBC" | "SBD" | "SBE" | "SBF" | "SCA" | "SCB" | "SCC" | "SCD" | "SCE" | "SCF" | "SCG" | "SDA" | "SDB" | "SDC" | "SDD" | "SDE" | "SDF" | "SDG" | "SEA" | "SEB" | "SEC" | "SED" | "SEE" | "SEF" | "SFA" | "SFB" | "SFC" | "SFD" | "SFE" | "SFF" | "SFG" | "SGA" | "SGB" | "SGC" | "SGD" | "SGE" | "SGF" | "SGG" | "SHA" | "SHB" | "SHC" | "SHD" | "SHE" | "SHF" | "SIA" | "SIB" | "SIC" | "SID" | "SIE" | "SIF" | "SJA" | "SJB" | "SJC" | "SJD" | "SJE" | "SJF" | "SKA" | "SKB" | "SKC" | "SKD" | "SKE" | "SKF" | "SLA" | "SLB" | "SLC" | "SLD" | "SLE" | "SLF" | "SMA" | "SMB" | "SMC" | "SMD" | "SME" | "SMF" | "SNB" | "SND" | "SNE" | "SNF" | "SNG" | "SOB" | "SOC" | "SOD" | "SOE" | "SOF" | "SOG" | "SPB" | "SPC" | "SPD" | "SPE" | "SPF" | "SPG" | "SQB" | "SQC" | "SQD" | "SQE" | "SQF" | "SQG" | "SRB" | "SRC" | "SRD" | "SRE" | "SRF" | "SRG" | "SSB" | "SSC" | "SSD" | "SSE" | "SSF" | "SSG" | "STB" | "STC" | "STD" | "STE" | "STF" | "STG" | "SUB" | "SUC" | "SUD" | "SUE" | "SUF" | "SUG" | "SVB" | "SVC" | "SVD" | "SVE" | "SVF" | "SVG" | "SWB" | "SWC" | "SWD" | "SWE" | "SWF" | "SWG" | "SXB" | "SXC" | "SXD" | "SXE" | "SXF" | "SXG" | "SYB" | "SYC" | "SYD" | "SYE" | "SYF" | "SYG" | "SZB" | "SZC" | "SZD" | "SZE" | "SZF" | "SZG" | "TAB" | "TAC" | "TAD" | "TAE" | "TAF" | "TAG" | "TBA" | "TBB" | "TBC" | "TBD" | "TBE" | "TBF" | "TCA" | "TCB" | "TCC" | "TCD" | "TCE" | "TCF" | "TCG" | "TDA" | "TDB" | "TDC" | "TDD" | "TDE" | "TDF" | "TDG" | "TEA" | "TEB" | "TEC" | "TED" | "TEE" | "TEF" | "TFA" | "TFB" | "TFC" | "TFD" | "TFE" | "TFF" | "TFG" | "TGA" | "TGB" | "TGC" | "TGD" | "TGE" | "TGF" | "TGG" | "THA" | "THB" | "THC" | "THD" | "THE" | "THF" | "TIA" | "TIB" | "TIC" | "TID" | "TIE" | "TIF" | "TJA" | "TJB" | "TJC" | "TJD" | "TJE" | "TJF" | "TKA" | "TKB" | "TKC" | "TKD" | "TKE" | "TKF" | "TLA" | "TLB" | "TLC" | "TLD" | "TLE" | "TLF" | "TMA" | "TMB" | "TMC" | "TMD" | "TME" | "TMF" | "TNB" | "TNC" | "TND" | "TNE" | "TNF" | "TNG" | "TOB" | "TOC" | "TOD" | "TOE" | "TOF" | "TOG" | "TPB" | "TPC" | "TPD" | "TPE" | "TPF" | "TPG" | "TQB" | "TQC" | "TQD" | "TQE" | "TQF" | "TQG" | "TRB" | "TRC" | "TRD" | "TRE" | "TRF" | "TRG" | "TSB" | "TSC" | "TSD" | "TSE" | "TSF" | "TSG" | "TTB" | "TTC" | "TTD" | "TTE" | "TTF" | "TTG" | "TUB" | "TUD" | "TUE" | "TUF" | "TUG" | "TVB" | "TVC" | "TVD" | "TVE" | "TVF" | "TVG" | "TWB" | "TWC" | "TWD" | "TWE" | "TWF" | "TWG" | "TXB" | "TXC" | "TXD" | "TXE" | "TXF" | "TXG" | "TYB" | "TYC" | "TYD" | "TYE" | "TYF" | "TYG" | "TZB" | "TZC" | "TZD" | "TZE" | "TZF" | "TZG" | "UAB" | "UAC" | "UAD" | "UAE" | "UAF" | "UAG" | "UBA" | "UBB" | "UBC" | "UBD" | "UBE" | "UBF" | "UCA" | "UCB" | "UCC" | "UCD" | "UCE" | "UCF" | "UCG" | "UDA" | "UDB" | "UDC" | "UDD" | "UDE" | "UDF" | "UDG" | "UEA" | "UEB" | "UEC" | "UED" | "UEE" | "UEF" | "UFA" | "UFB" | "UFC" | "UFD" | "UFF" | "UFG" | "UGA" | "UGB" | "UGC" | "UGD" | "UGE" | "UGF" | "UGG" | "UHA" | "UHB" | "UHC" | "UHD" | "UHE" | "UHF" | "UIA" | "UIB" | "UIC" | "UID" | "UIE" | "UIF" | "UJA" | "UJB" | "UJC" | "UJD" | "UJE" | "UJF" | "UKA" | "UKB" | "UKC" | "UKD" | "UKE" | "UKF" | "ULA" | "ULB" | "ULC" | "ULD" | "ULE" | "ULF" | "UMA" | "UMB" | "UMC" | "UMD" | "UME" | "UMF" | "UNB" | "UNC" | "UND" | "UNE" | "UNF" | "UNG" | "UOB" | "UOC" | "UOD" | "UOE" | "UOF" | "UOG" | "UPB" | "UPC" | "UPD" | "UPE" | "UPF" | "UPG" | "UQB" | "UQC" | "UQD" | "UQE" | "UQF" | "UQG" | "URB" | "URC" | "URD" | "URE" | "URF" | "URG" | "USB" | "USC" | "USD" | "USE" | "USF" | "USG" | "UTB" | "UTC" | "UTD" | "UTE" | "UTF" | "UTG" | "UUB" | "UUC" | "UUD" | "UUE" | "UUF" | "UUG" | "UVB" | "UVC" | "UVD" | "UVE" | "UVF" | "UVG" | "UWB" | "UWC" | "UWD" | "UWE" | "UWF" | "UWG" | "UXB" | "UXC" | "UXD" | "UXE" | "UXF" | "UXG" | "UYB" | "UYC" | "UYD" | "UYE" | "UYF" | "UYG" | "UZB" | "UZC" | "UZD" | "UZE" | "UZF" | "UZG" | "VAB" | "VAC" | "VAD" | "VAE" | "VAF" | "VAG" | "VBA" | "VBB" | "VBC" | "VBD" | "VBE" | "VBF" | "VBG" | "VCA" | "VCB" | "VCC" | "VCD" | "VCE" | "VCF" | "VCG" | "VDA" | "VDB" | "VDC" | "VDD" | "VDE" | "VDF" | "VDG" | "VEA" | "VEB" | "VEC" | "VED" | "VEE" | "VEF" | "VFA" | "VFB" | "VFC" | "VFD" | "VFE" | "VFF" | "VFG" | "VGA" | "VGB" | "VGC" | "VGD" | "VGE" | "VGF" | "VGG" | "VHA" | "VHB" | "VHC" | "VHD" | "VHE" | "VHF" | "VIA" | "VIB" | "VIC" | "VID" | "VIE" | "VIF" | "VJA" | "VJB" | "VJC" | "VJD" | "VJE" | "VKA" | "VKB" | "VKC" | "VKD" | "VKE" | "VKF" | "VLA" | "VLB" | "VLC" | "VLD" | "VLE" | "VLF" | "VMA" | "VMB" | "VMC" | "VMD" | "VME" | "VMF" | "VNB" | "VNC" | "VND" | "VNE" | "VNF" | "VNG" | "VOB" | "VOC" | "VOD" | "VOE" | "VOF" | "VOG" | "VPB" | "VPC" | "VPD" | "VPE" | "VPF" | "VPG" | "VQB" | "VQC" | "VQD" | "VQE" | "VQF" | "VQG" | "VRB" | "VRC" | "VRD" | "VRE" | "VRF" | "VRG" | "VSB" | "VSC" | "VSD" | "VSE" | "VSF" | "VSG" | "VTB" | "VTC" | "VTD" | "VTE" | "VTF" | "VTG" | "VUB" | "VUC" | "VUD" | "VUE" | "VUF" | "VUG" | "VVB" | "VVC" | "VVD" | "VVE" | "VVF" | "VVG" | "VWB" | "VWC" | "VWD" | "VWE" | "VWF" | "VWG" | "VXC" | "VXD" | "VXE" | "VXF" | "VXG" | "VYB" | "VYC" | "VYD" | "VYE" | "VYF" | "VYG" | "VZB" | "VZC" | "VZD" | "VZE" | "VZF" | "VZG" | "WAB" | "WAC" | "WAD" | "WAE" | "WAF" | "WAG" | "WBA" | "WBB" | "WBC" | "WBD" | "WBE" | "WBF" | "WBG" | "WCA" | "WCB" | "WCC" | "WCD" | "WCE" | "WCF" | "WCG" | "WDA" | "WDC" | "WDD" | "WDE" | "WDF" | "WDG" | "WEA" | "WEB" | "WEC" | "WED" | "WEE" | "WEF" | "WFA" | "WFB" | "WFC" | "WFD" | "WFE" | "WFF" | "WFG" | "WGA" | "WGB" | "WGC" | "WGD" | "WGE" | "WGF" | "WGG" | "WHA" | "WHB" | "WHC" | "WHD" | "WHE" | "WHF" | "WIA" | "WIB" | "WIC" | "WID" | "WIE" | "WIF" | "WJA" | "WJB" | "WJC" | "WJD" | "WJE" | "WJF" | "WKA" | "WKB" | "WKC" | "WKD" | "WKE" | "WKF" | "WLA" | "WLB" | "WLC" | "WLD" | "WLE" | "WLF" | "WMA" | "WMB" | "WMC" | "WMD" | "WME" | "WMF" | "WNB" | "WNC" | "WND" | "WNE" | "WNF" | "WNG" | "WOB" | "WOC" | "WOD" | "WOE" | "WOF" | "WOG" | "WPB" | "WPC" | "WPD" | "WPE" | "WPF" | "WPG" | "WQB" | "WQC" | "WQD" | "WQE" | "WQF" | "WQG" | "WRB" | "WRC" | "WRD" | "WRE" | "WRF" | "WRG" | "WSB" | "WSC" | "WSD" | "WSE" | "WSF" | "WSG" | "WTB" | "WTC" | "WTD" | "WTE" | "WTF" | "WTG" | "WUB" | "WUC" | "WUD" | "WUE" | "WUF" | "WUG" | "WVB" | "WVC" | "WVD" | "WVE" | "WVF" | "WVG" | "WWB" | "WWC" | "WWD" | "WWE" | "WWF" | "WWG" | "WXB" | "WXC" | "WXD" | "WXE" | "WXF" | "WXG" | "WYB" | "WYC" | "WYD" | "WYE" | "WYF" | "WYG" | "WZB" | "WZC" | "WZD" | "WZE" | "WZF" | "WZG" | "XAC" | "XAD" | "XAE" | "XAF" | "XBA" | "XBB" | "XBC" | "XBD" | "XBE" | "XBF" | "XBG" | "XCA" | "XCB" | "XCC" | "XCD" | "XCE" | "XCF" | "XCG" | "XDA" | "XDB" | "XDC" | "XDD" | "XDE" | "XDF" | "XDG" | "XEA" | "XEB" | "XEC" | "XED" | "XEE" | "XEF" | "XFA" | "XFB" | "XFC" | "XFD" | "XFE" | "XFF" | "XFG" | "XGA" | "XGB" | "XGC" | "XGD" | "XGE" | "XGF" | "XGG" | "XHA" | "XHB" | "XHC" | "XHD" | "XHE" | "XHF" | "XIA" | "XIB" | "XIC" | "XID" | "XIE" | "XIF" | "XJA" | "XJB" | "XJC" | "XJD" | "XJE" | "XJF" | "XKA" | "XKB" | "XKC" | "XKD" | "XKE" | "XKF" | "XLA" | "XLB" | "XLC" | "XLD" | "XLE" | "XLF" | "XMA" | "XMB" | "XMC" | "XMD" | "XME" | "XMF" | "XNB" | "XNC" | "XND" | "XNE" | "XNF" | "XNG" | "XOB" | "XOC" | "XOD" | "XOE" | "XOF" | "XOG" | "XPB" | "XPC" | "XPD" | "XPE" | "XPF" | "XPG" | "XQB" | "XQC" | "XQD" | "XQF" | "XQG" | "XRB" | "XRC" | "XRD" | "XRE" | "XRF" | "XRG" | "XSB" | "XSC" | "XSD" | "XSE" | "XSF" | "XSG" | "XTB" | "XTC" | "XTD" | "XTE" | "XTF" | "XTG" | "XUB" | "XUC" | "XUD" | "XUE" | "XUF" | "XUG" | "XVB" | "XVC" | "XVD" | "XVE" | "XVF" | "XVG" | "XWB" | "XWC" | "XWD" | "XWE" | "XWF" | "XWG" | "XXB" | "XXC" | "XXD" | "XXE" | "XXF" | "XXG" | "XYB" | "XYC" | "XYD" | "XYE" | "XYF" | "XYG" | "XZB" | "XZC" | "XZD" | "XZE" | "XZF" | "XZG" | "YAB" | "YAC" | "YAD" | "YAE" | "YAF" | "YAG" | "YBA" | "YBB" | "YBC" | "YBD" | "YBE" | "YBF" | "YCA" | "YCB" | "YCD" | "YCE" | "YCF" | "YCG" | "YDA" | "YDB" | "YDC" | "YDD" | "YDE" | "YDF" | "YDG" | "YEA" | "YEB" | "YEC" | "YED" | "YEE" | "YEF" | "YFA" | "YFB" | "YFC" | "YFD" | "YFE" | "YFG" | "YGA" | "YGB" | "YGC" | "YGD" | "YGE" | "YGF" | "YGG" | "YHA" | "YHB" | "YHC" | "YHD" | "YHE" | "YHF" | "YIA" | "YIB" | "YIC" | "YID" | "YIE" | "YIF" | "YJA" | "YJB" | "YJC" | "YJD" | "YJE" | "YJF" | "YKA" | "YKB" | "YKC" | "YKD" | "YKE" | "YKF" | "YLA" | "YLB" | "YLC" | "YLD" | "YLE" | "YLF" | "YMA" | "YMB" | "YMC" | "YMD" | "YME" | "YMF" | "YNB" | "YNC" | "YND" | "YNE" | "YNF" | "YNG" | "YOB" | "YOC" | "YOD" | "YOE" | "YOF" | "YOG" | "YPB" | "YPC" | "YPD" | "YPE" | "YPF" | "YPG" | "YQB" | "YQC" | "YQD" | "YQF" | "YQG" | "YRB" | "YRC" | "YRD" | "YRE" | "YRF" | "YRG" | "YSB" | "YSC" | "YSD" | "YSE" | "YSF" | "YSG" | "YTB" | "YTC" | "YTD" | "YTE" | "YTF" | "YTG" | "YUB" | "YUC" | "YUD" | "YUE" | "YUF" | "YUG" | "YVB" | "YVC" | "YVD" | "YVE" | "YVF" | "YVG" | "YWB" | "YWC" | "YWD" | "YWE" | "YWF" | "YWG" | "YXB" | "YXC" | "YXD" | "YXE" | "YXF" | "YXG" | "YYB" | "YYC" | "YYD" | "YYE" | "YYF" | "YYG" | "YZB" | "YZC" | "YZD" | "YZE" | "YZF" | "YZG" | "ZAB" | "ZAD" | "ZAE" | "ZAF" | "ZAG" | "ZBA" | "ZBB" | "ZBC" | "ZBD" | "ZBE" | "ZBF" | "ZCA" | "ZCB" | "ZCC" | "ZCD" | "ZCE" | "ZCF" | "ZCG" | "ZDA" | "ZDB" | "ZDC" | "ZDD" | "ZDE" | "ZDF" | "ZDG" | "ZEA" | "ZEB" | "ZEC" | "ZED" | "ZEE" | "ZEF" | "ZFA" | "ZFB" | "ZFC" | "ZFD" | "ZFE" | "ZFF" | "ZFG" | "ZGA" | "ZGB" | "ZGC" | "ZGD" | "ZGE" | "ZGF" | "ZGG" | "ZHA" | "ZHB" | "ZHC" | "ZHD" | "ZHE" | "ZHF" | "ZIA" | "ZIB" | "ZIC" | "ZID" | "ZIE" | "ZIF" | "ZJA" | "ZJB" | "ZJC" | "ZJD" | "ZJE" | "ZJF" | "ZKA" | "ZKB" | "ZKC" | "ZKD" | "ZKE" | "ZKF" | "ZLA" | "ZLB" | "ZLC" | "ZLD" | "ZLE" | "ZLF" | "ZMA" | "ZMB" | "ZMC" | "ZMD" | "ZME" | "ZMF" | "ZNB" | "ZNC" | "ZND" | "ZNE" | "ZNF" | "ZNG" | "ZOB" | "ZOC" | "ZOD" | "ZOE" | "ZOF" | "ZPB" | "ZPC" | "ZPD" | "ZPE" | "ZPF" | "ZPG" | "ZQB" | "ZQC" | "ZQD" | "ZQF" | "ZQG" | "ZRB" | "ZRC" | "ZRD" | "ZRE" | "ZRF" | "ZRG" | "ZSB" | "ZSC" | "ZSD" | "ZSE" | "ZSF" | "ZSG" | "ZTB" | "ZTC" | "ZTD" | "ZTE" | "ZTF" | "ZTG" | "ZUB" | "ZUC" | "ZUD" | "ZUE" | "ZUF" | "ZUG" | "ZVB" | "ZVC" | "ZVD" | "ZVE" | "ZVF" | "ZVG" | "ZWB" | "ZWC" | "ZWD" | "ZWE" | "ZWF" | "ZWG" | "ZXB" | "ZXC" | "ZXD" | "ZXE" | "ZXF" | "ZXG" | "ZYB" | "ZYC" | "ZYD" | "ZYE" | "ZYF" | "ZYG" | "ZZB" | "ZZC" | "ZZD" | "ZZE" | "ZZF" | "ZZG";
1455
+ type FactionTerritoryEnum = "AAB" | "AAC" | "AAD" | "AAE" | "AAF" | "AAG" | "ABA" | "ABB" | "ABC" | "ABD" | "ABE" | "ABF" | "ACA" | "ACB" | "ACC" | "ACD" | "ACE" | "ACF" | "ACG" | "ADA" | "ADB" | "ADC" | "ADD" | "ADE" | "ADF" | "ADG" | "AEA" | "AEB" | "AEC" | "AED" | "AEE" | "AEF" | "AFA" | "AFB" | "AFC" | "AFD" | "AFE" | "AFF" | "AFG" | "AGA" | "AGB" | "AGC" | "AGD" | "AGE" | "AGF" | "AGG" | "AHA" | "AHB" | "AHC" | "AHD" | "AHE" | "AHF" | "AIA" | "AIB" | "AIC" | "AID" | "AIE" | "AIF" | "AJA" | "AJB" | "AJC" | "AJD" | "AJE" | "AJF" | "AKA" | "AKB" | "AKC" | "AKD" | "AKE" | "AKF" | "ALA" | "ALB" | "ALC" | "ALD" | "ALE" | "ALF" | "AMA" | "AMB" | "AMC" | "AMD" | "AME" | "AMF" | "ANB" | "ANC" | "AND" | "ANE" | "ANF" | "ANG" | "AOB" | "AOC" | "AOD" | "AOE" | "AOF" | "AOG" | "APB" | "APC" | "APD" | "APE" | "APF" | "APG" | "AQB" | "AQC" | "AQD" | "AQE" | "AQF" | "AQG" | "ARB" | "ARC" | "ARD" | "ARE" | "ARF" | "ASB" | "ASC" | "ASD" | "ASE" | "ASF" | "ASG" | "ATB" | "ATC" | "ATD" | "ATE" | "ATF" | "ATG" | "AUB" | "AUC" | "AUD" | "AUE" | "AUF" | "AUG" | "AVB" | "AVC" | "AVD" | "AVE" | "AVF" | "AVG" | "AWB" | "AWC" | "AWD" | "AWE" | "AWF" | "AWG" | "AXB" | "AXC" | "AXD" | "AXE" | "AXF" | "AXG" | "AYB" | "AYC" | "AYD" | "AYE" | "AYF" | "AYG" | "AZB" | "AZC" | "AZD" | "AZE" | "AZF" | "AZG" | "BAA" | "BAB" | "BAC" | "BAD" | "BAE" | "BAF" | "BAG" | "BBA" | "BBB" | "BBC" | "BBD" | "BBE" | "BBF" | "BBG" | "BCA" | "BCB" | "BCC" | "BCD" | "BCE" | "BCF" | "BCG" | "BDA" | "BDB" | "BDC" | "BDD" | "BDE" | "BDF" | "BDG" | "BEA" | "BEB" | "BEC" | "BED" | "BEE" | "BEF" | "BFA" | "BFB" | "BFC" | "BFD" | "BFE" | "BFF" | "BFG" | "BGA" | "BGB" | "BGC" | "BGD" | "BGE" | "BGF" | "BGG" | "BHA" | "BHB" | "BHC" | "BHD" | "BHE" | "BHF" | "BIA" | "BIB" | "BIC" | "BID" | "BIE" | "BIF" | "BJA" | "BJB" | "BJC" | "BJD" | "BJE" | "BJF" | "BKA" | "BKB" | "BKC" | "BKD" | "BKE" | "BKF" | "BLA" | "BLB" | "BLC" | "BLD" | "BLE" | "BLF" | "BMA" | "BMB" | "BMC" | "BMD" | "BME" | "BMF" | "BNB" | "BNC" | "BND" | "BNE" | "BNF" | "BNG" | "BOB" | "BOC" | "BOD" | "BOE" | "BOF" | "BPB" | "BPC" | "BPD" | "BPE" | "BPF" | "BPG" | "BQB" | "BQC" | "BQD" | "BQF" | "BQG" | "BRB" | "BRC" | "BRD" | "BRE" | "BRF" | "BRG" | "BSB" | "BSC" | "BSD" | "BSE" | "BSF" | "BTB" | "BTC" | "BTD" | "BTE" | "BTF" | "BTG" | "BUB" | "BUC" | "BUD" | "BUE" | "BUF" | "BUG" | "BVB" | "BVC" | "BVD" | "BVE" | "BVF" | "BVG" | "BWB" | "BWC" | "BWD" | "BWE" | "BWF" | "BWG" | "BXB" | "BXC" | "BXD" | "BXE" | "BXF" | "BXG" | "BYB" | "BYC" | "BYD" | "BYE" | "BYF" | "BYG" | "BZB" | "BZC" | "BZD" | "BZE" | "BZF" | "BZG" | "CAA" | "CAB" | "CAC" | "CAD" | "CAE" | "CAF" | "CAG" | "CBA" | "CBB" | "CBC" | "CBD" | "CBE" | "CBF" | "CBG" | "CCA" | "CCB" | "CCC" | "CCD" | "CCE" | "CCF" | "CCG" | "CDA" | "CDB" | "CDC" | "CDD" | "CDE" | "CDF" | "CDG" | "CEA" | "CEB" | "CEC" | "CED" | "CEE" | "CEF" | "CFA" | "CFB" | "CFC" | "CFD" | "CFE" | "CFG" | "CGA" | "CGB" | "CGC" | "CGD" | "CGE" | "CGF" | "CGG" | "CHA" | "CHB" | "CHC" | "CHD" | "CHE" | "CHF" | "CIA" | "CIB" | "CIC" | "CID" | "CIE" | "CIF" | "CJA" | "CJB" | "CJC" | "CJD" | "CJE" | "CJF" | "CKA" | "CKB" | "CKC" | "CKD" | "CKE" | "CKF" | "CLA" | "CLB" | "CLC" | "CLD" | "CLE" | "CLF" | "CMA" | "CMB" | "CMC" | "CMD" | "CME" | "CMF" | "CNB" | "CNC" | "CND" | "CNE" | "CNF" | "CNG" | "COB" | "COC" | "COD" | "COE" | "COF" | "COG" | "CPB" | "CPC" | "CPD" | "CPE" | "CPF" | "CPG" | "CQB" | "CQC" | "CQD" | "CQF" | "CQG" | "CRB" | "CRC" | "CRD" | "CRE" | "CRF" | "CRG" | "CSB" | "CSC" | "CSD" | "CSE" | "CSF" | "CSG" | "CTB" | "CTC" | "CTD" | "CTE" | "CTF" | "CTG" | "CUB" | "CUC" | "CUD" | "CUE" | "CUF" | "CUG" | "CVB" | "CVC" | "CVD" | "CVE" | "CVF" | "CVG" | "CWB" | "CWC" | "CWD" | "CWE" | "CWF" | "CWG" | "CXB" | "CXC" | "CXD" | "CXE" | "CXF" | "CXG" | "CYB" | "CYC" | "CYD" | "CYE" | "CYF" | "CZB" | "CZC" | "CZD" | "CZE" | "CZF" | "CZG" | "DAA" | "DAB" | "DAC" | "DAD" | "DAE" | "DAF" | "DAG" | "DBA" | "DBB" | "DBC" | "DBD" | "DBE" | "DBF" | "DBG" | "DCA" | "DCB" | "DCC" | "DCD" | "DCE" | "DCF" | "DCG" | "DDA" | "DDB" | "DDC" | "DDD" | "DDE" | "DDF" | "DDG" | "DEA" | "DEB" | "DEC" | "DED" | "DEE" | "DEF" | "DFA" | "DFB" | "DFC" | "DFD" | "DFE" | "DFF" | "DFG" | "DGA" | "DGB" | "DGC" | "DGD" | "DGE" | "DGF" | "DGG" | "DHA" | "DHB" | "DHC" | "DHD" | "DHE" | "DHF" | "DIA" | "DIB" | "DIC" | "DID" | "DIE" | "DIF" | "DJA" | "DJB" | "DJC" | "DJD" | "DJE" | "DKA" | "DKB" | "DKC" | "DKD" | "DKE" | "DKF" | "DLA" | "DLB" | "DLC" | "DLD" | "DLE" | "DLF" | "DMA" | "DMB" | "DMC" | "DMD" | "DME" | "DMF" | "DNB" | "DNC" | "DND" | "DNE" | "DNF" | "DNG" | "DOB" | "DOC" | "DOD" | "DOE" | "DOF" | "DOG" | "DPB" | "DPC" | "DPD" | "DPE" | "DPF" | "DPG" | "DQB" | "DQC" | "DQD" | "DQF" | "DQG" | "DRB" | "DRC" | "DRD" | "DRE" | "DRF" | "DRG" | "DSB" | "DSC" | "DSD" | "DSE" | "DSF" | "DSG" | "DTB" | "DTC" | "DTD" | "DTE" | "DTF" | "DTG" | "DUB" | "DUC" | "DUD" | "DUE" | "DUF" | "DUG" | "DVB" | "DVC" | "DVD" | "DVE" | "DVF" | "DVG" | "DWB" | "DWC" | "DWD" | "DWE" | "DWF" | "DWG" | "DXB" | "DXC" | "DXD" | "DXE" | "DXF" | "DXG" | "DYB" | "DYC" | "DYD" | "DYE" | "DYF" | "DYG" | "DZB" | "DZC" | "DZD" | "DZE" | "DZF" | "DZG" | "EAA" | "EAB" | "EAC" | "EAD" | "EAE" | "EAF" | "EAG" | "EBA" | "EBB" | "EBC" | "EBD" | "EBE" | "EBF" | "EBG" | "ECA" | "ECB" | "ECC" | "ECD" | "ECE" | "ECF" | "ECG" | "EDA" | "EDB" | "EDC" | "EDD" | "EDE" | "EDF" | "EDG" | "EEA" | "EEB" | "EEC" | "EED" | "EEE" | "EEF" | "EFA" | "EFB" | "EFC" | "EFD" | "EFE" | "EFF" | "EFG" | "EGA" | "EGB" | "EGC" | "EGD" | "EGE" | "EGF" | "EHA" | "EHB" | "EHC" | "EHD" | "EHE" | "EHF" | "EIA" | "EIB" | "EIC" | "EID" | "EIE" | "EIF" | "EJA" | "EJB" | "EJC" | "EJD" | "EJE" | "EKA" | "EKB" | "EKC" | "EKD" | "EKE" | "EKF" | "ELA" | "ELB" | "ELC" | "ELD" | "ELE" | "ELF" | "EMA" | "EMB" | "EMC" | "EMD" | "EME" | "EMF" | "ENB" | "ENC" | "END" | "ENE" | "ENF" | "ENG" | "EOB" | "EOC" | "EOD" | "EOE" | "EOF" | "EPB" | "EPC" | "EPD" | "EPE" | "EPF" | "EPG" | "EQB" | "EQC" | "EQD" | "EQF" | "EQG" | "ERB" | "ERC" | "ERD" | "ERE" | "ERF" | "ERG" | "ESB" | "ESC" | "ESD" | "ESE" | "ESF" | "ESG" | "ETB" | "ETC" | "ETD" | "ETE" | "ETF" | "ETG" | "EUB" | "EUC" | "EUD" | "EUE" | "EUF" | "EUG" | "EVB" | "EVC" | "EVD" | "EVE" | "EVF" | "EVG" | "EWB" | "EWC" | "EWD" | "EWE" | "EWF" | "EWG" | "EXB" | "EXC" | "EXD" | "EXE" | "EXF" | "EXG" | "EYB" | "EYC" | "EYD" | "EYE" | "EYF" | "EYG" | "EZB" | "EZC" | "EZD" | "EZE" | "EZF" | "EZG" | "FAA" | "FAB" | "FAC" | "FAD" | "FAE" | "FAF" | "XAG" | "FBA" | "FBB" | "FBC" | "FBD" | "FBF" | "FBG" | "FCA" | "FCB" | "FCC" | "FCD" | "FCE" | "FCF" | "FCG" | "FDA" | "FDB" | "FDC" | "FDD" | "FDE" | "FDF" | "FDG" | "FEA" | "FEB" | "FEC" | "FED" | "FEE" | "FEF" | "FFA" | "FFB" | "FFC" | "FFD" | "FFE" | "FFF" | "FFG" | "FGA" | "FGB" | "FGC" | "FGD" | "FGE" | "FGF" | "FGG" | "FHA" | "FHB" | "FHC" | "FHD" | "FHE" | "FHF" | "FIA" | "FIB" | "FIC" | "FID" | "FIE" | "FIF" | "FJA" | "FJB" | "FJC" | "FJD" | "FJE" | "FJF" | "FKA" | "FKB" | "FKC" | "FKD" | "FKE" | "FKF" | "FLA" | "FLB" | "FLC" | "FLD" | "FLE" | "FLF" | "FMA" | "FMC" | "FMD" | "FME" | "FMF" | "FNB" | "FNC" | "FND" | "FNE" | "FNF" | "FNG" | "FOB" | "FOC" | "FOD" | "FOE" | "FOF" | "FPB" | "FPC" | "FPD" | "FPE" | "FPF" | "FPG" | "FQB" | "FQC" | "FQD" | "FQF" | "FQG" | "FRB" | "FRC" | "FRD" | "FRE" | "FRF" | "FRG" | "FSB" | "FSC" | "FSD" | "FSE" | "FSF" | "FSG" | "FTB" | "FTC" | "FTD" | "FTE" | "FTF" | "FTG" | "FUB" | "FUC" | "FUD" | "FUE" | "FUF" | "FUG" | "FVB" | "FVC" | "FVD" | "FVE" | "FVF" | "FVG" | "FWB" | "FWC" | "FWD" | "FWE" | "FWF" | "FWG" | "FXB" | "FXC" | "FXD" | "FXE" | "FXF" | "FXG" | "FYB" | "FYC" | "FYD" | "FYE" | "FYF" | "FYG" | "FZB" | "FZC" | "FZD" | "FZE" | "FZF" | "FZG" | "GAA" | "GAB" | "GAC" | "GAD" | "GAE" | "GAF" | "GAG" | "GBA" | "GBB" | "GBC" | "GBD" | "GBE" | "GBF" | "GCA" | "GCB" | "GCC" | "GCD" | "GCE" | "GCF" | "GCG" | "GDA" | "GDB" | "GDC" | "GDD" | "GDE" | "GDF" | "GDG" | "GEA" | "GEB" | "GEC" | "GED" | "GEE" | "GEF" | "GFA" | "GFB" | "GFC" | "GFD" | "GFE" | "GFF" | "GFG" | "GGA" | "GGB" | "GGC" | "GGD" | "GGE" | "GGF" | "GHA" | "GHB" | "GHC" | "GHD" | "GHE" | "GHF" | "GIA" | "GIB" | "GIC" | "GID" | "GIE" | "GJA" | "GJB" | "GJC" | "GJD" | "GJE" | "GJF" | "GKA" | "GKB" | "GKC" | "GKD" | "GKE" | "GKF" | "GLA" | "GLB" | "GLC" | "GLD" | "GLE" | "GLF" | "GMA" | "GMC" | "GMD" | "GME" | "GMF" | "GNB" | "GNC" | "GND" | "GNE" | "GNF" | "GNG" | "GOB" | "GOC" | "GOD" | "GOE" | "GOF" | "GPB" | "GPC" | "GPD" | "GPE" | "GPF" | "GPG" | "GQC" | "GQD" | "GQF" | "GQG" | "GRB" | "GRC" | "GRD" | "GRE" | "GRF" | "GRG" | "GSB" | "GSC" | "GSD" | "GSE" | "GSF" | "GSG" | "GTB" | "GTC" | "GTD" | "GTE" | "GTF" | "GTG" | "GUB" | "GUC" | "GUD" | "GUF" | "GUG" | "GVB" | "GVC" | "GVD" | "GVE" | "GVF" | "GVG" | "GWB" | "GWC" | "GWD" | "GWE" | "GWF" | "GWG" | "GXB" | "GXC" | "GXD" | "GXE" | "GXF" | "GXG" | "GYB" | "GYC" | "GYD" | "GYE" | "GYF" | "GYG" | "GZB" | "GZC" | "GZD" | "GZE" | "GZF" | "GZG" | "HAA" | "HAB" | "HAC" | "HAD" | "HAE" | "HAF" | "HAG" | "HBA" | "HBB" | "HBC" | "HBD" | "HBE" | "HBF" | "HCA" | "HCB" | "HCC" | "HCD" | "HCE" | "HCF" | "HCG" | "HDA" | "HDB" | "HDC" | "HDD" | "HDE" | "HDF" | "HDG" | "HEA" | "HEB" | "HEC" | "HED" | "HEE" | "HEF" | "HFA" | "HFB" | "HFC" | "HFD" | "HFE" | "HFF" | "HGA" | "HGB" | "HGC" | "HGD" | "HGE" | "HGF" | "HHA" | "HHB" | "HHC" | "HHD" | "HHE" | "HHF" | "HIA" | "HIB" | "HIC" | "HID" | "HIE" | "HJA" | "HJB" | "HJC" | "HJD" | "HJE" | "HJF" | "HKA" | "HKB" | "HKC" | "HKD" | "HKE" | "HKF" | "HLA" | "HLB" | "HLC" | "HLD" | "HLE" | "HLF" | "HMA" | "HMC" | "HMD" | "HME" | "HMF" | "HNB" | "HNC" | "HND" | "HNE" | "HNF" | "HNG" | "HOB" | "HOC" | "HOD" | "HOE" | "HOF" | "HPB" | "HPC" | "HPD" | "HPE" | "HPF" | "HPG" | "HQB" | "HQC" | "HQD" | "HQF" | "HQG" | "HRB" | "HRC" | "HRD" | "HRE" | "HRF" | "HRG" | "HSB" | "HSC" | "HSD" | "HSE" | "HSF" | "HSG" | "HTB" | "HTC" | "HTD" | "HTE" | "HTF" | "HTG" | "HUB" | "HUC" | "HUD" | "HUE" | "HUF" | "HUG" | "HVB" | "HVC" | "HVD" | "HVE" | "HVF" | "HVG" | "HWB" | "HWC" | "HWD" | "HWE" | "HWF" | "HWG" | "HXB" | "HXC" | "HXD" | "HXE" | "HXF" | "HXG" | "HYB" | "HYC" | "HYD" | "HYE" | "HYF" | "HYG" | "HZB" | "HZC" | "HZD" | "HZE" | "HZF" | "HZG" | "IAA" | "IAB" | "IAC" | "IAD" | "IAE" | "IAF" | "IAG" | "IBA" | "IBB" | "IBC" | "IBD" | "IBE" | "IBF" | "ICA" | "ICB" | "ICC" | "ICD" | "ICE" | "ICF" | "ICG" | "IDA" | "IDB" | "IDC" | "IDD" | "IDE" | "IDF" | "IDG" | "IEA" | "IEB" | "IEC" | "IED" | "IEE" | "IEF" | "IFA" | "IFB" | "IFC" | "IFD" | "IFE" | "IFF" | "IFG" | "IGA" | "IGB" | "IGC" | "IGD" | "IGE" | "IGF" | "IGG" | "IHA" | "IHB" | "IHC" | "IHD" | "IHE" | "IHF" | "IIA" | "IIB" | "IIC" | "IID" | "IIE" | "IJA" | "IJB" | "IJC" | "IJD" | "IJE" | "IJF" | "IKA" | "IKB" | "IKC" | "IKD" | "IKE" | "IKF" | "ILA" | "ILB" | "ILC" | "ILD" | "ILE" | "ILF" | "IMA" | "IMB" | "IMC" | "IMD" | "IME" | "IMF" | "INB" | "INC" | "IND" | "INE" | "INF" | "ING" | "IOB" | "IOC" | "IOD" | "IOE" | "IOF" | "IPB" | "IPC" | "IPD" | "IPE" | "IPF" | "IPG" | "IQB" | "IQC" | "IQD" | "IQF" | "IQG" | "IRB" | "IRC" | "IRD" | "IRE" | "IRF" | "IRG" | "ISB" | "ISC" | "ISD" | "ISE" | "ISF" | "ISG" | "ITB" | "ITC" | "ITD" | "ITE" | "ITF" | "ITG" | "IUB" | "IUC" | "IUD" | "IUE" | "IUF" | "IUG" | "IVB" | "IVC" | "IVD" | "IVE" | "IVF" | "IVG" | "IWB" | "IWC" | "IWD" | "IWE" | "IWF" | "IWG" | "IXB" | "IXC" | "IXD" | "IXE" | "IXF" | "IXG" | "IYB" | "IYC" | "IYD" | "IYE" | "IYF" | "IYG" | "IZB" | "IZC" | "IZD" | "IZE" | "IZF" | "IZG" | "JAA" | "JAB" | "JAC" | "JAD" | "JAE" | "JAF" | "JAG" | "JBA" | "JBB" | "JBC" | "JBD" | "JBE" | "JBF" | "JCA" | "JCB" | "JCC" | "JCD" | "JCE" | "JCF" | "JCG" | "JDA" | "JDB" | "JDC" | "JDD" | "JDE" | "JDF" | "JDG" | "JEA" | "JEB" | "JEC" | "JED" | "JEE" | "JEF" | "JFA" | "JFB" | "JFC" | "JFD" | "JFE" | "JFF" | "JFG" | "JGA" | "JGB" | "JGC" | "JGD" | "JGE" | "JGF" | "JHA" | "JHB" | "JHC" | "JHD" | "JHE" | "JHF" | "JIA" | "JIB" | "JIC" | "JID" | "JIE" | "JIF" | "JJA" | "JJB" | "JJC" | "JJD" | "JJE" | "JJF" | "JKA" | "JKB" | "JKC" | "JKD" | "JKE" | "JKF" | "JLA" | "JLB" | "JLC" | "JLD" | "JLE" | "JLF" | "JMA" | "JMC" | "JMD" | "JME" | "JMF" | "JNB" | "JNC" | "JND" | "JNE" | "JNF" | "JNG" | "JOB" | "JOC" | "JOD" | "JOE" | "JOF" | "JPB" | "JPC" | "JPD" | "JPE" | "JPF" | "JPG" | "JQB" | "JQC" | "JQD" | "JQF" | "JQG" | "JRB" | "JRC" | "JRD" | "JRE" | "JRF" | "JRG" | "JSB" | "JSC" | "JSD" | "JSE" | "JSF" | "JSG" | "JTB" | "JTC" | "JTD" | "JTE" | "JTF" | "JTG" | "JUB" | "JUC" | "JUD" | "JUE" | "JUF" | "JUG" | "JVB" | "JVC" | "JVD" | "JVE" | "JVF" | "JVG" | "JWB" | "JWC" | "JWD" | "JWE" | "JWF" | "JWG" | "JXB" | "JXC" | "JXD" | "JXE" | "JXF" | "JXG" | "JYB" | "JYC" | "JYD" | "JYE" | "JYF" | "JYG" | "JZB" | "JZC" | "JZD" | "JZE" | "JZF" | "JZG" | "KAA" | "KAB" | "KAC" | "KAD" | "KAE" | "KAF" | "KAG" | "KBA" | "KBB" | "KBC" | "KBD" | "KBE" | "KBF" | "KBG" | "KCA" | "KCB" | "KCC" | "KCD" | "KCE" | "KCF" | "KCG" | "KDA" | "KDB" | "KDC" | "KDD" | "KDE" | "KEA" | "KEB" | "KEC" | "KED" | "KEE" | "KEF" | "KFA" | "KFB" | "KFC" | "KFD" | "KFE" | "KFF" | "KFG" | "KGA" | "KGB" | "KGC" | "KGD" | "KGE" | "KGF" | "KGG" | "KHA" | "KHB" | "KHC" | "KHD" | "KHE" | "KHF" | "KIA" | "KIB" | "KIC" | "KID" | "KIE" | "KIF" | "KJA" | "KJB" | "KJC" | "KJD" | "KJE" | "KJF" | "KKA" | "KKB" | "KKC" | "KKD" | "KKE" | "KKF" | "KLA" | "KLB" | "KLC" | "KLD" | "KLE" | "KLF" | "KMA" | "KMC" | "KMD" | "KME" | "KMF" | "KNB" | "KNC" | "KND" | "KNE" | "KNF" | "KNG" | "KOB" | "KOC" | "KOD" | "KOE" | "KOF" | "KPB" | "KPC" | "KPD" | "KPE" | "KPF" | "KPG" | "KQB" | "KQC" | "KQD" | "KQE" | "KQF" | "KQG" | "KRB" | "KRC" | "KRD" | "KRE" | "KRF" | "KRG" | "KSB" | "KSC" | "KSD" | "KSE" | "KSF" | "KSG" | "KTB" | "KTC" | "KTD" | "KTE" | "KTF" | "KTG" | "KUB" | "KUC" | "KUD" | "KUE" | "KUF" | "KUG" | "KVB" | "KVC" | "KVD" | "KVE" | "KVF" | "KVG" | "KWB" | "KWC" | "KWD" | "KWE" | "KWF" | "KWG" | "KXB" | "KXC" | "KXD" | "KXE" | "KXF" | "KXG" | "KYB" | "KYC" | "KYD" | "KYE" | "KYF" | "KYG" | "KZB" | "KZC" | "KZD" | "KZE" | "KZF" | "KZG" | "LAA" | "LAB" | "LAC" | "LAD" | "LAE" | "LAF" | "LAG" | "LBA" | "LBB" | "LBC" | "LBD" | "LBE" | "LBF" | "LBG" | "LCA" | "LCB" | "LCC" | "LCD" | "LCE" | "LCF" | "LCG" | "LDA" | "LDB" | "LDC" | "LDD" | "LDE" | "LDF" | "LEA" | "LEB" | "LEC" | "LED" | "LEE" | "LEF" | "LFA" | "LFB" | "LFC" | "LFD" | "LFE" | "LFF" | "LFG" | "LGA" | "LGB" | "LGC" | "LGD" | "LGE" | "LGF" | "LGG" | "LHA" | "LHB" | "LHC" | "LHD" | "LHE" | "LHF" | "LIA" | "LIB" | "LIC" | "LID" | "LIE" | "LIF" | "LJA" | "LJB" | "LJC" | "LJD" | "LJE" | "LJF" | "LKA" | "LKB" | "LKC" | "LKD" | "LKE" | "LKF" | "LLA" | "LLB" | "LLC" | "LLD" | "LLE" | "LLF" | "LMA" | "LMC" | "LMD" | "LME" | "LMF" | "LNB" | "LNC" | "LND" | "LNE" | "LNF" | "LNG" | "LOB" | "LOC" | "LOD" | "LOE" | "LOF" | "LPB" | "LPC" | "LPD" | "LPE" | "LPF" | "LPG" | "LQB" | "LQC" | "LQD" | "LQE" | "LQF" | "LQG" | "LRB" | "LRC" | "LRD" | "LRE" | "LRF" | "LRG" | "LSB" | "LSC" | "LSD" | "LSE" | "LSF" | "LSG" | "LTB" | "LTC" | "LTD" | "LTE" | "LTF" | "LTG" | "LUB" | "LUC" | "LUD" | "LUE" | "LUF" | "LUG" | "LVB" | "LVC" | "LVD" | "LVE" | "LVF" | "LVG" | "LWB" | "LWC" | "LWD" | "LWE" | "LWF" | "LWG" | "LXB" | "LXC" | "LXD" | "LXE" | "LXF" | "LXG" | "LYB" | "LYC" | "LYD" | "LYE" | "LYF" | "LYG" | "LZB" | "LZC" | "LZD" | "LZE" | "LZF" | "LZG" | "MAA" | "MAB" | "MAC" | "MAD" | "MAE" | "MAF" | "MAG" | "MBA" | "MBB" | "MBC" | "MBD" | "MBE" | "MBF" | "MBG" | "MCA" | "MCB" | "MCC" | "MCD" | "MCE" | "MCF" | "MCG" | "MDA" | "MDB" | "MDC" | "MDD" | "MDE" | "MDF" | "MDG" | "MEA" | "MEB" | "MEC" | "MED" | "MEE" | "MEF" | "MEG" | "MFA" | "MFB" | "MFC" | "MFD" | "MFE" | "MFF" | "MFG" | "MGA" | "MGB" | "MGC" | "MGD" | "MGE" | "MGF" | "MGG" | "MHA" | "MHB" | "MHC" | "MHD" | "MHE" | "MHF" | "MIA" | "MIB" | "MIC" | "MID" | "MIE" | "MIF" | "MJA" | "MJB" | "MJC" | "MJD" | "MJE" | "MKA" | "MKB" | "MKC" | "MKD" | "MKE" | "MKF" | "MLA" | "MLB" | "MLC" | "MLD" | "MLE" | "MLF" | "MMA" | "MMC" | "MMD" | "MME" | "MMF" | "MNB" | "MNC" | "MND" | "MNE" | "MNF" | "MNG" | "MOB" | "MOC" | "MOD" | "MOE" | "MOF" | "MPB" | "MPC" | "MPD" | "MPE" | "MPF" | "MPG" | "MQB" | "MQC" | "MQD" | "MQE" | "MQF" | "MQG" | "MRB" | "MRC" | "MRD" | "MRE" | "MRF" | "MRG" | "MSB" | "MSC" | "MSD" | "MSE" | "MSF" | "MSG" | "MTB" | "MTC" | "MTD" | "MTE" | "MTF" | "MTG" | "MUB" | "MUC" | "MUD" | "MUE" | "MUF" | "MUG" | "MVB" | "MVC" | "MVD" | "MVE" | "MVF" | "MVG" | "MWB" | "MWC" | "MWD" | "MWE" | "MWF" | "MWG" | "MXB" | "MXC" | "MXD" | "MXE" | "MXF" | "MXG" | "MYB" | "MYC" | "MYD" | "MYE" | "MYF" | "MYG" | "MZB" | "MZC" | "MZD" | "MZE" | "MZF" | "MZG" | "NAB" | "NAC" | "NAD" | "NAE" | "NAF" | "NAG" | "NBA" | "NBB" | "NBC" | "NBD" | "NBE" | "NBF" | "NBG" | "NCA" | "NCB" | "NCC" | "NCD" | "NCE" | "NCF" | "NCG" | "NDA" | "NDB" | "NDC" | "NDD" | "NDE" | "NDF" | "NDG" | "NEA" | "NEB" | "NEC" | "NED" | "NEE" | "NEF" | "NEG" | "NFA" | "NFB" | "NFC" | "NFD" | "NFE" | "NFF" | "NFG" | "NGA" | "NGB" | "NGC" | "NGD" | "NGE" | "NGF" | "NGG" | "NHA" | "NHB" | "NHC" | "NHD" | "NHE" | "NHF" | "NIA" | "NIB" | "NIC" | "NID" | "NIE" | "NIF" | "NJA" | "NJB" | "NJC" | "NJD" | "NJE" | "NJF" | "NKA" | "NKB" | "NKC" | "NKD" | "NKE" | "NKF" | "NLA" | "NLB" | "NLC" | "NLD" | "NLE" | "NLF" | "NMA" | "NMB" | "NMC" | "NMD" | "NME" | "NMF" | "NNB" | "NND" | "NNE" | "NNF" | "NNG" | "NOB" | "NOC" | "NOD" | "NOE" | "NOF" | "NOG" | "NPB" | "NPC" | "NPD" | "NPE" | "NPF" | "NQB" | "NQC" | "NQD" | "NQE" | "NQF" | "NQG" | "NRB" | "NRC" | "NRD" | "NRE" | "NRF" | "NRG" | "NSB" | "NSC" | "NSD" | "NSE" | "NSF" | "NSG" | "NTB" | "NTC" | "NTD" | "NTE" | "NTF" | "NTG" | "NUB" | "NUC" | "NUD" | "NUE" | "NUF" | "NUG" | "NVB" | "NVC" | "NVD" | "NVE" | "NVF" | "NVG" | "NWB" | "NWC" | "NWD" | "NWE" | "NWF" | "NWG" | "NXB" | "NXC" | "NXD" | "NXE" | "NXF" | "NXG" | "NYB" | "NYC" | "NYD" | "NYE" | "NYF" | "NYG" | "NZB" | "NZC" | "NZD" | "NZE" | "NZF" | "NZG" | "OAB" | "OAC" | "OAD" | "OAE" | "OAF" | "OAG" | "OBA" | "OBB" | "OBC" | "OBD" | "OBE" | "OBF" | "OCA" | "OCB" | "OCC" | "OCD" | "OCE" | "OCF" | "OCG" | "ODA" | "ODB" | "ODC" | "ODD" | "ODE" | "ODF" | "ODG" | "OEA" | "OEB" | "OEC" | "OED" | "OEE" | "OEF" | "OFA" | "OFB" | "OFC" | "OFD" | "OFE" | "OFF" | "OFG" | "OGA" | "OGB" | "OGC" | "OGD" | "OGE" | "OGF" | "OGG" | "OHA" | "OHB" | "OHC" | "OHD" | "OHE" | "OHF" | "OIA" | "OIB" | "OIC" | "OID" | "OIE" | "OIF" | "OJA" | "OJB" | "OJC" | "OJD" | "OJE" | "OJF" | "OKA" | "OKB" | "OKC" | "OKD" | "OKE" | "OKF" | "OLA" | "OLB" | "OLC" | "OLD" | "OLE" | "OLF" | "OMA" | "OMB" | "OMC" | "OMD" | "OME" | "OMF" | "ONB" | "OND" | "ONE" | "ONF" | "ONG" | "OOB" | "OOC" | "OOD" | "OOE" | "OOF" | "OOG" | "OPB" | "OPC" | "OPD" | "OPE" | "OPF" | "OQB" | "OQC" | "OQD" | "OQE" | "OQF" | "OQG" | "ORB" | "ORC" | "ORD" | "ORE" | "ORF" | "ORG" | "OSB" | "OSC" | "OSD" | "OSE" | "OSF" | "OTB" | "OTC" | "OTD" | "OTE" | "OTG" | "OUB" | "OUC" | "OUD" | "OUE" | "OUF" | "OUG" | "OVB" | "OVC" | "OVD" | "OVE" | "OVF" | "OVG" | "OWB" | "OWC" | "OWD" | "OWE" | "OWF" | "OWG" | "OXB" | "OXC" | "OXD" | "OXE" | "OXF" | "OXG" | "OYB" | "OYC" | "OYD" | "OYE" | "OYF" | "OYG" | "OZB" | "OZC" | "OZD" | "OZE" | "OZF" | "OZG" | "PAB" | "PAC" | "PAD" | "PAE" | "PAF" | "PAG" | "PBA" | "PBB" | "PBC" | "PBD" | "PBE" | "PBF" | "PCA" | "PCB" | "PCC" | "PCD" | "PCE" | "PCF" | "PCG" | "PDA" | "PDB" | "PDC" | "PDD" | "PDE" | "PDF" | "PDG" | "PEA" | "PEB" | "PEC" | "PED" | "PEE" | "PEF" | "PFA" | "PFB" | "PFC" | "PFD" | "PFE" | "PFF" | "PFG" | "PGA" | "PGB" | "PGC" | "PGD" | "PGE" | "PGF" | "PGG" | "PHA" | "PHB" | "PHC" | "PHD" | "PHE" | "PHF" | "PIA" | "PIB" | "PIC" | "PID" | "PIE" | "PIF" | "PJA" | "PJB" | "PJC" | "PJD" | "PJE" | "PJF" | "PKA" | "PKB" | "PKC" | "PKD" | "PKE" | "PKF" | "PLA" | "PLB" | "PLC" | "PLD" | "PLE" | "PLF" | "PMA" | "PMB" | "PMC" | "PMD" | "PME" | "PMF" | "PNB" | "PND" | "PNE" | "PNF" | "PNG" | "POB" | "POC" | "POD" | "POE" | "POF" | "POG" | "PPB" | "PPC" | "PPD" | "PPE" | "PPF" | "PQB" | "PQC" | "PQD" | "PQE" | "PQF" | "PQG" | "PRB" | "PRC" | "PRD" | "PRE" | "PRF" | "PRG" | "PSB" | "PSC" | "PSD" | "PSE" | "PSF" | "PTB" | "PTC" | "PTD" | "PTE" | "PTF" | "PTG" | "PUB" | "PUC" | "PUD" | "PUE" | "PUF" | "PUG" | "PVB" | "PVC" | "PVD" | "PVE" | "PVF" | "PVG" | "PWB" | "PWC" | "PWD" | "PWE" | "PWF" | "PWG" | "PXB" | "PXC" | "PXD" | "PXE" | "PXF" | "PXG" | "PYB" | "PYC" | "PYD" | "PYE" | "PYF" | "PYG" | "PZB" | "PZC" | "PZD" | "PZE" | "PZF" | "PZG" | "QAB" | "QAC" | "QAD" | "QAE" | "QAF" | "QAG" | "QBA" | "QBB" | "QBC" | "QBD" | "QBE" | "QBF" | "QCA" | "QCB" | "QCC" | "QCD" | "QCE" | "QCF" | "QCG" | "QDA" | "QDB" | "QDC" | "QDD" | "QDE" | "QDG" | "QEA" | "QEB" | "QEC" | "QED" | "QEE" | "QEF" | "QFA" | "QFB" | "QFC" | "QFD" | "QFE" | "QFF" | "QFG" | "QGA" | "QGB" | "QGC" | "QGD" | "QGE" | "QGF" | "QGG" | "QHA" | "QHB" | "QHC" | "QHD" | "QHE" | "QHF" | "QIA" | "QIB" | "QIC" | "QID" | "QIE" | "QIF" | "QJA" | "QJB" | "QJC" | "QJD" | "QJE" | "QJF" | "QKA" | "QKB" | "QKC" | "QKD" | "QKE" | "QKF" | "QLA" | "QLB" | "QLC" | "QLD" | "QLE" | "QLF" | "QMA" | "QMB" | "QMC" | "QMD" | "QME" | "QMF" | "QNB" | "QND" | "QNE" | "QNF" | "QNG" | "QOB" | "QOC" | "QOD" | "QOE" | "QOF" | "QOG" | "QPB" | "QPC" | "QPD" | "QPE" | "QPF" | "QQB" | "QQC" | "QQD" | "QQE" | "QQF" | "QQG" | "QRB" | "QRC" | "QRD" | "QRE" | "QRF" | "QRG" | "QSB" | "QSC" | "QSD" | "QSE" | "QSF" | "QSG" | "QTB" | "QTC" | "QTD" | "QTE" | "QTF" | "QTG" | "QUB" | "QUC" | "QUD" | "QUE" | "QUF" | "QUG" | "QVB" | "QVC" | "QVD" | "QVE" | "QVF" | "QWB" | "QWC" | "QWD" | "QWE" | "QWF" | "QWG" | "QXB" | "QXC" | "QXD" | "QXE" | "QXF" | "QXG" | "QYB" | "QYC" | "QYD" | "QYE" | "QYF" | "QYG" | "QZB" | "QZC" | "QZD" | "QZE" | "QZF" | "QZG" | "RAB" | "RAC" | "RAD" | "RAE" | "RAF" | "RAG" | "RBA" | "RBB" | "RBC" | "RBD" | "RBE" | "RBF" | "RCA" | "RCB" | "RCC" | "RCD" | "RCE" | "RCF" | "RCG" | "RDA" | "RDB" | "RDC" | "RDD" | "RDE" | "RDF" | "RDG" | "REA" | "REB" | "REC" | "RED" | "REE" | "REF" | "RFA" | "RFB" | "RFC" | "RFD" | "RFE" | "RFF" | "RFG" | "RGA" | "RGB" | "RGC" | "RGD" | "RGE" | "RGF" | "RGG" | "RHA" | "RHB" | "RHC" | "RHD" | "RHE" | "RHF" | "RIA" | "RIB" | "RIC" | "RID" | "RIE" | "RIF" | "RJA" | "RJB" | "RJC" | "RJD" | "RJE" | "RJF" | "RKA" | "RKB" | "RKC" | "RKD" | "RKE" | "RKF" | "RLA" | "RLB" | "RLC" | "RLD" | "RLE" | "RLF" | "RMA" | "RMB" | "RMC" | "RMD" | "RME" | "RMF" | "RNB" | "RND" | "RNE" | "RNF" | "RNG" | "ROB" | "ROC" | "ROD" | "ROE" | "ROF" | "ROG" | "RPB" | "RPC" | "RPD" | "RPE" | "RPF" | "RQB" | "RQC" | "RQD" | "RQE" | "RQF" | "RQG" | "RRC" | "RRD" | "RRE" | "RRF" | "RRG" | "RSB" | "RSC" | "RSD" | "RSE" | "RSF" | "RTB" | "RTC" | "RTD" | "RTE" | "RTF" | "RTG" | "RUB" | "RUC" | "RUD" | "RUE" | "RUF" | "RUG" | "RVB" | "RVC" | "RVD" | "RVE" | "RVF" | "RVG" | "RWB" | "RWC" | "RWD" | "RWE" | "RWF" | "RWG" | "RXB" | "RXC" | "RXD" | "RXE" | "RXF" | "RXG" | "RYB" | "RYC" | "RYD" | "RYE" | "RYF" | "RYG" | "RZB" | "RZC" | "RZD" | "RZE" | "RZF" | "RZG" | "SAB" | "SAC" | "SAD" | "SAE" | "SAF" | "SAG" | "SBA" | "SBB" | "SBC" | "SBD" | "SBE" | "SBF" | "SCA" | "SCB" | "SCC" | "SCD" | "SCE" | "SCF" | "SCG" | "SDA" | "SDB" | "SDC" | "SDD" | "SDE" | "SDF" | "SDG" | "SEA" | "SEB" | "SEC" | "SED" | "SEE" | "SEF" | "SFA" | "SFB" | "SFC" | "SFD" | "SFE" | "SFF" | "SFG" | "SGA" | "SGB" | "SGC" | "SGD" | "SGE" | "SGF" | "SGG" | "SHA" | "SHB" | "SHC" | "SHD" | "SHE" | "SHF" | "SIA" | "SIB" | "SIC" | "SID" | "SIE" | "SIF" | "SJA" | "SJB" | "SJC" | "SJD" | "SJE" | "SJF" | "SKA" | "SKB" | "SKC" | "SKD" | "SKE" | "SKF" | "SLA" | "SLB" | "SLC" | "SLD" | "SLE" | "SLF" | "SMA" | "SMB" | "SMC" | "SMD" | "SME" | "SMF" | "SNB" | "SND" | "SNE" | "SNF" | "SNG" | "SOB" | "SOC" | "SOD" | "SOE" | "SOF" | "SOG" | "SPB" | "SPC" | "SPD" | "SPE" | "SPF" | "SPG" | "SQB" | "SQC" | "SQD" | "SQE" | "SQF" | "SQG" | "SRB" | "SRC" | "SRD" | "SRE" | "SRF" | "SRG" | "SSB" | "SSC" | "SSD" | "SSE" | "SSF" | "SSG" | "STB" | "STC" | "STD" | "STE" | "STF" | "STG" | "SUB" | "SUC" | "SUD" | "SUE" | "SUF" | "SUG" | "SVB" | "SVC" | "SVD" | "SVE" | "SVF" | "SVG" | "SWB" | "SWC" | "SWD" | "SWE" | "SWF" | "SWG" | "SXB" | "SXC" | "SXD" | "SXE" | "SXF" | "SXG" | "SYB" | "SYC" | "SYD" | "SYE" | "SYF" | "SYG" | "SZB" | "SZC" | "SZD" | "SZE" | "SZF" | "SZG" | "TAB" | "TAC" | "TAD" | "TAE" | "TAF" | "TAG" | "TBA" | "TBB" | "TBC" | "TBD" | "TBE" | "TBF" | "TCA" | "TCB" | "TCC" | "TCD" | "TCE" | "TCF" | "TCG" | "TDA" | "TDB" | "TDC" | "TDD" | "TDE" | "TDF" | "TDG" | "TEA" | "TEB" | "TEC" | "TED" | "TEE" | "TEF" | "TFA" | "TFB" | "TFC" | "TFD" | "TFE" | "TFF" | "TFG" | "TGA" | "TGB" | "TGC" | "TGD" | "TGE" | "TGF" | "TGG" | "THA" | "THB" | "THC" | "THD" | "THE" | "THF" | "TIA" | "TIB" | "TIC" | "TID" | "TIE" | "TIF" | "TJA" | "TJB" | "TJC" | "TJD" | "TJE" | "TJF" | "TKA" | "TKB" | "TKC" | "TKD" | "TKE" | "TKF" | "TLA" | "TLB" | "TLC" | "TLD" | "TLE" | "TLF" | "TMA" | "TMB" | "TMC" | "TMD" | "TME" | "TMF" | "TNB" | "TNC" | "TND" | "TNE" | "TNF" | "TNG" | "TOB" | "TOC" | "TOD" | "TOE" | "TOF" | "TOG" | "TPB" | "TPC" | "TPD" | "TPE" | "TPF" | "TPG" | "TQB" | "TQC" | "TQD" | "TQE" | "TQF" | "TQG" | "TRB" | "TRC" | "TRD" | "TRE" | "TRF" | "TRG" | "TSB" | "TSC" | "TSD" | "TSE" | "TSF" | "TSG" | "TTB" | "TTC" | "TTD" | "TTE" | "TTF" | "TTG" | "TUB" | "TUD" | "TUE" | "TUF" | "TUG" | "TVB" | "TVC" | "TVD" | "TVE" | "TVF" | "TVG" | "TWB" | "TWC" | "TWD" | "TWE" | "TWF" | "TWG" | "TXB" | "TXC" | "TXD" | "TXE" | "TXF" | "TXG" | "TYB" | "TYC" | "TYD" | "TYE" | "TYF" | "TYG" | "TZB" | "TZC" | "TZD" | "TZE" | "TZF" | "TZG" | "UAB" | "UAC" | "UAD" | "UAE" | "UAF" | "UAG" | "UBA" | "UBB" | "UBC" | "UBD" | "UBE" | "UBF" | "UCA" | "UCB" | "UCC" | "UCD" | "UCE" | "UCF" | "UCG" | "UDA" | "UDB" | "UDC" | "UDD" | "UDE" | "UDF" | "UDG" | "UEA" | "UEB" | "UEC" | "UED" | "UEE" | "UEF" | "UFA" | "UFB" | "UFC" | "UFD" | "UFF" | "UFG" | "UGA" | "UGB" | "UGC" | "UGD" | "UGE" | "UGF" | "UGG" | "UHA" | "UHB" | "UHC" | "UHD" | "UHE" | "UHF" | "UIA" | "UIB" | "UIC" | "UID" | "UIE" | "UIF" | "UJA" | "UJB" | "UJC" | "UJD" | "UJE" | "UJF" | "UKA" | "UKB" | "UKC" | "UKD" | "UKE" | "UKF" | "ULA" | "ULB" | "ULC" | "ULD" | "ULE" | "ULF" | "UMA" | "UMB" | "UMC" | "UMD" | "UME" | "UMF" | "UNB" | "UNC" | "UND" | "UNE" | "UNF" | "UNG" | "UOB" | "UOC" | "UOD" | "UOE" | "UOF" | "UOG" | "UPB" | "UPC" | "UPD" | "UPE" | "UPF" | "UPG" | "UQB" | "UQC" | "UQD" | "UQE" | "UQF" | "UQG" | "URB" | "URC" | "URD" | "URE" | "URF" | "URG" | "USB" | "USC" | "USD" | "USE" | "USF" | "USG" | "UTB" | "UTC" | "UTD" | "UTE" | "UTF" | "UTG" | "UUB" | "UUC" | "UUD" | "UUE" | "UUF" | "UUG" | "UVB" | "UVC" | "UVD" | "UVE" | "UVF" | "UVG" | "UWB" | "UWC" | "UWD" | "UWE" | "UWF" | "UWG" | "UXB" | "UXC" | "UXD" | "UXE" | "UXF" | "UXG" | "UYB" | "UYC" | "UYD" | "UYE" | "UYF" | "UYG" | "UZB" | "UZC" | "UZD" | "UZE" | "UZF" | "UZG" | "VAB" | "VAC" | "VAD" | "VAE" | "VAF" | "VAG" | "VBA" | "VBB" | "VBC" | "VBD" | "VBE" | "VBF" | "VBG" | "VCA" | "VCB" | "VCC" | "VCD" | "VCE" | "VCF" | "VCG" | "VDA" | "VDB" | "VDC" | "VDD" | "VDE" | "VDF" | "VDG" | "VEA" | "VEB" | "VEC" | "VED" | "VEE" | "VEF" | "VFA" | "VFB" | "VFC" | "VFD" | "VFE" | "VFF" | "VFG" | "VGA" | "VGB" | "VGC" | "VGD" | "VGE" | "VGF" | "VGG" | "VHA" | "VHB" | "VHC" | "VHD" | "VHE" | "VHF" | "VIA" | "VIB" | "VIC" | "VID" | "VIE" | "VIF" | "VJA" | "VJB" | "VJC" | "VJD" | "VJE" | "VKA" | "VKB" | "VKC" | "VKD" | "VKE" | "VKF" | "VLA" | "VLB" | "VLC" | "VLD" | "VLE" | "VLF" | "VMA" | "VMB" | "VMC" | "VMD" | "VME" | "VMF" | "VNB" | "VNC" | "VND" | "VNE" | "VNF" | "VNG" | "VOB" | "VOC" | "VOD" | "VOE" | "VOF" | "VOG" | "VPB" | "VPC" | "VPD" | "VPE" | "VPF" | "VPG" | "VQB" | "VQC" | "VQD" | "VQE" | "VQF" | "VQG" | "VRB" | "VRC" | "VRD" | "VRE" | "VRF" | "VRG" | "VSB" | "VSC" | "VSD" | "VSE" | "VSF" | "VSG" | "VTB" | "VTC" | "VTD" | "VTE" | "VTF" | "VTG" | "VUB" | "VUC" | "VUD" | "VUE" | "VUF" | "VUG" | "VVB" | "VVC" | "VVD" | "VVE" | "VVF" | "VVG" | "VWB" | "VWC" | "VWD" | "VWE" | "VWF" | "VWG" | "VXC" | "VXD" | "VXE" | "VXF" | "VXG" | "VYB" | "VYC" | "VYD" | "VYE" | "VYF" | "VYG" | "VZB" | "VZC" | "VZD" | "VZE" | "VZF" | "VZG" | "WAB" | "WAC" | "WAD" | "WAE" | "WAF" | "WAG" | "WBA" | "WBB" | "WBC" | "WBD" | "WBE" | "WBF" | "WBG" | "WCA" | "WCB" | "WCC" | "WCD" | "WCE" | "WCF" | "WCG" | "WDA" | "WDC" | "WDD" | "WDE" | "WDF" | "WDG" | "WEA" | "WEB" | "WEC" | "WED" | "WEE" | "WEF" | "WFA" | "WFB" | "WFC" | "WFD" | "WFE" | "WFF" | "WFG" | "WGA" | "WGB" | "WGC" | "WGD" | "WGE" | "WGF" | "WGG" | "WHA" | "WHB" | "WHC" | "WHD" | "WHE" | "WHF" | "WIA" | "WIB" | "WIC" | "WID" | "WIE" | "WIF" | "WJA" | "WJB" | "WJC" | "WJD" | "WJE" | "WJF" | "WKA" | "WKB" | "WKC" | "WKD" | "WKE" | "WKF" | "WLA" | "WLB" | "WLC" | "WLD" | "WLE" | "WLF" | "WMA" | "WMB" | "WMC" | "WMD" | "WME" | "WMF" | "WNB" | "WNC" | "WND" | "WNE" | "WNF" | "WNG" | "WOB" | "WOC" | "WOD" | "WOE" | "WOF" | "WOG" | "WPB" | "WPC" | "WPD" | "WPE" | "WPF" | "WPG" | "WQB" | "WQC" | "WQD" | "WQE" | "WQF" | "WQG" | "WRB" | "WRC" | "WRD" | "WRE" | "WRF" | "WRG" | "WSB" | "WSC" | "WSD" | "WSE" | "WSF" | "WSG" | "WTB" | "WTC" | "WTD" | "WTE" | "WTF" | "WTG" | "WUB" | "WUC" | "WUD" | "WUE" | "WUF" | "WUG" | "WVB" | "WVC" | "WVD" | "WVE" | "WVF" | "WVG" | "WWB" | "WWC" | "WWD" | "WWE" | "WWF" | "WWG" | "WXB" | "WXC" | "WXD" | "WXE" | "WXF" | "WXG" | "WYB" | "WYC" | "WYD" | "WYE" | "WYF" | "WYG" | "WZB" | "WZC" | "WZD" | "WZE" | "WZF" | "WZG" | "XAC" | "XAD" | "XAE" | "XAF" | "XBA" | "XBB" | "XBC" | "XBD" | "XBE" | "XBF" | "XBG" | "XCA" | "XCB" | "XCC" | "XCD" | "XCE" | "XCF" | "XCG" | "XDA" | "XDB" | "XDC" | "XDD" | "XDE" | "XDF" | "XDG" | "XEA" | "XEB" | "XEC" | "XED" | "XEE" | "XEF" | "XFA" | "XFB" | "XFC" | "XFD" | "XFE" | "XFF" | "XFG" | "XGA" | "XGB" | "XGC" | "XGD" | "XGE" | "XGF" | "XGG" | "XHA" | "XHB" | "XHC" | "XHD" | "XHE" | "XHF" | "XIA" | "XIB" | "XIC" | "XID" | "XIE" | "XIF" | "XJA" | "XJB" | "XJC" | "XJD" | "XJE" | "XJF" | "XKA" | "XKB" | "XKC" | "XKD" | "XKE" | "XKF" | "XLA" | "XLB" | "XLC" | "XLD" | "XLE" | "XLF" | "XMA" | "XMB" | "XMC" | "XMD" | "XME" | "XMF" | "XNB" | "XNC" | "XND" | "XNE" | "XNF" | "XNG" | "XOB" | "XOC" | "XOD" | "XOE" | "XOF" | "XOG" | "XPB" | "XPC" | "XPD" | "XPE" | "XPF" | "XPG" | "XQB" | "XQC" | "XQD" | "XQF" | "XQG" | "XRB" | "XRC" | "XRD" | "XRE" | "XRF" | "XRG" | "XSB" | "XSC" | "XSD" | "XSE" | "XSF" | "XSG" | "XTB" | "XTC" | "XTD" | "XTE" | "XTF" | "XTG" | "XUB" | "XUC" | "XUD" | "XUE" | "XUF" | "XUG" | "XVB" | "XVC" | "XVD" | "XVE" | "XVF" | "XVG" | "XWB" | "XWC" | "XWD" | "XWE" | "XWF" | "XWG" | "XXB" | "XXC" | "XXD" | "XXE" | "XXF" | "XXG" | "XYB" | "XYC" | "XYD" | "XYE" | "XYF" | "XYG" | "XZB" | "XZC" | "XZD" | "XZE" | "XZF" | "XZG" | "YAB" | "YAC" | "YAD" | "YAE" | "YAF" | "YAG" | "YBA" | "YBB" | "YBC" | "YBD" | "YBE" | "YBF" | "YCA" | "YCB" | "YCD" | "YCE" | "YCF" | "YCG" | "YDA" | "YDB" | "YDC" | "YDD" | "YDE" | "YDF" | "YDG" | "YEA" | "YEB" | "YEC" | "YED" | "YEE" | "YEF" | "YFA" | "YFB" | "YFC" | "YFD" | "YFE" | "YFG" | "YGA" | "YGB" | "YGC" | "YGD" | "YGE" | "YGF" | "YGG" | "YHA" | "YHB" | "YHC" | "YHD" | "YHE" | "YHF" | "YIA" | "YIB" | "YIC" | "YID" | "YIE" | "YIF" | "YJA" | "YJB" | "YJC" | "YJD" | "YJE" | "YJF" | "YKA" | "YKB" | "YKC" | "YKD" | "YKE" | "YKF" | "YLA" | "YLB" | "YLC" | "YLD" | "YLE" | "YLF" | "YMA" | "YMB" | "YMC" | "YMD" | "YME" | "YMF" | "YNB" | "YNC" | "YND" | "YNE" | "YNF" | "YNG" | "YOB" | "YOC" | "YOD" | "YOE" | "YOF" | "YOG" | "YPB" | "YPC" | "YPD" | "YPE" | "YPF" | "YPG" | "YQB" | "YQC" | "YQD" | "YQF" | "YQG" | "YRB" | "YRC" | "YRD" | "YRE" | "YRF" | "YRG" | "YSB" | "YSC" | "YSD" | "YSE" | "YSF" | "YSG" | "YTB" | "YTC" | "YTD" | "YTE" | "YTF" | "YTG" | "YUB" | "YUC" | "YUD" | "YUE" | "YUF" | "YUG" | "YVB" | "YVC" | "YVD" | "YVE" | "YVF" | "YVG" | "YWB" | "YWC" | "YWD" | "YWE" | "YWF" | "YWG" | "YXB" | "YXC" | "YXD" | "YXE" | "YXF" | "YXG" | "YYB" | "YYC" | "YYD" | "YYE" | "YYF" | "YYG" | "YZB" | "YZC" | "YZD" | "YZE" | "YZF" | "YZG" | "ZAB" | "ZAD" | "ZAE" | "ZAF" | "ZAG" | "ZBA" | "ZBB" | "ZBC" | "ZBD" | "ZBE" | "ZBF" | "ZCA" | "ZCB" | "ZCC" | "ZCD" | "ZCE" | "ZCF" | "ZCG" | "ZDA" | "ZDB" | "ZDC" | "ZDD" | "ZDE" | "ZDF" | "ZDG" | "ZEA" | "ZEB" | "ZEC" | "ZED" | "ZEE" | "ZEF" | "ZFA" | "ZFB" | "ZFC" | "ZFD" | "ZFE" | "ZFF" | "ZFG" | "ZGA" | "ZGB" | "ZGC" | "ZGD" | "ZGE" | "ZGF" | "ZGG" | "ZHA" | "ZHB" | "ZHC" | "ZHD" | "ZHE" | "ZHF" | "ZIA" | "ZIB" | "ZIC" | "ZID" | "ZIE" | "ZIF" | "ZJA" | "ZJB" | "ZJC" | "ZJD" | "ZJE" | "ZJF" | "ZKA" | "ZKB" | "ZKC" | "ZKD" | "ZKE" | "ZKF" | "ZLA" | "ZLB" | "ZLC" | "ZLD" | "ZLE" | "ZLF" | "ZMA" | "ZMB" | "ZMC" | "ZMD" | "ZME" | "ZMF" | "ZNB" | "ZNC" | "ZND" | "ZNE" | "ZNF" | "ZNG" | "ZOB" | "ZOC" | "ZOD" | "ZOE" | "ZOF" | "ZPB" | "ZPC" | "ZPD" | "ZPE" | "ZPF" | "ZPG" | "ZQB" | "ZQC" | "ZQD" | "ZQF" | "ZQG" | "ZRB" | "ZRC" | "ZRD" | "ZRE" | "ZRF" | "ZRG" | "ZSB" | "ZSC" | "ZSD" | "ZSE" | "ZSF" | "ZSG" | "ZTB" | "ZTC" | "ZTD" | "ZTE" | "ZTF" | "ZTG" | "ZUB" | "ZUC" | "ZUD" | "ZUE" | "ZUF" | "ZUG" | "ZVB" | "ZVC" | "ZVD" | "ZVE" | "ZVF" | "ZVG" | "ZWB" | "ZWC" | "ZWD" | "ZWE" | "ZWF" | "ZWG" | "ZXB" | "ZXC" | "ZXD" | "ZXE" | "ZXF" | "ZXG" | "ZYB" | "ZYC" | "ZYD" | "ZYE" | "ZYF" | "ZYG" | "ZZB" | "ZZC" | "ZZD" | "ZZE" | "ZZF" | "ZZG";
1216
1456
 
1217
1457
  /** @category Models */
1218
1458
  type FactionTerritoryOwnership = {
1219
1459
  id: string;
1460
+ irradiated: boolean;
1220
1461
  owned_by: FactionId | null;
1221
1462
  acquired_at: number | null;
1222
1463
  };
@@ -1345,7 +1586,7 @@ type FactionTerritoryWarReportMembers = {
1345
1586
 
1346
1587
  /** @category Models */
1347
1588
  type FactionTerritoryWarReportResponse = {
1348
- territorywarreport: FactionTerritoryWarReport[];
1589
+ territorywarreport: FactionTerritoryWarReport;
1349
1590
  };
1350
1591
 
1351
1592
  /** @category Models */
@@ -1366,7 +1607,7 @@ type FactionUpgradeDetails = {
1366
1607
  ability: string;
1367
1608
  level: number;
1368
1609
  cost: number;
1369
- unlocked_at?: number;
1610
+ unlocked_at: number;
1370
1611
  };
1371
1612
 
1372
1613
  /** @category Models */
@@ -1757,7 +1998,7 @@ type LogId = number;
1757
1998
  /** @category Models */
1758
1999
  type MarketItemMarketResponse = {
1759
2000
  itemmarket: ItemMarket;
1760
- _metadata: RequestMetadataWithLinks;
2001
+ _metadata: RequestMetadataWithLinksAndTotal;
1761
2002
  };
1762
2003
 
1763
2004
  /** @category Models */
@@ -1770,7 +2011,7 @@ type MarketPropertiesResponse = {
1770
2011
  properties: MarketPropertyDetails;
1771
2012
  properties_timestamp: number;
1772
2013
  properties_delay?: number;
1773
- _metadata: RequestMetadataWithLinks;
2014
+ _metadata: RequestMetadataWithLinksAndTotal;
1774
2015
  };
1775
2016
 
1776
2017
  /** @category Models */
@@ -1804,11 +2045,11 @@ type MarketRentalsResponse = {
1804
2045
  rentals: MarketRentalDetails;
1805
2046
  rentals_timestamp: number;
1806
2047
  rentals_delay?: number;
1807
- _metadata: RequestMetadataWithLinks;
2048
+ _metadata: RequestMetadataWithLinksAndTotal;
1808
2049
  };
1809
2050
 
1810
2051
  /** @category Models */
1811
- type MarketResponse = BazaarResponse | BazaarResponseSpecialized | MarketItemMarketResponse | MarketRentalsResponse | AuctionHouseResponse | AuctionHouseListing | MarketPropertiesResponse | MarketLookupResponse | TimestampResponse;
2052
+ type MarketResponse = BazaarResponse | BazaarResponseSpecialized | MarketItemMarketResponse | MarketRentalsResponse | AuctionHouseResponse | AuctionHouseListingResponse | MarketPropertiesResponse | MarketLookupResponse | TimestampResponse;
1812
2053
 
1813
2054
  /** @category Models */
1814
2055
  type MarketSelectionName = "bazaar" | "itemmarket" | "properties" | "rentals" | "lookup" | "timestamp" | "pointsmarket" | "auctionhouse" | "auctionhouselisting" | string;
@@ -1855,6 +2096,19 @@ type MissionRewardUpgrade = "Item" | "Ammo" | "Upgrade";
1855
2096
  /** @category Models */
1856
2097
  type MissionStatusEnum = "Accepted" | "Available" | "Failed" | "Completed";
1857
2098
 
2099
+ /** @category Models */
2100
+ type News = {
2101
+ id: string;
2102
+ text: string;
2103
+ timestamp: number;
2104
+ };
2105
+
2106
+ /** @category Models */
2107
+ type NewsResponse = {
2108
+ news: News[];
2109
+ _metadata: RequestMetadataWithLinks;
2110
+ };
2111
+
1858
2112
  /** @category Models */
1859
2113
  type OrganizedCrimeName = string;
1860
2114
 
@@ -1996,7 +2250,7 @@ type PersonalStatsAttackingPublic = {
1996
2250
  elo: number;
1997
2251
  unarmored_wins: number;
1998
2252
  highest_level_beaten: number;
1999
- escapes?: {
2253
+ escapes: {
2000
2254
  player: number;
2001
2255
  foes: number;
2002
2256
  };
@@ -2950,7 +3204,7 @@ type TimestampResponse = {
2950
3204
  type TornBountiesResponse = {
2951
3205
  bounties: Bounty[];
2952
3206
  bounties_timestamp: number;
2953
- bounties_delay?: number;
3207
+ bounties_delay: number;
2954
3208
  _metadata: RequestMetadataWithLinksAndTotal;
2955
3209
  };
2956
3210
 
@@ -3029,7 +3283,7 @@ type TornEducationRewards = {
3029
3283
  endurance: number | null;
3030
3284
  };
3031
3285
  effect: string | null;
3032
- honor: string | null;
3286
+ honor: number | null;
3033
3287
  };
3034
3288
 
3035
3289
  /** @category Models */
@@ -3264,6 +3518,7 @@ type TornItemDetailsResponse = {
3264
3518
  type TornItemMods = {
3265
3519
  id: ItemModId;
3266
3520
  name: string;
3521
+ image: string;
3267
3522
  description: string;
3268
3523
  dual_fit: boolean;
3269
3524
  weapons: TornItemWeaponTypeEnum[];
@@ -3403,7 +3658,6 @@ type TornOrganizedCrimeScope = {
3403
3658
 
3404
3659
  /** @category Models */
3405
3660
  type TornOrganizedCrimeSlot = {
3406
- id?: TornOrganizedCrimePositionIdDeprecated;
3407
3661
  position_info: FactionSlotPositionInfo;
3408
3662
  name: string;
3409
3663
  required_item: TornOrganizedCrimeRequiredItem | null;
@@ -3736,6 +3990,10 @@ type UserAmmoType = {
3736
3990
  type UserBar = {
3737
3991
  current: number;
3738
3992
  maximum: number;
3993
+ increment: number;
3994
+ interval: number;
3995
+ tick_time: number;
3996
+ full_time: number;
3739
3997
  };
3740
3998
 
3741
3999
  /** @category Models */
@@ -4107,6 +4365,19 @@ type UserEnlistedCarsResponse = {
4107
4365
  /** @category Models */
4108
4366
  type UserEquipment = TornItemDetails & {
4109
4367
  slot: number;
4368
+ mods: UserEquipmentItemMod[];
4369
+ ammo: {
4370
+ id: AmmoId;
4371
+ name: string;
4372
+ quantity: number;
4373
+ type: TornItemAmmoTypeEnum;
4374
+ };
4375
+ };
4376
+
4377
+ /** @category Models */
4378
+ type UserEquipmentItemMod = {
4379
+ id: ItemModId;
4380
+ name: string;
4110
4381
  };
4111
4382
 
4112
4383
  /** @category Models */
@@ -4184,7 +4455,7 @@ type UserForumPostsResponse = {
4184
4455
 
4185
4456
  /** @category Models */
4186
4457
  type UserForumSubscribedThreadsResponse = {
4187
- forumSubscribedThreads?: ForumSubscribedThread[];
4458
+ forumSubscribedThreads: ForumSubscribedThread[];
4188
4459
  };
4189
4460
 
4190
4461
  /** @category Models */
@@ -4243,7 +4514,7 @@ type UserIconPrivate = UserIconPublic & {
4243
4514
  type UserIconPublic = {
4244
4515
  id: UserIconId;
4245
4516
  title: string;
4246
- description: string;
4517
+ description: string | null;
4247
4518
  };
4248
4519
 
4249
4520
  /** @category Models */
@@ -4304,6 +4575,19 @@ type UserItemMarketResponse = {
4304
4575
  _metadata: RequestMetadataWithLinks;
4305
4576
  };
4306
4577
 
4578
+ /** @category Models */
4579
+ type UserItemMod = {
4580
+ id: ItemModId;
4581
+ title: string;
4582
+ equipped: boolean;
4583
+ equipped_item_uid: ItemUid | null;
4584
+ };
4585
+
4586
+ /** @category Models */
4587
+ type UserItemModsResponse = {
4588
+ itemmods: UserItemMod[];
4589
+ };
4590
+
4307
4591
  /** @category Models */
4308
4592
  type UserJob = {
4309
4593
  type: "job";
@@ -4484,7 +4768,7 @@ type UserMissionsResponse = {
4484
4768
  }[];
4485
4769
  }[];
4486
4770
  rewards: {
4487
- type: MissionRewardUpgrade;
4771
+ type: MissionRewardUpgrade | string;
4488
4772
  details: MissionRewardDetailsAmmo | MissionRewardDetailsUpgrade | MissionRewardDetailsItem;
4489
4773
  amount: number;
4490
4774
  cost: number;
@@ -4551,7 +4835,6 @@ type UserOrganizedCrimeResponse = {
4551
4835
  /** @category Models */
4552
4836
  type UserOrganizedCrimesResponse = {
4553
4837
  organizedcrimes: FactionCrime[];
4554
- _metadata: RequestMetadataWithLinks;
4555
4838
  };
4556
4839
 
4557
4840
  /**
@@ -4656,7 +4939,7 @@ type UserPropertyDetails = UserPropertyBasicDetails & {
4656
4939
  /** @category Models */
4657
4940
  type UserPropertyDetailsExtended = UserPropertyBasicDetails & {
4658
4941
  used_by: BasicUser[];
4659
- status: "none" | "in_use";
4942
+ status: "none" | "in_use" | "for_sale" | "rented" | "for_rent";
4660
4943
  };
4661
4944
 
4662
4945
  /** @category Models */
@@ -4707,7 +4990,7 @@ type UserPropertyResponse = {
4707
4990
  /** @category Models */
4708
4991
  type UserRaceCarDetails = RaceCar & {
4709
4992
  id: RaceCarId;
4710
- name: string | null;
4993
+ name?: string | null;
4711
4994
  worth: number;
4712
4995
  points_spent: number;
4713
4996
  races_entered: number;
@@ -4718,7 +5001,7 @@ type UserRaceCarDetails = RaceCar & {
4718
5001
 
4719
5002
  /** @category Models */
4720
5003
  type UserRaceDetails = RacingRaceDetails & {
4721
- skill_gain: number;
5004
+ skill_gain: number | null;
4722
5005
  };
4723
5006
 
4724
5007
  /** @category Models */
@@ -4756,7 +5039,7 @@ type UserRefillsResponse = {
4756
5039
  };
4757
5040
 
4758
5041
  /** @category Models */
4759
- type UserResponse = UserCrimesResponse | UserWeaponExpResponse | UserAmmoResponse | UserDiscordResponse | UserRacesResponse | UserEnlistedCarsResponse | UserForumPostsResponse | UserForumThreadsResponse | UserForumSubscribedThreadsResponse | UserForumFeedResponse | UserForumFriendsResponse | UserPropertyResponse | ReportsResponse | UserHofResponse | UserCalendarResponse | UserRacingRecordsResponse | UserEducationResponse | UserStocksResponse | UserBountiesResponse | UserJobRanksResponse | UserPropertiesResponse | UserFactionBalanceResponse | UserBasicResponse | RevivesResponse | UserHonorsResponse | UserMedalsResponse | UserMeritsResponse | RevivesFullResponse | UserProfileResponse | UserJobResponse | UserFactionResponse | UserCompetitionResponse | UserIconsResponse | UserItemMarketResponse | UserListResponse | UserEquipmentResponse | UserMissionsResponse | UserPersonalStatsResponse | UserOrganizedCrimeResponse | AttacksResponse | UserBarsResponse | UserCooldownsResponse | UserNotificationsResponse | UserRefillsResponse | UserTravelResponse | UserVirusResponse | AttacksFullResponse | UserCasinoResponse | UserMoneyResponse | UserJobPointsResponse | UserWorkStatsResponse | UserSkillsResponse | UserBattleStatsResponse | UserTradeResponse | UserTradesResponse | UserNewEventsResponse | UserEventsResponse | UserMessagesResponse | UserNewMessagesResponse | UserLookupResponse | UserInventoryResponse | TimestampResponse;
5042
+ type UserResponse = UserCrimesResponse | UserWeaponExpResponse | UserAmmoResponse | UserDiscordResponse | UserRacesResponse | UserEnlistedCarsResponse | UserForumPostsResponse | UserForumThreadsResponse | UserForumSubscribedThreadsResponse | UserForumFeedResponse | UserForumFriendsResponse | UserPropertyResponse | ReportsResponse | UserHofResponse | UserCalendarResponse | UserRacingRecordsResponse | UserEducationResponse | UserStocksResponse | UserBountiesResponse | UserJobRanksResponse | UserPropertiesResponse | UserFactionBalanceResponse | UserBasicResponse | RevivesResponse | UserHonorsResponse | UserMedalsResponse | UserMeritsResponse | RevivesFullResponse | UserProfileResponse | UserJobResponse | UserFactionResponse | UserCompetitionResponse | UserIconsResponse | UserItemMarketResponse | UserListResponse | UserEquipmentResponse | UserMissionsResponse | UserPersonalStatsResponse | UserOrganizedCrimeResponse | UserItemModsResponse | AttacksResponse | UserBarsResponse | UserCooldownsResponse | UserNotificationsResponse | UserRefillsResponse | UserTravelResponse | UserVirusResponse | AttacksFullResponse | UserCasinoResponse | UserMoneyResponse | UserJobPointsResponse | UserWorkStatsResponse | UserSkillsResponse | UserBattleStatsResponse | UserTradeResponse | UserTradesResponse | UserNewEventsResponse | UserEventsResponse | UserMessagesResponse | UserNewMessagesResponse | UserLookupResponse | UserInventoryResponse | TimestampResponse;
4760
5043
 
4761
5044
  /** @category Models */
4762
5045
  type UserRoleEnum = "Admin" | "Officer" | "Moderator" | "Helper" | "Tester" | "NPC" | "Committee" | "Reporter" | "Wiki Contributor" | "Wiki Editor" | "Civilian";
@@ -4765,7 +5048,7 @@ type UserRoleEnum = "Admin" | "Officer" | "Moderator" | "Helper" | "Tester" | "N
4765
5048
  type UserRpsStatus = "scissors" | "rock" | "paper";
4766
5049
 
4767
5050
  /** @category Models */
4768
- type UserSelectionName = "ammo" | "attacks" | "attacksfull" | "bars" | "basic" | "battlestats" | "bounties" | "calendar" | "casino" | "competition" | "cooldowns" | "crimes" | "discord" | "enlistedcars" | "equipment" | "events" | "faction" | "factionbalance" | "forumfeed" | "forumfriends" | "forumposts" | "forumsubscribedthreads" | "forumthreads" | "hof" | "honors" | "icons" | "inventory" | "itemmarket" | "job" | "jobpoints" | "jobranks" | "list" | "log" | "lookup" | "medals" | "merits" | "messages" | "missions" | "money" | "newevents" | "newmessages" | "notifications" | "organizedcrime" | "personalstats" | "profile" | "properties" | "property" | "races" | "racingrecords" | "refills" | "reports" | "revives" | "revivesfull" | "skills" | "stocks" | "trades" | "trade" | "travel" | "timestamp" | "weaponexp" | "workstats" | "bazaar" | "criminalrecord" | "display" | "education" | "gym" | "networth" | "perks" | string;
5051
+ type UserSelectionName = "ammo" | "attacks" | "attacksfull" | "bars" | "basic" | "battlestats" | "bounties" | "calendar" | "casino" | "competition" | "cooldowns" | "crimes" | "discord" | "enlistedcars" | "equipment" | "events" | "faction" | "factionbalance" | "forumfeed" | "forumfriends" | "forumposts" | "forumsubscribedthreads" | "forumthreads" | "hof" | "honors" | "icons" | "inventory" | "itemmarket" | "itemmod" | "job" | "jobpoints" | "jobranks" | "list" | "log" | "lookup" | "medals" | "merits" | "messages" | "missions" | "money" | "newevents" | "newmessages" | "notifications" | "organizedcrime" | "personalstats" | "profile" | "properties" | "property" | "races" | "racingrecords" | "refills" | "reports" | "revives" | "revivesfull" | "skills" | "stocks" | "trades" | "trade" | "travel" | "timestamp" | "weaponexp" | "workstats" | "bazaar" | "criminalrecord" | "display" | "education" | "gym" | "networth" | "perks" | string;
4769
5052
 
4770
5053
  /** @category Models */
4771
5054
  type UserSkillDetail = {
@@ -4915,6 +5198,152 @@ type UserWorkStatsResponse = {
4915
5198
  /** @category Models */
4916
5199
  type WeaponBonusEnum = "Any" | "Double" | "Yellow" | "Orange" | "Red" | "Achilles" | "Assassinate" | "Backstab" | "Berserk" | "Bleed" | "Blindfire" | "Blindside" | "Bloodlust" | "Burn" | "Comeback" | "Conserve" | "Cripple" | "Crusher" | "Cupid" | "Deadeye" | "Deadly" | "Demoralize" | "Disarm" | "Double-edged" | "Double Tap" | "Emasculate" | "Empower" | "Eviscerate" | "Execute" | "Expose" | "Finale" | "Focus" | "Freeze" | "Frenzy" | "Fury" | "Grace" | "Hazardous" | "Home run" | "Irradiate" | "Lacerate" | "Motivation" | "Paralyze" | "Parry" | "Penetrate" | "Plunder" | "Poison" | "Powerful" | "Proficience" | "Puncture" | "Quicken" | "Rage" | "Revitalize" | "Roshambo" | "Shock" | "Sleep" | "Slow" | "Smash" | "Smurf" | "Specialist" | "Spray" | "Storage" | "Stricken" | "Stun" | "Suppress" | "Sure Shot" | "Throttle" | "Toxin" | "Warlord" | "Weaken" | "Wind-up" | "Wither";
4917
5200
 
5201
+ /**
5202
+ * Access the Company API endpoints
5203
+ * @category Endpoints
5204
+ */
5205
+ declare class CompanyEndpoint {
5206
+ private readonly requester;
5207
+ constructor(requester: Requester);
5208
+ /**
5209
+ * Get your company's applications
5210
+ * @param params - Optional query parameters
5211
+ */
5212
+ applications(params?: {
5213
+ timestamp?: number | string;
5214
+ }): Promise<CompanyApplicationsResponse>;
5215
+ /**
5216
+ * Get my company's employees
5217
+ * @param params - Optional query parameters
5218
+ */
5219
+ employees(params?: {
5220
+ striptags?: "true" | "false";
5221
+ timestamp?: number | string;
5222
+ }): Promise<CompanyEmployeesResponse>;
5223
+ /**
5224
+ * Get your company's news details
5225
+ * @param params - Optional query parameters
5226
+ */
5227
+ news(params?: {
5228
+ striptags?: "true" | "false";
5229
+ limit?: number;
5230
+ sort?: "DESC" | "ASC";
5231
+ to?: number;
5232
+ from?: number;
5233
+ cat?: CompanyNewsCategory;
5234
+ timestamp?: number | string;
5235
+ }): Promise<PaginatedResponse<NewsResponse> & NewsResponse>;
5236
+ /**
5237
+ * Get my company's profile
5238
+ * @param params - Optional query parameters
5239
+ */
5240
+ profile(params?: {
5241
+ striptags?: "true" | "false";
5242
+ timestamp?: number | string;
5243
+ }): Promise<CompanyProfileResponseMixed>;
5244
+ /**
5245
+ * Search companies by name or other criteria
5246
+ * @param params - Optional query parameters
5247
+ */
5248
+ search(params?: {
5249
+ name?: string;
5250
+ filters?: ("recruiting" | "notRecruiting" | string)[];
5251
+ limit?: number;
5252
+ offset?: number;
5253
+ timestamp?: number | string;
5254
+ }): Promise<PaginatedResponse<CompaniesSearchResponse> & CompaniesSearchResponse>;
5255
+ /**
5256
+ * Get daily companies snapshot CSV
5257
+ * @param params - Optional query parameters
5258
+ */
5259
+ snapshot(params?: {
5260
+ timestamp?: number | string;
5261
+ }): Promise<unknown>;
5262
+ /**
5263
+ * Get your company's stock
5264
+ * @param params - Optional query parameters
5265
+ */
5266
+ stock(params?: {
5267
+ timestamp?: number | string;
5268
+ }): Promise<CompanyStockResponse>;
5269
+ /**
5270
+ * No summary available
5271
+ * @param params - Optional query parameters
5272
+ */
5273
+ lookup(params?: {
5274
+ timestamp?: number | string;
5275
+ }): Promise<CompanyLookupResponse>;
5276
+ /**
5277
+ * Get current server time
5278
+ * @param params - Optional query parameters
5279
+ */
5280
+ timestamp(params?: {
5281
+ timestamp?: number | string;
5282
+ }): Promise<TimestampResponse>;
5283
+ /**
5284
+ * Get any Company selection
5285
+ * @param params - Optional query parameters
5286
+ */
5287
+ get(params?: {
5288
+ selections?: CompanySelectionName[];
5289
+ id?: CompanyId;
5290
+ legacy?: CompanySelectionName[];
5291
+ cat?: CompanyNewsCategory;
5292
+ limit?: number;
5293
+ striptags?: "true" | "false";
5294
+ offset?: number;
5295
+ timestamp?: number | string;
5296
+ }): Promise<CompanyResponse>;
5297
+ /** @param id - The ID for this context */
5298
+ withId(id: string | number): CompanyIdContext;
5299
+ /** @param typeId - The ID for this context */
5300
+ withTypeId(typeId: string | number): CompanyTypeIdContext;
5301
+ }
5302
+ /**
5303
+ * Context class for Company API endpoints that require a "id"
5304
+ * @category Endpoints
5305
+ */
5306
+ declare class CompanyIdContext {
5307
+ private readonly requester;
5308
+ private readonly contextId;
5309
+ constructor(requester: Requester, contextId: string | number);
5310
+ /**
5311
+ * Get a company's employees
5312
+ * @param params - Optional query parameters
5313
+ */
5314
+ employees(params?: {
5315
+ striptags?: "true" | "false";
5316
+ timestamp?: number | string;
5317
+ }): Promise<CompanyEmployeesResponseBasic>;
5318
+ /**
5319
+ * Get a company's profile
5320
+ * @param params - Optional query parameters
5321
+ */
5322
+ profile(params?: {
5323
+ striptags?: "true" | "false";
5324
+ timestamp?: number | string;
5325
+ }): Promise<CompanyProfileResponse>;
5326
+ }
5327
+ /**
5328
+ * Context class for Company API endpoints that require a "typeId"
5329
+ * @category Endpoints
5330
+ */
5331
+ declare class CompanyTypeIdContext {
5332
+ private readonly requester;
5333
+ private readonly contextId;
5334
+ constructor(requester: Requester, contextId: string | number);
5335
+ /**
5336
+ * Get a list of companies for a specific company type
5337
+ * @param params - Optional query parameters
5338
+ */
5339
+ companies(params?: {
5340
+ limit?: number;
5341
+ offset?: number;
5342
+ striptags?: "true" | "false";
5343
+ timestamp?: number | string;
5344
+ }): Promise<PaginatedResponse<CompaniesResponse> & CompaniesResponse>;
5345
+ }
5346
+
4918
5347
  /**
4919
5348
  * Access the Faction API endpoints
4920
5349
  * @category Endpoints
@@ -4927,7 +5356,7 @@ declare class FactionEndpoint {
4927
5356
  * @param params - Optional query parameters
4928
5357
  */
4929
5358
  applications(params?: {
4930
- timestamp?: string;
5359
+ timestamp?: number | string;
4931
5360
  }): Promise<FactionApplicationsResponse>;
4932
5361
  /**
4933
5362
  * Get your faction's detailed attacks
@@ -4939,7 +5368,7 @@ declare class FactionEndpoint {
4939
5368
  sort?: "DESC" | "ASC";
4940
5369
  to?: number;
4941
5370
  from?: number;
4942
- timestamp?: string;
5371
+ timestamp?: number | string;
4943
5372
  }): Promise<PaginatedResponse<AttacksResponse> & AttacksResponse>;
4944
5373
  /**
4945
5374
  * Get your faction's simplified attacks
@@ -4951,7 +5380,7 @@ declare class FactionEndpoint {
4951
5380
  sort?: "DESC" | "ASC";
4952
5381
  to?: number;
4953
5382
  from?: number;
4954
- timestamp?: string;
5383
+ timestamp?: number | string;
4955
5384
  }): Promise<PaginatedResponse<AttacksFullResponse> & AttacksFullResponse>;
4956
5385
  /**
4957
5386
  * Get your faction's & member's balance details
@@ -4959,21 +5388,21 @@ declare class FactionEndpoint {
4959
5388
  */
4960
5389
  balance(params?: {
4961
5390
  cat?: "all" | "current";
4962
- timestamp?: string;
5391
+ timestamp?: number | string;
4963
5392
  }): Promise<FactionBalanceResponse>;
4964
5393
  /**
4965
5394
  * Get your faction's basic details
4966
5395
  * @param params - Optional query parameters
4967
5396
  */
4968
5397
  basic(params?: {
4969
- timestamp?: string;
5398
+ timestamp?: number | string;
4970
5399
  }): Promise<FactionBasicResponse>;
4971
5400
  /**
4972
5401
  * Get your faction's current chain
4973
5402
  * @param params - Optional query parameters
4974
5403
  */
4975
5404
  chain(params?: {
4976
- timestamp?: string;
5405
+ timestamp?: number | string;
4977
5406
  }): Promise<FactionOngoingChainResponse>;
4978
5407
  /**
4979
5408
  * Get a list of your faction's completed chains
@@ -4984,14 +5413,14 @@ declare class FactionEndpoint {
4984
5413
  sort?: "DESC" | "ASC";
4985
5414
  to?: number;
4986
5415
  from?: number;
4987
- timestamp?: string;
5416
+ timestamp?: number | string;
4988
5417
  }): Promise<PaginatedResponse<FactionChainsResponse> & FactionChainsResponse>;
4989
5418
  /**
4990
5419
  * Get your faction's latest chain report
4991
5420
  * @param params - Optional query parameters
4992
5421
  */
4993
5422
  chainreport(params?: {
4994
- timestamp?: string;
5423
+ timestamp?: number | string;
4995
5424
  }): Promise<FactionChainReportResponse>;
4996
5425
  /**
4997
5426
  * Get your faction's challenge contributors
@@ -5000,7 +5429,7 @@ declare class FactionEndpoint {
5000
5429
  contributors(params?: {
5001
5430
  stat?: FactionStatEnum;
5002
5431
  cat?: "all" | "current";
5003
- timestamp?: string;
5432
+ timestamp?: number | string;
5004
5433
  }): Promise<FactionContributorsResponse>;
5005
5434
  /**
5006
5435
  * Get your faction's organized crimes
@@ -5014,14 +5443,14 @@ declare class FactionEndpoint {
5014
5443
  from?: number;
5015
5444
  to?: number;
5016
5445
  sort?: "DESC" | "ASC";
5017
- timestamp?: string;
5446
+ timestamp?: number | string;
5018
5447
  }): Promise<PaginatedResponse<FactionCrimesResponse> & FactionCrimesResponse>;
5019
5448
  /**
5020
5449
  * Get your faction's hall of fame rankings.
5021
5450
  * @param params - Optional query parameters
5022
5451
  */
5023
5452
  hof(params?: {
5024
- timestamp?: string;
5453
+ timestamp?: number | string;
5025
5454
  }): Promise<FactionHofResponse>;
5026
5455
  /**
5027
5456
  * Get a list of your faction's members
@@ -5029,7 +5458,7 @@ declare class FactionEndpoint {
5029
5458
  */
5030
5459
  members(params?: {
5031
5460
  striptags?: "true" | "false";
5032
- timestamp?: string;
5461
+ timestamp?: number | string;
5033
5462
  }): Promise<FactionMembersResponse>;
5034
5463
  /**
5035
5464
  * Get your faction's news details
@@ -5042,21 +5471,21 @@ declare class FactionEndpoint {
5042
5471
  to?: number;
5043
5472
  from?: number;
5044
5473
  cat?: FactionNewsCategory;
5045
- timestamp?: string;
5046
- }): Promise<PaginatedResponse<FactionNewsResponse> & FactionNewsResponse>;
5474
+ timestamp?: number | string;
5475
+ }): Promise<PaginatedResponse<NewsResponse> & NewsResponse>;
5047
5476
  /**
5048
5477
  * Get your faction's positions details
5049
5478
  * @param params - Optional query parameters
5050
5479
  */
5051
5480
  positions(params?: {
5052
- timestamp?: string;
5481
+ timestamp?: number | string;
5053
5482
  }): Promise<FactionPositionsResponse>;
5054
5483
  /**
5055
5484
  * Get a list of current rackets
5056
5485
  * @param params - Optional query parameters
5057
5486
  */
5058
5487
  rackets(params?: {
5059
- timestamp?: string;
5488
+ timestamp?: number | string;
5060
5489
  }): Promise<FactionRacketsResponse>;
5061
5490
  /**
5062
5491
  * Get raids history for your faction
@@ -5067,7 +5496,7 @@ declare class FactionEndpoint {
5067
5496
  to?: number;
5068
5497
  sort?: "DESC" | "ASC";
5069
5498
  limit?: number;
5070
- timestamp?: string;
5499
+ timestamp?: number | string;
5071
5500
  }): Promise<PaginatedResponse<FactionRaidsResponse> & FactionRaidsResponse>;
5072
5501
  /**
5073
5502
  * Get ranked wars history for your faction
@@ -5079,7 +5508,7 @@ declare class FactionEndpoint {
5079
5508
  from?: number;
5080
5509
  to?: number;
5081
5510
  sort?: "DESC" | "ASC";
5082
- timestamp?: string;
5511
+ timestamp?: number | string;
5083
5512
  }): Promise<PaginatedResponse<FactionRankedWarResponse> & FactionRankedWarResponse>;
5084
5513
  /**
5085
5514
  * Get faction reports
@@ -5091,7 +5520,7 @@ declare class FactionEndpoint {
5091
5520
  limit?: number;
5092
5521
  offset?: number;
5093
5522
  sort?: "DESC" | "ASC";
5094
- timestamp?: string;
5523
+ timestamp?: number | string;
5095
5524
  }): Promise<PaginatedResponse<ReportsResponse> & ReportsResponse>;
5096
5525
  /**
5097
5526
  * Get your faction's detailed revives
@@ -5104,7 +5533,7 @@ declare class FactionEndpoint {
5104
5533
  to?: number;
5105
5534
  from?: number;
5106
5535
  striptags?: "true" | "false";
5107
- timestamp?: string;
5536
+ timestamp?: number | string;
5108
5537
  }): Promise<PaginatedResponse<RevivesResponse> & RevivesResponse>;
5109
5538
  /**
5110
5539
  * Get your faction's simplified revives
@@ -5117,7 +5546,7 @@ declare class FactionEndpoint {
5117
5546
  to?: number;
5118
5547
  from?: number;
5119
5548
  striptags?: "true" | "false";
5120
- timestamp?: string;
5549
+ timestamp?: number | string;
5121
5550
  }): Promise<PaginatedResponse<RevivesFullResponse> & RevivesFullResponse>;
5122
5551
  /**
5123
5552
  * Search factions by name or other criteria
@@ -5128,21 +5557,28 @@ declare class FactionEndpoint {
5128
5557
  filters?: ("destroyed" | "notDestroyed" | "recruiting" | "notRecruiting" | string)[];
5129
5558
  limit?: number;
5130
5559
  offset?: number;
5131
- timestamp?: string;
5560
+ timestamp?: number | string;
5132
5561
  }): Promise<PaginatedResponse<FactionSearchResponse> & FactionSearchResponse>;
5562
+ /**
5563
+ * Get daily factions snapshot CSV
5564
+ * @param params - Optional query parameters
5565
+ */
5566
+ snapshot(params?: {
5567
+ timestamp?: number | string;
5568
+ }): Promise<unknown>;
5133
5569
  /**
5134
5570
  * Get your faction's challenges stats
5135
5571
  * @param params - Optional query parameters
5136
5572
  */
5137
5573
  stats(params?: {
5138
- timestamp?: string;
5574
+ timestamp?: number | string;
5139
5575
  }): Promise<FactionStatsResponse>;
5140
5576
  /**
5141
5577
  * Get a list of your faction's territories
5142
5578
  * @param params - Optional query parameters
5143
5579
  */
5144
5580
  territory(params?: {
5145
- timestamp?: string;
5581
+ timestamp?: number | string;
5146
5582
  }): Promise<FactionTerritoriesResponse>;
5147
5583
  /**
5148
5584
  * Get a list territory ownership
@@ -5151,7 +5587,7 @@ declare class FactionEndpoint {
5151
5587
  territoryownership(params?: {
5152
5588
  offset?: number;
5153
5589
  limit?: number;
5154
- timestamp?: string;
5590
+ timestamp?: number | string;
5155
5591
  }): Promise<FactionTerritoriesOwnershipResponse>;
5156
5592
  /**
5157
5593
  * Get territory wars history for your faction
@@ -5162,14 +5598,14 @@ declare class FactionEndpoint {
5162
5598
  to?: number;
5163
5599
  sort?: "DESC" | "ASC";
5164
5600
  limit?: number;
5165
- timestamp?: string;
5601
+ timestamp?: number | string;
5166
5602
  }): Promise<FactionTerritoryWarsHistoryResponse>;
5167
5603
  /**
5168
5604
  * Get your faction's upgrades
5169
5605
  * @param params - Optional query parameters
5170
5606
  */
5171
5607
  upgrades(params?: {
5172
- timestamp?: string;
5608
+ timestamp?: number | string;
5173
5609
  }): Promise<FactionUpgradesResponse>;
5174
5610
  /**
5175
5611
  * Get faction warfare
@@ -5181,28 +5617,28 @@ declare class FactionEndpoint {
5181
5617
  sort?: "DESC" | "ASC";
5182
5618
  from?: number;
5183
5619
  to?: number;
5184
- timestamp?: string;
5620
+ timestamp?: number | string;
5185
5621
  }): Promise<PaginatedResponse<FactionWarfareResponse> & FactionWarfareResponse>;
5186
5622
  /**
5187
5623
  * Get your faction's wars & pacts details
5188
5624
  * @param params - Optional query parameters
5189
5625
  */
5190
5626
  wars(params?: {
5191
- timestamp?: string;
5627
+ timestamp?: number | string;
5192
5628
  }): Promise<FactionWarsResponse>;
5193
5629
  /**
5194
5630
  * No summary available
5195
5631
  * @param params - Optional query parameters
5196
5632
  */
5197
5633
  lookup(params?: {
5198
- timestamp?: string;
5634
+ timestamp?: number | string;
5199
5635
  }): Promise<FactionLookupResponse>;
5200
5636
  /**
5201
5637
  * Get current server time
5202
5638
  * @param params - Optional query parameters
5203
5639
  */
5204
5640
  timestamp(params?: {
5205
- timestamp?: string;
5641
+ timestamp?: number | string;
5206
5642
  }): Promise<TimestampResponse>;
5207
5643
  /**
5208
5644
  * Get any Faction selection
@@ -5221,7 +5657,7 @@ declare class FactionEndpoint {
5221
5657
  striptags?: "true" | "false";
5222
5658
  sort?: "DESC" | "ASC";
5223
5659
  offset?: number;
5224
- timestamp?: string;
5660
+ timestamp?: number | string;
5225
5661
  }): Promise<FactionResponse>;
5226
5662
  /** @param id - The ID for this context */
5227
5663
  withId(id: string | number): FactionIdContext;
@@ -5249,14 +5685,14 @@ declare class FactionIdContext {
5249
5685
  * @param params - Optional query parameters
5250
5686
  */
5251
5687
  basic(params?: {
5252
- timestamp?: string;
5688
+ timestamp?: number | string;
5253
5689
  }): Promise<FactionBasicResponse>;
5254
5690
  /**
5255
5691
  * Get a faction's current chain
5256
5692
  * @param params - Optional query parameters
5257
5693
  */
5258
5694
  chain(params?: {
5259
- timestamp?: string;
5695
+ timestamp?: number | string;
5260
5696
  }): Promise<FactionOngoingChainResponse>;
5261
5697
  /**
5262
5698
  * Get a list of a faction's completed chains
@@ -5267,14 +5703,14 @@ declare class FactionIdContext {
5267
5703
  sort?: "DESC" | "ASC";
5268
5704
  to?: number;
5269
5705
  from?: number;
5270
- timestamp?: string;
5706
+ timestamp?: number | string;
5271
5707
  }): Promise<PaginatedResponse<FactionChainsResponse> & FactionChainsResponse>;
5272
5708
  /**
5273
5709
  * Get a faction's hall of fame rankings.
5274
5710
  * @param params - Optional query parameters
5275
5711
  */
5276
5712
  hof(params?: {
5277
- timestamp?: string;
5713
+ timestamp?: number | string;
5278
5714
  }): Promise<FactionHofResponse>;
5279
5715
  /**
5280
5716
  * Get a list of a faction's members
@@ -5282,7 +5718,7 @@ declare class FactionIdContext {
5282
5718
  */
5283
5719
  members(params?: {
5284
5720
  striptags?: "true" | "false";
5285
- timestamp?: string;
5721
+ timestamp?: number | string;
5286
5722
  }): Promise<FactionMembersResponse>;
5287
5723
  /**
5288
5724
  * Get a faction's raids history
@@ -5293,7 +5729,7 @@ declare class FactionIdContext {
5293
5729
  to?: number;
5294
5730
  sort?: "DESC" | "ASC";
5295
5731
  limit?: number;
5296
- timestamp?: string;
5732
+ timestamp?: number | string;
5297
5733
  }): Promise<PaginatedResponse<FactionRaidsResponse> & FactionRaidsResponse>;
5298
5734
  /**
5299
5735
  * Get a faction's ranked wars history
@@ -5302,14 +5738,14 @@ declare class FactionIdContext {
5302
5738
  rankedwars(params?: {
5303
5739
  offset?: number;
5304
5740
  limit?: number;
5305
- timestamp?: string;
5741
+ timestamp?: number | string;
5306
5742
  }): Promise<PaginatedResponse<FactionRankedWarResponse> & FactionRankedWarResponse>;
5307
5743
  /**
5308
5744
  * Get a list of a faction's territories
5309
5745
  * @param params - Optional query parameters
5310
5746
  */
5311
5747
  territory(params?: {
5312
- timestamp?: string;
5748
+ timestamp?: number | string;
5313
5749
  }): Promise<FactionTerritoriesResponse>;
5314
5750
  /**
5315
5751
  * Get a faction's territory wars history
@@ -5320,14 +5756,14 @@ declare class FactionIdContext {
5320
5756
  to?: number;
5321
5757
  sort?: "DESC" | "ASC";
5322
5758
  limit?: number;
5323
- timestamp?: string;
5759
+ timestamp?: number | string;
5324
5760
  }): Promise<FactionTerritoryWarsHistoryResponse>;
5325
5761
  /**
5326
5762
  * Get a faction's wars & pacts details
5327
5763
  * @param params - Optional query parameters
5328
5764
  */
5329
5765
  wars(params?: {
5330
- timestamp?: string;
5766
+ timestamp?: number | string;
5331
5767
  }): Promise<FactionWarsResponse>;
5332
5768
  /** Get faction by ID */
5333
5769
  get(): Promise<Faction>;
@@ -5345,7 +5781,7 @@ declare class FactionChainIdContext {
5345
5781
  * @param params - Optional query parameters
5346
5782
  */
5347
5783
  chainreport(params?: {
5348
- timestamp?: string;
5784
+ timestamp?: number | string;
5349
5785
  }): Promise<FactionChainReportResponse>;
5350
5786
  }
5351
5787
  /**
@@ -5361,7 +5797,7 @@ declare class FactionCrimeIdContext {
5361
5797
  * @param params - Optional query parameters
5362
5798
  */
5363
5799
  crime(params?: {
5364
- timestamp?: string;
5800
+ timestamp?: number | string;
5365
5801
  }): Promise<FactionCrimeResponse>;
5366
5802
  }
5367
5803
  /**
@@ -5377,7 +5813,7 @@ declare class FactionRaidWarIdContext {
5377
5813
  * @param params - Optional query parameters
5378
5814
  */
5379
5815
  raidreport(params?: {
5380
- timestamp?: string;
5816
+ timestamp?: number | string;
5381
5817
  }): Promise<FactionRaidWarReportResponse>;
5382
5818
  }
5383
5819
  /**
@@ -5393,7 +5829,7 @@ declare class FactionRankedWarIdContext {
5393
5829
  * @param params - Optional query parameters
5394
5830
  */
5395
5831
  rankedwarreport(params?: {
5396
- timestamp?: string;
5832
+ timestamp?: number | string;
5397
5833
  }): Promise<FactionRankedWarReportResponse>;
5398
5834
  }
5399
5835
  /**
@@ -5409,7 +5845,7 @@ declare class FactionTerritoryWarIdContext {
5409
5845
  * @param params - Optional query parameters
5410
5846
  */
5411
5847
  territorywarreport(params?: {
5412
- timestamp?: string;
5848
+ timestamp?: number | string;
5413
5849
  }): Promise<FactionTerritoryWarReportResponse>;
5414
5850
  }
5415
5851
 
@@ -5425,7 +5861,7 @@ declare class ForumEndpoint {
5425
5861
  * @param params - Optional query parameters
5426
5862
  */
5427
5863
  categories(params?: {
5428
- timestamp?: string;
5864
+ timestamp?: number | string;
5429
5865
  }): Promise<ForumCategoriesResponse>;
5430
5866
  /**
5431
5867
  * Get threads across all forum categories
@@ -5436,21 +5872,21 @@ declare class ForumEndpoint {
5436
5872
  sort?: "DESC" | "ASC";
5437
5873
  from?: number;
5438
5874
  to?: number;
5439
- timestamp?: string;
5875
+ timestamp?: number | string;
5440
5876
  }): Promise<PaginatedResponse<ForumThreadsResponse> & ForumThreadsResponse>;
5441
5877
  /**
5442
5878
  * Get all available forum selections
5443
5879
  * @param params - Optional query parameters
5444
5880
  */
5445
5881
  lookup(params?: {
5446
- timestamp?: string;
5882
+ timestamp?: number | string;
5447
5883
  }): Promise<ForumLookupResponse>;
5448
5884
  /**
5449
5885
  * Get current server time
5450
5886
  * @param params - Optional query parameters
5451
5887
  */
5452
5888
  timestamp(params?: {
5453
- timestamp?: string;
5889
+ timestamp?: number | string;
5454
5890
  }): Promise<TimestampResponse>;
5455
5891
  /**
5456
5892
  * Get any Forum selection
@@ -5465,7 +5901,7 @@ declare class ForumEndpoint {
5465
5901
  from?: number;
5466
5902
  to?: number;
5467
5903
  offset?: number;
5468
- timestamp?: string;
5904
+ timestamp?: number | string;
5469
5905
  }): Promise<ForumResponse>;
5470
5906
  /** @param threadId - The ID for this context */
5471
5907
  withThreadId(threadId: string | number): ForumThreadIdContext;
@@ -5490,14 +5926,14 @@ declare class ForumThreadIdContext {
5490
5926
  sort?: "DESC" | "ASC";
5491
5927
  from?: number;
5492
5928
  to?: number;
5493
- timestamp?: string;
5929
+ timestamp?: number | string;
5494
5930
  }): Promise<PaginatedResponse<ForumPostsResponse> & ForumPostsResponse>;
5495
5931
  /**
5496
5932
  * Get specific thread details
5497
5933
  * @param params - Optional query parameters
5498
5934
  */
5499
5935
  thread(params?: {
5500
- timestamp?: string;
5936
+ timestamp?: number | string;
5501
5937
  }): Promise<ForumThreadResponse>;
5502
5938
  }
5503
5939
  /**
@@ -5517,7 +5953,7 @@ declare class ForumCategoryIdsContext {
5517
5953
  sort?: "DESC" | "ASC";
5518
5954
  from?: number;
5519
5955
  to?: number;
5520
- timestamp?: string;
5956
+ timestamp?: number | string;
5521
5957
  }): Promise<PaginatedResponse<ForumThreadsResponse> & ForumThreadsResponse>;
5522
5958
  }
5523
5959
 
@@ -5535,14 +5971,14 @@ declare class KeyEndpoint {
5535
5971
  log(params?: {
5536
5972
  limit?: number;
5537
5973
  offset?: number;
5538
- timestamp?: string;
5974
+ timestamp?: number | string;
5539
5975
  }): Promise<KeyLogResponse>;
5540
5976
  /**
5541
5977
  * Get current key info
5542
5978
  * @param params - Optional query parameters
5543
5979
  */
5544
5980
  info(params?: {
5545
- timestamp?: string;
5981
+ timestamp?: number | string;
5546
5982
  }): Promise<KeyInfoResponse>;
5547
5983
  /**
5548
5984
  * Get any Key selection
@@ -5552,7 +5988,7 @@ declare class KeyEndpoint {
5552
5988
  selections?: KeySelectionName[];
5553
5989
  limit?: number;
5554
5990
  offset?: number;
5555
- timestamp?: string;
5991
+ timestamp?: number | string;
5556
5992
  }): Promise<KeyResponse>;
5557
5993
  }
5558
5994
 
@@ -5574,7 +6010,7 @@ declare class MarketEndpoint {
5574
6010
  sort?: "DESC" | "ASC";
5575
6011
  from?: number;
5576
6012
  to?: number;
5577
- timestamp?: string;
6013
+ timestamp?: number | string;
5578
6014
  }): Promise<PaginatedResponse<AuctionHouseResponse> & AuctionHouseResponse>;
5579
6015
  /**
5580
6016
  * Get bazaar directory
@@ -5582,21 +6018,21 @@ declare class MarketEndpoint {
5582
6018
  */
5583
6019
  bazaar(params?: {
5584
6020
  cat?: MarketSpecializedBazaarCategoryEnum;
5585
- timestamp?: string;
6021
+ timestamp?: number | string;
5586
6022
  }): Promise<BazaarResponse>;
5587
6023
  /**
5588
6024
  * Get all available market selections
5589
6025
  * @param params - Optional query parameters
5590
6026
  */
5591
6027
  lookup(params?: {
5592
- timestamp?: string;
6028
+ timestamp?: number | string;
5593
6029
  }): Promise<MarketLookupResponse>;
5594
6030
  /**
5595
6031
  * Get current server time
5596
6032
  * @param params - Optional query parameters
5597
6033
  */
5598
6034
  timestamp(params?: {
5599
- timestamp?: string;
6035
+ timestamp?: number | string;
5600
6036
  }): Promise<TimestampResponse>;
5601
6037
  /**
5602
6038
  * Get any Market selection
@@ -5611,7 +6047,7 @@ declare class MarketEndpoint {
5611
6047
  sort?: "DESC" | "ASC";
5612
6048
  offset?: number;
5613
6049
  limit?: number;
5614
- timestamp?: string;
6050
+ timestamp?: number | string;
5615
6051
  }): Promise<MarketResponse>;
5616
6052
  /** @param propertyTypeId - The ID for this context */
5617
6053
  withPropertyTypeId(propertyTypeId: string | number): MarketPropertyTypeIdContext;
@@ -5629,8 +6065,8 @@ declare class MarketIdContext {
5629
6065
  * @param params - Optional query parameters
5630
6066
  */
5631
6067
  auctionhouselisting(params?: {
5632
- timestamp?: string;
5633
- }): Promise<AuctionHouseListing>;
6068
+ timestamp?: number | string;
6069
+ }): Promise<AuctionHouseListingResponse>;
5634
6070
  /**
5635
6071
  * Get specific item auction house listings
5636
6072
  * @param params - Optional query parameters
@@ -5640,14 +6076,14 @@ declare class MarketIdContext {
5640
6076
  sort?: "DESC" | "ASC";
5641
6077
  from?: number;
5642
6078
  to?: number;
5643
- timestamp?: string;
6079
+ timestamp?: number | string;
5644
6080
  }): Promise<PaginatedResponse<AuctionHouseResponse> & AuctionHouseResponse>;
5645
6081
  /**
5646
6082
  * Get item specialized bazaar directory
5647
6083
  * @param params - Optional query parameters
5648
6084
  */
5649
6085
  bazaar(params?: {
5650
- timestamp?: string;
6086
+ timestamp?: number | string;
5651
6087
  }): Promise<BazaarResponseSpecialized>;
5652
6088
  /**
5653
6089
  * Get item market listings
@@ -5657,7 +6093,7 @@ declare class MarketIdContext {
5657
6093
  bonus?: WeaponBonusEnum;
5658
6094
  limit?: number;
5659
6095
  offset?: number;
5660
- timestamp?: string;
6096
+ timestamp?: number | string;
5661
6097
  }): Promise<PaginatedResponse<MarketItemMarketResponse> & MarketItemMarketResponse>;
5662
6098
  }
5663
6099
  /**
@@ -5676,7 +6112,7 @@ declare class MarketPropertyTypeIdContext {
5676
6112
  offset?: number;
5677
6113
  limit?: number;
5678
6114
  sort?: "DESC" | "ASC";
5679
- timestamp?: string;
6115
+ timestamp?: number | string;
5680
6116
  }): Promise<PaginatedResponse<MarketPropertiesResponse> & MarketPropertiesResponse>;
5681
6117
  /**
5682
6118
  * Get properties rental listings
@@ -5686,7 +6122,7 @@ declare class MarketPropertyTypeIdContext {
5686
6122
  offset?: number;
5687
6123
  limit?: number;
5688
6124
  sort?: "DESC" | "ASC";
5689
- timestamp?: string;
6125
+ timestamp?: number | string;
5690
6126
  }): Promise<PaginatedResponse<MarketRentalsResponse> & MarketRentalsResponse>;
5691
6127
  }
5692
6128
 
@@ -5704,14 +6140,14 @@ declare class PropertyEndpoint {
5704
6140
  * @param params - Optional query parameters
5705
6141
  */
5706
6142
  lookup(params?: {
5707
- timestamp?: string;
6143
+ timestamp?: number | string;
5708
6144
  }): Promise<PropertyLookupResponse>;
5709
6145
  /**
5710
6146
  * Get current server time
5711
6147
  * @param params - Optional query parameters
5712
6148
  */
5713
6149
  timestamp(params?: {
5714
- timestamp?: string;
6150
+ timestamp?: number | string;
5715
6151
  }): Promise<TimestampResponse>;
5716
6152
  /**
5717
6153
  * Get any property selection
@@ -5720,7 +6156,7 @@ declare class PropertyEndpoint {
5720
6156
  get(params?: {
5721
6157
  selections?: PropertySelectionName[];
5722
6158
  id?: PropertyId;
5723
- timestamp?: string;
6159
+ timestamp?: number | string;
5724
6160
  }): Promise<PropertyResponse>;
5725
6161
  }
5726
6162
  /**
@@ -5736,7 +6172,7 @@ declare class PropertyIdContext {
5736
6172
  * @param params - Optional query parameters
5737
6173
  */
5738
6174
  get(params?: {
5739
- timestamp?: string;
6175
+ timestamp?: number | string;
5740
6176
  }): Promise<PropertyPropertyResponse>;
5741
6177
  }
5742
6178
 
@@ -5752,14 +6188,14 @@ declare class RacingEndpoint {
5752
6188
  * @param params - Optional query parameters
5753
6189
  */
5754
6190
  cars(params?: {
5755
- timestamp?: string;
6191
+ timestamp?: number | string;
5756
6192
  }): Promise<RacingCarsResponse>;
5757
6193
  /**
5758
6194
  * Get all possible car upgrades
5759
6195
  * @param params - Optional query parameters
5760
6196
  */
5761
6197
  carupgrades(params?: {
5762
- timestamp?: string;
6198
+ timestamp?: number | string;
5763
6199
  }): Promise<RacingCarUpgradesResponse>;
5764
6200
  /**
5765
6201
  * Get races
@@ -5771,28 +6207,28 @@ declare class RacingEndpoint {
5771
6207
  to?: number;
5772
6208
  from?: number;
5773
6209
  cat?: RacingRaceTypeEnum;
5774
- timestamp?: string;
6210
+ timestamp?: number | string;
5775
6211
  }): Promise<PaginatedResponse<RacingRacesResponse> & RacingRacesResponse>;
5776
6212
  /**
5777
6213
  * Get race tracks and descriptions
5778
6214
  * @param params - Optional query parameters
5779
6215
  */
5780
6216
  tracks(params?: {
5781
- timestamp?: string;
6217
+ timestamp?: number | string;
5782
6218
  }): Promise<RacingTracksResponse>;
5783
6219
  /**
5784
6220
  * Get all available racing selections
5785
6221
  * @param params - Optional query parameters
5786
6222
  */
5787
6223
  lookup(params?: {
5788
- timestamp?: string;
6224
+ timestamp?: number | string;
5789
6225
  }): Promise<RacingLookupResponse>;
5790
6226
  /**
5791
6227
  * Get current server time
5792
6228
  * @param params - Optional query parameters
5793
6229
  */
5794
6230
  timestamp(params?: {
5795
- timestamp?: string;
6231
+ timestamp?: number | string;
5796
6232
  }): Promise<TimestampResponse>;
5797
6233
  /**
5798
6234
  * Get any Racing selection
@@ -5807,7 +6243,7 @@ declare class RacingEndpoint {
5807
6243
  from?: number;
5808
6244
  cat?: RacingRaceTypeEnum | RaceClassEnum;
5809
6245
  offset?: number;
5810
- timestamp?: string;
6246
+ timestamp?: number | string;
5811
6247
  }): Promise<RacingResponse>;
5812
6248
  /** @param raceId - The ID for this context */
5813
6249
  withRaceId(raceId: string | number): RacingRaceIdContext;
@@ -5827,7 +6263,7 @@ declare class RacingRaceIdContext {
5827
6263
  * @param params - Optional query parameters
5828
6264
  */
5829
6265
  race(params?: {
5830
- timestamp?: string;
6266
+ timestamp?: number | string;
5831
6267
  }): Promise<RacingRaceDetailsResponse>;
5832
6268
  }
5833
6269
  /**
@@ -5844,7 +6280,7 @@ declare class RacingTrackIdContext {
5844
6280
  */
5845
6281
  records(params?: {
5846
6282
  cat?: RaceClassEnum;
5847
- timestamp?: string;
6283
+ timestamp?: number | string;
5848
6284
  }): Promise<RacingTrackRecordsResponse>;
5849
6285
  }
5850
6286
 
@@ -5864,7 +6300,7 @@ declare class TornEndpoint {
5864
6300
  offset?: number;
5865
6301
  sort?: "DESC" | "ASC";
5866
6302
  striptags?: "true" | "false";
5867
- timestamp?: string;
6303
+ timestamp?: number | string;
5868
6304
  }): Promise<PaginatedResponse<AttackLogResponse> & AttackLogResponse>;
5869
6305
  /**
5870
6306
  * Get bounties
@@ -5873,35 +6309,35 @@ declare class TornEndpoint {
5873
6309
  bounties(params?: {
5874
6310
  limit?: number;
5875
6311
  offset?: number;
5876
- timestamp?: string;
6312
+ timestamp?: number | string;
5877
6313
  }): Promise<PaginatedResponse<TornBountiesResponse> & TornBountiesResponse>;
5878
6314
  /**
5879
6315
  * Get calendar information
5880
6316
  * @param params - Optional query parameters
5881
6317
  */
5882
6318
  calendar(params?: {
5883
- timestamp?: string;
6319
+ timestamp?: number | string;
5884
6320
  }): Promise<TornCalendarResponse>;
5885
6321
  /**
5886
6322
  * Get crimes information
5887
6323
  * @param params - Optional query parameters
5888
6324
  */
5889
6325
  crimes(params?: {
5890
- timestamp?: string;
6326
+ timestamp?: number | string;
5891
6327
  }): Promise<TornCrimesResponse>;
5892
6328
  /**
5893
6329
  * Get education information
5894
6330
  * @param params - Optional query parameters
5895
6331
  */
5896
6332
  education(params?: {
5897
- timestamp?: string;
6333
+ timestamp?: number | string;
5898
6334
  }): Promise<TornEducationResponse>;
5899
6335
  /**
5900
6336
  * Get current standings for all elimination teams
5901
6337
  * @param params - Optional query parameters
5902
6338
  */
5903
6339
  elimination(params?: {
5904
- timestamp?: string;
6340
+ timestamp?: number | string;
5905
6341
  }): Promise<TornEliminationTeamsResponse>;
5906
6342
  /**
5907
6343
  * Get faction hall of fame positions for a specific category
@@ -5911,14 +6347,14 @@ declare class TornEndpoint {
5911
6347
  limit?: number;
5912
6348
  offset?: number;
5913
6349
  cat?: TornFactionHofCategory;
5914
- timestamp?: string;
6350
+ timestamp?: number | string;
5915
6351
  }): Promise<PaginatedResponse<TornFactionHofResponse> & TornFactionHofResponse>;
5916
6352
  /**
5917
6353
  * Get full faction tree
5918
6354
  * @param params - Optional query parameters
5919
6355
  */
5920
6356
  factiontree(params?: {
5921
- timestamp?: string;
6357
+ timestamp?: number | string;
5922
6358
  }): Promise<TornFactionTreeResponse>;
5923
6359
  /**
5924
6360
  * Get all honors
@@ -5928,7 +6364,7 @@ declare class TornEndpoint {
5928
6364
  limit?: number;
5929
6365
  offset?: number;
5930
6366
  sort?: "DESC" | "ASC";
5931
- timestamp?: string;
6367
+ timestamp?: number | string;
5932
6368
  }): Promise<TornHonorsResponse>;
5933
6369
  /**
5934
6370
  * Get player hall of fame positions for a specific category
@@ -5938,21 +6374,21 @@ declare class TornEndpoint {
5938
6374
  limit?: number;
5939
6375
  offset?: number;
5940
6376
  cat?: TornHofCategory;
5941
- timestamp?: string;
6377
+ timestamp?: number | string;
5942
6378
  }): Promise<PaginatedResponse<TornHofResponse> & TornHofResponse>;
5943
6379
  /**
5944
6380
  * Get information about ammo
5945
6381
  * @param params - Optional query parameters
5946
6382
  */
5947
6383
  itemammo(params?: {
5948
- timestamp?: string;
6384
+ timestamp?: number | string;
5949
6385
  }): Promise<TornItemAmmoResponse>;
5950
6386
  /**
5951
6387
  * Get information about weapon upgrades
5952
6388
  * @param params - Optional query parameters
5953
6389
  */
5954
6390
  itemmods(params?: {
5955
- timestamp?: string;
6391
+ timestamp?: number | string;
5956
6392
  }): Promise<TornItemModsResponse>;
5957
6393
  /**
5958
6394
  * Get information about items
@@ -5961,56 +6397,56 @@ declare class TornEndpoint {
5961
6397
  items(params?: {
5962
6398
  cat?: TornItemCategory;
5963
6399
  sort?: "DESC" | "ASC";
5964
- timestamp?: string;
6400
+ timestamp?: number | string;
5965
6401
  }): Promise<TornItemsResponse>;
5966
6402
  /**
5967
6403
  * Get available log categories
5968
6404
  * @param params - Optional query parameters
5969
6405
  */
5970
6406
  logcategories(params?: {
5971
- timestamp?: string;
6407
+ timestamp?: number | string;
5972
6408
  }): Promise<TornLogCategoriesResponse>;
5973
6409
  /**
5974
6410
  * Get all available log ids
5975
6411
  * @param params - Optional query parameters
5976
6412
  */
5977
6413
  logtypes(params?: {
5978
- timestamp?: string;
6414
+ timestamp?: number | string;
5979
6415
  }): Promise<TornLogTypesResponse>;
5980
6416
  /**
5981
6417
  * Get all medals
5982
6418
  * @param params - Optional query parameters
5983
6419
  */
5984
6420
  medals(params?: {
5985
- timestamp?: string;
6421
+ timestamp?: number | string;
5986
6422
  }): Promise<TornMedalsResponse>;
5987
6423
  /**
5988
6424
  * Get all merits
5989
6425
  * @param params - Optional query parameters
5990
6426
  */
5991
6427
  merits(params?: {
5992
- timestamp?: string;
6428
+ timestamp?: number | string;
5993
6429
  }): Promise<TornMeritsResponse>;
5994
6430
  /**
5995
6431
  * Get organized crimes information
5996
6432
  * @param params - Optional query parameters
5997
6433
  */
5998
6434
  organizedcrimes(params?: {
5999
- timestamp?: string;
6435
+ timestamp?: number | string;
6000
6436
  }): Promise<TornOrganizedCrimeResponse>;
6001
6437
  /**
6002
6438
  * Get properties details
6003
6439
  * @param params - Optional query parameters
6004
6440
  */
6005
6441
  properties(params?: {
6006
- timestamp?: string;
6442
+ timestamp?: number | string;
6007
6443
  }): Promise<TornProperties>;
6008
6444
  /**
6009
6445
  * Get all stocks
6010
6446
  * @param params - Optional query parameters
6011
6447
  */
6012
6448
  stocks(params?: {
6013
- timestamp?: string;
6449
+ timestamp?: number | string;
6014
6450
  }): Promise<TornStocksResponse>;
6015
6451
  /**
6016
6452
  * Get territory details
@@ -6020,21 +6456,21 @@ declare class TornEndpoint {
6020
6456
  ids?: FactionTerritoryEnum[];
6021
6457
  offset?: number;
6022
6458
  limit?: number;
6023
- timestamp?: string;
6459
+ timestamp?: number | string;
6024
6460
  }): Promise<PaginatedResponse<TornTerritoriesResponse> & TornTerritoriesResponse>;
6025
6461
  /**
6026
6462
  * Get all available torn selections
6027
6463
  * @param params - Optional query parameters
6028
6464
  */
6029
6465
  lookup(params?: {
6030
- timestamp?: string;
6466
+ timestamp?: number | string;
6031
6467
  }): Promise<TornLookupResponse>;
6032
6468
  /**
6033
6469
  * Get current server time
6034
6470
  * @param params - Optional query parameters
6035
6471
  */
6036
6472
  timestamp(params?: {
6037
- timestamp?: string;
6473
+ timestamp?: number | string;
6038
6474
  }): Promise<TimestampResponse>;
6039
6475
  /**
6040
6476
  * Get any Torn selection
@@ -6051,7 +6487,7 @@ declare class TornEndpoint {
6051
6487
  sort?: "DESC" | "ASC";
6052
6488
  cat?: TornFactionHofCategory | TornHofCategory | TornItemCategory;
6053
6489
  offset?: number;
6054
- timestamp?: string;
6490
+ timestamp?: number | string;
6055
6491
  }): Promise<TornResponse>;
6056
6492
  /** @param id - The ID for this context */
6057
6493
  withId(id: string | number): TornIdContext;
@@ -6079,14 +6515,14 @@ declare class TornIdContext {
6079
6515
  eliminationteam(params?: {
6080
6516
  limit?: number;
6081
6517
  offset?: number;
6082
- timestamp?: string;
6518
+ timestamp?: number | string;
6083
6519
  }): Promise<PaginatedResponse<TornEliminationTeamPlayersResponse> & TornEliminationTeamPlayersResponse>;
6084
6520
  /**
6085
6521
  * Get information about a specific item
6086
6522
  * @param params - Optional query parameters
6087
6523
  */
6088
6524
  itemdetails(params?: {
6089
- timestamp?: string;
6525
+ timestamp?: number | string;
6090
6526
  }): Promise<TornItemDetailsResponse>;
6091
6527
  }
6092
6528
  /**
@@ -6102,7 +6538,7 @@ declare class TornIdsContext {
6102
6538
  * @param params - Optional query parameters
6103
6539
  */
6104
6540
  honors(params?: {
6105
- timestamp?: string;
6541
+ timestamp?: number | string;
6106
6542
  }): Promise<TornHonorsResponse>;
6107
6543
  /**
6108
6544
  * Get information about items
@@ -6110,14 +6546,14 @@ declare class TornIdsContext {
6110
6546
  */
6111
6547
  items(params?: {
6112
6548
  sort?: "DESC" | "ASC";
6113
- timestamp?: string;
6549
+ timestamp?: number | string;
6114
6550
  }): Promise<TornItemsResponse>;
6115
6551
  /**
6116
6552
  * Get specific medals
6117
6553
  * @param params - Optional query parameters
6118
6554
  */
6119
6555
  medals(params?: {
6120
- timestamp?: string;
6556
+ timestamp?: number | string;
6121
6557
  }): Promise<TornMedalsResponse>;
6122
6558
  }
6123
6559
  /**
@@ -6133,7 +6569,7 @@ declare class TornLogCategoryIdContext {
6133
6569
  * @param params - Optional query parameters
6134
6570
  */
6135
6571
  logtypes(params?: {
6136
- timestamp?: string;
6572
+ timestamp?: number | string;
6137
6573
  }): Promise<TornLogTypesResponse>;
6138
6574
  }
6139
6575
  /**
@@ -6149,7 +6585,7 @@ declare class TornStockIdContext {
6149
6585
  * @param params - Optional query parameters
6150
6586
  */
6151
6587
  stocks(params?: {
6152
- timestamp?: string;
6588
+ timestamp?: number | string;
6153
6589
  }): Promise<TornStockDetailedResponse>;
6154
6590
  }
6155
6591
  /**
@@ -6165,7 +6601,7 @@ declare class TornCrimeIdContext {
6165
6601
  * @param params - Optional query parameters
6166
6602
  */
6167
6603
  subcrimes(params?: {
6168
- timestamp?: string;
6604
+ timestamp?: number | string;
6169
6605
  }): Promise<TornSubcrimesResponse>;
6170
6606
  }
6171
6607
 
@@ -6181,7 +6617,7 @@ declare class UserEndpoint {
6181
6617
  * @param params - Optional query parameters
6182
6618
  */
6183
6619
  ammo(params?: {
6184
- timestamp?: string;
6620
+ timestamp?: number | string;
6185
6621
  }): Promise<UserAmmoResponse>;
6186
6622
  /**
6187
6623
  * Get your detailed attacks
@@ -6193,7 +6629,7 @@ declare class UserEndpoint {
6193
6629
  sort?: "DESC" | "ASC";
6194
6630
  to?: number;
6195
6631
  from?: number;
6196
- timestamp?: string;
6632
+ timestamp?: number | string;
6197
6633
  }): Promise<PaginatedResponse<AttacksResponse> & AttacksResponse>;
6198
6634
  /**
6199
6635
  * Get your simplified attacks
@@ -6205,14 +6641,14 @@ declare class UserEndpoint {
6205
6641
  sort?: "DESC" | "ASC";
6206
6642
  to?: number;
6207
6643
  from?: number;
6208
- timestamp?: string;
6644
+ timestamp?: number | string;
6209
6645
  }): Promise<PaginatedResponse<AttacksFullResponse> & AttacksFullResponse>;
6210
6646
  /**
6211
6647
  * Get your bars information
6212
6648
  * @param params - Optional query parameters
6213
6649
  */
6214
6650
  bars(params?: {
6215
- timestamp?: string;
6651
+ timestamp?: number | string;
6216
6652
  }): Promise<UserBarsResponse>;
6217
6653
  /**
6218
6654
  * Get your basic profile information
@@ -6220,77 +6656,77 @@ declare class UserEndpoint {
6220
6656
  */
6221
6657
  basic(params?: {
6222
6658
  striptags?: "true" | "false";
6223
- timestamp?: string;
6659
+ timestamp?: number | string;
6224
6660
  }): Promise<UserBasicResponse>;
6225
6661
  /**
6226
6662
  * Get your battlestats
6227
6663
  * @param params - Optional query parameters
6228
6664
  */
6229
6665
  battlestats(params?: {
6230
- timestamp?: string;
6666
+ timestamp?: number | string;
6231
6667
  }): Promise<UserBattleStatsResponse>;
6232
6668
  /**
6233
6669
  * Get bounties placed on you
6234
6670
  * @param params - Optional query parameters
6235
6671
  */
6236
6672
  bounties(params?: {
6237
- timestamp?: string;
6673
+ timestamp?: number | string;
6238
6674
  }): Promise<UserBountiesResponse>;
6239
6675
  /**
6240
6676
  * Get your calendar events start time
6241
6677
  * @param params - Optional query parameters
6242
6678
  */
6243
6679
  calendar(params?: {
6244
- timestamp?: string;
6680
+ timestamp?: number | string;
6245
6681
  }): Promise<UserCalendarResponse>;
6246
6682
  /**
6247
6683
  * Get your casino streak & tokens
6248
6684
  * @param params - Optional query parameters
6249
6685
  */
6250
6686
  casino(params?: {
6251
- timestamp?: string;
6687
+ timestamp?: number | string;
6252
6688
  }): Promise<UserCasinoResponse>;
6253
6689
  /**
6254
6690
  * Get your competition information
6255
6691
  * @param params - Optional query parameters
6256
6692
  */
6257
6693
  competition(params?: {
6258
- timestamp?: string;
6694
+ timestamp?: number | string;
6259
6695
  }): Promise<UserCompetitionResponse>;
6260
6696
  /**
6261
6697
  * Get your cooldowns information
6262
6698
  * @param params - Optional query parameters
6263
6699
  */
6264
6700
  cooldowns(params?: {
6265
- timestamp?: string;
6701
+ timestamp?: number | string;
6266
6702
  }): Promise<UserCooldownsResponse>;
6267
6703
  /**
6268
6704
  * Get your discord information
6269
6705
  * @param params - Optional query parameters
6270
6706
  */
6271
6707
  discord(params?: {
6272
- timestamp?: string;
6708
+ timestamp?: number | string;
6273
6709
  }): Promise<UserDiscordResponse>;
6274
6710
  /**
6275
6711
  * Get your education information
6276
6712
  * @param params - Optional query parameters
6277
6713
  */
6278
6714
  education(params?: {
6279
- timestamp?: string;
6715
+ timestamp?: number | string;
6280
6716
  }): Promise<UserEducationResponse>;
6281
6717
  /**
6282
6718
  * Get your enlisted cars
6283
6719
  * @param params - Optional query parameters
6284
6720
  */
6285
6721
  enlistedcars(params?: {
6286
- timestamp?: string;
6722
+ timestamp?: number | string;
6287
6723
  }): Promise<UserEnlistedCarsResponse>;
6288
6724
  /**
6289
6725
  * Get your equipment & clothing
6290
6726
  * @param params - Optional query parameters
6291
6727
  */
6292
6728
  equipment(params?: {
6293
- timestamp?: string;
6729
+ timestamp?: number | string;
6294
6730
  }): Promise<UserEquipmentResponse>;
6295
6731
  /**
6296
6732
  * Get your events
@@ -6301,28 +6737,28 @@ declare class UserEndpoint {
6301
6737
  limit?: number;
6302
6738
  from?: number;
6303
6739
  to?: number;
6304
- timestamp?: string;
6740
+ timestamp?: number | string;
6305
6741
  }): Promise<PaginatedResponse<UserEventsResponse> & UserEventsResponse>;
6306
6742
  /**
6307
6743
  * Get your faction information
6308
6744
  * @param params - Optional query parameters
6309
6745
  */
6310
6746
  faction(params?: {
6311
- timestamp?: string;
6747
+ timestamp?: number | string;
6312
6748
  }): Promise<UserFactionResponse>;
6313
6749
  /**
6314
6750
  * Get updates on your threads and posts
6315
6751
  * @param params - Optional query parameters
6316
6752
  */
6317
6753
  forumfeed(params?: {
6318
- timestamp?: string;
6754
+ timestamp?: number | string;
6319
6755
  }): Promise<UserForumFeedResponse>;
6320
6756
  /**
6321
6757
  * Get updates on your friends' activity
6322
6758
  * @param params - Optional query parameters
6323
6759
  */
6324
6760
  forumfriends(params?: {
6325
- timestamp?: string;
6761
+ timestamp?: number | string;
6326
6762
  }): Promise<UserForumFriendsResponse>;
6327
6763
  /**
6328
6764
  * Get your posts
@@ -6334,14 +6770,14 @@ declare class UserEndpoint {
6334
6770
  sort?: "DESC" | "ASC";
6335
6771
  from?: number;
6336
6772
  to?: number;
6337
- timestamp?: string;
6773
+ timestamp?: number | string;
6338
6774
  }): Promise<PaginatedResponse<UserForumPostsResponse> & UserForumPostsResponse>;
6339
6775
  /**
6340
6776
  * Get updates on threads you subscribed to
6341
6777
  * @param params - Optional query parameters
6342
6778
  */
6343
6779
  forumsubscribedthreads(params?: {
6344
- timestamp?: string;
6780
+ timestamp?: number | string;
6345
6781
  }): Promise<UserForumSubscribedThreadsResponse>;
6346
6782
  /**
6347
6783
  * Get your threads
@@ -6352,28 +6788,28 @@ declare class UserEndpoint {
6352
6788
  sort?: "DESC" | "ASC";
6353
6789
  from?: number;
6354
6790
  to?: number;
6355
- timestamp?: string;
6791
+ timestamp?: number | string;
6356
6792
  }): Promise<PaginatedResponse<UserForumThreadsResponse> & UserForumThreadsResponse>;
6357
6793
  /**
6358
6794
  * Get your hall of fame rankings
6359
6795
  * @param params - Optional query parameters
6360
6796
  */
6361
6797
  hof(params?: {
6362
- timestamp?: string;
6798
+ timestamp?: number | string;
6363
6799
  }): Promise<UserHofResponse>;
6364
6800
  /**
6365
6801
  * Get your achieved honors
6366
6802
  * @param params - Optional query parameters
6367
6803
  */
6368
6804
  honors(params?: {
6369
- timestamp?: string;
6805
+ timestamp?: number | string;
6370
6806
  }): Promise<UserHonorsResponse>;
6371
6807
  /**
6372
6808
  * Get your icons information
6373
6809
  * @param params - Optional query parameters
6374
6810
  */
6375
6811
  icons(params?: {
6376
- timestamp?: string;
6812
+ timestamp?: number | string;
6377
6813
  }): Promise<UserIconsResponse>;
6378
6814
  /**
6379
6815
  * Get your inventory
@@ -6383,7 +6819,7 @@ declare class UserEndpoint {
6383
6819
  cat?: TornInventoryItemType;
6384
6820
  offset?: number;
6385
6821
  limit?: number;
6386
- timestamp?: string;
6822
+ timestamp?: number | string;
6387
6823
  }): Promise<PaginatedResponse<UserInventoryResponse> & UserInventoryResponse>;
6388
6824
  /**
6389
6825
  * Get your item market listings
@@ -6391,28 +6827,35 @@ declare class UserEndpoint {
6391
6827
  */
6392
6828
  itemmarket(params?: {
6393
6829
  offset?: number;
6394
- timestamp?: string;
6830
+ timestamp?: number | string;
6395
6831
  }): Promise<PaginatedResponse<UserItemMarketResponse> & UserItemMarketResponse>;
6832
+ /**
6833
+ * Get your information about available item mods
6834
+ * @param params - Optional query parameters
6835
+ */
6836
+ itemmods(params?: {
6837
+ timestamp?: number | string;
6838
+ }): Promise<UserItemModsResponse>;
6396
6839
  /**
6397
6840
  * Get your job information
6398
6841
  * @param params - Optional query parameters
6399
6842
  */
6400
6843
  job(params?: {
6401
- timestamp?: string;
6844
+ timestamp?: number | string;
6402
6845
  }): Promise<UserJobResponse>;
6403
6846
  /**
6404
6847
  * Get your jobpoints
6405
6848
  * @param params - Optional query parameters
6406
6849
  */
6407
6850
  jobpoints(params?: {
6408
- timestamp?: string;
6851
+ timestamp?: number | string;
6409
6852
  }): Promise<UserJobPointsResponse>;
6410
6853
  /**
6411
6854
  * Get your starter job positions
6412
6855
  * @param params - Optional query parameters
6413
6856
  */
6414
6857
  jobranks(params?: {
6415
- timestamp?: string;
6858
+ timestamp?: number | string;
6416
6859
  }): Promise<UserJobRanksResponse>;
6417
6860
  /**
6418
6861
  * Get your friends, enemies or targets list
@@ -6424,7 +6867,7 @@ declare class UserEndpoint {
6424
6867
  limit?: number;
6425
6868
  offset?: number;
6426
6869
  sort?: "DESC" | "ASC";
6427
- timestamp?: string;
6870
+ timestamp?: number | string;
6428
6871
  }): Promise<PaginatedResponse<UserListResponse> & UserListResponse>;
6429
6872
  /**
6430
6873
  * Get your logs
@@ -6437,21 +6880,21 @@ declare class UserEndpoint {
6437
6880
  limit?: number;
6438
6881
  to?: number;
6439
6882
  from?: number;
6440
- timestamp?: string;
6883
+ timestamp?: number | string;
6441
6884
  }): Promise<PaginatedResponse<UserLogsResponse> & UserLogsResponse>;
6442
6885
  /**
6443
6886
  * Get your achieved medals
6444
6887
  * @param params - Optional query parameters
6445
6888
  */
6446
6889
  medals(params?: {
6447
- timestamp?: string;
6890
+ timestamp?: number | string;
6448
6891
  }): Promise<UserMedalsResponse>;
6449
6892
  /**
6450
6893
  * Get your merits
6451
6894
  * @param params - Optional query parameters
6452
6895
  */
6453
6896
  merits(params?: {
6454
- timestamp?: string;
6897
+ timestamp?: number | string;
6455
6898
  }): Promise<UserMeritsResponse>;
6456
6899
  /**
6457
6900
  * Get your messages
@@ -6462,21 +6905,21 @@ declare class UserEndpoint {
6462
6905
  from?: number;
6463
6906
  to?: number;
6464
6907
  sort?: "DESC" | "ASC";
6465
- timestamp?: string;
6908
+ timestamp?: number | string;
6466
6909
  }): Promise<PaginatedResponse<UserMessagesResponse> & UserMessagesResponse>;
6467
6910
  /**
6468
6911
  * Get your current missions information
6469
6912
  * @param params - Optional query parameters
6470
6913
  */
6471
6914
  missions(params?: {
6472
- timestamp?: string;
6915
+ timestamp?: number | string;
6473
6916
  }): Promise<UserMissionsResponse>;
6474
6917
  /**
6475
6918
  * Get your current wealth
6476
6919
  * @param params - Optional query parameters
6477
6920
  */
6478
6921
  money(params?: {
6479
- timestamp?: string;
6922
+ timestamp?: number | string;
6480
6923
  }): Promise<UserMoneyResponse>;
6481
6924
  /**
6482
6925
  * Get your unseen events
@@ -6484,36 +6927,36 @@ declare class UserEndpoint {
6484
6927
  */
6485
6928
  newevents(params?: {
6486
6929
  striptags?: "true" | "false";
6487
- timestamp?: string;
6930
+ timestamp?: number | string;
6488
6931
  }): Promise<UserNewEventsResponse>;
6489
6932
  /**
6490
6933
  * Get your unseen messages
6491
6934
  * @param params - Optional query parameters
6492
6935
  */
6493
6936
  newmessages(params?: {
6494
- timestamp?: string;
6937
+ timestamp?: number | string;
6495
6938
  }): Promise<UserNewMessagesResponse>;
6496
6939
  /**
6497
6940
  * Get your notifications
6498
6941
  * @param params - Optional query parameters
6499
6942
  */
6500
6943
  notifications(params?: {
6501
- timestamp?: string;
6944
+ timestamp?: number | string;
6502
6945
  }): Promise<UserNotificationsResponse>;
6503
6946
  /**
6504
6947
  * Get your current ongoing organized crime
6505
6948
  * @param params - Optional query parameters
6506
6949
  */
6507
6950
  organizedcrime(params?: {
6508
- timestamp?: string;
6951
+ timestamp?: number | string;
6509
6952
  }): Promise<UserOrganizedCrimeResponse>;
6510
6953
  /**
6511
- * Get available slots for organized crimes with status 'Recruiting'
6954
+ * Get your available slots for organized crimes with status 'Recruiting'
6512
6955
  * @param params - Optional query parameters
6513
6956
  */
6514
6957
  organizedcrimes(params?: {
6515
- timestamp?: string;
6516
- }): Promise<PaginatedResponse<UserOrganizedCrimesResponse> & UserOrganizedCrimesResponse>;
6958
+ timestamp?: number | string;
6959
+ }): Promise<UserOrganizedCrimesResponse>;
6517
6960
  /**
6518
6961
  * Get your personal stats
6519
6962
  * @param params - Optional query parameters
@@ -6529,7 +6972,7 @@ declare class UserEndpoint {
6529
6972
  */
6530
6973
  profile(params?: {
6531
6974
  striptags?: "true" | "false";
6532
- timestamp?: string;
6975
+ timestamp?: number | string;
6533
6976
  }): Promise<UserProfileResponse>;
6534
6977
  /**
6535
6978
  * Get your own properties
@@ -6539,17 +6982,17 @@ declare class UserEndpoint {
6539
6982
  filters?: "ownedByUser" | "ownedBySpouse";
6540
6983
  offset?: number;
6541
6984
  limit?: number;
6542
- timestamp?: string;
6985
+ timestamp?: number | string;
6543
6986
  }): Promise<PaginatedResponse<UserPropertiesResponse> & UserPropertiesResponse>;
6544
6987
  /**
6545
6988
  * Get your current property
6546
6989
  * @param params - Optional query parameters
6547
6990
  */
6548
6991
  property(params?: {
6549
- timestamp?: string;
6992
+ timestamp?: number | string;
6550
6993
  }): Promise<UserPropertyResponse>;
6551
6994
  /**
6552
- * Get user races
6995
+ * Get your races
6553
6996
  * @param params - Optional query parameters
6554
6997
  */
6555
6998
  races(params?: {
@@ -6558,21 +7001,21 @@ declare class UserEndpoint {
6558
7001
  from?: number;
6559
7002
  to?: number;
6560
7003
  cat?: RacingRaceTypeEnum;
6561
- timestamp?: string;
7004
+ timestamp?: number | string;
6562
7005
  }): Promise<PaginatedResponse<UserRacesResponse> & UserRacesResponse>;
6563
7006
  /**
6564
7007
  * Get your current racing records
6565
7008
  * @param params - Optional query parameters
6566
7009
  */
6567
7010
  racingrecords(params?: {
6568
- timestamp?: string;
7011
+ timestamp?: number | string;
6569
7012
  }): Promise<UserRacingRecordsResponse>;
6570
7013
  /**
6571
7014
  * Get your refills information
6572
7015
  * @param params - Optional query parameters
6573
7016
  */
6574
7017
  refills(params?: {
6575
- timestamp?: string;
7018
+ timestamp?: number | string;
6576
7019
  }): Promise<UserRefillsResponse>;
6577
7020
  /**
6578
7021
  * Get your reports
@@ -6584,7 +7027,7 @@ declare class UserEndpoint {
6584
7027
  limit?: number;
6585
7028
  offset?: number;
6586
7029
  sort?: "DESC" | "ASC";
6587
- timestamp?: string;
7030
+ timestamp?: number | string;
6588
7031
  }): Promise<PaginatedResponse<ReportsResponse> & ReportsResponse>;
6589
7032
  /**
6590
7033
  * Get your detailed revives
@@ -6597,7 +7040,7 @@ declare class UserEndpoint {
6597
7040
  to?: number;
6598
7041
  from?: number;
6599
7042
  striptags?: "true" | "false";
6600
- timestamp?: string;
7043
+ timestamp?: number | string;
6601
7044
  }): Promise<PaginatedResponse<RevivesResponse> & RevivesResponse>;
6602
7045
  /**
6603
7046
  * Get your simplified revives
@@ -6610,21 +7053,21 @@ declare class UserEndpoint {
6610
7053
  to?: number;
6611
7054
  from?: number;
6612
7055
  striptags?: "true" | "false";
6613
- timestamp?: string;
7056
+ timestamp?: number | string;
6614
7057
  }): Promise<PaginatedResponse<RevivesFullResponse> & RevivesFullResponse>;
6615
7058
  /**
6616
7059
  * Get your skills
6617
7060
  * @param params - Optional query parameters
6618
7061
  */
6619
7062
  skills(params?: {
6620
- timestamp?: string;
7063
+ timestamp?: number | string;
6621
7064
  }): Promise<UserSkillsResponse>;
6622
7065
  /**
6623
7066
  * Get your stocks
6624
7067
  * @param params - Optional query parameters
6625
7068
  */
6626
7069
  stocks(params?: {
6627
- timestamp?: string;
7070
+ timestamp?: number | string;
6628
7071
  }): Promise<UserStocksResponse>;
6629
7072
  /**
6630
7073
  * Get your trades
@@ -6636,49 +7079,49 @@ declare class UserEndpoint {
6636
7079
  sort?: "DESC" | "ASC";
6637
7080
  to?: number;
6638
7081
  from?: number;
6639
- timestamp?: string;
7082
+ timestamp?: number | string;
6640
7083
  }): Promise<PaginatedResponse<UserTradesResponse> & UserTradesResponse>;
6641
7084
  /**
6642
7085
  * Get your travel information
6643
7086
  * @param params - Optional query parameters
6644
7087
  */
6645
7088
  travel(params?: {
6646
- timestamp?: string;
7089
+ timestamp?: number | string;
6647
7090
  }): Promise<UserTravelResponse>;
6648
7091
  /**
6649
7092
  * Get your virus coding information
6650
7093
  * @param params - Optional query parameters
6651
7094
  */
6652
7095
  virus(params?: {
6653
- timestamp?: string;
7096
+ timestamp?: number | string;
6654
7097
  }): Promise<UserVirusResponse>;
6655
7098
  /**
6656
7099
  * Get your weapon experience information
6657
7100
  * @param params - Optional query parameters
6658
7101
  */
6659
7102
  weaponexp(params?: {
6660
- timestamp?: string;
7103
+ timestamp?: number | string;
6661
7104
  }): Promise<UserWeaponExpResponse>;
6662
7105
  /**
6663
7106
  * Get your working stats
6664
7107
  * @param params - Optional query parameters
6665
7108
  */
6666
7109
  workstats(params?: {
6667
- timestamp?: string;
7110
+ timestamp?: number | string;
6668
7111
  }): Promise<UserWorkStatsResponse>;
6669
7112
  /**
6670
7113
  * Get all available user selections
6671
7114
  * @param params - Optional query parameters
6672
7115
  */
6673
7116
  lookup(params?: {
6674
- timestamp?: string;
7117
+ timestamp?: number | string;
6675
7118
  }): Promise<UserLookupResponse>;
6676
7119
  /**
6677
7120
  * Get current server time
6678
7121
  * @param params - Optional query parameters
6679
7122
  */
6680
7123
  timestamp(params?: {
6681
- timestamp?: string;
7124
+ timestamp?: number | string;
6682
7125
  }): Promise<TimestampResponse>;
6683
7126
  /**
6684
7127
  * Get any User selection
@@ -6697,7 +7140,7 @@ declare class UserEndpoint {
6697
7140
  filters?: "incoming" | "outgoing" | "ownedByUser" | "ownedBySpouse";
6698
7141
  striptags?: "true" | "false";
6699
7142
  offset?: number;
6700
- timestamp?: string;
7143
+ timestamp?: number | string;
6701
7144
  }): Promise<UserResponse>;
6702
7145
  /** @param id - The ID for this context */
6703
7146
  withId(id: string | number): UserIdContext;
@@ -6720,35 +7163,35 @@ declare class UserIdContext {
6720
7163
  */
6721
7164
  basic(params?: {
6722
7165
  striptags?: "true" | "false";
6723
- timestamp?: string;
7166
+ timestamp?: number | string;
6724
7167
  }): Promise<UserBasicResponse>;
6725
7168
  /**
6726
7169
  * Get bounties placed on a specific user
6727
7170
  * @param params - Optional query parameters
6728
7171
  */
6729
7172
  bounties(params?: {
6730
- timestamp?: string;
7173
+ timestamp?: number | string;
6731
7174
  }): Promise<UserBountiesResponse>;
6732
7175
  /**
6733
7176
  * Get competition information for a specific player
6734
7177
  * @param params - Optional query parameters
6735
7178
  */
6736
7179
  competition(params?: {
6737
- timestamp?: string;
7180
+ timestamp?: number | string;
6738
7181
  }): Promise<UserCompetitionResponse>;
6739
7182
  /**
6740
7183
  * Get discord information for a specific user
6741
7184
  * @param params - Optional query parameters
6742
7185
  */
6743
7186
  discord(params?: {
6744
- timestamp?: string;
7187
+ timestamp?: number | string;
6745
7188
  }): Promise<UserDiscordResponse>;
6746
7189
  /**
6747
7190
  * Get faction information for a specific player
6748
7191
  * @param params - Optional query parameters
6749
7192
  */
6750
7193
  faction(params?: {
6751
- timestamp?: string;
7194
+ timestamp?: number | string;
6752
7195
  }): Promise<UserFactionResponse>;
6753
7196
  /**
6754
7197
  * Get posts for a specific player
@@ -6760,7 +7203,7 @@ declare class UserIdContext {
6760
7203
  sort?: "DESC" | "ASC";
6761
7204
  from?: number;
6762
7205
  to?: number;
6763
- timestamp?: string;
7206
+ timestamp?: number | string;
6764
7207
  }): Promise<PaginatedResponse<UserForumPostsResponse> & UserForumPostsResponse>;
6765
7208
  /**
6766
7209
  * Get threads for a specific player
@@ -6771,28 +7214,28 @@ declare class UserIdContext {
6771
7214
  sort?: "DESC" | "ASC";
6772
7215
  from?: number;
6773
7216
  to?: number;
6774
- timestamp?: string;
7217
+ timestamp?: number | string;
6775
7218
  }): Promise<PaginatedResponse<UserForumThreadsResponse> & UserForumThreadsResponse>;
6776
7219
  /**
6777
7220
  * Get hall of fame rankings for a specific player
6778
7221
  * @param params - Optional query parameters
6779
7222
  */
6780
7223
  hof(params?: {
6781
- timestamp?: string;
7224
+ timestamp?: number | string;
6782
7225
  }): Promise<UserHofResponse>;
6783
7226
  /**
6784
7227
  * Get icons information for a specific player
6785
7228
  * @param params - Optional query parameters
6786
7229
  */
6787
7230
  icons(params?: {
6788
- timestamp?: string;
7231
+ timestamp?: number | string;
6789
7232
  }): Promise<UserIconsResponse>;
6790
7233
  /**
6791
7234
  * Get job information for a specific player
6792
7235
  * @param params - Optional query parameters
6793
7236
  */
6794
7237
  job(params?: {
6795
- timestamp?: string;
7238
+ timestamp?: number | string;
6796
7239
  }): Promise<UserJobResponse>;
6797
7240
  /**
6798
7241
  * Get a player's personal stats
@@ -6809,7 +7252,7 @@ declare class UserIdContext {
6809
7252
  */
6810
7253
  profile(params?: {
6811
7254
  striptags?: "true" | "false";
6812
- timestamp?: string;
7255
+ timestamp?: number | string;
6813
7256
  }): Promise<UserProfileResponse>;
6814
7257
  /**
6815
7258
  * Get specific user's properties
@@ -6819,14 +7262,14 @@ declare class UserIdContext {
6819
7262
  filters?: "ownedByUser" | "ownedBySpouse";
6820
7263
  offset?: number;
6821
7264
  limit?: number;
6822
- timestamp?: string;
7265
+ timestamp?: number | string;
6823
7266
  }): Promise<PaginatedResponse<UserPropertiesResponse> & UserPropertiesResponse>;
6824
7267
  /**
6825
7268
  * Get specific user's property
6826
7269
  * @param params - Optional query parameters
6827
7270
  */
6828
7271
  property(params?: {
6829
- timestamp?: string;
7272
+ timestamp?: number | string;
6830
7273
  }): Promise<UserPropertyResponse>;
6831
7274
  /** Get user by ID */
6832
7275
  get(): Promise<User>;
@@ -6844,7 +7287,7 @@ declare class UserCrimeIdContext {
6844
7287
  * @param params - Optional query parameters
6845
7288
  */
6846
7289
  crimes(params?: {
6847
- timestamp?: string;
7290
+ timestamp?: number | string;
6848
7291
  }): Promise<UserCrimesResponse>;
6849
7292
  }
6850
7293
  /**
@@ -6860,7 +7303,7 @@ declare class UserTradeIdContext {
6860
7303
  * @param params - Optional query parameters
6861
7304
  */
6862
7305
  trade(params?: {
6863
- timestamp?: string;
7306
+ timestamp?: number | string;
6864
7307
  }): Promise<UserTradeResponse>;
6865
7308
  }
6866
7309
 
@@ -7003,4 +7446,4 @@ declare class TornRateLimitError extends Error {
7003
7446
  constructor(message: string);
7004
7447
  }
7005
7448
 
7006
- export { type AmmoId, type ApiError, type ApiFiltersAttacksRevivesEnum, type ApiKeyAccessTypeEnum, type ApiKeyBalancing, type Attack, type AttackActionEnum, type AttackCode, type AttackFinishingHitEffect, type AttackId, type AttackLog, type AttackLogResponse, type AttackLogSummary, type AttackPlayer, type AttackPlayerSimplified, type AttackSimplified, type AttackingFinishingHitEffects, type AttacksFullResponse, type AttacksResponse, type AuctionHouseListing, type AuctionHouseResponse, type AuctionHouseStackableItem, type AuctionListingId, type AwardCrimesVersionEnum, type BasicProperty, type BasicUser, type Bazaar, type BazaarAdvancedItemSales, type BazaarBargainSales, type BazaarBulkSales, type BazaarDollarSales, type BazaarRecentFavorites, type BazaarResponse, type BazaarResponseSpecialized, type BazaarSpecialized, type BazaarTotalFavorites, type BazaarWeekly, type BazaarWeeklyCustomers, type BazaarWeeklyIncome, type Bounty, type ChainId, type CompanyId, type CompanyTypeId, type CountryEnum, type DirtyBombId, type DiscordId, type EducationId, type EliminationTeamId, type ErrorAccessLevelTooLow, type ErrorApiDisabled, type ErrorApiKeyPaused, type ErrorBackendError, type ErrorCategorySelectionUnavailableForInteractionLogs, type ErrorClosedTemporarily, type ErrorDailyReadLimitReached, type ErrorIncorrectCategory, type ErrorIncorrectId, type ErrorIncorrectIdEntityRelation, type ErrorIncorrectKey, type ErrorIncorrectLogId, type ErrorInvalidStatRequested, type ErrorIpBlocked, type ErrorKeyChangeCooldown, type ErrorKeyEmpty, type ErrorKeyOwnerInFederalJail, type ErrorKeyReadError, type ErrorKeyTemporaryDisabled, type ErrorLogUnavailable, type ErrorMustMigrateToCrimesV2, type ErrorMustMigrateToOrganizedCrimesV2, type ErrorOnlyAvailableInApiV1, type ErrorOnlyAvailableInApiV2, type ErrorOnlyCategoryOrStatsAllowed, type ErrorRaceNotFinished, type ErrorTooManyRequests, type ErrorUnknown, type ErrorWrongFields, type ErrorWrongType, type Faction, type FactionApplication, type FactionApplicationStatusEnum, type FactionApplicationsResponse, type FactionAttackResult, type FactionBalance, type FactionBalanceResponse, type FactionBasic, type FactionBasicResponse, type FactionBranchDetails, type FactionBranchId, type FactionBranchStateEnum, type FactionChain, FactionChainIdContext, type FactionChainReport, type FactionChainReportAttacker, type FactionChainReportAttackerAttacks, type FactionChainReportAttackerRespect, type FactionChainReportBonus, type FactionChainReportDetails, type FactionChainReportResponse, type FactionChainWarfare, type FactionChainsResponse, type FactionContributor, type FactionContributorsResponse, type FactionCrime, type FactionCrimeId, FactionCrimeIdContext, type FactionCrimeItemOutcomeEnum, type FactionCrimeResponse, type FactionCrimeReward, type FactionCrimeRewardItem, type FactionCrimeRewardPayout, type FactionCrimeSlot, type FactionCrimeStatusEnum, type FactionCrimeUser, type FactionCrimeUserItemOutcome, type FactionCrimeUserItemOutcomeEnum, type FactionCrimeUserOutcome, type FactionCrimesResponse, FactionEndpoint, type FactionHofResponse, type FactionHofStats, type FactionHofValues, type FactionId, FactionIdContext, type FactionLookupResponse, type FactionMember, type FactionMembersResponse, type FactionNews, type FactionNewsCategory, type FactionNewsResponse, type FactionOngoingChain, type FactionOngoingChainResponse, type FactionOrganizedCrimePayoutType, type FactionPact, type FactionPosition, type FactionPositionAbilityEnum, type FactionPositionsResponse, type FactionRacketsResponse, type FactionRaidReport, type FactionRaidReportAttacker, type FactionRaidReportFaction, type FactionRaidReportUser, type FactionRaidWar, FactionRaidWarIdContext, type FactionRaidWarParticipant, type FactionRaidWarReportResponse, type FactionRaidWarfare, type FactionRaidWarfareFaction, type FactionRaidsResponse, type FactionRank, type FactionRankEnum, type FactionRankedWar, type FactionRankedWarDetails, FactionRankedWarIdContext, type FactionRankedWarParticipant, type FactionRankedWarReportResponse, type FactionRankedWarResponse, type FactionRankedWarsCategoryEnum, type FactionResponse, type FactionSearch, type FactionSearchLeader, type FactionSearchResponse, type FactionSelectionName, type FactionSlotPositionInfo, type FactionStat, type FactionStatEnum, type FactionStatsResponse, type FactionTerritoriesOwnershipResponse, type FactionTerritoriesResponse, type FactionTerritory, type FactionTerritoryEnum, type FactionTerritoryOwnership, type FactionTerritoryWar, type FactionTerritoryWarFaction, type FactionTerritoryWarFactionWallPlayers, type FactionTerritoryWarFinished, type FactionTerritoryWarFinishedFaction, FactionTerritoryWarIdContext, type FactionTerritoryWarOngoing, type FactionTerritoryWarOngoingFaction, type FactionTerritoryWarParticipant, type FactionTerritoryWarReport, type FactionTerritoryWarReportFaction, type FactionTerritoryWarReportMembers, type FactionTerritoryWarReportResponse, type FactionTerritoryWarResultEnum, type FactionTerritoryWarfare, type FactionTerritoryWarsCategoryEnum, type FactionTerritoryWarsHistoryResponse, type FactionUpgradeDetails, type FactionUpgrades, type FactionUpgradesResponse, type FactionWarfareDirtyBomb, type FactionWarfareDirtyBombPlanter, type FactionWarfareDirtyBombTargetFaction, type FactionWarfareResponse, type FactionWarfareTypeEnum, type FactionWars, type FactionWarsResponse, type ForumCategoriesResponse, ForumCategoryIdsContext, ForumEndpoint, type ForumFeed, type ForumFeedTypeEnum, type ForumId, type ForumLookupResponse, type ForumPoll, type ForumPollVote, type ForumPost, type ForumPostId, type ForumPostsResponse, type ForumResponse, type ForumSelectionName, type ForumSubscribedThread, type ForumSubscribedThreadPostsCount, type ForumThreadAuthor, type ForumThreadBase, type ForumThreadExtended, type ForumThreadId, ForumThreadIdContext, type ForumThreadResponse, type ForumThreadUserExtended, type ForumThreadsResponse, type HofValue, type HofValueFloat, type HofValueString, type HonorId, type HonorRarityEnum, type HonorTypeEnum, type ItemId, type ItemMarket, type ItemMarketItem, type ItemMarketListingItemBonus, type ItemMarketListingItemDetails, type ItemMarketListingItemStats, type ItemMarketListingNonstackable, type ItemMarketListingStackable, type ItemModId, type ItemUid, type JobPositionArmyEnum, type JobPositionCasinoEnum, type JobPositionEducationEnum, type JobPositionGrocerEnum, type JobPositionLawEnum, type JobPositionMedicalEnum, type JobTypeEnum, KeyEndpoint, type KeyInfoAvailableLog, type KeyInfoResponse, type KeyLogResponse, type KeyResponse, type KeySelectionName, type LogCategoryId, type LogId, MarketEndpoint, MarketIdContext, type MarketItemMarketResponse, type MarketLookupResponse, type MarketPropertiesResponse, type MarketPropertyDetails, MarketPropertyTypeIdContext, type MarketRentalDetails, type MarketRentalsResponse, type MarketResponse, type MarketSelectionName, type MarketSpecializedBazaarCategoryEnum, type MedalId, type MedalTypeEnum, type MeritId, type MissionDifficultyEnum, type MissionRewardDetailsAmmo, type MissionRewardDetailsItem, type MissionRewardDetailsUpgrade, type MissionRewardUpgrade, type MissionStatusEnum, type OrganizedCrimeName, PaginatedResponse, type Parameters, type PersonalStatsAttackingExtended, type PersonalStatsAttackingPopular, type PersonalStatsAttackingPublic, type PersonalStatsBattleStats, type PersonalStatsBounties, type PersonalStatsCategoryEnum, type PersonalStatsCommunication, type PersonalStatsCrimes, type PersonalStatsCrimesPopular, type PersonalStatsCrimesV1, type PersonalStatsCrimesV2, type PersonalStatsDrugs, type PersonalStatsFinishingHits, type PersonalStatsHistoricStat, type PersonalStatsHospital, type PersonalStatsHospitalPopular, type PersonalStatsInvestments, type PersonalStatsItems, type PersonalStatsItemsPopular, type PersonalStatsJail, type PersonalStatsJobsExtended, type PersonalStatsJobsPublic, type PersonalStatsMissions, type PersonalStatsNetworthExtended, type PersonalStatsNetworthPublic, type PersonalStatsOther, type PersonalStatsOtherPopular, type PersonalStatsRacing, type PersonalStatsStatName, type PersonalStatsTrading, type PersonalStatsTravel, type PersonalStatsTravelPopular, type ProfileSpouse, PropertyEndpoint, type PropertyId, PropertyIdContext, type PropertyLookupResponse, type PropertyModificationEnum, type PropertyPropertyResponse, type PropertyResponse, type PropertySelectionName, type PropertyStaffEnum, type PropertyTypeId, type Race, type RaceCar, type RaceCarId, type RaceCarUpgrade, type RaceCarUpgradeCategory, type RaceCarUpgradeId, type RaceCarUpgradeSubCategory, type RaceClassEnum, type RaceId, type RaceRecord, type RaceStatusEnum, type RaceTrack, type RaceTrackId, type RacerDetails, type RacingCarUpgradesResponse, type RacingCarsResponse, RacingEndpoint, type RacingLookupResponse, type RacingRaceDetails, type RacingRaceDetailsResponse, RacingRaceIdContext, type RacingRaceTypeEnum, type RacingRacesResponse, type RacingResponse, type RacingSelectionName, RacingTrackIdContext, type RacingTrackRecordsResponse, type RacingTracksResponse, type RaidWarId, type RankedWarId, type RateLimitMode, type Report, type ReportAnonymousBounties, type ReportBase, type ReportCompanyFinancials, type ReportFriendOrFoe, type ReportFriendOrFoeUser, type ReportHistory, type ReportHistoryCompany, type ReportHistoryFaction, type ReportInvestment, type ReportMoney, type ReportMostWanted, type ReportReport, type ReportStats, type ReportStockAnalysis, type ReportTrueLevel, type ReportTypeEnum, type ReportWarrantDetails, type ReportsResponse, type RequestLinks, type RequestMetadata, type RequestMetadataWithLinks, type RequestMetadataWithLinksAndTotal, type Requester, type Revive, type ReviveId, type ReviveSetting, type ReviveSimplified, type RevivesFullResponse, type RevivesResponse, type SelectionCategoryEnum, type StockId, type TerritoryWarId, type TimestampResponse, TornAPI, type TornAPIOptions, TornApiError, type TornBountiesResponse, type TornCalendarActivity, type TornCalendarResponse, type TornCrime, type TornCrimeId, TornCrimeIdContext, type TornCrimesResponse, type TornEducation, type TornEducationCourses, type TornEducationPrerequisites, type TornEducationResponse, type TornEducationRewards, type TornEliminationTeam, type TornEliminationTeamLeader, type TornEliminationTeamPlayer, type TornEliminationTeamPlayersResponse, type TornEliminationTeamsResponse, TornEndpoint, type TornFactionHof, type TornFactionHofCategory, type TornFactionHofResponse, type TornFactionTree, type TornFactionTreeBranch, type TornFactionTreeResponse, type TornHof, type TornHofBasic, type TornHofCategory, type TornHofResponse, type TornHofWithOffenses, type TornHonor, type TornHonorsResponse, TornIdContext, TornIdsContext, type TornInventoryItemType, type TornItem, type TornItemAmmo, type TornItemAmmoResponse, type TornItemAmmoTypeEnum, type TornItemArmorCoverage, type TornItemArmorCoveragePartEnum, type TornItemArmorDetails, type TornItemBaseStats, type TornItemCategory, type TornItemDetails, type TornItemDetailsResponse, type TornItemMods, type TornItemModsResponse, type TornItemTypeEnum, type TornItemWeaponCategoryEnum, type TornItemWeaponDetails, type TornItemWeaponTypeEnum, type TornItemsResponse, type TornLog, type TornLogCategoriesResponse, type TornLogCategory, TornLogCategoryIdContext, type TornLogTypesResponse, type TornLookupResponse, type TornMedal, type TornMedalsResponse, type TornMerit, type TornMeritsResponse, type TornOrganizedCrime, type TornOrganizedCrimePositionId, type TornOrganizedCrimePositionIdDeprecated, type TornOrganizedCrimeRequiredItem, type TornOrganizedCrimeResponse, type TornOrganizedCrimeScope, type TornOrganizedCrimeSlot, type TornOrganizedCrimeSpawn, type TornProperties, type TornRacket, type TornRacketReward, type TornRacketType, TornRateLimitError, type TornResponse, type TornSelectionName, type TornStock, type TornStockDetailed, type TornStockDetailedResponse, type TornStockHistory, TornStockIdContext, type TornStockPerformance, type TornStocksResponse, type TornSubcrime, type TornSubcrimesResponse, type TornTerritoriesNoLinksResponse, type TornTerritoriesResponse, type TornTerritory, type TornTerritoryCoordinates, type TradeCategoryEnum, type TradeId, type TradeItem, type TradeItemCompany, type TradeItemFaction, type TradeItemItem, type TradeItemMoney, type TradeItemNap, type TradeItemProperty, type User, type UserAmmo, type UserAmmoResponse, type UserAmmoType, type UserBar, type UserBars, type UserBarsResponse, type UserBasic, type UserBasicResponse, type UserBattleStatDetail, type UserBattleStatModifierDetail, type UserBattleStatsResponse, type UserBountiesResponse, type UserCalendar, type UserCalendarResponse, type UserCasinoResponse, type UserClothing, type UserCompany, type UserCompanyPoints, type UserCompetitionEasterEggs, type UserCompetitionElimination, type UserCompetitionHalloween, type UserCompetitionResponse, type UserCompetitionRps, type UserCooldownsResponse, type UserCrime, type UserCrimeAttempts, type UserCrimeDetailsBootlegging, type UserCrimeDetailsCardSkimming, type UserCrimeDetailsCracking, type UserCrimeDetailsGraffiti, type UserCrimeDetailsHustling, type UserCrimeDetailsScamming, type UserCrimeDetailsShoplifting, UserCrimeIdContext, type UserCrimeRewardAmmo, type UserCrimeRewardItem, type UserCrimeRewards, type UserCrimeUniques, type UserCrimeUniquesReward, type UserCrimeUniquesRewardAmmo, type UserCrimeUniquesRewardAmmoEnum, type UserCrimeUniquesRewardMoney, type UserCrimesResponse, type UserCurrentEducation, type UserDiscordPathId, type UserDiscordResponse, type UserDonatorStatusEnum, type UserEducation, type UserEducationResponse, UserEndpoint, type UserEnlistedCarsResponse, type UserEquipment, type UserEquipmentResponse, type UserEvent, type UserEventId, type UserEventsResponse, type UserFaction, type UserFactionBalance, type UserFactionBalanceResponse, type UserFactionBasic, type UserFactionResponse, type UserFlyMethodEnum, type UserForumFeedResponse, type UserForumFriendsResponse, type UserForumPostsResponse, type UserForumSubscribedThreadsResponse, type UserForumThreadsResponse, type UserGenderEnum, type UserHofResponse, type UserHofStats, type UserHonor, type UserHonorsResponse, type UserIconId, type UserIconPrivate, type UserIconPublic, type UserIconsResponse, type UserId, UserIdContext, type UserInventory, type UserInventoryItem, type UserInventoryResponse, type UserItemMarkeListingItemDetails, type UserItemMarketListing, type UserItemMarketResponse, type UserJob, type UserJobPointsResponse, type UserJobRanks, type UserJobRanksResponse, type UserJobResponse, type UserLastAction, type UserLastActionStatusEnum, type UserList, type UserListEnum, type UserListResponse, type UserLog, type UserLogId, type UserLogsResponse, type UserLookupResponse, type UserMaritalStatusEnum, type UserMedal, type UserMedalsResponse, type UserMeritUpgrade, type UserMerits, type UserMeritsResponse, type UserMessage, type UserMessageId, type UserMessageTypeEnum, type UserMessagesResponse, type UserMissionsResponse, type UserMoneyResponse, type UserNewEventsResponse, type UserNewMessagesResponse, type UserNotificationsResponse, type UserOrganizedCrimeError, type UserOrganizedCrimeResponse, type UserOrganizedCrimesResponse, type UserPersonalStatsCategory, type UserPersonalStatsFull, type UserPersonalStatsFullPublic, type UserPersonalStatsHistoric, type UserPersonalStatsPopular, type UserPersonalStatsResponse, type UserPlaneImageTypeEnum, type UserProfileResponse, type UserPropertiesResponse, type UserPropertyBasicDetails, type UserPropertyDetails, type UserPropertyDetailsExtended, type UserPropertyDetailsExtendedForRent, type UserPropertyDetailsExtendedForSale, type UserPropertyDetailsExtendedRented, type UserPropertyDetailsExtendedWithRent, type UserPropertyResponse, type UserRaceCarDetails, type UserRaceDetails, type UserRacesResponse, type UserRacingRecordsResponse, type UserRankEnum, type UserRefillsResponse, type UserResponse, type UserRoleEnum, type UserRpsStatus, type UserSelectionName, type UserSkillDetail, type UserSkillSlugEnum, type UserSkillsResponse, type UserStatus, type UserStatusStateEnum, type UserStock, type UserStockTransaction, type UserStocksResponse, type UserSubcrime, type UserTitleEnum, type UserTrade, type UserTradeDetailed, UserTradeIdContext, type UserTradeParticipant, type UserTradeResponse, type UserTradesResponse, type UserTravelResponse, type UserVirus, type UserVirusResponse, type UserWeaponExp, type UserWeaponExpResponse, type UserWorkStatsResponse, type WeaponBonusEnum };
7449
+ export { type AmmoId, type ApiError, type ApiFiltersAttacksRevivesEnum, type ApiKeyAccessTypeEnum, type ApiKeyBalancing, type ApplicationStatusEnum, type Attack, type AttackActionEnum, type AttackCode, type AttackFinishingHitEffect, type AttackId, type AttackLog, type AttackLogResponse, type AttackLogSummary, type AttackPlayer, type AttackPlayerSimplified, type AttackSimplified, type AttackingFinishingHitEffects, type AttacksFullResponse, type AttacksResponse, type AuctionHouseListing, type AuctionHouseListingResponse, type AuctionHouseResponse, type AuctionHouseStackableItem, type AuctionListingId, type AwardCrimesVersionEnum, type BasicProperty, type BasicUser, type Bazaar, type BazaarAdvancedItemSales, type BazaarBargainSales, type BazaarBulkSales, type BazaarDollarSales, type BazaarRecentFavorites, type BazaarResponse, type BazaarResponseSpecialized, type BazaarSpecialized, type BazaarTotalFavorites, type BazaarWeekly, type BazaarWeeklyCustomers, type BazaarWeeklyIncome, type Bounty, type ChainId, type CompaniesResponse, type CompaniesSearchResponse, type CompanyApplication, type CompanyApplicationPlayer, type CompanyApplicationPlayerStats, type CompanyApplicationsResponse, type CompanyCustomers, type CompanyDirector, type CompanyEmployee, type CompanyEmployeeEffectiveness, type CompanyEmployeeExtended, type CompanyEmployeeFull, type CompanyEmployeePosition, type CompanyEmployeeStats, type CompanyEmployees, type CompanyEmployeesResponse, type CompanyEmployeesResponseBasic, CompanyEndpoint, type CompanyId, CompanyIdContext, type CompanyIncome, type CompanyLookupResponse, type CompanyNewsCategory, type CompanyPositionId, type CompanyProfile, type CompanyProfileExtended, type CompanyProfileExtendedResponse, type CompanyProfileResponse, type CompanyProfileResponseMixed, type CompanyResponse, type CompanySearchParameter, type CompanySearchProfile, type CompanySelectionName, type CompanyStaffRoomSizeEnum, type CompanyStockItem, type CompanyStockResponse, type CompanyStorageSizeEnum, type CompanyType, type CompanyTypeId, CompanyTypeIdContext, type CompanyUpgrades, type CountryEnum, type DirtyBombId, type DiscordId, type EducationId, type EliminationTeamId, type ErrorAccessLevelTooLow, type ErrorApiDisabled, type ErrorApiKeyPaused, type ErrorBackendError, type ErrorCategorySelectionUnavailableForInteractionLogs, type ErrorClosedTemporarily, type ErrorDailyReadLimitReached, type ErrorFileDoesNotExist, type ErrorIncorrectCategory, type ErrorIncorrectId, type ErrorIncorrectIdEntityRelation, type ErrorIncorrectKey, type ErrorIncorrectLogId, type ErrorInvalidStatRequested, type ErrorIpBlocked, type ErrorKeyChangeCooldown, type ErrorKeyEmpty, type ErrorKeyOwnerInFederalJail, type ErrorKeyReadError, type ErrorKeyTemporaryDisabled, type ErrorLogUnavailable, type ErrorMustMigrateToCrimesV2, type ErrorMustMigrateToOrganizedCrimesV2, type ErrorOnlyAvailableInApiV1, type ErrorOnlyAvailableInApiV2, type ErrorOnlyCategoryOrStatsAllowed, type ErrorRaceNotFinished, type ErrorTooManyRequests, type ErrorUnknown, type ErrorWrongFields, type ErrorWrongType, type Faction, type FactionApplication, type FactionApplicationsResponse, type FactionAttackResult, type FactionBalance, type FactionBalanceResponse, type FactionBasic, type FactionBasicResponse, type FactionBranchDetails, type FactionBranchId, type FactionBranchStateEnum, type FactionChain, FactionChainIdContext, type FactionChainReport, type FactionChainReportAttacker, type FactionChainReportAttackerAttacks, type FactionChainReportAttackerRespect, type FactionChainReportBonus, type FactionChainReportDetails, type FactionChainReportResponse, type FactionChainWarfare, type FactionChainsResponse, type FactionContributor, type FactionContributorsResponse, type FactionCrime, type FactionCrimeId, FactionCrimeIdContext, type FactionCrimeItemOutcomeEnum, type FactionCrimeResponse, type FactionCrimeReward, type FactionCrimeRewardItem, type FactionCrimeRewardPayout, type FactionCrimeSlot, type FactionCrimeStatusEnum, type FactionCrimeUser, type FactionCrimeUserItemOutcome, type FactionCrimeUserItemOutcomeEnum, type FactionCrimeUserOutcome, type FactionCrimesResponse, FactionEndpoint, type FactionHofResponse, type FactionHofStats, type FactionHofValues, type FactionId, FactionIdContext, type FactionLookupResponse, type FactionMember, type FactionMembersResponse, type FactionNewsCategory, type FactionOngoingChain, type FactionOngoingChainResponse, type FactionOrganizedCrimePayoutType, type FactionPact, type FactionPosition, type FactionPositionAbilityEnum, type FactionPositionsResponse, type FactionRacketsResponse, type FactionRaidReport, type FactionRaidReportAttacker, type FactionRaidReportFaction, type FactionRaidReportUser, type FactionRaidWar, FactionRaidWarIdContext, type FactionRaidWarParticipant, type FactionRaidWarReportResponse, type FactionRaidWarfare, type FactionRaidWarfareFaction, type FactionRaidsResponse, type FactionRank, type FactionRankEnum, type FactionRankedWar, type FactionRankedWarDetails, FactionRankedWarIdContext, type FactionRankedWarParticipant, type FactionRankedWarReportResponse, type FactionRankedWarResponse, type FactionRankedWarsCategoryEnum, type FactionResponse, type FactionSearch, type FactionSearchLeader, type FactionSearchResponse, type FactionSelectionName, type FactionSlotPositionInfo, type FactionStat, type FactionStatEnum, type FactionStatsResponse, type FactionTerritoriesOwnershipResponse, type FactionTerritoriesResponse, type FactionTerritory, type FactionTerritoryEnum, type FactionTerritoryOwnership, type FactionTerritoryWar, type FactionTerritoryWarFaction, type FactionTerritoryWarFactionWallPlayers, type FactionTerritoryWarFinished, type FactionTerritoryWarFinishedFaction, FactionTerritoryWarIdContext, type FactionTerritoryWarOngoing, type FactionTerritoryWarOngoingFaction, type FactionTerritoryWarParticipant, type FactionTerritoryWarReport, type FactionTerritoryWarReportFaction, type FactionTerritoryWarReportMembers, type FactionTerritoryWarReportResponse, type FactionTerritoryWarResultEnum, type FactionTerritoryWarfare, type FactionTerritoryWarsCategoryEnum, type FactionTerritoryWarsHistoryResponse, type FactionUpgradeDetails, type FactionUpgrades, type FactionUpgradesResponse, type FactionWarfareDirtyBomb, type FactionWarfareDirtyBombPlanter, type FactionWarfareDirtyBombTargetFaction, type FactionWarfareResponse, type FactionWarfareTypeEnum, type FactionWars, type FactionWarsResponse, type ForumCategoriesResponse, ForumCategoryIdsContext, ForumEndpoint, type ForumFeed, type ForumFeedTypeEnum, type ForumId, type ForumLookupResponse, type ForumPoll, type ForumPollVote, type ForumPost, type ForumPostId, type ForumPostsResponse, type ForumResponse, type ForumSelectionName, type ForumSubscribedThread, type ForumSubscribedThreadPostsCount, type ForumThreadAuthor, type ForumThreadBase, type ForumThreadExtended, type ForumThreadId, ForumThreadIdContext, type ForumThreadResponse, type ForumThreadUserExtended, type ForumThreadsResponse, type HofValue, type HofValueFloat, type HofValueString, type HonorId, type HonorRarityEnum, type HonorTypeEnum, type ItemId, type ItemMarket, type ItemMarketItem, type ItemMarketListingItemBonus, type ItemMarketListingItemDetails, type ItemMarketListingItemStats, type ItemMarketListingNonstackable, type ItemMarketListingStackable, type ItemModId, type ItemUid, type JobPositionArmyEnum, type JobPositionCasinoEnum, type JobPositionEducationEnum, type JobPositionGrocerEnum, type JobPositionLawEnum, type JobPositionMedicalEnum, type JobTypeEnum, KeyEndpoint, type KeyInfoAvailableLog, type KeyInfoResponse, type KeyLogResponse, type KeyResponse, type KeySelectionName, type LogCategoryId, type LogId, MarketEndpoint, MarketIdContext, type MarketItemMarketResponse, type MarketLookupResponse, type MarketPropertiesResponse, type MarketPropertyDetails, MarketPropertyTypeIdContext, type MarketRentalDetails, type MarketRentalsResponse, type MarketResponse, type MarketSelectionName, type MarketSpecializedBazaarCategoryEnum, type MedalId, type MedalTypeEnum, type MeritId, type MissionDifficultyEnum, type MissionRewardDetailsAmmo, type MissionRewardDetailsItem, type MissionRewardDetailsUpgrade, type MissionRewardUpgrade, type MissionStatusEnum, type News, type NewsResponse, type OrganizedCrimeName, PaginatedResponse, type Parameters, type PersonalStatsAttackingExtended, type PersonalStatsAttackingPopular, type PersonalStatsAttackingPublic, type PersonalStatsBattleStats, type PersonalStatsBounties, type PersonalStatsCategoryEnum, type PersonalStatsCommunication, type PersonalStatsCrimes, type PersonalStatsCrimesPopular, type PersonalStatsCrimesV1, type PersonalStatsCrimesV2, type PersonalStatsDrugs, type PersonalStatsFinishingHits, type PersonalStatsHistoricStat, type PersonalStatsHospital, type PersonalStatsHospitalPopular, type PersonalStatsInvestments, type PersonalStatsItems, type PersonalStatsItemsPopular, type PersonalStatsJail, type PersonalStatsJobsExtended, type PersonalStatsJobsPublic, type PersonalStatsMissions, type PersonalStatsNetworthExtended, type PersonalStatsNetworthPublic, type PersonalStatsOther, type PersonalStatsOtherPopular, type PersonalStatsRacing, type PersonalStatsStatName, type PersonalStatsTrading, type PersonalStatsTravel, type PersonalStatsTravelPopular, type ProfileSpouse, PropertyEndpoint, type PropertyId, PropertyIdContext, type PropertyLookupResponse, type PropertyModificationEnum, type PropertyPropertyResponse, type PropertyResponse, type PropertySelectionName, type PropertyStaffEnum, type PropertyTypeId, type Race, type RaceCar, type RaceCarId, type RaceCarUpgrade, type RaceCarUpgradeCategory, type RaceCarUpgradeId, type RaceCarUpgradeSubCategory, type RaceClassEnum, type RaceId, type RaceRecord, type RaceStatusEnum, type RaceTrack, type RaceTrackId, type RacerDetails, type RacingCarUpgradesResponse, type RacingCarsResponse, RacingEndpoint, type RacingLookupResponse, type RacingRaceDetails, type RacingRaceDetailsResponse, RacingRaceIdContext, type RacingRaceTypeEnum, type RacingRacesResponse, type RacingResponse, type RacingSelectionName, RacingTrackIdContext, type RacingTrackRecordsResponse, type RacingTracksResponse, type RaidWarId, type RankedWarId, type RateLimitMode, type Report, type ReportAnonymousBounties, type ReportBase, type ReportCompanyFinancials, type ReportFriendOrFoe, type ReportFriendOrFoeUser, type ReportHistory, type ReportHistoryCompany, type ReportHistoryFaction, type ReportInvestment, type ReportMoney, type ReportMostWanted, type ReportReport, type ReportStats, type ReportStockAnalysis, type ReportTrueLevel, type ReportTypeEnum, type ReportWarrantDetails, type ReportsResponse, type RequestLinks, type RequestMetadata, type RequestMetadataWithLinks, type RequestMetadataWithLinksAndTotal, type Requester, type Revive, type ReviveId, type ReviveSetting, type ReviveSimplified, type RevivesFullResponse, type RevivesResponse, type SelectionCategoryEnum, type StockId, type TerritoryWarId, type TimestampResponse, TornAPI, type TornAPIOptions, TornApiError, type TornBountiesResponse, type TornCalendarActivity, type TornCalendarResponse, type TornCrime, type TornCrimeId, TornCrimeIdContext, type TornCrimesResponse, type TornEducation, type TornEducationCourses, type TornEducationPrerequisites, type TornEducationResponse, type TornEducationRewards, type TornEliminationTeam, type TornEliminationTeamLeader, type TornEliminationTeamPlayer, type TornEliminationTeamPlayersResponse, type TornEliminationTeamsResponse, TornEndpoint, type TornFactionHof, type TornFactionHofCategory, type TornFactionHofResponse, type TornFactionTree, type TornFactionTreeBranch, type TornFactionTreeResponse, type TornHof, type TornHofBasic, type TornHofCategory, type TornHofResponse, type TornHofWithOffenses, type TornHonor, type TornHonorsResponse, TornIdContext, TornIdsContext, type TornInventoryItemType, type TornItem, type TornItemAmmo, type TornItemAmmoResponse, type TornItemAmmoTypeEnum, type TornItemArmorCoverage, type TornItemArmorCoveragePartEnum, type TornItemArmorDetails, type TornItemBaseStats, type TornItemCategory, type TornItemDetails, type TornItemDetailsResponse, type TornItemMods, type TornItemModsResponse, type TornItemTypeEnum, type TornItemWeaponCategoryEnum, type TornItemWeaponDetails, type TornItemWeaponTypeEnum, type TornItemsResponse, type TornLog, type TornLogCategoriesResponse, type TornLogCategory, TornLogCategoryIdContext, type TornLogTypesResponse, type TornLookupResponse, type TornMedal, type TornMedalsResponse, type TornMerit, type TornMeritsResponse, type TornOrganizedCrime, type TornOrganizedCrimePositionId, type TornOrganizedCrimePositionIdDeprecated, type TornOrganizedCrimeRequiredItem, type TornOrganizedCrimeResponse, type TornOrganizedCrimeScope, type TornOrganizedCrimeSlot, type TornOrganizedCrimeSpawn, type TornProperties, type TornRacket, type TornRacketReward, type TornRacketType, TornRateLimitError, type TornResponse, type TornSelectionName, type TornStock, type TornStockDetailed, type TornStockDetailedResponse, type TornStockHistory, TornStockIdContext, type TornStockPerformance, type TornStocksResponse, type TornSubcrime, type TornSubcrimesResponse, type TornTerritoriesNoLinksResponse, type TornTerritoriesResponse, type TornTerritory, type TornTerritoryCoordinates, type TradeCategoryEnum, type TradeId, type TradeItem, type TradeItemCompany, type TradeItemFaction, type TradeItemItem, type TradeItemMoney, type TradeItemNap, type TradeItemProperty, type User, type UserAmmo, type UserAmmoResponse, type UserAmmoType, type UserBar, type UserBars, type UserBarsResponse, type UserBasic, type UserBasicResponse, type UserBattleStatDetail, type UserBattleStatModifierDetail, type UserBattleStatsResponse, type UserBountiesResponse, type UserCalendar, type UserCalendarResponse, type UserCasinoResponse, type UserClothing, type UserCompany, type UserCompanyPoints, type UserCompetitionEasterEggs, type UserCompetitionElimination, type UserCompetitionHalloween, type UserCompetitionResponse, type UserCompetitionRps, type UserCooldownsResponse, type UserCrime, type UserCrimeAttempts, type UserCrimeDetailsBootlegging, type UserCrimeDetailsCardSkimming, type UserCrimeDetailsCracking, type UserCrimeDetailsGraffiti, type UserCrimeDetailsHustling, type UserCrimeDetailsScamming, type UserCrimeDetailsShoplifting, UserCrimeIdContext, type UserCrimeRewardAmmo, type UserCrimeRewardItem, type UserCrimeRewards, type UserCrimeUniques, type UserCrimeUniquesReward, type UserCrimeUniquesRewardAmmo, type UserCrimeUniquesRewardAmmoEnum, type UserCrimeUniquesRewardMoney, type UserCrimesResponse, type UserCurrentEducation, type UserDiscordPathId, type UserDiscordResponse, type UserDonatorStatusEnum, type UserEducation, type UserEducationResponse, UserEndpoint, type UserEnlistedCarsResponse, type UserEquipment, type UserEquipmentItemMod, type UserEquipmentResponse, type UserEvent, type UserEventId, type UserEventsResponse, type UserFaction, type UserFactionBalance, type UserFactionBalanceResponse, type UserFactionBasic, type UserFactionResponse, type UserFlyMethodEnum, type UserForumFeedResponse, type UserForumFriendsResponse, type UserForumPostsResponse, type UserForumSubscribedThreadsResponse, type UserForumThreadsResponse, type UserGenderEnum, type UserHofResponse, type UserHofStats, type UserHonor, type UserHonorsResponse, type UserIconId, type UserIconPrivate, type UserIconPublic, type UserIconsResponse, type UserId, UserIdContext, type UserInventory, type UserInventoryItem, type UserInventoryResponse, type UserItemMarkeListingItemDetails, type UserItemMarketListing, type UserItemMarketResponse, type UserItemMod, type UserItemModsResponse, type UserJob, type UserJobPointsResponse, type UserJobRanks, type UserJobRanksResponse, type UserJobResponse, type UserLastAction, type UserLastActionStatusEnum, type UserList, type UserListEnum, type UserListResponse, type UserLog, type UserLogId, type UserLogsResponse, type UserLookupResponse, type UserMaritalStatusEnum, type UserMedal, type UserMedalsResponse, type UserMeritUpgrade, type UserMerits, type UserMeritsResponse, type UserMessage, type UserMessageId, type UserMessageTypeEnum, type UserMessagesResponse, type UserMissionsResponse, type UserMoneyResponse, type UserNewEventsResponse, type UserNewMessagesResponse, type UserNotificationsResponse, type UserOrganizedCrimeError, type UserOrganizedCrimeResponse, type UserOrganizedCrimesResponse, type UserPersonalStatsCategory, type UserPersonalStatsFull, type UserPersonalStatsFullPublic, type UserPersonalStatsHistoric, type UserPersonalStatsPopular, type UserPersonalStatsResponse, type UserPlaneImageTypeEnum, type UserProfileResponse, type UserPropertiesResponse, type UserPropertyBasicDetails, type UserPropertyDetails, type UserPropertyDetailsExtended, type UserPropertyDetailsExtendedForRent, type UserPropertyDetailsExtendedForSale, type UserPropertyDetailsExtendedRented, type UserPropertyDetailsExtendedWithRent, type UserPropertyResponse, type UserRaceCarDetails, type UserRaceDetails, type UserRacesResponse, type UserRacingRecordsResponse, type UserRankEnum, type UserRefillsResponse, type UserResponse, type UserRoleEnum, type UserRpsStatus, type UserSelectionName, type UserSkillDetail, type UserSkillSlugEnum, type UserSkillsResponse, type UserStatus, type UserStatusStateEnum, type UserStock, type UserStockTransaction, type UserStocksResponse, type UserSubcrime, type UserTitleEnum, type UserTrade, type UserTradeDetailed, UserTradeIdContext, type UserTradeParticipant, type UserTradeResponse, type UserTradesResponse, type UserTravelResponse, type UserVirus, type UserVirusResponse, type UserWeaponExp, type UserWeaponExpResponse, type UserWorkStatsResponse, type WeaponBonusEnum };