From b0ef87d15dba47638401a1b7bc6ce06e22f0e567 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 2 Jan 2026 17:12:27 +0000 Subject: [PATCH 1/3] Initial plan From 87aad8625be7de3bc1dcde29c8e493a7fc85ce1b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 2 Jan 2026 17:18:59 +0000 Subject: [PATCH 2/3] Fix code review issues: remove .bak file, fix lint errors, add documentation Co-authored-by: drewsonne <233054+drewsonne@users.noreply.github.com> --- src/__tests__/correlation-validation.spec.ts | 33 +- src/__tests__/full-date.spec.ts | 11 +- src/__tests__/lc/western/western.spec.ts | 3 +- src/__tests__/maya_date_correlations.json.bak | 3647 ----------------- 4 files changed, 32 insertions(+), 3662 deletions(-) delete mode 100644 src/__tests__/maya_date_correlations.json.bak diff --git a/src/__tests__/correlation-validation.spec.ts b/src/__tests__/correlation-validation.spec.ts index 35546ce9..7b2495b3 100644 --- a/src/__tests__/correlation-validation.spec.ts +++ b/src/__tests__/correlation-validation.spec.ts @@ -7,13 +7,32 @@ import { getDirectSourceData, findCorrelation, getUniqueLongCounts, - getAvailableCorrelations, - CorrelationData + getAvailableCorrelations } from './test-data-loader'; +import type { CorrelationData } from './test-data-loader'; import LongCountFactory from '../factory/long-count'; import FullDateFactory from '../factory/full-date'; import {getCorrelationConstant} from '../lc/correlation-constant'; +/** + * These tests validate Maya Long Count ↔ western date correlations using the JSON + * fixture data and the conversion factories. In particular, they exercise logic + * affected by the "winal radix correction" mentioned in the PR title. + * + * The winal radix correction refers to how 20‑day winals are handled when mapping + * Long Count positions to a fixed day count (JDN) and then to Gregorian/Julian + * calendar dates. Historically, small off‑by‑one errors in this radix handling + * can shift whole correlation constants by one or more days. + * + * By: + * - loading the canonical correlation dataset, + * - validating the GMT correlation constant (584285) against direct historical + * source entries, and + * - comparing western dates produced under neighboring correlation constants + * (e.g. 584283–584286), + * these tests ensure that the current implementation of the winal radix, and the + * resulting correlation constants, produce stable and internally consistent dates. + */ describe('Maya Date Correlations from JSON Dataset', () => { describe('Data Loading and Structure', () => { @@ -117,7 +136,7 @@ describe('Maya Date Correlations from JSON Dataset', () => { // Test that Calendar Round actually parses - this will fail if spellings don't match const fullDateString = `${data.calendar_round} ${data.maya_long_count}`; const fullDate = factory.parse(fullDateString); - expect(fullDate).to.not.be.null; + expect(fullDate).to.not.equal(null); } }); }); @@ -136,7 +155,7 @@ describe('Maya Date Correlations from JSON Dataset', () => { it('should group correlations by event for historical analysis', () => { const data = loadCorrelationData(); - const eventGroups: { [event: string]: any[] } = {}; + const eventGroups: Record = {}; data.data.forEach(item => { if (!eventGroups[item.event]) { @@ -198,12 +217,12 @@ describe('Maya Date Correlations from JSON Dataset', () => { describe('Helper Function Tests', () => { it('should filter data by correlation constant correctly', () => { const gmtData = getDataByCorrelation(584285); - expect(gmtData.every(item => item.correlation_jdn === 584285)).to.be.true; + expect(gmtData.every(item => item.correlation_jdn === 584285)).to.equal(true); }); it('should get GMT correlation data', () => { const gmtData = getGMTCorrelationData(); - expect(gmtData.every(item => item.correlation_jdn === 584285)).to.be.true; + expect(gmtData.every(item => item.correlation_jdn === 584285)).to.equal(true); }); it('should find specific correlations', () => { @@ -214,7 +233,7 @@ describe('Maya Date Correlations from JSON Dataset', () => { correlation_jdn: 584285 }); - expect(result).to.not.be.undefined; + expect(result).to.not.equal(undefined); if (result) { expect(result.maya_long_count).to.equal(firstLongCount); expect(result.western_calendar).to.equal('gregorian'); diff --git a/src/__tests__/full-date.spec.ts b/src/__tests__/full-date.spec.ts index 6dcce0cc..597993a3 100644 --- a/src/__tests__/full-date.spec.ts +++ b/src/__tests__/full-date.spec.ts @@ -4,7 +4,6 @@ import 'mocha' import {expect} from 'chai' import { getGMTCorrelationData, - findCorrelation, CorrelationData } from "./test-data-loader"; @@ -68,9 +67,9 @@ it('isPartial should detect wildcards', () => { const fd4 = new FullDateFactory().parse('4 Ajaw * Kumk\'u 9.17.0.0.*'); expect(fd1.isPartial()).to.be.false; - expect(fd2.isPartial()).to.be.true; - expect(fd3.isPartial()).to.be.true; - expect(fd4.isPartial()).to.be.true; + expect(fd2.isPartial()).to.equal(true); + expect(fd3.isPartial()).to.equal(true); + expect(fd4.isPartial()).to.equal(true); }); describe('Historical Full Date Validation using JSON Dataset', () => { @@ -86,7 +85,7 @@ describe('Historical Full Date Validation using JSON Dataset', () => { // Parse should succeed - if it fails, the spellings don't match const fullDate = new FullDateFactory().parse(fullDateString); - expect(fullDate).to.not.be.null; + expect(fullDate).to.not.equal(null); // Compare Long Count string directly - normalize spacing const actualLC = fullDate.lc.toString().trim().replace(/\s+/g, '.').replace(/\.+/g, '.'); expect(actualLC).to.equal(correlation.maya_long_count); @@ -104,7 +103,7 @@ describe('Historical Full Date Validation using JSON Dataset', () => { const lcString = correlation.maya_long_count; const lc = new LongCountFactory().parse(lcString); - expect(lc).to.not.be.null; + expect(lc).to.not.equal(null); // Normalize for comparison - the toString() adds spaces const actualLC = lc.toString().trim().replace(/\s+/g, '.'); // Extract just the numeric parts for comparison diff --git a/src/__tests__/lc/western/western.spec.ts b/src/__tests__/lc/western/western.spec.ts index 691ef80a..3a0e69ae 100644 --- a/src/__tests__/lc/western/western.spec.ts +++ b/src/__tests__/lc/western/western.spec.ts @@ -6,7 +6,6 @@ import GregorianFactory from "../../../factory/gregorian"; import { getGMTCorrelationData, getDirectSourceData, - findCorrelation, CorrelationData } from "../../test-data-loader"; @@ -132,7 +131,7 @@ describe('JSON Dataset Correlation Tests', () => { const lc = lcFactory.parse(correlation.maya_long_count).setCorrelationConstant(corr); // Validate the Long Count parses correctly - expect(lc).to.not.be.null; + expect(lc).to.not.equal(null); // This is a basic test - you may need to adjust date format comparison // based on how your library formats dates vs the JSON ISO format diff --git a/src/__tests__/maya_date_correlations.json.bak b/src/__tests__/maya_date_correlations.json.bak deleted file mode 100644 index 5e5fdd14..00000000 --- a/src/__tests__/maya_date_correlations.json.bak +++ /dev/null @@ -1,3647 +0,0 @@ -{ - "metadata": { - "generated_at": "2026-01-02", - "description": "Maya Long Count ↔ Western date correlations. For each sourced Maya LC from Mesoweb's 'Table of Palenque Rulers' (Modified GMT 584285, Gregorian), this file includes computed western dates for several common correlation constants (584283–584286) in both proleptic Gregorian and proleptic Julian calendars.", - "calendars": { - "gregorian": "Proleptic Gregorian calendar (extended backwards).", - "julian": "Proleptic Julian calendar (extended backwards)." - }, - "correlation_constants": [ - 584283, - 584284, - 584285, - 584286 - ], - "sources": { - "mesoweb_palenque_rulers_table": { - "id": "mesoweb_palenque_rulers_table", - "title": "Table of Palenque Rulers", - "author": "Joel Skidmore", - "publisher": "Mesoweb", - "url": "https://www.mesoweb.com/palenque/resources/rulers/rulers_table.html", - "notes": "Modern dates in the table are Gregorian and correlated using Modified GMT 584285 (as stated on the page)." - } - }, - "fields": { - "maya_long_count": "Long Count as B.K.T.U.K", - "event": "born|acceded|died (as indicated in the source table)", - "calendar_round": "Calendar Round text from the source table", - "correlation_jdn": "Julian Day Number assigned to 0.0.0.0.0 under the given correlation constant", - "western_calendar": "gregorian|julian", - "western_date": "ISO-8601 date in the specified calendar (astronomical year numbering for BCE)", - "direct_in_source": "true only for (correlation_jdn=584285, western_calendar=gregorian) which is explicitly given by the source", - "source_western_date": "the source's Gregorian date (ISO) when direct_in_source=true, else null", - "source": "source id" - } - }, - "data": [ - { - "maya_long_count": "8.18.0.13.6", - "event": "born", - "calendar_round": "5 Kimi 14 K'ayab", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0397-03-29", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.18.0.13.6", - "event": "born", - "calendar_round": "5 Kimi 14 K'ayab", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0397-03-28", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.18.0.13.6", - "event": "born", - "calendar_round": "5 Kimi 14 K'ayab", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0397-03-30", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.18.0.13.6", - "event": "born", - "calendar_round": "5 Kimi 14 K'ayab", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0397-03-29", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.18.0.13.6", - "event": "born", - "calendar_round": "5 Kimi 14 K'ayab", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0397-03-31", - "direct_in_source": true, - "source_western_date": "0397-03-31", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.18.0.13.6", - "event": "born", - "calendar_round": "5 Kimi 14 K'ayab", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0397-03-30", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.18.0.13.6", - "event": "born", - "calendar_round": "5 Kimi 14 K'ayab", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0397-04-01", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.18.0.13.6", - "event": "born", - "calendar_round": "5 Kimi 14 K'ayab", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0397-03-31", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.15.3.4", - "event": "acceded", - "calendar_round": "1 K'an 2 K'ayab", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0431-03-09", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.15.3.4", - "event": "acceded", - "calendar_round": "1 K'an 2 K'ayab", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0431-03-08", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.15.3.4", - "event": "acceded", - "calendar_round": "1 K'an 2 K'ayab", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0431-03-10", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.15.3.4", - "event": "acceded", - "calendar_round": "1 K'an 2 K'ayab", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0431-03-09", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.15.3.4", - "event": "acceded", - "calendar_round": "1 K'an 2 K'ayab", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0431-03-11", - "direct_in_source": true, - "source_western_date": "0431-03-11", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.15.3.4", - "event": "acceded", - "calendar_round": "1 K'an 2 K'ayab", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0431-03-10", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.15.3.4", - "event": "acceded", - "calendar_round": "1 K'an 2 K'ayab", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0431-03-12", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.15.3.4", - "event": "acceded", - "calendar_round": "1 K'an 2 K'ayab", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0431-03-11", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.6.8.8", - "event": "born", - "calendar_round": "11 Lamat 6 Xul", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0422-08-07", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.6.8.8", - "event": "born", - "calendar_round": "11 Lamat 6 Xul", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0422-08-06", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.6.8.8", - "event": "born", - "calendar_round": "11 Lamat 6 Xul", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0422-08-08", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.6.8.8", - "event": "born", - "calendar_round": "11 Lamat 6 Xul", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0422-08-07", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.6.8.8", - "event": "born", - "calendar_round": "11 Lamat 6 Xul", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0422-08-09", - "direct_in_source": true, - "source_western_date": "0422-08-09", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.6.8.8", - "event": "born", - "calendar_round": "11 Lamat 6 Xul", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0422-08-08", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.6.8.8", - "event": "born", - "calendar_round": "11 Lamat 6 Xul", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0422-08-10", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.6.8.8", - "event": "born", - "calendar_round": "11 Lamat 6 Xul", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0422-08-09", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.19.11.17", - "event": "acceded", - "calendar_round": "2 Kaban 10 Xul", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0435-08-08", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.19.11.17", - "event": "acceded", - "calendar_round": "2 Kaban 10 Xul", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0435-08-07", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.19.11.17", - "event": "acceded", - "calendar_round": "2 Kaban 10 Xul", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0435-08-09", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.19.11.17", - "event": "acceded", - "calendar_round": "2 Kaban 10 Xul", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0435-08-08", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.19.11.17", - "event": "acceded", - "calendar_round": "2 Kaban 10 Xul", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0435-08-10", - "direct_in_source": true, - "source_western_date": "0435-08-10", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.19.11.17", - "event": "acceded", - "calendar_round": "2 Kaban 10 Xul", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0435-08-09", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.19.11.17", - "event": "acceded", - "calendar_round": "2 Kaban 10 Xul", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0435-08-11", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "8.19.19.11.17", - "event": "acceded", - "calendar_round": "2 Kaban 10 Xul", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0435-08-10", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.1.4.5.0", - "event": "born", - "calendar_round": "12 Ajaw 13 Sak", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0459-11-13", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.1.4.5.0", - "event": "born", - "calendar_round": "12 Ajaw 13 Sak", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0459-11-12", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.1.4.5.0", - "event": "born", - "calendar_round": "12 Ajaw 13 Sak", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0459-11-14", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.1.4.5.0", - "event": "born", - "calendar_round": "12 Ajaw 13 Sak", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0459-11-13", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.1.4.5.0", - "event": "born", - "calendar_round": "12 Ajaw 13 Sak", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0459-11-15", - "direct_in_source": true, - "source_western_date": "0459-11-15", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.1.4.5.0", - "event": "born", - "calendar_round": "12 Ajaw 13 Sak", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0459-11-14", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.1.4.5.0", - "event": "born", - "calendar_round": "12 Ajaw 13 Sak", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0459-11-16", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.1.4.5.0", - "event": "born", - "calendar_round": "12 Ajaw 13 Sak", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0459-11-15", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.2.12.6.18", - "event": "acceded", - "calendar_round": "3 Etz'nab' 11 Xul", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0487-07-27", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.2.12.6.18", - "event": "acceded", - "calendar_round": "3 Etz'nab' 11 Xul", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0487-07-26", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.2.12.6.18", - "event": "acceded", - "calendar_round": "3 Etz'nab' 11 Xul", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0487-07-28", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.2.12.6.18", - "event": "acceded", - "calendar_round": "3 Etz'nab' 11 Xul", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0487-07-27", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.2.12.6.18", - "event": "acceded", - "calendar_round": "3 Etz'nab' 11 Xul", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0487-07-29", - "direct_in_source": true, - "source_western_date": "0487-07-29", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.2.12.6.18", - "event": "acceded", - "calendar_round": "3 Etz'nab' 11 Xul", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0487-07-28", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.2.12.6.18", - "event": "acceded", - "calendar_round": "3 Etz'nab' 11 Xul", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0487-07-30", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.2.12.6.18", - "event": "acceded", - "calendar_round": "3 Etz'nab' 11 Xul", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0487-07-29", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.1.10.0.0", - "event": "born", - "calendar_round": "5 Ajaw 3 Sek", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0465-07-04", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.1.10.0.0", - "event": "born", - "calendar_round": "5 Ajaw 3 Sek", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0465-07-03", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.1.10.0.0", - "event": "born", - "calendar_round": "5 Ajaw 3 Sek", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0465-07-05", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.1.10.0.0", - "event": "born", - "calendar_round": "5 Ajaw 3 Sek", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0465-07-04", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.1.10.0.0", - "event": "born", - "calendar_round": "5 Ajaw 3 Sek", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0465-07-06", - "direct_in_source": true, - "source_western_date": "0465-07-06", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.1.10.0.0", - "event": "born", - "calendar_round": "5 Ajaw 3 Sek", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0465-07-05", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.1.10.0.0", - "event": "born", - "calendar_round": "5 Ajaw 3 Sek", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0465-07-07", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.1.10.0.0", - "event": "born", - "calendar_round": "5 Ajaw 3 Sek", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0465-07-06", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.3.6.7.17", - "event": "acceded", - "calendar_round": "5 Kaban 0 Sotz'", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0501-06-03", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.3.6.7.17", - "event": "acceded", - "calendar_round": "5 Kaban 0 Sotz'", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0501-06-01", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.3.6.7.17", - "event": "acceded", - "calendar_round": "5 Kaban 0 Sotz'", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0501-06-04", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.3.6.7.17", - "event": "acceded", - "calendar_round": "5 Kaban 0 Sotz'", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0501-06-02", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.3.6.7.17", - "event": "acceded", - "calendar_round": "5 Kaban 0 Sotz'", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0501-06-05", - "direct_in_source": true, - "source_western_date": "0501-06-05", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.3.6.7.17", - "event": "acceded", - "calendar_round": "5 Kaban 0 Sotz'", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0501-06-03", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.3.6.7.17", - "event": "acceded", - "calendar_round": "5 Kaban 0 Sotz'", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0501-06-06", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.3.6.7.17", - "event": "acceded", - "calendar_round": "5 Kaban 0 Sotz'", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0501-06-04", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.10.4.17", - "event": "died", - "calendar_round": "5 Kaban 5 Mak", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0524-11-29", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.10.4.17", - "event": "died", - "calendar_round": "5 Kaban 5 Mak", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0524-11-27", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.10.4.17", - "event": "died", - "calendar_round": "5 Kaban 5 Mak", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0524-11-30", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.10.4.17", - "event": "died", - "calendar_round": "5 Kaban 5 Mak", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0524-11-28", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.10.4.17", - "event": "died", - "calendar_round": "5 Kaban 5 Mak", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0524-12-01", - "direct_in_source": true, - "source_western_date": "0524-12-01", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.10.4.17", - "event": "died", - "calendar_round": "5 Kaban 5 Mak", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0524-11-29", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.10.4.17", - "event": "died", - "calendar_round": "5 Kaban 5 Mak", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0524-12-02", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.10.4.17", - "event": "died", - "calendar_round": "5 Kaban 5 Mak", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0524-11-30", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.2.15.3.8", - "event": "born", - "calendar_round": "12 Lamat 6 Wo", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0490-05-02", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.2.15.3.8", - "event": "born", - "calendar_round": "12 Lamat 6 Wo", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0490-05-01", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.2.15.3.8", - "event": "born", - "calendar_round": "12 Lamat 6 Wo", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0490-05-03", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.2.15.3.8", - "event": "born", - "calendar_round": "12 Lamat 6 Wo", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0490-05-02", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.2.15.3.8", - "event": "born", - "calendar_round": "12 Lamat 6 Wo", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0490-05-04", - "direct_in_source": true, - "source_western_date": "0490-05-04", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.2.15.3.8", - "event": "born", - "calendar_round": "12 Lamat 6 Wo", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0490-05-03", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.2.15.3.8", - "event": "born", - "calendar_round": "12 Lamat 6 Wo", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0490-05-05", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.2.15.3.8", - "event": "born", - "calendar_round": "12 Lamat 6 Wo", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0490-05-04", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.14.10.4", - "event": "acceded", - "calendar_round": "5 K'an 12 K'ayab", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0529-02-23", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.14.10.4", - "event": "acceded", - "calendar_round": "5 K'an 12 K'ayab", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0529-02-21", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.14.10.4", - "event": "acceded", - "calendar_round": "5 K'an 12 K'ayab", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0529-02-24", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.14.10.4", - "event": "acceded", - "calendar_round": "5 K'an 12 K'ayab", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0529-02-22", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.14.10.4", - "event": "acceded", - "calendar_round": "5 K'an 12 K'ayab", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0529-02-25", - "direct_in_source": true, - "source_western_date": "0529-02-25", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.14.10.4", - "event": "acceded", - "calendar_round": "5 K'an 12 K'ayab", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0529-02-23", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.14.10.4", - "event": "acceded", - "calendar_round": "5 K'an 12 K'ayab", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0529-02-26", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.14.10.4", - "event": "acceded", - "calendar_round": "5 K'an 12 K'ayab", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0529-02-24", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.11.0.16", - "event": "died", - "calendar_round": "7 Kib' 4 K'ayab", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0565-02-06", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.11.0.16", - "event": "died", - "calendar_round": "7 Kib' 4 K'ayab", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0565-02-04", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.11.0.16", - "event": "died", - "calendar_round": "7 Kib' 4 K'ayab", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0565-02-07", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.11.0.16", - "event": "died", - "calendar_round": "7 Kib' 4 K'ayab", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0565-02-05", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.11.0.16", - "event": "died", - "calendar_round": "7 Kib' 4 K'ayab", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0565-02-08", - "direct_in_source": true, - "source_western_date": "0565-02-08", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.11.0.16", - "event": "died", - "calendar_round": "7 Kib' 4 K'ayab", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0565-02-06", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.11.0.16", - "event": "died", - "calendar_round": "7 Kib' 4 K'ayab", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0565-02-09", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.11.0.16", - "event": "died", - "calendar_round": "7 Kib' 4 K'ayab", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0565-02-07", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.9.0.4", - "event": "born", - "calendar_round": "7 K'an 17 Mol", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0523-09-03", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.9.0.4", - "event": "born", - "calendar_round": "7 K'an 17 Mol", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0523-09-01", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.9.0.4", - "event": "born", - "calendar_round": "7 K'an 17 Mol", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0523-09-04", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.9.0.4", - "event": "born", - "calendar_round": "7 K'an 17 Mol", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0523-09-02", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.9.0.4", - "event": "born", - "calendar_round": "7 K'an 17 Mol", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0523-09-05", - "direct_in_source": true, - "source_western_date": "0523-09-05", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.9.0.4", - "event": "born", - "calendar_round": "7 K'an 17 Mol", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0523-09-03", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.9.0.4", - "event": "born", - "calendar_round": "7 K'an 17 Mol", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0523-09-06", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.9.0.4", - "event": "born", - "calendar_round": "7 K'an 17 Mol", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0523-09-04", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.11.5.1", - "event": "acceded", - "calendar_round": "1 Imix 4 Sip", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0565-05-02", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.11.5.1", - "event": "acceded", - "calendar_round": "1 Imix 4 Sip", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0565-04-30", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.11.5.1", - "event": "acceded", - "calendar_round": "1 Imix 4 Sip", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0565-05-03", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.11.5.1", - "event": "acceded", - "calendar_round": "1 Imix 4 Sip", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0565-05-01", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.11.5.1", - "event": "acceded", - "calendar_round": "1 Imix 4 Sip", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0565-05-04", - "direct_in_source": true, - "source_western_date": "0565-05-04", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.11.5.1", - "event": "acceded", - "calendar_round": "1 Imix 4 Sip", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0565-05-02", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.11.5.1", - "event": "acceded", - "calendar_round": "1 Imix 4 Sip", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0565-05-05", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.11.5.1", - "event": "acceded", - "calendar_round": "1 Imix 4 Sip", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0565-05-03", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.16.10.7", - "event": "died", - "calendar_round": "9 Manik' 5 Yaxk'in", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0570-07-21", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.16.10.7", - "event": "died", - "calendar_round": "9 Manik' 5 Yaxk'in", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0570-07-19", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.16.10.7", - "event": "died", - "calendar_round": "9 Manik' 5 Yaxk'in", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0570-07-22", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.16.10.7", - "event": "died", - "calendar_round": "9 Manik' 5 Yaxk'in", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0570-07-20", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.16.10.7", - "event": "died", - "calendar_round": "9 Manik' 5 Yaxk'in", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0570-07-23", - "direct_in_source": true, - "source_western_date": "0570-07-23", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.16.10.7", - "event": "died", - "calendar_round": "9 Manik' 5 Yaxk'in", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0570-07-21", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.16.10.7", - "event": "died", - "calendar_round": "9 Manik' 5 Yaxk'in", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0570-07-24", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.16.10.7", - "event": "died", - "calendar_round": "9 Manik' 5 Yaxk'in", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0570-07-22", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.10.1.5", - "event": "born", - "calendar_round": "11 Chikchan 13 Ch'en", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0524-09-18", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.10.1.5", - "event": "born", - "calendar_round": "11 Chikchan 13 Ch'en", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0524-09-16", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.10.1.5", - "event": "born", - "calendar_round": "11 Chikchan 13 Ch'en", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0524-09-19", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.10.1.5", - "event": "born", - "calendar_round": "11 Chikchan 13 Ch'en", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0524-09-17", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.10.1.5", - "event": "born", - "calendar_round": "11 Chikchan 13 Ch'en", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0524-09-20", - "direct_in_source": true, - "source_western_date": "0524-09-20", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.10.1.5", - "event": "born", - "calendar_round": "11 Chikchan 13 Ch'en", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0524-09-18", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.10.1.5", - "event": "born", - "calendar_round": "11 Chikchan 13 Ch'en", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0524-09-21", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.4.10.1.5", - "event": "born", - "calendar_round": "11 Chikchan 13 Ch'en", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0524-09-19", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.18.5.12", - "event": "acceded", - "calendar_round": "10 Eb' 0 Wo", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0572-04-06", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.18.5.12", - "event": "acceded", - "calendar_round": "10 Eb' 0 Wo", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0572-04-04", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.18.5.12", - "event": "acceded", - "calendar_round": "10 Eb' 0 Wo", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0572-04-07", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.18.5.12", - "event": "acceded", - "calendar_round": "10 Eb' 0 Wo", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0572-04-05", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.18.5.12", - "event": "acceded", - "calendar_round": "10 Eb' 0 Wo", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0572-04-08", - "direct_in_source": true, - "source_western_date": "0572-04-08", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.18.5.12", - "event": "acceded", - "calendar_round": "10 Eb' 0 Wo", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0572-04-06", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.18.5.12", - "event": "acceded", - "calendar_round": "10 Eb' 0 Wo", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0572-04-09", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.6.18.5.12", - "event": "acceded", - "calendar_round": "10 Eb' 0 Wo", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0572-04-07", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.7.9.5.5", - "event": "died", - "calendar_round": "11 Chikchan 3 K'ayab", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0583-02-01", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.7.9.5.5", - "event": "died", - "calendar_round": "11 Chikchan 3 K'ayab", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0583-01-30", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.7.9.5.5", - "event": "died", - "calendar_round": "11 Chikchan 3 K'ayab", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0583-02-02", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.7.9.5.5", - "event": "died", - "calendar_round": "11 Chikchan 3 K'ayab", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0583-01-31", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.7.9.5.5", - "event": "died", - "calendar_round": "11 Chikchan 3 K'ayab", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0583-02-03", - "direct_in_source": true, - "source_western_date": "0583-02-03", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.7.9.5.5", - "event": "died", - "calendar_round": "11 Chikchan 3 K'ayab", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0583-02-01", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.7.9.5.5", - "event": "died", - "calendar_round": "11 Chikchan 3 K'ayab", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0583-02-04", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.7.9.5.5", - "event": "died", - "calendar_round": "11 Chikchan 3 K'ayab", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0583-02-02", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.7.10.3.8", - "event": "acceded", - "calendar_round": "9 Lamat 1 Muwan", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0583-12-21", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.7.10.3.8", - "event": "acceded", - "calendar_round": "9 Lamat 1 Muwan", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0583-12-19", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.7.10.3.8", - "event": "acceded", - "calendar_round": "9 Lamat 1 Muwan", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0583-12-22", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.7.10.3.8", - "event": "acceded", - "calendar_round": "9 Lamat 1 Muwan", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0583-12-20", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.7.10.3.8", - "event": "acceded", - "calendar_round": "9 Lamat 1 Muwan", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0583-12-23", - "direct_in_source": true, - "source_western_date": "0583-12-23", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.7.10.3.8", - "event": "acceded", - "calendar_round": "9 Lamat 1 Muwan", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0583-12-21", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.7.10.3.8", - "event": "acceded", - "calendar_round": "9 Lamat 1 Muwan", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0583-12-24", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.7.10.3.8", - "event": "acceded", - "calendar_round": "9 Lamat 1 Muwan", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0583-12-22", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.11.6.12", - "event": "died", - "calendar_round": "2 Eb' 0 Mak", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0604-11-05", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.11.6.12", - "event": "died", - "calendar_round": "2 Eb' 0 Mak", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0604-11-02", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.11.6.12", - "event": "died", - "calendar_round": "2 Eb' 0 Mak", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0604-11-06", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.11.6.12", - "event": "died", - "calendar_round": "2 Eb' 0 Mak", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0604-11-03", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.11.6.12", - "event": "died", - "calendar_round": "2 Eb' 0 Mak", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0604-11-07", - "direct_in_source": true, - "source_western_date": "0604-11-07", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.11.6.12", - "event": "died", - "calendar_round": "2 Eb' 0 Mak", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0604-11-04", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.11.6.12", - "event": "died", - "calendar_round": "2 Eb' 0 Mak", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0604-11-08", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.11.6.12", - "event": "died", - "calendar_round": "2 Eb' 0 Mak", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0604-11-05", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.11.9.10", - "event": "acceded", - "calendar_round": "8 Ok 18 Muwan", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0605-01-02", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.11.9.10", - "event": "acceded", - "calendar_round": "8 Ok 18 Muwan", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0604-12-30", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.11.9.10", - "event": "acceded", - "calendar_round": "8 Ok 18 Muwan", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0605-01-03", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.11.9.10", - "event": "acceded", - "calendar_round": "8 Ok 18 Muwan", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0604-12-31", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.11.9.10", - "event": "acceded", - "calendar_round": "8 Ok 18 Muwan", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0605-01-04", - "direct_in_source": true, - "source_western_date": "0605-01-04", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.11.9.10", - "event": "acceded", - "calendar_round": "8 Ok 18 Muwan", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0605-01-01", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.11.9.10", - "event": "acceded", - "calendar_round": "8 Ok 18 Muwan", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0605-01-05", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.11.9.10", - "event": "acceded", - "calendar_round": "8 Ok 18 Muwan", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0605-01-02", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.19.4.6", - "event": "died", - "calendar_round": "2 Kimi 14 Mol", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0612-08-09", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.19.4.6", - "event": "died", - "calendar_round": "2 Kimi 14 Mol", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0612-08-06", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.19.4.6", - "event": "died", - "calendar_round": "2 Kimi 14 Mol", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0612-08-10", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.19.4.6", - "event": "died", - "calendar_round": "2 Kimi 14 Mol", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0612-08-07", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.19.4.6", - "event": "died", - "calendar_round": "2 Kimi 14 Mol", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0612-08-11", - "direct_in_source": true, - "source_western_date": "0612-08-11", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.19.4.6", - "event": "died", - "calendar_round": "2 Kimi 14 Mol", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0612-08-08", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.19.4.6", - "event": "died", - "calendar_round": "2 Kimi 14 Mol", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0612-08-12", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.19.4.6", - "event": "died", - "calendar_round": "2 Kimi 14 Mol", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0612-08-09", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.18.14.11", - "event": "died", - "calendar_round": "3 Chuwen 4 Wayeb", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0612-03-07", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.18.14.11", - "event": "died", - "calendar_round": "3 Chuwen 4 Wayeb", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0612-03-04", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.18.14.11", - "event": "died", - "calendar_round": "3 Chuwen 4 Wayeb", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0612-03-08", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.18.14.11", - "event": "died", - "calendar_round": "3 Chuwen 4 Wayeb", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0612-03-05", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.18.14.11", - "event": "died", - "calendar_round": "3 Chuwen 4 Wayeb", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0612-03-09", - "direct_in_source": true, - "source_western_date": "0612-03-09", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.18.14.11", - "event": "died", - "calendar_round": "3 Chuwen 4 Wayeb", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0612-03-06", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.18.14.11", - "event": "died", - "calendar_round": "3 Chuwen 4 Wayeb", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0612-03-10", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.18.14.11", - "event": "died", - "calendar_round": "3 Chuwen 4 Wayeb", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0612-03-07", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.19.7.18", - "event": "acceded", - "calendar_round": "9 Etz'nab' 6 Keh", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0612-10-20", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.19.7.18", - "event": "acceded", - "calendar_round": "9 Etz'nab' 6 Keh", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0612-10-17", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.19.7.18", - "event": "acceded", - "calendar_round": "9 Etz'nab' 6 Keh", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0612-10-21", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.19.7.18", - "event": "acceded", - "calendar_round": "9 Etz'nab' 6 Keh", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0612-10-18", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.19.7.18", - "event": "acceded", - "calendar_round": "9 Etz'nab' 6 Keh", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0612-10-22", - "direct_in_source": true, - "source_western_date": "0612-10-22", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.19.7.18", - "event": "acceded", - "calendar_round": "9 Etz'nab' 6 Keh", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0612-10-19", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.19.7.18", - "event": "acceded", - "calendar_round": "9 Etz'nab' 6 Keh", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0612-10-23", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.19.7.18", - "event": "acceded", - "calendar_round": "9 Etz'nab' 6 Keh", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0612-10-20", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.10.1.6", - "event": "died", - "calendar_round": "13 Kimi 4 Pax", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0642-12-30", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.10.1.6", - "event": "died", - "calendar_round": "13 Kimi 4 Pax", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0642-12-27", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.10.1.6", - "event": "died", - "calendar_round": "13 Kimi 4 Pax", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0642-12-31", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.10.1.6", - "event": "died", - "calendar_round": "13 Kimi 4 Pax", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0642-12-28", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.10.1.6", - "event": "died", - "calendar_round": "13 Kimi 4 Pax", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0643-01-01", - "direct_in_source": true, - "source_western_date": "0643-01-01", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.10.1.6", - "event": "died", - "calendar_round": "13 Kimi 4 Pax", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0642-12-29", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.10.1.6", - "event": "died", - "calendar_round": "13 Kimi 4 Pax", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0643-01-02", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.10.1.6", - "event": "died", - "calendar_round": "13 Kimi 4 Pax", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0642-12-30", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.9.13.0", - "event": "born", - "calendar_round": "8 Ajaw 13 Pop", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0603-03-24", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.9.13.0", - "event": "born", - "calendar_round": "8 Ajaw 13 Pop", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0603-03-21", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.9.13.0", - "event": "born", - "calendar_round": "8 Ajaw 13 Pop", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0603-03-25", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.9.13.0", - "event": "born", - "calendar_round": "8 Ajaw 13 Pop", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0603-03-22", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.9.13.0", - "event": "born", - "calendar_round": "8 Ajaw 13 Pop", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0603-03-26", - "direct_in_source": true, - "source_western_date": "0603-03-26", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.9.13.0", - "event": "born", - "calendar_round": "8 Ajaw 13 Pop", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0603-03-23", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.9.13.0", - "event": "born", - "calendar_round": "8 Ajaw 13 Pop", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0603-03-27", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.8.9.13.0", - "event": "born", - "calendar_round": "8 Ajaw 13 Pop", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0603-03-24", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.9.2.4.8", - "event": "acceded", - "calendar_round": "5 Lamat 1 Mol", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0615-07-27", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.9.2.4.8", - "event": "acceded", - "calendar_round": "5 Lamat 1 Mol", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0615-07-24", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.9.2.4.8", - "event": "acceded", - "calendar_round": "5 Lamat 1 Mol", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0615-07-28", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.9.2.4.8", - "event": "acceded", - "calendar_round": "5 Lamat 1 Mol", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0615-07-25", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.9.2.4.8", - "event": "acceded", - "calendar_round": "5 Lamat 1 Mol", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0615-07-29", - "direct_in_source": true, - "source_western_date": "0615-07-29", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.9.2.4.8", - "event": "acceded", - "calendar_round": "5 Lamat 1 Mol", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0615-07-26", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.9.2.4.8", - "event": "acceded", - "calendar_round": "5 Lamat 1 Mol", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0615-07-30", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.9.2.4.8", - "event": "acceded", - "calendar_round": "5 Lamat 1 Mol", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0615-07-27", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.11.5.18", - "event": "died", - "calendar_round": "6 Etz'nab' 11 Yax", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0683-08-29", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.11.5.18", - "event": "died", - "calendar_round": "6 Etz'nab' 11 Yax", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0683-08-26", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.11.5.18", - "event": "died", - "calendar_round": "6 Etz'nab' 11 Yax", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0683-08-30", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.11.5.18", - "event": "died", - "calendar_round": "6 Etz'nab' 11 Yax", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0683-08-27", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.11.5.18", - "event": "died", - "calendar_round": "6 Etz'nab' 11 Yax", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0683-08-31", - "direct_in_source": true, - "source_western_date": "0683-08-31", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.11.5.18", - "event": "died", - "calendar_round": "6 Etz'nab' 11 Yax", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0683-08-28", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.11.5.18", - "event": "died", - "calendar_round": "6 Etz'nab' 11 Yax", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0683-09-01", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.11.5.18", - "event": "died", - "calendar_round": "6 Etz'nab' 11 Yax", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0683-08-29", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.0.6.18", - "event": "died", - "calendar_round": "5 Etz'nab 6 K'ank'in", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0672-11-14", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.0.6.18", - "event": "died", - "calendar_round": "5 Etz'nab 6 K'ank'in", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0672-11-11", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.0.6.18", - "event": "died", - "calendar_round": "5 Etz'nab 6 K'ank'in", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0672-11-15", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.0.6.18", - "event": "died", - "calendar_round": "5 Etz'nab 6 K'ank'in", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0672-11-12", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.0.6.18", - "event": "died", - "calendar_round": "5 Etz'nab 6 K'ank'in", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0672-11-16", - "direct_in_source": true, - "source_western_date": "0672-11-16", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.0.6.18", - "event": "died", - "calendar_round": "5 Etz'nab 6 K'ank'in", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0672-11-13", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.0.6.18", - "event": "died", - "calendar_round": "5 Etz'nab 6 K'ank'in", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0672-11-17", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.0.6.18", - "event": "died", - "calendar_round": "5 Etz'nab 6 K'ank'in", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0672-11-14", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.2.6.6", - "event": "born", - "calendar_round": "2 Kimi 19 Sotz'", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0635-05-21", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.2.6.6", - "event": "born", - "calendar_round": "2 Kimi 19 Sotz'", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0635-05-18", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.2.6.6", - "event": "born", - "calendar_round": "2 Kimi 19 Sotz'", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0635-05-22", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.2.6.6", - "event": "born", - "calendar_round": "2 Kimi 19 Sotz'", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0635-05-19", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.2.6.6", - "event": "born", - "calendar_round": "2 Kimi 19 Sotz'", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0635-05-23", - "direct_in_source": true, - "source_western_date": "0635-05-23", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.2.6.6", - "event": "born", - "calendar_round": "2 Kimi 19 Sotz'", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0635-05-20", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.2.6.6", - "event": "born", - "calendar_round": "2 Kimi 19 Sotz'", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0635-05-24", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.2.6.6", - "event": "born", - "calendar_round": "2 Kimi 19 Sotz'", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0635-05-21", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.11.12.10", - "event": "acceded", - "calendar_round": "8 Ok 3 K'ayab", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0684-01-08", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.11.12.10", - "event": "acceded", - "calendar_round": "8 Ok 3 K'ayab", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0684-01-05", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.11.12.10", - "event": "acceded", - "calendar_round": "8 Ok 3 K'ayab", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0684-01-09", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.11.12.10", - "event": "acceded", - "calendar_round": "8 Ok 3 K'ayab", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0684-01-06", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.11.12.10", - "event": "acceded", - "calendar_round": "8 Ok 3 K'ayab", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0684-01-10", - "direct_in_source": true, - "source_western_date": "0684-01-10", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.11.12.10", - "event": "acceded", - "calendar_round": "8 Ok 3 K'ayab", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0684-01-07", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.11.12.10", - "event": "acceded", - "calendar_round": "8 Ok 3 K'ayab", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0684-01-11", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.11.12.10", - "event": "acceded", - "calendar_round": "8 Ok 3 K'ayab", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0684-01-08", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.13.10.1.5", - "event": "died", - "calendar_round": "6 Chikchan 3 Pop", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0702-02-18", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.13.10.1.5", - "event": "died", - "calendar_round": "6 Chikchan 3 Pop", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0702-02-14", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.13.10.1.5", - "event": "died", - "calendar_round": "6 Chikchan 3 Pop", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0702-02-19", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.13.10.1.5", - "event": "died", - "calendar_round": "6 Chikchan 3 Pop", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0702-02-15", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.13.10.1.5", - "event": "died", - "calendar_round": "6 Chikchan 3 Pop", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0702-02-20", - "direct_in_source": true, - "source_western_date": "0702-02-20", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.13.10.1.5", - "event": "died", - "calendar_round": "6 Chikchan 3 Pop", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0702-02-16", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.13.10.1.5", - "event": "died", - "calendar_round": "6 Chikchan 3 Pop", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0702-02-21", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.13.10.1.5", - "event": "died", - "calendar_round": "6 Chikchan 3 Pop", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0702-02-17", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.11.17.0", - "event": "born", - "calendar_round": "11 Ajaw 8 Mac", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0644-11-03", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.11.17.0", - "event": "born", - "calendar_round": "11 Ajaw 8 Mac", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0644-10-31", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.11.17.0", - "event": "born", - "calendar_round": "11 Ajaw 8 Mac", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0644-11-04", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.11.17.0", - "event": "born", - "calendar_round": "11 Ajaw 8 Mac", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0644-11-01", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.11.17.0", - "event": "born", - "calendar_round": "11 Ajaw 8 Mac", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0644-11-05", - "direct_in_source": true, - "source_western_date": "0644-11-05", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.11.17.0", - "event": "born", - "calendar_round": "11 Ajaw 8 Mac", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0644-11-02", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.11.17.0", - "event": "born", - "calendar_round": "11 Ajaw 8 Mac", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0644-11-06", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.11.17.0", - "event": "born", - "calendar_round": "11 Ajaw 8 Mac", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0644-11-03", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.13.10.6.8", - "event": "acceded", - "calendar_round": "5 Lamat 6 Xul", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0702-06-01", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.13.10.6.8", - "event": "acceded", - "calendar_round": "5 Lamat 6 Xul", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0702-05-28", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.13.10.6.8", - "event": "acceded", - "calendar_round": "5 Lamat 6 Xul", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0702-06-02", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.13.10.6.8", - "event": "acceded", - "calendar_round": "5 Lamat 6 Xul", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0702-05-29", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.13.10.6.8", - "event": "acceded", - "calendar_round": "5 Lamat 6 Xul", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0702-06-03", - "direct_in_source": true, - "source_western_date": "0702-06-03", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.13.10.6.8", - "event": "acceded", - "calendar_round": "5 Lamat 6 Xul", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0702-05-30", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.13.10.6.8", - "event": "acceded", - "calendar_round": "5 Lamat 6 Xul", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0702-06-04", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.13.10.6.8", - "event": "acceded", - "calendar_round": "5 Lamat 6 Xul", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0702-05-31", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.17.6.0", - "event": "born", - "calendar_round": "1 Ajaw 3 Wayeb", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0650-02-25", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.17.6.0", - "event": "born", - "calendar_round": "1 Ajaw 3 Wayeb", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0650-02-22", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.17.6.0", - "event": "born", - "calendar_round": "1 Ajaw 3 Wayeb", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0650-02-26", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.17.6.0", - "event": "born", - "calendar_round": "1 Ajaw 3 Wayeb", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0650-02-23", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.17.6.0", - "event": "born", - "calendar_round": "1 Ajaw 3 Wayeb", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0650-02-27", - "direct_in_source": true, - "source_western_date": "0650-02-27", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.17.6.0", - "event": "born", - "calendar_round": "1 Ajaw 3 Wayeb", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0650-02-24", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.17.6.0", - "event": "born", - "calendar_round": "1 Ajaw 3 Wayeb", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0650-02-28", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.10.17.6.0", - "event": "born", - "calendar_round": "1 Ajaw 3 Wayeb", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0650-02-25", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.14.8.14.15", - "event": "acceded", - "calendar_round": "9 Men 3 Yax", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0720-08-12", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.14.8.14.15", - "event": "acceded", - "calendar_round": "9 Men 3 Yax", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0720-08-08", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.14.8.14.15", - "event": "acceded", - "calendar_round": "9 Men 3 Yax", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0720-08-13", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.14.8.14.15", - "event": "acceded", - "calendar_round": "9 Men 3 Yax", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0720-08-09", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.14.8.14.15", - "event": "acceded", - "calendar_round": "9 Men 3 Yax", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0720-08-14", - "direct_in_source": true, - "source_western_date": "0720-08-14", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.14.8.14.15", - "event": "acceded", - "calendar_round": "9 Men 3 Yax", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0720-08-10", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.14.8.14.15", - "event": "acceded", - "calendar_round": "9 Men 3 Yax", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0720-08-15", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.14.8.14.15", - "event": "acceded", - "calendar_round": "9 Men 3 Yax", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0720-08-11", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.11.18.9.17", - "event": "born", - "calendar_round": "7 Kaban 15 K'ayab", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0671-01-23", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.11.18.9.17", - "event": "born", - "calendar_round": "7 Kaban 15 K'ayab", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0671-01-20", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.11.18.9.17", - "event": "born", - "calendar_round": "7 Kaban 15 K'ayab", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0671-01-24", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.11.18.9.17", - "event": "born", - "calendar_round": "7 Kaban 15 K'ayab", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0671-01-21", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.11.18.9.17", - "event": "born", - "calendar_round": "7 Kaban 15 K'ayab", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0671-01-25", - "direct_in_source": true, - "source_western_date": "0671-01-25", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.11.18.9.17", - "event": "born", - "calendar_round": "7 Kaban 15 K'ayab", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0671-01-22", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.11.18.9.17", - "event": "born", - "calendar_round": "7 Kaban 15 K'ayab", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0671-01-26", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.11.18.9.17", - "event": "born", - "calendar_round": "7 Kaban 15 K'ayab", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0671-01-23", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.6.5.8", - "event": "born", - "calendar_round": "3 Lamat 6 Sak", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0678-09-14", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.6.5.8", - "event": "born", - "calendar_round": "3 Lamat 6 Sak", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0678-09-11", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.6.5.8", - "event": "born", - "calendar_round": "3 Lamat 6 Sak", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0678-09-15", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.6.5.8", - "event": "born", - "calendar_round": "3 Lamat 6 Sak", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0678-09-12", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.6.5.8", - "event": "born", - "calendar_round": "3 Lamat 6 Sak", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0678-09-16", - "direct_in_source": true, - "source_western_date": "0678-09-16", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.6.5.8", - "event": "born", - "calendar_round": "3 Lamat 6 Sak", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0678-09-13", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.6.5.8", - "event": "born", - "calendar_round": "3 Lamat 6 Sak", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0678-09-17", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.12.6.5.8", - "event": "born", - "calendar_round": "3 Lamat 6 Sak", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0678-09-14", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.14.10.4.2", - "event": "acceded", - "calendar_round": "9 Ik' 5 K'ayab", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0722-01-01", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.14.10.4.2", - "event": "acceded", - "calendar_round": "9 Ik' 5 K'ayab", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0721-12-28", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.14.10.4.2", - "event": "acceded", - "calendar_round": "9 Ik' 5 K'ayab", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0722-01-02", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.14.10.4.2", - "event": "acceded", - "calendar_round": "9 Ik' 5 K'ayab", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0721-12-29", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.14.10.4.2", - "event": "acceded", - "calendar_round": "9 Ik' 5 K'ayab", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0722-01-03", - "direct_in_source": true, - "source_western_date": "0722-01-03", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.14.10.4.2", - "event": "acceded", - "calendar_round": "9 Ik' 5 K'ayab", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0721-12-30", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.14.10.4.2", - "event": "acceded", - "calendar_round": "9 Ik' 5 K'ayab", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0722-01-04", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.14.10.4.2", - "event": "acceded", - "calendar_round": "9 Ik' 5 K'ayab", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0721-12-31", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.16.13.0.7", - "event": "acceded", - "calendar_round": "9 Manik' 15 Wo", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0764-03-06", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.16.13.0.7", - "event": "acceded", - "calendar_round": "9 Manik' 15 Wo", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0764-03-02", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.16.13.0.7", - "event": "acceded", - "calendar_round": "9 Manik' 15 Wo", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0764-03-07", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.16.13.0.7", - "event": "acceded", - "calendar_round": "9 Manik' 15 Wo", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0764-03-03", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.16.13.0.7", - "event": "acceded", - "calendar_round": "9 Manik' 15 Wo", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0764-03-08", - "direct_in_source": true, - "source_western_date": "0764-03-08", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.16.13.0.7", - "event": "acceded", - "calendar_round": "9 Manik' 15 Wo", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0764-03-04", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.16.13.0.7", - "event": "acceded", - "calendar_round": "9 Manik' 15 Wo", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0764-03-09", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.16.13.0.7", - "event": "acceded", - "calendar_round": "9 Manik' 15 Wo", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0764-03-05", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.18.9.4.4", - "event": "acceded", - "calendar_round": "7 K'an 17 Muwan", - "correlation_jdn": 584283, - "western_calendar": "gregorian", - "western_date": "0799-11-15", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.18.9.4.4", - "event": "acceded", - "calendar_round": "7 K'an 17 Muwan", - "correlation_jdn": 584283, - "western_calendar": "julian", - "western_date": "0799-11-11", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.18.9.4.4", - "event": "acceded", - "calendar_round": "7 K'an 17 Muwan", - "correlation_jdn": 584284, - "western_calendar": "gregorian", - "western_date": "0799-11-16", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.18.9.4.4", - "event": "acceded", - "calendar_round": "7 K'an 17 Muwan", - "correlation_jdn": 584284, - "western_calendar": "julian", - "western_date": "0799-11-12", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.18.9.4.4", - "event": "acceded", - "calendar_round": "7 K'an 17 Muwan", - "correlation_jdn": 584285, - "western_calendar": "gregorian", - "western_date": "0799-11-17", - "direct_in_source": true, - "source_western_date": "0799-11-17", - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.18.9.4.4", - "event": "acceded", - "calendar_round": "7 K'an 17 Muwan", - "correlation_jdn": 584285, - "western_calendar": "julian", - "western_date": "0799-11-13", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.18.9.4.4", - "event": "acceded", - "calendar_round": "7 K'an 17 Muwan", - "correlation_jdn": 584286, - "western_calendar": "gregorian", - "western_date": "0799-11-18", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - }, - { - "maya_long_count": "9.18.9.4.4", - "event": "acceded", - "calendar_round": "7 K'an 17 Muwan", - "correlation_jdn": 584286, - "western_calendar": "julian", - "western_date": "0799-11-14", - "direct_in_source": false, - "source_western_date": null, - "source": "mesoweb_palenque_rulers_table" - } - ] -} \ No newline at end of file From b7020e465e316c0edb73e73ada758a76d46b7bf2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 2 Jan 2026 17:20:19 +0000 Subject: [PATCH 3/3] Improve import organization: move type import to top Co-authored-by: drewsonne <233054+drewsonne@users.noreply.github.com> --- src/__tests__/correlation-validation.spec.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/__tests__/correlation-validation.spec.ts b/src/__tests__/correlation-validation.spec.ts index 7b2495b3..1fd3a862 100644 --- a/src/__tests__/correlation-validation.spec.ts +++ b/src/__tests__/correlation-validation.spec.ts @@ -1,5 +1,8 @@ import {expect} from 'chai'; import 'mocha'; +import type { + CorrelationData +} from './test-data-loader'; import { loadCorrelationData, getDataByCorrelation, @@ -9,7 +12,6 @@ import { getUniqueLongCounts, getAvailableCorrelations } from './test-data-loader'; -import type { CorrelationData } from './test-data-loader'; import LongCountFactory from '../factory/long-count'; import FullDateFactory from '../factory/full-date'; import {getCorrelationConstant} from '../lc/correlation-constant';