Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 186x 186x | export const SEATOOL_AUTHORITIES: { [key: string]: string } = { "121": "1115", "122": "1915(b)", "123": "1915(c)", "124": "CHIP SPA", "125": "Medicaid SPA", "126": "1115 Indep. Plus", "127": "1915(c) Indep. Plus", "128": "APD", "129": "ADM", "130": "UPL", }; export const SEATOOL_AUTHORITIES_MAP_TO_ID: { [key: string]: number } = { ["1115"]: 121, ["1915(b)"]: 122, ["1915(c)"]: 123, ["CHIP SPA"]: 124, ["Medicaid SPA"]: 125, ["1115 Indep. Plus"]: 126, ["1915(c) Indep. Plus"]: 127, ["APD"]: 128, ["ADM"]: 129, ["UPL"]: 130, }; |