From 27ac7978737fee03b9db217587e46356dcbc2c05 Mon Sep 17 00:00:00 2001 From: NishiPhalke Date: Wed, 16 Aug 2023 11:29:50 -0400 Subject: [PATCH 1/8] misc features --- screen2.0/next.config.js | 11 + screen2.0/package.json | 5 +- .../app/search/ccredetails/linkedgenes.tsx | 2 +- .../src/app/search/ccredetails/queries.ts | 2 +- screen2.0/src/app/search/ccresearch.tsx | 18 +- screen2.0/src/app/search/gbview/allmotifs.ts | 5493 +++++++ .../src/app/search/gbview/biosampletracks.tsx | 226 + .../src/app/search/gbview/ccretooltip.tsx | 95 + screen2.0/src/app/search/gbview/controls.tsx | 39 + .../src/app/search/gbview/cytobandview.tsx | 91 + .../src/app/search/gbview/defaulttracks.tsx | 366 + .../src/app/search/gbview/egenetracks.tsx | 102 + .../app/search/gbview/genomebrowserview.tsx | 241 + .../src/app/search/gbview/shiftbutton.tsx | 29 + .../src/app/search/gbview/tfmotiftrack.tsx | 92 + .../src/app/search/gbview/zoombutton.tsx | 34 + screen2.0/src/app/search/page.tsx | 1 + screen2.0/src/app/search/types.ts | 1 + .../common/components/CcreAutocomplete.tsx | 138 + .../components/CelltypeAutocomplete.tsx | 117 + .../common/components/GeneAutocomplete.tsx | 198 + .../src/common/components/MainSearch.tsx | 60 +- .../src/common/components/SnpAutocomplete.tsx | 133 + screen2.0/yarn.lock | 13334 ++++++---------- 24 files changed, 12799 insertions(+), 8029 deletions(-) create mode 100644 screen2.0/src/app/search/gbview/allmotifs.ts create mode 100644 screen2.0/src/app/search/gbview/biosampletracks.tsx create mode 100644 screen2.0/src/app/search/gbview/ccretooltip.tsx create mode 100644 screen2.0/src/app/search/gbview/controls.tsx create mode 100644 screen2.0/src/app/search/gbview/cytobandview.tsx create mode 100644 screen2.0/src/app/search/gbview/defaulttracks.tsx create mode 100644 screen2.0/src/app/search/gbview/egenetracks.tsx create mode 100644 screen2.0/src/app/search/gbview/genomebrowserview.tsx create mode 100644 screen2.0/src/app/search/gbview/shiftbutton.tsx create mode 100644 screen2.0/src/app/search/gbview/tfmotiftrack.tsx create mode 100644 screen2.0/src/app/search/gbview/zoombutton.tsx create mode 100644 screen2.0/src/common/components/CcreAutocomplete.tsx create mode 100644 screen2.0/src/common/components/CelltypeAutocomplete.tsx create mode 100644 screen2.0/src/common/components/GeneAutocomplete.tsx create mode 100644 screen2.0/src/common/components/SnpAutocomplete.tsx diff --git a/screen2.0/next.config.js b/screen2.0/next.config.js index e3813530..c0a0cc97 100644 --- a/screen2.0/next.config.js +++ b/screen2.0/next.config.js @@ -41,6 +41,17 @@ const nextConfig = { trailingSlash: false, assetPrefix: assetPrefix, basePath: basePath, + + webpack: (config, { isServer }) => { + if (!isServer) { + // don't resolve 'fs' module on the client to prevent this error on build --> Error: Can't resolve 'fs' + config.resolve.fallback = { + fs: false + } + } + + return config; + } } module.exports = nextConfig diff --git a/screen2.0/package.json b/screen2.0/package.json index c5a6bad6..8616a867 100644 --- a/screen2.0/package.json +++ b/screen2.0/package.json @@ -55,12 +55,15 @@ "normalize.css": "^8.0.1", "only": "^0.0.2", "postcss": "8.4.27", + "queryz": "^0.0.3", "react": "18.2.0", "react-dom": "18.2.0", "server": "^1.0.38", "sharp": "^0.32.4", "tailwindcss": "3.3.3", - "typescript": "5.1.6" + "typescript": "5.1.6", + "umms-gb": "^3.9.13", + "uuid": "^9.0.0" }, "devDependencies": { "file-loader": "^6.2.0", diff --git a/screen2.0/src/app/search/ccredetails/linkedgenes.tsx b/screen2.0/src/app/search/ccredetails/linkedgenes.tsx index 5fd05a24..caaca989 100644 --- a/screen2.0/src/app/search/ccredetails/linkedgenes.tsx +++ b/screen2.0/src/app/search/ccredetails/linkedgenes.tsx @@ -27,7 +27,7 @@ export const LinkedGenes: React.FC<{ accession: string; assembly: string }> = ({ const { loading: loading_linked, data: data_linked } = useQuery(LINKED_GENES, { variables: { assembly, - accession, + accession: [accession], }, fetchPolicy: "cache-and-network", nextFetchPolicy: "cache-first", diff --git a/screen2.0/src/app/search/ccredetails/queries.ts b/screen2.0/src/app/search/ccredetails/queries.ts index 6aa59bf6..f3498f54 100644 --- a/screen2.0/src/app/search/ccredetails/queries.ts +++ b/screen2.0/src/app/search/ccredetails/queries.ts @@ -29,7 +29,7 @@ export const TOP_TISSUES = gql` } ` export const LINKED_GENES = gql` - query ($assembly: String!, $accession: String!) { + query ($assembly: String!, $accession: [String]!) { linkedGenesQuery(assembly: $assembly, accession: $accession) { assembly accession diff --git a/screen2.0/src/app/search/ccresearch.tsx b/screen2.0/src/app/search/ccresearch.tsx index d49f3ac8..e5a04729 100644 --- a/screen2.0/src/app/search/ccresearch.tsx +++ b/screen2.0/src/app/search/ccresearch.tsx @@ -1,5 +1,5 @@ "use client" -import React, { useEffect } from "react" +import React, { useEffect, useState } from "react" import { Tab, Tabs, Typography } from "@mui/material" import MainResultsTable from "../../common/components/MainResultsTable" import MainResultsFilters from "../../common/components/MainResultsFilters" @@ -7,13 +7,15 @@ import { CcreDetails } from "./ccredetails/ccredetails" import Grid2 from "../../common/mui-client-wrappers/Grid2" import { ReadonlyURLSearchParams, useSearchParams } from "next/navigation" import styled from "@emotion/styled" +import { GenomeBrowserView } from "./gbview/genomebrowserview" + export const StyledTab = styled(Tab)(() => ({ textTransform: "none", })) export const CcreSearch = ({ mainQueryParams, ccrerows, globals, assembly }) => { const searchParams: ReadonlyURLSearchParams = useSearchParams()! - const [value, setValue] = React.useState(searchParams.get("accession") ? 1 : 0) - + const [value, setValue] = useState(searchParams.get("accession") ? 1 : 0) + const [tabIndex, setTabIndex] = useState(0) const handleChange = (_, newValue: number) => { setValue(newValue) } @@ -35,6 +37,7 @@ export const CcreSearch = ({ mainQueryParams, ccrerows, globals, assembly }) => + {searchParams.get("accession") && } @@ -46,13 +49,18 @@ export const CcreSearch = ({ mainQueryParams, ccrerows, globals, assembly }) => - setTabIndex(val)}> + + + + {tabIndex===0 && } + {tabIndex===1 && + />} )} diff --git a/screen2.0/src/app/search/gbview/allmotifs.ts b/screen2.0/src/app/search/gbview/allmotifs.ts new file mode 100644 index 00000000..866fc4b7 --- /dev/null +++ b/screen2.0/src/app/search/gbview/allmotifs.ts @@ -0,0 +1,5493 @@ +export const MOTIFS = { + IRF1: [ + [0.323, 0.103, 0.503, 0.071], + [0.536, 0.179, 0.258, 0.028], + [0.818, 0.09, 0.058, 0.034], + [0.906, 0.0, 0.077, 0.017], + [0.182, 0.427, 0.213, 0.178], + [0.256, 0.242, 0.113, 0.39], + [0.1, 0.003, 0.898, 0.0], + [0.696, 0.3, 0.0, 0.004], + [0.837, 0.129, 0.005, 0.029], + [0.885, 0.0, 0.069, 0.046], + [0.082, 0.426, 0.46, 0.032], + [0.119, 0.292, 0.166, 0.423], + [0.422, 0.034, 0.486, 0.058], + [0.493, 0.145, 0.317, 0.045], + [0.511, 0.206, 0.151, 0.131], + [0.52, 0.098, 0.297, 0.085], + ], + HIC1: [ + [0.001, 0.022, 0.0, 0.977], + [0.06, 0.0, 0.938, 0.002], + [0.186, 0.783, 0.031, 0.0], + [0.007, 0.959, 0.002, 0.032], + [0.054, 0.934, 0.006, 0.006], + [0.261, 0.0, 0.169, 0.569], + [0.078, 0.487, 0.179, 0.255], + ], + LHX2: [ + [0.067, 0.666, 0.193, 0.074], + [0.0, 0.215, 0.0, 0.785], + [0.512, 0.446, 0.0, 0.041], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.003, 0.997], + [0.001, 0.018, 0.004, 0.978], + [0.988, 0.0, 0.0, 0.012], + ], + ZNF667: [ + [0.052, 0.058, 0.825, 0.064], + [0.236, 0.282, 0.331, 0.15], + [0.071, 0.083, 0.285, 0.561], + [0.074, 0.046, 0.816, 0.064], + [0.785, 0.012, 0.166, 0.037], + [0.083, 0.009, 0.902, 0.006], + [0.003, 0.936, 0.012, 0.049], + [0.028, 0.046, 0.025, 0.902], + [0.003, 0.448, 0.012, 0.537], + [0.123, 0.058, 0.12, 0.699], + [0.083, 0.028, 0.067, 0.822], + [0.758, 0.031, 0.117, 0.095], + [0.798, 0.117, 0.055, 0.031], + [0.393, 0.028, 0.518, 0.061], + [0.025, 0.043, 0.911, 0.021], + [0.077, 0.644, 0.187, 0.092], + [0.11, 0.788, 0.058, 0.043], + [0.518, 0.181, 0.086, 0.215], + [0.113, 0.712, 0.08, 0.095], + ], + ZNF341: [ + [0.008, 0.006, 0.977, 0.008], + [0.014, 0.961, 0.017, 0.009], + [0.047, 0.15, 0.053, 0.751], + [0.093, 0.309, 0.558, 0.041], + [0.027, 0.055, 0.01, 0.908], + [0.003, 0.069, 0.094, 0.834], + [0.075, 0.791, 0.088, 0.045], + [0.057, 0.685, 0.035, 0.223], + ], + TP53: [ + [0.264, 0.024, 0.526, 0.186], + [0.459, 0.0, 0.476, 0.066], + [0.017, 0.96, 0.001, 0.023], + [0.79, 0.0, 0.103, 0.106], + [0.209, 0.063, 0.019, 0.71], + [0.0, 0.004, 0.978, 0.018], + [0.055, 0.368, 0.0, 0.577], + [0.101, 0.59, 0.019, 0.289], + [0.156, 0.329, 0.136, 0.379], + [0.264, 0.177, 0.426, 0.133], + [0.251, 0.16, 0.411, 0.178], + [0.44, 0.054, 0.416, 0.09], + [0.079, 0.741, 0.153, 0.027], + [0.576, 0.225, 0.037, 0.162], + [0.269, 0.075, 0.137, 0.519], + [0.168, 0.078, 0.664, 0.09], + ], + SRF: [ + [0.258, 0.127, 0.089, 0.527], + [0.124, 0.132, 0.324, 0.419], + [0.261, 0.215, 0.293, 0.231], + [0.016, 0.968, 0.008, 0.008], + [0.0, 0.93, 0.0, 0.069], + [0.532, 0.061, 0.016, 0.39], + [0.251, 0.021, 0.017, 0.71], + [0.817, 0.009, 0.033, 0.141], + [0.131, 0.028, 0.004, 0.837], + [0.678, 0.016, 0.017, 0.29], + [0.353, 0.012, 0.061, 0.574], + [0.093, 0.0, 0.906, 0.001], + [0.032, 0.006, 0.951, 0.011], + [0.229, 0.294, 0.215, 0.262], + [0.419, 0.357, 0.109, 0.115], + [0.558, 0.077, 0.146, 0.219], + ], + SPIB: [ + [0.593, 0.068, 0.192, 0.148], + [0.602, 0.058, 0.23, 0.11], + [0.561, 0.029, 0.184, 0.227], + [0.182, 0.093, 0.697, 0.028], + [0.606, 0.102, 0.277, 0.015], + [0.088, 0.0, 0.904, 0.007], + [0.0, 0.004, 0.996, 0.0], + [0.991, 0.005, 0.001, 0.003], + [0.985, 0.0, 0.003, 0.012], + [0.052, 0.176, 0.769, 0.003], + [0.091, 0.076, 0.03, 0.803], + [0.076, 0.157, 0.738, 0.029], + ], + "NKX2-5": [ + [0.119, 0.154, 0.528, 0.2], + [0.172, 0.458, 0.144, 0.226], + [0.24, 0.026, 0.498, 0.236], + [0.247, 0.425, 0.163, 0.164], + [0.311, 0.187, 0.148, 0.353], + [0.316, 0.082, 0.427, 0.174], + [0.382, 0.249, 0.194, 0.175], + [0.147, 0.188, 0.406, 0.26], + [0.207, 0.307, 0.207, 0.279], + [0.31, 0.176, 0.316, 0.199], + [0.221, 0.319, 0.163, 0.296], + [0.087, 0.299, 0.176, 0.438], + [0.124, 0.206, 0.163, 0.507], + [0.205, 0.163, 0.216, 0.416], + [0.343, 0.07, 0.583, 0.004], + [0.987, 0.003, 0.003, 0.007], + [0.058, 0.019, 0.915, 0.007], + [0.404, 0.002, 0.021, 0.573], + [0.031, 0.002, 0.941, 0.027], + [0.055, 0.274, 0.541, 0.129], + ], + TBX5: [ + [0.195, 0.312, 0.018, 0.475], + [0.364, 0.131, 0.345, 0.16], + [0.008, 0.053, 0.099, 0.841], + [0.055, 0.745, 0.013, 0.187], + [0.615, 0.147, 0.039, 0.2], + [0.146, 0.427, 0.277, 0.149], + [0.333, 0.2, 0.078, 0.389], + [0.302, 0.273, 0.365, 0.059], + [0.547, 0.067, 0.144, 0.243], + [0.019, 0.929, 0.0, 0.052], + [0.816, 0.002, 0.081, 0.102], + [0.03, 0.834, 0.118, 0.017], + [0.168, 0.457, 0.068, 0.308], + [0.172, 0.192, 0.078, 0.558], + ], + ELK4: [ + [0.462, 0.116, 0.319, 0.103], + [0.008, 0.638, 0.097, 0.257], + [0.111, 0.0, 0.003, 0.887], + [0.002, 0.0, 0.0, 0.998], + [0.006, 0.994, 0.001, 0.0], + [0.005, 0.973, 0.0, 0.021], + [0.026, 0.021, 0.674, 0.279], + [0.053, 0.189, 0.653, 0.104], + ], + STAT3: [ + [0.082, 0.065, 0.078, 0.776], + [0.081, 0.012, 0.257, 0.649], + [0.192, 0.668, 0.07, 0.07], + [0.024, 0.748, 0.01, 0.218], + [0.313, 0.165, 0.35, 0.172], + [0.136, 0.003, 0.856, 0.005], + [0.03, 0.016, 0.819, 0.135], + [0.961, 0.028, 0.003, 0.008], + [0.964, 0.01, 0.022, 0.004], + ], + NR2F6: [ + [0.143, 0.125, 0.165, 0.567], + [0.12, 0.112, 0.629, 0.139], + [0.415, 0.123, 0.394, 0.068], + [0.484, 0.282, 0.129, 0.105], + [0.025, 0.949, 0.023, 0.003], + [0.015, 0.262, 0.028, 0.695], + [0.034, 0.196, 0.034, 0.736], + [0.007, 0.091, 0.001, 0.901], + [0.031, 0.012, 0.927, 0.03], + [0.44, 0.167, 0.271, 0.122], + [0.354, 0.392, 0.054, 0.199], + [0.05, 0.839, 0.046, 0.064], + [0.122, 0.363, 0.022, 0.493], + ], + FOXK2: [ + [0.028, 0.014, 0.014, 0.944], + [0.158, 0.004, 0.838, 0.0], + [0.003, 0.017, 0.017, 0.963], + [0.015, 0.0, 0.082, 0.903], + [0.002, 0.0, 0.126, 0.873], + [0.969, 0.007, 0.0, 0.023], + [0.0, 0.734, 0.016, 0.25], + ], + ZNF24: [ + [0.161, 0.533, 0.111, 0.195], + [0.415, 0.227, 0.193, 0.165], + [0.117, 0.311, 0.111, 0.461], + [0.172, 0.106, 0.163, 0.56], + [0.259, 0.569, 0.125, 0.047], + [0.527, 0.239, 0.131, 0.103], + [0.208, 0.089, 0.139, 0.564], + [0.056, 0.06, 0.085, 0.8], + [0.005, 0.968, 0.023, 0.004], + [0.878, 0.059, 0.037, 0.026], + [0.007, 0.149, 0.154, 0.69], + [0.059, 0.047, 0.082, 0.811], + [0.157, 0.656, 0.024, 0.163], + [0.572, 0.178, 0.178, 0.071], + [0.026, 0.091, 0.031, 0.851], + [0.036, 0.019, 0.044, 0.9], + [0.005, 0.984, 0.004, 0.007], + [0.568, 0.182, 0.149, 0.101], + ], + CEBPB: [ + [0.617, 0.049, 0.195, 0.139], + [0.0, 0.0, 0.0, 1.0], + [0.001, 0.0, 0.044, 0.955], + [0.332, 0.0, 0.286, 0.381], + [0.0, 0.998, 0.0, 0.002], + [0.65, 0.123, 0.001, 0.225], + [0.164, 0.363, 0.008, 0.466], + [0.716, 0.276, 0.0, 0.008], + [0.986, 0.001, 0.003, 0.01], + [0.021, 0.302, 0.136, 0.541], + ], + MAX: [ + [0.0, 1.0, 0.0, 0.0], + [0.96, 0.001, 0.018, 0.02], + [0.0, 0.481, 0.004, 0.515], + [0.031, 0.01, 0.96, 0.0], + [0.052, 0.154, 0.0, 0.795], + [0.0, 0.005, 0.92, 0.075], + ], + PPARG: [ + [0.098, 0.123, 0.08, 0.699], + [0.197, 0.143, 0.541, 0.119], + [0.57, 0.252, 0.129, 0.05], + [0.189, 0.72, 0.014, 0.077], + [0.05, 0.822, 0.007, 0.121], + [0.011, 0.161, 0.011, 0.816], + [0.075, 0.224, 0.037, 0.664], + [0.025, 0.061, 0.022, 0.893], + [0.132, 0.201, 0.536, 0.13], + [0.336, 0.316, 0.188, 0.159], + [0.065, 0.74, 0.043, 0.152], + [0.151, 0.727, 0.016, 0.107], + [0.063, 0.445, 0.046, 0.446], + [0.591, 0.145, 0.15, 0.114], + [0.214, 0.319, 0.335, 0.133], + [0.333, 0.09, 0.033, 0.544], + [0.196, 0.103, 0.152, 0.549], + ], + NFIA: [ + [0.057, 0.392, 0.103, 0.449], + [0.012, 0.19, 0.121, 0.677], + [0.045, 0.0, 0.847, 0.109], + [0.032, 0.063, 0.896, 0.009], + [0.286, 0.595, 0.041, 0.078], + [0.331, 0.204, 0.131, 0.334], + [0.206, 0.411, 0.171, 0.211], + [0.23, 0.209, 0.328, 0.234], + [0.187, 0.378, 0.239, 0.196], + [0.25, 0.105, 0.231, 0.413], + [0.042, 0.029, 0.746, 0.183], + [0.002, 0.93, 0.032, 0.035], + [0.0, 0.84, 0.0, 0.16], + [0.721, 0.027, 0.239, 0.013], + [0.37, 0.127, 0.454, 0.048], + ], + EPAS1: [ + [0.746, 0.021, 0.218, 0.015], + [0.002, 0.906, 0.001, 0.091], + [0.091, 0.0, 0.888, 0.021], + [0.004, 0.0, 0.004, 0.992], + [0.0, 0.0, 0.993, 0.007], + ], + JUNB: [ + [0.443, 0.231, 0.271, 0.055], + [0.0, 0.004, 0.001, 0.995], + [0.0, 0.0, 0.86, 0.14], + [0.991, 0.002, 0.0, 0.007], + [0.125, 0.375, 0.452, 0.047], + [0.0, 0.0, 0.0, 1.0], + [0.029, 0.971, 0.0, 0.0], + [0.992, 0.0, 0.008, 0.0], + [0.05, 0.31, 0.202, 0.438], + ], + PBX1: [ + [0.184, 0.032, 0.058, 0.727], + [0.002, 0.137, 0.86, 0.001], + [0.712, 0.16, 0.01, 0.118], + [0.071, 0.195, 0.361, 0.373], + [0.024, 0.001, 0.005, 0.971], + [0.016, 0.198, 0.783, 0.003], + [0.709, 0.001, 0.238, 0.053], + [0.008, 0.717, 0.053, 0.222], + [0.477, 0.004, 0.204, 0.315], + [0.127, 0.076, 0.584, 0.213], + ], + KLF13: [ + [0.098, 0.119, 0.721, 0.062], + [0.134, 0.693, 0.089, 0.084], + [0.11, 0.699, 0.064, 0.127], + [0.423, 0.562, 0.013, 0.001], + [0.002, 0.99, 0.0, 0.009], + [0.111, 0.0, 0.825, 0.065], + [0.0, 0.997, 0.0, 0.003], + [0.001, 0.98, 0.017, 0.003], + [0.049, 0.912, 0.001, 0.038], + [0.286, 0.555, 0.001, 0.158], + [0.027, 0.693, 0.071, 0.209], + ], + ZNF652: [ + [0.015, 0.024, 0.065, 0.896], + [0.006, 0.013, 0.023, 0.958], + [0.837, 0.019, 0.085, 0.058], + [0.949, 0.015, 0.022, 0.014], + [0.01, 0.98, 0.006, 0.004], + [0.034, 0.644, 0.031, 0.291], + [0.122, 0.712, 0.084, 0.082], + [0.095, 0.196, 0.063, 0.646], + [0.097, 0.111, 0.123, 0.669], + [0.14, 0.164, 0.181, 0.515], + [0.282, 0.383, 0.229, 0.106], + [0.286, 0.282, 0.189, 0.242], + [0.224, 0.185, 0.233, 0.357], + [0.162, 0.225, 0.304, 0.309], + [0.218, 0.254, 0.289, 0.239], + [0.176, 0.539, 0.115, 0.17], + ], + "NKX2-1": [ + [0.215, 0.012, 0.773, 0.001], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.002, 0.955, 0.042], + [0.349, 0.001, 0.0, 0.651], + [0.0, 0.0, 0.993, 0.007], + [0.004, 0.004, 0.713, 0.279], + ], + BACH1: [ + [0.015, 0.025, 0.121, 0.839], + [0.081, 0.013, 0.827, 0.079], + [0.72, 0.246, 0.006, 0.027], + [0.196, 0.002, 0.749, 0.054], + [0.005, 0.0, 0.008, 0.988], + [0.039, 0.907, 0.0, 0.054], + [0.915, 0.0, 0.056, 0.029], + [0.036, 0.263, 0.323, 0.377], + ], + HOXA9: [ + [0.209, 0.012, 0.025, 0.754], + [0.115, 0.014, 0.802, 0.068], + [0.974, 0.006, 0.009, 0.011], + [0.028, 0.008, 0.028, 0.935], + [0.085, 0.008, 0.049, 0.858], + [0.077, 0.072, 0.162, 0.689], + [0.978, 0.001, 0.02, 0.002], + [0.027, 0.152, 0.042, 0.779], + [0.224, 0.044, 0.465, 0.267], + [0.268, 0.062, 0.458, 0.211], + ], + TEAD1: [ + [0.255, 0.071, 0.053, 0.621], + [0.006, 0.0, 0.987, 0.007], + [0.006, 0.018, 0.976, 0.0], + [0.816, 0.052, 0.0, 0.131], + [0.998, 0.0, 0.0, 0.002], + [0.0, 0.009, 0.0, 0.991], + [0.0, 0.073, 0.61, 0.317], + [0.043, 0.353, 0.03, 0.573], + ], + ATOH8: [ + [0.462, 0.401, 0.137, 0.0], + [0.004, 0.996, 0.0, 0.0], + [0.999, 0.0, 0.0, 0.001], + [0.0, 0.109, 0.729, 0.162], + [0.063, 0.917, 0.018, 0.003], + [0.0, 0.01, 0.001, 0.988], + [0.0, 0.006, 0.994, 0.0], + [0.045, 0.346, 0.236, 0.372], + [0.096, 0.12, 0.199, 0.585], + [0.104, 0.208, 0.396, 0.293], + [0.22, 0.424, 0.152, 0.204], + [0.092, 0.366, 0.43, 0.111], + ], + NR2C1: [ + [0.366, 0.124, 0.48, 0.03], + [0.608, 0.002, 0.39, 0.0], + [0.0, 0.001, 0.999, 0.0], + [0.0, 0.0, 0.995, 0.005], + [0.0, 0.0, 0.0, 1.0], + [0.0, 0.984, 0.0, 0.016], + [0.974, 0.0, 0.026, 0.0], + ], + E2F7: [ + [0.176, 0.098, 0.214, 0.511], + [0.06, 0.345, 0.595, 0.0], + [0.041, 0.047, 0.9, 0.013], + [0.058, 0.932, 0.0, 0.01], + [0.014, 0.034, 0.927, 0.025], + [0.08, 0.208, 0.703, 0.008], + [0.023, 0.102, 0.866, 0.009], + [0.941, 0.008, 0.009, 0.041], + [0.642, 0.075, 0.215, 0.069], + ], + SOX2: [ + [0.98, 0.001, 0.0, 0.019], + [0.0, 0.919, 0.024, 0.057], + [0.999, 0.0, 0.0, 0.001], + [1.0, 0.0, 0.0, 0.0], + [0.57, 0.003, 0.001, 0.426], + [0.068, 0.008, 0.924, 0.001], + [0.332, 0.201, 0.418, 0.048], + ], + CTCFL: [ + [0.071, 0.788, 0.103, 0.039], + [0.032, 0.915, 0.039, 0.014], + [0.452, 0.093, 0.31, 0.145], + [0.065, 0.547, 0.37, 0.019], + [0.143, 0.457, 0.111, 0.289], + [0.723, 0.111, 0.105, 0.061], + [0.005, 0.019, 0.972, 0.003], + [0.243, 0.025, 0.722, 0.011], + [0.056, 0.135, 0.594, 0.215], + [0.006, 0.025, 0.958, 0.012], + [0.013, 0.043, 0.903, 0.041], + [0.106, 0.846, 0.011, 0.038], + [0.223, 0.046, 0.692, 0.039], + [0.065, 0.607, 0.244, 0.085], + ], + PKNOX1: [ + [0.159, 0.576, 0.136, 0.129], + [0.176, 0.241, 0.031, 0.552], + [0.293, 0.011, 0.682, 0.014], + [0.0, 0.223, 0.005, 0.772], + [0.114, 0.806, 0.041, 0.039], + [0.773, 0.099, 0.007, 0.121], + [0.528, 0.213, 0.215, 0.044], + [0.004, 0.004, 0.0, 0.992], + [0.003, 0.982, 0.0, 0.015], + [0.836, 0.027, 0.01, 0.128], + ], + NFKB1: [ + [0.044, 0.011, 0.936, 0.009], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 0.978, 0.022], + [0.402, 0.0, 0.572, 0.026], + [0.7, 0.088, 0.154, 0.057], + [0.559, 0.038, 0.056, 0.347], + [0.18, 0.153, 0.132, 0.535], + [0.08, 0.436, 0.029, 0.454], + [0.105, 0.825, 0.001, 0.069], + [0.013, 0.968, 0.001, 0.018], + [0.103, 0.801, 0.024, 0.072], + ], + ISL1: [ + [0.0, 0.828, 0.017, 0.156], + [0.474, 0.403, 0.003, 0.121], + [0.984, 0.014, 0.002, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.0, 0.0, 0.0, 0.999], + [0.976, 0.0, 0.0, 0.024], + ], + HLF: [ + [0.295, 0.158, 0.526, 0.021], + [0.0, 0.001, 0.0, 0.999], + [0.0, 0.0, 0.002, 0.998], + [0.585, 0.003, 0.409, 0.003], + [0.004, 0.531, 0.009, 0.456], + [0.607, 0.013, 0.38, 0.0], + [0.003, 0.243, 0.002, 0.752], + [0.92, 0.079, 0.001, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.027, 0.508, 0.167, 0.298], + ], + ATF4: [ + [0.606, 0.118, 0.244, 0.032], + [0.0, 0.001, 0.0, 0.999], + [0.0, 0.0, 0.056, 0.944], + [0.219, 0.002, 0.558, 0.221], + [0.007, 0.992, 0.0, 0.0], + [0.928, 0.017, 0.053, 0.002], + [0.01, 0.017, 0.011, 0.962], + [0.043, 0.948, 0.009, 0.001], + [0.985, 0.0, 0.014, 0.001], + [0.01, 0.195, 0.209, 0.586], + ], + RARG: [ + [0.58, 0.02, 0.397, 0.003], + [0.019, 0.0, 0.851, 0.129], + [0.033, 0.0, 0.923, 0.044], + [0.007, 0.021, 0.09, 0.881], + [0.0, 0.9, 0.072, 0.028], + [0.94, 0.002, 0.046, 0.012], + [0.128, 0.392, 0.32, 0.16], + [0.257, 0.315, 0.258, 0.17], + [0.171, 0.242, 0.426, 0.161], + [0.127, 0.203, 0.102, 0.568], + [0.2, 0.064, 0.69, 0.046], + [0.466, 0.234, 0.18, 0.119], + [0.049, 0.705, 0.118, 0.127], + [0.157, 0.631, 0.093, 0.12], + ], + WT1: [ + [0.16, 0.355, 0.072, 0.413], + [0.364, 0.614, 0.016, 0.006], + [0.001, 0.998, 0.0, 0.001], + [0.0, 0.001, 0.056, 0.943], + [0.0, 0.995, 0.002, 0.003], + [0.0, 0.998, 0.0, 0.002], + [0.001, 0.938, 0.0, 0.061], + [0.201, 0.286, 0.053, 0.46], + ], + RUNX3: [ + [0.045, 0.073, 0.01, 0.872], + [0.0, 0.001, 0.999, 0.0], + [0.041, 0.124, 0.003, 0.832], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.116, 0.112, 0.772], + [0.082, 0.235, 0.109, 0.574], + [0.335, 0.068, 0.173, 0.425], + ], + SP3: [ + [0.267, 0.147, 0.511, 0.075], + [0.121, 0.024, 0.631, 0.225], + [0.241, 0.0, 0.759, 0.001], + [0.002, 0.0, 0.997, 0.001], + [0.001, 0.002, 0.996, 0.001], + [0.183, 0.69, 0.0, 0.127], + [0.02, 0.004, 0.968, 0.008], + [0.008, 0.002, 0.867, 0.123], + [0.267, 0.027, 0.651, 0.056], + [0.076, 0.057, 0.836, 0.031], + [0.106, 0.81, 0.003, 0.08], + ], + HSF2: [ + [0.238, 0.574, 0.134, 0.054], + [0.083, 0.261, 0.14, 0.516], + [0.555, 0.025, 0.417, 0.003], + [0.0, 0.0, 1.0, 0.0], + [0.992, 0.002, 0.0, 0.007], + [0.922, 0.013, 0.019, 0.046], + [0.207, 0.292, 0.292, 0.209], + [0.251, 0.25, 0.325, 0.174], + [0.049, 0.035, 0.022, 0.894], + [0.007, 0.002, 0.029, 0.963], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.292, 0.008, 0.7], + [0.654, 0.022, 0.32, 0.003], + [0.0, 0.0, 0.997, 0.003], + [0.933, 0.013, 0.025, 0.029], + [0.83, 0.044, 0.091, 0.034], + [0.292, 0.28, 0.297, 0.13], + [0.261, 0.22, 0.284, 0.235], + [0.196, 0.207, 0.158, 0.439], + [0.146, 0.175, 0.217, 0.463], + [0.156, 0.568, 0.199, 0.077], + ], + SNAI2: [ + [0.028, 0.971, 0.0, 0.001], + [1.0, 0.0, 0.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.0, 0.0, 1.0, 0.0], + [0.004, 0.501, 0.0, 0.496], + ], + NR2F2: [ + [0.0, 0.083, 0.002, 0.915], + [0.007, 0.001, 0.991, 0.0], + [0.89, 0.076, 0.034, 0.0], + [0.003, 0.994, 0.003, 0.0], + [0.006, 0.993, 0.0, 0.0], + [0.001, 0.334, 0.023, 0.642], + [0.063, 0.458, 0.192, 0.288], + ], + BCL11A: [ + [0.077, 0.282, 0.094, 0.548], + [0.079, 0.745, 0.042, 0.135], + [0.84, 0.003, 0.099, 0.057], + [0.006, 0.642, 0.214, 0.138], + [0.067, 0.001, 0.001, 0.932], + [0.004, 0.0, 0.0, 0.996], + [0.001, 0.988, 0.001, 0.011], + [0.005, 0.85, 0.001, 0.144], + [0.009, 0.245, 0.156, 0.589], + [0.032, 0.538, 0.211, 0.218], + [0.197, 0.196, 0.044, 0.563], + [0.171, 0.163, 0.084, 0.582], + ], + MLX: [ + [0.172, 0.222, 0.508, 0.099], + [0.288, 0.142, 0.4, 0.17], + [0.112, 0.342, 0.245, 0.301], + [0.027, 0.794, 0.088, 0.09], + [0.716, 0.0, 0.269, 0.015], + [0.0, 0.924, 0.021, 0.054], + [0.198, 0.003, 0.799, 0.0], + [0.037, 0.0, 0.048, 0.915], + [0.037, 0.064, 0.795, 0.105], + [0.34, 0.275, 0.289, 0.096], + [0.099, 0.59, 0.186, 0.125], + ], + ETV7: [ + [0.227, 0.548, 0.222, 0.003], + [0.471, 0.477, 0.047, 0.005], + [0.012, 0.002, 0.984, 0.002], + [0.041, 0.06, 0.885, 0.013], + [0.992, 0.0, 0.002, 0.006], + [0.951, 0.021, 0.001, 0.027], + [0.265, 0.108, 0.623, 0.004], + [0.138, 0.296, 0.091, 0.474], + ], + FOXO1: [ + [0.06, 0.015, 0.021, 0.904], + [0.115, 0.0, 0.885, 0.0], + [0.006, 0.038, 0.001, 0.955], + [0.0, 0.0, 0.025, 0.975], + [0.0, 0.0, 0.109, 0.891], + [0.832, 0.071, 0.062, 0.034], + [0.001, 0.662, 0.0, 0.336], + ], + MEF2B: [ + [0.029, 0.8, 0.048, 0.123], + [0.003, 0.037, 0.064, 0.896], + [0.826, 0.029, 0.072, 0.073], + [0.193, 0.031, 0.032, 0.744], + [0.161, 0.034, 0.053, 0.752], + [0.101, 0.062, 0.017, 0.82], + [0.268, 0.111, 0.05, 0.572], + [0.153, 0.078, 0.1, 0.668], + [0.57, 0.026, 0.404, 0.001], + [0.133, 0.068, 0.668, 0.131], + ], + ZNF467: [ + [0.309, 0.075, 0.489, 0.127], + [0.246, 0.099, 0.506, 0.148], + [0.218, 0.135, 0.533, 0.114], + [0.28, 0.067, 0.577, 0.077], + [0.14, 0.073, 0.732, 0.055], + [0.124, 0.035, 0.821, 0.019], + [0.179, 0.023, 0.778, 0.02], + [0.665, 0.034, 0.289, 0.011], + [0.244, 0.02, 0.685, 0.051], + [0.241, 0.086, 0.654, 0.02], + [0.227, 0.076, 0.655, 0.042], + [0.147, 0.049, 0.705, 0.098], + [0.437, 0.227, 0.26, 0.076], + [0.28, 0.243, 0.39, 0.087], + [0.35, 0.116, 0.417, 0.117], + [0.185, 0.138, 0.595, 0.082], + [0.227, 0.093, 0.614, 0.065], + [0.395, 0.115, 0.446, 0.044], + [0.198, 0.104, 0.625, 0.073], + [0.234, 0.057, 0.636, 0.074], + [0.245, 0.054, 0.664, 0.038], + [0.198, 0.055, 0.707, 0.041], + [0.222, 0.061, 0.678, 0.039], + [0.324, 0.051, 0.605, 0.02], + [0.31, 0.179, 0.464, 0.046], + [0.249, 0.117, 0.569, 0.065], + [0.17, 0.127, 0.659, 0.045], + [0.389, 0.096, 0.425, 0.089], + [0.388, 0.098, 0.448, 0.066], + ], + KLF6: [ + [0.038, 0.073, 0.889, 0.0], + [0.001, 0.062, 0.937, 0.0], + [0.0, 0.001, 0.999, 0.0], + [0.033, 0.771, 0.0, 0.196], + [0.0, 0.0, 0.999, 0.001], + [0.045, 0.085, 0.549, 0.321], + [0.132, 0.155, 0.617, 0.096], + [0.091, 0.143, 0.617, 0.15], + [0.112, 0.526, 0.196, 0.166], + ], + RXRA: [ + [0.671, 0.023, 0.306, 0.0], + [0.005, 0.038, 0.949, 0.008], + [0.0, 0.001, 0.814, 0.185], + [0.01, 0.024, 0.029, 0.937], + [0.002, 0.888, 0.003, 0.107], + [0.968, 0.001, 0.031, 0.0], + ], + TFAP2A: [ + [0.172, 0.113, 0.593, 0.121], + [0.008, 0.612, 0.361, 0.019], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.949, 0.0, 0.051], + [0.023, 0.281, 0.039, 0.656], + [0.082, 0.373, 0.503, 0.043], + [0.525, 0.071, 0.387, 0.017], + [0.088, 0.0, 0.912, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.022, 0.578, 0.383, 0.018], + ], + FOSL1: [ + [0.423, 0.146, 0.36, 0.071], + [0.007, 0.063, 0.016, 0.915], + [0.002, 0.007, 0.942, 0.049], + [0.908, 0.074, 0.0, 0.018], + [0.064, 0.648, 0.099, 0.188], + [0.021, 0.0, 0.212, 0.768], + [0.129, 0.847, 0.002, 0.023], + [0.796, 0.137, 0.034, 0.032], + ], + GATA1: [ + [0.658, 0.028, 0.012, 0.302], + [0.0, 0.0, 1.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.949, 0.0, 0.0, 0.051], + [0.858, 0.011, 0.093, 0.037], + [0.148, 0.195, 0.543, 0.114], + ], + JUN: [ + [0.029, 0.054, 0.008, 0.909], + [0.017, 0.009, 0.899, 0.076], + [0.967, 0.027, 0.0, 0.006], + [0.076, 0.515, 0.342, 0.067], + [0.082, 0.037, 0.078, 0.802], + [0.108, 0.815, 0.058, 0.018], + [0.841, 0.022, 0.098, 0.039], + ], + NFE2L2: [ + [0.586, 0.114, 0.282, 0.019], + [0.008, 0.104, 0.0, 0.888], + [0.009, 0.008, 0.954, 0.029], + [0.931, 0.027, 0.027, 0.016], + [0.036, 0.7, 0.18, 0.084], + [0.165, 0.077, 0.084, 0.675], + [0.164, 0.612, 0.115, 0.11], + [0.619, 0.054, 0.156, 0.17], + [0.071, 0.0, 0.883, 0.045], + [0.001, 0.957, 0.013, 0.029], + [0.697, 0.014, 0.167, 0.122], + ], + FOXJ2: [ + [0.0, 0.001, 0.013, 0.986], + [0.047, 0.0, 0.953, 0.0], + [0.003, 0.004, 0.0, 0.993], + [0.005, 0.0, 0.03, 0.965], + [0.0, 0.0, 0.123, 0.877], + [0.734, 0.068, 0.133, 0.065], + [0.001, 0.542, 0.029, 0.427], + ], + TFE3: [ + [0.255, 0.14, 0.528, 0.077], + [0.096, 0.237, 0.126, 0.541], + [0.005, 0.986, 0.007, 0.002], + [0.811, 0.073, 0.075, 0.042], + [0.0, 0.737, 0.05, 0.213], + [0.234, 0.027, 0.733, 0.006], + [0.147, 0.131, 0.05, 0.672], + [0.012, 0.0, 0.962, 0.026], + ], + ZNF740: [ + [0.145, 0.142, 0.555, 0.158], + [0.118, 0.15, 0.587, 0.146], + [0.121, 0.114, 0.615, 0.15], + [0.091, 0.059, 0.607, 0.243], + [0.073, 0.029, 0.533, 0.365], + [0.0, 0.0, 0.999, 0.001], + [0.0, 0.0, 1.0, 0.0], + [0.001, 0.0, 0.999, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.115, 0.0, 0.658, 0.227], + [0.002, 0.0, 0.989, 0.009], + [0.151, 0.491, 0.096, 0.262], + [0.257, 0.177, 0.415, 0.152], + [0.143, 0.178, 0.538, 0.142], + ], + ELF4: [ + [0.567, 0.073, 0.237, 0.124], + [0.0, 0.83, 0.059, 0.11], + [0.007, 0.0, 0.0, 0.993], + [0.002, 0.001, 0.001, 0.997], + [0.0, 1.0, 0.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.001, 0.028, 0.459, 0.512], + [0.032, 0.206, 0.674, 0.088], + ], + ZNF257: [ + [0.043, 0.06, 0.815, 0.083], + [0.71, 0.094, 0.015, 0.18], + [0.017, 0.0, 0.982, 0.0], + [0.0, 0.0, 0.999, 0.001], + [0.201, 0.716, 0.001, 0.083], + [0.72, 0.0, 0.279, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.001, 0.003, 0.93, 0.066], + [0.413, 0.162, 0.409, 0.016], + [0.189, 0.126, 0.417, 0.267], + [0.153, 0.598, 0.137, 0.113], + ], + PAX3: [ + [0.368, 0.042, 0.192, 0.398], + [0.795, 0.096, 0.084, 0.025], + [0.982, 0.001, 0.002, 0.015], + [0.069, 0.082, 0.058, 0.791], + [0.009, 0.476, 0.184, 0.332], + [0.465, 0.156, 0.375, 0.003], + [0.86, 0.0, 0.076, 0.064], + [0.009, 0.014, 0.008, 0.969], + [0.014, 0.114, 0.122, 0.749], + ], + EGR1: [ + [0.16, 0.083, 0.737, 0.02], + [0.179, 0.485, 0.113, 0.223], + [0.007, 0.0, 0.993, 0.0], + [0.012, 0.028, 0.422, 0.538], + [0.087, 0.019, 0.888, 0.006], + [0.005, 0.002, 0.982, 0.011], + [0.008, 0.0, 0.989, 0.003], + [0.239, 0.48, 0.002, 0.278], + [0.051, 0.019, 0.895, 0.035], + [0.064, 0.052, 0.694, 0.189], + ], + NFYB: [ + [0.321, 0.231, 0.416, 0.032], + [0.563, 0.035, 0.337, 0.065], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.998, 0.002, 0.0], + [0.984, 0.0, 0.0, 0.016], + [0.995, 0.001, 0.003, 0.001], + [0.0, 0.013, 0.0, 0.987], + [0.059, 0.746, 0.173, 0.022], + [0.737, 0.046, 0.212, 0.005], + [0.098, 0.136, 0.725, 0.04], + [0.303, 0.454, 0.137, 0.106], + [0.42, 0.063, 0.342, 0.176], + [0.114, 0.428, 0.304, 0.154], + [0.114, 0.265, 0.265, 0.356], + [0.192, 0.49, 0.184, 0.134], + [0.177, 0.159, 0.2, 0.464], + [0.109, 0.21, 0.573, 0.108], + ], + ZEB1: [ + [0.046, 0.473, 0.011, 0.47], + [0.806, 0.003, 0.001, 0.19], + [0.003, 0.955, 0.001, 0.042], + [0.008, 0.97, 0.007, 0.016], + [0.011, 0.0, 0.0, 0.989], + [0.081, 0.018, 0.808, 0.093], + [0.06, 0.16, 0.332, 0.448], + ], + RFX2: [ + [0.141, 0.001, 0.85, 0.008], + [0.028, 0.094, 0.1, 0.778], + [0.125, 0.246, 0.022, 0.607], + [0.182, 0.03, 0.573, 0.215], + [0.023, 0.835, 0.051, 0.091], + [0.0, 0.736, 0.04, 0.224], + [0.621, 0.138, 0.102, 0.139], + [0.235, 0.054, 0.244, 0.467], + [0.061, 0.08, 0.858, 0.001], + [0.133, 0.068, 0.757, 0.043], + [0.239, 0.375, 0.244, 0.142], + [0.558, 0.081, 0.271, 0.09], + [0.595, 0.18, 0.074, 0.151], + [0.177, 0.546, 0.023, 0.254], + ], + THAP11: [ + [0.037, 0.215, 0.39, 0.358], + [0.099, 0.733, 0.093, 0.075], + [0.008, 0.191, 0.008, 0.793], + [0.009, 0.01, 0.959, 0.022], + [0.006, 0.005, 0.977, 0.011], + [0.036, 0.002, 0.946, 0.016], + [0.834, 0.037, 0.075, 0.054], + [0.472, 0.136, 0.319, 0.074], + [0.366, 0.095, 0.096, 0.443], + [0.011, 0.094, 0.026, 0.869], + [0.009, 0.002, 0.988, 0.002], + [0.025, 0.043, 0.043, 0.889], + [0.935, 0.001, 0.058, 0.006], + [0.004, 0.002, 0.993, 0.001], + [0.0, 0.008, 0.01, 0.982], + [0.029, 0.504, 0.026, 0.442], + [0.032, 0.574, 0.022, 0.371], + ], + NR4A1: [ + [0.01, 0.055, 0.001, 0.934], + [0.084, 0.0, 0.916, 0.0], + [0.793, 0.104, 0.101, 0.003], + [0.033, 0.954, 0.0, 0.013], + [0.289, 0.699, 0.0, 0.012], + [0.0, 0.0, 0.0, 0.999], + [0.015, 0.0, 0.0, 0.985], + [0.058, 0.082, 0.0, 0.86], + ], + TFDP1: [ + [0.104, 0.143, 0.219, 0.533], + [0.004, 0.751, 0.244, 0.0], + [0.0, 0.672, 0.327, 0.0], + [0.001, 0.998, 0.0, 0.001], + [0.001, 0.0, 0.976, 0.023], + [0.0, 0.999, 0.001, 0.0], + [0.0, 0.633, 0.267, 0.1], + ], + MYOG: [ + [0.481, 0.177, 0.32, 0.022], + [0.596, 0.082, 0.272, 0.05], + [0.035, 0.932, 0.017, 0.017], + [0.953, 0.009, 0.029, 0.008], + [0.046, 0.019, 0.883, 0.052], + [0.047, 0.832, 0.109, 0.012], + [0.012, 0.011, 0.004, 0.973], + [0.001, 0.003, 0.98, 0.017], + ], + HOXA13: [ + [0.066, 0.093, 0.219, 0.622], + [0.003, 0.119, 0.037, 0.84], + [0.028, 0.059, 0.003, 0.911], + [0.04, 0.077, 0.01, 0.873], + [0.856, 0.099, 0.045, 0.0], + [0.002, 0.065, 0.057, 0.875], + [0.256, 0.158, 0.252, 0.335], + [0.245, 0.01, 0.718, 0.027], + [0.055, 0.423, 0.396, 0.126], + ], + PAX7: [ + [0.489, 0.059, 0.131, 0.321], + [0.853, 0.061, 0.07, 0.016], + [0.983, 0.0, 0.0, 0.017], + [0.059, 0.04, 0.002, 0.9], + [0.009, 0.499, 0.24, 0.251], + [0.387, 0.237, 0.366, 0.01], + [0.907, 0.001, 0.071, 0.022], + [0.103, 0.005, 0.009, 0.883], + [0.001, 0.057, 0.119, 0.823], + ], + SCRT1: [ + [0.189, 0.566, 0.108, 0.136], + [0.948, 0.001, 0.045, 0.006], + [0.023, 0.958, 0.002, 0.017], + [0.012, 0.779, 0.004, 0.205], + [0.015, 0.0, 0.001, 0.984], + [0.0, 0.0, 1.0, 0.0], + [0.012, 0.031, 0.0, 0.957], + [0.085, 0.035, 0.186, 0.693], + [0.047, 0.01, 0.932, 0.012], + [0.372, 0.431, 0.121, 0.076], + ], + HAND2: [ + [0.302, 0.43, 0.218, 0.051], + [0.028, 0.961, 0.01, 0.001], + [0.972, 0.0, 0.025, 0.003], + [0.0, 0.009, 0.296, 0.695], + [0.149, 0.743, 0.106, 0.002], + [0.0, 0.001, 0.0, 0.999], + [0.0, 0.0, 0.999, 0.0], + [0.005, 0.204, 0.496, 0.295], + ], + ZNF554: [ + [0.214, 0.094, 0.575, 0.117], + [0.175, 0.669, 0.104, 0.052], + [0.221, 0.081, 0.051, 0.647], + [0.011, 0.028, 0.927, 0.033], + [0.784, 0.01, 0.191, 0.015], + [0.055, 0.104, 0.835, 0.006], + [0.003, 0.374, 0.006, 0.617], + [0.007, 0.987, 0.002, 0.004], + [0.82, 0.034, 0.112, 0.033], + ], + SOX10: [ + [0.839, 0.083, 0.058, 0.02], + [0.786, 0.034, 0.061, 0.119], + [0.467, 0.038, 0.188, 0.307], + [0.263, 0.048, 0.568, 0.12], + [0.251, 0.281, 0.379, 0.088], + [0.25, 0.231, 0.28, 0.239], + [0.151, 0.308, 0.244, 0.298], + [0.051, 0.41, 0.239, 0.3], + [0.052, 0.699, 0.056, 0.193], + [0.426, 0.077, 0.009, 0.488], + [0.006, 0.076, 0.01, 0.908], + [0.0, 0.0, 0.0, 1.0], + [0.043, 0.009, 0.949, 0.0], + [0.002, 0.0, 0.0, 0.998], + [0.123, 0.157, 0.192, 0.528], + [0.108, 0.394, 0.064, 0.434], + ], + NR5A2: [ + [0.056, 0.173, 0.041, 0.729], + [0.131, 0.034, 0.824, 0.011], + [0.33, 0.08, 0.387, 0.202], + [0.013, 0.981, 0.0, 0.005], + [0.026, 0.972, 0.0, 0.002], + [0.04, 0.092, 0.004, 0.864], + [0.004, 0.034, 0.0, 0.962], + [0.0, 0.114, 0.886, 0.0], + [0.627, 0.054, 0.229, 0.09], + ], + ETV6: [ + [0.551, 0.119, 0.232, 0.098], + [0.142, 0.469, 0.363, 0.026], + [0.664, 0.245, 0.089, 0.002], + [0.028, 0.001, 0.971, 0.0], + [0.018, 0.0, 0.98, 0.002], + [0.994, 0.003, 0.001, 0.002], + [0.954, 0.0, 0.001, 0.045], + [0.274, 0.031, 0.694, 0.001], + [0.067, 0.229, 0.054, 0.651], + ], + ZFP64: [ + [0.265, 0.004, 0.683, 0.048], + [0.018, 0.976, 0.001, 0.005], + [0.007, 0.989, 0.0, 0.004], + [0.034, 0.946, 0.0, 0.019], + [0.13, 0.201, 0.438, 0.231], + [0.051, 0.0, 0.925, 0.024], + [0.047, 0.049, 0.837, 0.067], + [0.524, 0.198, 0.22, 0.058], + [0.391, 0.378, 0.201, 0.03], + [0.14, 0.394, 0.104, 0.362], + [0.188, 0.45, 0.233, 0.129], + [0.233, 0.192, 0.272, 0.303], + [0.078, 0.16, 0.691, 0.071], + ], + TP73: [ + [0.265, 0.047, 0.534, 0.155], + [0.428, 0.018, 0.506, 0.048], + [0.017, 0.98, 0.002, 0.001], + [0.78, 0.012, 0.115, 0.093], + [0.293, 0.039, 0.094, 0.574], + [0.0, 0.0, 0.97, 0.03], + [0.084, 0.374, 0.0, 0.541], + [0.098, 0.477, 0.075, 0.351], + [0.139, 0.332, 0.202, 0.327], + [0.302, 0.173, 0.391, 0.134], + [0.303, 0.121, 0.437, 0.138], + [0.498, 0.039, 0.356, 0.107], + [0.039, 0.947, 0.0, 0.014], + [0.623, 0.073, 0.048, 0.256], + [0.16, 0.132, 0.094, 0.615], + [0.064, 0.036, 0.849, 0.051], + [0.134, 0.432, 0.07, 0.364], + [0.199, 0.491, 0.085, 0.226], + ], + THRA: [ + [0.031, 0.06, 0.01, 0.899], + [0.053, 0.065, 0.875, 0.007], + [0.473, 0.033, 0.077, 0.417], + [0.017, 0.981, 0.0, 0.002], + [0.002, 0.998, 0.0, 0.0], + [0.002, 0.18, 0.002, 0.816], + [0.041, 0.631, 0.132, 0.196], + [0.772, 0.021, 0.194, 0.014], + [0.225, 0.204, 0.321, 0.25], + [0.346, 0.144, 0.297, 0.213], + [0.033, 0.058, 0.017, 0.892], + [0.173, 0.072, 0.731, 0.024], + [0.832, 0.065, 0.091, 0.012], + [0.093, 0.882, 0.0, 0.026], + [0.012, 0.959, 0.0, 0.029], + ], + ZNF140: [ + [0.198, 0.103, 0.54, 0.159], + [0.193, 0.177, 0.26, 0.37], + [0.406, 0.152, 0.29, 0.152], + [0.225, 0.183, 0.24, 0.352], + [0.448, 0.193, 0.183, 0.176], + [0.179, 0.174, 0.168, 0.479], + [0.443, 0.135, 0.265, 0.156], + [0.197, 0.387, 0.229, 0.186], + [0.245, 0.393, 0.206, 0.155], + [0.241, 0.139, 0.214, 0.406], + [0.487, 0.09, 0.215, 0.207], + [0.131, 0.018, 0.669, 0.183], + [0.139, 0.0, 0.859, 0.002], + [0.795, 0.012, 0.191, 0.002], + [0.039, 0.115, 0.824, 0.022], + [0.028, 0.487, 0.03, 0.455], + [0.214, 0.002, 0.698, 0.086], + [0.007, 0.0, 0.902, 0.091], + [0.997, 0.0, 0.0, 0.002], + [0.953, 0.004, 0.041, 0.002], + [0.004, 0.066, 0.039, 0.89], + [0.09, 0.041, 0.055, 0.814], + [0.032, 0.006, 0.95, 0.012], + [0.047, 0.749, 0.04, 0.164], + [0.211, 0.129, 0.062, 0.598], + [0.215, 0.146, 0.529, 0.11], + ], + ZNF549: [ + [0.077, 0.16, 0.127, 0.637], + [0.073, 0.632, 0.038, 0.257], + [0.918, 0.027, 0.032, 0.023], + [0.108, 0.045, 0.359, 0.487], + [0.115, 0.228, 0.447, 0.21], + [0.446, 0.177, 0.224, 0.152], + [0.626, 0.022, 0.23, 0.122], + [0.09, 0.482, 0.054, 0.374], + [0.329, 0.223, 0.039, 0.409], + [0.186, 0.006, 0.751, 0.057], + [0.024, 0.058, 0.881, 0.037], + [0.136, 0.114, 0.733, 0.017], + [0.067, 0.883, 0.014, 0.036], + [0.788, 0.052, 0.088, 0.072], + [0.034, 0.019, 0.927, 0.02], + [0.05, 0.821, 0.069, 0.061], + ], + MEF2C: [ + [0.049, 0.721, 0.041, 0.189], + [0.001, 0.01, 0.0, 0.989], + [0.973, 0.0, 0.004, 0.022], + [0.165, 0.0, 0.0, 0.835], + [0.214, 0.009, 0.002, 0.774], + [0.16, 0.04, 0.003, 0.798], + [0.284, 0.084, 0.013, 0.619], + [0.146, 0.033, 0.07, 0.751], + [0.66, 0.0, 0.337, 0.003], + [0.144, 0.054, 0.649, 0.152], + ], + GFI1: [ + [0.593, 0.23, 0.087, 0.09], + [0.991, 0.0, 0.0, 0.008], + [0.999, 0.0, 0.0, 0.0], + [0.002, 0.141, 0.0, 0.857], + [0.0, 0.996, 0.0, 0.004], + [0.562, 0.0, 0.004, 0.434], + [0.081, 0.648, 0.268, 0.002], + [0.581, 0.006, 0.095, 0.318], + [0.086, 0.03, 0.792, 0.092], + ], + ZNF768: [ + [0.069, 0.697, 0.144, 0.09], + [0.049, 0.181, 0.074, 0.696], + [0.057, 0.098, 0.653, 0.192], + [0.061, 0.085, 0.183, 0.671], + [0.054, 0.06, 0.69, 0.196], + [0.061, 0.107, 0.184, 0.648], + [0.13, 0.083, 0.609, 0.178], + [0.539, 0.088, 0.232, 0.141], + [0.133, 0.595, 0.09, 0.182], + [0.105, 0.58, 0.073, 0.242], + [0.088, 0.222, 0.086, 0.604], + [0.087, 0.179, 0.104, 0.63], + [0.214, 0.113, 0.504, 0.17], + [0.206, 0.09, 0.608, 0.096], + [0.206, 0.098, 0.599, 0.097], + [0.124, 0.54, 0.151, 0.185], + [0.624, 0.132, 0.124, 0.119], + [0.637, 0.089, 0.165, 0.11], + [0.221, 0.105, 0.577, 0.097], + [0.095, 0.138, 0.109, 0.658], + [0.11, 0.28, 0.145, 0.466], + [0.509, 0.141, 0.205, 0.144], + [0.121, 0.693, 0.08, 0.105], + [0.088, 0.147, 0.084, 0.681], + [0.087, 0.205, 0.1, 0.608], + [0.575, 0.11, 0.192, 0.123], + [0.606, 0.219, 0.148, 0.027], + [0.059, 0.828, 0.035, 0.079], + [0.046, 0.687, 0.119, 0.148], + [0.031, 0.023, 0.019, 0.928], + [0.008, 0.896, 0.015, 0.081], + [0.004, 0.014, 0.028, 0.953], + [0.0, 0.999, 0.001, 0.0], + [0.006, 0.002, 0.002, 0.99], + [0.004, 0.003, 0.991, 0.002], + [0.395, 0.008, 0.206, 0.391], + [0.1, 0.019, 0.613, 0.269], + [0.022, 0.741, 0.033, 0.205], + [0.093, 0.557, 0.029, 0.32], + [0.097, 0.172, 0.082, 0.65], + [0.116, 0.493, 0.126, 0.265], + [0.428, 0.15, 0.171, 0.251], + [0.193, 0.159, 0.411, 0.237], + [0.122, 0.186, 0.113, 0.578], + [0.108, 0.202, 0.128, 0.562], + [0.123, 0.211, 0.12, 0.546], + [0.126, 0.437, 0.112, 0.325], + [0.148, 0.444, 0.103, 0.306], + [0.185, 0.224, 0.105, 0.486], + [0.181, 0.408, 0.126, 0.285], + [0.402, 0.216, 0.133, 0.249], + [0.169, 0.204, 0.146, 0.481], + [0.173, 0.379, 0.164, 0.284], + [0.193, 0.156, 0.173, 0.478], + [0.28, 0.136, 0.352, 0.232], + [0.275, 0.166, 0.164, 0.394], + [0.499, 0.133, 0.176, 0.191], + [0.526, 0.133, 0.159, 0.183], + ], + ZNF350: [ + [0.087, 0.21, 0.126, 0.576], + [0.295, 0.09, 0.254, 0.361], + [0.256, 0.126, 0.578, 0.04], + [0.176, 0.095, 0.639, 0.089], + [0.085, 0.118, 0.208, 0.589], + [0.19, 0.5, 0.029, 0.281], + [0.729, 0.11, 0.054, 0.108], + [0.149, 0.114, 0.048, 0.689], + [0.912, 0.048, 0.006, 0.034], + [0.927, 0.045, 0.017, 0.01], + [0.987, 0.004, 0.007, 0.002], + [0.859, 0.01, 0.113, 0.018], + [0.384, 0.047, 0.486, 0.082], + [0.325, 0.054, 0.537, 0.084], + [0.276, 0.178, 0.386, 0.16], + [0.185, 0.645, 0.077, 0.093], + ], + SMAD4: [ + [0.078, 0.189, 0.616, 0.117], + [0.132, 0.17, 0.081, 0.617], + [0.03, 0.077, 0.833, 0.06], + [0.25, 0.38, 0.16, 0.21], + [0.037, 0.622, 0.19, 0.15], + [0.998, 0.001, 0.0, 0.0], + [0.001, 0.0, 0.998, 0.0], + [0.777, 0.16, 0.008, 0.055], + [0.0, 1.0, 0.0, 0.0], + [0.518, 0.053, 0.162, 0.266], + ], + CREB1: [ + [0.009, 0.027, 0.007, 0.957], + [0.0, 0.003, 0.994, 0.004], + [0.999, 0.0, 0.0, 0.001], + [0.0, 0.999, 0.0, 0.001], + [0.038, 0.338, 0.335, 0.29], + [0.075, 0.415, 0.051, 0.459], + ], + ELF5: [ + [0.242, 0.201, 0.49, 0.067], + [0.487, 0.138, 0.229, 0.146], + [0.876, 0.001, 0.022, 0.1], + [0.108, 0.431, 0.252, 0.209], + [0.224, 0.425, 0.351, 0.0], + [0.657, 0.314, 0.03, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.001, 0.0, 0.999, 0.0], + [1.0, 0.0, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.114, 0.0, 0.886, 0.0], + [0.097, 0.16, 0.077, 0.667], + ], + TWIST1: [ + [0.394, 0.439, 0.138, 0.029], + [0.002, 0.998, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.119, 0.431, 0.45], + [0.263, 0.575, 0.162, 0.001], + [0.0, 0.002, 0.0, 0.998], + [0.0, 0.0, 0.999, 0.001], + [0.002, 0.254, 0.437, 0.307], + ], + GFI1B: [ + [0.634, 0.221, 0.086, 0.06], + [0.975, 0.0, 0.005, 0.019], + [1.0, 0.0, 0.0, 0.0], + [0.002, 0.049, 0.004, 0.945], + [0.0, 0.999, 0.0, 0.001], + [0.655, 0.01, 0.0, 0.335], + [0.133, 0.482, 0.376, 0.009], + [0.487, 0.03, 0.143, 0.34], + [0.1, 0.043, 0.777, 0.08], + [0.122, 0.559, 0.1, 0.22], + ], + NFATC1: [ + [0.564, 0.114, 0.207, 0.116], + [0.596, 0.117, 0.22, 0.067], + [0.125, 0.13, 0.027, 0.717], + [0.004, 0.004, 0.991, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.972, 0.009, 0.007, 0.012], + [0.967, 0.0, 0.024, 0.009], + [0.688, 0.057, 0.054, 0.2], + [0.411, 0.223, 0.212, 0.154], + [0.434, 0.035, 0.191, 0.341], + [0.391, 0.159, 0.168, 0.282], + [0.21, 0.215, 0.065, 0.509], + ], + ZNF770: [ + [0.696, 0.102, 0.142, 0.06], + [0.491, 0.357, 0.078, 0.074], + [0.068, 0.722, 0.071, 0.139], + [0.061, 0.13, 0.062, 0.746], + [0.032, 0.778, 0.065, 0.124], + [0.039, 0.795, 0.055, 0.11], + [0.061, 0.217, 0.069, 0.653], + [0.166, 0.087, 0.669, 0.078], + [0.131, 0.081, 0.731, 0.057], + [0.108, 0.293, 0.548, 0.051], + [0.048, 0.74, 0.082, 0.13], + [0.034, 0.094, 0.074, 0.798], + [0.046, 0.812, 0.063, 0.078], + [0.789, 0.091, 0.067, 0.054], + [0.74, 0.097, 0.109, 0.055], + [0.082, 0.1, 0.743, 0.074], + [0.049, 0.426, 0.081, 0.443], + [0.214, 0.155, 0.576, 0.055], + [0.851, 0.002, 0.141, 0.006], + [0.008, 0.001, 0.213, 0.779], + [0.001, 0.998, 0.0, 0.001], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.0, 0.995, 0.0, 0.005], + [0.003, 0.939, 0.006, 0.051], + [0.088, 0.464, 0.035, 0.413], + [0.399, 0.092, 0.407, 0.102], + [0.039, 0.759, 0.045, 0.156], + [0.032, 0.814, 0.038, 0.117], + [0.023, 0.092, 0.055, 0.829], + [0.028, 0.682, 0.065, 0.225], + [0.61, 0.085, 0.274, 0.031], + [0.037, 0.041, 0.892, 0.03], + [0.031, 0.88, 0.073, 0.017], + [0.018, 0.911, 0.053, 0.019], + [0.019, 0.054, 0.051, 0.876], + [0.011, 0.881, 0.043, 0.065], + [0.016, 0.872, 0.042, 0.069], + [0.084, 0.642, 0.058, 0.215], + [0.588, 0.086, 0.263, 0.064], + [0.779, 0.08, 0.092, 0.049], + [0.434, 0.085, 0.421, 0.06], + [0.083, 0.085, 0.405, 0.427], + [0.418, 0.102, 0.098, 0.382], + [0.105, 0.089, 0.718, 0.088], + [0.048, 0.714, 0.086, 0.152], + [0.049, 0.112, 0.072, 0.767], + [0.136, 0.078, 0.708, 0.078], + [0.123, 0.094, 0.726, 0.057], + [0.126, 0.093, 0.72, 0.061], + [0.742, 0.082, 0.096, 0.08], + [0.073, 0.38, 0.091, 0.455], + [0.08, 0.173, 0.075, 0.672], + [0.712, 0.12, 0.097, 0.071], + [0.099, 0.643, 0.079, 0.179], + [0.724, 0.114, 0.096, 0.065], + [0.142, 0.088, 0.703, 0.066], + [0.128, 0.1, 0.697, 0.075], + [0.088, 0.517, 0.106, 0.289], + [0.399, 0.131, 0.373, 0.097], + [0.089, 0.242, 0.114, 0.555], + [0.232, 0.118, 0.56, 0.09], + ], + STAT5A: [ + [0.0, 0.01, 0.0, 0.99], + [0.075, 0.013, 0.003, 0.91], + [0.001, 0.998, 0.0, 0.0], + [0.058, 0.361, 0.019, 0.561], + [0.303, 0.231, 0.171, 0.294], + [0.506, 0.016, 0.407, 0.07], + [0.006, 0.0, 0.98, 0.015], + [0.877, 0.001, 0.007, 0.115], + [0.994, 0.0, 0.006, 0.0], + ], + ZIM3: [ + [0.974, 0.001, 0.021, 0.004], + [0.932, 0.003, 0.019, 0.046], + [0.089, 0.871, 0.039, 0.001], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.88, 0.075, 0.011, 0.035], + [0.993, 0.001, 0.004, 0.002], + [0.723, 0.031, 0.048, 0.198], + [0.157, 0.293, 0.226, 0.324], + [0.078, 0.902, 0.002, 0.018], + [0.107, 0.376, 0.03, 0.487], + [0.479, 0.245, 0.123, 0.153], + [0.42, 0.221, 0.17, 0.188], + [0.345, 0.156, 0.217, 0.281], + [0.488, 0.155, 0.178, 0.18], + [0.344, 0.187, 0.112, 0.357], + [0.32, 0.225, 0.219, 0.236], + [0.637, 0.13, 0.123, 0.11], + ], + KLF3: [ + [0.185, 0.083, 0.617, 0.116], + [0.157, 0.674, 0.098, 0.07], + [0.076, 0.761, 0.058, 0.104], + [0.406, 0.409, 0.108, 0.077], + [0.006, 0.982, 0.0, 0.012], + [0.366, 0.0, 0.539, 0.094], + [0.005, 0.98, 0.0, 0.014], + [0.0, 0.981, 0.019, 0.0], + [0.005, 0.826, 0.037, 0.132], + ], + ZNF18: [ + [0.292, 0.011, 0.617, 0.081], + [0.005, 0.013, 0.982, 0.0], + [0.012, 0.0, 0.002, 0.986], + [0.005, 0.002, 0.992, 0.001], + [0.046, 0.003, 0.089, 0.862], + [0.025, 0.001, 0.967, 0.007], + [0.925, 0.018, 0.001, 0.056], + [0.733, 0.028, 0.107, 0.131], + [0.012, 0.575, 0.152, 0.262], + ], + GATA4: [ + [0.033, 0.594, 0.207, 0.165], + [0.043, 0.085, 0.01, 0.862], + [0.115, 0.0, 0.0, 0.884], + [1.0, 0.0, 0.0, 0.0], + [0.005, 0.0, 0.0, 0.995], + [0.0, 1.0, 0.0, 0.0], + [0.114, 0.004, 0.002, 0.88], + ], + NEUROD1: [ + [0.296, 0.584, 0.12, 0.0], + [0.009, 0.991, 0.0, 0.0], + [0.992, 0.0, 0.002, 0.006], + [0.001, 0.045, 0.428, 0.526], + [0.237, 0.763, 0.0, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.0, 0.0, 1.0, 0.0], + [0.001, 0.257, 0.361, 0.382], + [0.068, 0.402, 0.09, 0.44], + ], + RELA: [ + [0.097, 0.018, 0.639, 0.246], + [0.0, 0.0, 0.989, 0.011], + [0.039, 0.0, 0.939, 0.022], + [0.586, 0.004, 0.401, 0.009], + [0.632, 0.149, 0.127, 0.092], + [0.377, 0.055, 0.04, 0.527], + [0.044, 0.051, 0.064, 0.841], + [0.003, 0.029, 0.04, 0.928], + [0.025, 0.499, 0.001, 0.475], + [0.064, 0.507, 0.058, 0.371], + ], + MYNN: [ + [0.123, 0.095, 0.698, 0.085], + [0.419, 0.104, 0.429, 0.047], + [0.01, 0.979, 0.003, 0.009], + [0.004, 0.129, 0.186, 0.68], + [0.038, 0.283, 0.19, 0.489], + [0.042, 0.114, 0.209, 0.635], + [0.019, 0.008, 0.101, 0.872], + [0.63, 0.134, 0.186, 0.049], + [0.227, 0.155, 0.137, 0.48], + [0.044, 0.292, 0.209, 0.455], + [0.148, 0.176, 0.129, 0.547], + [0.078, 0.214, 0.179, 0.528], + [0.115, 0.105, 0.652, 0.128], + [0.396, 0.214, 0.239, 0.15], + [0.437, 0.27, 0.083, 0.21], + [0.378, 0.124, 0.407, 0.09], + ], + ETV2: [ + [0.06, 0.546, 0.31, 0.084], + [0.165, 0.398, 0.182, 0.255], + [0.453, 0.117, 0.289, 0.141], + [0.004, 0.586, 0.037, 0.373], + [0.103, 0.0, 0.015, 0.882], + [0.0, 0.005, 0.0, 0.995], + [0.0, 0.999, 0.0, 0.001], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.005, 0.282, 0.713], + [0.003, 0.157, 0.711, 0.129], + [0.04, 0.325, 0.106, 0.529], + [0.114, 0.396, 0.092, 0.398], + [0.125, 0.252, 0.117, 0.506], + ], + RFX3: [ + [0.041, 0.011, 0.89, 0.058], + [0.026, 0.058, 0.019, 0.897], + [0.083, 0.149, 0.005, 0.763], + [0.161, 0.049, 0.634, 0.157], + [0.005, 0.88, 0.014, 0.101], + [0.022, 0.658, 0.017, 0.304], + [0.728, 0.092, 0.054, 0.125], + [0.131, 0.08, 0.266, 0.523], + [0.121, 0.024, 0.825, 0.031], + [0.143, 0.144, 0.66, 0.053], + [0.234, 0.428, 0.187, 0.151], + [0.605, 0.068, 0.246, 0.081], + [0.609, 0.203, 0.122, 0.065], + [0.132, 0.582, 0.092, 0.194], + ], + NFYC: [ + [0.403, 0.182, 0.364, 0.051], + [0.436, 0.056, 0.419, 0.089], + [0.006, 0.966, 0.0, 0.027], + [0.052, 0.902, 0.043, 0.004], + [0.917, 0.0, 0.037, 0.046], + [0.884, 0.037, 0.074, 0.006], + [0.0, 0.117, 0.019, 0.865], + [0.132, 0.581, 0.258, 0.029], + [0.566, 0.109, 0.309, 0.016], + [0.168, 0.201, 0.565, 0.066], + ], + SREBF1: [ + [0.18, 0.179, 0.538, 0.103], + [0.167, 0.327, 0.242, 0.264], + [0.066, 0.346, 0.34, 0.247], + [0.239, 0.301, 0.304, 0.156], + [0.129, 0.458, 0.258, 0.154], + [0.142, 0.21, 0.38, 0.268], + [0.287, 0.212, 0.289, 0.212], + [0.172, 0.285, 0.303, 0.24], + [0.251, 0.222, 0.42, 0.107], + [0.136, 0.244, 0.456, 0.164], + [0.254, 0.303, 0.382, 0.061], + [0.231, 0.119, 0.647, 0.003], + [0.04, 0.022, 0.056, 0.883], + [0.029, 0.361, 0.606, 0.005], + [0.341, 0.013, 0.572, 0.075], + [0.011, 0.448, 0.373, 0.168], + [0.054, 0.194, 0.744, 0.009], + [0.003, 0.226, 0.0, 0.771], + [0.0, 0.083, 0.906, 0.011], + [0.802, 0.049, 0.096, 0.053], + [0.033, 0.475, 0.086, 0.406], + [0.088, 0.476, 0.307, 0.128], + ], + HOXC9: [ + [0.423, 0.049, 0.273, 0.255], + [0.212, 0.29, 0.158, 0.339], + [0.333, 0.206, 0.091, 0.37], + [0.497, 0.152, 0.21, 0.141], + [0.368, 0.076, 0.333, 0.223], + [0.197, 0.429, 0.133, 0.241], + [0.39, 0.138, 0.186, 0.286], + [0.363, 0.135, 0.39, 0.113], + [0.422, 0.201, 0.179, 0.198], + [0.179, 0.045, 0.724, 0.052], + [0.046, 0.762, 0.002, 0.19], + [0.196, 0.51, 0.002, 0.292], + [0.65, 0.008, 0.34, 0.003], + [0.001, 0.035, 0.056, 0.908], + [0.567, 0.171, 0.036, 0.226], + [0.891, 0.029, 0.023, 0.057], + [0.744, 0.055, 0.076, 0.125], + [0.41, 0.063, 0.162, 0.365], + ], + CREB3L1: [ + [0.126, 0.083, 0.697, 0.094], + [0.109, 0.755, 0.004, 0.133], + [0.008, 0.928, 0.061, 0.003], + [0.937, 0.001, 0.031, 0.031], + [0.007, 0.945, 0.003, 0.045], + [0.093, 0.024, 0.877, 0.006], + [0.073, 0.121, 0.021, 0.785], + [0.121, 0.294, 0.504, 0.081], + [0.307, 0.121, 0.412, 0.16], + [0.183, 0.339, 0.227, 0.251], + [0.151, 0.555, 0.136, 0.159], + ], + ZNF418: [ + [0.103, 0.099, 0.335, 0.463], + [0.089, 0.037, 0.099, 0.775], + [0.058, 0.124, 0.781, 0.037], + [0.05, 0.709, 0.058, 0.184], + [0.054, 0.076, 0.004, 0.866], + [0.045, 0.052, 0.021, 0.882], + [0.052, 0.138, 0.153, 0.657], + [0.112, 0.11, 0.118, 0.661], + [0.647, 0.031, 0.262, 0.06], + [0.023, 0.023, 0.89, 0.064], + [0.093, 0.837, 0.017, 0.054], + [0.062, 0.599, 0.019, 0.32], + [0.32, 0.064, 0.107, 0.508], + [0.039, 0.727, 0.12, 0.114], + [0.211, 0.258, 0.039, 0.492], + [0.067, 0.155, 0.352, 0.426], + ], + ZNF263: [ + [0.013, 0.359, 0.592, 0.036], + [0.0, 0.002, 0.0, 0.997], + [0.002, 0.652, 0.346, 0.0], + [0.045, 0.954, 0.0, 0.001], + [0.0, 0.0, 0.004, 0.995], + [0.0, 1.0, 0.0, 0.0], + [0.007, 0.976, 0.011, 0.007], + [0.08, 0.78, 0.021, 0.118], + ], + MNT: [ + [0.468, 0.393, 0.126, 0.012], + [0.0, 1.0, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.409, 0.0, 0.591], + [0.0, 0.001, 0.999, 0.0], + [0.001, 0.0, 0.0, 0.999], + [0.0, 0.0, 1.0, 0.0], + ], + TCF7L2: [ + [0.656, 0.054, 0.156, 0.135], + [0.014, 0.482, 0.441, 0.063], + [0.653, 0.011, 0.001, 0.335], + [0.083, 0.009, 0.001, 0.908], + [0.058, 0.768, 0.147, 0.028], + [0.992, 0.0, 0.0, 0.008], + [0.937, 0.027, 0.036, 0.0], + [0.948, 0.0, 0.038, 0.013], + [0.118, 0.047, 0.824, 0.011], + ], + PAX6: [ + [0.377, 0.055, 0.54, 0.028], + [0.191, 0.222, 0.267, 0.32], + [0.008, 0.291, 0.319, 0.382], + [0.153, 0.606, 0.002, 0.239], + [0.805, 0.028, 0.122, 0.044], + [0.294, 0.253, 0.3, 0.153], + [0.023, 0.192, 0.024, 0.762], + [0.038, 0.476, 0.44, 0.047], + [0.765, 0.016, 0.189, 0.029], + [0.451, 0.077, 0.227, 0.245], + [0.013, 0.296, 0.68, 0.011], + [0.004, 0.747, 0.009, 0.24], + [0.404, 0.01, 0.511, 0.075], + [0.063, 0.052, 0.435, 0.45], + [0.533, 0.043, 0.375, 0.049], + [0.713, 0.108, 0.081, 0.097], + [0.536, 0.107, 0.259, 0.099], + ], + ATOH1: [ + [0.313, 0.392, 0.288, 0.006], + [0.012, 0.988, 0.0, 0.0], + [0.978, 0.0, 0.009, 0.013], + [0.001, 0.196, 0.477, 0.326], + [0.232, 0.767, 0.001, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.0, 0.0, 0.999, 0.0], + [0.0, 0.32, 0.24, 0.439], + [0.0, 0.343, 0.156, 0.5], + ], + CREB5: [ + [0.633, 0.117, 0.219, 0.031], + [0.011, 0.022, 0.002, 0.966], + [0.006, 0.004, 0.787, 0.204], + [0.969, 0.011, 0.003, 0.016], + [0.035, 0.372, 0.181, 0.412], + [0.181, 0.209, 0.555, 0.055], + [0.032, 0.041, 0.002, 0.925], + [0.302, 0.668, 0.004, 0.025], + [0.982, 0.0, 0.014, 0.004], + [0.032, 0.198, 0.096, 0.674], + ], + PRDM1: [ + [0.866, 0.005, 0.087, 0.043], + [0.254, 0.024, 0.616, 0.107], + [0.204, 0.139, 0.359, 0.298], + [0.112, 0.005, 0.882, 0.0], + [0.971, 0.029, 0.0, 0.0], + [0.672, 0.007, 0.314, 0.007], + [0.98, 0.006, 0.002, 0.012], + [0.001, 0.002, 0.997, 0.0], + [0.0, 0.086, 0.225, 0.689], + ], + ELF1: [ + [0.056, 0.706, 0.223, 0.016], + [0.468, 0.491, 0.041, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.002, 0.998, 0.0], + [0.97, 0.019, 0.008, 0.004], + [0.961, 0.013, 0.005, 0.02], + [0.128, 0.076, 0.792, 0.004], + ], + ZSCAN22: [ + [0.143, 0.015, 0.836, 0.006], + [0.843, 0.025, 0.071, 0.062], + [0.175, 0.08, 0.436, 0.309], + [0.128, 0.01, 0.853, 0.009], + [0.035, 0.001, 0.954, 0.01], + [0.542, 0.173, 0.121, 0.164], + [0.17, 0.0, 0.827, 0.002], + [0.001, 0.0, 0.987, 0.012], + [0.808, 0.102, 0.025, 0.065], + [0.09, 0.002, 0.904, 0.004], + [0.053, 0.015, 0.905, 0.027], + ], + ETS1: [ + [0.133, 0.645, 0.2, 0.021], + [0.614, 0.335, 0.047, 0.004], + [0.004, 0.0, 0.956, 0.04], + [0.0, 0.0, 0.999, 0.001], + [0.965, 0.0, 0.007, 0.028], + [0.795, 0.018, 0.025, 0.162], + [0.324, 0.02, 0.647, 0.009], + [0.052, 0.298, 0.116, 0.534], + ], + TFEB: [ + [0.37, 0.147, 0.407, 0.077], + [0.077, 0.129, 0.198, 0.596], + [0.0, 0.998, 0.0, 0.001], + [0.929, 0.033, 0.0, 0.037], + [0.002, 0.796, 0.0, 0.202], + [0.275, 0.0, 0.725, 0.0], + [0.123, 0.078, 0.042, 0.757], + [0.014, 0.0, 0.959, 0.026], + ], + ZNF76: [ + [0.128, 0.272, 0.529, 0.071], + [0.154, 0.502, 0.215, 0.129], + [0.358, 0.146, 0.367, 0.129], + [0.267, 0.108, 0.499, 0.126], + [0.263, 0.109, 0.466, 0.161], + [0.038, 0.01, 0.908, 0.044], + [0.168, 0.344, 0.454, 0.034], + [0.424, 0.294, 0.154, 0.129], + [0.082, 0.194, 0.141, 0.583], + [0.039, 0.187, 0.403, 0.371], + [0.163, 0.576, 0.178, 0.082], + [0.039, 0.301, 0.018, 0.642], + [0.004, 0.043, 0.946, 0.007], + [0.005, 0.03, 0.958, 0.007], + [0.005, 0.002, 0.978, 0.014], + [0.757, 0.027, 0.054, 0.163], + [0.51, 0.136, 0.266, 0.088], + ], + YY2: [ + [0.587, 0.069, 0.289, 0.055], + [0.513, 0.231, 0.115, 0.14], + [0.285, 0.324, 0.324, 0.067], + [0.999, 0.0, 0.001, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.0, 0.0, 1.0, 0.0], + [0.003, 0.011, 0.98, 0.006], + [0.063, 0.924, 0.0, 0.013], + [0.078, 0.146, 0.62, 0.157], + [0.066, 0.092, 0.781, 0.061], + [0.143, 0.65, 0.12, 0.088], + ], + TP63: [ + [0.025, 0.809, 0.04, 0.126], + [0.505, 0.169, 0.153, 0.174], + [0.225, 0.039, 0.109, 0.627], + [0.006, 0.002, 0.991, 0.001], + [0.091, 0.351, 0.04, 0.518], + [0.169, 0.385, 0.115, 0.332], + [0.153, 0.334, 0.221, 0.292], + [0.281, 0.205, 0.332, 0.182], + [0.3, 0.137, 0.376, 0.187], + [0.504, 0.035, 0.329, 0.132], + [0.002, 0.986, 0.005, 0.008], + [0.511, 0.14, 0.027, 0.322], + [0.12, 0.089, 0.094, 0.697], + [0.013, 0.003, 0.983, 0.001], + [0.14, 0.425, 0.036, 0.399], + ], + KLF16: [ + [0.077, 0.072, 0.671, 0.18], + [0.105, 0.752, 0.074, 0.068], + [0.085, 0.667, 0.029, 0.219], + [0.24, 0.74, 0.004, 0.017], + [0.0, 0.985, 0.004, 0.012], + [0.103, 0.001, 0.795, 0.101], + [0.0, 1.0, 0.0, 0.0], + [0.007, 0.984, 0.007, 0.002], + [0.031, 0.824, 0.013, 0.132], + [0.167, 0.703, 0.022, 0.108], + [0.031, 0.635, 0.035, 0.299], + ], + ZIC2: [ + [0.117, 0.832, 0.049, 0.002], + [0.306, 0.189, 0.321, 0.184], + [0.002, 0.988, 0.006, 0.003], + [0.475, 0.323, 0.093, 0.109], + [0.087, 0.142, 0.77, 0.0], + [0.001, 0.933, 0.008, 0.059], + [0.543, 0.004, 0.433, 0.021], + [0.01, 0.008, 0.947, 0.035], + [0.005, 0.006, 0.982, 0.007], + [0.262, 0.071, 0.562, 0.106], + [0.133, 0.104, 0.692, 0.07], + [0.092, 0.096, 0.692, 0.119], + [0.011, 0.482, 0.237, 0.27], + [0.131, 0.569, 0.21, 0.09], + ], + ZBTB18: [ + [0.102, 0.78, 0.117, 0.0], + [0.0, 0.999, 0.001, 0.0], + [0.994, 0.001, 0.001, 0.005], + [0.0, 0.0, 1.0, 0.0], + [0.571, 0.423, 0.001, 0.005], + [0.003, 0.005, 0.054, 0.938], + [0.0, 0.0, 1.0, 0.0], + [0.007, 0.244, 0.003, 0.746], + [0.033, 0.054, 0.566, 0.346], + ], + FOXM1: [ + [0.042, 0.028, 0.026, 0.904], + [0.196, 0.003, 0.801, 0.0], + [0.017, 0.078, 0.0, 0.905], + [0.005, 0.0, 0.08, 0.914], + [0.004, 0.0, 0.24, 0.756], + [0.61, 0.069, 0.279, 0.043], + [0.019, 0.828, 0.017, 0.135], + [0.297, 0.137, 0.094, 0.472], + [0.04, 0.314, 0.142, 0.504], + [0.404, 0.079, 0.072, 0.444], + ], + TEAD4: [ + [0.422, 0.003, 0.567, 0.008], + [0.2, 0.729, 0.071, 0.0], + [0.951, 0.002, 0.047, 0.0], + [0.0, 0.0, 0.028, 0.972], + [0.054, 0.006, 0.081, 0.859], + [0.001, 0.977, 0.012, 0.01], + [0.013, 0.729, 0.039, 0.219], + [0.251, 0.218, 0.053, 0.478], + ], + HNF1B: [ + [0.19, 0.03, 0.713, 0.067], + [0.035, 0.081, 0.05, 0.833], + [0.142, 0.074, 0.052, 0.732], + [0.941, 0.001, 0.044, 0.013], + [0.823, 0.098, 0.012, 0.067], + [0.151, 0.039, 0.007, 0.804], + [0.207, 0.293, 0.28, 0.22], + [0.839, 0.003, 0.027, 0.131], + [0.047, 0.007, 0.066, 0.88], + [0.018, 0.035, 0.002, 0.946], + [0.714, 0.051, 0.093, 0.142], + [0.751, 0.103, 0.085, 0.061], + [0.115, 0.596, 0.039, 0.25], + ], + FOXA1: [ + [0.387, 0.112, 0.096, 0.405], + [0.462, 0.141, 0.199, 0.198], + [0.318, 0.029, 0.101, 0.551], + [0.065, 0.001, 0.934, 0.001], + [0.004, 0.0, 0.004, 0.992], + [0.692, 0.307, 0.0, 0.001], + [0.828, 0.168, 0.0, 0.004], + [0.991, 0.0, 0.005, 0.004], + [0.0, 0.629, 0.001, 0.37], + [0.951, 0.01, 0.014, 0.026], + ], + STAT2: [ + [0.569, 0.053, 0.265, 0.113], + [0.009, 0.325, 0.614, 0.052], + [0.0, 0.02, 0.031, 0.949], + [0.024, 0.007, 0.004, 0.965], + [0.044, 0.225, 0.063, 0.668], + [0.002, 0.901, 0.004, 0.094], + [0.289, 0.131, 0.321, 0.259], + [0.101, 0.301, 0.194, 0.404], + [0.011, 0.05, 0.086, 0.853], + [0.085, 0.066, 0.058, 0.791], + [0.056, 0.292, 0.053, 0.6], + [0.096, 0.516, 0.076, 0.312], + [0.178, 0.361, 0.063, 0.399], + ], + ZNF322: [ + [0.122, 0.119, 0.692, 0.068], + [0.432, 0.096, 0.183, 0.289], + [0.096, 0.072, 0.699, 0.133], + [0.187, 0.648, 0.027, 0.138], + [0.047, 0.91, 0.015, 0.029], + [0.067, 0.098, 0.022, 0.813], + [0.353, 0.031, 0.559, 0.057], + [0.086, 0.331, 0.525, 0.058], + [0.111, 0.143, 0.062, 0.683], + [0.806, 0.118, 0.029, 0.047], + [0.003, 0.99, 0.002, 0.005], + [0.451, 0.059, 0.137, 0.353], + [0.029, 0.355, 0.598, 0.018], + [0.413, 0.085, 0.091, 0.411], + [0.047, 0.021, 0.875, 0.058], + [0.055, 0.815, 0.031, 0.099], + [0.114, 0.751, 0.047, 0.088], + [0.103, 0.104, 0.137, 0.656], + [0.074, 0.108, 0.694, 0.124], + ], + ZBTB7B: [ + [0.193, 0.094, 0.621, 0.092], + [0.083, 0.158, 0.187, 0.573], + [0.141, 0.231, 0.026, 0.603], + [0.146, 0.185, 0.413, 0.257], + [0.086, 0.574, 0.181, 0.159], + [0.037, 0.776, 0.053, 0.133], + [0.492, 0.259, 0.084, 0.164], + [0.139, 0.133, 0.172, 0.557], + [0.223, 0.043, 0.688, 0.046], + [0.085, 0.041, 0.829, 0.044], + [0.149, 0.587, 0.126, 0.138], + [0.632, 0.08, 0.23, 0.058], + [0.876, 0.034, 0.077, 0.013], + [0.068, 0.841, 0.046, 0.045], + ], + HIF1A: [ + [0.713, 0.046, 0.211, 0.03], + [0.0, 0.979, 0.005, 0.017], + [0.012, 0.057, 0.928, 0.003], + [0.004, 0.027, 0.006, 0.963], + [0.0, 0.009, 0.989, 0.002], + ], + EBF3: [ + [0.055, 0.296, 0.061, 0.588], + [0.002, 0.99, 0.007, 0.0], + [0.03, 0.743, 0.004, 0.223], + [0.023, 0.891, 0.008, 0.078], + [0.26, 0.311, 0.072, 0.357], + [0.337, 0.055, 0.318, 0.289], + [0.038, 0.002, 0.953, 0.007], + [0.143, 0.001, 0.854, 0.001], + [0.0, 0.001, 0.998, 0.0], + [0.715, 0.055, 0.195, 0.036], + ], + ZNF148: [ + [0.184, 0.133, 0.554, 0.128], + [0.158, 0.139, 0.524, 0.179], + [0.176, 0.152, 0.136, 0.535], + [0.012, 0.007, 0.981, 0.001], + [0.001, 0.016, 0.974, 0.009], + [0.036, 0.001, 0.963, 0.0], + [0.001, 0.001, 0.99, 0.007], + [0.002, 0.0, 0.997, 0.001], + [0.608, 0.231, 0.008, 0.153], + [0.129, 0.002, 0.735, 0.133], + [0.005, 0.009, 0.976, 0.01], + [0.032, 0.018, 0.916, 0.034], + [0.046, 0.017, 0.906, 0.032], + ], + HNF4A: [ + [0.518, 0.053, 0.286, 0.143], + [0.101, 0.023, 0.812, 0.065], + [0.194, 0.049, 0.394, 0.363], + [0.16, 0.315, 0.221, 0.305], + [0.003, 0.886, 0.029, 0.082], + [0.92, 0.006, 0.069, 0.005], + [0.859, 0.027, 0.086, 0.029], + [0.865, 0.017, 0.101, 0.017], + [0.034, 0.037, 0.919, 0.01], + [0.074, 0.02, 0.444, 0.461], + [0.052, 0.366, 0.153, 0.429], + [0.051, 0.708, 0.041, 0.201], + [0.573, 0.147, 0.151, 0.129], + ], + ATF1: [ + [0.068, 0.204, 0.063, 0.665], + [0.031, 0.304, 0.432, 0.234], + [0.861, 0.004, 0.082, 0.053], + [0.002, 0.783, 0.091, 0.124], + [0.195, 0.04, 0.755, 0.01], + [0.026, 0.0, 0.006, 0.968], + [0.109, 0.623, 0.265, 0.004], + [0.873, 0.021, 0.089, 0.017], + [0.029, 0.514, 0.173, 0.284], + ], + POU5F1: [ + [0.552, 0.188, 0.076, 0.184], + [0.065, 0.041, 0.085, 0.809], + [0.095, 0.22, 0.083, 0.602], + [0.282, 0.143, 0.015, 0.56], + [0.243, 0.139, 0.584, 0.035], + [0.205, 0.734, 0.039, 0.022], + [0.803, 0.001, 0.17, 0.026], + [0.163, 0.089, 0.118, 0.629], + [0.327, 0.191, 0.299, 0.183], + [0.523, 0.029, 0.087, 0.361], + [0.069, 0.482, 0.334, 0.116], + [0.895, 0.0, 0.023, 0.082], + [0.828, 0.016, 0.151, 0.005], + [0.485, 0.083, 0.058, 0.374], + [0.34, 0.111, 0.471, 0.078], + [0.26, 0.158, 0.506, 0.075], + ], + FEZF1: [ + [0.325, 0.112, 0.472, 0.092], + [0.219, 0.314, 0.09, 0.376], + [0.073, 0.117, 0.099, 0.711], + [0.122, 0.002, 0.773, 0.103], + [0.019, 0.374, 0.462, 0.146], + [0.001, 0.469, 0.019, 0.511], + [0.008, 0.986, 0.004, 0.002], + [0.342, 0.097, 0.01, 0.551], + [0.015, 0.207, 0.007, 0.771], + [0.013, 0.006, 0.002, 0.978], + [0.019, 0.06, 0.012, 0.909], + ], + ESR2: [ + [0.416, 0.148, 0.379, 0.056], + [0.095, 0.0, 0.835, 0.07], + [0.047, 0.004, 0.949, 0.0], + [0.057, 0.098, 0.237, 0.609], + [0.0, 0.763, 0.115, 0.122], + [0.685, 0.058, 0.195, 0.062], + [0.141, 0.52, 0.21, 0.13], + [0.145, 0.384, 0.325, 0.146], + [0.151, 0.233, 0.449, 0.167], + [0.11, 0.416, 0.002, 0.472], + [0.119, 0.001, 0.874, 0.006], + [0.213, 0.328, 0.236, 0.223], + [0.052, 0.679, 0.036, 0.233], + [0.047, 0.854, 0.018, 0.081], + [0.058, 0.398, 0.15, 0.393], + ], + TCF4: [ + [0.231, 0.459, 0.31, 0.0], + [0.572, 0.185, 0.069, 0.175], + [0.001, 0.999, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.39, 0.604, 0.006], + [0.028, 0.607, 0.364, 0.0], + [0.0, 0.006, 0.0, 0.994], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.311, 0.195, 0.494], + ], + GABPA: [ + [0.089, 0.713, 0.186, 0.012], + [0.588, 0.386, 0.023, 0.003], + [0.002, 0.0, 0.998, 0.0], + [0.0, 0.0, 0.999, 0.0], + [0.998, 0.0, 0.001, 0.001], + [0.922, 0.001, 0.002, 0.075], + [0.194, 0.052, 0.754, 0.0], + [0.083, 0.275, 0.106, 0.537], + ], + KLF12: [ + [0.112, 0.374, 0.457, 0.058], + [0.125, 0.354, 0.422, 0.099], + [0.119, 0.367, 0.394, 0.121], + [0.169, 0.293, 0.433, 0.105], + [0.173, 0.383, 0.341, 0.104], + [0.196, 0.414, 0.302, 0.088], + [0.214, 0.101, 0.457, 0.228], + [0.017, 0.0, 0.983, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.009, 0.905, 0.0, 0.085], + [0.001, 0.001, 0.994, 0.004], + [0.004, 0.014, 0.763, 0.219], + [0.193, 0.04, 0.686, 0.082], + [0.081, 0.079, 0.769, 0.07], + [0.106, 0.698, 0.103, 0.094], + [0.086, 0.569, 0.157, 0.189], + [0.198, 0.249, 0.34, 0.213], + [0.147, 0.288, 0.458, 0.108], + [0.12, 0.283, 0.481, 0.117], + ], + TBX21: [ + [0.106, 0.231, 0.132, 0.531], + [0.042, 0.065, 0.002, 0.891], + [0.373, 0.378, 0.219, 0.03], + [0.765, 0.067, 0.061, 0.107], + [0.007, 0.993, 0.0, 0.0], + [0.968, 0.001, 0.028, 0.004], + [0.05, 0.867, 0.084, 0.0], + [0.1, 0.617, 0.094, 0.189], + [0.082, 0.142, 0.026, 0.749], + ], + MEIS2: [ + [0.17, 0.61, 0.095, 0.125], + [0.0, 0.017, 0.0, 0.982], + [0.002, 0.0, 0.998, 0.0], + [0.014, 0.029, 0.0, 0.957], + [0.0, 1.0, 0.0, 0.0], + [0.933, 0.018, 0.007, 0.042], + ], + FOXP2: [ + [0.009, 0.001, 0.02, 0.97], + [0.076, 0.0, 0.924, 0.0], + [0.024, 0.023, 0.0, 0.953], + [0.023, 0.0, 0.113, 0.865], + [0.0, 0.0, 0.15, 0.85], + [0.841, 0.004, 0.048, 0.108], + [0.015, 0.669, 0.037, 0.279], + ], + USF2: [ + [0.01, 0.98, 0.009, 0.0], + [0.901, 0.022, 0.042, 0.035], + [0.0, 0.767, 0.0, 0.233], + [0.179, 0.003, 0.818, 0.0], + [0.027, 0.023, 0.013, 0.937], + [0.0, 0.006, 0.994, 0.001], + [0.439, 0.157, 0.315, 0.089], + [0.044, 0.553, 0.133, 0.27], + ], + ELK1: [ + [0.532, 0.1, 0.287, 0.081], + [0.005, 0.76, 0.096, 0.14], + [0.047, 0.0, 0.001, 0.952], + [0.001, 0.001, 0.0, 0.998], + [0.0, 0.999, 0.001, 0.0], + [0.0, 0.997, 0.0, 0.003], + [0.001, 0.017, 0.644, 0.338], + [0.022, 0.227, 0.659, 0.092], + ], + E2F6: [ + [0.139, 0.161, 0.685, 0.014], + [0.001, 0.013, 0.985, 0.0], + [0.202, 0.764, 0.007, 0.028], + [0.002, 0.033, 0.962, 0.002], + [0.0, 0.054, 0.946, 0.0], + [0.005, 0.129, 0.837, 0.029], + [0.817, 0.021, 0.133, 0.029], + [0.461, 0.122, 0.383, 0.034], + ], + SOX3: [ + [0.459, 0.248, 0.233, 0.06], + [0.966, 0.016, 0.0, 0.018], + [0.0, 0.933, 0.001, 0.067], + [0.999, 0.001, 0.001, 0.0], + [0.999, 0.0, 0.001, 0.0], + [0.568, 0.016, 0.001, 0.415], + [0.528, 0.005, 0.46, 0.008], + [0.196, 0.043, 0.755, 0.006], + ], + CEBPZ: [ + [0.446, 0.093, 0.391, 0.069], + [0.257, 0.07, 0.564, 0.108], + [0.024, 0.942, 0.013, 0.02], + [0.014, 0.958, 0.021, 0.007], + [0.94, 0.013, 0.003, 0.044], + [0.856, 0.059, 0.058, 0.027], + [0.001, 0.078, 0.044, 0.877], + [0.16, 0.49, 0.318, 0.032], + [0.433, 0.128, 0.409, 0.03], + [0.239, 0.21, 0.452, 0.1], + [0.353, 0.249, 0.243, 0.155], + [0.275, 0.09, 0.471, 0.164], + [0.135, 0.213, 0.513, 0.14], + [0.084, 0.492, 0.267, 0.157], + ], + GRHL2: [ + [0.203, 0.145, 0.531, 0.121], + [0.264, 0.323, 0.152, 0.261], + [0.325, 0.294, 0.166, 0.215], + [0.427, 0.151, 0.217, 0.204], + [0.528, 0.041, 0.229, 0.202], + [0.58, 0.03, 0.181, 0.209], + [0.0, 0.969, 0.03, 0.0], + [0.247, 0.452, 0.023, 0.278], + [0.283, 0.018, 0.453, 0.247], + [0.003, 0.012, 0.985, 0.0], + [0.136, 0.201, 0.019, 0.644], + [0.116, 0.295, 0.041, 0.549], + [0.191, 0.236, 0.147, 0.425], + [0.192, 0.097, 0.401, 0.31], + [0.27, 0.09, 0.377, 0.263], + [0.034, 0.707, 0.084, 0.175], + [0.264, 0.384, 0.105, 0.248], + [0.488, 0.018, 0.332, 0.162], + [0.01, 0.305, 0.655, 0.03], + [0.204, 0.173, 0.097, 0.526], + ], + MYF5: [ + [0.0, 0.979, 0.021, 0.0], + [0.824, 0.052, 0.123, 0.001], + [0.0, 0.133, 0.865, 0.003], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.088, 0.061, 0.851], + [0.0, 0.044, 0.956, 0.0], + [0.0, 0.449, 0.06, 0.49], + [0.0, 0.3, 0.229, 0.471], + ], + DUX4: [ + [0.143, 0.008, 0.025, 0.823], + [0.19, 0.0, 0.81, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.003, 0.001, 0.02, 0.976], + [0.0, 0.005, 0.007, 0.988], + [0.454, 0.001, 0.545, 0.0], + [0.36, 0.206, 0.4, 0.034], + [0.442, 0.073, 0.283, 0.201], + [0.0, 0.0, 0.001, 0.999], + [0.016, 0.22, 0.004, 0.76], + [0.6, 0.062, 0.11, 0.228], + ], + IRF4: [ + [0.562, 0.047, 0.238, 0.153], + [0.575, 0.114, 0.167, 0.145], + [0.302, 0.176, 0.378, 0.143], + [0.345, 0.257, 0.202, 0.197], + [0.226, 0.012, 0.747, 0.015], + [0.477, 0.0, 0.496, 0.027], + [0.871, 0.0, 0.103, 0.026], + [0.907, 0.021, 0.057, 0.016], + [0.071, 0.496, 0.402, 0.03], + [0.108, 0.187, 0.089, 0.615], + [0.144, 0.0, 0.854, 0.002], + [0.774, 0.135, 0.083, 0.008], + [0.63, 0.016, 0.34, 0.013], + [0.855, 0.072, 0.017, 0.056], + ], + PRDM14: [ + [0.035, 0.209, 0.714, 0.042], + [0.069, 0.116, 0.659, 0.156], + [0.173, 0.024, 0.222, 0.581], + [0.023, 0.75, 0.163, 0.064], + [0.071, 0.32, 0.146, 0.463], + [0.009, 0.823, 0.097, 0.071], + [0.063, 0.059, 0.066, 0.811], + [0.896, 0.004, 0.036, 0.065], + [0.691, 0.085, 0.097, 0.128], + [0.063, 0.613, 0.205, 0.12], + ], + PDX1: [ + [0.18, 0.005, 0.025, 0.79], + [0.062, 0.001, 0.916, 0.021], + [0.997, 0.001, 0.0, 0.001], + [0.032, 0.107, 0.055, 0.806], + [0.146, 0.016, 0.135, 0.703], + [0.288, 0.044, 0.628, 0.041], + [0.998, 0.0, 0.002, 0.0], + [0.026, 0.063, 0.089, 0.822], + [0.067, 0.077, 0.509, 0.346], + [0.375, 0.079, 0.415, 0.132], + ], + ZKSCAN1: [ + [0.123, 0.166, 0.628, 0.083], + [0.153, 0.697, 0.039, 0.112], + [0.587, 0.029, 0.288, 0.095], + [0.006, 0.841, 0.133, 0.02], + [0.526, 0.125, 0.216, 0.134], + [0.008, 0.455, 0.09, 0.447], + [0.777, 0.003, 0.082, 0.138], + [0.02, 0.067, 0.908, 0.005], + [0.016, 0.186, 0.0, 0.797], + [0.607, 0.0, 0.261, 0.131], + [0.01, 0.052, 0.717, 0.221], + [0.035, 0.0, 0.877, 0.088], + ], + ZNF816: [ + [0.139, 0.588, 0.11, 0.162], + [0.071, 0.685, 0.103, 0.14], + [0.194, 0.502, 0.076, 0.227], + [0.208, 0.187, 0.203, 0.401], + [0.23, 0.068, 0.489, 0.214], + [0.068, 0.787, 0.07, 0.075], + [0.605, 0.247, 0.076, 0.072], + [0.131, 0.131, 0.169, 0.569], + [0.008, 0.073, 0.839, 0.08], + [0.0, 0.001, 0.004, 0.994], + [0.003, 0.975, 0.004, 0.019], + [0.001, 0.992, 0.006, 0.001], + [0.003, 0.968, 0.02, 0.009], + [0.006, 0.921, 0.018, 0.054], + [0.366, 0.423, 0.069, 0.142], + [0.102, 0.246, 0.144, 0.508], + [0.109, 0.263, 0.153, 0.475], + [0.182, 0.291, 0.127, 0.4], + [0.123, 0.223, 0.197, 0.457], + [0.093, 0.216, 0.178, 0.513], + ], + LEF1: [ + [0.611, 0.086, 0.197, 0.107], + [0.149, 0.203, 0.308, 0.339], + [0.584, 0.091, 0.1, 0.226], + [0.606, 0.0, 0.0, 0.393], + [0.0, 0.973, 0.027, 0.0], + [0.997, 0.0, 0.002, 0.001], + [0.99, 0.007, 0.0, 0.003], + [0.79, 0.015, 0.011, 0.184], + [0.21, 0.033, 0.7, 0.057], + [0.246, 0.129, 0.578, 0.046], + [0.342, 0.301, 0.338, 0.019], + ], + ZNF136: [ + [0.517, 0.114, 0.206, 0.163], + [0.438, 0.117, 0.295, 0.151], + [0.584, 0.107, 0.161, 0.148], + [0.625, 0.108, 0.116, 0.151], + [0.631, 0.114, 0.117, 0.138], + [0.652, 0.079, 0.125, 0.143], + [0.492, 0.109, 0.133, 0.266], + [0.515, 0.165, 0.131, 0.189], + [0.549, 0.134, 0.127, 0.19], + [0.104, 0.581, 0.095, 0.22], + [0.045, 0.035, 0.011, 0.91], + [0.119, 0.038, 0.696, 0.147], + [0.07, 0.37, 0.068, 0.493], + [0.131, 0.736, 0.045, 0.087], + [0.67, 0.136, 0.08, 0.114], + [0.815, 0.005, 0.117, 0.063], + [0.007, 0.966, 0.011, 0.016], + [0.101, 0.643, 0.008, 0.248], + [0.486, 0.132, 0.106, 0.277], + [0.749, 0.067, 0.117, 0.067], + [0.211, 0.015, 0.731, 0.043], + [0.857, 0.073, 0.035, 0.035], + [0.911, 0.036, 0.028, 0.025], + [0.022, 0.034, 0.04, 0.904], + [0.393, 0.088, 0.06, 0.459], + [0.052, 0.682, 0.063, 0.204], + [0.03, 0.057, 0.025, 0.889], + [0.627, 0.033, 0.147, 0.194], + [0.139, 0.053, 0.044, 0.765], + [0.739, 0.046, 0.181, 0.034], + [0.062, 0.347, 0.041, 0.55], + [0.08, 0.651, 0.078, 0.191], + [0.156, 0.721, 0.031, 0.092], + [0.817, 0.024, 0.086, 0.073], + [0.155, 0.063, 0.695, 0.087], + ], + CEBPG: [ + [0.596, 0.099, 0.303, 0.001], + [0.0, 0.0, 0.0, 1.0], + [0.0, 0.0, 0.526, 0.474], + [0.658, 0.0, 0.3, 0.043], + [0.067, 0.214, 0.052, 0.667], + [0.0, 0.005, 0.995, 0.001], + [0.21, 0.568, 0.0, 0.223], + [0.956, 0.044, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.01, 0.206, 0.09, 0.694], + ], + SPDEF: [ + [0.593, 0.036, 0.3, 0.071], + [0.063, 0.489, 0.28, 0.167], + [0.497, 0.022, 0.085, 0.396], + [0.003, 0.003, 0.003, 0.991], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.999, 0.0, 0.0], + [0.0, 0.003, 0.465, 0.533], + [0.007, 0.116, 0.786, 0.092], + [0.118, 0.293, 0.345, 0.244], + [0.234, 0.163, 0.102, 0.501], + ], + ZNF317: [ + [0.5, 0.03, 0.125, 0.345], + [0.349, 0.021, 0.628, 0.002], + [0.003, 0.004, 0.001, 0.993], + [0.056, 0.879, 0.008, 0.058], + [0.504, 0.051, 0.072, 0.373], + [0.038, 0.031, 0.677, 0.253], + [0.067, 0.728, 0.071, 0.134], + [0.235, 0.091, 0.042, 0.631], + [0.041, 0.004, 0.951, 0.004], + [0.151, 0.089, 0.053, 0.707], + [0.109, 0.402, 0.106, 0.384], + [0.357, 0.283, 0.052, 0.307], + [0.288, 0.254, 0.145, 0.313], + [0.138, 0.217, 0.041, 0.604], + [0.09, 0.715, 0.055, 0.14], + [0.089, 0.21, 0.176, 0.525], + ], + CDX2: [ + [0.112, 0.067, 0.065, 0.756], + [0.02, 0.0, 0.0, 0.979], + [0.107, 0.0, 0.0, 0.893], + [0.091, 0.0, 0.001, 0.908], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.127, 0.004, 0.869], + [0.211, 0.028, 0.112, 0.649], + [0.439, 0.0, 0.56, 0.0], + [0.036, 0.875, 0.047, 0.042], + [0.168, 0.345, 0.0, 0.487], + [0.217, 0.275, 0.061, 0.446], + [0.208, 0.201, 0.087, 0.504], + ], + POU2F2: [ + [0.001, 0.321, 0.013, 0.664], + [0.236, 0.053, 0.164, 0.547], + [0.049, 0.211, 0.0, 0.74], + [0.038, 0.026, 0.928, 0.009], + [0.033, 0.967, 0.0, 0.0], + [0.8, 0.061, 0.122, 0.016], + [0.0, 0.229, 0.0, 0.771], + [0.44, 0.048, 0.35, 0.163], + ], + STAT6: [ + [0.029, 0.038, 0.033, 0.9], + [0.077, 0.119, 0.025, 0.779], + [0.103, 0.633, 0.047, 0.217], + [0.356, 0.293, 0.072, 0.279], + [0.383, 0.316, 0.147, 0.154], + [0.476, 0.121, 0.227, 0.177], + [0.287, 0.0, 0.703, 0.01], + [0.221, 0.025, 0.751, 0.003], + [0.979, 0.021, 0.0, 0.0], + [0.975, 0.0, 0.024, 0.001], + [0.325, 0.3, 0.184, 0.191], + [0.175, 0.056, 0.096, 0.673], + ], + SP2: [ + [0.24, 0.142, 0.526, 0.092], + [0.245, 0.037, 0.622, 0.096], + [0.3, 0.015, 0.686, 0.0], + [0.002, 0.004, 0.994, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.182, 0.794, 0.0, 0.024], + [0.0, 0.001, 0.997, 0.002], + [0.0, 0.01, 0.933, 0.057], + [0.05, 0.031, 0.873, 0.046], + ], + RUNX2: [ + [0.067, 0.128, 0.011, 0.794], + [0.001, 0.001, 0.997, 0.001], + [0.011, 0.124, 0.0, 0.865], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.087, 0.162, 0.75], + [0.092, 0.338, 0.139, 0.43], + [0.425, 0.043, 0.213, 0.318], + ], + SIX2: [ + [0.231, 0.04, 0.254, 0.476], + [0.023, 0.003, 0.954, 0.02], + [0.469, 0.065, 0.101, 0.365], + [0.841, 0.087, 0.006, 0.065], + [0.998, 0.0, 0.0, 0.001], + [0.047, 0.446, 0.06, 0.447], + [0.235, 0.332, 0.087, 0.345], + [0.099, 0.172, 0.101, 0.627], + [0.165, 0.002, 0.725, 0.108], + [0.996, 0.0, 0.003, 0.0], + [0.059, 0.107, 0.324, 0.509], + [0.502, 0.44, 0.024, 0.035], + [0.116, 0.494, 0.07, 0.32], + ], + MYCN: [ + [0.052, 0.464, 0.376, 0.108], + [0.128, 0.859, 0.011, 0.003], + [0.825, 0.025, 0.066, 0.084], + [0.006, 0.795, 0.095, 0.104], + [0.53, 0.054, 0.412, 0.004], + [0.065, 0.013, 0.001, 0.921], + [0.0, 0.006, 0.989, 0.004], + [0.03, 0.212, 0.639, 0.118], + [0.093, 0.435, 0.13, 0.342], + ], + NR1H4: [ + [0.584, 0.061, 0.326, 0.029], + [0.029, 0.0, 0.907, 0.064], + [0.01, 0.006, 0.838, 0.146], + [0.04, 0.112, 0.14, 0.708], + [0.0, 0.876, 0.03, 0.095], + [0.873, 0.03, 0.08, 0.017], + [0.227, 0.237, 0.193, 0.343], + [0.055, 0.094, 0.044, 0.807], + [0.104, 0.119, 0.763, 0.015], + [0.623, 0.19, 0.12, 0.068], + [0.165, 0.772, 0.012, 0.05], + [0.072, 0.845, 0.008, 0.075], + [0.038, 0.336, 0.071, 0.555], + ], + CENPA: [ + [0.028, 0.102, 0.083, 0.787], + [0.088, 0.115, 0.005, 0.792], + [0.045, 0.011, 0.071, 0.873], + [0.102, 0.784, 0.097, 0.017], + [0.136, 0.076, 0.766, 0.023], + [0.142, 0.038, 0.01, 0.811], + [0.08, 0.018, 0.091, 0.811], + [0.025, 0.001, 0.895, 0.079], + [0.136, 0.068, 0.775, 0.02], + [0.909, 0.005, 0.038, 0.048], + [0.862, 0.024, 0.076, 0.039], + [0.792, 0.002, 0.058, 0.148], + [0.022, 0.834, 0.061, 0.083], + [0.045, 0.11, 0.747, 0.098], + [0.086, 0.001, 0.866, 0.048], + [0.044, 0.011, 0.854, 0.091], + [0.751, 0.011, 0.129, 0.109], + [0.102, 0.001, 0.01, 0.887], + [0.321, 0.071, 0.042, 0.566], + [0.455, 0.006, 0.35, 0.189], + [0.103, 0.581, 0.049, 0.267], + [0.271, 0.356, 0.05, 0.323], + [0.034, 0.186, 0.045, 0.734], + [0.313, 0.208, 0.032, 0.447], + ], + VDR: [ + [0.517, 0.018, 0.448, 0.017], + [0.07, 0.006, 0.866, 0.058], + [0.03, 0.004, 0.797, 0.169], + [0.022, 0.076, 0.163, 0.739], + [0.063, 0.728, 0.111, 0.098], + [0.828, 0.037, 0.105, 0.029], + [0.227, 0.297, 0.259, 0.216], + [0.226, 0.215, 0.204, 0.355], + [0.227, 0.088, 0.653, 0.031], + [0.571, 0.006, 0.417, 0.007], + [0.009, 0.0, 0.985, 0.006], + [0.014, 0.002, 0.456, 0.527], + [0.085, 0.115, 0.179, 0.621], + [0.017, 0.758, 0.05, 0.175], + [0.649, 0.065, 0.198, 0.089], + ], + RFX5: [ + [0.005, 0.837, 0.079, 0.079], + [0.243, 0.414, 0.223, 0.12], + [0.027, 0.338, 0.004, 0.631], + [0.383, 0.113, 0.44, 0.063], + [0.063, 0.049, 0.888, 0.0], + [0.033, 0.81, 0.033, 0.124], + [0.643, 0.116, 0.24, 0.001], + [0.723, 0.0, 0.27, 0.006], + [0.0, 0.996, 0.001, 0.003], + ], + ETV4: [ + [0.179, 0.501, 0.262, 0.057], + [0.734, 0.194, 0.058, 0.013], + [0.002, 0.001, 0.984, 0.014], + [0.0, 0.024, 0.974, 0.002], + [0.972, 0.019, 0.006, 0.003], + [0.735, 0.038, 0.055, 0.172], + [0.325, 0.075, 0.584, 0.016], + [0.075, 0.179, 0.117, 0.628], + [0.263, 0.08, 0.516, 0.141], + [0.502, 0.243, 0.13, 0.125], + ], + REST: [ + [0.06, 0.783, 0.048, 0.108], + [0.833, 0.051, 0.081, 0.035], + [0.057, 0.058, 0.864, 0.021], + [0.099, 0.544, 0.218, 0.139], + [0.94, 0.018, 0.034, 0.008], + [0.011, 0.942, 0.018, 0.029], + [0.028, 0.866, 0.06, 0.045], + [0.504, 0.157, 0.097, 0.241], + [0.125, 0.182, 0.06, 0.633], + [0.008, 0.0, 0.992, 0.0], + [0.009, 0.0, 0.991, 0.0], + [0.946, 0.037, 0.002, 0.015], + [0.003, 0.831, 0.119, 0.047], + [0.999, 0.0, 0.001, 0.0], + [0.011, 0.001, 0.987, 0.002], + [0.109, 0.688, 0.064, 0.139], + [0.202, 0.013, 0.402, 0.382], + [0.096, 0.697, 0.144, 0.062], + [0.084, 0.759, 0.011, 0.146], + ], + FOSL2: [ + [0.438, 0.197, 0.319, 0.046], + [0.0, 0.004, 0.0, 0.996], + [0.0, 0.0, 0.987, 0.013], + [1.0, 0.0, 0.0, 0.0], + [0.026, 0.475, 0.393, 0.106], + [0.021, 0.0, 0.002, 0.977], + [0.112, 0.888, 0.0, 0.0], + [0.996, 0.0, 0.004, 0.0], + [0.049, 0.297, 0.214, 0.44], + ], + GATA2: [ + [0.687, 0.023, 0.005, 0.285], + [0.0, 0.0, 1.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.939, 0.0, 0.0, 0.061], + [0.884, 0.008, 0.086, 0.021], + ], + BATF3: [ + [0.53, 0.038, 0.285, 0.147], + [0.043, 0.406, 0.513, 0.039], + [0.0, 0.012, 0.001, 0.986], + [0.104, 0.086, 0.01, 0.8], + [0.001, 0.142, 0.022, 0.835], + [0.055, 0.68, 0.084, 0.181], + [0.449, 0.051, 0.332, 0.168], + [0.338, 0.145, 0.165, 0.352], + [0.28, 0.02, 0.123, 0.578], + [0.544, 0.098, 0.02, 0.338], + [0.013, 0.037, 0.019, 0.931], + [0.019, 0.089, 0.659, 0.233], + [0.892, 0.041, 0.014, 0.052], + ], + MEF2A: [ + [0.06, 0.7, 0.039, 0.201], + [0.0, 0.021, 0.0, 0.979], + [0.944, 0.002, 0.012, 0.043], + [0.152, 0.001, 0.0, 0.846], + [0.206, 0.008, 0.005, 0.78], + [0.136, 0.044, 0.001, 0.819], + [0.277, 0.073, 0.014, 0.635], + [0.151, 0.034, 0.074, 0.741], + [0.675, 0.001, 0.321, 0.003], + [0.165, 0.053, 0.641, 0.142], + ], + KLF5: [ + [0.134, 0.009, 0.79, 0.067], + [0.086, 0.823, 0.049, 0.042], + [0.007, 0.931, 0.004, 0.058], + [0.321, 0.575, 0.068, 0.036], + [0.001, 0.996, 0.0, 0.003], + [0.317, 0.0, 0.575, 0.108], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.999, 0.001, 0.0], + [0.0, 0.896, 0.001, 0.103], + ], + LHX9: [ + [0.004, 0.519, 0.0, 0.477], + [0.841, 0.109, 0.008, 0.042], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.0, 0.014, 0.0, 0.986], + [0.983, 0.0, 0.0, 0.017], + ], + TCF12: [ + [0.276, 0.388, 0.311, 0.025], + [0.0, 0.988, 0.012, 0.0], + [0.932, 0.032, 0.033, 0.002], + [0.0, 0.195, 0.764, 0.041], + [0.008, 0.796, 0.196, 0.0], + [0.001, 0.025, 0.037, 0.938], + [0.0, 0.001, 0.999, 0.0], + [0.022, 0.474, 0.285, 0.22], + ], + NFE2: [ + [0.153, 0.121, 0.091, 0.635], + [0.063, 0.067, 0.745, 0.125], + [0.079, 0.724, 0.129, 0.069], + [0.162, 0.257, 0.019, 0.563], + [0.192, 0.134, 0.509, 0.165], + [0.681, 0.062, 0.036, 0.221], + [0.073, 0.104, 0.794, 0.028], + [0.0, 0.003, 0.0, 0.997], + [0.011, 0.989, 0.0, 0.0], + [0.988, 0.011, 0.001, 0.001], + [0.006, 0.278, 0.063, 0.653], + ], + SOX17: [ + [0.045, 0.78, 0.061, 0.115], + [0.679, 0.01, 0.007, 0.304], + [0.0, 0.005, 0.001, 0.993], + [0.001, 0.0, 0.0, 0.999], + [0.022, 0.086, 0.892, 0.0], + [0.076, 0.002, 0.002, 0.921], + [0.383, 0.179, 0.101, 0.338], + [0.092, 0.14, 0.021, 0.746], + [0.107, 0.077, 0.367, 0.449], + ], + ZNF708: [ + [0.132, 0.101, 0.582, 0.185], + [0.177, 0.166, 0.45, 0.207], + [0.859, 0.022, 0.116, 0.003], + [0.008, 0.02, 0.972, 0.0], + [0.046, 0.064, 0.885, 0.005], + [0.018, 0.367, 0.016, 0.599], + [0.881, 0.007, 0.103, 0.009], + [0.02, 0.911, 0.03, 0.04], + [0.711, 0.02, 0.255, 0.014], + [0.005, 0.004, 0.96, 0.031], + [0.053, 0.876, 0.007, 0.064], + ], + NFE2L1: [ + [0.17, 0.172, 0.116, 0.541], + [0.094, 0.144, 0.682, 0.08], + [0.142, 0.692, 0.107, 0.058], + [0.084, 0.157, 0.066, 0.693], + [0.095, 0.058, 0.69, 0.157], + [0.784, 0.075, 0.024, 0.117], + [0.09, 0.156, 0.704, 0.051], + [0.021, 0.018, 0.031, 0.931], + [0.055, 0.914, 0.009, 0.022], + [0.904, 0.036, 0.049, 0.011], + [0.018, 0.286, 0.106, 0.59], + ], + ARNT: [ + [0.653, 0.04, 0.278, 0.028], + [0.0, 0.968, 0.001, 0.031], + [0.025, 0.001, 0.973, 0.002], + [0.0, 0.013, 0.0, 0.987], + [0.0, 0.001, 0.996, 0.003], + [0.223, 0.541, 0.118, 0.118], + ], + MITF: [ + [0.494, 0.076, 0.392, 0.039], + [0.064, 0.216, 0.076, 0.644], + [0.0, 0.999, 0.0, 0.0], + [0.847, 0.013, 0.008, 0.133], + [0.0, 0.725, 0.0, 0.275], + [0.234, 0.011, 0.755, 0.0], + [0.009, 0.0, 0.003, 0.987], + [0.0, 0.0, 1.0, 0.0], + [0.882, 0.036, 0.059, 0.023], + [0.006, 0.489, 0.033, 0.472], + ], + PGR: [ + [0.441, 0.031, 0.372, 0.155], + [0.139, 0.015, 0.723, 0.123], + [0.341, 0.148, 0.298, 0.212], + [0.854, 0.012, 0.041, 0.093], + [0.002, 0.912, 0.04, 0.047], + [0.65, 0.02, 0.138, 0.193], + [0.155, 0.202, 0.133, 0.511], + [0.198, 0.285, 0.168, 0.35], + [0.169, 0.422, 0.206, 0.203], + [0.157, 0.096, 0.022, 0.725], + [0.039, 0.033, 0.919, 0.009], + [0.084, 0.046, 0.036, 0.834], + [0.184, 0.309, 0.142, 0.364], + [0.1, 0.729, 0.017, 0.154], + [0.148, 0.37, 0.049, 0.433], + ], + EGR2: [ + [0.156, 0.186, 0.606, 0.052], + [0.201, 0.362, 0.137, 0.301], + [0.0, 0.0, 1.0, 0.0], + [0.009, 0.046, 0.221, 0.724], + [0.059, 0.0, 0.939, 0.002], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.198, 0.411, 0.004, 0.387], + [0.028, 0.011, 0.931, 0.029], + [0.084, 0.1, 0.58, 0.236], + ], + ZNF354A: [ + [0.073, 0.341, 0.121, 0.464], + [0.08, 0.565, 0.1, 0.255], + [0.08, 0.177, 0.069, 0.673], + [0.069, 0.1, 0.048, 0.784], + [0.082, 0.08, 0.048, 0.79], + [0.087, 0.072, 0.052, 0.79], + [0.586, 0.074, 0.169, 0.171], + [0.668, 0.048, 0.13, 0.154], + [0.163, 0.143, 0.061, 0.633], + [0.156, 0.061, 0.069, 0.714], + [0.2, 0.056, 0.573, 0.171], + [0.204, 0.054, 0.592, 0.15], + [0.421, 0.085, 0.252, 0.243], + [0.336, 0.043, 0.523, 0.098], + [0.284, 0.087, 0.067, 0.562], + [0.438, 0.046, 0.41, 0.106], + [0.05, 0.059, 0.059, 0.833], + [0.024, 0.035, 0.039, 0.902], + [0.009, 0.017, 0.022, 0.952], + [0.843, 0.024, 0.085, 0.048], + [0.233, 0.013, 0.685, 0.07], + [0.402, 0.083, 0.143, 0.372], + [0.067, 0.75, 0.035, 0.148], + [0.009, 0.92, 0.011, 0.061], + [0.904, 0.03, 0.048, 0.017], + [0.007, 0.046, 0.013, 0.935], + [0.002, 0.0, 0.022, 0.976], + [0.02, 0.076, 0.013, 0.891], + [0.963, 0.0, 0.033, 0.004], + [0.026, 0.721, 0.004, 0.248], + [0.887, 0.009, 0.1, 0.004], + [0.007, 0.031, 0.015, 0.948], + [0.0, 0.011, 0.033, 0.956], + [0.002, 0.017, 0.022, 0.959], + [0.974, 0.002, 0.015, 0.009], + [0.675, 0.013, 0.166, 0.146], + [0.044, 0.015, 0.002, 0.939], + [0.122, 0.007, 0.861, 0.011], + [0.009, 0.078, 0.052, 0.861], + [0.734, 0.009, 0.196, 0.061], + [0.841, 0.041, 0.098, 0.02], + [0.059, 0.033, 0.015, 0.893], + [0.1, 0.081, 0.054, 0.765], + [0.717, 0.033, 0.129, 0.122], + [0.065, 0.248, 0.044, 0.643], + [0.083, 0.109, 0.085, 0.723], + [0.279, 0.041, 0.595, 0.085], + [0.662, 0.096, 0.111, 0.131], + [0.129, 0.102, 0.068, 0.702], + [0.721, 0.033, 0.124, 0.122], + [0.198, 0.078, 0.083, 0.641], + [0.32, 0.046, 0.479, 0.155], + [0.172, 0.076, 0.353, 0.399], + [0.181, 0.107, 0.102, 0.61], + [0.288, 0.044, 0.144, 0.525], + [0.27, 0.076, 0.497, 0.157], + [0.237, 0.057, 0.497, 0.209], + [0.414, 0.081, 0.285, 0.22], + [0.111, 0.214, 0.081, 0.595], + [0.126, 0.05, 0.057, 0.767], + [0.157, 0.061, 0.092, 0.691], + [0.599, 0.094, 0.109, 0.198], + ], + ZBTB12: [ + [0.081, 0.345, 0.103, 0.471], + [0.033, 0.807, 0.067, 0.093], + [0.068, 0.104, 0.12, 0.708], + [0.761, 0.006, 0.233, 0.0], + [0.001, 0.0, 0.998, 0.001], + [0.962, 0.021, 0.007, 0.01], + [0.919, 0.007, 0.06, 0.014], + [0.002, 0.985, 0.001, 0.012], + [0.245, 0.53, 0.097, 0.129], + ], + SPI1: [ + [0.523, 0.082, 0.211, 0.183], + [0.535, 0.071, 0.251, 0.143], + [0.481, 0.047, 0.219, 0.254], + [0.265, 0.093, 0.589, 0.054], + [0.613, 0.045, 0.323, 0.02], + [0.07, 0.0, 0.93, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.999, 0.0, 0.0, 0.001], + [0.991, 0.0, 0.0, 0.009], + [0.074, 0.159, 0.764, 0.003], + [0.142, 0.055, 0.047, 0.756], + [0.048, 0.23, 0.687, 0.035], + ], + AHR: [ + [0.198, 0.027, 0.495, 0.28], + [0.014, 0.984, 0.0, 0.001], + [0.994, 0.0, 0.0, 0.006], + [0.001, 0.77, 0.031, 0.198], + [0.019, 0.0, 0.98, 0.0], + [0.173, 0.656, 0.114, 0.058], + [0.564, 0.147, 0.145, 0.144], + [0.516, 0.222, 0.129, 0.133], + ], + CTCF: [ + [0.091, 0.799, 0.061, 0.05], + [0.038, 0.95, 0.008, 0.004], + [0.612, 0.028, 0.176, 0.184], + [0.051, 0.561, 0.357, 0.03], + [0.169, 0.403, 0.085, 0.344], + [0.718, 0.033, 0.166, 0.084], + [0.01, 0.014, 0.958, 0.018], + [0.295, 0.007, 0.684, 0.013], + [0.114, 0.044, 0.558, 0.284], + [0.017, 0.021, 0.934, 0.028], + [0.055, 0.096, 0.752, 0.097], + [0.191, 0.617, 0.073, 0.12], + [0.315, 0.127, 0.461, 0.097], + ], + GATA6: [ + [0.641, 0.026, 0.0, 0.333], + [0.0, 0.0, 1.0, 0.0], + [0.972, 0.0, 0.003, 0.025], + [0.001, 0.006, 0.003, 0.989], + [0.973, 0.001, 0.0, 0.026], + [0.902, 0.016, 0.038, 0.045], + [0.301, 0.096, 0.555, 0.048], + [0.35, 0.221, 0.406, 0.023], + ], + MAFK: [ + [0.192, 0.213, 0.091, 0.504], + [0.246, 0.143, 0.407, 0.204], + [0.597, 0.101, 0.124, 0.179], + [0.193, 0.293, 0.458, 0.056], + [0.02, 0.003, 0.001, 0.976], + [0.061, 0.931, 0.0, 0.007], + [0.974, 0.002, 0.019, 0.005], + [0.007, 0.001, 0.863, 0.129], + [0.0, 0.991, 0.007, 0.001], + [0.857, 0.018, 0.036, 0.089], + [0.367, 0.164, 0.175, 0.294], + [0.396, 0.059, 0.063, 0.482], + [0.346, 0.081, 0.046, 0.528], + [0.271, 0.141, 0.072, 0.516], + ], + KLF1: [ + [0.17, 0.005, 0.825, 0.001], + [0.0, 0.017, 0.982, 0.001], + [0.0, 0.0, 1.0, 0.0], + [0.003, 0.743, 0.0, 0.254], + [0.0, 0.0, 1.0, 0.0], + [0.006, 0.0, 0.75, 0.244], + [0.276, 0.091, 0.586, 0.048], + [0.0, 0.011, 0.971, 0.018], + ], + XBP1: [ + [0.531, 0.114, 0.134, 0.221], + [0.283, 0.155, 0.213, 0.349], + [0.318, 0.097, 0.306, 0.279], + [0.106, 0.085, 0.487, 0.322], + [0.542, 0.423, 0.007, 0.028], + [0.026, 0.825, 0.0, 0.149], + [0.969, 0.0, 0.027, 0.003], + [0.009, 0.978, 0.01, 0.003], + [0.098, 0.016, 0.886, 0.0], + [0.017, 0.07, 0.002, 0.91], + ], + ZNF8: [ + [0.179, 0.06, 0.647, 0.114], + [0.224, 0.069, 0.615, 0.092], + [0.673, 0.06, 0.127, 0.14], + [0.127, 0.084, 0.076, 0.712], + [0.698, 0.064, 0.114, 0.124], + [0.75, 0.071, 0.097, 0.081], + [0.776, 0.056, 0.085, 0.082], + [0.126, 0.248, 0.423, 0.202], + [0.797, 0.051, 0.06, 0.093], + [0.781, 0.075, 0.085, 0.059], + [0.812, 0.084, 0.067, 0.038], + [0.593, 0.202, 0.036, 0.17], + [0.044, 0.068, 0.043, 0.845], + [0.159, 0.059, 0.766, 0.016], + [0.008, 0.063, 0.014, 0.915], + [0.006, 0.002, 0.975, 0.017], + [0.005, 0.005, 0.989, 0.001], + [0.001, 0.09, 0.001, 0.908], + [0.987, 0.009, 0.003, 0.002], + [0.027, 0.454, 0.024, 0.495], + [0.756, 0.005, 0.23, 0.009], + [0.014, 0.122, 0.019, 0.844], + [0.41, 0.509, 0.051, 0.03], + [0.07, 0.411, 0.008, 0.511], + [0.891, 0.03, 0.034, 0.046], + [0.056, 0.366, 0.073, 0.506], + [0.722, 0.025, 0.153, 0.099], + [0.133, 0.702, 0.024, 0.14], + [0.58, 0.309, 0.051, 0.059], + [0.737, 0.063, 0.125, 0.076], + [0.084, 0.099, 0.075, 0.742], + [0.131, 0.047, 0.748, 0.074], + [0.138, 0.046, 0.75, 0.066], + [0.804, 0.052, 0.078, 0.066], + [0.716, 0.066, 0.14, 0.079], + [0.101, 0.076, 0.044, 0.779], + [0.788, 0.052, 0.071, 0.089], + [0.079, 0.51, 0.069, 0.341], + [0.098, 0.075, 0.05, 0.777], + [0.779, 0.06, 0.072, 0.089], + [0.078, 0.238, 0.058, 0.626], + [0.161, 0.08, 0.277, 0.482], + [0.095, 0.665, 0.07, 0.17], + [0.733, 0.062, 0.122, 0.083], + [0.124, 0.105, 0.7, 0.071], + [0.103, 0.7, 0.056, 0.141], + [0.244, 0.559, 0.086, 0.111], + [0.668, 0.108, 0.095, 0.13], + [0.099, 0.105, 0.065, 0.731], + [0.65, 0.066, 0.163, 0.121], + [0.785, 0.065, 0.064, 0.086], + [0.818, 0.059, 0.061, 0.061], + [0.798, 0.05, 0.077, 0.075], + [0.802, 0.047, 0.087, 0.064], + [0.455, 0.062, 0.388, 0.095], + [0.246, 0.059, 0.584, 0.111], + [0.686, 0.06, 0.168, 0.086], + [0.705, 0.066, 0.11, 0.118], + [0.201, 0.155, 0.163, 0.481], + [0.339, 0.079, 0.455, 0.127], + [0.65, 0.076, 0.145, 0.129], + [0.456, 0.093, 0.328, 0.123], + [0.43, 0.161, 0.183, 0.227], + [0.178, 0.13, 0.099, 0.593], + ], + ZNF146: [ + [0.86, 0.024, 0.063, 0.053], + [0.142, 0.087, 0.685, 0.086], + [0.858, 0.034, 0.06, 0.049], + [0.873, 0.041, 0.041, 0.046], + [0.885, 0.026, 0.041, 0.048], + [0.823, 0.057, 0.045, 0.074], + [0.097, 0.053, 0.042, 0.809], + [0.133, 0.033, 0.765, 0.068], + [0.068, 0.033, 0.058, 0.84], + [0.083, 0.029, 0.814, 0.073], + [0.112, 0.031, 0.807, 0.051], + [0.05, 0.47, 0.045, 0.435], + [0.843, 0.052, 0.057, 0.048], + [0.055, 0.705, 0.027, 0.212], + [0.861, 0.033, 0.06, 0.045], + [0.047, 0.064, 0.035, 0.854], + [0.784, 0.095, 0.055, 0.066], + [0.039, 0.187, 0.021, 0.754], + [0.897, 0.026, 0.046, 0.031], + [0.037, 0.722, 0.02, 0.222], + [0.894, 0.025, 0.052, 0.028], + [0.042, 0.855, 0.023, 0.08], + [0.212, 0.697, 0.033, 0.057], + [0.885, 0.013, 0.091, 0.012], + [0.017, 0.044, 0.016, 0.923], + [0.037, 0.001, 0.959, 0.003], + [0.029, 0.0, 0.971, 0.0], + [0.988, 0.004, 0.007, 0.001], + [0.933, 0.01, 0.055, 0.002], + [0.004, 0.017, 0.001, 0.978], + [0.991, 0.001, 0.007, 0.001], + [0.005, 0.835, 0.023, 0.137], + [0.004, 0.013, 0.004, 0.979], + [0.996, 0.002, 0.002, 0.0], + [0.001, 0.147, 0.008, 0.844], + [0.114, 0.003, 0.703, 0.181], + [0.005, 0.952, 0.004, 0.039], + [0.974, 0.001, 0.016, 0.01], + [0.016, 0.011, 0.968, 0.005], + [0.003, 0.949, 0.007, 0.042], + [0.063, 0.901, 0.004, 0.032], + [0.891, 0.021, 0.042, 0.046], + [0.007, 0.035, 0.015, 0.943], + [0.788, 0.021, 0.152, 0.039], + [0.982, 0.005, 0.008, 0.006], + [0.988, 0.005, 0.004, 0.003], + [0.966, 0.01, 0.021, 0.002], + [0.996, 0.001, 0.003, 0.001], + [0.731, 0.006, 0.234, 0.028], + [0.05, 0.009, 0.799, 0.143], + [0.519, 0.012, 0.46, 0.009], + [0.893, 0.016, 0.041, 0.05], + [0.096, 0.115, 0.103, 0.686], + [0.216, 0.023, 0.705, 0.056], + [0.831, 0.025, 0.095, 0.049], + [0.282, 0.047, 0.61, 0.061], + [0.36, 0.066, 0.09, 0.484], + [0.058, 0.09, 0.035, 0.817], + [0.161, 0.643, 0.06, 0.136], + [0.648, 0.16, 0.062, 0.13], + [0.074, 0.092, 0.079, 0.755], + [0.098, 0.052, 0.726, 0.124], + [0.106, 0.102, 0.075, 0.717], + [0.058, 0.725, 0.038, 0.18], + ], + EOMES: [ + [0.76, 0.01, 0.15, 0.08], + [0.271, 0.025, 0.635, 0.069], + [0.0, 0.076, 0.919, 0.005], + [0.0, 0.056, 0.001, 0.944], + [0.0, 0.0, 0.999, 0.0], + [0.267, 0.144, 0.014, 0.575], + [0.035, 0.249, 0.41, 0.306], + [0.909, 0.0, 0.056, 0.035], + [0.45, 0.108, 0.377, 0.064], + ], + NFYA: [ + [0.447, 0.113, 0.401, 0.04], + [0.318, 0.086, 0.497, 0.098], + [0.0, 0.99, 0.005, 0.005], + [0.017, 0.972, 0.009, 0.002], + [0.969, 0.0, 0.0, 0.031], + [0.983, 0.005, 0.01, 0.002], + [0.0, 0.033, 0.001, 0.966], + [0.133, 0.543, 0.28, 0.044], + [0.525, 0.096, 0.37, 0.01], + [0.163, 0.227, 0.522, 0.088], + ], + RFX1: [ + [0.186, 0.067, 0.622, 0.125], + [0.093, 0.113, 0.133, 0.66], + [0.142, 0.201, 0.089, 0.569], + [0.186, 0.186, 0.428, 0.201], + [0.037, 0.759, 0.05, 0.155], + [0.018, 0.848, 0.012, 0.123], + [0.626, 0.161, 0.052, 0.161], + [0.107, 0.056, 0.066, 0.77], + [0.251, 0.001, 0.748, 0.0], + [0.117, 0.01, 0.871, 0.002], + [0.132, 0.636, 0.059, 0.173], + [0.76, 0.006, 0.122, 0.112], + [0.961, 0.007, 0.027, 0.005], + [0.005, 0.921, 0.0, 0.074], + ], + NEUROG2: [ + [0.338, 0.331, 0.33, 0.0], + [0.0, 1.0, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.005, 0.757, 0.238], + [0.394, 0.605, 0.0, 0.0], + [0.002, 0.008, 0.0, 0.99], + [0.0, 0.0, 0.996, 0.004], + [0.018, 0.315, 0.41, 0.257], + ], + EHF: [ + [0.524, 0.109, 0.232, 0.135], + [0.003, 0.611, 0.063, 0.322], + [0.035, 0.0, 0.001, 0.965], + [0.0, 0.0, 0.0, 1.0], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.999, 0.0, 0.0], + [0.0, 0.022, 0.207, 0.771], + [0.004, 0.274, 0.562, 0.16], + [0.181, 0.26, 0.325, 0.235], + [0.218, 0.075, 0.054, 0.652], + ], + SCRT2: [ + [0.088, 0.1, 0.468, 0.344], + [0.013, 0.927, 0.01, 0.05], + [0.817, 0.099, 0.031, 0.053], + [0.975, 0.0, 0.016, 0.009], + [0.0, 1.0, 0.0, 0.0], + [0.987, 0.001, 0.0, 0.013], + [0.195, 0.005, 0.789, 0.011], + [0.022, 0.005, 0.944, 0.028], + [0.012, 0.046, 0.005, 0.937], + [0.139, 0.082, 0.611, 0.169], + ], + HAND1: [ + [0.035, 0.348, 0.065, 0.551], + [0.007, 0.99, 0.003, 0.0], + [0.0, 0.025, 0.013, 0.963], + [0.003, 0.0, 0.997, 0.0], + [0.0, 0.202, 0.59, 0.208], + [0.287, 0.128, 0.185, 0.4], + [0.194, 0.22, 0.121, 0.465], + [0.296, 0.147, 0.097, 0.461], + [0.196, 0.208, 0.274, 0.322], + [0.059, 0.376, 0.049, 0.517], + [0.208, 0.257, 0.391, 0.145], + [0.012, 0.023, 0.043, 0.922], + [0.022, 0.935, 0.003, 0.04], + [0.601, 0.095, 0.048, 0.256], + ], + FLI1: [ + [0.38, 0.1, 0.417, 0.103], + [0.27, 0.429, 0.292, 0.01], + [0.742, 0.129, 0.099, 0.03], + [0.007, 0.009, 0.953, 0.03], + [0.0, 0.009, 0.989, 0.001], + [0.928, 0.047, 0.024, 0.0], + [0.927, 0.001, 0.024, 0.048], + [0.02, 0.001, 0.978, 0.0], + ], + SOX13: [ + [0.464, 0.104, 0.312, 0.12], + [0.658, 0.092, 0.191, 0.059], + [0.943, 0.002, 0.0, 0.055], + [0.0, 1.0, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.579, 0.002, 0.0, 0.419], + [0.34, 0.083, 0.529, 0.048], + [0.274, 0.185, 0.516, 0.025], + ], + ELF3: [ + [0.658, 0.024, 0.221, 0.096], + [0.0, 0.632, 0.025, 0.343], + [0.03, 0.0, 0.0, 0.97], + [0.0, 0.0, 0.0, 1.0], + [0.0, 1.0, 0.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.001, 0.024, 0.121, 0.854], + [0.022, 0.262, 0.534, 0.182], + [0.119, 0.285, 0.292, 0.304], + [0.193, 0.145, 0.061, 0.601], + ], + ZNF250: [ + [0.11, 0.106, 0.061, 0.723], + [0.316, 0.06, 0.442, 0.183], + [0.071, 0.052, 0.092, 0.785], + [0.144, 0.055, 0.622, 0.178], + [0.039, 0.139, 0.092, 0.729], + [0.049, 0.683, 0.057, 0.21], + [0.052, 0.117, 0.049, 0.781], + [0.185, 0.059, 0.575, 0.181], + [0.048, 0.066, 0.083, 0.802], + [0.039, 0.225, 0.04, 0.697], + [0.03, 0.138, 0.02, 0.811], + [0.047, 0.053, 0.031, 0.868], + [0.046, 0.043, 0.065, 0.845], + [0.647, 0.047, 0.206, 0.1], + [0.047, 0.082, 0.049, 0.822], + [0.301, 0.06, 0.568, 0.071], + [0.079, 0.744, 0.051, 0.126], + [0.05, 0.803, 0.026, 0.121], + [0.852, 0.042, 0.048, 0.058], + [0.188, 0.034, 0.733, 0.045], + [0.019, 0.077, 0.049, 0.855], + [0.774, 0.012, 0.177, 0.036], + [0.044, 0.893, 0.025, 0.039], + [0.009, 0.949, 0.009, 0.033], + [0.921, 0.035, 0.023, 0.021], + [0.021, 0.205, 0.028, 0.746], + [0.404, 0.009, 0.565, 0.021], + [0.015, 0.884, 0.023, 0.078], + [0.027, 0.04, 0.013, 0.92], + [0.029, 0.027, 0.907, 0.037], + [0.011, 0.036, 0.037, 0.916], + [0.027, 0.022, 0.006, 0.946], + [0.002, 0.035, 0.003, 0.96], + [0.005, 0.012, 0.05, 0.933], + [0.091, 0.039, 0.843, 0.027], + [0.459, 0.044, 0.456, 0.042], + [0.04, 0.026, 0.018, 0.917], + [0.037, 0.028, 0.067, 0.867], + [0.914, 0.014, 0.028, 0.044], + [0.012, 0.845, 0.027, 0.116], + [0.038, 0.098, 0.029, 0.835], + [0.498, 0.004, 0.489, 0.009], + [0.006, 0.07, 0.018, 0.906], + [0.891, 0.018, 0.046, 0.045], + [0.055, 0.038, 0.896, 0.011], + [0.009, 0.902, 0.012, 0.078], + [0.03, 0.191, 0.001, 0.777], + [0.003, 0.168, 0.003, 0.827], + [0.009, 0.019, 0.018, 0.954], + [0.107, 0.025, 0.852, 0.016], + [0.022, 0.115, 0.016, 0.848], + [0.884, 0.018, 0.07, 0.028], + [0.299, 0.019, 0.622, 0.061], + [0.016, 0.075, 0.016, 0.893], + [0.855, 0.026, 0.076, 0.043], + [0.154, 0.078, 0.028, 0.74], + [0.716, 0.018, 0.242, 0.025], + [0.178, 0.066, 0.261, 0.495], + [0.009, 0.026, 0.01, 0.956], + [0.013, 0.06, 0.009, 0.917], + [0.021, 0.053, 0.042, 0.884], + [0.146, 0.044, 0.761, 0.048], + [0.889, 0.022, 0.042, 0.047], + [0.836, 0.022, 0.067, 0.076], + ], + SOX9: [ + [0.406, 0.073, 0.403, 0.118], + [0.627, 0.12, 0.186, 0.068], + [0.905, 0.026, 0.001, 0.067], + [0.0, 0.976, 0.022, 0.002], + [0.997, 0.001, 0.002, 0.001], + [0.978, 0.011, 0.008, 0.003], + [0.511, 0.007, 0.026, 0.456], + [0.145, 0.105, 0.733, 0.017], + [0.335, 0.156, 0.448, 0.061], + [0.275, 0.217, 0.313, 0.194], + [0.199, 0.301, 0.223, 0.278], + [0.146, 0.367, 0.189, 0.298], + [0.136, 0.47, 0.131, 0.263], + [0.279, 0.188, 0.066, 0.467], + [0.059, 0.142, 0.088, 0.711], + [0.066, 0.062, 0.148, 0.725], + [0.147, 0.125, 0.432, 0.296], + [0.237, 0.056, 0.151, 0.557], + ], + MZF1: [ + [0.286, 0.057, 0.198, 0.458], + [0.173, 0.001, 0.826, 0.0], + [0.003, 0.0, 0.997, 0.0], + [0.0, 0.0, 0.999, 0.001], + [0.0, 0.0, 1.0, 0.0], + [0.999, 0.001, 0.0, 0.0], + [0.079, 0.059, 0.182, 0.679], + [0.005, 0.298, 0.161, 0.536], + ], + ZNF449: [ + [0.355, 0.314, 0.302, 0.029], + [0.632, 0.235, 0.021, 0.112], + [0.0, 0.0, 0.999, 0.001], + [0.003, 0.876, 0.112, 0.009], + [0.001, 0.983, 0.015, 0.0], + [0.009, 0.955, 0.036, 0.001], + [0.8, 0.073, 0.073, 0.054], + [0.705, 0.001, 0.289, 0.004], + [0.024, 0.948, 0.015, 0.012], + [0.129, 0.679, 0.071, 0.121], + ], + ERG: [ + [0.44, 0.117, 0.378, 0.065], + [0.011, 0.627, 0.016, 0.346], + [0.093, 0.008, 0.002, 0.898], + [0.014, 0.002, 0.008, 0.976], + [0.0, 0.999, 0.001, 0.0], + [0.019, 0.977, 0.0, 0.004], + [0.0, 0.02, 0.18, 0.8], + [0.017, 0.18, 0.65, 0.154], + ], + IRF2: [ + [0.069, 0.418, 0.129, 0.383], + [0.068, 0.595, 0.08, 0.257], + [0.486, 0.113, 0.246, 0.155], + [0.003, 0.671, 0.316, 0.01], + [0.041, 0.049, 0.0, 0.91], + [0.013, 0.088, 0.033, 0.866], + [0.0, 0.353, 0.0, 0.646], + [0.0, 0.951, 0.013, 0.036], + [0.352, 0.094, 0.27, 0.283], + [0.04, 0.475, 0.295, 0.19], + [0.02, 0.178, 0.081, 0.721], + [0.122, 0.129, 0.005, 0.744], + [0.075, 0.225, 0.113, 0.587], + [0.11, 0.515, 0.183, 0.192], + ], + IKZF1: [ + [0.101, 0.233, 0.078, 0.588], + [0.151, 0.059, 0.752, 0.038], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.007, 0.993, 0.0], + [0.995, 0.004, 0.0, 0.001], + [0.67, 0.015, 0.251, 0.063], + [0.239, 0.09, 0.253, 0.419], + [0.411, 0.026, 0.336, 0.226], + ], + MAF: [ + [0.105, 0.227, 0.524, 0.144], + [0.156, 0.577, 0.084, 0.183], + [0.212, 0.17, 0.121, 0.496], + [0.214, 0.124, 0.461, 0.201], + [0.509, 0.163, 0.116, 0.213], + [0.132, 0.272, 0.525, 0.071], + [0.012, 0.032, 0.032, 0.925], + [0.123, 0.875, 0.0, 0.002], + [0.908, 0.013, 0.024, 0.055], + [0.003, 0.0, 0.912, 0.084], + [0.004, 0.965, 0.018, 0.012], + [0.803, 0.015, 0.083, 0.099], + [0.291, 0.248, 0.264, 0.197], + [0.362, 0.154, 0.119, 0.365], + [0.291, 0.127, 0.086, 0.496], + ], + PHOX2B: [ + [0.191, 0.029, 0.016, 0.764], + [0.807, 0.012, 0.058, 0.123], + [1.0, 0.0, 0.0, 0.0], + [0.036, 0.034, 0.012, 0.917], + [0.061, 0.152, 0.066, 0.721], + [0.5, 0.033, 0.135, 0.332], + [0.613, 0.109, 0.222, 0.056], + [0.875, 0.009, 0.072, 0.043], + [0.0, 0.0, 0.0, 1.0], + [0.064, 0.045, 0.011, 0.881], + [0.831, 0.009, 0.02, 0.14], + ], + SOX5: [ + [0.04, 0.507, 0.233, 0.219], + [0.031, 0.583, 0.059, 0.327], + [0.499, 0.017, 0.047, 0.437], + [0.001, 0.003, 0.024, 0.972], + [0.001, 0.007, 0.0, 0.991], + [0.003, 0.022, 0.975, 0.0], + [0.121, 0.005, 0.039, 0.835], + [0.058, 0.21, 0.11, 0.623], + [0.106, 0.362, 0.106, 0.427], + ], + OSR2: [ + [0.044, 0.858, 0.008, 0.089], + [0.715, 0.0, 0.285, 0.0], + [0.0, 0.0, 0.997, 0.003], + [0.286, 0.017, 0.162, 0.535], + [0.852, 0.0, 0.12, 0.028], + [0.009, 0.0, 0.98, 0.011], + [0.018, 0.836, 0.045, 0.101], + ], + PITX3: [ + [0.264, 0.013, 0.703, 0.019], + [0.071, 0.043, 0.882, 0.005], + [0.777, 0.221, 0.001, 0.002], + [0.0, 0.001, 0.0, 0.999], + [0.003, 0.046, 0.0, 0.951], + [0.853, 0.005, 0.002, 0.14], + [0.43, 0.055, 0.396, 0.119], + ], + OLIG2: [ + [0.273, 0.418, 0.294, 0.016], + [0.001, 0.999, 0.0, 0.0], + [0.844, 0.0, 0.117, 0.039], + [0.003, 0.002, 0.659, 0.336], + [0.373, 0.627, 0.0, 0.0], + [0.016, 0.115, 0.017, 0.852], + [0.0, 0.0, 0.911, 0.089], + [0.006, 0.239, 0.581, 0.174], + ], + KLF14: [ + [0.134, 0.145, 0.629, 0.091], + [0.144, 0.529, 0.105, 0.223], + [0.079, 0.679, 0.032, 0.21], + [0.372, 0.623, 0.0, 0.005], + [0.012, 0.981, 0.0, 0.007], + [0.154, 0.001, 0.771, 0.074], + [0.009, 0.987, 0.0, 0.004], + [0.001, 0.98, 0.009, 0.01], + [0.0, 0.963, 0.003, 0.034], + [0.472, 0.406, 0.005, 0.117], + [0.025, 0.766, 0.043, 0.165], + ], + EBF1: [ + [0.051, 0.251, 0.12, 0.577], + [0.007, 0.922, 0.071, 0.0], + [0.025, 0.78, 0.056, 0.139], + [0.0, 0.965, 0.017, 0.018], + [0.293, 0.335, 0.061, 0.311], + [0.305, 0.082, 0.335, 0.277], + [0.026, 0.033, 0.94, 0.002], + [0.171, 0.049, 0.72, 0.06], + [0.0, 0.091, 0.888, 0.021], + [0.595, 0.066, 0.312, 0.027], + [0.175, 0.493, 0.246, 0.086], + ], + FOXK1: [ + [0.017, 0.007, 0.012, 0.964], + [0.101, 0.001, 0.898, 0.0], + [0.013, 0.003, 0.006, 0.978], + [0.012, 0.0, 0.057, 0.93], + [0.0, 0.0, 0.193, 0.807], + [0.771, 0.071, 0.021, 0.137], + [0.0, 0.633, 0.053, 0.314], + ], + NR1H2: [ + [0.071, 0.107, 0.09, 0.731], + [0.172, 0.076, 0.598, 0.154], + [0.529, 0.138, 0.28, 0.052], + [0.367, 0.59, 0.023, 0.02], + [0.025, 0.968, 0.003, 0.004], + [0.024, 0.061, 0.002, 0.912], + [0.028, 0.093, 0.01, 0.869], + [0.015, 0.027, 0.035, 0.922], + [0.154, 0.098, 0.704, 0.044], + [0.438, 0.197, 0.226, 0.139], + [0.321, 0.39, 0.041, 0.247], + [0.115, 0.715, 0.085, 0.085], + [0.13, 0.345, 0.046, 0.48], + ], + ZNF382: [ + [0.087, 0.689, 0.044, 0.179], + [0.07, 0.11, 0.181, 0.638], + [0.038, 0.092, 0.842, 0.028], + [0.017, 0.027, 0.015, 0.941], + [0.551, 0.021, 0.235, 0.193], + [0.057, 0.287, 0.54, 0.116], + [0.022, 0.037, 0.034, 0.907], + [0.465, 0.019, 0.424, 0.092], + [0.323, 0.239, 0.237, 0.201], + [0.03, 0.082, 0.022, 0.866], + [0.158, 0.024, 0.518, 0.3], + [0.082, 0.209, 0.216, 0.493], + [0.115, 0.758, 0.03, 0.097], + [0.104, 0.218, 0.034, 0.644], + [0.073, 0.767, 0.069, 0.091], + [0.333, 0.338, 0.068, 0.26], + [0.112, 0.203, 0.113, 0.572], + ], + MYB: [ + [0.988, 0.0, 0.003, 0.009], + [0.982, 0.002, 0.015, 0.001], + [0.0, 1.0, 0.0, 0.0], + [0.13, 0.165, 0.156, 0.549], + [0.059, 0.005, 0.936, 0.0], + [0.284, 0.388, 0.028, 0.299], + [0.309, 0.436, 0.032, 0.223], + ], + TBP: [ + [0.05, 0.516, 0.158, 0.276], + [0.284, 0.028, 0.057, 0.63], + [0.832, 0.008, 0.032, 0.128], + [0.003, 0.014, 0.024, 0.959], + [0.85, 0.085, 0.006, 0.059], + [0.628, 0.029, 0.025, 0.318], + [0.815, 0.002, 0.153, 0.031], + [0.55, 0.045, 0.144, 0.261], + ], + ASCL1: [ + [0.238, 0.278, 0.479, 0.006], + [0.007, 0.99, 0.0, 0.003], + [0.994, 0.002, 0.002, 0.002], + [0.022, 0.0, 0.978, 0.001], + [0.117, 0.405, 0.478, 0.0], + [0.01, 0.0, 0.003, 0.987], + [0.003, 0.001, 0.987, 0.009], + ], + ZNF85: [ + [0.661, 0.073, 0.174, 0.092], + [0.034, 0.007, 0.936, 0.023], + [0.93, 0.026, 0.032, 0.011], + [0.008, 0.008, 0.107, 0.877], + [0.002, 0.001, 0.002, 0.994], + [0.407, 0.404, 0.081, 0.108], + [0.004, 0.976, 0.005, 0.015], + [0.444, 0.064, 0.078, 0.414], + [0.035, 0.045, 0.426, 0.494], + [0.004, 0.852, 0.003, 0.141], + [0.704, 0.069, 0.083, 0.144], + [0.126, 0.212, 0.442, 0.221], + [0.322, 0.134, 0.085, 0.459], + [0.123, 0.249, 0.102, 0.527], + [0.13, 0.127, 0.208, 0.534], + [0.139, 0.167, 0.114, 0.581], + [0.12, 0.515, 0.109, 0.255], + ], + ZBTB33: [ + [0.069, 0.148, 0.132, 0.651], + [0.105, 0.756, 0.08, 0.058], + [0.087, 0.112, 0.145, 0.656], + [0.031, 0.906, 0.052, 0.01], + [0.066, 0.01, 0.911, 0.013], + [0.025, 0.881, 0.01, 0.084], + [0.004, 0.009, 0.981, 0.006], + [0.546, 0.165, 0.252, 0.037], + [0.048, 0.091, 0.61, 0.251], + [0.571, 0.167, 0.221, 0.042], + ], + SP4: [ + [0.05, 0.687, 0.129, 0.134], + [0.068, 0.706, 0.0, 0.226], + [0.097, 0.903, 0.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.026, 0.0, 0.79, 0.185], + [0.0, 1.0, 0.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.821, 0.0, 0.179], + [0.208, 0.659, 0.01, 0.123], + [0.052, 0.523, 0.203, 0.221], + [0.13, 0.412, 0.211, 0.246], + [0.126, 0.358, 0.287, 0.229], + [0.121, 0.528, 0.239, 0.113], + [0.075, 0.526, 0.254, 0.144], + [0.114, 0.385, 0.295, 0.206], + [0.111, 0.481, 0.318, 0.09], + [0.137, 0.415, 0.304, 0.144], + [0.082, 0.465, 0.327, 0.126], + [0.111, 0.464, 0.289, 0.136], + [0.089, 0.439, 0.294, 0.178], + [0.114, 0.406, 0.3, 0.181], + [0.117, 0.463, 0.27, 0.15], + [0.072, 0.447, 0.32, 0.161], + ], + FOXA3: [ + [0.271, 0.06, 0.16, 0.509], + [0.012, 0.006, 0.969, 0.012], + [0.054, 0.0, 0.053, 0.893], + [0.684, 0.309, 0.003, 0.004], + [0.799, 0.2, 0.0, 0.001], + [0.929, 0.037, 0.023, 0.01], + [0.0, 0.741, 0.001, 0.258], + [0.822, 0.002, 0.113, 0.064], + ], + BCL6: [ + [0.136, 0.628, 0.134, 0.102], + [0.145, 0.197, 0.057, 0.6], + [0.074, 0.213, 0.143, 0.57], + [0.048, 0.067, 0.072, 0.814], + [0.0, 0.892, 0.006, 0.102], + [0.025, 0.484, 0.094, 0.398], + [0.811, 0.096, 0.062, 0.031], + [0.147, 0.006, 0.817, 0.029], + [0.028, 0.035, 0.871, 0.065], + [0.693, 0.112, 0.141, 0.054], + [0.736, 0.113, 0.074, 0.077], + ], + ZNF320: [ + [0.138, 0.115, 0.586, 0.161], + [0.1, 0.1, 0.501, 0.299], + [0.166, 0.084, 0.581, 0.169], + [0.071, 0.062, 0.808, 0.059], + [0.039, 0.055, 0.87, 0.037], + [0.228, 0.066, 0.44, 0.266], + [0.183, 0.419, 0.184, 0.214], + [0.178, 0.611, 0.09, 0.122], + [0.363, 0.346, 0.086, 0.205], + [0.297, 0.062, 0.515, 0.127], + [0.124, 0.017, 0.664, 0.195], + [0.01, 0.002, 0.983, 0.005], + [0.039, 0.001, 0.958, 0.001], + [0.035, 0.013, 0.92, 0.031], + [0.346, 0.618, 0.031, 0.004], + [0.28, 0.595, 0.029, 0.096], + [0.372, 0.047, 0.183, 0.399], + [0.321, 0.085, 0.524, 0.069], + [0.093, 0.156, 0.099, 0.653], + [0.063, 0.07, 0.77, 0.097], + ], + ZBTB6: [ + [0.138, 0.128, 0.595, 0.139], + [0.398, 0.058, 0.506, 0.038], + [0.187, 0.178, 0.073, 0.562], + [0.052, 0.241, 0.556, 0.152], + [0.415, 0.536, 0.034, 0.014], + [0.009, 0.097, 0.009, 0.885], + [0.32, 0.021, 0.527, 0.131], + [0.0, 0.002, 0.998, 0.0], + [0.997, 0.003, 0.0, 0.0], + [0.001, 0.001, 0.998, 0.0], + [0.086, 0.839, 0.037, 0.038], + [0.114, 0.631, 0.06, 0.196], + ], + ARNTL: [ + [0.032, 0.819, 0.0, 0.149], + [0.852, 0.0, 0.105, 0.043], + [0.02, 0.654, 0.049, 0.276], + [0.135, 0.0, 0.836, 0.029], + [0.0, 0.0, 0.0, 1.0], + [0.008, 0.017, 0.961, 0.014], + ], + NFIB: [ + [0.066, 0.374, 0.1, 0.46], + [0.03, 0.036, 0.122, 0.812], + [0.001, 0.033, 0.966, 0.0], + [0.031, 0.0, 0.921, 0.049], + [0.187, 0.716, 0.078, 0.019], + [0.424, 0.222, 0.058, 0.295], + [0.146, 0.306, 0.299, 0.25], + [0.225, 0.263, 0.267, 0.245], + [0.226, 0.237, 0.374, 0.163], + [0.289, 0.049, 0.187, 0.475], + [0.0, 0.0, 0.898, 0.102], + [0.026, 0.937, 0.0, 0.037], + [0.0, 0.903, 0.095, 0.002], + [0.838, 0.079, 0.056, 0.027], + [0.544, 0.008, 0.436, 0.012], + ], + NRF1: [ + [0.183, 0.059, 0.755, 0.004], + [0.058, 0.89, 0.052, 0.0], + [0.061, 0.002, 0.915, 0.023], + [0.0, 0.996, 0.0, 0.003], + [0.549, 0.257, 0.177, 0.018], + [0.029, 0.238, 0.345, 0.388], + [0.101, 0.148, 0.726, 0.024], + [0.024, 0.876, 0.034, 0.066], + [0.034, 0.042, 0.718, 0.206], + [0.005, 0.868, 0.061, 0.066], + ], + CEBPA: [ + [0.498, 0.11, 0.385, 0.007], + [0.0, 0.001, 0.0, 0.999], + [0.001, 0.0, 0.351, 0.648], + [0.292, 0.001, 0.446, 0.262], + [0.09, 0.533, 0.124, 0.253], + [0.165, 0.062, 0.729, 0.043], + [0.045, 0.895, 0.0, 0.06], + [0.988, 0.012, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.009, 0.303, 0.089, 0.599], + ], + MAFG: [ + [0.057, 0.129, 0.016, 0.798], + [0.105, 0.042, 0.752, 0.101], + [0.871, 0.026, 0.031, 0.072], + [0.091, 0.489, 0.348, 0.072], + [0.081, 0.014, 0.009, 0.896], + [0.102, 0.824, 0.013, 0.061], + [0.898, 0.002, 0.052, 0.048], + [0.024, 0.003, 0.87, 0.103], + [0.0, 0.961, 0.033, 0.006], + [0.824, 0.035, 0.047, 0.095], + [0.371, 0.149, 0.197, 0.283], + [0.394, 0.079, 0.09, 0.437], + [0.346, 0.085, 0.059, 0.51], + [0.268, 0.161, 0.073, 0.499], + ], + ZNF16: [ + [0.106, 0.175, 0.159, 0.561], + [0.139, 0.156, 0.183, 0.522], + [0.342, 0.165, 0.243, 0.25], + [0.235, 0.169, 0.193, 0.403], + [0.128, 0.404, 0.166, 0.302], + [0.105, 0.486, 0.154, 0.255], + [0.137, 0.316, 0.175, 0.372], + [0.233, 0.179, 0.38, 0.208], + [0.377, 0.126, 0.273, 0.223], + [0.35, 0.062, 0.495, 0.093], + [0.212, 0.015, 0.736, 0.037], + [0.085, 0.018, 0.859, 0.038], + [0.153, 0.535, 0.13, 0.182], + [0.77, 0.121, 0.082, 0.027], + [0.425, 0.263, 0.295, 0.018], + [0.066, 0.116, 0.192, 0.625], + [0.385, 0.026, 0.358, 0.231], + [0.022, 0.002, 0.966, 0.01], + [0.015, 0.019, 0.936, 0.03], + [0.004, 0.021, 0.974, 0.002], + [0.992, 0.006, 0.002, 0.0], + [0.015, 0.0, 0.981, 0.004], + [0.012, 0.948, 0.003, 0.038], + [0.01, 0.861, 0.013, 0.116], + [0.938, 0.032, 0.017, 0.013], + [0.039, 0.254, 0.054, 0.653], + [0.246, 0.03, 0.486, 0.238], + [0.033, 0.024, 0.917, 0.026], + [0.677, 0.146, 0.126, 0.051], + [0.575, 0.034, 0.298, 0.092], + [0.108, 0.012, 0.797, 0.083], + [0.134, 0.012, 0.83, 0.024], + [0.105, 0.21, 0.087, 0.599], + [0.041, 0.082, 0.194, 0.682], + [0.078, 0.348, 0.162, 0.412], + [0.079, 0.116, 0.129, 0.677], + [0.346, 0.02, 0.265, 0.369], + [0.112, 0.043, 0.797, 0.047], + [0.682, 0.04, 0.252, 0.026], + [0.062, 0.191, 0.71, 0.038], + [0.233, 0.479, 0.207, 0.081], + [0.505, 0.039, 0.369, 0.086], + [0.361, 0.051, 0.539, 0.049], + [0.207, 0.045, 0.675, 0.073], + [0.302, 0.034, 0.617, 0.047], + [0.214, 0.091, 0.641, 0.055], + [0.495, 0.138, 0.248, 0.119], + [0.237, 0.061, 0.617, 0.085], + [0.16, 0.073, 0.471, 0.295], + ], + ATF3: [ + [0.276, 0.161, 0.515, 0.047], + [0.026, 0.136, 0.101, 0.738], + [0.004, 0.567, 0.221, 0.209], + [0.788, 0.008, 0.174, 0.029], + [0.0, 0.928, 0.021, 0.052], + [0.325, 0.04, 0.635, 0.0], + [0.02, 0.005, 0.0, 0.975], + [0.011, 0.442, 0.547, 0.0], + [0.842, 0.016, 0.11, 0.032], + [0.005, 0.631, 0.074, 0.289], + ], + FOS: [ + [0.458, 0.188, 0.309, 0.044], + [0.0, 0.003, 0.0, 0.997], + [0.0, 0.0, 0.957, 0.043], + [1.0, 0.0, 0.0, 0.0], + [0.081, 0.434, 0.36, 0.125], + [0.009, 0.0, 0.0, 0.991], + [0.126, 0.874, 0.0, 0.0], + [0.993, 0.0, 0.007, 0.0], + [0.05, 0.279, 0.219, 0.452], + ], + ZNF41: [ + [0.116, 0.151, 0.133, 0.601], + [0.141, 0.355, 0.17, 0.335], + [0.273, 0.334, 0.202, 0.191], + [0.116, 0.595, 0.107, 0.182], + [0.13, 0.141, 0.081, 0.648], + [0.12, 0.544, 0.155, 0.181], + [0.582, 0.163, 0.084, 0.171], + [0.035, 0.192, 0.032, 0.741], + [0.092, 0.082, 0.519, 0.307], + [0.052, 0.094, 0.755, 0.099], + [0.005, 0.017, 0.006, 0.971], + [0.096, 0.164, 0.66, 0.08], + [0.148, 0.423, 0.156, 0.273], + [0.087, 0.433, 0.059, 0.421], + [0.12, 0.238, 0.204, 0.437], + [0.18, 0.256, 0.18, 0.384], + [0.425, 0.105, 0.154, 0.316], + [0.042, 0.506, 0.097, 0.355], + [0.019, 0.058, 0.015, 0.908], + [0.016, 0.665, 0.021, 0.298], + [0.109, 0.673, 0.067, 0.15], + [0.039, 0.831, 0.03, 0.101], + [0.045, 0.294, 0.039, 0.622], + [0.073, 0.181, 0.1, 0.646], + [0.136, 0.086, 0.611, 0.167], + [0.067, 0.182, 0.086, 0.665], + ], + TEAD2: [ + [0.439, 0.004, 0.535, 0.022], + [0.097, 0.901, 0.002, 0.0], + [0.99, 0.0, 0.004, 0.006], + [0.0, 0.0, 0.0, 1.0], + [0.012, 0.0, 0.002, 0.986], + [0.0, 0.98, 0.0, 0.02], + [0.0, 0.867, 0.0, 0.133], + [0.35, 0.163, 0.034, 0.453], + [0.318, 0.137, 0.397, 0.147], + [0.127, 0.385, 0.417, 0.071], + [0.117, 0.473, 0.316, 0.093], + [0.442, 0.253, 0.152, 0.154], + [0.198, 0.279, 0.393, 0.13], + [0.15, 0.331, 0.293, 0.226], + [0.331, 0.118, 0.19, 0.361], + [0.062, 0.201, 0.458, 0.279], + ], + ELK3: [ + [0.597, 0.038, 0.252, 0.113], + [0.023, 0.576, 0.057, 0.344], + [0.083, 0.0, 0.0, 0.917], + [0.018, 0.0, 0.0, 0.982], + [0.001, 0.895, 0.0, 0.104], + [0.063, 0.838, 0.009, 0.089], + [0.036, 0.021, 0.481, 0.462], + [0.066, 0.183, 0.597, 0.154], + ], + BACH2: [ + [0.587, 0.146, 0.228, 0.039], + [0.009, 0.005, 0.0, 0.985], + [0.004, 0.006, 0.94, 0.05], + [0.971, 0.013, 0.001, 0.016], + [0.067, 0.7, 0.166, 0.067], + [0.225, 0.055, 0.059, 0.661], + [0.187, 0.554, 0.122, 0.136], + [0.627, 0.035, 0.167, 0.171], + [0.12, 0.035, 0.732, 0.113], + [0.046, 0.81, 0.094, 0.051], + [0.633, 0.077, 0.141, 0.15], + ], + PBX2: [ + [0.157, 0.546, 0.08, 0.217], + [0.258, 0.376, 0.025, 0.341], + [0.621, 0.012, 0.357, 0.01], + [0.0, 0.09, 0.001, 0.91], + [0.427, 0.464, 0.012, 0.097], + [0.88, 0.063, 0.005, 0.052], + [0.758, 0.139, 0.065, 0.037], + [0.006, 0.0, 0.0, 0.994], + [0.018, 0.913, 0.0, 0.07], + [0.797, 0.038, 0.009, 0.157], + ], + KLF10: [ + [0.262, 0.058, 0.642, 0.038], + [0.132, 0.009, 0.654, 0.205], + [0.147, 0.0, 0.848, 0.005], + [0.011, 0.002, 0.98, 0.008], + [0.003, 0.005, 0.986, 0.005], + [0.052, 0.703, 0.0, 0.246], + [0.01, 0.012, 0.938, 0.041], + [0.001, 0.077, 0.508, 0.414], + [0.05, 0.003, 0.876, 0.071], + [0.076, 0.075, 0.644, 0.205], + [0.095, 0.718, 0.089, 0.098], + ], + NFKB2: [ + [0.033, 0.022, 0.871, 0.074], + [0.0, 0.0, 0.999, 0.0], + [0.0, 0.0, 0.857, 0.143], + [0.396, 0.048, 0.461, 0.095], + [0.413, 0.262, 0.149, 0.176], + [0.27, 0.083, 0.064, 0.583], + [0.053, 0.145, 0.147, 0.655], + [0.036, 0.545, 0.016, 0.403], + [0.05, 0.949, 0.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.104, 0.79, 0.03, 0.076], + ], + FOSB: [ + [0.0, 0.014, 0.0, 0.986], + [0.0, 0.0, 0.919, 0.081], + [1.0, 0.0, 0.0, 0.0], + [0.087, 0.436, 0.446, 0.032], + [0.005, 0.0, 0.0, 0.995], + [0.001, 0.999, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.018, 0.358, 0.233, 0.391], + ], + E2F4: [ + [0.107, 0.228, 0.664, 0.001], + [0.009, 0.031, 0.954, 0.007], + [0.008, 0.987, 0.0, 0.006], + [0.002, 0.0, 0.984, 0.015], + [0.0, 0.164, 0.836, 0.0], + [0.017, 0.065, 0.902, 0.017], + [0.916, 0.046, 0.017, 0.021], + [0.626, 0.055, 0.271, 0.049], + ], + NR2C2: [ + [0.0, 0.046, 0.001, 0.953], + [0.056, 0.014, 0.93, 0.0], + [0.972, 0.023, 0.004, 0.0], + [0.061, 0.933, 0.002, 0.003], + [0.016, 0.97, 0.002, 0.012], + [0.0, 0.381, 0.008, 0.611], + ], + NFIL3: [ + [0.432, 0.144, 0.398, 0.025], + [0.001, 0.0, 0.0, 0.999], + [0.0, 0.0, 0.05, 0.95], + [0.723, 0.0, 0.265, 0.012], + [0.028, 0.598, 0.021, 0.354], + [0.494, 0.032, 0.453, 0.021], + [0.017, 0.145, 0.001, 0.838], + [0.83, 0.169, 0.0, 0.0], + [0.999, 0.001, 0.0, 0.0], + [0.035, 0.393, 0.147, 0.425], + ], + ZNF134: [ + [0.124, 0.536, 0.106, 0.233], + [0.041, 0.206, 0.085, 0.668], + [0.403, 0.412, 0.08, 0.105], + [0.976, 0.006, 0.014, 0.004], + [0.023, 0.053, 0.281, 0.642], + [0.013, 0.937, 0.003, 0.046], + [0.958, 0.016, 0.012, 0.014], + [0.002, 0.011, 0.987, 0.001], + [0.042, 0.041, 0.51, 0.407], + [0.058, 0.081, 0.134, 0.727], + [0.034, 0.005, 0.946, 0.016], + [0.703, 0.237, 0.041, 0.019], + [0.437, 0.188, 0.116, 0.259], + [0.052, 0.044, 0.864, 0.039], + [0.119, 0.103, 0.674, 0.105], + ], + KLF9: [ + [0.13, 0.154, 0.613, 0.102], + [0.151, 0.669, 0.091, 0.09], + [0.033, 0.868, 0.023, 0.076], + [0.387, 0.597, 0.014, 0.002], + [0.002, 0.996, 0.001, 0.002], + [0.31, 0.001, 0.577, 0.112], + [0.0, 1.0, 0.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.931, 0.0, 0.069], + [0.333, 0.576, 0.003, 0.087], + [0.036, 0.668, 0.086, 0.21], + ], + ZNF547: [ + [0.078, 0.09, 0.731, 0.101], + [0.09, 0.313, 0.098, 0.499], + [0.28, 0.212, 0.283, 0.225], + [0.101, 0.235, 0.121, 0.543], + [0.096, 0.045, 0.744, 0.114], + [0.095, 0.496, 0.127, 0.283], + [0.114, 0.38, 0.178, 0.328], + [0.074, 0.068, 0.196, 0.661], + [0.07, 0.024, 0.839, 0.067], + [0.096, 0.531, 0.056, 0.317], + [0.272, 0.153, 0.226, 0.35], + [0.006, 0.008, 0.921, 0.066], + [0.295, 0.572, 0.053, 0.08], + [0.508, 0.034, 0.282, 0.176], + [0.003, 0.071, 0.028, 0.898], + [0.035, 0.066, 0.245, 0.654], + [0.337, 0.174, 0.081, 0.407], + [0.185, 0.016, 0.778, 0.021], + [0.054, 0.641, 0.106, 0.199], + ], + ATF7: [ + [0.781, 0.038, 0.172, 0.009], + [0.007, 0.007, 0.0, 0.985], + [0.004, 0.008, 0.713, 0.275], + [0.848, 0.0, 0.087, 0.064], + [0.003, 0.702, 0.103, 0.192], + [0.428, 0.098, 0.472, 0.002], + [0.007, 0.001, 0.0, 0.991], + [0.095, 0.9, 0.004, 0.001], + [0.992, 0.0, 0.008, 0.0], + [0.008, 0.199, 0.035, 0.758], + ], + BATF: [ + [0.031, 0.128, 0.007, 0.834], + [0.046, 0.031, 0.77, 0.152], + [0.908, 0.043, 0.011, 0.039], + [0.039, 0.366, 0.504, 0.09], + [0.047, 0.055, 0.008, 0.89], + [0.238, 0.693, 0.061, 0.008], + [0.984, 0.009, 0.002, 0.005], + [0.223, 0.023, 0.17, 0.585], + [0.48, 0.164, 0.038, 0.318], + [0.286, 0.231, 0.122, 0.361], + [0.17, 0.429, 0.118, 0.283], + [0.281, 0.106, 0.411, 0.202], + [0.406, 0.156, 0.268, 0.17], + [0.349, 0.142, 0.314, 0.195], + [0.599, 0.207, 0.081, 0.113], + ], + HNF4G: [ + [0.1, 0.123, 0.084, 0.693], + [0.14, 0.023, 0.826, 0.011], + [0.476, 0.113, 0.375, 0.036], + [0.531, 0.412, 0.012, 0.045], + [0.007, 0.981, 0.007, 0.005], + [0.01, 0.102, 0.003, 0.885], + [0.021, 0.13, 0.01, 0.839], + [0.01, 0.043, 0.009, 0.938], + [0.071, 0.015, 0.905, 0.009], + [0.302, 0.229, 0.31, 0.159], + [0.368, 0.342, 0.099, 0.19], + [0.084, 0.792, 0.027, 0.097], + [0.117, 0.402, 0.052, 0.429], + ], + SNAI1: [ + [0.259, 0.021, 0.72, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.999, 0.0, 0.0, 0.001], + [0.0, 0.03, 0.97, 0.0], + [0.0, 0.023, 0.977, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.004, 0.002, 0.97, 0.025], + ], + NR2F1: [ + [0.0, 0.039, 0.0, 0.961], + [0.038, 0.002, 0.96, 0.0], + [0.985, 0.008, 0.007, 0.0], + [0.004, 0.995, 0.0, 0.001], + [0.001, 0.993, 0.005, 0.001], + [0.0, 0.288, 0.002, 0.71], + [0.036, 0.468, 0.126, 0.37], + ], + HSF1: [ + [0.113, 0.1, 0.077, 0.71], + [0.063, 0.054, 0.054, 0.829], + [0.016, 0.961, 0.02, 0.004], + [0.018, 0.3, 0.016, 0.666], + [0.661, 0.011, 0.314, 0.014], + [0.0, 0.003, 0.994, 0.003], + [0.864, 0.053, 0.023, 0.06], + [0.814, 0.039, 0.057, 0.09], + [0.239, 0.27, 0.213, 0.278], + [0.274, 0.218, 0.233, 0.276], + [0.096, 0.054, 0.033, 0.817], + [0.054, 0.02, 0.035, 0.891], + [0.013, 0.946, 0.015, 0.026], + [0.059, 0.351, 0.027, 0.564], + ], + CREM: [ + [0.427, 0.166, 0.343, 0.065], + [0.169, 0.683, 0.061, 0.087], + [0.0, 0.001, 0.999, 0.0], + [0.007, 0.12, 0.019, 0.855], + [0.002, 0.995, 0.003, 0.0], + [0.884, 0.105, 0.004, 0.007], + [0.043, 0.405, 0.116, 0.436], + ], + ZNF324: [ + [0.207, 0.115, 0.538, 0.14], + [0.231, 0.258, 0.339, 0.172], + [0.194, 0.119, 0.48, 0.207], + [0.484, 0.218, 0.245, 0.053], + [0.142, 0.08, 0.099, 0.678], + [0.047, 0.585, 0.074, 0.293], + [0.446, 0.11, 0.381, 0.063], + [0.826, 0.108, 0.047, 0.019], + [0.626, 0.023, 0.337, 0.014], + [0.048, 0.867, 0.029, 0.055], + [0.01, 0.805, 0.011, 0.174], + [0.649, 0.078, 0.118, 0.154], + [0.164, 0.074, 0.184, 0.578], + [0.068, 0.818, 0.104, 0.01], + [0.07, 0.685, 0.111, 0.134], + [0.118, 0.164, 0.165, 0.553], + [0.097, 0.201, 0.09, 0.611], + [0.31, 0.134, 0.299, 0.257], + [0.252, 0.239, 0.303, 0.206], + [0.246, 0.527, 0.11, 0.117], + ], + STAT4: [ + [0.104, 0.429, 0.085, 0.382], + [0.049, 0.086, 0.021, 0.844], + [0.078, 0.0, 0.315, 0.607], + [0.245, 0.638, 0.094, 0.023], + [0.161, 0.505, 0.052, 0.282], + [0.304, 0.266, 0.314, 0.116], + [0.363, 0.035, 0.593, 0.01], + [0.042, 0.011, 0.911, 0.037], + [0.934, 0.052, 0.0, 0.014], + [0.938, 0.001, 0.061, 0.001], + [0.423, 0.16, 0.371, 0.046], + ], + HMBOX1: [ + [0.321, 0.048, 0.42, 0.212], + [0.714, 0.051, 0.197, 0.038], + [0.001, 0.935, 0.03, 0.035], + [0.0, 0.0, 0.0, 1.0], + [0.757, 0.012, 0.158, 0.073], + [0.001, 0.001, 0.995, 0.003], + [0.14, 0.03, 0.101, 0.73], + [0.158, 0.154, 0.147, 0.541], + ], + YY1: [ + [0.544, 0.127, 0.242, 0.088], + [0.489, 0.238, 0.073, 0.199], + [0.454, 0.225, 0.274, 0.047], + [0.967, 0.028, 0.005, 0.0], + [0.013, 0.0, 0.004, 0.983], + [0.0, 0.0, 1.0, 0.0], + [0.002, 0.006, 0.984, 0.008], + [0.132, 0.755, 0.02, 0.093], + [0.109, 0.216, 0.41, 0.265], + [0.087, 0.169, 0.62, 0.124], + [0.183, 0.571, 0.113, 0.133], + ], + ERF: [ + [0.528, 0.102, 0.287, 0.083], + [0.089, 0.613, 0.107, 0.191], + [0.108, 0.014, 0.007, 0.871], + [0.001, 0.02, 0.054, 0.924], + [0.001, 0.985, 0.008, 0.006], + [0.013, 0.986, 0.0, 0.001], + [0.067, 0.036, 0.348, 0.549], + [0.01, 0.16, 0.796, 0.034], + ], + E2F1: [ + [0.142, 0.072, 0.645, 0.142], + [0.015, 0.145, 0.839, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.093, 0.907, 0.0], + [0.0, 0.051, 0.941, 0.008], + ], + SOX4: [ + [0.002, 0.562, 0.121, 0.315], + [0.018, 0.587, 0.037, 0.358], + [0.299, 0.011, 0.009, 0.681], + [0.0, 0.0, 0.005, 0.995], + [0.0, 0.005, 0.0, 0.995], + [0.005, 0.012, 0.983, 0.0], + [0.001, 0.0, 0.0, 0.999], + [0.027, 0.247, 0.153, 0.572], + ], + BHLHE40: [ + [0.16, 0.082, 0.486, 0.272], + [0.083, 0.91, 0.001, 0.006], + [0.781, 0.081, 0.089, 0.049], + [0.0, 0.875, 0.027, 0.098], + [0.046, 0.07, 0.884, 0.0], + [0.017, 0.036, 0.054, 0.893], + [0.002, 0.0, 0.992, 0.006], + [0.301, 0.572, 0.041, 0.086], + ], + HOXB13: [ + [0.085, 0.661, 0.254, 0.0], + [0.03, 0.345, 0.0, 0.625], + [0.505, 0.307, 0.002, 0.186], + [0.672, 0.0, 0.307, 0.022], + [0.0, 0.001, 0.0, 0.999], + [0.759, 0.001, 0.017, 0.223], + [0.996, 0.0, 0.0, 0.004], + [0.993, 0.006, 0.001, 0.0], + [0.657, 0.102, 0.071, 0.17], + ], + HNF1A: [ + [0.201, 0.037, 0.659, 0.102], + [0.057, 0.086, 0.09, 0.766], + [0.158, 0.098, 0.063, 0.681], + [0.922, 0.003, 0.054, 0.021], + [0.81, 0.102, 0.015, 0.073], + [0.19, 0.03, 0.012, 0.768], + [0.166, 0.315, 0.265, 0.253], + [0.855, 0.001, 0.016, 0.128], + [0.023, 0.0, 0.046, 0.93], + [0.008, 0.024, 0.001, 0.967], + [0.771, 0.031, 0.061, 0.137], + [0.851, 0.046, 0.077, 0.026], + [0.076, 0.726, 0.035, 0.163], + ], + KLF15: [ + [0.213, 0.136, 0.578, 0.074], + [0.133, 0.044, 0.636, 0.188], + [0.227, 0.0, 0.773, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.276, 0.577, 0.0, 0.147], + [0.001, 0.002, 0.997, 0.0], + [0.002, 0.0, 0.951, 0.047], + [0.435, 0.096, 0.354, 0.116], + [0.065, 0.017, 0.872, 0.047], + [0.165, 0.562, 0.166, 0.107], + [0.203, 0.488, 0.159, 0.15], + [0.148, 0.242, 0.477, 0.133], + [0.153, 0.226, 0.479, 0.141], + [0.233, 0.218, 0.468, 0.081], + [0.181, 0.218, 0.515, 0.087], + [0.089, 0.243, 0.584, 0.085], + [0.275, 0.307, 0.294, 0.123], + [0.166, 0.26, 0.46, 0.113], + [0.068, 0.216, 0.577, 0.139], + [0.289, 0.291, 0.31, 0.109], + [0.132, 0.229, 0.527, 0.112], + ], + LYL1: [ + [0.338, 0.285, 0.354, 0.023], + [0.007, 0.993, 0.0, 0.0], + [0.957, 0.0, 0.043, 0.0], + [0.0, 0.024, 0.782, 0.193], + [0.388, 0.575, 0.001, 0.035], + [0.013, 0.021, 0.001, 0.965], + [0.0, 0.0, 0.984, 0.016], + [0.017, 0.224, 0.362, 0.397], + ], + MYOD1: [ + [0.022, 0.971, 0.007, 0.0], + [0.946, 0.003, 0.02, 0.031], + [0.0, 0.316, 0.662, 0.022], + [0.032, 0.925, 0.027, 0.015], + [0.005, 0.028, 0.019, 0.948], + [0.034, 0.012, 0.936, 0.019], + [0.031, 0.397, 0.099, 0.473], + [0.078, 0.378, 0.118, 0.426], + ], + JUND: [ + [0.54, 0.134, 0.325, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.0, 0.0, 1.0, 0.0], + [0.997, 0.0, 0.0, 0.003], + [0.002, 0.472, 0.45, 0.076], + [0.0, 0.0, 0.0, 1.0], + [0.087, 0.913, 0.0, 0.0], + [0.998, 0.0, 0.002, 0.0], + [0.015, 0.302, 0.162, 0.522], + ], + "NKX3-1": [ + [0.553, 0.07, 0.206, 0.172], + [0.383, 0.109, 0.304, 0.204], + [0.209, 0.33, 0.41, 0.052], + [0.002, 0.756, 0.0, 0.243], + [0.9, 0.0, 0.016, 0.085], + [0.004, 0.99, 0.006, 0.0], + [0.001, 0.001, 0.0, 0.998], + [0.0, 0.122, 0.0, 0.878], + [0.648, 0.123, 0.087, 0.141], + [0.528, 0.129, 0.244, 0.099], + ], + ZBTB7A: [ + [0.093, 0.339, 0.459, 0.109], + [0.216, 0.234, 0.416, 0.135], + [0.125, 0.23, 0.534, 0.11], + [0.129, 0.286, 0.351, 0.234], + [0.257, 0.195, 0.408, 0.14], + [0.501, 0.052, 0.445, 0.002], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.008, 0.992, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 0.317, 0.683], + [0.004, 0.982, 0.014, 0.0], + [0.005, 0.29, 0.268, 0.438], + [0.012, 0.468, 0.282, 0.238], + ], + MYC: [ + [0.0, 0.998, 0.0, 0.001], + [0.904, 0.0, 0.033, 0.062], + [0.0, 0.61, 0.302, 0.088], + [0.559, 0.027, 0.414, 0.0], + [0.005, 0.059, 0.006, 0.93], + [0.0, 0.0, 0.958, 0.042], + [0.031, 0.071, 0.646, 0.252], + [0.09, 0.502, 0.089, 0.319], + ], + NR1H3: [ + [0.463, 0.22, 0.065, 0.251], + [0.292, 0.113, 0.537, 0.058], + [0.713, 0.041, 0.245, 0.0], + [0.031, 0.078, 0.751, 0.14], + [0.001, 0.0, 0.946, 0.053], + [0.0, 0.0, 0.243, 0.757], + [0.04, 0.759, 0.007, 0.194], + [0.873, 0.004, 0.115, 0.008], + [0.176, 0.432, 0.196, 0.196], + [0.164, 0.308, 0.076, 0.452], + ], + FOXA2: [ + [0.029, 0.026, 0.011, 0.933], + [0.228, 0.021, 0.685, 0.066], + [0.03, 0.004, 0.003, 0.962], + [0.01, 0.0, 0.047, 0.943], + [0.011, 0.001, 0.311, 0.678], + [0.589, 0.012, 0.376, 0.023], + [0.037, 0.6, 0.052, 0.311], + [0.309, 0.221, 0.029, 0.441], + ], + STAT1: [ + [0.012, 0.034, 0.011, 0.942], + [0.017, 0.0, 0.109, 0.874], + [0.195, 0.759, 0.016, 0.029], + [0.048, 0.623, 0.032, 0.297], + [0.457, 0.183, 0.359, 0.002], + [0.255, 0.007, 0.727, 0.01], + [0.017, 0.006, 0.899, 0.077], + [0.999, 0.0, 0.001, 0.0], + [0.98, 0.0, 0.015, 0.004], + ], + EN1: [ + [0.053, 0.073, 0.0, 0.873], + [0.899, 0.005, 0.056, 0.04], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.001, 0.0, 0.999], + [0.051, 0.047, 0.162, 0.741], + [0.705, 0.0, 0.295, 0.0], + ], + NFIC: [ + [0.061, 0.381, 0.041, 0.517], + [0.017, 0.007, 0.081, 0.895], + [0.0, 0.0, 0.999, 0.0], + [0.014, 0.0, 0.981, 0.005], + [0.228, 0.724, 0.035, 0.013], + [0.437, 0.208, 0.065, 0.29], + [0.191, 0.334, 0.23, 0.245], + [0.252, 0.244, 0.248, 0.256], + [0.242, 0.234, 0.332, 0.192], + [0.286, 0.067, 0.191, 0.455], + [0.003, 0.024, 0.758, 0.216], + [0.003, 0.995, 0.0, 0.002], + [0.0, 1.0, 0.0, 0.0], + [0.888, 0.082, 0.008, 0.022], + [0.509, 0.045, 0.381, 0.065], + ], + ZBTB48: [ + [0.021, 0.399, 0.054, 0.525], + [0.324, 0.24, 0.032, 0.403], + [0.983, 0.001, 0.015, 0.001], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.004, 0.996, 0.0], + [0.77, 0.064, 0.146, 0.02], + [0.09, 0.405, 0.168, 0.337], + [0.1, 0.649, 0.036, 0.214], + ], + TCF7: [ + [0.655, 0.044, 0.171, 0.129], + [0.024, 0.428, 0.5, 0.048], + [0.608, 0.023, 0.004, 0.366], + [0.094, 0.013, 0.001, 0.892], + [0.044, 0.799, 0.143, 0.014], + [0.988, 0.0, 0.0, 0.012], + [0.933, 0.017, 0.048, 0.002], + [0.95, 0.0, 0.019, 0.031], + [0.122, 0.048, 0.819, 0.01], + ], + ZNF274: [ + [0.161, 0.306, 0.064, 0.468], + [0.644, 0.084, 0.105, 0.167], + [0.352, 0.17, 0.358, 0.119], + [0.23, 0.238, 0.22, 0.313], + [0.257, 0.36, 0.156, 0.227], + [0.439, 0.14, 0.266, 0.155], + [0.189, 0.15, 0.32, 0.342], + [0.397, 0.106, 0.207, 0.29], + [0.276, 0.27, 0.27, 0.183], + [0.18, 0.358, 0.174, 0.287], + [0.267, 0.051, 0.118, 0.564], + [0.086, 0.514, 0.15, 0.25], + [0.534, 0.108, 0.096, 0.262], + [0.318, 0.235, 0.177, 0.27], + [0.421, 0.294, 0.183, 0.102], + [0.353, 0.338, 0.114, 0.195], + [0.157, 0.575, 0.084, 0.183], + [0.138, 0.033, 0.134, 0.696], + [0.165, 0.246, 0.169, 0.42], + [0.599, 0.131, 0.157, 0.113], + [0.292, 0.319, 0.125, 0.264], + [0.266, 0.121, 0.159, 0.454], + [0.408, 0.212, 0.311, 0.068], + [0.468, 0.137, 0.24, 0.155], + [0.656, 0.092, 0.161, 0.092], + [0.185, 0.654, 0.046, 0.115], + [0.749, 0.038, 0.07, 0.143], + [0.15, 0.113, 0.111, 0.626], + [0.331, 0.37, 0.234, 0.065], + [0.715, 0.016, 0.057, 0.212], + [0.188, 0.018, 0.78, 0.014], + [0.939, 0.006, 0.002, 0.053], + [0.0, 0.012, 0.988, 0.0], + [0.8, 0.0, 0.186, 0.014], + [0.99, 0.006, 0.0, 0.004], + [0.075, 0.541, 0.042, 0.343], + [0.02, 0.022, 0.03, 0.929], + [0.004, 0.956, 0.026, 0.014], + [0.929, 0.046, 0.0, 0.026], + [0.095, 0.319, 0.008, 0.578], + [0.873, 0.034, 0.042, 0.051], + [0.012, 0.919, 0.01, 0.059], + [0.192, 0.044, 0.024, 0.741], + [0.048, 0.02, 0.84, 0.092], + [0.199, 0.092, 0.597, 0.113], + [0.641, 0.13, 0.122, 0.108], + [0.09, 0.082, 0.62, 0.208], + [0.686, 0.081, 0.158, 0.075], + [0.265, 0.081, 0.542, 0.113], + [0.731, 0.043, 0.069, 0.156], + [0.66, 0.069, 0.164, 0.107], + [0.56, 0.097, 0.174, 0.17], + [0.124, 0.623, 0.124, 0.128], + [0.117, 0.595, 0.184, 0.105], + [0.295, 0.378, 0.107, 0.221], + [0.209, 0.085, 0.091, 0.615], + [0.611, 0.071, 0.075, 0.242], + [0.085, 0.336, 0.152, 0.427], + [0.417, 0.07, 0.378, 0.135], + [0.629, 0.134, 0.081, 0.156], + [0.682, 0.074, 0.111, 0.133], + [0.115, 0.079, 0.064, 0.742], + [0.12, 0.046, 0.695, 0.138], + [0.13, 0.175, 0.159, 0.536], + ], + RARA: [ + [0.402, 0.114, 0.412, 0.073], + [0.71, 0.029, 0.259, 0.002], + [0.023, 0.014, 0.962, 0.001], + [0.014, 0.002, 0.789, 0.195], + [0.006, 0.001, 0.117, 0.876], + [0.0, 0.979, 0.004, 0.017], + [0.851, 0.001, 0.148, 0.001], + ], + MAFF: [ + [0.501, 0.077, 0.151, 0.27], + [0.494, 0.062, 0.11, 0.334], + [0.48, 0.078, 0.058, 0.384], + [0.292, 0.173, 0.179, 0.356], + [0.086, 0.044, 0.014, 0.856], + [0.0, 0.001, 0.999, 0.0], + [0.118, 0.882, 0.0, 0.0], + [0.002, 0.003, 0.003, 0.992], + [0.0, 0.001, 0.945, 0.054], + [0.99, 0.001, 0.002, 0.007], + [0.056, 0.478, 0.254, 0.212], + [0.183, 0.154, 0.109, 0.554], + ], + ATF2: [ + [0.752, 0.031, 0.208, 0.009], + [0.002, 0.013, 0.0, 0.985], + [0.001, 0.007, 0.846, 0.146], + [0.992, 0.001, 0.002, 0.005], + [0.005, 0.502, 0.123, 0.37], + [0.231, 0.127, 0.642, 0.0], + [0.036, 0.031, 0.001, 0.933], + [0.235, 0.748, 0.011, 0.005], + [0.979, 0.0, 0.011, 0.009], + [0.009, 0.193, 0.031, 0.767], + ], + FOXH1: [ + [0.169, 0.038, 0.06, 0.733], + [0.016, 0.0, 0.984, 0.0], + [0.022, 0.078, 0.028, 0.873], + [0.02, 0.001, 0.749, 0.229], + [0.03, 0.0, 0.683, 0.287], + [0.96, 0.007, 0.002, 0.031], + [0.09, 0.043, 0.044, 0.823], + [0.025, 0.092, 0.005, 0.878], + ], + ESR1: [ + [0.795, 0.017, 0.185, 0.003], + [0.007, 0.013, 0.768, 0.211], + [0.004, 0.0, 0.991, 0.004], + [0.01, 0.027, 0.089, 0.874], + [0.0, 0.969, 0.018, 0.013], + [0.961, 0.001, 0.034, 0.003], + ], + MAZ: [ + [0.052, 0.704, 0.016, 0.228], + [0.002, 0.998, 0.0, 0.0], + [0.0, 0.993, 0.007, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.031, 0.0, 0.465, 0.504], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.993, 0.007, 0.0], + [0.007, 0.819, 0.023, 0.152], + ], + NR3C1: [ + [0.421, 0.064, 0.364, 0.151], + [0.185, 0.024, 0.671, 0.12], + [0.426, 0.146, 0.239, 0.189], + [0.835, 0.02, 0.093, 0.053], + [0.005, 0.913, 0.033, 0.05], + [0.635, 0.011, 0.177, 0.178], + [0.162, 0.243, 0.303, 0.292], + [0.326, 0.16, 0.213, 0.302], + [0.342, 0.28, 0.23, 0.147], + [0.194, 0.137, 0.005, 0.664], + [0.011, 0.01, 0.979, 0.0], + [0.054, 0.066, 0.048, 0.832], + [0.27, 0.2, 0.19, 0.34], + [0.119, 0.735, 0.023, 0.123], + [0.172, 0.236, 0.093, 0.5], + ], + ZNF281: [ + [0.048, 0.856, 0.043, 0.054], + [0.043, 0.876, 0.015, 0.066], + [0.005, 0.985, 0.008, 0.002], + [0.091, 0.795, 0.004, 0.11], + [0.184, 0.012, 0.121, 0.684], + [0.0, 0.994, 0.002, 0.003], + [0.001, 0.995, 0.001, 0.002], + [0.001, 0.97, 0.002, 0.028], + [0.002, 0.984, 0.002, 0.012], + [0.003, 0.977, 0.01, 0.011], + [0.459, 0.218, 0.13, 0.192], + [0.187, 0.569, 0.084, 0.159], + [0.11, 0.613, 0.1, 0.177], + [0.134, 0.568, 0.127, 0.171], + [0.138, 0.526, 0.125, 0.212], + ], + TBX3: [ + [0.061, 0.202, 0.023, 0.713], + [0.284, 0.302, 0.404, 0.01], + [0.736, 0.081, 0.092, 0.091], + [0.0, 1.0, 0.0, 0.0], + [0.927, 0.005, 0.046, 0.022], + [0.006, 0.973, 0.02, 0.001], + [0.135, 0.686, 0.004, 0.175], + [0.083, 0.129, 0.061, 0.726], + ], + USF1: [ + [0.243, 0.048, 0.708, 0.001], + [0.037, 0.155, 0.065, 0.743], + [0.0, 1.0, 0.0, 0.0], + [0.994, 0.001, 0.0, 0.005], + [0.001, 0.672, 0.101, 0.227], + [0.327, 0.085, 0.588, 0.0], + [0.015, 0.012, 0.011, 0.962], + [0.0, 0.0, 0.997, 0.003], + [0.454, 0.134, 0.331, 0.08], + [0.06, 0.498, 0.137, 0.305], + ], + MXI1: [ + [0.023, 0.907, 0.065, 0.005], + [0.792, 0.0, 0.184, 0.024], + [0.002, 0.915, 0.0, 0.083], + [0.146, 0.0, 0.853, 0.001], + [0.044, 0.1, 0.008, 0.847], + [0.0, 0.01, 0.952, 0.038], + ], + OTX2: [ + [0.225, 0.331, 0.014, 0.43], + [0.189, 0.022, 0.002, 0.787], + [0.923, 0.005, 0.056, 0.017], + [0.991, 0.007, 0.001, 0.0], + [0.006, 0.004, 0.08, 0.91], + [0.022, 0.957, 0.015, 0.005], + [0.014, 0.762, 0.002, 0.223], + [0.118, 0.423, 0.08, 0.379], + ], + ZIC5: [ + [0.123, 0.75, 0.12, 0.006], + [0.314, 0.262, 0.215, 0.208], + [0.003, 0.981, 0.002, 0.014], + [0.503, 0.296, 0.102, 0.099], + [0.069, 0.162, 0.766, 0.003], + [0.005, 0.878, 0.005, 0.112], + [0.598, 0.002, 0.391, 0.009], + [0.005, 0.002, 0.968, 0.024], + [0.0, 0.0, 1.0, 0.0], + [0.19, 0.034, 0.674, 0.101], + [0.078, 0.045, 0.833, 0.044], + [0.04, 0.033, 0.845, 0.083], + [0.005, 0.469, 0.153, 0.373], + [0.143, 0.583, 0.221, 0.053], + ], + ZFP42: [ + [0.231, 0.1, 0.587, 0.082], + [0.154, 0.05, 0.731, 0.066], + [0.106, 0.605, 0.242, 0.048], + [0.581, 0.309, 0.082, 0.028], + [0.017, 0.017, 0.882, 0.084], + [0.099, 0.861, 0.016, 0.025], + [0.0, 1.0, 0.0, 0.0], + [0.999, 0.0, 0.001, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.058, 0.233, 0.113, 0.596], + [0.079, 0.047, 0.069, 0.805], + [0.049, 0.14, 0.008, 0.803], + ], + FOXP1: [ + [0.453, 0.054, 0.089, 0.405], + [0.513, 0.173, 0.197, 0.118], + [0.289, 0.024, 0.411, 0.276], + [0.215, 0.087, 0.686, 0.011], + [0.105, 0.007, 0.117, 0.771], + [0.863, 0.122, 0.011, 0.005], + [0.901, 0.084, 0.015, 0.0], + [0.927, 0.019, 0.054, 0.0], + [0.0, 0.839, 0.033, 0.128], + [0.865, 0.044, 0.087, 0.004], + ], + MEIS1: [ + [0.228, 0.029, 0.102, 0.641], + [0.186, 0.0, 0.752, 0.062], + [0.864, 0.001, 0.088, 0.047], + [0.022, 0.038, 0.146, 0.794], + [0.075, 0.011, 0.11, 0.803], + [0.129, 0.055, 0.196, 0.62], + [0.905, 0.009, 0.067, 0.019], + [0.091, 0.146, 0.033, 0.73], + [0.182, 0.046, 0.461, 0.311], + ], + CLOCK: [ + [0.019, 0.98, 0.0, 0.0], + [0.99, 0.009, 0.0, 0.001], + [0.0, 0.973, 0.018, 0.009], + [0.162, 0.061, 0.772, 0.005], + [0.009, 0.031, 0.002, 0.958], + [0.0, 0.002, 0.941, 0.057], + [0.026, 0.316, 0.274, 0.384], + ], + PBX3: [ + [0.138, 0.019, 0.06, 0.783], + [0.019, 0.0, 0.98, 0.001], + [0.993, 0.001, 0.001, 0.004], + [0.05, 0.218, 0.287, 0.445], + [0.07, 0.023, 0.106, 0.801], + [0.036, 0.0, 0.943, 0.021], + [0.736, 0.001, 0.263, 0.0], + [0.01, 0.779, 0.003, 0.208], + [0.595, 0.013, 0.239, 0.153], + [0.093, 0.138, 0.622, 0.148], + ], + ZNF586: [ + [0.117, 0.064, 0.499, 0.32], + [0.077, 0.096, 0.099, 0.728], + [0.102, 0.663, 0.077, 0.158], + [0.716, 0.103, 0.1, 0.081], + [0.176, 0.067, 0.689, 0.068], + [0.727, 0.054, 0.146, 0.072], + [0.197, 0.06, 0.68, 0.063], + [0.584, 0.067, 0.279, 0.07], + [0.136, 0.426, 0.088, 0.35], + [0.083, 0.704, 0.071, 0.142], + [0.081, 0.11, 0.055, 0.755], + [0.076, 0.086, 0.058, 0.78], + [0.097, 0.512, 0.078, 0.313], + [0.512, 0.121, 0.271, 0.097], + [0.195, 0.347, 0.102, 0.356], + [0.34, 0.065, 0.511, 0.085], + [0.13, 0.077, 0.73, 0.063], + [0.112, 0.69, 0.098, 0.1], + [0.763, 0.086, 0.089, 0.061], + [0.143, 0.072, 0.724, 0.06], + [0.068, 0.719, 0.112, 0.101], + [0.07, 0.751, 0.053, 0.126], + [0.074, 0.754, 0.05, 0.122], + [0.064, 0.757, 0.057, 0.123], + [0.068, 0.102, 0.045, 0.785], + [0.067, 0.743, 0.058, 0.132], + [0.057, 0.766, 0.046, 0.132], + [0.074, 0.758, 0.055, 0.113], + [0.795, 0.074, 0.069, 0.063], + [0.079, 0.075, 0.044, 0.802], + [0.079, 0.757, 0.051, 0.113], + [0.837, 0.077, 0.048, 0.037], + [0.108, 0.759, 0.043, 0.09], + [0.839, 0.056, 0.065, 0.04], + [0.112, 0.03, 0.811, 0.047], + [0.097, 0.044, 0.81, 0.049], + [0.053, 0.799, 0.065, 0.083], + [0.044, 0.823, 0.034, 0.099], + [0.077, 0.468, 0.048, 0.408], + [0.464, 0.038, 0.429, 0.07], + [0.097, 0.033, 0.826, 0.044], + [0.848, 0.026, 0.095, 0.03], + [0.078, 0.013, 0.874, 0.035], + [0.051, 0.026, 0.892, 0.032], + [0.07, 0.738, 0.073, 0.119], + [0.061, 0.776, 0.027, 0.136], + [0.051, 0.166, 0.016, 0.767], + [0.842, 0.035, 0.069, 0.054], + [0.098, 0.014, 0.878, 0.01], + [0.067, 0.003, 0.922, 0.008], + [0.9, 0.004, 0.087, 0.01], + [0.053, 0.003, 0.906, 0.039], + [0.057, 0.005, 0.907, 0.031], + [0.685, 0.056, 0.248, 0.011], + [0.771, 0.16, 0.019, 0.05], + [0.926, 0.022, 0.012, 0.04], + [0.794, 0.022, 0.157, 0.027], + [0.99, 0.003, 0.005, 0.003], + [0.828, 0.009, 0.141, 0.021], + [0.008, 0.052, 0.022, 0.918], + [0.03, 0.0, 0.957, 0.013], + [0.103, 0.022, 0.763, 0.112], + [0.013, 0.043, 0.058, 0.886], + [0.063, 0.04, 0.046, 0.851], + ], + GRHL1: [ + [0.596, 0.071, 0.174, 0.158], + [0.583, 0.055, 0.164, 0.198], + [0.014, 0.703, 0.27, 0.013], + [0.128, 0.391, 0.02, 0.461], + [0.231, 0.093, 0.358, 0.318], + [0.098, 0.028, 0.873, 0.001], + [0.281, 0.318, 0.063, 0.337], + [0.342, 0.348, 0.092, 0.217], + [0.464, 0.117, 0.233, 0.187], + [0.652, 0.011, 0.257, 0.081], + [0.801, 0.001, 0.138, 0.061], + [0.0, 1.0, 0.0, 0.0], + [0.259, 0.456, 0.016, 0.269], + [0.276, 0.009, 0.524, 0.191], + [0.0, 0.032, 0.968, 0.0], + [0.185, 0.127, 0.012, 0.677], + [0.146, 0.183, 0.023, 0.649], + [0.17, 0.226, 0.137, 0.468], + [0.217, 0.176, 0.278, 0.33], + [0.236, 0.17, 0.331, 0.263], + [0.107, 0.542, 0.139, 0.212], + ], + ZSCAN29: [ + [0.164, 0.078, 0.554, 0.204], + [0.27, 0.26, 0.199, 0.27], + [0.096, 0.623, 0.078, 0.203], + [0.258, 0.276, 0.125, 0.341], + [0.068, 0.079, 0.781, 0.073], + [0.003, 0.285, 0.006, 0.706], + [0.347, 0.017, 0.6, 0.036], + [0.023, 0.001, 0.103, 0.874], + [0.875, 0.003, 0.122, 0.0], + [0.035, 0.063, 0.893, 0.01], + [0.895, 0.066, 0.02, 0.019], + [0.009, 0.957, 0.002, 0.032], + ], + TFAP4: [ + [0.461, 0.211, 0.294, 0.034], + [0.257, 0.418, 0.081, 0.244], + [0.0, 1.0, 0.0, 0.0], + [0.913, 0.0, 0.087, 0.0], + [0.0, 0.127, 0.693, 0.18], + [0.166, 0.767, 0.066, 0.0], + [0.0, 0.079, 0.0, 0.921], + [0.0, 0.0, 1.0, 0.0], + ], + TCF3: [ + [0.298, 0.353, 0.341, 0.008], + [0.0, 1.0, 0.0, 0.0], + [0.999, 0.0, 0.001, 0.0], + [0.0, 0.295, 0.498, 0.207], + [0.002, 0.998, 0.0, 0.0], + [0.0, 0.001, 0.001, 0.998], + [0.0, 0.0, 1.0, 0.0], + [0.015, 0.367, 0.351, 0.267], + ], + MAFB: [ + [0.102, 0.172, 0.571, 0.156], + [0.184, 0.562, 0.092, 0.162], + [0.215, 0.224, 0.085, 0.476], + [0.173, 0.128, 0.486, 0.213], + [0.612, 0.097, 0.098, 0.193], + [0.123, 0.33, 0.499, 0.048], + [0.022, 0.018, 0.0, 0.96], + [0.085, 0.903, 0.011, 0.0], + [0.935, 0.01, 0.004, 0.051], + [0.038, 0.02, 0.834, 0.108], + [0.009, 0.934, 0.047, 0.011], + [0.81, 0.042, 0.028, 0.121], + ], + AHRR: [ + [0.126, 0.173, 0.134, 0.566], + [0.035, 0.091, 0.739, 0.136], + [0.001, 0.989, 0.0, 0.01], + [0.061, 0.006, 0.933, 0.0], + [0.002, 0.0, 0.0, 0.998], + [0.002, 0.001, 0.993, 0.003], + [0.219, 0.599, 0.016, 0.166], + ], + CEBPD: [ + [0.528, 0.1, 0.36, 0.013], + [0.001, 0.0, 0.0, 0.999], + [0.001, 0.0, 0.343, 0.656], + [0.36, 0.002, 0.397, 0.241], + [0.105, 0.455, 0.082, 0.359], + [0.144, 0.022, 0.831, 0.003], + [0.023, 0.927, 0.0, 0.049], + [1.0, 0.0, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.018, 0.29, 0.086, 0.606], + ], + BCL6B: [ + [0.189, 0.201, 0.1, 0.51], + [0.145, 0.189, 0.33, 0.336], + [0.25, 0.221, 0.141, 0.389], + [0.195, 0.246, 0.182, 0.377], + [0.308, 0.126, 0.131, 0.434], + [0.244, 0.223, 0.15, 0.383], + [0.335, 0.148, 0.197, 0.32], + [0.21, 0.188, 0.259, 0.343], + [0.18, 0.301, 0.137, 0.382], + [0.219, 0.184, 0.146, 0.452], + [0.145, 0.063, 0.613, 0.179], + [0.069, 0.884, 0.046, 0.0], + [0.096, 0.064, 0.001, 0.839], + [0.012, 0.2, 0.086, 0.702], + [0.005, 0.003, 0.031, 0.96], + [0.003, 0.852, 0.035, 0.11], + [0.052, 0.122, 0.077, 0.749], + [0.896, 0.087, 0.014, 0.002], + [0.156, 0.024, 0.598, 0.222], + [0.096, 0.019, 0.625, 0.261], + ], + ZFP82: [ + [0.792, 0.032, 0.107, 0.069], + [0.773, 0.008, 0.187, 0.032], + [0.158, 0.013, 0.763, 0.067], + [0.836, 0.015, 0.143, 0.006], + [0.336, 0.015, 0.517, 0.132], + [0.824, 0.057, 0.103, 0.017], + [0.204, 0.067, 0.7, 0.029], + [0.752, 0.034, 0.162, 0.053], + [0.882, 0.019, 0.059, 0.04], + [0.038, 0.023, 0.013, 0.926], + [0.069, 0.218, 0.063, 0.649], + [0.7, 0.103, 0.109, 0.088], + [0.248, 0.103, 0.626, 0.023], + [0.113, 0.088, 0.132, 0.666], + [0.284, 0.074, 0.597, 0.046], + [0.897, 0.055, 0.013, 0.036], + [0.774, 0.015, 0.113, 0.099], + [0.18, 0.501, 0.044, 0.275], + [0.09, 0.052, 0.036, 0.822], + [0.065, 0.002, 0.786, 0.147], + [0.124, 0.0, 0.876, 0.0], + [0.937, 0.0, 0.046, 0.017], + [0.757, 0.021, 0.143, 0.08], + [0.308, 0.013, 0.603, 0.077], + ], + SP1: [ + [0.15, 0.079, 0.746, 0.024], + [0.101, 0.021, 0.785, 0.093], + [0.106, 0.0, 0.893, 0.001], + [0.025, 0.0, 0.973, 0.002], + [0.009, 0.005, 0.987, 0.0], + [0.393, 0.506, 0.0, 0.101], + [0.082, 0.002, 0.863, 0.053], + [0.023, 0.068, 0.834, 0.076], + [0.068, 0.028, 0.797, 0.107], + [0.101, 0.091, 0.737, 0.071], + [0.213, 0.531, 0.107, 0.149], + ], + ZSCAN31: [ + [0.017, 0.004, 0.972, 0.008], + [0.082, 0.841, 0.001, 0.076], + [0.082, 0.767, 0.008, 0.143], + [0.002, 0.981, 0.012, 0.004], + [0.019, 0.311, 0.009, 0.66], + [0.021, 0.0, 0.974, 0.005], + [0.03, 0.933, 0.012, 0.025], + [0.208, 0.033, 0.271, 0.488], + [0.049, 0.053, 0.762, 0.135], + [0.099, 0.751, 0.067, 0.083], + [0.176, 0.505, 0.102, 0.217], + ], + RUNX1: [ + [0.524, 0.124, 0.234, 0.118], + [0.63, 0.1, 0.269, 0.001], + [0.003, 0.982, 0.004, 0.011], + [0.001, 0.963, 0.001, 0.035], + [0.819, 0.003, 0.136, 0.042], + [0.0, 0.997, 0.003, 0.0], + [0.721, 0.077, 0.109, 0.092], + ], + SIX1: [ + [0.228, 0.025, 0.691, 0.056], + [0.059, 0.037, 0.393, 0.511], + [0.527, 0.179, 0.196, 0.098], + [0.0, 0.002, 0.0, 0.998], + [0.088, 0.7, 0.01, 0.202], + [0.648, 0.084, 0.164, 0.105], + [0.337, 0.064, 0.363, 0.235], + [0.41, 0.054, 0.517, 0.019], + [0.001, 0.001, 0.001, 0.998], + [0.031, 0.002, 0.061, 0.906], + [0.408, 0.026, 0.04, 0.526], + [0.0, 0.995, 0.001, 0.004], + [0.587, 0.208, 0.013, 0.191], + ], + ZNF143: [ + [0.333, 0.086, 0.458, 0.124], + [0.268, 0.041, 0.486, 0.205], + [0.017, 0.01, 0.946, 0.027], + [0.21, 0.372, 0.38, 0.038], + [0.587, 0.275, 0.061, 0.078], + [0.056, 0.161, 0.112, 0.672], + [0.022, 0.242, 0.301, 0.434], + [0.239, 0.593, 0.12, 0.048], + [0.011, 0.111, 0.004, 0.873], + [0.004, 0.017, 0.977, 0.003], + [0.001, 0.008, 0.989, 0.002], + [0.007, 0.002, 0.985, 0.007], + [0.724, 0.044, 0.054, 0.178], + [0.551, 0.097, 0.27, 0.082], + ], + FOXO3: [ + [0.349, 0.199, 0.412, 0.041], + [0.433, 0.095, 0.196, 0.277], + [0.082, 0.007, 0.888, 0.023], + [0.053, 0.285, 0.096, 0.565], + [0.655, 0.345, 0.0, 0.0], + [0.873, 0.068, 0.058, 0.0], + [0.78, 0.026, 0.165, 0.03], + [0.0, 0.833, 0.015, 0.152], + [0.87, 0.042, 0.072, 0.016], + ], + ETV5: [ + [0.013, 0.72, 0.089, 0.178], + [0.13, 0.042, 0.016, 0.812], + [0.007, 0.006, 0.032, 0.955], + [0.0, 0.994, 0.005, 0.0], + [0.008, 0.989, 0.0, 0.003], + [0.007, 0.029, 0.368, 0.596], + [0.02, 0.188, 0.739, 0.053], + ], + DDIT3: [ + [0.562, 0.138, 0.241, 0.059], + [0.007, 0.004, 0.0, 0.989], + [0.016, 0.001, 0.342, 0.641], + [0.452, 0.005, 0.308, 0.235], + [0.065, 0.83, 0.085, 0.02], + [0.737, 0.099, 0.122, 0.042], + [0.085, 0.004, 0.016, 0.895], + [0.03, 0.967, 0.002, 0.001], + [0.957, 0.002, 0.017, 0.024], + [0.016, 0.209, 0.23, 0.544], + ], + FOXE1: [ + [0.682, 0.031, 0.009, 0.279], + [0.615, 0.074, 0.196, 0.114], + [0.497, 0.095, 0.219, 0.189], + [0.522, 0.109, 0.324, 0.045], + [0.201, 0.214, 0.014, 0.571], + [0.916, 0.078, 0.006, 0.0], + [0.995, 0.0, 0.005, 0.001], + [0.985, 0.009, 0.001, 0.005], + [0.0, 0.891, 0.002, 0.107], + [0.86, 0.048, 0.004, 0.088], + [0.513, 0.141, 0.261, 0.084], + [0.527, 0.114, 0.108, 0.251], + ], + ZNF329: [ + [0.227, 0.057, 0.623, 0.092], + [0.11, 0.623, 0.139, 0.127], + [0.281, 0.236, 0.271, 0.211], + [0.078, 0.629, 0.237, 0.055], + [0.039, 0.94, 0.003, 0.018], + [0.033, 0.145, 0.094, 0.727], + [0.092, 0.043, 0.681, 0.184], + [0.041, 0.012, 0.935, 0.011], + [0.866, 0.036, 0.037, 0.061], + [0.07, 0.047, 0.179, 0.704], + [0.067, 0.818, 0.077, 0.038], + [0.348, 0.485, 0.12, 0.047], + [0.661, 0.138, 0.094, 0.107], + [0.195, 0.103, 0.638, 0.064], + [0.028, 0.882, 0.055, 0.035], + [0.063, 0.49, 0.098, 0.349], + [0.395, 0.131, 0.33, 0.144], + [0.109, 0.157, 0.166, 0.568], + [0.368, 0.107, 0.381, 0.144], + [0.073, 0.863, 0.028, 0.036], + [0.019, 0.817, 0.125, 0.039], + [0.027, 0.073, 0.162, 0.738], + [0.076, 0.027, 0.861, 0.036], + [0.723, 0.149, 0.1, 0.027], + [0.697, 0.13, 0.08, 0.093], + [0.137, 0.165, 0.625, 0.073], + [0.041, 0.576, 0.194, 0.189], + [0.095, 0.555, 0.111, 0.239], + ], + GATA3: [ + [0.037, 0.068, 0.007, 0.888], + [0.047, 0.0, 0.0, 0.953], + [0.987, 0.0, 0.0, 0.013], + [0.001, 0.0, 0.0, 0.999], + [0.0, 0.998, 0.002, 0.0], + [0.268, 0.003, 0.02, 0.709], + ], + TFAP2C: [ + [0.17, 0.077, 0.659, 0.095], + [0.017, 0.615, 0.327, 0.041], + [0.001, 0.999, 0.0, 0.0], + [0.0, 0.921, 0.001, 0.079], + [0.043, 0.276, 0.049, 0.632], + [0.096, 0.311, 0.537, 0.055], + [0.515, 0.075, 0.396, 0.013], + [0.112, 0.0, 0.888, 0.0], + [0.001, 0.0, 0.999, 0.0], + [0.036, 0.656, 0.282, 0.025], + ], + KLF4: [ + [0.174, 0.026, 0.795, 0.005], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.01, 0.723, 0.0, 0.268], + [0.028, 0.0, 0.966, 0.007], + [0.042, 0.084, 0.466, 0.408], + [0.021, 0.039, 0.898, 0.043], + [0.069, 0.093, 0.727, 0.112], + [0.124, 0.507, 0.102, 0.267], + ], + AR: [ + [0.352, 0.093, 0.078, 0.477], + [0.468, 0.12, 0.278, 0.133], + [0.438, 0.063, 0.163, 0.337], + [0.305, 0.087, 0.506, 0.102], + [0.109, 0.323, 0.027, 0.541], + [0.778, 0.17, 0.007, 0.046], + [0.733, 0.183, 0.021, 0.063], + [0.825, 0.03, 0.072, 0.073], + [0.001, 0.65, 0.07, 0.279], + [0.707, 0.088, 0.053, 0.152], + [0.373, 0.193, 0.2, 0.234], + [0.409, 0.219, 0.158, 0.214], + [0.392, 0.236, 0.16, 0.213], + [0.472, 0.153, 0.175, 0.2], + [0.526, 0.035, 0.314, 0.125], + [0.165, 0.006, 0.721, 0.108], + [0.507, 0.154, 0.101, 0.237], + [0.877, 0.013, 0.058, 0.052], + [0.006, 0.822, 0.047, 0.126], + [0.683, 0.02, 0.136, 0.161], + ], + ZNF331: [ + [0.529, 0.146, 0.207, 0.118], + [0.656, 0.095, 0.146, 0.103], + [0.345, 0.097, 0.486, 0.072], + [0.772, 0.069, 0.12, 0.038], + [0.663, 0.137, 0.163, 0.038], + [0.104, 0.634, 0.125, 0.138], + [0.125, 0.621, 0.109, 0.144], + [0.409, 0.186, 0.255, 0.151], + [0.157, 0.579, 0.097, 0.167], + [0.134, 0.699, 0.044, 0.123], + [0.081, 0.662, 0.043, 0.215], + [0.494, 0.042, 0.078, 0.386], + [0.065, 0.008, 0.909, 0.018], + [0.006, 0.976, 0.003, 0.016], + [0.277, 0.046, 0.025, 0.651], + [0.068, 0.013, 0.904, 0.015], + [0.976, 0.003, 0.013, 0.008], + [0.117, 0.003, 0.858, 0.023], + [0.008, 0.97, 0.004, 0.019], + [0.131, 0.771, 0.002, 0.096], + [0.051, 0.8, 0.031, 0.118], + [0.538, 0.076, 0.041, 0.344], + [0.151, 0.044, 0.625, 0.18], + [0.06, 0.585, 0.076, 0.28], + [0.081, 0.771, 0.034, 0.114], + ], + ZNF563: [ + [0.191, 0.133, 0.528, 0.148], + [0.094, 0.083, 0.707, 0.115], + [0.235, 0.067, 0.517, 0.181], + [0.182, 0.335, 0.299, 0.184], + [0.001, 0.04, 0.018, 0.942], + [0.006, 0.981, 0.005, 0.008], + [0.304, 0.49, 0.048, 0.159], + [0.103, 0.179, 0.178, 0.54], + [0.145, 0.235, 0.359, 0.262], + [0.435, 0.13, 0.245, 0.191], + [0.112, 0.585, 0.214, 0.09], + [0.186, 0.37, 0.041, 0.403], + [0.207, 0.012, 0.728, 0.053], + [0.031, 0.083, 0.738, 0.148], + [0.028, 0.903, 0.048, 0.021], + [0.611, 0.261, 0.043, 0.086], + [0.379, 0.173, 0.393, 0.055], + [0.01, 0.909, 0.009, 0.072], + [0.229, 0.191, 0.233, 0.347], + [0.058, 0.116, 0.612, 0.213], + ], + ZNF528: [ + [0.531, 0.1, 0.253, 0.116], + [0.255, 0.069, 0.539, 0.137], + [0.09, 0.022, 0.863, 0.025], + [0.093, 0.009, 0.888, 0.011], + [0.965, 0.01, 0.018, 0.007], + [0.859, 0.03, 0.087, 0.024], + [0.007, 0.004, 0.974, 0.015], + [0.112, 0.342, 0.129, 0.417], + [0.184, 0.793, 0.009, 0.014], + [0.845, 0.014, 0.137, 0.004], + [0.064, 0.188, 0.032, 0.716], + [0.008, 0.065, 0.022, 0.905], + [0.025, 0.059, 0.21, 0.705], + [0.019, 0.919, 0.004, 0.058], + [0.019, 0.261, 0.014, 0.707], + ], + MECOM: [ + [0.027, 0.071, 0.058, 0.845], + [0.028, 0.006, 0.0, 0.966], + [0.903, 0.027, 0.061, 0.009], + [0.022, 0.017, 0.046, 0.915], + [0.0, 0.964, 0.036, 0.0], + [0.266, 0.018, 0.055, 0.66], + ], + STAT5B: [ + [0.006, 0.054, 0.021, 0.919], + [0.111, 0.012, 0.095, 0.781], + [0.154, 0.788, 0.016, 0.042], + [0.084, 0.64, 0.008, 0.268], + [0.337, 0.012, 0.452, 0.199], + [0.35, 0.087, 0.46, 0.103], + [0.073, 0.011, 0.756, 0.16], + [0.836, 0.04, 0.071, 0.053], + [0.925, 0.018, 0.057, 0.0], + [0.56, 0.159, 0.227, 0.054], + ], + ZNF436: [ + [0.216, 0.128, 0.576, 0.08], + [0.102, 0.462, 0.062, 0.375], + [0.028, 0.77, 0.022, 0.18], + [0.564, 0.1, 0.19, 0.146], + [0.015, 0.935, 0.007, 0.043], + [0.001, 0.818, 0.002, 0.179], + [0.05, 0.017, 0.039, 0.894], + [0.007, 0.976, 0.003, 0.014], + [0.004, 0.853, 0.001, 0.142], + [0.029, 0.033, 0.015, 0.923], + [0.022, 0.921, 0.014, 0.042], + [0.041, 0.874, 0.002, 0.083], + [0.793, 0.019, 0.138, 0.05], + [0.107, 0.008, 0.788, 0.098], + [0.019, 0.003, 0.976, 0.002], + [0.84, 0.093, 0.059, 0.009], + [0.921, 0.007, 0.051, 0.02], + [0.001, 0.001, 0.995, 0.002], + [0.027, 0.753, 0.062, 0.159], + [0.02, 0.935, 0.004, 0.041], + [0.031, 0.411, 0.011, 0.546], + [0.044, 0.101, 0.059, 0.796], + [0.006, 0.938, 0.006, 0.05], + [0.029, 0.837, 0.02, 0.113], + [0.133, 0.454, 0.085, 0.328], + [0.124, 0.039, 0.311, 0.526], + [0.112, 0.059, 0.795, 0.033], + [0.657, 0.16, 0.096, 0.087], + [0.068, 0.343, 0.049, 0.54], + [0.08, 0.262, 0.117, 0.542], + [0.204, 0.285, 0.227, 0.284], + [0.112, 0.622, 0.086, 0.18], + [0.139, 0.519, 0.064, 0.277], + [0.137, 0.541, 0.094, 0.228], + ], + EGR3: [ + [0.233, 0.572, 0.08, 0.115], + [0.029, 0.965, 0.0, 0.006], + [0.402, 0.0, 0.306, 0.292], + [0.0, 1.0, 0.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.988, 0.012, 0.001], + [0.654, 0.273, 0.072, 0.0], + [0.0, 1.0, 0.0, 0.0], + ], + NFAT5: [ + [0.112, 0.05, 0.767, 0.071], + [0.117, 0.145, 0.372, 0.366], + [0.351, 0.197, 0.163, 0.289], + [0.368, 0.265, 0.149, 0.218], + [0.284, 0.174, 0.206, 0.336], + [0.186, 0.12, 0.074, 0.62], + [0.027, 0.021, 0.056, 0.896], + [0.039, 0.039, 0.0, 0.922], + [0.056, 0.926, 0.005, 0.013], + [0.074, 0.917, 0.002, 0.006], + [0.479, 0.035, 0.26, 0.226], + [0.058, 0.456, 0.25, 0.237], + ], + ZNF121: [ + [0.156, 0.119, 0.107, 0.619], + [0.185, 0.106, 0.091, 0.619], + [0.187, 0.1, 0.1, 0.613], + [0.199, 0.105, 0.081, 0.615], + [0.195, 0.099, 0.094, 0.612], + [0.12, 0.091, 0.085, 0.705], + [0.106, 0.085, 0.09, 0.72], + [0.101, 0.081, 0.086, 0.732], + [0.079, 0.08, 0.094, 0.746], + [0.085, 0.083, 0.083, 0.75], + [0.079, 0.075, 0.137, 0.709], + [0.114, 0.074, 0.228, 0.584], + [0.147, 0.083, 0.09, 0.68], + [0.403, 0.059, 0.165, 0.372], + [0.151, 0.068, 0.71, 0.071], + [0.74, 0.051, 0.157, 0.052], + [0.156, 0.064, 0.734, 0.046], + [0.729, 0.077, 0.111, 0.083], + [0.083, 0.447, 0.106, 0.364], + [0.485, 0.033, 0.43, 0.052], + [0.042, 0.022, 0.914, 0.021], + [0.179, 0.017, 0.764, 0.04], + [0.133, 0.024, 0.825, 0.018], + [0.023, 0.048, 0.028, 0.901], + [0.019, 0.94, 0.017, 0.024], + [0.023, 0.04, 0.033, 0.904], + [0.022, 0.443, 0.043, 0.492], + [0.437, 0.021, 0.513, 0.028], + [0.02, 0.953, 0.01, 0.017], + [0.044, 0.01, 0.015, 0.932], + [0.385, 0.406, 0.189, 0.02], + [0.036, 0.092, 0.021, 0.851], + [0.114, 0.082, 0.782, 0.023], + [0.011, 0.111, 0.015, 0.863], + [0.017, 0.033, 0.036, 0.915], + [0.0, 0.002, 0.997, 0.001], + [0.003, 0.839, 0.065, 0.094], + [0.008, 0.975, 0.007, 0.011], + [0.001, 0.991, 0.007, 0.001], + [0.85, 0.093, 0.002, 0.054], + [0.018, 0.002, 0.975, 0.005], + [0.027, 0.046, 0.81, 0.116], + [0.025, 0.864, 0.025, 0.085], + [0.036, 0.06, 0.036, 0.868], + [0.109, 0.047, 0.786, 0.059], + [0.123, 0.064, 0.757, 0.055], + [0.507, 0.069, 0.09, 0.333], + [0.077, 0.368, 0.475, 0.08], + [0.056, 0.071, 0.069, 0.804], + [0.102, 0.255, 0.463, 0.18], + [0.216, 0.469, 0.23, 0.085], + [0.801, 0.053, 0.092, 0.054], + [0.414, 0.073, 0.451, 0.062], + [0.058, 0.376, 0.078, 0.489], + [0.076, 0.082, 0.464, 0.379], + [0.091, 0.387, 0.445, 0.078], + [0.063, 0.588, 0.079, 0.27], + [0.225, 0.085, 0.283, 0.407], + [0.116, 0.3, 0.377, 0.207], + [0.269, 0.092, 0.534, 0.105], + [0.439, 0.191, 0.269, 0.1], + [0.076, 0.402, 0.071, 0.452], + [0.086, 0.451, 0.071, 0.393], + ], + NFATC2: [ + [0.535, 0.112, 0.254, 0.098], + [0.113, 0.136, 0.026, 0.725], + [0.002, 0.0, 0.998, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.998, 0.002, 0.0, 0.0], + [0.988, 0.0, 0.011, 0.0], + [0.793, 0.077, 0.021, 0.11], + [0.471, 0.238, 0.154, 0.137], + [0.443, 0.063, 0.093, 0.401], + ], + RELB: [ + [0.023, 0.035, 0.89, 0.051], + [0.004, 0.024, 0.965, 0.007], + [0.001, 0.014, 0.725, 0.261], + [0.456, 0.031, 0.459, 0.054], + [0.06, 0.506, 0.291, 0.142], + [0.007, 0.011, 0.004, 0.978], + [0.0, 0.031, 0.002, 0.967], + [0.012, 0.266, 0.015, 0.706], + [0.002, 0.868, 0.0, 0.13], + [0.051, 0.76, 0.063, 0.127], + ], + MEF2D: [ + [0.096, 0.079, 0.401, 0.424], + [0.026, 0.757, 0.101, 0.117], + [0.001, 0.026, 0.0, 0.973], + [0.974, 0.001, 0.01, 0.015], + [0.15, 0.004, 0.0, 0.846], + [0.203, 0.006, 0.006, 0.784], + [0.142, 0.048, 0.0, 0.81], + [0.276, 0.074, 0.008, 0.642], + [0.091, 0.019, 0.043, 0.848], + [0.758, 0.002, 0.237, 0.002], + [0.085, 0.033, 0.81, 0.072], + ], + ETV1: [ + [0.063, 0.764, 0.159, 0.014], + [0.512, 0.472, 0.015, 0.001], + [0.0, 0.0, 1.0, 0.0], + [0.003, 0.0, 0.997, 0.0], + [0.999, 0.0, 0.0, 0.001], + [0.827, 0.014, 0.008, 0.152], + [0.239, 0.061, 0.681, 0.018], + [0.091, 0.285, 0.141, 0.483], + ], + ZFP28: [ + [0.132, 0.048, 0.127, 0.693], + [0.067, 0.301, 0.087, 0.545], + [0.012, 0.003, 0.001, 0.984], + [0.0, 0.842, 0.0, 0.158], + [0.228, 0.205, 0.058, 0.508], + [0.615, 0.073, 0.142, 0.17], + [0.003, 0.158, 0.017, 0.822], + [0.025, 0.141, 0.013, 0.821], + [0.0, 0.019, 0.001, 0.98], + [0.0, 0.893, 0.0, 0.107], + [0.115, 0.272, 0.009, 0.605], + [0.025, 0.014, 0.023, 0.939], + [0.007, 0.693, 0.003, 0.297], + [0.188, 0.126, 0.05, 0.636], + [0.228, 0.078, 0.306, 0.389], + [0.231, 0.057, 0.464, 0.248], + [0.324, 0.051, 0.22, 0.405], + [0.191, 0.072, 0.581, 0.156], + [0.134, 0.079, 0.116, 0.671], + [0.141, 0.457, 0.204, 0.198], + [0.677, 0.069, 0.116, 0.138], + ], + ESRRA: [ + [0.518, 0.017, 0.461, 0.004], + [0.762, 0.14, 0.035, 0.062], + [0.001, 0.04, 0.959, 0.001], + [0.0, 0.0, 1.0, 0.0], + [0.039, 0.026, 0.005, 0.929], + [0.001, 0.913, 0.012, 0.075], + [0.91, 0.004, 0.086, 0.001], + ], + PAX5: [ + [0.011, 0.003, 0.86, 0.125], + [0.105, 0.162, 0.008, 0.725], + [0.0, 0.999, 0.0, 0.001], + [0.87, 0.0, 0.052, 0.079], + [0.052, 0.586, 0.029, 0.334], + [0.203, 0.016, 0.777, 0.004], + [0.003, 0.594, 0.379, 0.024], + [0.212, 0.245, 0.068, 0.475], + ], + TCF7L1: [ + [0.0, 0.928, 0.054, 0.018], + [0.003, 0.004, 0.001, 0.993], + [0.0, 0.007, 0.004, 0.989], + [0.018, 0.0, 0.01, 0.972], + [0.022, 0.102, 0.772, 0.104], + [0.898, 0.0, 0.005, 0.097], + [0.412, 0.027, 0.008, 0.552], + ], + ZBTB17: [ + [0.195, 0.22, 0.5, 0.085], + [0.182, 0.175, 0.484, 0.16], + [0.154, 0.124, 0.601, 0.121], + [0.198, 0.179, 0.163, 0.46], + [0.051, 0.107, 0.811, 0.031], + [0.026, 0.025, 0.898, 0.051], + [0.088, 0.08, 0.817, 0.015], + [0.009, 0.014, 0.921, 0.056], + [0.009, 0.009, 0.958, 0.024], + [0.431, 0.491, 0.016, 0.063], + [0.116, 0.021, 0.772, 0.091], + [0.024, 0.039, 0.899, 0.038], + [0.08, 0.033, 0.824, 0.063], + [0.04, 0.049, 0.873, 0.039], + [0.275, 0.513, 0.102, 0.11], + ], + ZNF260: [ + [0.018, 0.298, 0.034, 0.65], + [0.095, 0.785, 0.019, 0.101], + [0.052, 0.336, 0.034, 0.579], + [0.03, 0.029, 0.027, 0.914], + [0.026, 0.024, 0.033, 0.917], + [0.027, 0.026, 0.049, 0.898], + [0.187, 0.042, 0.096, 0.676], + [0.076, 0.197, 0.017, 0.711], + [0.859, 0.053, 0.042, 0.045], + [0.014, 0.18, 0.016, 0.79], + [0.154, 0.022, 0.661, 0.163], + [0.042, 0.002, 0.946, 0.009], + [0.003, 0.779, 0.019, 0.2], + [0.022, 0.032, 0.006, 0.941], + [0.028, 0.057, 0.886, 0.029], + [0.153, 0.697, 0.006, 0.144], + [0.809, 0.012, 0.175, 0.003], + [0.001, 0.004, 0.012, 0.982], + [0.918, 0.008, 0.026, 0.047], + [0.137, 0.101, 0.751, 0.011], + [0.003, 0.007, 0.014, 0.976], + [0.96, 0.005, 0.025, 0.011], + [0.002, 0.104, 0.016, 0.877], + [0.003, 0.004, 0.009, 0.984], + [0.0, 0.954, 0.003, 0.042], + [0.006, 0.945, 0.003, 0.046], + [0.861, 0.036, 0.055, 0.047], + [0.024, 0.148, 0.036, 0.792], + [0.094, 0.064, 0.53, 0.312], + [0.11, 0.068, 0.743, 0.08], + [0.067, 0.099, 0.064, 0.77], + [0.296, 0.048, 0.582, 0.075], + [0.057, 0.08, 0.056, 0.807], + [0.611, 0.049, 0.263, 0.077], + [0.149, 0.081, 0.156, 0.614], + [0.741, 0.076, 0.089, 0.095], + [0.093, 0.091, 0.073, 0.744], + [0.256, 0.049, 0.591, 0.104], + [0.091, 0.087, 0.076, 0.746], + [0.527, 0.086, 0.291, 0.096], + [0.078, 0.706, 0.06, 0.156], + [0.115, 0.702, 0.055, 0.129], + [0.731, 0.085, 0.06, 0.125], + [0.105, 0.623, 0.05, 0.222], + [0.685, 0.086, 0.084, 0.145], + [0.135, 0.094, 0.093, 0.678], + [0.097, 0.073, 0.066, 0.764], + [0.092, 0.073, 0.065, 0.77], + [0.09, 0.078, 0.066, 0.766], + [0.142, 0.545, 0.115, 0.197], + [0.093, 0.113, 0.049, 0.746], + [0.106, 0.092, 0.066, 0.736], + [0.213, 0.109, 0.052, 0.627], + [0.651, 0.084, 0.07, 0.195], + [0.123, 0.14, 0.071, 0.666], + [0.109, 0.618, 0.074, 0.2], + [0.131, 0.593, 0.076, 0.199], + [0.633, 0.108, 0.097, 0.162], + [0.173, 0.116, 0.42, 0.291], + [0.105, 0.15, 0.085, 0.66], + [0.123, 0.591, 0.079, 0.207], + [0.191, 0.18, 0.088, 0.541], + [0.47, 0.151, 0.129, 0.251], + [0.121, 0.293, 0.082, 0.505], + ], + ZNF490: [ + [0.218, 0.128, 0.143, 0.511], + [0.214, 0.123, 0.475, 0.189], + [0.231, 0.116, 0.477, 0.176], + [0.54, 0.111, 0.173, 0.176], + [0.214, 0.117, 0.147, 0.521], + [0.544, 0.12, 0.142, 0.194], + [0.586, 0.127, 0.112, 0.174], + [0.58, 0.122, 0.154, 0.144], + [0.39, 0.118, 0.344, 0.149], + [0.634, 0.119, 0.116, 0.131], + [0.395, 0.134, 0.301, 0.17], + [0.307, 0.159, 0.17, 0.364], + [0.172, 0.563, 0.105, 0.16], + [0.654, 0.142, 0.094, 0.11], + [0.585, 0.141, 0.08, 0.194], + [0.152, 0.101, 0.682, 0.065], + [0.751, 0.026, 0.197, 0.026], + [0.195, 0.599, 0.073, 0.133], + [0.059, 0.767, 0.024, 0.15], + [0.065, 0.735, 0.021, 0.179], + [0.629, 0.129, 0.048, 0.194], + [0.402, 0.087, 0.168, 0.342], + [0.098, 0.374, 0.204, 0.325], + [0.232, 0.043, 0.336, 0.39], + [0.39, 0.016, 0.537, 0.057], + [0.008, 0.046, 0.05, 0.896], + [0.284, 0.236, 0.274, 0.206], + [0.006, 0.002, 0.001, 0.991], + [0.001, 0.001, 0.97, 0.029], + [0.002, 0.811, 0.005, 0.182], + [0.004, 0.035, 0.002, 0.958], + [0.01, 0.001, 0.978, 0.011], + [0.012, 0.487, 0.046, 0.455], + [0.214, 0.506, 0.021, 0.259], + [0.064, 0.048, 0.083, 0.805], + [0.32, 0.134, 0.099, 0.447], + [0.046, 0.859, 0.033, 0.062], + [0.752, 0.136, 0.037, 0.075], + [0.553, 0.057, 0.279, 0.11], + [0.074, 0.09, 0.749, 0.087], + [0.749, 0.065, 0.111, 0.074], + [0.291, 0.082, 0.52, 0.107], + [0.706, 0.131, 0.065, 0.097], + [0.08, 0.71, 0.09, 0.121], + [0.204, 0.407, 0.078, 0.31], + [0.136, 0.583, 0.104, 0.177], + [0.662, 0.098, 0.11, 0.13], + [0.118, 0.33, 0.103, 0.45], + [0.112, 0.481, 0.097, 0.31], + [0.123, 0.109, 0.096, 0.671], + [0.185, 0.488, 0.109, 0.218], + [0.651, 0.114, 0.116, 0.118], + [0.161, 0.461, 0.132, 0.247], + [0.389, 0.217, 0.244, 0.149], + [0.134, 0.173, 0.122, 0.571], + ], + ZBTB26: [ + [0.012, 0.041, 0.141, 0.806], + [0.003, 0.984, 0.01, 0.004], + [0.013, 0.539, 0.08, 0.368], + [0.467, 0.033, 0.485, 0.014], + [0.006, 0.005, 0.985, 0.004], + [0.883, 0.034, 0.052, 0.03], + [0.506, 0.097, 0.264, 0.132], + ], + TAL1: [ + [0.075, 0.5, 0.219, 0.206], + [0.053, 0.048, 0.005, 0.894], + [0.098, 0.0, 0.0, 0.902], + [1.0, 0.0, 0.0, 0.0], + [0.001, 0.0, 0.0, 0.999], + [0.0, 1.0, 0.0, 0.0], + [0.321, 0.013, 0.017, 0.649], + ], + ELF2: [ + [0.514, 0.082, 0.269, 0.134], + [0.011, 0.777, 0.098, 0.114], + [0.036, 0.0, 0.0, 0.964], + [0.001, 0.0, 0.003, 0.996], + [0.0, 0.971, 0.013, 0.016], + [0.009, 0.97, 0.0, 0.022], + [0.026, 0.025, 0.611, 0.338], + [0.032, 0.228, 0.638, 0.102], + ], + NANOG: [ + [0.05, 0.485, 0.191, 0.274], + [0.084, 0.459, 0.107, 0.349], + [0.43, 0.051, 0.06, 0.459], + [0.023, 0.042, 0.033, 0.902], + [0.074, 0.007, 0.035, 0.884], + [0.092, 0.299, 0.553, 0.056], + [0.353, 0.015, 0.062, 0.57], + [0.254, 0.246, 0.141, 0.358], + [0.742, 0.039, 0.083, 0.136], + [0.048, 0.045, 0.05, 0.857], + [0.013, 0.007, 0.754, 0.226], + [0.037, 0.547, 0.127, 0.289], + [0.615, 0.021, 0.084, 0.281], + [0.651, 0.031, 0.191, 0.127], + [0.737, 0.054, 0.089, 0.121], + [0.165, 0.143, 0.167, 0.524], + ], + ONECUT2: [ + [0.145, 0.115, 0.057, 0.683], + [0.994, 0.001, 0.003, 0.002], + [0.148, 0.012, 0.014, 0.826], + [0.228, 0.002, 0.089, 0.68], + [0.0, 0.0, 1.0, 0.0], + [0.961, 0.01, 0.026, 0.003], + [0.017, 0.04, 0.016, 0.927], + [0.019, 0.071, 0.041, 0.869], + [0.23, 0.081, 0.076, 0.614], + ], + GLIS3: [ + [0.409, 0.198, 0.393, 0.0], + [0.023, 0.834, 0.003, 0.14], + [0.002, 0.971, 0.009, 0.018], + [0.102, 0.622, 0.002, 0.274], + [0.0, 0.997, 0.0, 0.002], + [0.103, 0.887, 0.003, 0.006], + [0.158, 0.526, 0.01, 0.306], + [0.393, 0.004, 0.578, 0.025], + [0.01, 0.759, 0.222, 0.009], + [0.356, 0.216, 0.24, 0.189], + [0.218, 0.139, 0.468, 0.176], + [0.405, 0.188, 0.275, 0.132], + [0.011, 0.163, 0.761, 0.065], + ], + ZFX: [ + [0.145, 0.484, 0.07, 0.301], + [0.119, 0.348, 0.325, 0.208], + [0.389, 0.133, 0.41, 0.068], + [0.001, 0.0, 0.985, 0.015], + [0.002, 0.0, 0.992, 0.006], + [0.006, 0.993, 0.0, 0.001], + [0.0, 0.998, 0.0, 0.002], + [0.005, 0.076, 0.0, 0.919], + [0.245, 0.209, 0.365, 0.181], + [0.054, 0.384, 0.454, 0.109], + ], + RBPJ: [ + [0.006, 0.212, 0.015, 0.767], + [0.0, 0.003, 0.0, 0.996], + [0.0, 1.0, 0.0, 0.0], + [0.063, 0.741, 0.0, 0.196], + [0.001, 0.987, 0.011, 0.0], + [0.775, 0.0, 0.188, 0.037], + [0.023, 0.437, 0.375, 0.165], + [0.257, 0.254, 0.407, 0.083], + [0.236, 0.35, 0.372, 0.042], + ], + ZNF680: [ + [0.198, 0.036, 0.711, 0.055], + [0.295, 0.184, 0.259, 0.262], + [0.09, 0.764, 0.03, 0.116], + [0.309, 0.564, 0.026, 0.102], + [0.792, 0.01, 0.166, 0.032], + [0.672, 0.005, 0.253, 0.07], + [0.001, 0.001, 0.998, 0.0], + [0.998, 0.001, 0.001, 0.0], + [0.946, 0.003, 0.035, 0.016], + [0.161, 0.002, 0.828, 0.009], + [0.996, 0.002, 0.002, 0.0], + [0.472, 0.288, 0.039, 0.201], + [0.041, 0.152, 0.03, 0.776], + [0.291, 0.138, 0.258, 0.312], + [0.626, 0.086, 0.077, 0.211], + [0.3, 0.036, 0.598, 0.067], + ], + } + \ No newline at end of file diff --git a/screen2.0/src/app/search/gbview/biosampletracks.tsx b/screen2.0/src/app/search/gbview/biosampletracks.tsx new file mode 100644 index 00000000..cadc0e35 --- /dev/null +++ b/screen2.0/src/app/search/gbview/biosampletracks.tsx @@ -0,0 +1,226 @@ +import { gql, useQuery } from "@apollo/client"; +import { associateBy } from "queryz"; +import { BigWigData, BigBedData, BigZoomData } from "bigwig-reader"; +import React, { RefObject, useEffect, useMemo, useState } from "react"; +import { DenseBigBed, EmptyTrack, FullBigWig } from "umms-gb"; +import { + BigRequest, + RequestError, +} from "umms-gb/dist/components/tracks/trackset/types"; +import { ValuedPoint } from "umms-gb/dist/utils/types"; +import { client } from "../ccredetails/client" +import CCRETooltip from "./ccretooltip" +import { TitledTrack } from "./defaulttracks"; + +type GenomicRange = { + chromosome?: string; + start: number; + end: number; + }; + +type BiosampleTracksProps = { + tracks: [string, string, string][]; + biosample: string; + domain: GenomicRange; + onHeightChanged?: (i: number) => void; + cCREHighlight?: GenomicRange; + cCREHighlights?: Set; + svgRef?: RefObject; + assembly: string; + oncCREClicked?: (accession: string) => void; + oncCREMousedOver?: (coordinates?: GenomicRange) => void; + oncCREMousedOut?: () => void; + onSettingsClick?: () => void; + }; + + + +export type BigResponseData = + | BigWigData[] + | BigBedData[] + | BigZoomData[] + | ValuedPoint[]; + +export type BigResponse = { + data: BigResponseData; + error: RequestError; +}; + +export type BigQueryResponse = { + bigRequests: BigResponse[]; +}; +export const BIG_QUERY = gql` + query BigRequests($bigRequests: [BigRequest!]!) { + bigRequests(requests: $bigRequests) { + data + error { + errortype + message + } + } + } +`; + +export const COLOR_MAP : Map = + new Map([ + [ + "DNase", + "#06da93" + + ], + [ + "H3K4me3", + "#ff0000" + + ] + , + [ + "H3K27ac", + "#ffcd00" + + ], + [ + "CTCF", + "#00b0d0" + + ] + ]); + + export const BIOSAMPLE_QUERY = gql` + query q ($assembly: String!) { + ccREBiosampleQuery(assembly: $assembly) { + biosamples { + name + dnase: experimentAccession(assay: "DNase") + h3k4me3: experimentAccession(assay: "H3K4me3") + h3k27ac: experimentAccession(assay: "H3K27ac") + ctcf: experimentAccession(assay: "CTCF") + dnase_signal: fileAccession(assay: "DNase") + h3k4me3_signal: fileAccession(assay: "H3K4me3") + h3k27ac_signal: fileAccession(assay: "H3K27ac") + ctcf_signal: fileAccession(assay: "CTCF") + } + } + } + ` +export const BiosampleTracks:React.FC = (props) => { + const [cTracks, setTracks] = useState<[string, string, string][]>(props.tracks) + + useEffect(()=>{ + setTracks(props.tracks) + },[props.tracks]) + const height = useMemo(() => cTracks && cTracks.length * 80, [cTracks]); + const bigRequests = useMemo( + () => + cTracks && cTracks.map((x) => ({ + chr1: props.domain.chromosome!, + start: props.domain.start, + end: props.domain.end, + preRenderedWidth: 1400, + url: x[1], + })), + [cTracks, props] + ); + const { data, loading } = useQuery(BIG_QUERY, { + variables: { bigRequests }, + client, + skip: bigRequests===null + + }); + const { data: biosampleData, loading: biosampleDataLoading } = useQuery(BIOSAMPLE_QUERY, { + variables: { assembly: "grch38" }, + client + }); + const groupedBiosamples = useMemo( + () => + associateBy( + biosampleData && biosampleData.ccREBiosampleQuery ? biosampleData.ccREBiosampleQuery.biosamples : [], + (x: any) => x.name as any, + (x) => x + ), + [biosampleData,biosampleDataLoading] + ) + console.log(groupedBiosamples.get(props.biosample)) + const cCRECoordinateMap = useMemo( + () => + associateBy( + (data && data.bigRequests && data.bigRequests[0].data) || [], + (x) => x.name, + (x) => ({ chromosome: x.chr, start: x.start, end: x.end }) + ), + [data] + ) + useEffect(() => { + height && props.onHeightChanged && props.onHeightChanged(height); + }, [props.onHeightChanged, height, props]); + + const [settingsMousedOver, setSettingsMousedOver] = useState(false); + const [settingsModalShown, setSettingsModalShown] = useState(false); + + return loading || !cTracks || !height || (data?.bigRequests.length || 0) < 2 ? ( + + ) : ( + <> + + + + {(data?.bigRequests || []).map((data, i) => ( + + ))} + + + + {settingsMousedOver && ( + + )} + + setSettingsMousedOver(true)} + onMouseOut={() => setSettingsMousedOver(false)} + strokeWidth={1} + transform="translate(20,0)" + onClick={() => { + props.onSettingsClick && props.onSettingsClick(); + setSettingsModalShown(true); + }} + /> + + Biosample-Specific Tracks + + + ); +} \ No newline at end of file diff --git a/screen2.0/src/app/search/gbview/ccretooltip.tsx b/screen2.0/src/app/search/gbview/ccretooltip.tsx new file mode 100644 index 00000000..b8475ff1 --- /dev/null +++ b/screen2.0/src/app/search/gbview/ccretooltip.tsx @@ -0,0 +1,95 @@ +import { gql, useQuery } from "@apollo/client" +import React, { useMemo } from "react" +import { CircularProgress } from "@mui/material" +import { client } from "../ccredetails/client" + +export const COLORS = new Map([ + ["PLS", "#ff0000"], + ["pELS", "#ffa700"], + ["dELS", "#ffcd00"], + ["DNase-H3K4me3", "#ffaaaa"], + ["CTCF-only", "#00b0f0"], +]) + +export const GROUPS = new Map([ + ["PLS", "promoter-like"], + ["pELS", "proximal enhancer-like"], + ["dELS", "distal enhancer-like"], + ["DNase-H3K4me3", "DNase-H3K4me3"], + ["CTCF-only", "CTCF-only"], +]) + +const QUERY = gql` + query cCRE($assembly: String!, $accession: [String!], $experiments: [String!]) { + cCREQuery(assembly: $assembly, accession: $accession) { + group + zScores(experiments: $experiments) { + experiment + score + } + } + } +` + +const MAXZ_QUERY = gql` + query cCRE($assembly: String!, $accession: [String!]) { + cCREQuery(assembly: $assembly, accession: $accession) { + group + dnase: maxZ(assay: "dnase") + h3k4me3: maxZ(assay: "h3k4me3") + h3k27ac: maxZ(assay: "h3k27ac") + ctcf: maxZ(assay: "ctcf") + } + } +` + +const biosampleExperiments = (x) => [x.dnase, x.h3k4me3, x.h3k27ac, x.ctcf].filter((xx) => !!xx) + +const MARKS = ["DNase", "H3K4me3", "H3K27ac", "CTCF"] +const marks = (x) => [x.dnase, x.h3k4me3, x.h3k27ac, x.ctcf].map((x, i) => x && MARKS[i]).filter((xx) => !!xx) + +const CCRETooltip = (props) => { + const experiments = useMemo( + () => (props.biosample ? biosampleExperiments(props.biosample) : ["dnase", "h3k4me3", "h3k27ac", "ctcf"]), + [props] + ) + const { data, loading } = useQuery(props.biosample ? QUERY : MAXZ_QUERY, { + variables: { + assembly: props.assembly, + accession: props.name, + experiments, + }, + client + }) + return ( +
+ {loading || !data.cCREQuery[0] ? ( + + ) : ( + <> + + + + {props.name} ⸱ {GROUPS.get(data.cCREQuery[0].group || "")} + + + Click for details about this cCRE +
+
+ {props.biosample ? "Z-scores in " + props.biosample.name : "Max Z-scores across all biosamples:"} +
+ {(props.biosample ? marks(props.biosample) : MARKS).map((x, i) => ( + + {x}:{" "} + {props.biosample + ? data.cCREQuery[0].zScores.find((xx) => xx.experiment === experiments[i]).score.toFixed(2) + : data.cCREQuery[0][experiments[i]].toFixed(2)} +
+
+ ))} + + )} +
+ ) +} +export default CCRETooltip diff --git a/screen2.0/src/app/search/gbview/controls.tsx b/screen2.0/src/app/search/gbview/controls.tsx new file mode 100644 index 00000000..144ceb90 --- /dev/null +++ b/screen2.0/src/app/search/gbview/controls.tsx @@ -0,0 +1,39 @@ +import React from 'react'; + +import ShiftButton from './shiftbutton'; +import ZoomButton from './zoombutton'; + +export interface Domain { + chromosome?: string; + start: number; + end: number; +}; +export type ControlProps = { + domain: Domain; + onDomainChanged: (domain: Domain) => void; + +}; +const Controls = ({ domain, onDomainChanged }) => { + return( + <> + move  + + + + + +   + zoom in  + + +   + zoom out  + + + + + +
+ +)}; +export default Controls; \ No newline at end of file diff --git a/screen2.0/src/app/search/gbview/cytobandview.tsx b/screen2.0/src/app/search/gbview/cytobandview.tsx new file mode 100644 index 00000000..0bfa6902 --- /dev/null +++ b/screen2.0/src/app/search/gbview/cytobandview.tsx @@ -0,0 +1,91 @@ +import React, { useMemo } from "react"; +import { gql, useQuery } from "@apollo/client"; +import { Cytobands } from "umms-gb"; +import { Grid } from "@mui/material"; +import { client } from "../ccredetails/client" +export type GenomicRange = { + chromosome?: string; + start: number; + end: number; + }; + +const CYTOBAND_QUERY = gql` + query cytobands($assembly: String!, $chromosome: String) { + cytoband(assembly: $assembly, chromosome: $chromosome) { + stain + coordinates { + chromosome + start + end + } + } + } +`; + +export type CytobandQueryResponse = { + cytoband: { + stain: string; + coordinates: { + chromosome: string; + start: number; + end: number; + }; + }[]; +}; + +export type CytobandsProps = { + assembly: string; + chromosome: string; + innerWidth: number; + height: number; + position?: GenomicRange; +}; + +const CytobandView: React.FC = (props) => { + const { loading, data } = useQuery(CYTOBAND_QUERY, { + variables: { + assembly: props.assembly, + chromosome: props.chromosome, + }, + fetchPolicy: "cache-and-network", + nextFetchPolicy: "cache-first", + client, + }); + const domain = useMemo( + () => + data && { + start: 0, + end: Math.max( + ...(data.cytoband.length === 0 + ? [1] + : data.cytoband.map((x) => x.coordinates.end)) + ), + }, + [data] + ); + return loading || !data ? null : ( + + + + + + + + + + {props.assembly}:{props.chromosome} + + + + ); +}; +export default CytobandView; diff --git a/screen2.0/src/app/search/gbview/defaulttracks.tsx b/screen2.0/src/app/search/gbview/defaulttracks.tsx new file mode 100644 index 00000000..1a9827e0 --- /dev/null +++ b/screen2.0/src/app/search/gbview/defaulttracks.tsx @@ -0,0 +1,366 @@ +import { gql, useQuery } from "@apollo/client"; +import { associateBy } from "queryz" +import { BigWigData, BigBedData, BigZoomData } from "bigwig-reader"; +import React, { RefObject, useEffect, useMemo, useState } from "react"; +import { DenseBigBed, EmptyTrack, FullBigWig } from "umms-gb"; +import { + BigRequest, + RequestError, +} from "umms-gb/dist/components/tracks/trackset/types"; +import { ValuedPoint } from "umms-gb/dist/utils/types"; +import { client } from "../ccredetails/client" +import CCRETooltip from "./ccretooltip" +/* +export const DEFAULT_TRACKS = ( + assembly: string +): Map => { + console.log +return assembly.toLowerCase() === "mm10" + ? new Map([ + ["All cCREs colored by group", { url: `gs://gcp.wenglab.org/${assembly}-cCREs.bigBed` }], + ["Aggregated DNase-seq signal, all Registry biosamples", { url: `gs://gcp.wenglab.org/dnase.${assembly}.sum.bigWig` }], + ]) : + new Map([ + [ + "All cCREs colored by group", + { + url: "gs://gcp.wenglab.org/GRCh38-cCREs.bigBed", + }, + ], + [ + "Aggregated DNase-seq signal, all Registry biosamples", + { + url: "gs://gcp.wenglab.org/dnase.GRCh38.sum.bigWig", + }, + ], + [ + "Aggregated H3K4me3 ChIP-seq signal, all Registry biosamples", + { + url: "gs://gcp.wenglab.org/h3k4me3.hg38.sum.bigWig", + }, + ] + , + [ + "Aggregated H3K27ac ChIP-seq signal, all Registry biosamples", + { + url: "gs://gcp.wenglab.org/h3k27ac.hg38.sum.bigWig", + }, + ], + [ + "Aggregated CTCF ChIP-seq signal, all Registry biosamples", + { + url: "gs://gcp.wenglab.org/ctcf.hg38.sum.bigWig", + }, + ] + + ]); +} + +export const TRACK_ORDER = (assembly) => {return assembly.toLowerCase() === "mm10" ? [ "All cCREs colored by group", +"Aggregated DNase-seq signal, all Registry biosamples"] +:[ + "All cCREs colored by group", + "Aggregated DNase-seq signal, all Registry biosamples", + "Aggregated H3K4me3 ChIP-seq signal, all Registry biosamples", + "Aggregated H3K27ac ChIP-seq signal, all Registry biosamples", + "Aggregated CTCF ChIP-seq signal, all Registry biosamples" + +]}; + +export const tracks = (assembly: string, pos: GenomicRange) => + TRACK_ORDER(assembly).map((x) => ({ + chr1: pos.chromosome!, + start: pos.start, + end: pos.end, + ...DEFAULT_TRACKS(assembly).get(x)!, + preRenderedWidth: 1400, + })); +*/ +export const BIG_QUERY = gql` + query BigRequests($bigRequests: [BigRequest!]!) { + bigRequests(requests: $bigRequests) { + data + error { + errortype + message + } + } + } +`; + +export const COLOR_MAP : Map = + new Map([ + [ + "Aggregated DNase-seq signal, all Registry biosamples", + "#06da93" + + ], + [ + "Aggregated H3K4me3 ChIP-seq signal, all Registry biosamples", + "#ff0000" + + ] + , + [ + "Aggregated H3K27ac ChIP-seq signal, all Registry biosamples", + "#ffcd00" + + ], + [ + "Aggregated CTCF ChIP-seq signal, all Registry biosamples", + "#00b0d0" + + ] + ]); + +type GenomicRange = { + chromosome?: string; + start: number; + end: number; +}; + +export type BigResponseData = + | BigWigData[] + | BigBedData[] + | BigZoomData[] + | ValuedPoint[]; + +export type BigResponse = { + data: BigResponseData; + error: RequestError +}; + +export type BigQueryResponse = { + bigRequests: BigResponse[]; +}; + +type DefaultTracksProps = { + //tracks: BigRequest[]; + domain: GenomicRange; + onHeightChanged?: (i: number) => void; + cCREHighlight?: GenomicRange; + cCREHighlights?: Set; + svgRef?: RefObject; + assembly: string; + oncCREClicked?: (accession: string) => void; + oncCREMousedOver?: (coordinates?: GenomicRange) => void; + oncCREMousedOut?: () => void; + onSettingsClick?: () => void; +}; + +export const TitledTrack: React.FC<{ + data: BigResponseData; + assembly: string; + url: string; + title: string; + color?: string; + height: number; + transform?: string; + onHeightChanged?: (height: number) => void; + domain: GenomicRange; + svgRef?: React.RefObject; + oncCREMousedOver?: (coordinates?: GenomicRange) => void; + oncCREMousedOut?: () => void; + cCRECoordinateMap?: any; + biosample?: string +}> = ({ + data, + assembly, + url, + title, + height, + domain, + transform, + onHeightChanged, + svgRef, + color, + oncCREMousedOver, + oncCREMousedOut, + cCRECoordinateMap, + biosample +}) => { + useEffect( + () => onHeightChanged && onHeightChanged(height + 40), + [height, onHeightChanged] + ); + console.log(color,title) + return ( + + + {(url.endsWith(".bigBed") || url.endsWith(".bigbed")) ? ( + } + onMouseOver={(x) => oncCREMousedOver && x.name && oncCREMousedOver(cCRECoordinateMap.get(x.name))} + onMouseOut={oncCREMousedOut} + /> + ) : ( + + )} + + ); +}; + +const DefaultTracks: React.FC = (props) => { + + const [cTracks, setTracks] = useState<[string, string][]>( props.assembly.toLowerCase()==='mm10' ? [ + [ + "All cCREs colored by group", + "gs://gcp.wenglab.org/mm10-cCREs.bigBed", + + ], + [ + "Aggregated DNase-seq signal, all Registry biosamples", + "gs://gcp.wenglab.org/dnase.mm10.sum.bigWig", + + + ], + ] : [ + [ + "All cCREs colored by group", + "gs://gcp.wenglab.org/GRCh38-cCREs.bigBed", + + ], + [ + "Aggregated DNase-seq signal, all Registry biosamples", + "gs://gcp.wenglab.org/dnase.GRCh38.sum.bigWig", + + ], + [ + "Aggregated H3K4me3 ChIP-seq signal, all Registry biosamples", + "gs://gcp.wenglab.org/h3k4me3.hg38.sum.bigWig", + + ] + , + [ + "Aggregated H3K27ac ChIP-seq signal, all Registry biosamples", + "gs://gcp.wenglab.org/h3k27ac.hg38.sum.bigWig", + + ], + [ + "Aggregated CTCF ChIP-seq signal, all Registry biosamples", + "gs://gcp.wenglab.org/ctcf.hg38.sum.bigWig", + + ] + ]); + const height = useMemo(() => cTracks.length * 80, [cTracks]); + const bigRequests = useMemo( + () => + cTracks.map((x) => ({ + chr1: props.domain.chromosome!, + start: props.domain.start, + end: props.domain.end, + preRenderedWidth: 1400, + url: x[1], + })), + [cTracks, props] + ); + const { data, loading } = useQuery(BIG_QUERY, { + variables: { bigRequests }, + client + }); + const cCRECoordinateMap = useMemo( + () => + associateBy( + (data && data.bigRequests && data.bigRequests[0].data) || [], + (x) => x.name, + (x) => ({ chromosome: x.chr, start: x.start, end: x.end }) + ), + [data] + ) + useEffect(() => { + props.onHeightChanged && props.onHeightChanged(height); + }, [props.onHeightChanged, height, props]); + + const [settingsMousedOver, setSettingsMousedOver] = useState(false); + const [settingsModalShown, setSettingsModalShown] = useState(false); + + return loading || (data?.bigRequests.length || 0) < 2 ? ( + + ) : ( + <> + + + + {(data?.bigRequests || []).map((data, i) => ( + + ))} + + + + {settingsMousedOver && ( + + )} + + setSettingsMousedOver(true)} + onMouseOut={() => setSettingsMousedOver(false)} + strokeWidth={1} + transform="translate(20,0)" + onClick={() => { + props.onSettingsClick && props.onSettingsClick(); + setSettingsModalShown(true); + }} + /> + + Aggregated signal Tracks + + + ); +}; +export default DefaultTracks; diff --git a/screen2.0/src/app/search/gbview/egenetracks.tsx b/screen2.0/src/app/search/gbview/egenetracks.tsx new file mode 100644 index 00000000..1765673c --- /dev/null +++ b/screen2.0/src/app/search/gbview/egenetracks.tsx @@ -0,0 +1,102 @@ + +import React, { useState } from "react"; +import { + EmptyTrack, + PackTranscriptTrack, + SquishTranscriptTrack, +} from "umms-gb"; +import { TranscriptList } from "umms-gb/dist/components/tracks/transcripts/types"; + +export type GenomicRange = { + chromosome?: string; + start: number; + end: number; +}; +export type EGeneTrackProps = { + expandedCoordinates: GenomicRange; + genes: TranscriptList[]; + highlights?: Set; + onSettingsClick?: () => void; + onHeightChanged?: (x: number) => void; + width?: number; + squish?: boolean; +}; + +const EGeneTracks: React.FC = (props) => { + const [settingsMousedOver, setSettingsMousedOver] = useState(false); + const [height, setHeight] = useState(60); + return ( + + + {props.squish ? ( + { + setHeight(x + 40); + props.onHeightChanged && props.onHeightChanged(40 + x); + }} + color="#880000" + /> + ) : ( + { + setHeight(x + 40); + props.onHeightChanged && props.onHeightChanged(40 + x); + }} + color="#880000" + /> + )} + {settingsMousedOver && ( + + )} + + setSettingsMousedOver(true)} + onMouseOut={() => setSettingsMousedOver(false)} + strokeWidth={1} + transform="translate(20,0)" + onClick={props.onSettingsClick} + /> + + Genes + + + ); +}; +export default EGeneTracks; diff --git a/screen2.0/src/app/search/gbview/genomebrowserview.tsx b/screen2.0/src/app/search/gbview/genomebrowserview.tsx new file mode 100644 index 00000000..4e433de7 --- /dev/null +++ b/screen2.0/src/app/search/gbview/genomebrowserview.tsx @@ -0,0 +1,241 @@ +"use client" +import React, { useMemo, useState, useRef, useCallback, useEffect } from "react" +import Grid2 from "../../../common/mui-client-wrappers/Grid2" +import { RulerTrack, GenomeBrowser } from "umms-gb"; +import Controls from "./controls"; +import { gql, useQuery } from "@apollo/client"; +import CytobandView, { GenomicRange } from "./cytobandview" +import EGeneTracks from "./egenetracks"; +import { client } from "../ccredetails/client" +import DefaultTracks from "./defaulttracks"; +import {BiosampleTracks} from "./biosampletracks" +type GenomeBrowserViewProps = { + coordinates : { + start: number, + end: number, + chromosome?: string + }, + biosample?: string + gene?: string + assembly: string +} +const BIOSAMPLE_QUERY = gql` +query biosamples { + human: ccREBiosampleQuery(assembly: "grch38") { + biosamples { + name + dnase: experimentAccession(assay: "DNase") + h3k4me3: experimentAccession(assay: "H3K4me3") + h3k27ac: experimentAccession(assay: "H3K27ac") + ctcf: experimentAccession(assay: "CTCF") + dnase_signal: fileAccession(assay: "DNase") + h3k4me3_signal: fileAccession(assay: "H3K4me3") + h3k27ac_signal: fileAccession(assay: "H3K27ac") + ctcf_signal: fileAccession(assay: "CTCF") + } + } + mouse: ccREBiosampleQuery(assembly: "mm10") { + biosamples { + name + dnase: experimentAccession(assay: "DNase") + h3k4me3: experimentAccession(assay: "H3K4me3") + h3k27ac: experimentAccession(assay: "H3K27ac") + ctcf: experimentAccession(assay: "CTCF") + dnase_signal: fileAccession(assay: "DNase") + h3k4me3_signal: fileAccession(assay: "H3K4me3") + h3k27ac_signal: fileAccession(assay: "H3K27ac") + ctcf_signal: fileAccession(assay: "CTCF") + } + } +} +` +const GENE_QUERY = gql` + query s( + $chromosome: String + $start: Int + $end: Int + $assembly: String! + ) { + + gene( + chromosome: $chromosome + start: $start + end: $end + assembly: $assembly + ) { + name + strand + transcripts { + name + strand + exons { + coordinates { + chromosome + start + end + } + } + coordinates { + chromosome + start + end + } + } + } + } +`; +export type Transcript = { + id: string; + name: string; + strand: string; + coordinates: GenomicRange; +}; +export type SNPQueryResponse = { + gene: { + name: string; + strand: string; + transcripts: Transcript[]; + }[]; +}; +export function expandCoordinates(coordinates, l = 20000) { + return { + chromosome: coordinates.chromosome, + start: coordinates.start - l < 0 ? 0 : coordinates.start - l, + end: coordinates.end + l, + } + } + +export const GenomeBrowserView: React.FC = (props) =>{ + console.log(props.gene) + const svgRef = useRef(null); + const expandedCoordinates = useMemo(() => expandCoordinates(props.coordinates), [props.coordinates]) + const [coordinates, setCoordinates] = useState(expandedCoordinates); + const [highlight, setHighlight] = useState(null) + const [cTracks, setTracks] = useState<[string, string, string][]| null>(null) + const snpResponse = useQuery(GENE_QUERY, { + variables: { ...coordinates, assembly:props.assembly }, + fetchPolicy: "cache-and-network", + nextFetchPolicy: "cache-first", + client, + }); + + const groupedTranscripts = useMemo( + () => + snpResponse.data?.gene.map((x) => ({ + ...x, + transcripts: x.transcripts.map((xx) => ({ + ...xx, + color: props.gene ? (x).name.includes(props.gene) ? "#880000" : "#aaaaaa" : "#aaaaaa" + })), + })), + [snpResponse,props.gene] + ); + const onDomainChanged = useCallback( + (d: GenomicRange) => { + const chr = + d.chromosome === undefined + ? props.coordinates.chromosome + : d.chromosome; + const start = Math.round(d.start); + const end = Math.round(d.end); + if (end - start > 10) { + setCoordinates({ chromosome: chr, start, end }); + } + }, + [props.coordinates] + ); + const l = useCallback((c) => ((c - coordinates.start) * 1400) / (coordinates.end - coordinates.start), [coordinates]) + + const { loading: bloading, data : bdata } = useQuery(BIOSAMPLE_QUERY, { + fetchPolicy: "cache-and-network", + nextFetchPolicy: "cache-first", + client, + }); + useEffect(()=>{ + if(bdata && props.biosample) + { + const humanBiosamples = bdata && bdata.human && bdata.human.biosamples + const mouseBiosamples = bdata && bdata.mouse && bdata.mouse.biosamples + + const result = props.assembly==="mm10" ? mouseBiosamples.find(m=>m.name===props.biosample) : humanBiosamples.find(m=>m.name===props.biosample) + const r = [result.dnase_signal, result.h3k4me3_signal, result.h3k27ac_signal, result.ctcf_signal].filter((x) => !!x) + //copy v4 bed files to google bucket + const bigBedUrl = `https://downloads.wenglab.org/Registry-V4/${r.join("_")}.bigBed` + let tracks:[string, string, string][] = [[`cCREs colored by activity in ${props.biosample}`,bigBedUrl ,""]] + if(result.dnase_signal) tracks.push([`DNase-seq signal in ${props.biosample}`,`https://www.encodeproject.org/files/${result.dnase_signal}/@@download/${result.dnase_signal}.bigWig`,"DNase"]) + if(result.h3k4me3_signal) tracks.push([`H3K4me3 ChIP-seq signal in ${props.biosample}`,`https://www.encodeproject.org/files/${result.h3k4me3_signal}/@@download/${result.h3k4me3_signal}.bigWig`,"H3K4me3"]) + if(result.h3k27ac_signal) tracks.push([`H3K27ac ChIP-seq signal in ${props.biosample}`,`https://www.encodeproject.org/files/${result.h3k27ac_signal}/@@download/${result.h3k27ac_signal}.bigWig`,"H3K27ac"]) + if(result.ctcf_signal) tracks.push([`CTCF ChIP-seq signal in ${props.biosample}`,`https://www.encodeproject.org/files/${result.ctcf_signal}/@@download/${result.ctcf_signal}.bigWig`,"CTCF"]) + setTracks(tracks) + + } + + },[bdata,props.biosample]) + return(<> + +
+ +
+
+ +
+
+
+ { + if (Math.ceil(x.end) - Math.floor(x.start) > 10) { + setCoordinates({ + chromosome: coordinates.chromosome, + start: Math.floor(x.start), + end: Math.ceil(x.end), + }); + } + }} + > + {highlight && ( + + )} + + = 500000 ? true: false } + /> + + x && setHighlight(x)} + oncCREMousedOut={() => setHighlight(null)} + /> + {props.biosample && props.assembly!="mm10" && cTracks && x && setHighlight(x)} + oncCREMousedOut={() => setHighlight(null)} + />} + + +
+
) +} \ No newline at end of file diff --git a/screen2.0/src/app/search/gbview/shiftbutton.tsx b/screen2.0/src/app/search/gbview/shiftbutton.tsx new file mode 100644 index 00000000..dc20d4b6 --- /dev/null +++ b/screen2.0/src/app/search/gbview/shiftbutton.tsx @@ -0,0 +1,29 @@ +import React from 'react'; +import { + Button + } from "@mui/material" +export interface Domain { + chromosome?: string; + start: number; + end: number; +}; + +export type ShiftButtonProps = { + text: string; + shift: number; + domain: Domain; + onClick: (domain: Domain) => void; +}; + +const ShiftButton= ({ text, shift, domain, onClick }) => { + return ( + <> + + + +)}; +export default ShiftButton; \ No newline at end of file diff --git a/screen2.0/src/app/search/gbview/tfmotiftrack.tsx b/screen2.0/src/app/search/gbview/tfmotiftrack.tsx new file mode 100644 index 00000000..48608674 --- /dev/null +++ b/screen2.0/src/app/search/gbview/tfmotiftrack.tsx @@ -0,0 +1,92 @@ +import React, { useState, useRef } from "react"; +import { + EmptyTrack, + SquishBigBed +} from "umms-gb"; +import { DNALogo, Y } from "logots-react" +import {MOTIFS} from "./allmotifs" +import { Typography } from "@mui/material"; +export type GenomicRange = { + chromosome?: string; + start: number; + end: number; +}; + +const MotifTooltip = (props) => { + const rc = (x) => [...x].map((xx) => [...xx].reverse()).reverse() + return ( +
+ {props.rectname.split("$")[2]} + +
+ ) + } +export const TfMotifTrack = (props) => { + + const [height, setHeight] = useState(60); + const [settingsMousedOver, setSettingsMousedOver] = useState(false); + + return( + + { + setHeight(x + 40); + props.onHeightChanged && props.onHeightChanged(40 + x); + }} + data={props.data} + transform="translate(0,40)" + tooltipContent={(rect: any) => { console.log(rect,":recg"); return }} + onClick={(x: any) => { + //return window.open(`${x}`) + return window.open(`https://factorbook.org/tf/${props.assembly==="GRCh38" ? "human" : "mouse"}/${x.rectname.split("$")[2]}/motif`, "_blank") + } + } + /> + {settingsMousedOver && ( + + )} + + setSettingsMousedOver(true)} + onMouseOut={() => setSettingsMousedOver(false)} + strokeWidth={1} + transform="translate(20,0)" + onClick={props.onSettingsClick} + /> + + TF Binding sites + + ) +} \ No newline at end of file diff --git a/screen2.0/src/app/search/gbview/zoombutton.tsx b/screen2.0/src/app/search/gbview/zoombutton.tsx new file mode 100644 index 00000000..fc0fb7f8 --- /dev/null +++ b/screen2.0/src/app/search/gbview/zoombutton.tsx @@ -0,0 +1,34 @@ +import React from 'react'; +import { + Button + } from "@mui/material" +export interface Domain { + chromosome?: string; + start: number; + end: number; +}; +export type ZoomButtonProps = { + text: string; + factor: number; + domain: Domain; + onClick: (domain: Domain) => void; +}; + +const ZoomButton = ({ text, factor, domain, onClick }) => ( + +); +export default ZoomButton; \ No newline at end of file diff --git a/screen2.0/src/app/search/page.tsx b/screen2.0/src/app/search/page.tsx index b86d6171..2ccab157 100644 --- a/screen2.0/src/app/search/page.tsx +++ b/screen2.0/src/app/search/page.tsx @@ -14,6 +14,7 @@ export default async function Search({ //Get search parameters and define defaults. const mainQueryParams: MainQueryParams = { assembly: searchParams.assembly === "GRCh38" || searchParams.assembly === "mm10" ? searchParams.assembly : "GRCh38", + gene: searchParams.gene, chromosome: searchParams.chromosome ? searchParams.chromosome : "chr11", start: searchParams.start ? Number(searchParams.start) : 5205263, end: searchParams.end ? Number(searchParams.end) : 5381894, diff --git a/screen2.0/src/app/search/types.ts b/screen2.0/src/app/search/types.ts index 1847955f..4f544623 100644 --- a/screen2.0/src/app/search/types.ts +++ b/screen2.0/src/app/search/types.ts @@ -37,6 +37,7 @@ export type MainQueryParams = { chromosome: string start: number end: number + gene?: string CellLine?: boolean PrimaryCell?: boolean Tissue?: boolean diff --git a/screen2.0/src/common/components/CcreAutocomplete.tsx b/screen2.0/src/common/components/CcreAutocomplete.tsx new file mode 100644 index 00000000..1898694c --- /dev/null +++ b/screen2.0/src/common/components/CcreAutocomplete.tsx @@ -0,0 +1,138 @@ +"use client" +import * as React from "react"; +import Box from "@mui/material/Box"; +import TextField from "@mui/material/TextField"; +import Autocomplete from "@mui/material/Autocomplete"; +import Grid from "@mui/material/Grid"; +import Typography from "@mui/material/Typography"; +import { debounce } from "@mui/material/utils"; +import { Button } from "@weng-lab/psychscreen-ui-components"; +import { useRouter } from "next/navigation" + + ///search?assembly=GRCh38&chromosome=chr11&start=5205263&end=5381894&accession=EH38E1516972 + +const CCRE_AUTOCOMPLETE_QUERY = ` +query cCREQuery($accession_prefix: [String!], $limit: Int, $assembly: String!) { + cCREQuery(accession_prefix: $accession_prefix, assembly: $assembly, limit: $limit) { + accession + coordinates { + start + end + chromosome + } + } +} +`; +export const CcreAutoComplete = (props) => { + const [value, setValue] = React.useState(null); + const [inputValue, setInputValue] = React.useState(""); + const [options, setOptions] = React.useState([]); + const [ccreAccessions, setCcreAccessions] = React.useState([]); + + const router = useRouter() + const onSearchChange = async (value: any) => { + setOptions([]); + const response = await fetch("https://factorbook.api.wenglab.org/graphql", { + method: "POST", + body: JSON.stringify({ + query: CCRE_AUTOCOMPLETE_QUERY, + variables: { + assembly: props.assembly, + accession_prefix: [value], + limit: 100 + }, + }), + headers: { "Content-Type": "application/json" }, + }); + const ccreSuggestion = (await response.json()).data?.cCREQuery; + if (ccreSuggestion && ccreSuggestion.length > 0) { + const r = ccreSuggestion.map((g: any) => g.accession); + const ccres = ccreSuggestion.map((g: any) => { + return { + chrom: g.coordinates.chromosome, + start: g.coordinates.start, + end: g.coordinates.end, + ccreaccession: g.accession, + }; + }); + setOptions(r); + setCcreAccessions(ccres); + } else if (ccreSuggestion && ccreSuggestion.length === 0) { + setOptions([]); + setCcreAccessions([]); + } + }; + + const debounceFn = React.useCallback(debounce(onSearchChange, 500), []); + + return ( + + + { + if (event.key === "Enter") { + event.defaultPrevented = true; + + if (value) { + let chrom = ccreAccessions.find((g) => g.ccreaccession === value)?.chrom + let start = ccreAccessions.find((g) => g.ccreaccession === value)?.start + let end = ccreAccessions.find((g) => g.ccreaccession === value)?.end + router.push(`search?assembly=${props.assembly}&chromosome=${chrom}&start=${start}&end=${end}&accession=${value}`) + + } + } + }} + value={value} + onChange={(_: any, newValue: string | null) => { + setValue(newValue); + }} + + inputValue={inputValue} + onInputChange={(event, newInputValue) => { + if (newInputValue != "") { + debounceFn(newInputValue); + } + + setInputValue(newInputValue); + }} + noOptionsText="e.g. EH38E0001314" + renderInput={(params) => ( + + )} + renderOption={(props, option) => { + return ( +
  • + + + + {option} + + {ccreAccessions && ccreAccessions.find((g) => g.ccreaccession === option) && ( + + {`${ccreAccessions.find((g) => g.ccreaccession === option)?.chrom}:${ + ccreAccessions.find((g) => g.ccreaccession === option)?.start + }:${ccreAccessions.find((g) => g.ccreaccession === option)?.end}`} + + )} + + +
  • + ); + }} + /> +
    + +
    + ); +}; diff --git a/screen2.0/src/common/components/CelltypeAutocomplete.tsx b/screen2.0/src/common/components/CelltypeAutocomplete.tsx new file mode 100644 index 00000000..f94bdda8 --- /dev/null +++ b/screen2.0/src/common/components/CelltypeAutocomplete.tsx @@ -0,0 +1,117 @@ +import React, { useMemo, useState, useRef, useCallback, useEffect } from "react"; +import Box from "@mui/material/Box"; +import TextField from "@mui/material/TextField"; +import Autocomplete from "@mui/material/Autocomplete"; +import Grid from "@mui/material/Grid"; +import Typography from "@mui/material/Typography"; +import { debounce } from "@mui/material/utils"; +import { useRouter } from "next/navigation" +import { gql, useQuery } from "@apollo/client"; + +export const CelltypeAutocomplete = (props) => { + const [value, setValue] = useState(null); + const [inputValue, setInputValue] = useState(""); + const [options, setOptions] = useState([]); + const [cellTypes, setCelltypes] = useState([]); + const [loading, setLoading] = useState(false) + const router = useRouter() + + useEffect(() => { + fetch("https://downloads.wenglab.org/databyct.json") + .then((response) => { + + return response.json() + }) + .then((data) => { + //setCellTypes(data) + let byCt = Object.keys(data.byCellType).map(ct=>{ + return { + value: ct, + tissue: data.byCellType[ct][0].tissue, + biosample_summary: data.byCellType[ct][0].biosample_summary+":chr11:5205263-5381894", + } + }) + setOptions(byCt.map(ct=>ct.biosample_summary)) + setCelltypes(byCt) + setLoading(false) + }) + .catch((error: Error) => { + // logging + // throw error + }) + setLoading(true) + }, [props.assembly]) + + + + return ( + + + { + if (event.key === "Enter") { + event.defaultPrevented = true; + + if (value) { + + let tissue = cellTypes.find((g) => g.biosample_summary === value)?.tissue + let biosample = cellTypes.find((g) => g.biosample_summary === value)?.value + let biosample_summary = value.split(":")[0] + let chromosome = value.split(":")[1] + let start = value.split(":")[2].split("-")[0] + let end = value.split(":")[2].split("-")[1] + router.push(`search?assembly=${props.assembly}&chromosome=${chromosome}&start=${Math.max(0,start)}&end=${end}&BiosampleTissue=${tissue}&BiosampleSummary=${biosample_summary}&Biosample=${biosample}`) + } + } + }} + value={value} + onChange={(_: any, newValue: string | null) => { + setValue(newValue); + }} + inputValue={inputValue} + onInputChange={(event, newInputValue) => { + if (newInputValue != "") { + //debounceFn(newInputValue); + } + + setInputValue(newInputValue); + }} + noOptionsText="e.g. LNCAP" + renderInput={(params) => ( + + )} + renderOption={(props, option) => { + return ( +
  • + + + + {option} + + {cellTypes && cellTypes.find((g) => g.biosample_summary === option) && ( + + {`${cellTypes.find((g) => g.biosample_summary === option)?.tissue}`} + + )} + + +
  • + ); + }} + /> +
    + +
    + ); +}; diff --git a/screen2.0/src/common/components/GeneAutocomplete.tsx b/screen2.0/src/common/components/GeneAutocomplete.tsx new file mode 100644 index 00000000..91a22f00 --- /dev/null +++ b/screen2.0/src/common/components/GeneAutocomplete.tsx @@ -0,0 +1,198 @@ +import * as React from "react"; +import Box from "@mui/material/Box"; +import TextField from "@mui/material/TextField"; +import Autocomplete from "@mui/material/Autocomplete"; +import Grid from "@mui/material/Grid"; +import Typography from "@mui/material/Typography"; +import { debounce } from "@mui/material/utils"; +import { useRouter } from "next/navigation" + +export type QueryResponse = [ + number, + string[], + any, + [string, string, string, string, string, string][], + string[] + ]; + +const GENE_AUTOCOMPLETE_QUERY = ` +query ($assembly: String!, $name_prefix: [String!], $limit: Int) { + gene(assembly: $assembly, name_prefix: $name_prefix, limit: $limit) { + name + id + coordinates { + start + chromosome + end + } + } + } + `; + +export const GeneAutoComplete = (props) => { + const [value, setValue] = React.useState(null); + const [inputValue, setInputValue] = React.useState(""); + const [options, setOptions] = React.useState([]); + const [geneids, setGeneIds] = React.useState< + { chrom: string; start: number; end: number; id: string; name: string }[] + >([]); + + const router = useRouter() + const [geneDesc, setgeneDesc] = + React.useState<{ name: string; desc: string }[]>(); + + React.useEffect(() => { + const fetchData = async () => { + let f = await Promise.all( + options.map((gene) => + fetch( + "https://clinicaltables.nlm.nih.gov/api/ncbi_genes/v3/search?authenticity_token=&terms=" + + gene.toUpperCase() + ) + .then((x) => x && x.json()) + .then((x) => { + const matches = + (x as QueryResponse)[3] && + (x as QueryResponse)[3].filter( + (x) => x[3] === gene.toUpperCase() + ); + return { + desc: + matches && matches.length >= 1 + ? matches[0][4] + : "(no description available)", + name: gene, + }; + }) + .catch(() => { + return { desc: "(no description available)", name: gene }; + }) + ) + ); + setgeneDesc(f); + }; + + options && fetchData(); + }, [options]); + + const onSearchChange = async (value: string) => { + setOptions([]); + const response = await fetch("https://ga.staging.wenglab.org/graphql", { + method: "POST", + body: JSON.stringify({ + query: GENE_AUTOCOMPLETE_QUERY, + variables: { + assembly: "GRCh38", + name_prefix: value, + limit: 1000, + }, + }), + headers: { "Content-Type": "application/json" }, + }); + const genesSuggestion = (await response.json()).data?.gene; + if (genesSuggestion && genesSuggestion.length > 0) { + const r = genesSuggestion.map((g) => g.name); + const g = genesSuggestion.map((g) => { + return { + chrom: g.coordinates.chromosome, + start: g.coordinates.start, + end: g.coordinates.end, + id: g.id, + name: g.name, + }; + }); + setOptions(r); + setGeneIds(g); + } else if (genesSuggestion && genesSuggestion.length === 0) { + setOptions([]); + setGeneIds([]); + } + }; + + const debounceFn = React.useCallback(debounce(onSearchChange, 500), []); + const gridsize = props.gridsize || 5.5; + return ( + + {props.showTitle && ( + + Search gene: +
    +
    + )} + + { + if (event.key === "Enter") { + event.defaultPrevented = true; + console.log("value",value) + value && + props.onSelected && + props.onSelected({ + geneid: geneids + .find((g) => g.name === value) + ?.id.split(".")[0], + chromosome: geneids.find((g) => g.name === value)?.chrom, + start: geneids.find((g) => g.name === value)?.start, + end: geneids.find((g) => g.name === value)?.end, + }); + if (value) + { + let chrom = geneids.find((g) => g.name === value)?.chrom + let start = geneids.find((g) => g.name === value)?.start + let end = geneids.find((g) => g.name === value)?.end + router.push(`search?assembly=${props.assembly}&chromosome=${chrom}&start=${start}&end=${end}&gene=${value}`) + + } + + } + }} + value={value} + onChange={(_: any, newValue: string | null) => { + setValue(newValue); + }} + inputValue={inputValue} + onInputChange={(event, newInputValue) => { + if (newInputValue != "") { + debounceFn(newInputValue); + } + + setInputValue(newInputValue); + }} + noOptionsText="e.g sox4,gapdh" + renderInput={(params) => ( + + )} + renderOption={(props, option) => { + return ( +
  • + + + + {option} + + {geneDesc && geneDesc.find((g) => g.name === option) && ( + + {geneDesc.find((g) => g.name === option)?.desc} + + )} + + +
  • + ); + }} + /> +
    +
    + ); +}; diff --git a/screen2.0/src/common/components/MainSearch.tsx b/screen2.0/src/common/components/MainSearch.tsx index fccf80a4..89b8c0c9 100644 --- a/screen2.0/src/common/components/MainSearch.tsx +++ b/screen2.0/src/common/components/MainSearch.tsx @@ -1,23 +1,31 @@ "use client" -import * as React from "react" - +import React, {useState} from "react" +import Grid from "@mui/material/Grid"; import { InputBase, Switch, Stack, Typography, TextField, FormHelperText, IconButton, InputAdornment, InputBaseProps } from "@mui/material" - import SearchIcon from "@mui/icons-material/Search" - import GenomeSwitch from "./GenomeSwitch" - import { useRouter } from "next/navigation" - +import MenuItem from "@mui/material/MenuItem"; +import FormControl from "@mui/material/FormControl"; +import Select, { SelectChangeEvent } from "@mui/material/Select"; +import { CcreAutoComplete } from "./CcreAutocomplete"; +import { GeneAutoComplete } from "./GeneAutocomplete"; +import { SnpAutoComplete} from "./SnpAutocomplete"; +import { CelltypeAutocomplete } from "./CelltypeAutocomplete" export type MainSearchProps = InputBaseProps & { //false for human, true for mouse initialChecked?: boolean } const MainSearch: React.FC = (props: MainSearchProps) => { - const [value, setValue] = React.useState("") - const [checked, setChecked] = React.useState(props.initialChecked || false) - + const [value, setValue] = useState("") + const [checked, setChecked] = useState(props.initialChecked || false) + const [selectedSearch, setSelectedSearch] = useState("Genomic Region"); + const assembly = checked ? "mm10" : "GRCh38" + const handleSearchChange = (event: SelectChangeEvent) => { + + setSelectedSearch(event.target.value); + }; const router = useRouter() const handleChange = (event: { target: { value: React.SetStateAction } }) => { @@ -41,12 +49,30 @@ const MainSearch: React.FC = (props: MainSearchProps) => { return ( - + + + + + + + {selectedSearch==="Genomic Region" ? = (props: MainSearchProps) => { ), }} - sx={{ mr: "1em" }} - /> + sx={{ mr: "1em", ml:"1em" }} + /> : selectedSearch==="Gene Name" ? : selectedSearch==="SNP rsID" ? : selectedSearch==="Cell Type"? : } + + setChecked(checked)} /> + +
    ) } diff --git a/screen2.0/src/common/components/SnpAutocomplete.tsx b/screen2.0/src/common/components/SnpAutocomplete.tsx new file mode 100644 index 00000000..bbb47ded --- /dev/null +++ b/screen2.0/src/common/components/SnpAutocomplete.tsx @@ -0,0 +1,133 @@ +import * as React from "react"; +import Box from "@mui/material/Box"; +import TextField from "@mui/material/TextField"; +import Autocomplete from "@mui/material/Autocomplete"; +import Grid from "@mui/material/Grid"; +import Typography from "@mui/material/Typography"; +import { debounce } from "@mui/material/utils"; +import { useRouter } from "next/navigation" + +const SNP_AUTOCOMPLETE_QUERY = ` +query snpAutocompleteQuery($snpid: String!, $assembly: String!) { + snpAutocompleteQuery(snpid: $snpid, assembly: $assembly) { + id + coordinates { + chromosome + start + end + } + } +} +`; +export const SnpAutoComplete = (props) => { + const [value, setValue] = React.useState(null); + const [inputValue, setInputValue] = React.useState(""); + const [options, setOptions] = React.useState([]); + const [snpids, setSnpIds] = React.useState([]); + const router = useRouter() + + const onSearchChange = async (value: any) => { + setOptions([]); + const response = await fetch("https://ga.staging.wenglab.org/graphql", { + method: "POST", + body: JSON.stringify({ + query: SNP_AUTOCOMPLETE_QUERY, + variables: { + assembly: "grch38", + snpid: value, + }, + }), + headers: { "Content-Type": "application/json" }, + }); + const snpSuggestion = (await response.json()).data?.snpAutocompleteQuery; + if (snpSuggestion && snpSuggestion.length > 0) { + const r = snpSuggestion.map((g: any) => g.id); + const snp = snpSuggestion.map((g: any) => { + return { + chrom: g.coordinates.chromosome, + start: g.coordinates.start, + end: g.coordinates.end, + id: g.id, + }; + }); + setOptions(r); + setSnpIds(snp); + } else if (snpSuggestion && snpSuggestion.length === 0) { + setOptions([]); + setSnpIds([]); + } + //setgeneCards([]); + }; + + const debounceFn = React.useCallback(debounce(onSearchChange, 500), []); + + return ( + + + { + if (event.key === "Enter") { + event.defaultPrevented = true; + + if (value) { + + let chromosome = snpids.find((g) => g.id === value)?.chrom + let start= snpids.find((g) => g.id === value)?.start - 2000 + let end= snpids.find((g) => g.id === value)?.end + 2000 + router.push(`search?assembly=${props.assembly}&chromosome=${chromosome}&start=${Math.max(0,start)}&end=${end}&snpid=${value}`) + } + } + }} + value={value} + onChange={(_: any, newValue: string | null) => { + setValue(newValue); + }} + inputValue={inputValue} + onInputChange={(event, newInputValue) => { + if (newInputValue != "") { + debounceFn(newInputValue); + } + + setInputValue(newInputValue); + }} + noOptionsText="e.g. rs11669173" + renderInput={(params) => ( + + )} + renderOption={(props, option) => { + return ( +
  • + + + + {option} + + {snpids && snpids.find((g) => g.id === option) && ( + + {`${snpids.find((g) => g.id === option)?.chrom}:${ + snpids.find((g) => g.id === option)?.start + }:${snpids.find((g) => g.id === option)?.end}`} + + )} + + +
  • + ); + }} + /> +
    + +
    + ); +}; diff --git a/screen2.0/yarn.lock b/screen2.0/yarn.lock index d0cafcae..867784be 100644 --- a/screen2.0/yarn.lock +++ b/screen2.0/yarn.lock @@ -1,8008 +1,5330 @@ -# This file is generated by running "yarn install" inside your project. -# Manual changes might be lost - proceed with caution! - -__metadata: - version: 6 - cacheKey: 8 - -"@aashutoshrathi/word-wrap@npm:^1.2.3": - version: 1.2.6 - resolution: "@aashutoshrathi/word-wrap@npm:1.2.6" - checksum: ada901b9e7c680d190f1d012c84217ce0063d8f5c5a7725bb91ec3c5ed99bb7572680eb2d2938a531ccbaec39a95422fcd8a6b4a13110c7d98dd75402f66a0cd - languageName: node - linkType: hard - -"@alloc/quick-lru@npm:^5.2.0": - version: 5.2.0 - resolution: "@alloc/quick-lru@npm:5.2.0" - checksum: bdc35758b552bcf045733ac047fb7f9a07c4678b944c641adfbd41f798b4b91fffd0fdc0df2578d9b0afc7b4d636aa6e110ead5d6281a2adc1ab90efd7f057f8 - languageName: node - linkType: hard +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@aashutoshrathi/word-wrap@^1.2.3": + version "1.2.6" + resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" + integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== + +"@alloc/quick-lru@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz#7bf68b20c0a350f936915fcae06f58e32007ce30" + integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== "@apollo/client@alpha": - version: 3.8.0-alpha.15 - resolution: "@apollo/client@npm:3.8.0-alpha.15" - dependencies: - "@graphql-typed-document-node/core": ^3.1.1 - "@wry/context": ^0.7.3 - "@wry/equality": ^0.5.6 - "@wry/trie": ^0.4.3 - graphql-tag: ^2.12.6 - hoist-non-react-statics: ^3.3.2 - optimism: ^0.17.4 - prop-types: ^15.7.2 - response-iterator: ^0.2.6 - symbol-observable: ^4.0.0 - ts-invariant: ^0.10.3 - tslib: ^2.3.0 - zen-observable-ts: ^1.2.5 - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 - graphql-ws: ^5.5.5 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - subscriptions-transport-ws: ^0.9.0 || ^0.11.0 - peerDependenciesMeta: - graphql-ws: - optional: true - react: - optional: true - react-dom: - optional: true - subscriptions-transport-ws: - optional: true - checksum: 568b9284c42e50dd4b88625f8549258f4036306e12b1c691f5d2d1f5a4323fbd78432c8daf0a50c51d6bf380feb0b4d8c665508234bdb6fed3e6c5284c4a3833 - languageName: node - linkType: hard - -"@apollo/experimental-nextjs-app-support@npm:^0.3.1": - version: 0.3.4 - resolution: "@apollo/experimental-nextjs-app-support@npm:0.3.4" - dependencies: - superjson: ^1.12.2 - ts-invariant: ^0.10.3 - peerDependencies: - "@apollo/client": ">=3.8.0-beta.4 || >=3.8.0-rc || ^3.8.0" - next: ^13.4.1 - react: ^18 - checksum: 878198ac71da5aa184194040d6de64f014b70df01970bc84c3b9676024e819b04b537d1a2fec0e19688629e8d2aee6991c02cf1bf5f53b57d4558fb47fd058b4 - languageName: node - linkType: hard - -"@babel/code-frame@npm:^7.0.0": - version: 7.22.5 - resolution: "@babel/code-frame@npm:7.22.5" - dependencies: - "@babel/highlight": ^7.22.5 - checksum: cfe804f518f53faaf9a1d3e0f9f74127ab9a004912c3a16fda07fb6a633393ecb9918a053cb71804204c1b7ec3d49e1699604715e2cfb0c9f7bc4933d324ebb6 - languageName: node - linkType: hard - -"@babel/helper-module-imports@npm:^7.16.7": - version: 7.22.5 - resolution: "@babel/helper-module-imports@npm:7.22.5" - dependencies: - "@babel/types": ^7.22.5 - checksum: 9ac2b0404fa38b80bdf2653fbeaf8e8a43ccb41bd505f9741d820ed95d3c4e037c62a1bcdcb6c9527d7798d2e595924c4d025daed73283badc180ada2c9c49ad - languageName: node - linkType: hard - -"@babel/helper-string-parser@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-string-parser@npm:7.22.5" - checksum: 836851ca5ec813077bbb303acc992d75a360267aa3b5de7134d220411c852a6f17de7c0d0b8c8dcc0f567f67874c00f4528672b2a4f1bc978a3ada64c8c78467 - languageName: node - linkType: hard - -"@babel/helper-validator-identifier@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-validator-identifier@npm:7.22.5" - checksum: 7f0f30113474a28298c12161763b49de5018732290ca4de13cdaefd4fd0d635a6fe3f6686c37a02905fb1e64f21a5ee2b55140cf7b070e729f1bd66866506aea - languageName: node - linkType: hard - -"@babel/highlight@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/highlight@npm:7.22.5" - dependencies: - "@babel/helper-validator-identifier": ^7.22.5 - chalk: ^2.0.0 - js-tokens: ^4.0.0 - checksum: f61ae6de6ee0ea8d9b5bcf2a532faec5ab0a1dc0f7c640e5047fc61630a0edb88b18d8c92eb06566d30da7a27db841aca11820ecd3ebe9ce514c9350fbed39c4 - languageName: node - linkType: hard - -"@babel/parser@npm:^7.6.0, @babel/parser@npm:^7.9.6": - version: 7.22.7 - resolution: "@babel/parser@npm:7.22.7" - bin: - parser: ./bin/babel-parser.js - checksum: 02209ddbd445831ee8bf966fdf7c29d189ed4b14343a68eb2479d940e7e3846340d7cc6bd654a5f3d87d19dc84f49f50a58cf9363bee249dc5409ff3ba3dab54 - languageName: node - linkType: hard - -"@babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.20.7, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.22.5, @babel/runtime@npm:^7.22.6, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.8.7": - version: 7.22.6 - resolution: "@babel/runtime@npm:7.22.6" - dependencies: - regenerator-runtime: ^0.13.11 - checksum: e585338287c4514a713babf4fdb8fc2a67adcebab3e7723a739fc62c79cfda875b314c90fd25f827afb150d781af97bc16c85bfdbfa2889f06053879a1ddb597 - languageName: node - linkType: hard - -"@babel/types@npm:^7.22.5, @babel/types@npm:^7.6.1, @babel/types@npm:^7.8.3, @babel/types@npm:^7.9.6": - version: 7.22.5 - resolution: "@babel/types@npm:7.22.5" - dependencies: - "@babel/helper-string-parser": ^7.22.5 - "@babel/helper-validator-identifier": ^7.22.5 - to-fast-properties: ^2.0.0 - checksum: c13a9c1dc7d2d1a241a2f8363540cb9af1d66e978e8984b400a20c4f38ba38ca29f06e26a0f2d49a70bad9e57615dac09c35accfddf1bb90d23cd3e0a0bab892 - languageName: node - linkType: hard - -"@discoveryjs/json-ext@npm:^0.5.0": - version: 0.5.7 - resolution: "@discoveryjs/json-ext@npm:0.5.7" - checksum: 2176d301cc258ea5c2324402997cf8134ebb212469c0d397591636cea8d3c02f2b3cf9fd58dcb748c7a0dade77ebdc1b10284fa63e608c033a1db52fddc69918 - languageName: node - linkType: hard - -"@emotion/babel-plugin@npm:^11.11.0": - version: 11.11.0 - resolution: "@emotion/babel-plugin@npm:11.11.0" - dependencies: - "@babel/helper-module-imports": ^7.16.7 - "@babel/runtime": ^7.18.3 - "@emotion/hash": ^0.9.1 - "@emotion/memoize": ^0.8.1 - "@emotion/serialize": ^1.1.2 - babel-plugin-macros: ^3.1.0 - convert-source-map: ^1.5.0 - escape-string-regexp: ^4.0.0 - find-root: ^1.1.0 - source-map: ^0.5.7 - stylis: 4.2.0 - checksum: 6b363edccc10290f7a23242c06f88e451b5feb2ab94152b18bb8883033db5934fb0e421e2d67d09907c13837c21218a3ac28c51707778a54d6cd3706c0c2f3f9 - languageName: node - linkType: hard - -"@emotion/cache@npm:^11.11.0": - version: 11.11.0 - resolution: "@emotion/cache@npm:11.11.0" - dependencies: - "@emotion/memoize": ^0.8.1 - "@emotion/sheet": ^1.2.2 - "@emotion/utils": ^1.2.1 - "@emotion/weak-memoize": ^0.3.1 - stylis: 4.2.0 - checksum: 8eb1dc22beaa20c21a2e04c284d5a2630a018a9d51fb190e52de348c8d27f4e8ca4bbab003d68b4f6cd9cc1c569ca747a997797e0f76d6c734a660dc29decf08 - languageName: node - linkType: hard - -"@emotion/hash@npm:^0.9.1": - version: 0.9.1 - resolution: "@emotion/hash@npm:0.9.1" - checksum: 716e17e48bf9047bf9383982c071de49f2615310fb4e986738931776f5a823bc1f29c84501abe0d3df91a3803c80122d24e28b57351bca9e01356ebb33d89876 - languageName: node - linkType: hard - -"@emotion/is-prop-valid@npm:^1.2.1": - version: 1.2.1 - resolution: "@emotion/is-prop-valid@npm:1.2.1" - dependencies: - "@emotion/memoize": ^0.8.1 - checksum: 8f42dc573a3fad79b021479becb639b8fe3b60bdd1081a775d32388bca418ee53074c7602a4c845c5f75fa6831eb1cbdc4d208cc0299f57014ed3a02abcad16a - languageName: node - linkType: hard - -"@emotion/memoize@npm:^0.8.1": - version: 0.8.1 - resolution: "@emotion/memoize@npm:0.8.1" - checksum: a19cc01a29fcc97514948eaab4dc34d8272e934466ed87c07f157887406bc318000c69ae6f813a9001c6a225364df04249842a50e692ef7a9873335fbcc141b0 - languageName: node - linkType: hard - -"@emotion/react@npm:^11.10.5, @emotion/react@npm:^11.11.1": - version: 11.11.1 - resolution: "@emotion/react@npm:11.11.1" - dependencies: - "@babel/runtime": ^7.18.3 - "@emotion/babel-plugin": ^11.11.0 - "@emotion/cache": ^11.11.0 - "@emotion/serialize": ^1.1.2 - "@emotion/use-insertion-effect-with-fallbacks": ^1.0.1 - "@emotion/utils": ^1.2.1 - "@emotion/weak-memoize": ^0.3.1 - hoist-non-react-statics: ^3.3.1 - peerDependencies: - react: ">=16.8.0" - peerDependenciesMeta: - "@types/react": - optional: true - checksum: aec3c36650f5f0d3d4445ff44d73dd88712b1609645b6af3e6d08049cfbc51f1785fe13dea1a1d4ab1b0800d68f2339ab11e459687180362b1ef98863155aae5 - languageName: node - linkType: hard - -"@emotion/serialize@npm:^1.1.2": - version: 1.1.2 - resolution: "@emotion/serialize@npm:1.1.2" - dependencies: - "@emotion/hash": ^0.9.1 - "@emotion/memoize": ^0.8.1 - "@emotion/unitless": ^0.8.1 - "@emotion/utils": ^1.2.1 - csstype: ^3.0.2 - checksum: 413c352e657f1b5e27ea6437b3ef7dcc3860669b7ae17fd5c18bfbd44e033af1acc56b64d252284a813ca4f3b3e1b0841c42d3fb08e02d2df56fd3cd63d72986 - languageName: node - linkType: hard - -"@emotion/sheet@npm:^1.2.2": - version: 1.2.2 - resolution: "@emotion/sheet@npm:1.2.2" - checksum: d973273c9c15f1c291ca2269728bf044bd3e92a67bca87943fa9ec6c3cd2b034f9a6bfe95ef1b5d983351d128c75b547b43ff196a00a3875f7e1d269793cecfe - languageName: node - linkType: hard - -"@emotion/styled@npm:^11.10.5, @emotion/styled@npm:^11.11.0": - version: 11.11.0 - resolution: "@emotion/styled@npm:11.11.0" - dependencies: - "@babel/runtime": ^7.18.3 - "@emotion/babel-plugin": ^11.11.0 - "@emotion/is-prop-valid": ^1.2.1 - "@emotion/serialize": ^1.1.2 - "@emotion/use-insertion-effect-with-fallbacks": ^1.0.1 - "@emotion/utils": ^1.2.1 - peerDependencies: - "@emotion/react": ^11.0.0-rc.0 - react: ">=16.8.0" - peerDependenciesMeta: - "@types/react": - optional: true - checksum: 904f641aad3892c65d7d6c0808b036dae1e6d6dad4861c1c7dc0baa59977047c6cad220691206eba7b4059f1a1c6e6c1ef4ebb8c829089e280fa0f2164a01e6b - languageName: node - linkType: hard - -"@emotion/unitless@npm:^0.8.1": - version: 0.8.1 - resolution: "@emotion/unitless@npm:0.8.1" - checksum: 385e21d184d27853bb350999471f00e1429fa4e83182f46cd2c164985999d9b46d558dc8b9cc89975cb337831ce50c31ac2f33b15502e85c299892e67e7b4a88 - languageName: node - linkType: hard - -"@emotion/use-insertion-effect-with-fallbacks@npm:^1.0.1": - version: 1.0.1 - resolution: "@emotion/use-insertion-effect-with-fallbacks@npm:1.0.1" - peerDependencies: - react: ">=16.8.0" - checksum: 700b6e5bbb37a9231f203bb3af11295eed01d73b2293abece0bc2a2237015e944d7b5114d4887ad9a79776504aa51ed2a8b0ddbc117c54495dd01a6b22f93786 - languageName: node - linkType: hard - -"@emotion/utils@npm:^1.2.1": - version: 1.2.1 - resolution: "@emotion/utils@npm:1.2.1" - checksum: e0b44be0705b56b079c55faff93952150be69e79b660ae70ddd5b6e09fc40eb1319654315a9f34bb479d7f4ec94be6068c061abbb9e18b9778ae180ad5d97c73 - languageName: node - linkType: hard - -"@emotion/weak-memoize@npm:^0.3.1": - version: 0.3.1 - resolution: "@emotion/weak-memoize@npm:0.3.1" - checksum: b2be47caa24a8122622ea18cd2d650dbb4f8ad37b636dc41ed420c2e082f7f1e564ecdea68122b546df7f305b159bf5ab9ffee872abd0f052e687428459af594 - languageName: node - linkType: hard - -"@eslint-community/eslint-utils@npm:^4.2.0": - version: 4.4.0 - resolution: "@eslint-community/eslint-utils@npm:4.4.0" - dependencies: - eslint-visitor-keys: ^3.3.0 - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - checksum: cdfe3ae42b4f572cbfb46d20edafe6f36fc5fb52bf2d90875c58aefe226892b9677fef60820e2832caf864a326fe4fc225714c46e8389ccca04d5f9288aabd22 - languageName: node - linkType: hard - -"@eslint-community/regexpp@npm:^4.6.1": - version: 4.6.2 - resolution: "@eslint-community/regexpp@npm:4.6.2" - checksum: a3c341377b46b54fa228f455771b901d1a2717f95d47dcdf40199df30abc000ba020f747f114f08560d119e979d882a94cf46cfc51744544d54b00319c0f2724 - languageName: node - linkType: hard - -"@eslint/eslintrc@npm:^2.1.1": - version: 2.1.1 - resolution: "@eslint/eslintrc@npm:2.1.1" - dependencies: - ajv: ^6.12.4 - debug: ^4.3.2 - espree: ^9.6.0 - globals: ^13.19.0 - ignore: ^5.2.0 - import-fresh: ^3.2.1 - js-yaml: ^4.1.0 - minimatch: ^3.1.2 - strip-json-comments: ^3.1.1 - checksum: bf909ea183d27238c257a82d4ffdec38ca94b906b4b8dfae02ecbe7ecc9e5a8182ef5e469c808bb8cb4fea4750f43ac4ca7c4b4a167b6cd7e3aaacd386b2bd25 - languageName: node - linkType: hard - -"@eslint/js@npm:^8.46.0": - version: 8.46.0 - resolution: "@eslint/js@npm:8.46.0" - checksum: 7aed479832302882faf5bec37e9d068f270f84c19b3fb529646a7c1b031e73a312f730569c78806492bc09cfce3d7651dfab4ce09a56cbb06bc6469449e56377 - languageName: node - linkType: hard - -"@graphql-typed-document-node/core@npm:^3.1.1": - version: 3.2.0 - resolution: "@graphql-typed-document-node/core@npm:3.2.0" - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - checksum: fa44443accd28c8cf4cb96aaaf39d144a22e8b091b13366843f4e97d19c7bfeaf609ce3c7603a4aeffe385081eaf8ea245d078633a7324c11c5ec4b2011bb76d - languageName: node - linkType: hard - -"@humanwhocodes/config-array@npm:^0.11.10": - version: 0.11.10 - resolution: "@humanwhocodes/config-array@npm:0.11.10" - dependencies: - "@humanwhocodes/object-schema": ^1.2.1 - debug: ^4.1.1 - minimatch: ^3.0.5 - checksum: 1b1302e2403d0e35bc43e66d67a2b36b0ad1119efc704b5faff68c41f791a052355b010fb2d27ef022670f550de24cd6d08d5ecf0821c16326b7dcd0ee5d5d8a - languageName: node - linkType: hard - -"@humanwhocodes/module-importer@npm:^1.0.1": - version: 1.0.1 - resolution: "@humanwhocodes/module-importer@npm:1.0.1" - checksum: 0fd22007db8034a2cdf2c764b140d37d9020bbfce8a49d3ec5c05290e77d4b0263b1b972b752df8c89e5eaa94073408f2b7d977aed131faf6cf396ebb5d7fb61 - languageName: node - linkType: hard - -"@humanwhocodes/object-schema@npm:^1.2.1": - version: 1.2.1 - resolution: "@humanwhocodes/object-schema@npm:1.2.1" - checksum: a824a1ec31591231e4bad5787641f59e9633827d0a2eaae131a288d33c9ef0290bd16fda8da6f7c0fcb014147865d12118df10db57f27f41e20da92369fcb3f1 - languageName: node - linkType: hard - -"@ioredis/commands@npm:^1.1.1": - version: 1.2.0 - resolution: "@ioredis/commands@npm:1.2.0" - checksum: 9b20225ba36ef3e5caf69b3c0720597c3016cc9b1e157f519ea388f621dd9037177f84cfe7e25c4c32dad7dd90c70ff9123cd411f747e053cf292193c9c461e2 - languageName: node - linkType: hard - -"@isaacs/cliui@npm:^8.0.2": - version: 8.0.2 - resolution: "@isaacs/cliui@npm:8.0.2" - dependencies: - string-width: ^5.1.2 - string-width-cjs: "npm:string-width@^4.2.0" - strip-ansi: ^7.0.1 - strip-ansi-cjs: "npm:strip-ansi@^6.0.1" - wrap-ansi: ^8.1.0 - wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0" - checksum: 4a473b9b32a7d4d3cfb7a614226e555091ff0c5a29a1734c28c72a182c2f6699b26fc6b5c2131dfd841e86b185aea714c72201d7c98c2fba5f17709333a67aeb - languageName: node - linkType: hard - -"@jridgewell/gen-mapping@npm:^0.3.0, @jridgewell/gen-mapping@npm:^0.3.2": - version: 0.3.3 - resolution: "@jridgewell/gen-mapping@npm:0.3.3" - dependencies: - "@jridgewell/set-array": ^1.0.1 - "@jridgewell/sourcemap-codec": ^1.4.10 - "@jridgewell/trace-mapping": ^0.3.9 - checksum: 4a74944bd31f22354fc01c3da32e83c19e519e3bbadafa114f6da4522ea77dd0c2842607e923a591d60a76699d819a2fbb6f3552e277efdb9b58b081390b60ab - languageName: node - linkType: hard - -"@jridgewell/resolve-uri@npm:3.1.0": - version: 3.1.0 - resolution: "@jridgewell/resolve-uri@npm:3.1.0" - checksum: b5ceaaf9a110fcb2780d1d8f8d4a0bfd216702f31c988d8042e5f8fbe353c55d9b0f55a1733afdc64806f8e79c485d2464680ac48a0d9fcadb9548ee6b81d267 - languageName: node - linkType: hard - -"@jridgewell/set-array@npm:^1.0.1": - version: 1.1.2 - resolution: "@jridgewell/set-array@npm:1.1.2" - checksum: 69a84d5980385f396ff60a175f7177af0b8da4ddb81824cb7016a9ef914eee9806c72b6b65942003c63f7983d4f39a5c6c27185bbca88eb4690b62075602e28e - languageName: node - linkType: hard - -"@jridgewell/source-map@npm:^0.3.3": - version: 0.3.5 - resolution: "@jridgewell/source-map@npm:0.3.5" - dependencies: - "@jridgewell/gen-mapping": ^0.3.0 - "@jridgewell/trace-mapping": ^0.3.9 - checksum: 1ad4dec0bdafbade57920a50acec6634f88a0eb735851e0dda906fa9894e7f0549c492678aad1a10f8e144bfe87f238307bf2a914a1bc85b7781d345417e9f6f - languageName: node - linkType: hard - -"@jridgewell/sourcemap-codec@npm:1.4.14": - version: 1.4.14 - resolution: "@jridgewell/sourcemap-codec@npm:1.4.14" - checksum: 61100637b6d173d3ba786a5dff019e1a74b1f394f323c1fee337ff390239f053b87266c7a948777f4b1ee68c01a8ad0ab61e5ff4abb5a012a0b091bec391ab97 - languageName: node - linkType: hard - -"@jridgewell/sourcemap-codec@npm:^1.4.10": - version: 1.4.15 - resolution: "@jridgewell/sourcemap-codec@npm:1.4.15" - checksum: b881c7e503db3fc7f3c1f35a1dd2655a188cc51a3612d76efc8a6eb74728bef5606e6758ee77423e564092b4a518aba569bbb21c9bac5ab7a35b0c6ae7e344c8 - languageName: node - linkType: hard - -"@jridgewell/trace-mapping@npm:^0.3.17, @jridgewell/trace-mapping@npm:^0.3.9": - version: 0.3.18 - resolution: "@jridgewell/trace-mapping@npm:0.3.18" - dependencies: - "@jridgewell/resolve-uri": 3.1.0 - "@jridgewell/sourcemap-codec": 1.4.14 - checksum: 0572669f855260808c16fe8f78f5f1b4356463b11d3f2c7c0b5580c8ba1cbf4ae53efe9f627595830856e57dbac2325ac17eb0c3dd0ec42102e6f227cc289c02 - languageName: node - linkType: hard - -"@mui/base@npm:5.0.0-beta.7": - version: 5.0.0-beta.7 - resolution: "@mui/base@npm:5.0.0-beta.7" - dependencies: - "@babel/runtime": ^7.22.5 - "@emotion/is-prop-valid": ^1.2.1 - "@mui/types": ^7.2.4 - "@mui/utils": ^5.13.7 - "@popperjs/core": ^2.11.8 - clsx: ^1.2.1 - prop-types: ^15.8.1 - react-is: ^18.2.0 - peerDependencies: - "@types/react": ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - "@types/react": - optional: true - checksum: 2b524f2a334818c6abe2419e24ded29b6fdb78375077ea6d16bfc55fd6e173cc21f6fb6286feb29215632e7f247b523244b5a1c809303570854fb15de5e83f47 - languageName: node - linkType: hard - -"@mui/base@npm:5.0.0-beta.8": - version: 5.0.0-beta.8 - resolution: "@mui/base@npm:5.0.0-beta.8" - dependencies: - "@babel/runtime": ^7.22.6 - "@emotion/is-prop-valid": ^1.2.1 - "@mui/types": ^7.2.4 - "@mui/utils": ^5.14.1 - "@popperjs/core": ^2.11.8 - clsx: ^1.2.1 - prop-types: ^15.8.1 - react-is: ^18.2.0 - peerDependencies: - "@types/react": ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - "@types/react": - optional: true - checksum: 669f99a92d403dd74eccf419d12fbe5061ce1cec4621a72376f176f220a5be61fe8cd496da20afdbf6f5377a22a6ffe79442970926db96a44241d38cc5fbc4e4 - languageName: node - linkType: hard - -"@mui/core-downloads-tracker@npm:^5.14.0": - version: 5.14.0 - resolution: "@mui/core-downloads-tracker@npm:5.14.0" - checksum: 20b5b830ac3661c9a7b331c4c4a5ea4ba614907182576ebde2508564bda7102f037670105097db31a1452cf55d092dd9dff94fb6931b87910bb48d1fb11c8b50 - languageName: node - linkType: hard - -"@mui/core-downloads-tracker@npm:^5.14.2": - version: 5.14.2 - resolution: "@mui/core-downloads-tracker@npm:5.14.2" - checksum: ea8032d101b190c2eb5bc67378a9142a56c15d6341ef6f9ad244921f1ba042e301328a132ecfc7a1473a09c56b11333b83859d12e50c12d1ee7a6a26eff27e36 - languageName: node - linkType: hard - -"@mui/icons-material@npm:^5.11.0": - version: 5.14.0 - resolution: "@mui/icons-material@npm:5.14.0" - dependencies: - "@babel/runtime": ^7.22.5 - peerDependencies: - "@mui/material": ^5.0.0 - "@types/react": ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - "@types/react": - optional: true - checksum: a4bbf351baf3d7502de8f97aee020086563c2a0661742e612aed28d9ed3ecfd62e63e0c8927b148a52073048054f7c050f4cdc62cc325e3244b86fc04c278447 - languageName: node - linkType: hard - -"@mui/icons-material@npm:^5.14.3": - version: 5.14.3 - resolution: "@mui/icons-material@npm:5.14.3" - dependencies: - "@babel/runtime": ^7.22.6 - peerDependencies: - "@mui/material": ^5.0.0 - "@types/react": ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - "@types/react": - optional: true - checksum: 25ff0261dcbcdde9967779f844d12c85c3ffc79227e50d8c03eade1081c2be855e88d2dbe2a587aa57b5c5c2b742af14f70b1767f7ccfd539d89876a6fc580fb - languageName: node - linkType: hard - -"@mui/material@npm:^5.11.7": - version: 5.14.0 - resolution: "@mui/material@npm:5.14.0" - dependencies: - "@babel/runtime": ^7.22.5 - "@mui/base": 5.0.0-beta.7 - "@mui/core-downloads-tracker": ^5.14.0 - "@mui/system": ^5.14.0 - "@mui/types": ^7.2.4 - "@mui/utils": ^5.13.7 - "@types/react-transition-group": ^4.4.6 - clsx: ^1.2.1 - csstype: ^3.1.2 - prop-types: ^15.8.1 - react-is: ^18.2.0 - react-transition-group: ^4.4.5 - peerDependencies: - "@emotion/react": ^11.5.0 - "@emotion/styled": ^11.3.0 - "@types/react": ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - "@emotion/react": - optional: true - "@emotion/styled": - optional: true - "@types/react": - optional: true - checksum: f1b1060b46fdcae6f4515f464bfab58f186fa1dd2e68e5bae0b0c3f42aafc9a73a08411141f870694c00b590a2593caa8fa6dc5b9e68be9d38eeaeda839ca716 - languageName: node - linkType: hard - -"@mui/material@npm:^5.14.2": - version: 5.14.2 - resolution: "@mui/material@npm:5.14.2" - dependencies: - "@babel/runtime": ^7.22.6 - "@mui/base": 5.0.0-beta.8 - "@mui/core-downloads-tracker": ^5.14.2 - "@mui/system": ^5.14.1 - "@mui/types": ^7.2.4 - "@mui/utils": ^5.14.1 - "@types/react-transition-group": ^4.4.6 - clsx: ^1.2.1 - csstype: ^3.1.2 - prop-types: ^15.8.1 - react-is: ^18.2.0 - react-transition-group: ^4.4.5 - peerDependencies: - "@emotion/react": ^11.5.0 - "@emotion/styled": ^11.3.0 - "@types/react": ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - "@emotion/react": - optional: true - "@emotion/styled": - optional: true - "@types/react": - optional: true - checksum: 271ccb56133c43b98338240dfa169c781c8dc9e8cc6e51188d539b30f1744957bda903d24684e532f213184f2522b5120457ceb3fc85e97ba84c1df637dce66a - languageName: node - linkType: hard - -"@mui/private-theming@npm:^5.13.7": - version: 5.13.7 - resolution: "@mui/private-theming@npm:5.13.7" - dependencies: - "@babel/runtime": ^7.22.5 - "@mui/utils": ^5.13.7 - prop-types: ^15.8.1 - peerDependencies: - "@types/react": ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - "@types/react": - optional: true - checksum: 645d25c9d2762403a7a1342a8b38f8232d5a8e03113ff183eccb248de07e683590f0271441e0ffc66ebcc54c3a79d63d532d2e0579cabbd968b8714537fb6732 - languageName: node - linkType: hard - -"@mui/styled-engine@npm:^5.13.2": - version: 5.13.2 - resolution: "@mui/styled-engine@npm:5.13.2" - dependencies: - "@babel/runtime": ^7.21.0 - "@emotion/cache": ^11.11.0 - csstype: ^3.1.2 - prop-types: ^15.8.1 - peerDependencies: - "@emotion/react": ^11.4.1 - "@emotion/styled": ^11.3.0 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - "@emotion/react": - optional: true - "@emotion/styled": - optional: true - checksum: e99f49755406b55a1595bf5d2727f0c0e3fd9f914dce1ea3b6cac826efe05038f8e4bde52580bd6a5a4c62ad59e5582bdde6c17abc10d80e61a64da168803391 - languageName: node - linkType: hard - -"@mui/system@npm:^5.14.0": - version: 5.14.0 - resolution: "@mui/system@npm:5.14.0" - dependencies: - "@babel/runtime": ^7.22.5 - "@mui/private-theming": ^5.13.7 - "@mui/styled-engine": ^5.13.2 - "@mui/types": ^7.2.4 - "@mui/utils": ^5.13.7 - clsx: ^1.2.1 - csstype: ^3.1.2 - prop-types: ^15.8.1 - peerDependencies: - "@emotion/react": ^11.5.0 - "@emotion/styled": ^11.3.0 - "@types/react": ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - "@emotion/react": - optional: true - "@emotion/styled": - optional: true - "@types/react": - optional: true - checksum: 8855bf8d36b2131a8edfe54c7ecbbf299562ca115ee34d51f47bd225b5800244b91a100f03e14e040a559de94603877a59882482e60c2eb2f4d47f8bd0740a6a - languageName: node - linkType: hard - -"@mui/system@npm:^5.14.1": - version: 5.14.1 - resolution: "@mui/system@npm:5.14.1" - dependencies: - "@babel/runtime": ^7.22.6 - "@mui/private-theming": ^5.13.7 - "@mui/styled-engine": ^5.13.2 - "@mui/types": ^7.2.4 - "@mui/utils": ^5.14.1 - clsx: ^1.2.1 - csstype: ^3.1.2 - prop-types: ^15.8.1 - peerDependencies: - "@emotion/react": ^11.5.0 - "@emotion/styled": ^11.3.0 - "@types/react": ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - "@emotion/react": - optional: true - "@emotion/styled": - optional: true - "@types/react": - optional: true - checksum: d3ab547bdba9544dda51c62e081481caafe5e64ea64cf4a58c8b060f83705a7aa53ebfd843f946567db6a65755635adf80ed3f4103e29dcc7ba1839381583c53 - languageName: node - linkType: hard - -"@mui/types@npm:^7.2.4": - version: 7.2.4 - resolution: "@mui/types@npm:7.2.4" - peerDependencies: - "@types/react": "*" - peerDependenciesMeta: - "@types/react": - optional: true - checksum: 16bea0547492193a22fd1794382f314698a114f6c673825314c66b56766c3a9d305992cc495684722b7be16a1ecf7e6e48a79caa64f90c439b530e8c02611a61 - languageName: node - linkType: hard - -"@mui/utils@npm:^5.13.7": - version: 5.13.7 - resolution: "@mui/utils@npm:5.13.7" - dependencies: - "@babel/runtime": ^7.22.5 - "@types/prop-types": ^15.7.5 - "@types/react-is": ^18.2.1 - prop-types: ^15.8.1 - react-is: ^18.2.0 - peerDependencies: - react: ^17.0.0 || ^18.0.0 - checksum: 80d50b3453f98ee708db0c0264ea530b3c9a75fe97d26b509d1f228bd06ebe9eb203b01e019f8ba9d2bd10ef864b9d523405c0fcdccccb74d5a93350722eb359 - languageName: node - linkType: hard - -"@mui/utils@npm:^5.14.1": - version: 5.14.1 - resolution: "@mui/utils@npm:5.14.1" - dependencies: - "@babel/runtime": ^7.22.6 - "@types/prop-types": ^15.7.5 - "@types/react-is": ^18.2.1 - prop-types: ^15.8.1 - react-is: ^18.2.0 - peerDependencies: - react: ^17.0.0 || ^18.0.0 - checksum: 39b1ab8d428f1783d0f7621b4ab284f7d035920c43c527114d865ba2d7d467ead850528a042ea986b76d4bac1ad6fc9cb0541add0d17d29d5ad59460c69106d1 - languageName: node - linkType: hard - -"@next/env@npm:13.4.12": - version: 13.4.12 - resolution: "@next/env@npm:13.4.12" - checksum: 2ccb2e271b3c42697c1e807cdf988429fcb563f80fa0ca72512f65f47cbbcc46c44fc53bf055814d4b467f1394de8c1a1ef6aad14d35f9993004faa956466d02 - languageName: node - linkType: hard - -"@next/eslint-plugin-next@npm:13.4.10": - version: 13.4.10 - resolution: "@next/eslint-plugin-next@npm:13.4.10" - dependencies: - glob: 7.1.7 - checksum: f14b99eb5d33b6ede9666ffafb596ee6be52157fc87b59d10d94e44b1e9836099ad450a67558c2aecf09c84b55f65a33c9254ab72df33f55f7cc9f4abee7b38c - languageName: node - linkType: hard - -"@next/swc-darwin-arm64@npm:13.4.12": - version: 13.4.12 - resolution: "@next/swc-darwin-arm64@npm:13.4.12" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"@next/swc-darwin-x64@npm:13.4.12": - version: 13.4.12 - resolution: "@next/swc-darwin-x64@npm:13.4.12" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@next/swc-linux-arm64-gnu@npm:13.4.12": - version: 13.4.12 - resolution: "@next/swc-linux-arm64-gnu@npm:13.4.12" - conditions: os=linux & cpu=arm64 & libc=glibc - languageName: node - linkType: hard - -"@next/swc-linux-arm64-musl@npm:13.4.12": - version: 13.4.12 - resolution: "@next/swc-linux-arm64-musl@npm:13.4.12" - conditions: os=linux & cpu=arm64 & libc=musl - languageName: node - linkType: hard - -"@next/swc-linux-x64-gnu@npm:13.4.12": - version: 13.4.12 - resolution: "@next/swc-linux-x64-gnu@npm:13.4.12" - conditions: os=linux & cpu=x64 & libc=glibc - languageName: node - linkType: hard - -"@next/swc-linux-x64-musl@npm:13.4.12": - version: 13.4.12 - resolution: "@next/swc-linux-x64-musl@npm:13.4.12" - conditions: os=linux & cpu=x64 & libc=musl - languageName: node - linkType: hard - -"@next/swc-win32-arm64-msvc@npm:13.4.12": - version: 13.4.12 - resolution: "@next/swc-win32-arm64-msvc@npm:13.4.12" - conditions: os=win32 & cpu=arm64 - languageName: node - linkType: hard - -"@next/swc-win32-ia32-msvc@npm:13.4.12": - version: 13.4.12 - resolution: "@next/swc-win32-ia32-msvc@npm:13.4.12" - conditions: os=win32 & cpu=ia32 - languageName: node - linkType: hard - -"@next/swc-win32-x64-msvc@npm:13.4.12": - version: 13.4.12 - resolution: "@next/swc-win32-x64-msvc@npm:13.4.12" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"@nodelib/fs.scandir@npm:2.1.5": - version: 2.1.5 - resolution: "@nodelib/fs.scandir@npm:2.1.5" - dependencies: - "@nodelib/fs.stat": 2.0.5 - run-parallel: ^1.1.9 - checksum: a970d595bd23c66c880e0ef1817791432dbb7acbb8d44b7e7d0e7a22f4521260d4a83f7f9fd61d44fda4610105577f8f58a60718105fb38352baed612fd79e59 - languageName: node - linkType: hard - -"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2": - version: 2.0.5 - resolution: "@nodelib/fs.stat@npm:2.0.5" - checksum: 012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0 - languageName: node - linkType: hard - -"@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8": - version: 1.2.8 - resolution: "@nodelib/fs.walk@npm:1.2.8" - dependencies: - "@nodelib/fs.scandir": 2.1.5 - fastq: ^1.6.0 - checksum: 190c643f156d8f8f277bf2a6078af1ffde1fd43f498f187c2db24d35b4b4b5785c02c7dc52e356497b9a1b65b13edc996de08de0b961c32844364da02986dc53 - languageName: node - linkType: hard - -"@npmcli/fs@npm:^3.1.0": - version: 3.1.0 - resolution: "@npmcli/fs@npm:3.1.0" - dependencies: - semver: ^7.3.5 - checksum: a50a6818de5fc557d0b0e6f50ec780a7a02ab8ad07e5ac8b16bf519e0ad60a144ac64f97d05c443c3367235d337182e1d012bbac0eb8dbae8dc7b40b193efd0e - languageName: node - linkType: hard - -"@pkgjs/parseargs@npm:^0.11.0": - version: 0.11.0 - resolution: "@pkgjs/parseargs@npm:0.11.0" - checksum: 6ad6a00fc4f2f2cfc6bff76fb1d88b8ee20bc0601e18ebb01b6d4be583733a860239a521a7fbca73b612e66705078809483549d2b18f370eb346c5155c8e4a0f - languageName: node - linkType: hard - -"@pkgr/utils@npm:^2.3.1": - version: 2.4.2 - resolution: "@pkgr/utils@npm:2.4.2" - dependencies: - cross-spawn: ^7.0.3 - fast-glob: ^3.3.0 - is-glob: ^4.0.3 - open: ^9.1.0 - picocolors: ^1.0.0 - tslib: ^2.6.0 - checksum: 24e04c121269317d259614cd32beea3af38277151c4002df5883c4be920b8e3490bb897748e844f9d46bf68230f86dabd4e8f093773130e7e60529a769a132fc - languageName: node - linkType: hard - -"@popperjs/core@npm:^2.11.8": - version: 2.11.8 - resolution: "@popperjs/core@npm:2.11.8" - checksum: e5c69fdebf52a4012f6a1f14817ca8e9599cb1be73dd1387e1785e2ed5e5f0862ff817f420a87c7fc532add1f88a12e25aeb010ffcbdc98eace3d55ce2139cf0 - languageName: node - linkType: hard - -"@rushstack/eslint-patch@npm:^1.1.3": - version: 1.3.2 - resolution: "@rushstack/eslint-patch@npm:1.3.2" - checksum: 010c87ef2d901faaaf70ea1bf86fd3e7b74f24e23205f836e9a32790bca2076afe5de58ded03c35cb482f83691c8d22b1a0c34291b075bfe81afd26cfa5d14cc - languageName: node - linkType: hard - -"@socket.io/component-emitter@npm:~3.1.0": - version: 3.1.0 - resolution: "@socket.io/component-emitter@npm:3.1.0" - checksum: db069d95425b419de1514dffe945cc439795f6a8ef5b9465715acf5b8b50798e2c91b8719cbf5434b3fe7de179d6cdcd503c277b7871cb3dd03febb69bdd50fa - languageName: node - linkType: hard - -"@swc/helpers@npm:0.5.1": - version: 0.5.1 - resolution: "@swc/helpers@npm:0.5.1" - dependencies: - tslib: ^2.4.0 - checksum: 71e0e27234590435e4c62b97ef5e796f88e786841a38c7116a5e27a3eafa7b9ead7cdec5249b32165902076de78446945311c973e59bddf77c1e24f33a8f272a - languageName: node - linkType: hard - -"@tootallnate/once@npm:2": - version: 2.0.0 - resolution: "@tootallnate/once@npm:2.0.0" - checksum: ad87447820dd3f24825d2d947ebc03072b20a42bfc96cbafec16bff8bbda6c1a81fcb0be56d5b21968560c5359a0af4038a68ba150c3e1694fe4c109a063bed8 - languageName: node - linkType: hard - -"@types/cookie@npm:^0.4.1": - version: 0.4.1 - resolution: "@types/cookie@npm:0.4.1" - checksum: 3275534ed69a76c68eb1a77d547d75f99fedc80befb75a3d1d03662fb08d697e6f8b1274e12af1a74c6896071b11510631ba891f64d30c78528d0ec45a9c1a18 - languageName: node - linkType: hard - -"@types/cors@npm:^2.8.12": - version: 2.8.13 - resolution: "@types/cors@npm:2.8.13" - dependencies: - "@types/node": "*" - checksum: 7ef197ea19d2e5bf1313b8416baa6f3fd6dd887fd70191da1f804f557395357dafd8bc8bed0ac60686923406489262a7c8a525b55748f7b2b8afa686700de907 - languageName: node - linkType: hard - -"@types/eslint-scope@npm:^3.7.3": - version: 3.7.4 - resolution: "@types/eslint-scope@npm:3.7.4" - dependencies: - "@types/eslint": "*" - "@types/estree": "*" - checksum: ea6a9363e92f301cd3888194469f9ec9d0021fe0a397a97a6dd689e7545c75de0bd2153dfb13d3ab532853a278b6572c6f678ce846980669e41029d205653460 - languageName: node - linkType: hard - -"@types/eslint@npm:*": - version: 8.44.0 - resolution: "@types/eslint@npm:8.44.0" - dependencies: - "@types/estree": "*" - "@types/json-schema": "*" - checksum: 2655f409a4ecdd64bb9dd9eb6715e7a2ac30c0e7f902b414e10dbe9d6d497baa5a0f13105e1f7bd5ad7a913338e2ab4bed1faf192a7a0d27d1acd45ba79d3f69 - languageName: node - linkType: hard - -"@types/estree@npm:*, @types/estree@npm:^1.0.0": - version: 1.0.1 - resolution: "@types/estree@npm:1.0.1" - checksum: e9aa175eacb797216fafce4d41e8202c7a75555bc55232dee0f9903d7171f8f19f0ae7d5191bb1a88cb90e65468be508c0df850a9fb81b4433b293a5a749899d - languageName: node - linkType: hard - -"@types/json-schema@npm:*, @types/json-schema@npm:^7.0.8": - version: 7.0.12 - resolution: "@types/json-schema@npm:7.0.12" - checksum: 00239e97234eeb5ceefb0c1875d98ade6e922bfec39dd365ec6bd360b5c2f825e612ac4f6e5f1d13601b8b30f378f15e6faa805a3a732f4a1bbe61915163d293 - languageName: node - linkType: hard - -"@types/json5@npm:^0.0.29": - version: 0.0.29 - resolution: "@types/json5@npm:0.0.29" - checksum: e60b153664572116dfea673c5bda7778dbff150498f44f998e34b5886d8afc47f16799280e4b6e241c0472aef1bc36add771c569c68fc5125fc2ae519a3eb9ac - languageName: node - linkType: hard - -"@types/node@npm:*, @types/node@npm:>=10.0.0": - version: 20.4.1 - resolution: "@types/node@npm:20.4.1" - checksum: 22cbcc792f2eb636fe4188778ed0f32658ab872aa7fcb9847b3fa289a42b14b9f5e30c6faec50ef3c7adbc6c2a246926e5858136bb8b10c035a3fcaa6afbeed2 - languageName: node - linkType: hard - -"@types/node@npm:^20.4.9": - version: 20.4.9 - resolution: "@types/node@npm:20.4.9" - checksum: 504e3da96274f3865c1251830f4750bb0a8f6ef6f8648902cd3bba33370c5f219235471bfbf55cce726b25c8eacfcc8e2aad0ec3b13e27ea6708b00d4a9a46c8 - languageName: node - linkType: hard - -"@types/parse-json@npm:^4.0.0": - version: 4.0.0 - resolution: "@types/parse-json@npm:4.0.0" - checksum: fd6bce2b674b6efc3db4c7c3d336bd70c90838e8439de639b909ce22f3720d21344f52427f1d9e57b265fcb7f6c018699b99e5e0c208a1a4823014269a6bf35b - languageName: node - linkType: hard - -"@types/prop-types@npm:*, @types/prop-types@npm:^15.7.5": - version: 15.7.5 - resolution: "@types/prop-types@npm:15.7.5" - checksum: 5b43b8b15415e1f298243165f1d44390403bb2bd42e662bca3b5b5633fdd39c938e91b7fce3a9483699db0f7a715d08cef220c121f723a634972fdf596aec980 - languageName: node - linkType: hard - -"@types/react-dom@npm:18.2.7": - version: 18.2.7 - resolution: "@types/react-dom@npm:18.2.7" - dependencies: - "@types/react": "*" - checksum: e02ea908289a7ad26053308248d2b87f6aeafd73d0e2de2a3d435947bcea0422599016ffd1c3e38ff36c42f5e1c87c7417f05b0a157e48649e4a02f21727d54f - languageName: node - linkType: hard - -"@types/react-is@npm:^18.2.1": - version: 18.2.1 - resolution: "@types/react-is@npm:18.2.1" - dependencies: - "@types/react": "*" - checksum: b44c3262efa2c68fa6fe2beb9ef86170b18305469461a3f97aa14943cc033cb21a26944f718bdb6434eea6e8f7fcba251c4f45b65b897a3fcf751b5a6003cf82 - languageName: node - linkType: hard - -"@types/react-transition-group@npm:^4.4.6": - version: 4.4.6 - resolution: "@types/react-transition-group@npm:4.4.6" - dependencies: - "@types/react": "*" - checksum: 0872143821d7ee20a1d81e965f8b1e837837f11cd2206973f1f98655751992d9390304d58bac192c9cd923eca95bff107d8c9e3364a180240d5c2a6fd70fd7c3 - languageName: node - linkType: hard - -"@types/react@npm:*": - version: 18.2.14 - resolution: "@types/react@npm:18.2.14" - dependencies: - "@types/prop-types": "*" - "@types/scheduler": "*" - csstype: ^3.0.2 - checksum: a6a5e8cc78f486b9020d1ad009aa6c56943c68c7c6376e0f8399e9cbcd950b7b8f5d73f00200f5379f5e58d31d57d8aed24357f301d8e86108cd438ce6c8b3dd - languageName: node - linkType: hard - -"@types/react@npm:^18.2.19": - version: 18.2.19 - resolution: "@types/react@npm:18.2.19" - dependencies: - "@types/prop-types": "*" - "@types/scheduler": "*" - csstype: ^3.0.2 - checksum: 1ef657b90c7413451bbac2fd2fbce4f8a093941bc5041d344ab9833bc113c8eebf6318dae8aeeb1a0f922f15bc772507e6aaa0c7b51847b5f7302921c8dd6740 - languageName: node - linkType: hard - -"@types/scheduler@npm:*": - version: 0.16.3 - resolution: "@types/scheduler@npm:0.16.3" - checksum: 2b0aec39c24268e3ce938c5db2f2e77f5c3dd280e05c262d9c2fe7d890929e4632a6b8e94334017b66b45e4f92a5aa42ba3356640c2a1175fa37bef2f5200767 - languageName: node - linkType: hard - -"@typescript-eslint/parser@npm:^5.42.0": - version: 5.62.0 - resolution: "@typescript-eslint/parser@npm:5.62.0" - dependencies: - "@typescript-eslint/scope-manager": 5.62.0 - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/typescript-estree": 5.62.0 - debug: ^4.3.4 - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - peerDependenciesMeta: - typescript: - optional: true - checksum: d168f4c7f21a7a63f47002e2d319bcbb6173597af5c60c1cf2de046b46c76b4930a093619e69faf2d30214c29ab27b54dcf1efc7046a6a6bd6f37f59a990e752 - languageName: node - linkType: hard - -"@typescript-eslint/scope-manager@npm:5.62.0": - version: 5.62.0 - resolution: "@typescript-eslint/scope-manager@npm:5.62.0" - dependencies: - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/visitor-keys": 5.62.0 - checksum: 6062d6b797fe1ce4d275bb0d17204c827494af59b5eaf09d8a78cdd39dadddb31074dded4297aaf5d0f839016d601032857698b0e4516c86a41207de606e9573 - languageName: node - linkType: hard - -"@typescript-eslint/types@npm:5.62.0": - version: 5.62.0 - resolution: "@typescript-eslint/types@npm:5.62.0" - checksum: 48c87117383d1864766486f24de34086155532b070f6264e09d0e6139449270f8a9559cfef3c56d16e3bcfb52d83d42105d61b36743626399c7c2b5e0ac3b670 - languageName: node - linkType: hard - -"@typescript-eslint/typescript-estree@npm:5.62.0": - version: 5.62.0 - resolution: "@typescript-eslint/typescript-estree@npm:5.62.0" - dependencies: - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/visitor-keys": 5.62.0 - debug: ^4.3.4 - globby: ^11.1.0 - is-glob: ^4.0.3 - semver: ^7.3.7 - tsutils: ^3.21.0 - peerDependenciesMeta: - typescript: - optional: true - checksum: 3624520abb5807ed8f57b1197e61c7b1ed770c56dfcaca66372d584ff50175225798bccb701f7ef129d62c5989070e1ee3a0aa2d84e56d9524dcf011a2bb1a52 - languageName: node - linkType: hard - -"@typescript-eslint/visitor-keys@npm:5.62.0": - version: 5.62.0 - resolution: "@typescript-eslint/visitor-keys@npm:5.62.0" - dependencies: - "@typescript-eslint/types": 5.62.0 - eslint-visitor-keys: ^3.3.0 - checksum: 976b05d103fe8335bef5c93ad3f76d781e3ce50329c0243ee0f00c0fcfb186c81df50e64bfdd34970148113f8ade90887f53e3c4938183afba830b4ba8e30a35 - languageName: node - linkType: hard - -"@webassemblyjs/ast@npm:1.11.6, @webassemblyjs/ast@npm:^1.11.5": - version: 1.11.6 - resolution: "@webassemblyjs/ast@npm:1.11.6" - dependencies: - "@webassemblyjs/helper-numbers": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - checksum: 38ef1b526ca47c210f30975b06df2faf1a8170b1636ce239fc5738fc231ce28389dd61ecedd1bacfc03cbe95b16d1af848c805652080cb60982836eb4ed2c6cf - languageName: node - linkType: hard - -"@webassemblyjs/floating-point-hex-parser@npm:1.11.6": - version: 1.11.6 - resolution: "@webassemblyjs/floating-point-hex-parser@npm:1.11.6" - checksum: 29b08758841fd8b299c7152eda36b9eb4921e9c584eb4594437b5cd90ed6b920523606eae7316175f89c20628da14326801090167cc7fbffc77af448ac84b7e2 - languageName: node - linkType: hard - -"@webassemblyjs/helper-api-error@npm:1.11.6": - version: 1.11.6 - resolution: "@webassemblyjs/helper-api-error@npm:1.11.6" - checksum: e8563df85161096343008f9161adb138a6e8f3c2cc338d6a36011aa55eabb32f2fd138ffe63bc278d009ada001cc41d263dadd1c0be01be6c2ed99076103689f - languageName: node - linkType: hard - -"@webassemblyjs/helper-buffer@npm:1.11.6": - version: 1.11.6 - resolution: "@webassemblyjs/helper-buffer@npm:1.11.6" - checksum: b14d0573bf680d22b2522e8a341ec451fddd645d1f9c6bd9012ccb7e587a2973b86ab7b89fe91e1c79939ba96095f503af04369a3b356c8023c13a5893221644 - languageName: node - linkType: hard - -"@webassemblyjs/helper-numbers@npm:1.11.6": - version: 1.11.6 - resolution: "@webassemblyjs/helper-numbers@npm:1.11.6" - dependencies: - "@webassemblyjs/floating-point-hex-parser": 1.11.6 - "@webassemblyjs/helper-api-error": 1.11.6 - "@xtuc/long": 4.2.2 - checksum: f4b562fa219f84368528339e0f8d273ad44e047a07641ffcaaec6f93e5b76fd86490a009aa91a294584e1436d74b0a01fa9fde45e333a4c657b58168b04da424 - languageName: node - linkType: hard - -"@webassemblyjs/helper-wasm-bytecode@npm:1.11.6": - version: 1.11.6 - resolution: "@webassemblyjs/helper-wasm-bytecode@npm:1.11.6" - checksum: 3535ef4f1fba38de3475e383b3980f4bbf3de72bbb631c2b6584c7df45be4eccd62c6ff48b5edd3f1bcff275cfd605a37679ec199fc91fd0a7705d7f1e3972dc - languageName: node - linkType: hard - -"@webassemblyjs/helper-wasm-section@npm:1.11.6": - version: 1.11.6 - resolution: "@webassemblyjs/helper-wasm-section@npm:1.11.6" - dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-buffer": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/wasm-gen": 1.11.6 - checksum: b2cf751bf4552b5b9999d27bbb7692d0aca75260140195cb58ea6374d7b9c2dc69b61e10b211a0e773f66209c3ddd612137ed66097e3684d7816f854997682e9 - languageName: node - linkType: hard - -"@webassemblyjs/ieee754@npm:1.11.6": - version: 1.11.6 - resolution: "@webassemblyjs/ieee754@npm:1.11.6" - dependencies: - "@xtuc/ieee754": ^1.2.0 - checksum: 13574b8e41f6ca39b700e292d7edf102577db5650fe8add7066a320aa4b7a7c09a5056feccac7a74eb68c10dea9546d4461412af351f13f6b24b5f32379b49de - languageName: node - linkType: hard - -"@webassemblyjs/leb128@npm:1.11.6": - version: 1.11.6 - resolution: "@webassemblyjs/leb128@npm:1.11.6" - dependencies: - "@xtuc/long": 4.2.2 - checksum: 7ea942dc9777d4b18a5ebfa3a937b30ae9e1d2ce1fee637583ed7f376334dd1d4274f813d2e250056cca803e0952def4b954913f1a3c9068bcd4ab4ee5143bf0 - languageName: node - linkType: hard - -"@webassemblyjs/utf8@npm:1.11.6": - version: 1.11.6 - resolution: "@webassemblyjs/utf8@npm:1.11.6" - checksum: 807fe5b5ce10c390cfdd93e0fb92abda8aebabb5199980681e7c3743ee3306a75729bcd1e56a3903980e96c885ee53ef901fcbaac8efdfa480f9c0dae1d08713 - languageName: node - linkType: hard - -"@webassemblyjs/wasm-edit@npm:^1.11.5": - version: 1.11.6 - resolution: "@webassemblyjs/wasm-edit@npm:1.11.6" - dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-buffer": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/helper-wasm-section": 1.11.6 - "@webassemblyjs/wasm-gen": 1.11.6 - "@webassemblyjs/wasm-opt": 1.11.6 - "@webassemblyjs/wasm-parser": 1.11.6 - "@webassemblyjs/wast-printer": 1.11.6 - checksum: 29ce75870496d6fad864d815ebb072395a8a3a04dc9c3f4e1ffdc63fc5fa58b1f34304a1117296d8240054cfdbc38aca88e71fb51483cf29ffab0a61ef27b481 - languageName: node - linkType: hard - -"@webassemblyjs/wasm-gen@npm:1.11.6": - version: 1.11.6 - resolution: "@webassemblyjs/wasm-gen@npm:1.11.6" - dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/ieee754": 1.11.6 - "@webassemblyjs/leb128": 1.11.6 - "@webassemblyjs/utf8": 1.11.6 - checksum: a645a2eecbea24833c3260a249704a7f554ef4a94c6000984728e94bb2bc9140a68dfd6fd21d5e0bbb09f6dfc98e083a45760a83ae0417b41a0196ff6d45a23a - languageName: node - linkType: hard - -"@webassemblyjs/wasm-opt@npm:1.11.6": - version: 1.11.6 - resolution: "@webassemblyjs/wasm-opt@npm:1.11.6" - dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-buffer": 1.11.6 - "@webassemblyjs/wasm-gen": 1.11.6 - "@webassemblyjs/wasm-parser": 1.11.6 - checksum: b4557f195487f8e97336ddf79f7bef40d788239169aac707f6eaa2fa5fe243557c2d74e550a8e57f2788e70c7ae4e7d32f7be16101afe183d597b747a3bdd528 - languageName: node - linkType: hard - -"@webassemblyjs/wasm-parser@npm:1.11.6, @webassemblyjs/wasm-parser@npm:^1.11.5": - version: 1.11.6 - resolution: "@webassemblyjs/wasm-parser@npm:1.11.6" - dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-api-error": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/ieee754": 1.11.6 - "@webassemblyjs/leb128": 1.11.6 - "@webassemblyjs/utf8": 1.11.6 - checksum: 8200a8d77c15621724a23fdabe58d5571415cda98a7058f542e670ea965dd75499f5e34a48675184947c66f3df23adf55df060312e6d72d57908e3f049620d8a - languageName: node - linkType: hard - -"@webassemblyjs/wast-printer@npm:1.11.6": - version: 1.11.6 - resolution: "@webassemblyjs/wast-printer@npm:1.11.6" - dependencies: - "@webassemblyjs/ast": 1.11.6 - "@xtuc/long": 4.2.2 - checksum: d2fa6a4c427325ec81463e9c809aa6572af6d47f619f3091bf4c4a6fc34f1da3df7caddaac50b8e7a457f8784c62cd58c6311b6cb69b0162ccd8d4c072f79cf8 - languageName: node - linkType: hard - -"@webpack-cli/configtest@npm:^2.1.1": - version: 2.1.1 - resolution: "@webpack-cli/configtest@npm:2.1.1" - peerDependencies: - webpack: 5.x.x - webpack-cli: 5.x.x - checksum: 9f9f9145c2d05471fc83d426db1df85cf49f329836b0c4b9f46b6948bed4b013464c00622b136d2a0a26993ce2306976682592245b08ee717500b1db45009a72 - languageName: node - linkType: hard - -"@webpack-cli/info@npm:^2.0.2": - version: 2.0.2 - resolution: "@webpack-cli/info@npm:2.0.2" - peerDependencies: - webpack: 5.x.x - webpack-cli: 5.x.x - checksum: 8f9a178afca5c82e113aed1efa552d64ee5ae4fdff63fe747c096a981ec74f18a5d07bd6e89bbe6715c3e57d96eea024a410e58977169489fe1df044c10dd94e - languageName: node - linkType: hard - -"@webpack-cli/serve@npm:^2.0.5": - version: 2.0.5 - resolution: "@webpack-cli/serve@npm:2.0.5" - peerDependencies: - webpack: 5.x.x - webpack-cli: 5.x.x - peerDependenciesMeta: - webpack-dev-server: - optional: true - checksum: 75f0e54681796d567a71ac3e2781d2901a8d8cf1cdfc82f261034dddac59a8343e8c3bc5e32b4bb9d6766759ba49fb29a5cd86ef1701d79c506fe886bb63ac75 - languageName: node - linkType: hard - -"@weng-lab/psychscreen-ui-components@npm:^0.7.8": - version: 0.7.8 - resolution: "@weng-lab/psychscreen-ui-components@npm:0.7.8" - peerDependencies: - react: ">=16" - checksum: 516eed3de77f161f65f7c3e2af230faa9cc6218456d8d6123d1226da1c745f2b2458d1c9a0562ccd9c0bbc5ba7dd9b657ee8d9aac6532fdf10fcb728036f6e92 - languageName: node - linkType: hard - -"@weng-lab/ts-ztable@npm:^4.0.1": - version: 4.0.1 - resolution: "@weng-lab/ts-ztable@npm:4.0.1" - dependencies: - "@emotion/react": ^11.10.5 - "@emotion/styled": ^11.10.5 - "@mui/icons-material": ^5.11.0 - "@mui/material": ^5.11.7 - tslib: ^2.5.0 - peerDependencies: - react: ">=17.0.0" - react-dom: ">17.0.0" - checksum: cdb4909eb96a36583ff31cc93900cbc2c924541a3e54d0b6c31730d740cebfae49eb6e6b42a45257a1d9ec49260934bf2a09277f024976a147df2e772fb0ac80 - languageName: node - linkType: hard - -"@wry/context@npm:^0.7.0, @wry/context@npm:^0.7.3": - version: 0.7.3 - resolution: "@wry/context@npm:0.7.3" - dependencies: - tslib: ^2.3.0 - checksum: 91c1e9eee9046c48ff857d60dcbb59f22246ce0f9bb2d9b190e0555227e7ba3f86024032cc057f3f5141d3bee93fc6b2a15ce2c79fa512569d3432eb8e1af02b - languageName: node - linkType: hard - -"@wry/equality@npm:^0.5.6": - version: 0.5.6 - resolution: "@wry/equality@npm:0.5.6" - dependencies: - tslib: ^2.3.0 - checksum: 9addf8891bdff5e23eecff03641846e7a56c1de3c9362c25e69c0b2ee3303e74b22e9a0376920283cd9d3bdd1bada12df54be5eaa29c2d801d33d94992672e14 - languageName: node - linkType: hard - -"@wry/trie@npm:^0.4.3": - version: 0.4.3 - resolution: "@wry/trie@npm:0.4.3" - dependencies: - tslib: ^2.3.0 - checksum: 106e021125cfafd22250a6631a0438a6a3debae7bd73f6db87fe42aa0757fe67693db0dfbe200ae1f60ba608c3e09ddb8a4e2b3527d56ed0a7e02aa0ee4c94e1 - languageName: node - linkType: hard - -"@xtuc/ieee754@npm:^1.2.0": - version: 1.2.0 - resolution: "@xtuc/ieee754@npm:1.2.0" - checksum: ac56d4ca6e17790f1b1677f978c0c6808b1900a5b138885d3da21732f62e30e8f0d9120fcf8f6edfff5100ca902b46f8dd7c1e3f903728634523981e80e2885a - languageName: node - linkType: hard - -"@xtuc/long@npm:4.2.2": - version: 4.2.2 - resolution: "@xtuc/long@npm:4.2.2" - checksum: 8ed0d477ce3bc9c6fe2bf6a6a2cc316bb9c4127c5a7827bae947fa8ec34c7092395c5a283cc300c05b5fa01cbbfa1f938f410a7bf75db7c7846fea41949989ec - languageName: node - linkType: hard - -"abbrev@npm:^1.0.0": - version: 1.1.1 - resolution: "abbrev@npm:1.1.1" - checksum: a4a97ec07d7ea112c517036882b2ac22f3109b7b19077dc656316d07d308438aac28e4d9746dc4d84bf6b1e75b4a7b0a5f3cb30592419f128ca9a8cee3bcfa17 - languageName: node - linkType: hard - -"accepts@npm:~1.3.4, accepts@npm:~1.3.5, accepts@npm:~1.3.8": - version: 1.3.8 - resolution: "accepts@npm:1.3.8" - dependencies: - mime-types: ~2.1.34 - negotiator: 0.6.3 - checksum: 50c43d32e7b50285ebe84b613ee4a3aa426715a7d131b65b786e2ead0fd76b6b60091b9916d3478a75f11f162628a2139991b6c03ab3f1d9ab7c86075dc8eab4 - languageName: node - linkType: hard - -"acorn-import-assertions@npm:^1.9.0": - version: 1.9.0 - resolution: "acorn-import-assertions@npm:1.9.0" - peerDependencies: - acorn: ^8 - checksum: 944fb2659d0845c467066bdcda2e20c05abe3aaf11972116df457ce2627628a81764d800dd55031ba19de513ee0d43bb771bc679cc0eda66dc8b4fade143bc0c - languageName: node - linkType: hard - -"acorn-jsx@npm:^5.3.2": - version: 5.3.2 - resolution: "acorn-jsx@npm:5.3.2" - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: c3d3b2a89c9a056b205b69530a37b972b404ee46ec8e5b341666f9513d3163e2a4f214a71f4dfc7370f5a9c07472d2fd1c11c91c3f03d093e37637d95da98950 - languageName: node - linkType: hard - -"acorn@npm:^7.1.1": - version: 7.4.1 - resolution: "acorn@npm:7.4.1" - bin: - acorn: bin/acorn - checksum: 1860f23c2107c910c6177b7b7be71be350db9e1080d814493fae143ae37605189504152d1ba8743ba3178d0b37269ce1ffc42b101547fdc1827078f82671e407 - languageName: node - linkType: hard - -"acorn@npm:^8.7.1, acorn@npm:^8.8.2, acorn@npm:^8.9.0": - version: 8.10.0 - resolution: "acorn@npm:8.10.0" - bin: - acorn: bin/acorn - checksum: 538ba38af0cc9e5ef983aee196c4b8b4d87c0c94532334fa7e065b2c8a1f85863467bb774231aae91613fcda5e68740c15d97b1967ae3394d20faddddd8af61d - languageName: node - linkType: hard - -"agent-base@npm:6, agent-base@npm:^6.0.2": - version: 6.0.2 - resolution: "agent-base@npm:6.0.2" - dependencies: - debug: 4 - checksum: f52b6872cc96fd5f622071b71ef200e01c7c4c454ee68bc9accca90c98cfb39f2810e3e9aa330435835eedc8c23f4f8a15267f67c6e245d2b33757575bdac49d - languageName: node - linkType: hard - -"agentkeepalive@npm:^4.2.1": - version: 4.3.0 - resolution: "agentkeepalive@npm:4.3.0" - dependencies: - debug: ^4.1.0 - depd: ^2.0.0 - humanize-ms: ^1.2.1 - checksum: 982453aa44c11a06826c836025e5162c846e1200adb56f2d075400da7d32d87021b3b0a58768d949d824811f5654223d5a8a3dad120921a2439625eb847c6260 - languageName: node - linkType: hard - -"aggregate-error@npm:^3.0.0": - version: 3.1.0 - resolution: "aggregate-error@npm:3.1.0" - dependencies: - clean-stack: ^2.0.0 - indent-string: ^4.0.0 - checksum: 1101a33f21baa27a2fa8e04b698271e64616b886795fd43c31068c07533c7b3facfcaf4e9e0cab3624bd88f729a592f1c901a1a229c9e490eafce411a8644b79 - languageName: node - linkType: hard - -"ajv-keywords@npm:^3.5.2": - version: 3.5.2 - resolution: "ajv-keywords@npm:3.5.2" - peerDependencies: - ajv: ^6.9.1 - checksum: 7dc5e5931677a680589050f79dcbe1fefbb8fea38a955af03724229139175b433c63c68f7ae5f86cf8f65d55eb7c25f75a046723e2e58296707617ca690feae9 - languageName: node - linkType: hard - -"ajv@npm:^6.12.4, ajv@npm:^6.12.5": - version: 6.12.6 - resolution: "ajv@npm:6.12.6" - dependencies: - fast-deep-equal: ^3.1.1 - fast-json-stable-stringify: ^2.0.0 - json-schema-traverse: ^0.4.1 - uri-js: ^4.2.2 - checksum: 874972efe5c4202ab0a68379481fbd3d1b5d0a7bd6d3cc21d40d3536ebff3352a2a1fabb632d4fd2cc7fe4cbdcd5ed6782084c9bbf7f32a1536d18f9da5007d4 - languageName: node - linkType: hard - -"ansi-escapes@npm:^4.3.0": - version: 4.3.2 - resolution: "ansi-escapes@npm:4.3.2" - dependencies: - type-fest: ^0.21.3 - checksum: 93111c42189c0a6bed9cdb4d7f2829548e943827ee8479c74d6e0b22ee127b2a21d3f8b5ca57723b8ef78ce011fbfc2784350eb2bde3ccfccf2f575fa8489815 - languageName: node - linkType: hard - -"ansi-regex@npm:^5.0.1": - version: 5.0.1 - resolution: "ansi-regex@npm:5.0.1" - checksum: 2aa4bb54caf2d622f1afdad09441695af2a83aa3fe8b8afa581d205e57ed4261c183c4d3877cee25794443fde5876417d859c108078ab788d6af7e4fe52eb66b - languageName: node - linkType: hard - -"ansi-regex@npm:^6.0.1": - version: 6.0.1 - resolution: "ansi-regex@npm:6.0.1" - checksum: 1ff8b7667cded1de4fa2c9ae283e979fc87036864317da86a2e546725f96406746411d0d85e87a2d12fa5abd715d90006de7fa4fa0477c92321ad3b4c7d4e169 - languageName: node - linkType: hard - -"ansi-styles@npm:^3.2.1": - version: 3.2.1 - resolution: "ansi-styles@npm:3.2.1" - dependencies: - color-convert: ^1.9.0 - checksum: d85ade01c10e5dd77b6c89f34ed7531da5830d2cb5882c645f330079975b716438cd7ebb81d0d6e6b4f9c577f19ae41ab55f07f19786b02f9dfd9e0377395665 - languageName: node - linkType: hard - -"ansi-styles@npm:^4.0.0, ansi-styles@npm:^4.1.0": - version: 4.3.0 - resolution: "ansi-styles@npm:4.3.0" - dependencies: - color-convert: ^2.0.1 - checksum: 513b44c3b2105dd14cc42a19271e80f386466c4be574bccf60b627432f9198571ebf4ab1e4c3ba17347658f4ee1711c163d574248c0c1cdc2d5917a0ad582ec4 - languageName: node - linkType: hard - -"ansi-styles@npm:^6.0.0, ansi-styles@npm:^6.1.0": - version: 6.2.1 - resolution: "ansi-styles@npm:6.2.1" - checksum: ef940f2f0ced1a6347398da88a91da7930c33ecac3c77b72c5905f8b8fe402c52e6fde304ff5347f616e27a742da3f1dc76de98f6866c69251ad0b07a66776d9 - languageName: node - linkType: hard - -"any-promise@npm:^1.0.0": - version: 1.3.0 - resolution: "any-promise@npm:1.3.0" - checksum: 0ee8a9bdbe882c90464d75d1f55cf027f5458650c4bd1f0467e65aec38ccccda07ca5844969ee77ed46d04e7dded3eaceb027e8d32f385688523fe305fa7e1de - languageName: node - linkType: hard - -"anymatch@npm:~3.1.2": - version: 3.1.3 - resolution: "anymatch@npm:3.1.3" - dependencies: - normalize-path: ^3.0.0 - picomatch: ^2.0.4 - checksum: 3e044fd6d1d26545f235a9fe4d7a534e2029d8e59fa7fd9f2a6eb21230f6b5380ea1eaf55136e60cbf8e613544b3b766e7a6fa2102e2a3a117505466e3025dc2 - languageName: node - linkType: hard - -"app-module-path@npm:^2.1.0": - version: 2.2.0 - resolution: "app-module-path@npm:2.2.0" - checksum: b52aa49cfa809efbad41b514222e8ef3f8ee9e147f5eccf79280b45eddcc61f7aeb302b0049474e3f42072dd53a28348c57dd96f36cd461d2e31cc8ab1ef56b5 - languageName: node - linkType: hard - -"aproba@npm:^1.0.3 || ^2.0.0": - version: 2.0.0 - resolution: "aproba@npm:2.0.0" - checksum: 5615cadcfb45289eea63f8afd064ab656006361020e1735112e346593856f87435e02d8dcc7ff0d11928bc7d425f27bc7c2a84f6c0b35ab0ff659c814c138a24 - languageName: node - linkType: hard - -"are-we-there-yet@npm:^3.0.0": - version: 3.0.1 - resolution: "are-we-there-yet@npm:3.0.1" - dependencies: - delegates: ^1.0.0 - readable-stream: ^3.6.0 - checksum: 52590c24860fa7173bedeb69a4c05fb573473e860197f618b9a28432ee4379049336727ae3a1f9c4cb083114601c1140cee578376164d0e651217a9843f9fe83 - languageName: node - linkType: hard - -"arg@npm:^5.0.2": - version: 5.0.2 - resolution: "arg@npm:5.0.2" - checksum: 6c69ada1a9943d332d9e5382393e897c500908d91d5cb735a01120d5f71daf1b339b7b8980cbeaba8fd1afc68e658a739746179e4315a26e8a28951ff9930078 - languageName: node - linkType: hard - -"argparse@npm:^2.0.1": - version: 2.0.1 - resolution: "argparse@npm:2.0.1" - checksum: 83644b56493e89a254bae05702abf3a1101b4fa4d0ca31df1c9985275a5a5bd47b3c27b7fa0b71098d41114d8ca000e6ed90cad764b306f8a503665e4d517ced - languageName: node - linkType: hard - -"aria-query@npm:^5.1.3": - version: 5.3.0 - resolution: "aria-query@npm:5.3.0" - dependencies: - dequal: ^2.0.3 - checksum: 305bd73c76756117b59aba121d08f413c7ff5e80fa1b98e217a3443fcddb9a232ee790e24e432b59ae7625aebcf4c47cb01c2cac872994f0b426f5bdfcd96ba9 - languageName: node - linkType: hard - -"array-buffer-byte-length@npm:^1.0.0": - version: 1.0.0 - resolution: "array-buffer-byte-length@npm:1.0.0" - dependencies: - call-bind: ^1.0.2 - is-array-buffer: ^3.0.1 - checksum: 044e101ce150f4804ad19c51d6c4d4cfa505c5b2577bd179256e4aa3f3f6a0a5e9874c78cd428ee566ac574c8a04d7ce21af9fe52e844abfdccb82b33035a7c3 - languageName: node - linkType: hard - -"array-flatten@npm:1.1.1": - version: 1.1.1 - resolution: "array-flatten@npm:1.1.1" - checksum: a9925bf3512d9dce202112965de90c222cd59a4fbfce68a0951d25d965cf44642931f40aac72309c41f12df19afa010ecadceb07cfff9ccc1621e99d89ab5f3b - languageName: node - linkType: hard - -"array-includes@npm:^3.1.6": - version: 3.1.6 - resolution: "array-includes@npm:3.1.6" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.1.4 - es-abstract: ^1.20.4 - get-intrinsic: ^1.1.3 - is-string: ^1.0.7 - checksum: f22f8cd8ba8a6448d91eebdc69f04e4e55085d09232b5216ee2d476dab3ef59984e8d1889e662c6a0ed939dcb1b57fd05b2c0209c3370942fc41b752c82a2ca5 - languageName: node - linkType: hard - -"array-union@npm:^2.1.0": - version: 2.1.0 - resolution: "array-union@npm:2.1.0" - checksum: 5bee12395cba82da674931df6d0fea23c4aa4660cb3b338ced9f828782a65caa232573e6bf3968f23e0c5eb301764a382cef2f128b170a9dc59de0e36c39f98d - languageName: node - linkType: hard - -"array.prototype.flat@npm:^1.3.1": - version: 1.3.1 - resolution: "array.prototype.flat@npm:1.3.1" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.1.4 - es-abstract: ^1.20.4 - es-shim-unscopables: ^1.0.0 - checksum: 5a8415949df79bf6e01afd7e8839bbde5a3581300e8ad5d8449dea52639e9e59b26a467665622783697917b43bf39940a6e621877c7dd9b3d1c1f97484b9b88b - languageName: node - linkType: hard - -"array.prototype.flatmap@npm:^1.3.1": - version: 1.3.1 - resolution: "array.prototype.flatmap@npm:1.3.1" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.1.4 - es-abstract: ^1.20.4 - es-shim-unscopables: ^1.0.0 - checksum: 8c1c43a4995f12cf12523436da28515184c753807b3f0bc2ca6c075f71c470b099e2090cc67dba8e5280958fea401c1d0c59e1db0143272aef6cd1103921a987 - languageName: node - linkType: hard - -"array.prototype.tosorted@npm:^1.1.1": - version: 1.1.1 - resolution: "array.prototype.tosorted@npm:1.1.1" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.1.4 - es-abstract: ^1.20.4 - es-shim-unscopables: ^1.0.0 - get-intrinsic: ^1.1.3 - checksum: 7923324a67e70a2fc0a6e40237405d92395e45ebd76f5cb89c2a5cf1e66b47aca6baacd0cd628ffd88830b90d47fff268071493d09c9ae123645613dac2c2ca3 - languageName: node - linkType: hard - -"asap@npm:^2.0.0, asap@npm:~2.0.3": - version: 2.0.6 - resolution: "asap@npm:2.0.6" - checksum: b296c92c4b969e973260e47523207cd5769abd27c245a68c26dc7a0fe8053c55bb04360237cb51cab1df52be939da77150ace99ad331fb7fb13b3423ed73ff3d - languageName: node - linkType: hard - -"assert-never@npm:^1.2.1": - version: 1.2.1 - resolution: "assert-never@npm:1.2.1" - checksum: ea4f1756d90f55254c4dc7a20d6c5d5bc169160562aefe3d8756b598c10e695daf568f21b6d6b12245d7f3782d3ff83ef6a01ab75d487adfc6909470a813bf8c - languageName: node - linkType: hard - -"ast-types-flow@npm:^0.0.7": - version: 0.0.7 - resolution: "ast-types-flow@npm:0.0.7" - checksum: a26dcc2182ffee111cad7c471759b0bda22d3b7ebacf27c348b22c55f16896b18ab0a4d03b85b4020dce7f3e634b8f00b593888f622915096ea1927fa51866c4 - languageName: node - linkType: hard - -"astral-regex@npm:^2.0.0": - version: 2.0.0 - resolution: "astral-regex@npm:2.0.0" - checksum: 876231688c66400473ba505731df37ea436e574dd524520294cc3bbc54ea40334865e01fa0d074d74d036ee874ee7e62f486ea38bc421ee8e6a871c06f011766 - languageName: node - linkType: hard - -"autoprefixer@npm:10.4.14": - version: 10.4.14 - resolution: "autoprefixer@npm:10.4.14" - dependencies: - browserslist: ^4.21.5 - caniuse-lite: ^1.0.30001464 - fraction.js: ^4.2.0 - normalize-range: ^0.1.2 - picocolors: ^1.0.0 - postcss-value-parser: ^4.2.0 - peerDependencies: - postcss: ^8.1.0 - bin: - autoprefixer: bin/autoprefixer - checksum: e9f18e664a4e4a54a8f4ec5f6b49ed228ec45afaa76efcae361c93721795dc5ab644f36d2fdfc0dea446b02a8067b9372f91542ea431994399e972781ed46d95 - languageName: node - linkType: hard - -"available-typed-arrays@npm:^1.0.5": - version: 1.0.5 - resolution: "available-typed-arrays@npm:1.0.5" - checksum: 20eb47b3cefd7db027b9bbb993c658abd36d4edd3fe1060e83699a03ee275b0c9b216cc076ff3f2db29073225fb70e7613987af14269ac1fe2a19803ccc97f1a - languageName: node - linkType: hard - -"axe-core@npm:^4.6.2": - version: 4.7.2 - resolution: "axe-core@npm:4.7.2" - checksum: 5d86fa0f45213b0e54cbb5d713ce885c4a8fe3a72b92dd915a47aa396d6fd149c4a87fec53aa978511f6d941402256cfeb26f2db35129e370f25a453c688655a - languageName: node - linkType: hard - -"axobject-query@npm:^3.1.1": - version: 3.2.1 - resolution: "axobject-query@npm:3.2.1" - dependencies: - dequal: ^2.0.3 - checksum: a94047e702b57c91680e6a952ec4a1aaa2cfd0d80ead76bc8c954202980d8c51968a6ea18b4d8010e8e2cf95676533d8022a8ebba9abc1dfe25686721df26fd2 - languageName: node - linkType: hard - -"b4a@npm:^1.6.4": - version: 1.6.4 - resolution: "b4a@npm:1.6.4" - checksum: 81b086f9af1f8845fbef4476307236bda3d660c158c201db976f19cdce05f41f93110ab6b12fd7a2696602a490cc43d5410ee36a56d6eef93afb0d6ca69ac3b2 - languageName: node - linkType: hard - -"babel-plugin-macros@npm:^3.1.0": - version: 3.1.0 - resolution: "babel-plugin-macros@npm:3.1.0" - dependencies: - "@babel/runtime": ^7.12.5 - cosmiconfig: ^7.0.0 - resolve: ^1.19.0 - checksum: 765de4abebd3e4688ebdfbff8571ddc8cd8061f839bb6c3e550b0344a4027b04c60491f843296ce3f3379fb356cc873d57a9ee6694262547eb822c14a25be9a6 - languageName: node - linkType: hard - -"babel-walk@npm:3.0.0-canary-5": - version: 3.0.0-canary-5 - resolution: "babel-walk@npm:3.0.0-canary-5" - dependencies: - "@babel/types": ^7.9.6 - checksum: 6fe7ee3889343a6602f665c28ea135956a0767d7f7ca5fc1d72c5243e2f6e9d8a64f51254bf2fd0cce47b79fceeccf7a357f37cfa755a509dfb930a21151837c - languageName: node - linkType: hard - -"balanced-match@npm:^1.0.0": - version: 1.0.2 - resolution: "balanced-match@npm:1.0.2" - checksum: 9706c088a283058a8a99e0bf91b0a2f75497f185980d9ffa8b304de1d9e58ebda7c72c07ebf01dadedaac5b2907b2c6f566f660d62bd336c3468e960403b9d65 - languageName: node - linkType: hard - -"base64-js@npm:^1.3.1": - version: 1.5.1 - resolution: "base64-js@npm:1.5.1" - checksum: 669632eb3745404c2f822a18fc3a0122d2f9a7a13f7fb8b5823ee19d1d2ff9ee5b52c53367176ea4ad093c332fd5ab4bd0ebae5a8e27917a4105a4cfc86b1005 - languageName: node - linkType: hard - -"base64id@npm:2.0.0, base64id@npm:~2.0.0": - version: 2.0.0 - resolution: "base64id@npm:2.0.0" - checksum: 581b1d37e6cf3738b7ccdd4d14fe2bfc5c238e696e2720ee6c44c183b838655842e22034e53ffd783f872a539915c51b0d4728a49c7cc678ac5a758e00d62168 - languageName: node - linkType: hard - -"batch@npm:0.6.1": - version: 0.6.1 - resolution: "batch@npm:0.6.1" - checksum: 61f9934c7378a51dce61b915586191078ef7f1c3eca707fdd58b96ff2ff56d9e0af2bdab66b1462301a73c73374239e6542d9821c0af787f3209a23365d07e7f - languageName: node - linkType: hard - -"big-integer@npm:^1.6.44": - version: 1.6.51 - resolution: "big-integer@npm:1.6.51" - checksum: 3d444173d1b2e20747e2c175568bedeebd8315b0637ea95d75fd27830d3b8e8ba36c6af40374f36bdaea7b5de376dcada1b07587cb2a79a928fccdb6e6e3c518 - languageName: node - linkType: hard - -"big.js@npm:^5.2.2": - version: 5.2.2 - resolution: "big.js@npm:5.2.2" - checksum: b89b6e8419b097a8fb4ed2399a1931a68c612bce3cfd5ca8c214b2d017531191070f990598de2fc6f3f993d91c0f08aa82697717f6b3b8732c9731866d233c9e - languageName: node - linkType: hard - -"binary-extensions@npm:^2.0.0": - version: 2.2.0 - resolution: "binary-extensions@npm:2.2.0" - checksum: ccd267956c58d2315f5d3ea6757cf09863c5fc703e50fbeb13a7dc849b812ef76e3cf9ca8f35a0c48498776a7478d7b4a0418e1e2b8cb9cb9731f2922aaad7f8 - languageName: node - linkType: hard - -"bl@npm:^4.0.3": - version: 4.1.0 - resolution: "bl@npm:4.1.0" - dependencies: - buffer: ^5.5.0 - inherits: ^2.0.4 - readable-stream: ^3.4.0 - checksum: 9e8521fa7e83aa9427c6f8ccdcba6e8167ef30cc9a22df26effcc5ab682ef91d2cbc23a239f945d099289e4bbcfae7a192e9c28c84c6202e710a0dfec3722662 - languageName: node - linkType: hard - -"body-parser@npm:1.20.1": - version: 1.20.1 - resolution: "body-parser@npm:1.20.1" - dependencies: - bytes: 3.1.2 - content-type: ~1.0.4 - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - http-errors: 2.0.0 - iconv-lite: 0.4.24 - on-finished: 2.4.1 - qs: 6.11.0 - raw-body: 2.5.1 - type-is: ~1.6.18 - unpipe: 1.0.0 - checksum: f1050dbac3bede6a78f0b87947a8d548ce43f91ccc718a50dd774f3c81f2d8b04693e52acf62659fad23101827dd318da1fb1363444ff9a8482b886a3e4a5266 - languageName: node - linkType: hard - -"body-parser@npm:^1.20.1": - version: 1.20.2 - resolution: "body-parser@npm:1.20.2" - dependencies: - bytes: 3.1.2 - content-type: ~1.0.5 - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - http-errors: 2.0.0 - iconv-lite: 0.4.24 - on-finished: 2.4.1 - qs: 6.11.0 - raw-body: 2.5.2 - type-is: ~1.6.18 - unpipe: 1.0.0 - checksum: 14d37ec638ab5c93f6099ecaed7f28f890d222c650c69306872e00b9efa081ff6c596cd9afb9930656aae4d6c4e1c17537bea12bb73c87a217cb3cfea8896737 - languageName: node - linkType: hard - -"bplist-parser@npm:^0.2.0": - version: 0.2.0 - resolution: "bplist-parser@npm:0.2.0" - dependencies: - big-integer: ^1.6.44 - checksum: d5339dd16afc51de6c88f88f58a45b72ed6a06aa31f5557d09877575f220b7c1d3fbe375da0b62e6a10d4b8ed80523567e351f24014f5bc886ad523758142cdd - languageName: node - linkType: hard - -"brace-expansion@npm:^1.1.7": - version: 1.1.11 - resolution: "brace-expansion@npm:1.1.11" - dependencies: - balanced-match: ^1.0.0 - concat-map: 0.0.1 - checksum: faf34a7bb0c3fcf4b59c7808bc5d2a96a40988addf2e7e09dfbb67a2251800e0d14cd2bfc1aa79174f2f5095c54ff27f46fb1289fe2d77dac755b5eb3434cc07 - languageName: node - linkType: hard - -"brace-expansion@npm:^2.0.1": - version: 2.0.1 - resolution: "brace-expansion@npm:2.0.1" - dependencies: - balanced-match: ^1.0.0 - checksum: a61e7cd2e8a8505e9f0036b3b6108ba5e926b4b55089eeb5550cd04a471fe216c96d4fe7e4c7f995c728c554ae20ddfc4244cad10aef255e72b62930afd233d1 - languageName: node - linkType: hard - -"braces@npm:^3.0.2, braces@npm:~3.0.2": - version: 3.0.2 - resolution: "braces@npm:3.0.2" - dependencies: - fill-range: ^7.0.1 - checksum: e2a8e769a863f3d4ee887b5fe21f63193a891c68b612ddb4b68d82d1b5f3ff9073af066c343e9867a393fe4c2555dcb33e89b937195feb9c1613d259edfcd459 - languageName: node - linkType: hard - -"browserslist@npm:^4.14.5, browserslist@npm:^4.21.5": - version: 4.21.9 - resolution: "browserslist@npm:4.21.9" - dependencies: - caniuse-lite: ^1.0.30001503 - electron-to-chromium: ^1.4.431 - node-releases: ^2.0.12 - update-browserslist-db: ^1.0.11 - bin: - browserslist: cli.js - checksum: 80d3820584e211484ad1b1a5cfdeca1dd00442f47be87e117e1dda34b628c87e18b81ae7986fa5977b3e6a03154f6d13cd763baa6b8bf5dd9dd19f4926603698 - languageName: node - linkType: hard - -"buffer-from@npm:^1.0.0": - version: 1.1.2 - resolution: "buffer-from@npm:1.1.2" - checksum: 0448524a562b37d4d7ed9efd91685a5b77a50672c556ea254ac9a6d30e3403a517d8981f10e565db24e8339413b43c97ca2951f10e399c6125a0d8911f5679bb - languageName: node - linkType: hard - -"buffer@npm:^5.5.0": - version: 5.7.1 - resolution: "buffer@npm:5.7.1" - dependencies: - base64-js: ^1.3.1 - ieee754: ^1.1.13 - checksum: e2cf8429e1c4c7b8cbd30834ac09bd61da46ce35f5c22a78e6c2f04497d6d25541b16881e30a019c6fd3154150650ccee27a308eff3e26229d788bbdeb08ab84 - languageName: node - linkType: hard - -"bundle-name@npm:^3.0.0": - version: 3.0.0 - resolution: "bundle-name@npm:3.0.0" - dependencies: - run-applescript: ^5.0.0 - checksum: edf2b1fbe6096ed32e7566947ace2ea937ee427391744d7510a2880c4b9a5b3543d3f6c551236a29e5c87d3195f8e2912516290e638c15bcbede7b37cc375615 - languageName: node - linkType: hard - -"busboy@npm:1.6.0": - version: 1.6.0 - resolution: "busboy@npm:1.6.0" - dependencies: - streamsearch: ^1.1.0 - checksum: 32801e2c0164e12106bf236291a00795c3c4e4b709ae02132883fe8478ba2ae23743b11c5735a0aae8afe65ac4b6ca4568b91f0d9fed1fdbc32ede824a73746e - languageName: node - linkType: hard - -"bytes@npm:3.0.0": - version: 3.0.0 - resolution: "bytes@npm:3.0.0" - checksum: a2b386dd8188849a5325f58eef69c3b73c51801c08ffc6963eddc9be244089ba32d19347caf6d145c86f315ae1b1fc7061a32b0c1aa6379e6a719090287ed101 - languageName: node - linkType: hard - -"bytes@npm:3.1.2": - version: 3.1.2 - resolution: "bytes@npm:3.1.2" - checksum: e4bcd3948d289c5127591fbedf10c0b639ccbf00243504e4e127374a15c3bc8eed0d28d4aaab08ff6f1cf2abc0cce6ba3085ed32f4f90e82a5683ce0014e1b6e - languageName: node - linkType: hard - -"cacache@npm:^17.0.0": - version: 17.1.3 - resolution: "cacache@npm:17.1.3" - dependencies: - "@npmcli/fs": ^3.1.0 - fs-minipass: ^3.0.0 - glob: ^10.2.2 - lru-cache: ^7.7.1 - minipass: ^5.0.0 - minipass-collect: ^1.0.2 - minipass-flush: ^1.0.5 - minipass-pipeline: ^1.2.4 - p-map: ^4.0.0 - ssri: ^10.0.0 - tar: ^6.1.11 - unique-filename: ^3.0.0 - checksum: 385756781e1e21af089160d89d7462b7ed9883c978e848c7075b90b73cb823680e66092d61513050164588387d2ca87dd6d910e28d64bc13a9ac82cd8580c796 - languageName: node - linkType: hard - -"call-bind@npm:^1.0.0, call-bind@npm:^1.0.2": - version: 1.0.2 - resolution: "call-bind@npm:1.0.2" - dependencies: - function-bind: ^1.1.1 - get-intrinsic: ^1.0.2 - checksum: f8e31de9d19988a4b80f3e704788c4a2d6b6f3d17cfec4f57dc29ced450c53a49270dc66bf0fbd693329ee948dd33e6c90a329519aef17474a4d961e8d6426b0 - languageName: node - linkType: hard - -"callsites@npm:^3.0.0": - version: 3.1.0 - resolution: "callsites@npm:3.1.0" - checksum: 072d17b6abb459c2ba96598918b55868af677154bec7e73d222ef95a8fdb9bbf7dae96a8421085cdad8cd190d86653b5b6dc55a4484f2e5b2e27d5e0c3fc15b3 - languageName: node - linkType: hard - -"camelcase-css@npm:^2.0.1": - version: 2.0.1 - resolution: "camelcase-css@npm:2.0.1" - checksum: 1cec2b3b3dcb5026688a470b00299a8db7d904c4802845c353dbd12d9d248d3346949a814d83bfd988d4d2e5b9904c07efe76fecd195a1d4f05b543e7c0b56b1 - languageName: node - linkType: hard - -"caniuse-lite@npm:^1.0.30001406, caniuse-lite@npm:^1.0.30001464, caniuse-lite@npm:^1.0.30001503": - version: 1.0.30001515 - resolution: "caniuse-lite@npm:1.0.30001515" - checksum: ec5d51785aea6af5cf62ca9d35821d36ab7fa0f85e3e7f752d532025ad59e07131fa3cb3a0a6c486b5ac8620c8c3440e761dc5b38c990d49c17655906f216123 - languageName: node - linkType: hard - -"chalk@npm:5.2.0": - version: 5.2.0 - resolution: "chalk@npm:5.2.0" - checksum: 03d8060277de6cf2fd567dc25fcf770593eb5bb85f460ce443e49255a30ff1242edd0c90a06a03803b0466ff0687a939b41db1757bec987113e83de89a003caa - languageName: node - linkType: hard - -"chalk@npm:^2.0.0": - version: 2.4.2 - resolution: "chalk@npm:2.4.2" - dependencies: - ansi-styles: ^3.2.1 - escape-string-regexp: ^1.0.5 - supports-color: ^5.3.0 - checksum: ec3661d38fe77f681200f878edbd9448821924e0f93a9cefc0e26a33b145f1027a2084bf19967160d11e1f03bfe4eaffcabf5493b89098b2782c3fe0b03d80c2 - languageName: node - linkType: hard - -"chalk@npm:^4.0.0": - version: 4.1.2 - resolution: "chalk@npm:4.1.2" - dependencies: - ansi-styles: ^4.1.0 - supports-color: ^7.1.0 - checksum: fe75c9d5c76a7a98d45495b91b2172fa3b7a09e0cc9370e5c8feb1c567b85c4288e2b3fded7cfdd7359ac28d6b3844feb8b82b8686842e93d23c827c417e83fc - languageName: node - linkType: hard - -"character-parser@npm:^2.2.0": - version: 2.2.0 - resolution: "character-parser@npm:2.2.0" - dependencies: - is-regex: ^1.0.3 - checksum: 71826fae509d4dc3ef07c2e824da9c8853f910ba0d8fe699edaab263051fd3b8db77bb96e46ed896bb36ed1d86108e6d6ceedff436bec7786ba7f0b585a0bc93 - languageName: node - linkType: hard - -"chokidar@npm:^3.5.3": - version: 3.5.3 - resolution: "chokidar@npm:3.5.3" - dependencies: - anymatch: ~3.1.2 - braces: ~3.0.2 - fsevents: ~2.3.2 - glob-parent: ~5.1.2 - is-binary-path: ~2.1.0 - is-glob: ~4.0.1 - normalize-path: ~3.0.0 - readdirp: ~3.6.0 - dependenciesMeta: - fsevents: - optional: true - checksum: b49fcde40176ba007ff361b198a2d35df60d9bb2a5aab228279eb810feae9294a6b4649ab15981304447afe1e6ffbf4788ad5db77235dc770ab777c6e771980c - languageName: node - linkType: hard - -"chownr@npm:^1.1.1": - version: 1.1.4 - resolution: "chownr@npm:1.1.4" - checksum: 115648f8eb38bac5e41c3857f3e663f9c39ed6480d1349977c4d96c95a47266fcacc5a5aabf3cb6c481e22d72f41992827db47301851766c4fd77ac21a4f081d - languageName: node - linkType: hard - -"chownr@npm:^2.0.0": - version: 2.0.0 - resolution: "chownr@npm:2.0.0" - checksum: c57cf9dd0791e2f18a5ee9c1a299ae6e801ff58fee96dc8bfd0dcb4738a6ce58dd252a3605b1c93c6418fe4f9d5093b28ffbf4d66648cb2a9c67eaef9679be2f - languageName: node - linkType: hard - -"chrome-trace-event@npm:^1.0.2": - version: 1.0.3 - resolution: "chrome-trace-event@npm:1.0.3" - checksum: cb8b1fc7e881aaef973bd0c4a43cd353c2ad8323fb471a041e64f7c2dd849cde4aad15f8b753331a32dda45c973f032c8a03b8177fc85d60eaa75e91e08bfb97 - languageName: node - linkType: hard - -"clean-stack@npm:^2.0.0": - version: 2.2.0 - resolution: "clean-stack@npm:2.2.0" - checksum: 2ac8cd2b2f5ec986a3c743935ec85b07bc174d5421a5efc8017e1f146a1cf5f781ae962618f416352103b32c9cd7e203276e8c28241bbe946160cab16149fb68 - languageName: node - linkType: hard - -"cli-cursor@npm:^3.1.0": - version: 3.1.0 - resolution: "cli-cursor@npm:3.1.0" - dependencies: - restore-cursor: ^3.1.0 - checksum: 2692784c6cd2fd85cfdbd11f53aea73a463a6d64a77c3e098b2b4697a20443f430c220629e1ca3b195ea5ac4a97a74c2ee411f3807abf6df2b66211fec0c0a29 - languageName: node - linkType: hard - -"cli-truncate@npm:^2.1.0": - version: 2.1.0 - resolution: "cli-truncate@npm:2.1.0" - dependencies: - slice-ansi: ^3.0.0 - string-width: ^4.2.0 - checksum: bf1e4e6195392dc718bf9cd71f317b6300dc4a9191d052f31046b8773230ece4fa09458813bf0e3455a5e68c0690d2ea2c197d14a8b85a7b5e01c97f4b5feb5d - languageName: node - linkType: hard - -"cli-truncate@npm:^3.1.0": - version: 3.1.0 - resolution: "cli-truncate@npm:3.1.0" - dependencies: - slice-ansi: ^5.0.0 - string-width: ^5.0.0 - checksum: c3243e41974445691c63f8b405df1d5a24049dc33d324fe448dc572e561a7b772ae982692900b1a5960901cc4fc7def25a629b9c69a4208ee89d12ab3332617a - languageName: node - linkType: hard - -"client-only@npm:0.0.1": - version: 0.0.1 - resolution: "client-only@npm:0.0.1" - checksum: 0c16bf660dadb90610553c1d8946a7fdfb81d624adea073b8440b7d795d5b5b08beb3c950c6a2cf16279365a3265158a236876d92bce16423c485c322d7dfaf8 - languageName: node - linkType: hard - -"clone-deep@npm:^4.0.1": - version: 4.0.1 - resolution: "clone-deep@npm:4.0.1" - dependencies: - is-plain-object: ^2.0.4 - kind-of: ^6.0.2 - shallow-clone: ^3.0.0 - checksum: 770f912fe4e6f21873c8e8fbb1e99134db3b93da32df271d00589ea4a29dbe83a9808a322c93f3bcaf8584b8b4fa6fc269fc8032efbaa6728e0c9886c74467d2 - languageName: node - linkType: hard - -"clsx@npm:^1.2.1": - version: 1.2.1 - resolution: "clsx@npm:1.2.1" - checksum: 30befca8019b2eb7dbad38cff6266cf543091dae2825c856a62a8ccf2c3ab9c2907c4d12b288b73101196767f66812365400a227581484a05f968b0307cfaf12 - languageName: node - linkType: hard - -"cluster-key-slot@npm:^1.1.0": - version: 1.1.2 - resolution: "cluster-key-slot@npm:1.1.2" - checksum: be0ad2d262502adc998597e83f9ded1b80f827f0452127c5a37b22dfca36bab8edf393f7b25bb626006fb9fb2436106939ede6d2d6ecf4229b96a47f27edd681 - languageName: node - linkType: hard - -"color-convert@npm:^1.9.0": - version: 1.9.3 - resolution: "color-convert@npm:1.9.3" - dependencies: - color-name: 1.1.3 - checksum: fd7a64a17cde98fb923b1dd05c5f2e6f7aefda1b60d67e8d449f9328b4e53b228a428fd38bfeaeb2db2ff6b6503a776a996150b80cdf224062af08a5c8a3a203 - languageName: node - linkType: hard - -"color-convert@npm:^2.0.1": - version: 2.0.1 - resolution: "color-convert@npm:2.0.1" - dependencies: - color-name: ~1.1.4 - checksum: 79e6bdb9fd479a205c71d89574fccfb22bd9053bd98c6c4d870d65c132e5e904e6034978e55b43d69fcaa7433af2016ee203ce76eeba9cfa554b373e7f7db336 - languageName: node - linkType: hard - -"color-name@npm:1.1.3": - version: 1.1.3 - resolution: "color-name@npm:1.1.3" - checksum: 09c5d3e33d2105850153b14466501f2bfb30324a2f76568a408763a3b7433b0e50e5b4ab1947868e65cb101bb7cb75029553f2c333b6d4b8138a73fcc133d69d - languageName: node - linkType: hard - -"color-name@npm:^1.0.0, color-name@npm:~1.1.4": - version: 1.1.4 - resolution: "color-name@npm:1.1.4" - checksum: b0445859521eb4021cd0fb0cc1a75cecf67fceecae89b63f62b201cca8d345baf8b952c966862a9d9a2632987d4f6581f0ec8d957dfacece86f0a7919316f610 - languageName: node - linkType: hard - -"color-string@npm:^1.9.0": - version: 1.9.1 - resolution: "color-string@npm:1.9.1" - dependencies: - color-name: ^1.0.0 - simple-swizzle: ^0.2.2 - checksum: c13fe7cff7885f603f49105827d621ce87f4571d78ba28ef4a3f1a104304748f620615e6bf065ecd2145d0d9dad83a3553f52bb25ede7239d18e9f81622f1cc5 - languageName: node - linkType: hard - -"color-support@npm:^1.1.3": - version: 1.1.3 - resolution: "color-support@npm:1.1.3" - bin: - color-support: bin.js - checksum: 9b7356817670b9a13a26ca5af1c21615463b500783b739b7634a0c2047c16cef4b2865d7576875c31c3cddf9dd621fa19285e628f20198b233a5cfdda6d0793b - languageName: node - linkType: hard - -"color@npm:^4.2.3": - version: 4.2.3 - resolution: "color@npm:4.2.3" - dependencies: - color-convert: ^2.0.1 - color-string: ^1.9.0 - checksum: 0579629c02c631b426780038da929cca8e8d80a40158b09811a0112a107c62e10e4aad719843b791b1e658ab4e800558f2e87ca4522c8b32349d497ecb6adeb4 - languageName: node - linkType: hard - -"colorette@npm:^2.0.14, colorette@npm:^2.0.19": - version: 2.0.20 - resolution: "colorette@npm:2.0.20" - checksum: 0c016fea2b91b733eb9f4bcdb580018f52c0bc0979443dad930e5037a968237ac53d9beb98e218d2e9235834f8eebce7f8e080422d6194e957454255bde71d3d - languageName: node - linkType: hard - -"commander@npm:^10.0.0, commander@npm:^10.0.1": - version: 10.0.1 - resolution: "commander@npm:10.0.1" - checksum: 436901d64a818295803c1996cd856621a74f30b9f9e28a588e726b2b1670665bccd7c1a77007ebf328729f0139838a88a19265858a0fa7a8728c4656796db948 - languageName: node - linkType: hard - -"commander@npm:^2.20.0": - version: 2.20.3 - resolution: "commander@npm:2.20.3" - checksum: ab8c07884e42c3a8dbc5dd9592c606176c7eb5c1ca5ff274bcf907039b2c41de3626f684ea75ccf4d361ba004bbaff1f577d5384c155f3871e456bdf27becf9e - languageName: node - linkType: hard - -"commander@npm:^4.0.0": - version: 4.1.1 - resolution: "commander@npm:4.1.1" - checksum: d7b9913ff92cae20cb577a4ac6fcc121bd6223319e54a40f51a14740a681ad5c574fd29a57da478a5f234a6fa6c52cbf0b7c641353e03c648b1ae85ba670b977 - languageName: node - linkType: hard - -"compressible@npm:~2.0.16": - version: 2.0.18 - resolution: "compressible@npm:2.0.18" - dependencies: - mime-db: ">= 1.43.0 < 2" - checksum: 58321a85b375d39230405654721353f709d0c1442129e9a17081771b816302a012471a9b8f4864c7dbe02eef7f2aaac3c614795197092262e94b409c9be108f0 - languageName: node - linkType: hard - -"compression@npm:^1.7.4": - version: 1.7.4 - resolution: "compression@npm:1.7.4" - dependencies: - accepts: ~1.3.5 - bytes: 3.0.0 - compressible: ~2.0.16 - debug: 2.6.9 - on-headers: ~1.0.2 - safe-buffer: 5.1.2 - vary: ~1.1.2 - checksum: 35c0f2eb1f28418978615dc1bc02075b34b1568f7f56c62d60f4214d4b7cc00d0f6d282b5f8a954f59872396bd770b6b15ffd8aa94c67d4bce9b8887b906999b - languageName: node - linkType: hard - -"concat-map@npm:0.0.1": - version: 0.0.1 - resolution: "concat-map@npm:0.0.1" - checksum: 902a9f5d8967a3e2faf138d5cb784b9979bad2e6db5357c5b21c568df4ebe62bcb15108af1b2253744844eb964fc023fbd9afbbbb6ddd0bcc204c6fb5b7bf3af - languageName: node - linkType: hard - -"connect-redis@npm:^6.1.3": - version: 6.1.3 - resolution: "connect-redis@npm:6.1.3" - checksum: 1f61616e2ae7ad097b6553e45d683eeb309ac2e601ac49d721c6c0069fd96fbcfb46ee1c0e210b264b720dcd385201d30ff55ccf5deb11ee1529810890561b58 - languageName: node - linkType: hard - -"console-control-strings@npm:^1.1.0": - version: 1.1.0 - resolution: "console-control-strings@npm:1.1.0" - checksum: 8755d76787f94e6cf79ce4666f0c5519906d7f5b02d4b884cf41e11dcd759ed69c57da0670afd9236d229a46e0f9cf519db0cd829c6dca820bb5a5c3def584ed - languageName: node - linkType: hard - -"constantinople@npm:^4.0.1": - version: 4.0.1 - resolution: "constantinople@npm:4.0.1" - dependencies: - "@babel/parser": ^7.6.0 - "@babel/types": ^7.6.1 - checksum: 8f70f16ddf97cdc263ca16b398bc52470c25e2ec5ed27bc015f251b849597223ce3a123e6924f43efddeb75422c1f55b7e56e0e2e594e4dd2964bfc9392b9b82 - languageName: node - linkType: hard - -"content-disposition@npm:0.5.4": - version: 0.5.4 - resolution: "content-disposition@npm:0.5.4" - dependencies: - safe-buffer: 5.2.1 - checksum: afb9d545e296a5171d7574fcad634b2fdf698875f4006a9dd04a3e1333880c5c0c98d47b560d01216fb6505a54a2ba6a843ee3a02ec86d7e911e8315255f56c3 - languageName: node - linkType: hard - -"content-type@npm:~1.0.4, content-type@npm:~1.0.5": - version: 1.0.5 - resolution: "content-type@npm:1.0.5" - checksum: 566271e0a251642254cde0f845f9dd4f9856e52d988f4eb0d0dcffbb7a1f8ec98de7a5215fc628f3bce30fe2fb6fd2bc064b562d721658c59b544e2d34ea2766 - languageName: node - linkType: hard - -"convert-source-map@npm:^1.5.0": - version: 1.9.0 - resolution: "convert-source-map@npm:1.9.0" - checksum: dc55a1f28ddd0e9485ef13565f8f756b342f9a46c4ae18b843fe3c30c675d058d6a4823eff86d472f187b176f0adf51ea7b69ea38be34be4a63cbbf91b0593c8 - languageName: node - linkType: hard - -"cookie-parser@npm:^1.4.6": - version: 1.4.6 - resolution: "cookie-parser@npm:1.4.6" - dependencies: - cookie: 0.4.1 - cookie-signature: 1.0.6 - checksum: 1e5a63aa82e8eb4e02d2977c6902983dee87b02e87ec5ec43ac3cb1e72da354003716570cd5190c0ad9e8a454c9d3237f4ad6e2f16d0902205a96a1c72b77ba5 - languageName: node - linkType: hard - -"cookie-signature@npm:1.0.6": - version: 1.0.6 - resolution: "cookie-signature@npm:1.0.6" - checksum: f4e1b0a98a27a0e6e66fd7ea4e4e9d8e038f624058371bf4499cfcd8f3980be9a121486995202ba3fca74fbed93a407d6d54d43a43f96fd28d0bd7a06761591a - languageName: node - linkType: hard - -"cookie@npm:0.4.0": - version: 0.4.0 - resolution: "cookie@npm:0.4.0" - checksum: 760384ba0aef329c52523747e36a452b5e51bc49b34160363a6934e7b7df3f93fcc88b35e33450361535d40a92a96412da870e1816aba9aa6cc556a9fedd8492 - languageName: node - linkType: hard - -"cookie@npm:0.4.1": - version: 0.4.1 - resolution: "cookie@npm:0.4.1" - checksum: bd7c47f5d94ab70ccdfe8210cde7d725880d2fcda06d8e375afbdd82de0c8d3b73541996e9ce57d35f67f672c4ee6d60208adec06b3c5fc94cebb85196084cf8 - languageName: node - linkType: hard - -"cookie@npm:0.4.2, cookie@npm:~0.4.1": - version: 0.4.2 - resolution: "cookie@npm:0.4.2" - checksum: a00833c998bedf8e787b4c342defe5fa419abd96b32f4464f718b91022586b8f1bafbddd499288e75c037642493c83083da426c6a9080d309e3bd90fd11baa9b - languageName: node - linkType: hard - -"cookie@npm:0.5.0": - version: 0.5.0 - resolution: "cookie@npm:0.5.0" - checksum: 1f4bd2ca5765f8c9689a7e8954183f5332139eb72b6ff783d8947032ec1fdf43109852c178e21a953a30c0dd42257828185be01b49d1eb1a67fd054ca588a180 - languageName: node - linkType: hard - -"copy-anything@npm:^3.0.2": - version: 3.0.5 - resolution: "copy-anything@npm:3.0.5" - dependencies: - is-what: ^4.1.8 - checksum: d39f6601c16b7cbd81cdb1c1f40f2bf0f2ca0297601cf7bfbb4ef1d85374a6a89c559502329f5bada36604464df17623e111fe19a9bb0c3f6b1c92fe2cbe972f - languageName: node - linkType: hard - -"cors@npm:~2.8.5": - version: 2.8.5 - resolution: "cors@npm:2.8.5" - dependencies: - object-assign: ^4 - vary: ^1 - checksum: ced838404ccd184f61ab4fdc5847035b681c90db7ac17e428f3d81d69e2989d2b680cc254da0e2554f5ed4f8a341820a1ce3d1c16b499f6e2f47a1b9b07b5006 - languageName: node - linkType: hard - -"cosmiconfig@npm:^7.0.0": - version: 7.1.0 - resolution: "cosmiconfig@npm:7.1.0" - dependencies: - "@types/parse-json": ^4.0.0 - import-fresh: ^3.2.1 - parse-json: ^5.0.0 - path-type: ^4.0.0 - yaml: ^1.10.0 - checksum: c53bf7befc1591b2651a22414a5e786cd5f2eeaa87f3678a3d49d6069835a9d8d1aef223728e98aa8fec9a95bf831120d245096db12abe019fecb51f5696c96f - languageName: node - linkType: hard - -"cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.2, cross-spawn@npm:^7.0.3": - version: 7.0.3 - resolution: "cross-spawn@npm:7.0.3" - dependencies: - path-key: ^3.1.0 - shebang-command: ^2.0.0 - which: ^2.0.1 - checksum: 671cc7c7288c3a8406f3c69a3ae2fc85555c04169e9d611def9a675635472614f1c0ed0ef80955d5b6d4e724f6ced67f0ad1bb006c2ea643488fcfef994d7f52 - languageName: node - linkType: hard - -"csrf@npm:3.1.0": - version: 3.1.0 - resolution: "csrf@npm:3.1.0" - dependencies: - rndm: 1.2.0 - tsscmp: 1.0.6 - uid-safe: 2.1.5 - checksum: bb151ccd76203bf4d443d01c63a9122cdcc3e7c6c6213518d836c440a4a9fc05543078086e45add14c0c1e1d57592068967b8ec9cc1fa67c01a49474c988c4e9 - languageName: node - linkType: hard - -"cssesc@npm:^3.0.0": - version: 3.0.0 - resolution: "cssesc@npm:3.0.0" - bin: - cssesc: bin/cssesc - checksum: f8c4ababffbc5e2ddf2fa9957dda1ee4af6048e22aeda1869d0d00843223c1b13ad3f5d88b51caa46c994225eacb636b764eb807a8883e2fb6f99b4f4e8c48b2 - languageName: node - linkType: hard - -"csstype@npm:^3.0.2, csstype@npm:^3.1.2": - version: 3.1.2 - resolution: "csstype@npm:3.1.2" - checksum: e1a52e6c25c1314d6beef5168da704ab29c5186b877c07d822bd0806717d9a265e8493a2e35ca7e68d0f5d472d43fac1cdce70fd79fd0853dff81f3028d857b5 - languageName: node - linkType: hard - -"csurf@npm:^1.11.0": - version: 1.11.0 - resolution: "csurf@npm:1.11.0" - dependencies: - cookie: 0.4.0 - cookie-signature: 1.0.6 - csrf: 3.1.0 - http-errors: ~1.7.3 - checksum: c41a1ec593000301f8ad57b8b43c13520c9939af61e0ed2d03f753f69870478ba40f874c02349312ff001c2d349421b649aef4af222b3c699bb10f1d98ce2860 - languageName: node - linkType: hard - -"damerau-levenshtein@npm:^1.0.8": - version: 1.0.8 - resolution: "damerau-levenshtein@npm:1.0.8" - checksum: d240b7757544460ae0586a341a53110ab0a61126570ef2d8c731e3eab3f0cb6e488e2609e6a69b46727635de49be20b071688698744417ff1b6c1d7ccd03e0de - languageName: node - linkType: hard - -"debug@npm:2.6.9": - version: 2.6.9 - resolution: "debug@npm:2.6.9" - dependencies: - ms: 2.0.0 - checksum: d2f51589ca66df60bf36e1fa6e4386b318c3f1e06772280eea5b1ae9fd3d05e9c2b7fd8a7d862457d00853c75b00451aa2d7459b924629ee385287a650f58fe6 - languageName: node - linkType: hard - -"debug@npm:3.1.0": - version: 3.1.0 - resolution: "debug@npm:3.1.0" - dependencies: - ms: 2.0.0 - checksum: 0b52718ab957254a5b3ca07fc34543bc778f358620c206a08452251eb7fc193c3ea3505072acbf4350219c14e2d71ceb7bdaa0d3370aa630b50da790458d08b3 - languageName: node - linkType: hard - -"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:~4.3.1, debug@npm:~4.3.2": - version: 4.3.4 - resolution: "debug@npm:4.3.4" - dependencies: - ms: 2.1.2 - peerDependenciesMeta: - supports-color: - optional: true - checksum: 3dbad3f94ea64f34431a9cbf0bafb61853eda57bff2880036153438f50fb5a84f27683ba0d8e5426bf41a8c6ff03879488120cf5b3a761e77953169c0600a708 - languageName: node - linkType: hard - -"debug@npm:^3.2.7": - version: 3.2.7 - resolution: "debug@npm:3.2.7" - dependencies: - ms: ^2.1.1 - checksum: b3d8c5940799914d30314b7c3304a43305fd0715581a919dacb8b3176d024a782062368405b47491516d2091d6462d4d11f2f4974a405048094f8bfebfa3071c - languageName: node - linkType: hard - -"decompress-response@npm:^6.0.0": - version: 6.0.0 - resolution: "decompress-response@npm:6.0.0" - dependencies: - mimic-response: ^3.1.0 - checksum: d377cf47e02d805e283866c3f50d3d21578b779731e8c5072d6ce8c13cc31493db1c2f6784da9d1d5250822120cefa44f1deab112d5981015f2e17444b763812 - languageName: node - linkType: hard - -"deep-extend@npm:^0.6.0": - version: 0.6.0 - resolution: "deep-extend@npm:0.6.0" - checksum: 7be7e5a8d468d6b10e6a67c3de828f55001b6eb515d014f7aeb9066ce36bd5717161eb47d6a0f7bed8a9083935b465bc163ee2581c8b128d29bf61092fdf57a7 - languageName: node - linkType: hard - -"deep-is@npm:^0.1.3": - version: 0.1.4 - resolution: "deep-is@npm:0.1.4" - checksum: edb65dd0d7d1b9c40b2f50219aef30e116cedd6fc79290e740972c132c09106d2e80aa0bc8826673dd5a00222d4179c84b36a790eef63a4c4bca75a37ef90804 - languageName: node - linkType: hard - -"default-browser-id@npm:^3.0.0": - version: 3.0.0 - resolution: "default-browser-id@npm:3.0.0" - dependencies: - bplist-parser: ^0.2.0 - untildify: ^4.0.0 - checksum: 279c7ad492542e5556336b6c254a4eaf31b2c63a5433265655ae6e47301197b6cfb15c595a6fdc6463b2ff8e1a1a1ed3cba56038a60e1527ba4ab1628c6b9941 - languageName: node - linkType: hard - -"default-browser@npm:^4.0.0": - version: 4.0.0 - resolution: "default-browser@npm:4.0.0" - dependencies: - bundle-name: ^3.0.0 - default-browser-id: ^3.0.0 - execa: ^7.1.1 - titleize: ^3.0.0 - checksum: 40c5af984799042b140300be5639c9742599bda76dc9eba5ac9ad5943c83dd36cebc4471eafcfddf8e0ec817166d5ba89d56f08e66a126c7c7908a179cead1a7 - languageName: node - linkType: hard - -"define-lazy-prop@npm:^3.0.0": - version: 3.0.0 - resolution: "define-lazy-prop@npm:3.0.0" - checksum: 54884f94caac0791bf6395a3ec530ce901cf71c47b0196b8754f3fd17edb6c0e80149c1214429d851873bb0d689dbe08dcedbb2306dc45c8534a5934723851b6 - languageName: node - linkType: hard - -"define-properties@npm:^1.1.3, define-properties@npm:^1.1.4, define-properties@npm:^1.2.0": - version: 1.2.0 - resolution: "define-properties@npm:1.2.0" - dependencies: - has-property-descriptors: ^1.0.0 - object-keys: ^1.1.1 - checksum: e60aee6a19b102df4e2b1f301816804e81ab48bb91f00d0d935f269bf4b3f79c88b39e4f89eaa132890d23267335fd1140dfcd8d5ccd61031a0a2c41a54e33a6 - languageName: node - linkType: hard - -"delegates@npm:^1.0.0": - version: 1.0.0 - resolution: "delegates@npm:1.0.0" - checksum: a51744d9b53c164ba9c0492471a1a2ffa0b6727451bdc89e31627fdf4adda9d51277cfcbfb20f0a6f08ccb3c436f341df3e92631a3440226d93a8971724771fd - languageName: node - linkType: hard - -"denque@npm:^2.1.0": - version: 2.1.0 - resolution: "denque@npm:2.1.0" - checksum: 1d4ae1d05e59ac3a3481e7b478293f4b4c813819342273f3d5b826c7ffa9753c520919ba264f377e09108d24ec6cf0ec0ac729a5686cbb8f32d797126c5dae74 - languageName: node - linkType: hard - -"depd@npm:2.0.0, depd@npm:^2.0.0, depd@npm:~2.0.0": - version: 2.0.0 - resolution: "depd@npm:2.0.0" - checksum: abbe19c768c97ee2eed6282d8ce3031126662252c58d711f646921c9623f9052e3e1906443066beec1095832f534e57c523b7333f8e7e0d93051ab6baef5ab3a - languageName: node - linkType: hard - -"depd@npm:~1.1.0, depd@npm:~1.1.2": - version: 1.1.2 - resolution: "depd@npm:1.1.2" - checksum: 6b406620d269619852885ce15965272b829df6f409724415e0002c8632ab6a8c0a08ec1f0bd2add05dc7bd7507606f7e2cc034fa24224ab829580040b835ecd9 - languageName: node - linkType: hard - -"dequal@npm:^2.0.3": - version: 2.0.3 - resolution: "dequal@npm:2.0.3" - checksum: 8679b850e1a3d0ebbc46ee780d5df7b478c23f335887464023a631d1b9af051ad4a6595a44220f9ff8ff95a8ddccf019b5ad778a976fd7bbf77383d36f412f90 - languageName: node - linkType: hard - -"destroy@npm:1.2.0": - version: 1.2.0 - resolution: "destroy@npm:1.2.0" - checksum: 0acb300b7478a08b92d810ab229d5afe0d2f4399272045ab22affa0d99dbaf12637659411530a6fcd597a9bdac718fc94373a61a95b4651bbc7b83684a565e38 - languageName: node - linkType: hard - -"detect-libc@npm:^2.0.0": - version: 2.0.1 - resolution: "detect-libc@npm:2.0.1" - checksum: ccb05fcabbb555beb544d48080179c18523a343face9ee4e1a86605a8715b4169f94d663c21a03c310ac824592f2ba9a5270218819bb411ad7be578a527593d7 - languageName: node - linkType: hard - -"detect-libc@npm:^2.0.2": - version: 2.0.2 - resolution: "detect-libc@npm:2.0.2" - checksum: 2b2cd3649b83d576f4be7cc37eb3b1815c79969c8b1a03a40a4d55d83bc74d010753485753448eacb98784abf22f7dbd3911fd3b60e29fda28fed2d1a997944d - languageName: node - linkType: hard - -"dezalgo@npm:^1.0.4": - version: 1.0.4 - resolution: "dezalgo@npm:1.0.4" - dependencies: - asap: ^2.0.0 - wrappy: 1 - checksum: 895389c6aead740d2ab5da4d3466d20fa30f738010a4d3f4dcccc9fc645ca31c9d10b7e1804ae489b1eb02c7986f9f1f34ba132d409b043082a86d9a4e745624 - languageName: node - linkType: hard - -"didyoumean@npm:^1.2.2": - version: 1.2.2 - resolution: "didyoumean@npm:1.2.2" - checksum: d5d98719d58b3c2fa59663c4c42ba9716f1fd01245c31d5fce31915bd3aa26e6aac149788e007358f778ebbd68a2256eb5973e8ca6f221df221ba060115acf2e - languageName: node - linkType: hard - -"dir-glob@npm:^3.0.1": - version: 3.0.1 - resolution: "dir-glob@npm:3.0.1" - dependencies: - path-type: ^4.0.0 - checksum: fa05e18324510d7283f55862f3161c6759a3f2f8dbce491a2fc14c8324c498286c54282c1f0e933cb930da8419b30679389499b919122952a4f8592362ef4615 - languageName: node - linkType: hard - -"dlv@npm:^1.1.3": - version: 1.1.3 - resolution: "dlv@npm:1.1.3" - checksum: d7381bca22ed11933a1ccf376db7a94bee2c57aa61e490f680124fa2d1cd27e94eba641d9f45be57caab4f9a6579de0983466f620a2cd6230d7ec93312105ae7 - languageName: node - linkType: hard - -"doctrine@npm:^2.1.0": - version: 2.1.0 - resolution: "doctrine@npm:2.1.0" - dependencies: - esutils: ^2.0.2 - checksum: a45e277f7feaed309fe658ace1ff286c6e2002ac515af0aaf37145b8baa96e49899638c7cd47dccf84c3d32abfc113246625b3ac8f552d1046072adee13b0dc8 - languageName: node - linkType: hard - -"doctrine@npm:^3.0.0": - version: 3.0.0 - resolution: "doctrine@npm:3.0.0" - dependencies: - esutils: ^2.0.2 - checksum: fd7673ca77fe26cd5cba38d816bc72d641f500f1f9b25b83e8ce28827fe2da7ad583a8da26ab6af85f834138cf8dae9f69b0cd6ab925f52ddab1754db44d99ce - languageName: node - linkType: hard - -"doctypes@npm:^1.1.0": - version: 1.1.0 - resolution: "doctypes@npm:1.1.0" - checksum: 6e6c2d1a80f2072dc4831994c914c44455e341c5ab18c16797368a0afd59d7c22f3335805ba2c1dd2931e9539d1ba8b613b7650dc63f6ab56b77b8d888055de8 - languageName: node - linkType: hard - -"dom-helpers@npm:^5.0.1": - version: 5.2.1 - resolution: "dom-helpers@npm:5.2.1" - dependencies: - "@babel/runtime": ^7.8.7 - csstype: ^3.0.2 - checksum: 863ba9e086f7093df3376b43e74ce4422571d404fc9828bf2c56140963d5edf0e56160f9b2f3bb61b282c07f8fc8134f023c98fd684bddcb12daf7b0f14d951c - languageName: node - linkType: hard - -"dotenv@npm:^16.0.3": - version: 16.3.1 - resolution: "dotenv@npm:16.3.1" - checksum: 15d75e7279018f4bafd0ee9706593dd14455ddb71b3bcba9c52574460b7ccaf67d5cf8b2c08a5af1a9da6db36c956a04a1192b101ee102a3e0cf8817bbcf3dfd - languageName: node - linkType: hard - -"eastasianwidth@npm:^0.2.0": - version: 0.2.0 - resolution: "eastasianwidth@npm:0.2.0" - checksum: 7d00d7cd8e49b9afa762a813faac332dee781932d6f2c848dc348939c4253f1d4564341b7af1d041853bc3f32c2ef141b58e0a4d9862c17a7f08f68df1e0f1ed - languageName: node - linkType: hard - -"ee-first@npm:1.1.1": - version: 1.1.1 - resolution: "ee-first@npm:1.1.1" - checksum: 1b4cac778d64ce3b582a7e26b218afe07e207a0f9bfe13cc7395a6d307849cfe361e65033c3251e00c27dd060cab43014c2d6b2647676135e18b77d2d05b3f4f - languageName: node - linkType: hard - -"electron-to-chromium@npm:^1.4.431": - version: 1.4.458 - resolution: "electron-to-chromium@npm:1.4.458" - checksum: 31b2c9c6bf3ba98d51f41dd864f2d6e5382c8029c09849cb1bc0ec71089d89aa9008b26bd9f967788e94902d9be242a183bbbd5b6878f86ff7c15d75b739b79b - languageName: node - linkType: hard - -"emoji-regex@npm:^8.0.0": - version: 8.0.0 - resolution: "emoji-regex@npm:8.0.0" - checksum: d4c5c39d5a9868b5fa152f00cada8a936868fd3367f33f71be515ecee4c803132d11b31a6222b2571b1e5f7e13890156a94880345594d0ce7e3c9895f560f192 - languageName: node - linkType: hard - -"emoji-regex@npm:^9.2.2": - version: 9.2.2 - resolution: "emoji-regex@npm:9.2.2" - checksum: 8487182da74aabd810ac6d6f1994111dfc0e331b01271ae01ec1eb0ad7b5ecc2bbbbd2f053c05cb55a1ac30449527d819bbfbf0e3de1023db308cbcb47f86601 - languageName: node - linkType: hard - -"emojis-list@npm:^3.0.0": - version: 3.0.0 - resolution: "emojis-list@npm:3.0.0" - checksum: ddaaa02542e1e9436c03970eeed445f4ed29a5337dfba0fe0c38dfdd2af5da2429c2a0821304e8a8d1cadf27fdd5b22ff793571fa803ae16852a6975c65e8e70 - languageName: node - linkType: hard - -"encodeurl@npm:~1.0.2": - version: 1.0.2 - resolution: "encodeurl@npm:1.0.2" - checksum: e50e3d508cdd9c4565ba72d2012e65038e5d71bdc9198cb125beb6237b5b1ade6c0d343998da9e170fb2eae52c1bed37d4d6d98a46ea423a0cddbed5ac3f780c - languageName: node - linkType: hard - -"encoding@npm:^0.1.13": - version: 0.1.13 - resolution: "encoding@npm:0.1.13" - dependencies: - iconv-lite: ^0.6.2 - checksum: bb98632f8ffa823996e508ce6a58ffcf5856330fde839ae42c9e1f436cc3b5cc651d4aeae72222916545428e54fd0f6aa8862fd8d25bdbcc4589f1e3f3715e7f - languageName: node - linkType: hard - -"end-of-stream@npm:^1.1.0, end-of-stream@npm:^1.4.1": - version: 1.4.4 - resolution: "end-of-stream@npm:1.4.4" - dependencies: - once: ^1.4.0 - checksum: 530a5a5a1e517e962854a31693dbb5c0b2fc40b46dad2a56a2deec656ca040631124f4795823acc68238147805f8b021abbe221f4afed5ef3c8e8efc2024908b - languageName: node - linkType: hard - -"engine.io-parser@npm:~5.1.0": - version: 5.1.0 - resolution: "engine.io-parser@npm:5.1.0" - checksum: a15fc0ba5d5fc5fb2c3029de1826538970463d0fa5c04d8dc2c72aabde92f1c923a9de409962490c3204da7245704286f9fb0ed4e5d71b55a6b035945f64c281 - languageName: node - linkType: hard - -"engine.io@npm:~6.5.0": - version: 6.5.1 - resolution: "engine.io@npm:6.5.1" - dependencies: - "@types/cookie": ^0.4.1 - "@types/cors": ^2.8.12 - "@types/node": ">=10.0.0" - accepts: ~1.3.4 - base64id: 2.0.0 - cookie: ~0.4.1 - cors: ~2.8.5 - debug: ~4.3.1 - engine.io-parser: ~5.1.0 - ws: ~8.11.0 - checksum: e902bbb3a484236edd6f0be89c14eb694cd905e727f88f3082a8b33ba23af9a71ca51e109b213962ccf836b02ba5bb9eea6f680a44d5008eb5b6aa2028d3bb7f - languageName: node - linkType: hard - -"enhanced-resolve@npm:^5.12.0, enhanced-resolve@npm:^5.15.0": - version: 5.15.0 - resolution: "enhanced-resolve@npm:5.15.0" - dependencies: - graceful-fs: ^4.2.4 - tapable: ^2.2.0 - checksum: fbd8cdc9263be71cc737aa8a7d6c57b43d6aa38f6cc75dde6fcd3598a130cc465f979d2f4d01bb3bf475acb43817749c79f8eef9be048683602ca91ab52e4f11 - languageName: node - linkType: hard - -"env-paths@npm:^2.2.0": - version: 2.2.1 - resolution: "env-paths@npm:2.2.1" - checksum: 65b5df55a8bab92229ab2b40dad3b387fad24613263d103a97f91c9fe43ceb21965cd3392b1ccb5d77088021e525c4e0481adb309625d0cb94ade1d1fb8dc17e - languageName: node - linkType: hard - -"envinfo@npm:^7.7.3": - version: 7.10.0 - resolution: "envinfo@npm:7.10.0" - bin: - envinfo: dist/cli.js - checksum: 05e81a5768c42cbd5c580dc3f274db3401facadd53e9bd52e2aa49dfbb5d8b26f6181c25a6652d79618a6994185bd2b1c137673101690b147f758e4e71d42f7d - languageName: node - linkType: hard - -"err-code@npm:^2.0.2": - version: 2.0.3 - resolution: "err-code@npm:2.0.3" - checksum: 8b7b1be20d2de12d2255c0bc2ca638b7af5171142693299416e6a9339bd7d88fc8d7707d913d78e0993176005405a236b066b45666b27b797252c771156ace54 - languageName: node - linkType: hard - -"error-ex@npm:^1.3.1": - version: 1.3.2 - resolution: "error-ex@npm:1.3.2" - dependencies: - is-arrayish: ^0.2.1 - checksum: c1c2b8b65f9c91b0f9d75f0debaa7ec5b35c266c2cac5de412c1a6de86d4cbae04ae44e510378cb14d032d0645a36925d0186f8bb7367bcc629db256b743a001 - languageName: node - linkType: hard - -"es-abstract@npm:^1.19.0, es-abstract@npm:^1.20.4": - version: 1.21.3 - resolution: "es-abstract@npm:1.21.3" - dependencies: - array-buffer-byte-length: ^1.0.0 - available-typed-arrays: ^1.0.5 - call-bind: ^1.0.2 - es-set-tostringtag: ^2.0.1 - es-to-primitive: ^1.2.1 - function.prototype.name: ^1.1.5 - get-intrinsic: ^1.2.1 - get-symbol-description: ^1.0.0 - globalthis: ^1.0.3 - gopd: ^1.0.1 - has: ^1.0.3 - has-property-descriptors: ^1.0.0 - has-proto: ^1.0.1 - has-symbols: ^1.0.3 - internal-slot: ^1.0.5 - is-array-buffer: ^3.0.2 - is-callable: ^1.2.7 - is-negative-zero: ^2.0.2 - is-regex: ^1.1.4 - is-shared-array-buffer: ^1.0.2 - is-string: ^1.0.7 - is-typed-array: ^1.1.10 - is-weakref: ^1.0.2 - object-inspect: ^1.12.3 - object-keys: ^1.1.1 - object.assign: ^4.1.4 - regexp.prototype.flags: ^1.5.0 - safe-regex-test: ^1.0.0 - string.prototype.trim: ^1.2.7 - string.prototype.trimend: ^1.0.6 - string.prototype.trimstart: ^1.0.6 - typed-array-byte-offset: ^1.0.0 - typed-array-length: ^1.0.4 - unbox-primitive: ^1.0.2 - which-typed-array: ^1.1.10 - checksum: 4c5ee900699030a629fc224a3595dcd05f9ff31d607e72bc9042d15e3b1bfde99f408c940b622e96439e755a7b23a3b9e47f3be234015750d32dad38b8f772f4 - languageName: node - linkType: hard - -"es-module-lexer@npm:^1.2.1": - version: 1.3.0 - resolution: "es-module-lexer@npm:1.3.0" - checksum: 48fd9f504a9d2a894126f75c8b7ccc6273a289983e9b67255f165bfd9ae765d50100218251e94e702ca567826905ea2f7b3b4a0c4d74d3ce99cce3a2a606a238 - languageName: node - linkType: hard - -"es-set-tostringtag@npm:^2.0.1": - version: 2.0.1 - resolution: "es-set-tostringtag@npm:2.0.1" - dependencies: - get-intrinsic: ^1.1.3 - has: ^1.0.3 - has-tostringtag: ^1.0.0 - checksum: ec416a12948cefb4b2a5932e62093a7cf36ddc3efd58d6c58ca7ae7064475ace556434b869b0bbeb0c365f1032a8ccd577211101234b69837ad83ad204fff884 - languageName: node - linkType: hard - -"es-shim-unscopables@npm:^1.0.0": - version: 1.0.0 - resolution: "es-shim-unscopables@npm:1.0.0" - dependencies: - has: ^1.0.3 - checksum: 83e95cadbb6ee44d3644dfad60dcad7929edbc42c85e66c3e99aefd68a3a5c5665f2686885cddb47dfeabfd77bd5ea5a7060f2092a955a729bbd8834f0d86fa1 - languageName: node - linkType: hard - -"es-to-primitive@npm:^1.2.1": - version: 1.2.1 - resolution: "es-to-primitive@npm:1.2.1" - dependencies: - is-callable: ^1.1.4 - is-date-object: ^1.0.1 - is-symbol: ^1.0.2 - checksum: 4ead6671a2c1402619bdd77f3503991232ca15e17e46222b0a41a5d81aebc8740a77822f5b3c965008e631153e9ef0580540007744521e72de8e33599fca2eed - languageName: node - linkType: hard - -"escalade@npm:^3.1.1": - version: 3.1.1 - resolution: "escalade@npm:3.1.1" - checksum: a3e2a99f07acb74b3ad4989c48ca0c3140f69f923e56d0cba0526240ee470b91010f9d39001f2a4a313841d237ede70a729e92125191ba5d21e74b106800b133 - languageName: node - linkType: hard - -"escape-html@npm:~1.0.3": - version: 1.0.3 - resolution: "escape-html@npm:1.0.3" - checksum: 6213ca9ae00d0ab8bccb6d8d4e0a98e76237b2410302cf7df70aaa6591d509a2a37ce8998008cbecae8fc8ffaadf3fb0229535e6a145f3ce0b211d060decbb24 - languageName: node - linkType: hard - -"escape-string-regexp@npm:^1.0.5": - version: 1.0.5 - resolution: "escape-string-regexp@npm:1.0.5" - checksum: 6092fda75c63b110c706b6a9bfde8a612ad595b628f0bd2147eea1d3406723020810e591effc7db1da91d80a71a737a313567c5abb3813e8d9c71f4aa595b410 - languageName: node - linkType: hard - -"escape-string-regexp@npm:^4.0.0": - version: 4.0.0 - resolution: "escape-string-regexp@npm:4.0.0" - checksum: 98b48897d93060f2322108bf29db0feba7dd774be96cd069458d1453347b25ce8682ecc39859d4bca2203cc0ab19c237bcc71755eff49a0f8d90beadeeba5cc5 - languageName: node - linkType: hard - -"eslint-config-next@npm:13.4.10": - version: 13.4.10 - resolution: "eslint-config-next@npm:13.4.10" - dependencies: - "@next/eslint-plugin-next": 13.4.10 - "@rushstack/eslint-patch": ^1.1.3 - "@typescript-eslint/parser": ^5.42.0 - eslint-import-resolver-node: ^0.3.6 - eslint-import-resolver-typescript: ^3.5.2 - eslint-plugin-import: ^2.26.0 - eslint-plugin-jsx-a11y: ^6.5.1 - eslint-plugin-react: ^7.31.7 - eslint-plugin-react-hooks: 5.0.0-canary-7118f5dd7-20230705 - peerDependencies: - eslint: ^7.23.0 || ^8.0.0 - typescript: ">=3.3.1" - peerDependenciesMeta: - typescript: - optional: true - checksum: d555e077e5045f045e5bdab58429b2245993a0e28d3030209766558a6d32ae165496030cafbab8e6aaf714947d895ee30d1ecdb49263abdb23b6889a333ea714 - languageName: node - linkType: hard - -"eslint-import-resolver-node@npm:^0.3.6, eslint-import-resolver-node@npm:^0.3.7": - version: 0.3.7 - resolution: "eslint-import-resolver-node@npm:0.3.7" - dependencies: - debug: ^3.2.7 - is-core-module: ^2.11.0 - resolve: ^1.22.1 - checksum: 3379aacf1d2c6952c1b9666c6fa5982c3023df695430b0d391c0029f6403a7775414873d90f397e98ba6245372b6c8960e16e74d9e4a3b0c0a4582f3bdbe3d6e - languageName: node - linkType: hard - -"eslint-import-resolver-typescript@npm:^3.5.2": - version: 3.5.5 - resolution: "eslint-import-resolver-typescript@npm:3.5.5" - dependencies: - debug: ^4.3.4 - enhanced-resolve: ^5.12.0 - eslint-module-utils: ^2.7.4 - get-tsconfig: ^4.5.0 - globby: ^13.1.3 - is-core-module: ^2.11.0 - is-glob: ^4.0.3 - synckit: ^0.8.5 - peerDependencies: - eslint: "*" - eslint-plugin-import: "*" - checksum: 27e6276fdff5d377c9036362ff736ac29852106e883ff589ea9092dc57d4bc2a67a82d75134221124f05045f9a7e2114a159b2c827d1f9f64d091f7afeab0f58 - languageName: node - linkType: hard - -"eslint-module-utils@npm:^2.7.4": - version: 2.8.0 - resolution: "eslint-module-utils@npm:2.8.0" - dependencies: - debug: ^3.2.7 - peerDependenciesMeta: - eslint: - optional: true - checksum: 74c6dfea7641ebcfe174be61168541a11a14aa8d72e515f5f09af55cd0d0862686104b0524aa4b8e0ce66418a44aa38a94d2588743db5fd07a6b49ffd16921d2 - languageName: node - linkType: hard - -"eslint-plugin-import@npm:^2.26.0": - version: 2.27.5 - resolution: "eslint-plugin-import@npm:2.27.5" - dependencies: - array-includes: ^3.1.6 - array.prototype.flat: ^1.3.1 - array.prototype.flatmap: ^1.3.1 - debug: ^3.2.7 - doctrine: ^2.1.0 - eslint-import-resolver-node: ^0.3.7 - eslint-module-utils: ^2.7.4 - has: ^1.0.3 - is-core-module: ^2.11.0 - is-glob: ^4.0.3 - minimatch: ^3.1.2 - object.values: ^1.1.6 - resolve: ^1.22.1 - semver: ^6.3.0 - tsconfig-paths: ^3.14.1 - peerDependencies: - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - checksum: f500571a380167e25d72a4d925ef9a7aae8899eada57653e5f3051ec3d3c16d08271fcefe41a30a9a2f4fefc232f066253673ee4ea77b30dba65ae173dade85d - languageName: node - linkType: hard - -"eslint-plugin-jsx-a11y@npm:^6.5.1": - version: 6.7.1 - resolution: "eslint-plugin-jsx-a11y@npm:6.7.1" - dependencies: - "@babel/runtime": ^7.20.7 - aria-query: ^5.1.3 - array-includes: ^3.1.6 - array.prototype.flatmap: ^1.3.1 - ast-types-flow: ^0.0.7 - axe-core: ^4.6.2 - axobject-query: ^3.1.1 - damerau-levenshtein: ^1.0.8 - emoji-regex: ^9.2.2 - has: ^1.0.3 - jsx-ast-utils: ^3.3.3 - language-tags: =1.0.5 - minimatch: ^3.1.2 - object.entries: ^1.1.6 - object.fromentries: ^2.0.6 - semver: ^6.3.0 - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - checksum: f166dd5fe7257c7b891c6692e6a3ede6f237a14043ae3d97581daf318fc5833ddc6b4871aa34ab7656187430170500f6d806895747ea17ecdf8231a666c3c2fd - languageName: node - linkType: hard - -"eslint-plugin-react-hooks@npm:5.0.0-canary-7118f5dd7-20230705": - version: 5.0.0-canary-7118f5dd7-20230705 - resolution: "eslint-plugin-react-hooks@npm:5.0.0-canary-7118f5dd7-20230705" - peerDependencies: - eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 - checksum: 20e334e60bf5e56cf9f760598411847525c3ff826e6ae7757c8efdc60b33d47a97ddbe1b94ce95956ea9f7bbef37995b19c716be50bd44e6a1e789cba08b6224 - languageName: node - linkType: hard - -"eslint-plugin-react@npm:^7.31.7": - version: 7.32.2 - resolution: "eslint-plugin-react@npm:7.32.2" - dependencies: - array-includes: ^3.1.6 - array.prototype.flatmap: ^1.3.1 - array.prototype.tosorted: ^1.1.1 - doctrine: ^2.1.0 - estraverse: ^5.3.0 - jsx-ast-utils: ^2.4.1 || ^3.0.0 - minimatch: ^3.1.2 - object.entries: ^1.1.6 - object.fromentries: ^2.0.6 - object.hasown: ^1.1.2 - object.values: ^1.1.6 - prop-types: ^15.8.1 - resolve: ^2.0.0-next.4 - semver: ^6.3.0 - string.prototype.matchall: ^4.0.8 - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - checksum: 2232b3b8945aa50b7773919c15cd96892acf35d2f82503667a79e2f55def90f728ed4f0e496f0f157acbe1bd4397c5615b676ae7428fe84488a544ca53feb944 - languageName: node - linkType: hard - -"eslint-scope@npm:5.1.1": - version: 5.1.1 - resolution: "eslint-scope@npm:5.1.1" - dependencies: - esrecurse: ^4.3.0 - estraverse: ^4.1.1 - checksum: 47e4b6a3f0cc29c7feedee6c67b225a2da7e155802c6ea13bbef4ac6b9e10c66cd2dcb987867ef176292bf4e64eccc680a49e35e9e9c669f4a02bac17e86abdb - languageName: node - linkType: hard - -"eslint-scope@npm:^7.2.2": - version: 7.2.2 - resolution: "eslint-scope@npm:7.2.2" - dependencies: - esrecurse: ^4.3.0 - estraverse: ^5.2.0 - checksum: ec97dbf5fb04b94e8f4c5a91a7f0a6dd3c55e46bfc7bbcd0e3138c3a76977570e02ed89a1810c778dcd72072ff0e9621ba1379b4babe53921d71e2e4486fda3e - languageName: node - linkType: hard - -"eslint-visitor-keys@npm:^3.3.0, eslint-visitor-keys@npm:^3.4.1": - version: 3.4.1 - resolution: "eslint-visitor-keys@npm:3.4.1" - checksum: f05121d868202736b97de7d750847a328fcfa8593b031c95ea89425333db59676ac087fa905eba438d0a3c5769632f828187e0c1a0d271832a2153c1d3661c2c - languageName: node - linkType: hard - -"eslint-visitor-keys@npm:^3.4.2": - version: 3.4.2 - resolution: "eslint-visitor-keys@npm:3.4.2" - checksum: 9e0e7e4aaea705c097ae37c97410e5f167d4d2193be2edcb1f0760762ede3df01545e4820ae314f42dcec687745f2c6dcaf6d83575c4a2a241eb0c8517d724f2 - languageName: node - linkType: hard - -"eslint@npm:8.46.0": - version: 8.46.0 - resolution: "eslint@npm:8.46.0" - dependencies: - "@eslint-community/eslint-utils": ^4.2.0 - "@eslint-community/regexpp": ^4.6.1 - "@eslint/eslintrc": ^2.1.1 - "@eslint/js": ^8.46.0 - "@humanwhocodes/config-array": ^0.11.10 - "@humanwhocodes/module-importer": ^1.0.1 - "@nodelib/fs.walk": ^1.2.8 - ajv: ^6.12.4 - chalk: ^4.0.0 - cross-spawn: ^7.0.2 - debug: ^4.3.2 - doctrine: ^3.0.0 - escape-string-regexp: ^4.0.0 - eslint-scope: ^7.2.2 - eslint-visitor-keys: ^3.4.2 - espree: ^9.6.1 - esquery: ^1.4.2 - esutils: ^2.0.2 - fast-deep-equal: ^3.1.3 - file-entry-cache: ^6.0.1 - find-up: ^5.0.0 - glob-parent: ^6.0.2 - globals: ^13.19.0 - graphemer: ^1.4.0 - ignore: ^5.2.0 - imurmurhash: ^0.1.4 - is-glob: ^4.0.0 - is-path-inside: ^3.0.3 - js-yaml: ^4.1.0 - json-stable-stringify-without-jsonify: ^1.0.1 - levn: ^0.4.1 - lodash.merge: ^4.6.2 - minimatch: ^3.1.2 - natural-compare: ^1.4.0 - optionator: ^0.9.3 - strip-ansi: ^6.0.1 - text-table: ^0.2.0 - bin: - eslint: bin/eslint.js - checksum: 7a7d36b1a3bbc12e08fbb5bc36fd482a7a5a1797e62e762499dd45601b9e45aaa53a129f31ce0b4444551a9639b8b681ad535f379893dd1e3ae37b31dccd82aa - languageName: node - linkType: hard - -"espree@npm:^9.6.0": - version: 9.6.0 - resolution: "espree@npm:9.6.0" - dependencies: - acorn: ^8.9.0 - acorn-jsx: ^5.3.2 - eslint-visitor-keys: ^3.4.1 - checksum: 1287979510efb052a6a97c73067ea5d0a40701b29adde87bbe2d3eb1667e39ca55e8129e20e2517fed3da570150e7ef470585228459a8f3e3755f45007a1c662 - languageName: node - linkType: hard - -"espree@npm:^9.6.1": - version: 9.6.1 - resolution: "espree@npm:9.6.1" - dependencies: - acorn: ^8.9.0 - acorn-jsx: ^5.3.2 - eslint-visitor-keys: ^3.4.1 - checksum: eb8c149c7a2a77b3f33a5af80c10875c3abd65450f60b8af6db1bfcfa8f101e21c1e56a561c6dc13b848e18148d43469e7cd208506238554fb5395a9ea5a1ab9 - languageName: node - linkType: hard - -"esquery@npm:^1.4.2": - version: 1.5.0 - resolution: "esquery@npm:1.5.0" - dependencies: - estraverse: ^5.1.0 - checksum: aefb0d2596c230118656cd4ec7532d447333a410a48834d80ea648b1e7b5c9bc9ed8b5e33a89cb04e487b60d622f44cf5713bf4abed7c97343edefdc84a35900 - languageName: node - linkType: hard - -"esrecurse@npm:^4.3.0": - version: 4.3.0 - resolution: "esrecurse@npm:4.3.0" - dependencies: - estraverse: ^5.2.0 - checksum: ebc17b1a33c51cef46fdc28b958994b1dc43cd2e86237515cbc3b4e5d2be6a811b2315d0a1a4d9d340b6d2308b15322f5c8291059521cc5f4802f65e7ec32837 - languageName: node - linkType: hard - -"estraverse@npm:^4.1.1": - version: 4.3.0 - resolution: "estraverse@npm:4.3.0" - checksum: a6299491f9940bb246124a8d44b7b7a413a8336f5436f9837aaa9330209bd9ee8af7e91a654a3545aee9c54b3308e78ee360cef1d777d37cfef77d2fa33b5827 - languageName: node - linkType: hard - -"estraverse@npm:^5.1.0, estraverse@npm:^5.2.0, estraverse@npm:^5.3.0": - version: 5.3.0 - resolution: "estraverse@npm:5.3.0" - checksum: 072780882dc8416ad144f8fe199628d2b3e7bbc9989d9ed43795d2c90309a2047e6bc5979d7e2322a341163d22cfad9e21f4110597fe487519697389497e4e2b - languageName: node - linkType: hard - -"esutils@npm:^2.0.2": - version: 2.0.3 - resolution: "esutils@npm:2.0.3" - checksum: 22b5b08f74737379a840b8ed2036a5fb35826c709ab000683b092d9054e5c2a82c27818f12604bfc2a9a76b90b6834ef081edbc1c7ae30d1627012e067c6ec87 - languageName: node - linkType: hard - -"etag@npm:~1.8.1": - version: 1.8.1 - resolution: "etag@npm:1.8.1" - checksum: 571aeb3dbe0f2bbd4e4fadbdb44f325fc75335cd5f6f6b6a091e6a06a9f25ed5392f0863c5442acb0646787446e816f13cbfc6edce5b07658541dff573cab1ff - languageName: node - linkType: hard - -"events@npm:^3.2.0": - version: 3.3.0 - resolution: "events@npm:3.3.0" - checksum: f6f487ad2198aa41d878fa31452f1a3c00958f46e9019286ff4787c84aac329332ab45c9cdc8c445928fc6d7ded294b9e005a7fce9426488518017831b272780 - languageName: node - linkType: hard - -"execa@npm:^5.0.0": - version: 5.1.1 - resolution: "execa@npm:5.1.1" - dependencies: - cross-spawn: ^7.0.3 - get-stream: ^6.0.0 - human-signals: ^2.1.0 - is-stream: ^2.0.0 - merge-stream: ^2.0.0 - npm-run-path: ^4.0.1 - onetime: ^5.1.2 - signal-exit: ^3.0.3 - strip-final-newline: ^2.0.0 - checksum: fba9022c8c8c15ed862847e94c252b3d946036d7547af310e344a527e59021fd8b6bb0723883ea87044dc4f0201f949046993124a42ccb0855cae5bf8c786343 - languageName: node - linkType: hard - -"execa@npm:^7.0.0, execa@npm:^7.1.1": - version: 7.1.1 - resolution: "execa@npm:7.1.1" - dependencies: - cross-spawn: ^7.0.3 - get-stream: ^6.0.1 - human-signals: ^4.3.0 - is-stream: ^3.0.0 - merge-stream: ^2.0.0 - npm-run-path: ^5.1.0 - onetime: ^6.0.0 - signal-exit: ^3.0.7 - strip-final-newline: ^3.0.0 - checksum: 21fa46fc69314ace4068cf820142bdde5b643a5d89831c2c9349479c1555bff137a291b8e749e7efca36535e4e0a8c772c11008ca2e84d2cbd6ca141a3c8f937 - languageName: node - linkType: hard - -"expand-template@npm:^2.0.3": - version: 2.0.3 - resolution: "expand-template@npm:2.0.3" - checksum: 588c19847216421ed92befb521767b7018dc88f88b0576df98cb242f20961425e96a92cbece525ef28cc5becceae5d544ae0f5b9b5e2aa05acb13716ca5b3099 - languageName: node - linkType: hard - -"exponential-backoff@npm:^3.1.1": - version: 3.1.1 - resolution: "exponential-backoff@npm:3.1.1" - checksum: 3d21519a4f8207c99f7457287291316306255a328770d320b401114ec8481986e4e467e854cb9914dd965e0a1ca810a23ccb559c642c88f4c7f55c55778a9b48 - languageName: node - linkType: hard - -"express-session@npm:^1.17.3": - version: 1.17.3 - resolution: "express-session@npm:1.17.3" - dependencies: - cookie: 0.4.2 - cookie-signature: 1.0.6 - debug: 2.6.9 - depd: ~2.0.0 - on-headers: ~1.0.2 - parseurl: ~1.3.3 - safe-buffer: 5.2.1 - uid-safe: ~2.1.5 - checksum: 1021a793433cbc6a1b32c803fcb2daa1e03a8f50dd907e8745ae57994370315a5cfde5b6ef7b062d9a9a0754ff268844bda211c08240b3a0e01014dcf1073ec5 - languageName: node - linkType: hard - -"express@npm:^4.18.1": - version: 4.18.2 - resolution: "express@npm:4.18.2" - dependencies: - accepts: ~1.3.8 - array-flatten: 1.1.1 - body-parser: 1.20.1 - content-disposition: 0.5.4 - content-type: ~1.0.4 - cookie: 0.5.0 - cookie-signature: 1.0.6 - debug: 2.6.9 - depd: 2.0.0 - encodeurl: ~1.0.2 - escape-html: ~1.0.3 - etag: ~1.8.1 - finalhandler: 1.2.0 - fresh: 0.5.2 - http-errors: 2.0.0 - merge-descriptors: 1.0.1 - methods: ~1.1.2 - on-finished: 2.4.1 - parseurl: ~1.3.3 - path-to-regexp: 0.1.7 - proxy-addr: ~2.0.7 - qs: 6.11.0 - range-parser: ~1.2.1 - safe-buffer: 5.2.1 - send: 0.18.0 - serve-static: 1.15.0 - setprototypeof: 1.2.0 - statuses: 2.0.1 - type-is: ~1.6.18 - utils-merge: 1.0.1 - vary: ~1.1.2 - checksum: 3c4b9b076879442f6b968fe53d85d9f1eeacbb4f4c41e5f16cc36d77ce39a2b0d81b3f250514982110d815b2f7173f5561367f9110fcc541f9371948e8c8b037 - languageName: node - linkType: hard - -"extend@npm:^3.0.2": - version: 3.0.2 - resolution: "extend@npm:3.0.2" - checksum: a50a8309ca65ea5d426382ff09f33586527882cf532931cb08ca786ea3146c0553310bda688710ff61d7668eba9f96b923fe1420cdf56a2c3eaf30fcab87b515 - languageName: node - linkType: hard - -"fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:^3.1.3": - version: 3.1.3 - resolution: "fast-deep-equal@npm:3.1.3" - checksum: e21a9d8d84f53493b6aa15efc9cfd53dd5b714a1f23f67fb5dc8f574af80df889b3bce25dc081887c6d25457cce704e636395333abad896ccdec03abaf1f3f9d - languageName: node - linkType: hard - -"fast-fifo@npm:^1.1.0, fast-fifo@npm:^1.2.0": - version: 1.3.0 - resolution: "fast-fifo@npm:1.3.0" - checksum: edc589b818eede61d0048f399daf67cbc5ef736588669482a20f37269b4808356e54ab89676fd8fa59b26c216c11e5ac57335cc70dca54fbbf692d4acde10de6 - languageName: node - linkType: hard - -"fast-glob@npm:^3.2.12, fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.0": - version: 3.3.0 - resolution: "fast-glob@npm:3.3.0" - dependencies: - "@nodelib/fs.stat": ^2.0.2 - "@nodelib/fs.walk": ^1.2.3 - glob-parent: ^5.1.2 - merge2: ^1.3.0 - micromatch: ^4.0.4 - checksum: 20df62be28eb5426fe8e40e0d05601a63b1daceb7c3d87534afcad91bdcf1e4b1743cf2d5247d6e225b120b46df0b9053a032b2691ba34ee121e033acd81f547 - languageName: node - linkType: hard - -"fast-json-stable-stringify@npm:^2.0.0": - version: 2.1.0 - resolution: "fast-json-stable-stringify@npm:2.1.0" - checksum: b191531e36c607977e5b1c47811158733c34ccb3bfde92c44798929e9b4154884378536d26ad90dfecd32e1ffc09c545d23535ad91b3161a27ddbb8ebe0cbecb - languageName: node - linkType: hard - -"fast-levenshtein@npm:^2.0.6": - version: 2.0.6 - resolution: "fast-levenshtein@npm:2.0.6" - checksum: 92cfec0a8dfafd9c7a15fba8f2cc29cd0b62b85f056d99ce448bbcd9f708e18ab2764bda4dd5158364f4145a7c72788538994f0d1787b956ef0d1062b0f7c24c - languageName: node - linkType: hard - -"fastest-levenshtein@npm:^1.0.12": - version: 1.0.16 - resolution: "fastest-levenshtein@npm:1.0.16" - checksum: a78d44285c9e2ae2c25f3ef0f8a73f332c1247b7ea7fb4a191e6bb51aa6ee1ef0dfb3ed113616dcdc7023e18e35a8db41f61c8d88988e877cf510df8edafbc71 - languageName: node - linkType: hard - -"fastq@npm:^1.6.0": - version: 1.15.0 - resolution: "fastq@npm:1.15.0" - dependencies: - reusify: ^1.0.4 - checksum: 0170e6bfcd5d57a70412440b8ef600da6de3b2a6c5966aeaf0a852d542daff506a0ee92d6de7679d1de82e644bce69d7a574a6c93f0b03964b5337eed75ada1a - languageName: node - linkType: hard - -"file-entry-cache@npm:^6.0.1": - version: 6.0.1 - resolution: "file-entry-cache@npm:6.0.1" - dependencies: - flat-cache: ^3.0.4 - checksum: f49701feaa6314c8127c3c2f6173cfefff17612f5ed2daaafc6da13b5c91fd43e3b2a58fd0d63f9f94478a501b167615931e7200e31485e320f74a33885a9c74 - languageName: node - linkType: hard - -"file-loader@npm:^6.2.0": - version: 6.2.0 - resolution: "file-loader@npm:6.2.0" - dependencies: - loader-utils: ^2.0.0 - schema-utils: ^3.0.0 - peerDependencies: - webpack: ^4.0.0 || ^5.0.0 - checksum: faf43eecf233f4897b0150aaa874eeeac214e4f9de49738a9e0ef734a30b5260059e85b7edadf852b98e415f875bd5f12587768a93fd52aaf2e479ecf95fab20 - languageName: node - linkType: hard - -"fill-range@npm:^7.0.1": - version: 7.0.1 - resolution: "fill-range@npm:7.0.1" - dependencies: - to-regex-range: ^5.0.1 - checksum: cc283f4e65b504259e64fd969bcf4def4eb08d85565e906b7d36516e87819db52029a76b6363d0f02d0d532f0033c9603b9e2d943d56ee3b0d4f7ad3328ff917 - languageName: node - linkType: hard - -"finalhandler@npm:1.2.0": - version: 1.2.0 - resolution: "finalhandler@npm:1.2.0" - dependencies: - debug: 2.6.9 - encodeurl: ~1.0.2 - escape-html: ~1.0.3 - on-finished: 2.4.1 - parseurl: ~1.3.3 - statuses: 2.0.1 - unpipe: ~1.0.0 - checksum: 92effbfd32e22a7dff2994acedbd9bcc3aa646a3e919ea6a53238090e87097f8ef07cced90aa2cc421abdf993aefbdd5b00104d55c7c5479a8d00ed105b45716 - languageName: node - linkType: hard - -"find-root@npm:^1.1.0": - version: 1.1.0 - resolution: "find-root@npm:1.1.0" - checksum: b2a59fe4b6c932eef36c45a048ae8f93c85640212ebe8363164814990ee20f154197505965f3f4f102efc33bfb1cbc26fd17c4a2fc739ebc51b886b137cbefaf - languageName: node - linkType: hard - -"find-up@npm:^4.0.0": - version: 4.1.0 - resolution: "find-up@npm:4.1.0" - dependencies: - locate-path: ^5.0.0 - path-exists: ^4.0.0 - checksum: 4c172680e8f8c1f78839486e14a43ef82e9decd0e74145f40707cc42e7420506d5ec92d9a11c22bd2c48fb0c384ea05dd30e10dd152fefeec6f2f75282a8b844 - languageName: node - linkType: hard - -"find-up@npm:^5.0.0": - version: 5.0.0 - resolution: "find-up@npm:5.0.0" - dependencies: - locate-path: ^6.0.0 - path-exists: ^4.0.0 - checksum: 07955e357348f34660bde7920783204ff5a26ac2cafcaa28bace494027158a97b9f56faaf2d89a6106211a8174db650dd9f503f9c0d526b1202d5554a00b9095 - languageName: node - linkType: hard - -"flat-cache@npm:^3.0.4": - version: 3.0.4 - resolution: "flat-cache@npm:3.0.4" - dependencies: - flatted: ^3.1.0 - rimraf: ^3.0.2 - checksum: 4fdd10ecbcbf7d520f9040dd1340eb5dfe951e6f0ecf2252edeec03ee68d989ec8b9a20f4434270e71bcfd57800dc09b3344fca3966b2eb8f613072c7d9a2365 - languageName: node - linkType: hard - -"flatted@npm:^3.1.0": - version: 3.2.7 - resolution: "flatted@npm:3.2.7" - checksum: 427633049d55bdb80201c68f7eb1cbd533e03eac541f97d3aecab8c5526f12a20ccecaeede08b57503e772c769e7f8680b37e8d482d1e5f8d7e2194687f9ea35 - languageName: node - linkType: hard - -"for-each@npm:^0.3.3": - version: 0.3.3 - resolution: "for-each@npm:0.3.3" - dependencies: - is-callable: ^1.1.3 - checksum: 6c48ff2bc63362319c65e2edca4a8e1e3483a2fabc72fbe7feaf8c73db94fc7861bd53bc02c8a66a0c1dd709da6b04eec42e0abdd6b40ce47305ae92a25e5d28 - languageName: node - linkType: hard - -"foreachasync@npm:^3.0.0": - version: 3.0.0 - resolution: "foreachasync@npm:3.0.0" - checksum: 4791f64b539b06c751b14adb2881173c780d41ce37d881715a5e5787fa4a08961f2c6a6cf3bccdfa48e56fb91d8676d867fdc63c008cdb576bd33261716e8381 - languageName: node - linkType: hard - -"foreground-child@npm:^3.1.0": - version: 3.1.1 - resolution: "foreground-child@npm:3.1.1" - dependencies: - cross-spawn: ^7.0.0 - signal-exit: ^4.0.1 - checksum: 139d270bc82dc9e6f8bc045fe2aae4001dc2472157044fdfad376d0a3457f77857fa883c1c8b21b491c6caade9a926a4bed3d3d2e8d3c9202b151a4cbbd0bcd5 - languageName: node - linkType: hard - -"formidable@npm:^2.0.1": - version: 2.1.2 - resolution: "formidable@npm:2.1.2" - dependencies: - dezalgo: ^1.0.4 - hexoid: ^1.0.0 - once: ^1.4.0 - qs: ^6.11.0 - checksum: 81c8e5d89f5eb873e992893468f0de22c01678ca3d315db62be0560f9de1c77d4faefc9b1f4575098eb2263b3c81ba1024833a9fc3206297ddbac88a4f69b7a8 - languageName: node - linkType: hard - -"forwarded@npm:0.2.0": - version: 0.2.0 - resolution: "forwarded@npm:0.2.0" - checksum: fd27e2394d8887ebd16a66ffc889dc983fbbd797d5d3f01087c020283c0f019a7d05ee85669383d8e0d216b116d720fc0cef2f6e9b7eb9f4c90c6e0bc7fd28e6 - languageName: node - linkType: hard - -"fraction.js@npm:^4.2.0": - version: 4.2.0 - resolution: "fraction.js@npm:4.2.0" - checksum: 8c76a6e21dedea87109d6171a0ac77afa14205794a565d71cb10d2925f629a3922da61bf45ea52dbc30bce4d8636dc0a27213a88cbd600eab047d82f9a3a94c5 - languageName: node - linkType: hard - -"fresh@npm:0.5.2": - version: 0.5.2 - resolution: "fresh@npm:0.5.2" - checksum: 13ea8b08f91e669a64e3ba3a20eb79d7ca5379a81f1ff7f4310d54e2320645503cc0c78daedc93dfb6191287295f6479544a649c64d8e41a1c0fb0c221552346 - languageName: node - linkType: hard - -"fs-constants@npm:^1.0.0": - version: 1.0.0 - resolution: "fs-constants@npm:1.0.0" - checksum: 18f5b718371816155849475ac36c7d0b24d39a11d91348cfcb308b4494824413e03572c403c86d3a260e049465518c4f0d5bd00f0371cdfcad6d4f30a85b350d - languageName: node - linkType: hard - -"fs-minipass@npm:^2.0.0": - version: 2.1.0 - resolution: "fs-minipass@npm:2.1.0" - dependencies: - minipass: ^3.0.0 - checksum: 1b8d128dae2ac6cc94230cc5ead341ba3e0efaef82dab46a33d171c044caaa6ca001364178d42069b2809c35a1c3c35079a32107c770e9ffab3901b59af8c8b1 - languageName: node - linkType: hard - -"fs-minipass@npm:^3.0.0": - version: 3.0.2 - resolution: "fs-minipass@npm:3.0.2" - dependencies: - minipass: ^5.0.0 - checksum: e9cc0e1f2d01c6f6f62f567aee59530aba65c6c7b2ae88c5027bc34c711ebcfcfaefd0caf254afa6adfe7d1fba16bc2537508a6235196bac7276747d078aef0a - languageName: node - linkType: hard - -"fs.realpath@npm:^1.0.0": - version: 1.0.0 - resolution: "fs.realpath@npm:1.0.0" - checksum: 99ddea01a7e75aa276c250a04eedeffe5662bce66c65c07164ad6264f9de18fb21be9433ead460e54cff20e31721c811f4fb5d70591799df5f85dce6d6746fd0 - languageName: node - linkType: hard - -"fsevents@npm:~2.3.2": - version: 2.3.2 - resolution: "fsevents@npm:2.3.2" - dependencies: - node-gyp: latest - checksum: 97ade64e75091afee5265e6956cb72ba34db7819b4c3e94c431d4be2b19b8bb7a2d4116da417950c3425f17c8fe693d25e20212cac583ac1521ad066b77ae31f - conditions: os=darwin - languageName: node - linkType: hard - -"fsevents@patch:fsevents@~2.3.2#~builtin": - version: 2.3.2 - resolution: "fsevents@patch:fsevents@npm%3A2.3.2#~builtin::version=2.3.2&hash=df0bf1" - dependencies: - node-gyp: latest - conditions: os=darwin - languageName: node - linkType: hard - -"function-bind@npm:^1.1.1": - version: 1.1.1 - resolution: "function-bind@npm:1.1.1" - checksum: b32fbaebb3f8ec4969f033073b43f5c8befbb58f1a79e12f1d7490358150359ebd92f49e72ff0144f65f2c48ea2a605bff2d07965f548f6474fd8efd95bf361a - languageName: node - linkType: hard - -"function.prototype.name@npm:^1.1.5": - version: 1.1.5 - resolution: "function.prototype.name@npm:1.1.5" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.1.3 - es-abstract: ^1.19.0 - functions-have-names: ^1.2.2 - checksum: acd21d733a9b649c2c442f067567743214af5fa248dbeee69d8278ce7df3329ea5abac572be9f7470b4ec1cd4d8f1040e3c5caccf98ebf2bf861a0deab735c27 - languageName: node - linkType: hard - -"functions-have-names@npm:^1.2.2, functions-have-names@npm:^1.2.3": - version: 1.2.3 - resolution: "functions-have-names@npm:1.2.3" - checksum: c3f1f5ba20f4e962efb71344ce0a40722163e85bee2101ce25f88214e78182d2d2476aa85ef37950c579eb6cf6ee811c17b3101bb84004bb75655f3e33f3fdb5 - languageName: node - linkType: hard - -"gauge@npm:^4.0.3": - version: 4.0.4 - resolution: "gauge@npm:4.0.4" - dependencies: - aproba: ^1.0.3 || ^2.0.0 - color-support: ^1.1.3 - console-control-strings: ^1.1.0 - has-unicode: ^2.0.1 - signal-exit: ^3.0.7 - string-width: ^4.2.3 - strip-ansi: ^6.0.1 - wide-align: ^1.1.5 - checksum: 788b6bfe52f1dd8e263cda800c26ac0ca2ff6de0b6eee2fe0d9e3abf15e149b651bd27bf5226be10e6e3edb5c4e5d5985a5a1a98137e7a892f75eff76467ad2d - languageName: node - linkType: hard - -"get-intrinsic@npm:^1.0.2, get-intrinsic@npm:^1.1.1, get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.0, get-intrinsic@npm:^1.2.1": - version: 1.2.1 - resolution: "get-intrinsic@npm:1.2.1" - dependencies: - function-bind: ^1.1.1 - has: ^1.0.3 - has-proto: ^1.0.1 - has-symbols: ^1.0.3 - checksum: 5b61d88552c24b0cf6fa2d1b3bc5459d7306f699de060d76442cce49a4721f52b8c560a33ab392cf5575b7810277d54ded9d4d39a1ea61855619ebc005aa7e5f - languageName: node - linkType: hard - -"get-stream@npm:^6.0.0, get-stream@npm:^6.0.1": - version: 6.0.1 - resolution: "get-stream@npm:6.0.1" - checksum: e04ecece32c92eebf5b8c940f51468cd53554dcbb0ea725b2748be583c9523d00128137966afce410b9b051eb2ef16d657cd2b120ca8edafcf5a65e81af63cad - languageName: node - linkType: hard - -"get-symbol-description@npm:^1.0.0": - version: 1.0.0 - resolution: "get-symbol-description@npm:1.0.0" - dependencies: - call-bind: ^1.0.2 - get-intrinsic: ^1.1.1 - checksum: 9ceff8fe968f9270a37a1f73bf3f1f7bda69ca80f4f80850670e0e7b9444ff99323f7ac52f96567f8b5f5fbe7ac717a0d81d3407c7313e82810c6199446a5247 - languageName: node - linkType: hard - -"get-tsconfig@npm:^4.5.0": - version: 4.6.2 - resolution: "get-tsconfig@npm:4.6.2" - dependencies: - resolve-pkg-maps: ^1.0.0 - checksum: e791e671a9b55e91efea3ca819ecd7a25beae679e31c83234bf3dd62ddd93df070c1b95ae7e29d206358ebb6408f6f79ac6d83a32a3bbd6a6d217babe23de077 - languageName: node - linkType: hard - -"github-from-package@npm:0.0.0": - version: 0.0.0 - resolution: "github-from-package@npm:0.0.0" - checksum: 14e448192a35c1e42efee94c9d01a10f42fe790375891a24b25261246ce9336ab9df5d274585aedd4568f7922246c2a78b8a8cd2571bfe99c693a9718e7dd0e3 - languageName: node - linkType: hard - -"glob-parent@npm:^5.1.2, glob-parent@npm:~5.1.2": - version: 5.1.2 - resolution: "glob-parent@npm:5.1.2" - dependencies: - is-glob: ^4.0.1 - checksum: f4f2bfe2425296e8a47e36864e4f42be38a996db40420fe434565e4480e3322f18eb37589617a98640c5dc8fdec1a387007ee18dbb1f3f5553409c34d17f425e - languageName: node - linkType: hard - -"glob-parent@npm:^6.0.2": - version: 6.0.2 - resolution: "glob-parent@npm:6.0.2" - dependencies: - is-glob: ^4.0.3 - checksum: c13ee97978bef4f55106b71e66428eb1512e71a7466ba49025fc2aec59a5bfb0954d5abd58fc5ee6c9b076eef4e1f6d3375c2e964b88466ca390da4419a786a8 - languageName: node - linkType: hard - -"glob-to-regexp@npm:^0.4.1": - version: 0.4.1 - resolution: "glob-to-regexp@npm:0.4.1" - checksum: e795f4e8f06d2a15e86f76e4d92751cf8bbfcf0157cea5c2f0f35678a8195a750b34096b1256e436f0cebc1883b5ff0888c47348443e69546a5a87f9e1eb1167 - languageName: node - linkType: hard - -"glob@npm:7.1.6": - version: 7.1.6 - resolution: "glob@npm:7.1.6" - dependencies: - fs.realpath: ^1.0.0 - inflight: ^1.0.4 - inherits: 2 - minimatch: ^3.0.4 - once: ^1.3.0 - path-is-absolute: ^1.0.0 - checksum: 351d549dd90553b87c2d3f90ce11aed9e1093c74130440e7ae0592e11bbcd2ce7f0ebb8ba6bfe63aaf9b62166a7f4c80cb84490ae5d78408bb2572bf7d4ee0a6 - languageName: node - linkType: hard - -"glob@npm:7.1.7": - version: 7.1.7 - resolution: "glob@npm:7.1.7" - dependencies: - fs.realpath: ^1.0.0 - inflight: ^1.0.4 - inherits: 2 - minimatch: ^3.0.4 - once: ^1.3.0 - path-is-absolute: ^1.0.0 - checksum: b61f48973bbdcf5159997b0874a2165db572b368b931135832599875919c237fc05c12984e38fe828e69aa8a921eb0e8a4997266211c517c9cfaae8a93988bb8 - languageName: node - linkType: hard - -"glob@npm:^10.2.2": - version: 10.3.3 - resolution: "glob@npm:10.3.3" - dependencies: - foreground-child: ^3.1.0 - jackspeak: ^2.0.3 - minimatch: ^9.0.1 - minipass: ^5.0.0 || ^6.0.2 || ^7.0.0 - path-scurry: ^1.10.1 - bin: - glob: dist/cjs/src/bin.js - checksum: 29190d3291f422da0cb40b77a72fc8d2c51a36524e99b8bf412548b7676a6627489528b57250429612b6eec2e6fe7826d328451d3e694a9d15e575389308ec53 - languageName: node - linkType: hard - -"glob@npm:^7.1.3, glob@npm:^7.1.4": - version: 7.2.3 - resolution: "glob@npm:7.2.3" - dependencies: - fs.realpath: ^1.0.0 - inflight: ^1.0.4 - inherits: 2 - minimatch: ^3.1.1 - once: ^1.3.0 - path-is-absolute: ^1.0.0 - checksum: 29452e97b38fa704dabb1d1045350fb2467cf0277e155aa9ff7077e90ad81d1ea9d53d3ee63bd37c05b09a065e90f16aec4a65f5b8de401d1dac40bc5605d133 - languageName: node - linkType: hard - -"globals@npm:^13.19.0": - version: 13.20.0 - resolution: "globals@npm:13.20.0" - dependencies: - type-fest: ^0.20.2 - checksum: ad1ecf914bd051325faad281d02ea2c0b1df5d01bd94d368dcc5513340eac41d14b3c61af325768e3c7f8d44576e72780ec0b6f2d366121f8eec6e03c3a3b97a - languageName: node - linkType: hard - -"globalthis@npm:^1.0.3": - version: 1.0.3 - resolution: "globalthis@npm:1.0.3" - dependencies: - define-properties: ^1.1.3 - checksum: fbd7d760dc464c886d0196166d92e5ffb4c84d0730846d6621a39fbbc068aeeb9c8d1421ad330e94b7bca4bb4ea092f5f21f3d36077812af5d098b4dc006c998 - languageName: node - linkType: hard - -"globby@npm:^11.1.0": - version: 11.1.0 - resolution: "globby@npm:11.1.0" - dependencies: - array-union: ^2.1.0 - dir-glob: ^3.0.1 - fast-glob: ^3.2.9 - ignore: ^5.2.0 - merge2: ^1.4.1 - slash: ^3.0.0 - checksum: b4be8885e0cfa018fc783792942d53926c35c50b3aefd3fdcfb9d22c627639dc26bd2327a40a0b74b074100ce95bb7187bfeae2f236856aa3de183af7a02aea6 - languageName: node - linkType: hard - -"globby@npm:^13.1.3": - version: 13.2.2 - resolution: "globby@npm:13.2.2" - dependencies: - dir-glob: ^3.0.1 - fast-glob: ^3.3.0 - ignore: ^5.2.4 - merge2: ^1.4.1 - slash: ^4.0.0 - checksum: f3d84ced58a901b4fcc29c846983108c426631fe47e94872868b65565495f7bee7b3defd68923bd480582771fd4bbe819217803a164a618ad76f1d22f666f41e - languageName: node - linkType: hard - -"gopd@npm:^1.0.1": - version: 1.0.1 - resolution: "gopd@npm:1.0.1" - dependencies: - get-intrinsic: ^1.1.3 - checksum: a5ccfb8806e0917a94e0b3de2af2ea4979c1da920bc381667c260e00e7cafdbe844e2cb9c5bcfef4e5412e8bf73bab837285bc35c7ba73aaaf0134d4583393a6 - languageName: node - linkType: hard - -"graceful-fs@npm:^4.1.2, graceful-fs@npm:^4.2.4, graceful-fs@npm:^4.2.6, graceful-fs@npm:^4.2.9": - version: 4.2.11 - resolution: "graceful-fs@npm:4.2.11" - checksum: ac85f94da92d8eb6b7f5a8b20ce65e43d66761c55ce85ac96df6865308390da45a8d3f0296dd3a663de65d30ba497bd46c696cc1e248c72b13d6d567138a4fc7 - languageName: node - linkType: hard - -"graphemer@npm:^1.4.0": - version: 1.4.0 - resolution: "graphemer@npm:1.4.0" - checksum: bab8f0be9b568857c7bec9fda95a89f87b783546d02951c40c33f84d05bb7da3fd10f863a9beb901463669b6583173a8c8cc6d6b306ea2b9b9d5d3d943c3a673 - languageName: node - linkType: hard - -"graphql-tag@npm:^2.12.6": - version: 2.12.6 - resolution: "graphql-tag@npm:2.12.6" - dependencies: - tslib: ^2.1.0 - peerDependencies: - graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - checksum: b15162a3d62f17b9b79302445b9ee330e041582f1c7faca74b9dec5daa74272c906ec1c34e1c50592bb6215e5c3eba80a309103f6ba9e4c1cddc350c46f010df - languageName: node - linkType: hard - -"graphql@npm:^16.7.1": - version: 16.7.1 - resolution: "graphql@npm:16.7.1" - checksum: c924d8428daf0e96a5ea43e9bc3cd1b6802899907d284478ac8f705c8fd233a0a51eef915f7569fb5de8acb2e85b802ccc6c85c2b157ad805c1e9adba5a299bd - languageName: node - linkType: hard - -"handlebars@npm:4.7.7": - version: 4.7.7 - resolution: "handlebars@npm:4.7.7" - dependencies: - minimist: ^1.2.5 - neo-async: ^2.6.0 - source-map: ^0.6.1 - uglify-js: ^3.1.4 - wordwrap: ^1.0.0 - dependenciesMeta: - uglify-js: - optional: true - bin: - handlebars: bin/handlebars - checksum: 1e79a43f5e18d15742977cb987923eab3e2a8f44f2d9d340982bcb69e1735ed049226e534d7c1074eaddaf37e4fb4f471a8adb71cddd5bc8cf3f894241df5cee - languageName: node - linkType: hard - -"has-bigints@npm:^1.0.1, has-bigints@npm:^1.0.2": - version: 1.0.2 - resolution: "has-bigints@npm:1.0.2" - checksum: 390e31e7be7e5c6fe68b81babb73dfc35d413604d7ee5f56da101417027a4b4ce6a27e46eff97ad040c835b5d228676eae99a9b5c3bc0e23c8e81a49241ff45b - languageName: node - linkType: hard - -"has-flag@npm:^3.0.0": - version: 3.0.0 - resolution: "has-flag@npm:3.0.0" - checksum: 4a15638b454bf086c8148979aae044dd6e39d63904cd452d970374fa6a87623423da485dfb814e7be882e05c096a7ccf1ebd48e7e7501d0208d8384ff4dea73b - languageName: node - linkType: hard - -"has-flag@npm:^4.0.0": - version: 4.0.0 - resolution: "has-flag@npm:4.0.0" - checksum: 261a1357037ead75e338156b1f9452c016a37dcd3283a972a30d9e4a87441ba372c8b81f818cd0fbcd9c0354b4ae7e18b9e1afa1971164aef6d18c2b6095a8ad - languageName: node - linkType: hard - -"has-property-descriptors@npm:^1.0.0": - version: 1.0.0 - resolution: "has-property-descriptors@npm:1.0.0" - dependencies: - get-intrinsic: ^1.1.1 - checksum: a6d3f0a266d0294d972e354782e872e2fe1b6495b321e6ef678c9b7a06a40408a6891817350c62e752adced73a94ac903c54734fee05bf65b1905ee1368194bb - languageName: node - linkType: hard - -"has-proto@npm:^1.0.1": - version: 1.0.1 - resolution: "has-proto@npm:1.0.1" - checksum: febc5b5b531de8022806ad7407935e2135f1cc9e64636c3916c6842bd7995994ca3b29871ecd7954bd35f9e2986c17b3b227880484d22259e2f8e6ce63fd383e - languageName: node - linkType: hard - -"has-symbols@npm:^1.0.2, has-symbols@npm:^1.0.3": - version: 1.0.3 - resolution: "has-symbols@npm:1.0.3" - checksum: a054c40c631c0d5741a8285010a0777ea0c068f99ed43e5d6eb12972da223f8af553a455132fdb0801bdcfa0e0f443c0c03a68d8555aa529b3144b446c3f2410 - languageName: node - linkType: hard - -"has-tostringtag@npm:^1.0.0": - version: 1.0.0 - resolution: "has-tostringtag@npm:1.0.0" - dependencies: - has-symbols: ^1.0.2 - checksum: cc12eb28cb6ae22369ebaad3a8ab0799ed61270991be88f208d508076a1e99abe4198c965935ce85ea90b60c94ddda73693b0920b58e7ead048b4a391b502c1c - languageName: node - linkType: hard - -"has-unicode@npm:^2.0.1": - version: 2.0.1 - resolution: "has-unicode@npm:2.0.1" - checksum: 1eab07a7436512db0be40a710b29b5dc21fa04880b7f63c9980b706683127e3c1b57cb80ea96d47991bdae2dfe479604f6a1ba410106ee1046a41d1bd0814400 - languageName: node - linkType: hard - -"has@npm:^1.0.3": - version: 1.0.3 - resolution: "has@npm:1.0.3" - dependencies: - function-bind: ^1.1.1 - checksum: b9ad53d53be4af90ce5d1c38331e712522417d017d5ef1ebd0507e07c2fbad8686fffb8e12ddecd4c39ca9b9b47431afbb975b8abf7f3c3b82c98e9aad052792 - languageName: node - linkType: hard - -"hbs@npm:^4.2.0": - version: 4.2.0 - resolution: "hbs@npm:4.2.0" - dependencies: - handlebars: 4.7.7 - walk: 2.3.15 - checksum: 811259d1bc6ecf94fca824df438167306a5f7e122b82aca59a3c593067c50175ce81c3de4d258b9cb19ae9ef5b91e8486282b5791191940bb5d8a298304965b5 - languageName: node - linkType: hard - -"helmet@npm:^6.0.0": - version: 6.2.0 - resolution: "helmet@npm:6.2.0" - checksum: cf01e024244205bd10d70fd2f3874244b72ba37a10a4604e4383bbd63fe1438ee24bae7672c4ee5c5e16e6cd88ac58003274034fab0ba199761471555a322b37 - languageName: node - linkType: hard - -"hexoid@npm:^1.0.0": - version: 1.0.0 - resolution: "hexoid@npm:1.0.0" - checksum: 27a148ca76a2358287f40445870116baaff4a0ed0acc99900bf167f0f708ffd82e044ff55e9949c71963852b580fc024146d3ac6d5d76b508b78d927fa48ae2d - languageName: node - linkType: hard - -"hoist-non-react-statics@npm:^3.3.1, hoist-non-react-statics@npm:^3.3.2": - version: 3.3.2 - resolution: "hoist-non-react-statics@npm:3.3.2" - dependencies: - react-is: ^16.7.0 - checksum: b1538270429b13901ee586aa44f4cc3ecd8831c061d06cb8322e50ea17b3f5ce4d0e2e66394761e6c8e152cd8c34fb3b4b690116c6ce2bd45b18c746516cb9e8 - languageName: node - linkType: hard - -"http-cache-semantics@npm:^4.1.1": - version: 4.1.1 - resolution: "http-cache-semantics@npm:4.1.1" - checksum: 83ac0bc60b17a3a36f9953e7be55e5c8f41acc61b22583060e8dedc9dd5e3607c823a88d0926f9150e571f90946835c7fe150732801010845c72cd8bbff1a236 - languageName: node - linkType: hard - -"http-errors@npm:2.0.0": - version: 2.0.0 - resolution: "http-errors@npm:2.0.0" - dependencies: - depd: 2.0.0 - inherits: 2.0.4 - setprototypeof: 1.2.0 - statuses: 2.0.1 - toidentifier: 1.0.1 - checksum: 9b0a3782665c52ce9dc658a0d1560bcb0214ba5699e4ea15aefb2a496e2ca83db03ebc42e1cce4ac1f413e4e0d2d736a3fd755772c556a9a06853ba2a0b7d920 - languageName: node - linkType: hard - -"http-errors@npm:~1.6.2": - version: 1.6.3 - resolution: "http-errors@npm:1.6.3" - dependencies: - depd: ~1.1.2 - inherits: 2.0.3 - setprototypeof: 1.1.0 - statuses: ">= 1.4.0 < 2" - checksum: a9654ee027e3d5de305a56db1d1461f25709ac23267c6dc28cdab8323e3f96caa58a9a6a5e93ac15d7285cee0c2f019378c3ada9026e7fe19c872d695f27de7c - languageName: node - linkType: hard - -"http-errors@npm:~1.7.3": - version: 1.7.3 - resolution: "http-errors@npm:1.7.3" - dependencies: - depd: ~1.1.2 - inherits: 2.0.4 - setprototypeof: 1.1.1 - statuses: ">= 1.5.0 < 2" - toidentifier: 1.0.0 - checksum: a59f359473f4b3ea78305beee90d186268d6075432622a46fb7483059068a2dd4c854a20ac8cd438883127e06afb78c1309168bde6cdfeed1e3700eb42487d99 - languageName: node - linkType: hard - -"http-proxy-agent@npm:^5.0.0": - version: 5.0.0 - resolution: "http-proxy-agent@npm:5.0.0" - dependencies: - "@tootallnate/once": 2 - agent-base: 6 - debug: 4 - checksum: e2ee1ff1656a131953839b2a19cd1f3a52d97c25ba87bd2559af6ae87114abf60971e498021f9b73f9fd78aea8876d1fb0d4656aac8a03c6caa9fc175f22b786 - languageName: node - linkType: hard - -"https-proxy-agent@npm:^5.0.0": - version: 5.0.1 - resolution: "https-proxy-agent@npm:5.0.1" - dependencies: - agent-base: 6 - debug: 4 - checksum: 571fccdf38184f05943e12d37d6ce38197becdd69e58d03f43637f7fa1269cf303a7d228aa27e5b27bbd3af8f09fd938e1c91dcfefff2df7ba77c20ed8dfc765 - languageName: node - linkType: hard - -"human-signals@npm:^2.1.0": - version: 2.1.0 - resolution: "human-signals@npm:2.1.0" - checksum: b87fd89fce72391625271454e70f67fe405277415b48bcc0117ca73d31fa23a4241787afdc8d67f5a116cf37258c052f59ea82daffa72364d61351423848e3b8 - languageName: node - linkType: hard - -"human-signals@npm:^4.3.0": - version: 4.3.1 - resolution: "human-signals@npm:4.3.1" - checksum: 6f12958df3f21b6fdaf02d90896c271df00636a31e2bbea05bddf817a35c66b38a6fdac5863e2df85bd52f34958997f1f50350ff97249e1dff8452865d5235d1 - languageName: node - linkType: hard - -"humanize-ms@npm:^1.2.1": - version: 1.2.1 - resolution: "humanize-ms@npm:1.2.1" - dependencies: - ms: ^2.0.0 - checksum: 9c7a74a2827f9294c009266c82031030eae811ca87b0da3dceb8d6071b9bde22c9f3daef0469c3c533cc67a97d8a167cd9fc0389350e5f415f61a79b171ded16 - languageName: node - linkType: hard - -"iconv-lite@npm:0.4.24": - version: 0.4.24 - resolution: "iconv-lite@npm:0.4.24" - dependencies: - safer-buffer: ">= 2.1.2 < 3" - checksum: bd9f120f5a5b306f0bc0b9ae1edeb1577161503f5f8252a20f1a9e56ef8775c9959fd01c55f2d3a39d9a8abaf3e30c1abeb1895f367dcbbe0a8fd1c9ca01c4f6 - languageName: node - linkType: hard - -"iconv-lite@npm:^0.6.2": - version: 0.6.3 - resolution: "iconv-lite@npm:0.6.3" - dependencies: - safer-buffer: ">= 2.1.2 < 3.0.0" - checksum: 3f60d47a5c8fc3313317edfd29a00a692cc87a19cac0159e2ce711d0ebc9019064108323b5e493625e25594f11c6236647d8e256fbe7a58f4a3b33b89e6d30bf - languageName: node - linkType: hard - -"ieee754@npm:^1.1.13": - version: 1.2.1 - resolution: "ieee754@npm:1.2.1" - checksum: 5144c0c9815e54ada181d80a0b810221a253562422e7c6c3a60b1901154184f49326ec239d618c416c1c5945a2e197107aee8d986a3dd836b53dffefd99b5e7e - languageName: node - linkType: hard - -"ignore@npm:^5.2.0, ignore@npm:^5.2.4": - version: 5.2.4 - resolution: "ignore@npm:5.2.4" - checksum: 3d4c309c6006e2621659311783eaea7ebcd41fe4ca1d78c91c473157ad6666a57a2df790fe0d07a12300d9aac2888204d7be8d59f9aaf665b1c7fcdb432517ef - languageName: node - linkType: hard - -"import-fresh@npm:^3.2.1": - version: 3.3.0 - resolution: "import-fresh@npm:3.3.0" - dependencies: - parent-module: ^1.0.0 - resolve-from: ^4.0.0 - checksum: 2cacfad06e652b1edc50be650f7ec3be08c5e5a6f6d12d035c440a42a8cc028e60a5b99ca08a77ab4d6b1346da7d971915828f33cdab730d3d42f08242d09baa - languageName: node - linkType: hard - -"import-local@npm:^3.0.2": - version: 3.1.0 - resolution: "import-local@npm:3.1.0" - dependencies: - pkg-dir: ^4.2.0 - resolve-cwd: ^3.0.0 - bin: - import-local-fixture: fixtures/cli.js - checksum: bfcdb63b5e3c0e245e347f3107564035b128a414c4da1172a20dc67db2504e05ede4ac2eee1252359f78b0bfd7b19ef180aec427c2fce6493ae782d73a04cddd - languageName: node - linkType: hard - -"imurmurhash@npm:^0.1.4": - version: 0.1.4 - resolution: "imurmurhash@npm:0.1.4" - checksum: 7cae75c8cd9a50f57dadd77482359f659eaebac0319dd9368bcd1714f55e65badd6929ca58569da2b6494ef13fdd5598cd700b1eba23f8b79c5f19d195a3ecf7 - languageName: node - linkType: hard - -"indent-string@npm:^4.0.0": - version: 4.0.0 - resolution: "indent-string@npm:4.0.0" - checksum: 824cfb9929d031dabf059bebfe08cf3137365e112019086ed3dcff6a0a7b698cb80cf67ccccde0e25b9e2d7527aa6cc1fed1ac490c752162496caba3e6699612 - languageName: node - linkType: hard - -"inflight@npm:^1.0.4": - version: 1.0.6 - resolution: "inflight@npm:1.0.6" - dependencies: - once: ^1.3.0 - wrappy: 1 - checksum: f4f76aa072ce19fae87ce1ef7d221e709afb59d445e05d47fba710e85470923a75de35bfae47da6de1b18afc3ce83d70facf44cfb0aff89f0a3f45c0a0244dfd - languageName: node - linkType: hard - -"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:^2.0.3, inherits@npm:^2.0.4": - version: 2.0.4 - resolution: "inherits@npm:2.0.4" - checksum: 4a48a733847879d6cf6691860a6b1e3f0f4754176e4d71494c41f3475553768b10f84b5ce1d40fbd0e34e6bfbb864ee35858ad4dd2cf31e02fc4a154b724d7f1 - languageName: node - linkType: hard - -"inherits@npm:2.0.3": - version: 2.0.3 - resolution: "inherits@npm:2.0.3" - checksum: 78cb8d7d850d20a5e9a7f3620db31483aa00ad5f722ce03a55b110e5a723539b3716a3b463e2b96ce3fe286f33afc7c131fa2f91407528ba80cea98a7545d4c0 - languageName: node - linkType: hard - -"ini@npm:~1.3.0": - version: 1.3.8 - resolution: "ini@npm:1.3.8" - checksum: dfd98b0ca3a4fc1e323e38a6c8eb8936e31a97a918d3b377649ea15bdb15d481207a0dda1021efbd86b464cae29a0d33c1d7dcaf6c5672bee17fa849bc50a1b3 - languageName: node - linkType: hard - -"internal-slot@npm:^1.0.3, internal-slot@npm:^1.0.5": - version: 1.0.5 - resolution: "internal-slot@npm:1.0.5" - dependencies: - get-intrinsic: ^1.2.0 - has: ^1.0.3 - side-channel: ^1.0.4 - checksum: 97e84046bf9e7574d0956bd98d7162313ce7057883b6db6c5c7b5e5f05688864b0978ba07610c726d15d66544ffe4b1050107d93f8a39ebc59b15d8b429b497a - languageName: node - linkType: hard - -"interpret@npm:^3.1.1": - version: 3.1.1 - resolution: "interpret@npm:3.1.1" - checksum: 35cebcf48c7351130437596d9ab8c8fe131ce4038da4561e6d665f25640e0034702a031cf7e3a5cea60ac7ac548bf17465e0571ede126f3d3a6933152171ac82 - languageName: node - linkType: hard - -"ioredis@npm:^5.2.3": - version: 5.3.2 - resolution: "ioredis@npm:5.3.2" - dependencies: - "@ioredis/commands": ^1.1.1 - cluster-key-slot: ^1.1.0 - debug: ^4.3.4 - denque: ^2.1.0 - lodash.defaults: ^4.2.0 - lodash.isarguments: ^3.1.0 - redis-errors: ^1.2.0 - redis-parser: ^3.0.0 - standard-as-callback: ^2.1.0 - checksum: 9a23559133e862a768778301efb68ae8c2af3c33562174b54a4c2d6574b976e85c75a4c34857991af733e35c48faf4c356e7daa8fb0a3543d85ff1768c8754bc - languageName: node - linkType: hard - -"ip@npm:^2.0.0": - version: 2.0.0 - resolution: "ip@npm:2.0.0" - checksum: cfcfac6b873b701996d71ec82a7dd27ba92450afdb421e356f44044ed688df04567344c36cbacea7d01b1c39a4c732dc012570ebe9bebfb06f27314bca625349 - languageName: node - linkType: hard - -"ipaddr.js@npm:1.9.1": - version: 1.9.1 - resolution: "ipaddr.js@npm:1.9.1" - checksum: f88d3825981486f5a1942414c8d77dd6674dd71c065adcfa46f578d677edcb99fda25af42675cb59db492fdf427b34a5abfcde3982da11a8fd83a500b41cfe77 - languageName: node - linkType: hard - -"is-array-buffer@npm:^3.0.1, is-array-buffer@npm:^3.0.2": - version: 3.0.2 - resolution: "is-array-buffer@npm:3.0.2" - dependencies: - call-bind: ^1.0.2 - get-intrinsic: ^1.2.0 - is-typed-array: ^1.1.10 - checksum: dcac9dda66ff17df9cabdc58214172bf41082f956eab30bb0d86bc0fab1e44b690fc8e1f855cf2481245caf4e8a5a006a982a71ddccec84032ed41f9d8da8c14 - languageName: node - linkType: hard - -"is-arrayish@npm:^0.2.1": - version: 0.2.1 - resolution: "is-arrayish@npm:0.2.1" - checksum: eef4417e3c10e60e2c810b6084942b3ead455af16c4509959a27e490e7aee87cfb3f38e01bbde92220b528a0ee1a18d52b787e1458ee86174d8c7f0e58cd488f - languageName: node - linkType: hard - -"is-arrayish@npm:^0.3.1": - version: 0.3.2 - resolution: "is-arrayish@npm:0.3.2" - checksum: 977e64f54d91c8f169b59afcd80ff19227e9f5c791fa28fa2e5bce355cbaf6c2c356711b734656e80c9dd4a854dd7efcf7894402f1031dfc5de5d620775b4d5f - languageName: node - linkType: hard - -"is-bigint@npm:^1.0.1": - version: 1.0.4 - resolution: "is-bigint@npm:1.0.4" - dependencies: - has-bigints: ^1.0.1 - checksum: c56edfe09b1154f8668e53ebe8252b6f185ee852a50f9b41e8d921cb2bed425652049fbe438723f6cb48a63ca1aa051e948e7e401e093477c99c84eba244f666 - languageName: node - linkType: hard - -"is-binary-path@npm:~2.1.0": - version: 2.1.0 - resolution: "is-binary-path@npm:2.1.0" - dependencies: - binary-extensions: ^2.0.0 - checksum: 84192eb88cff70d320426f35ecd63c3d6d495da9d805b19bc65b518984b7c0760280e57dbf119b7e9be6b161784a5a673ab2c6abe83abb5198a432232ad5b35c - languageName: node - linkType: hard - -"is-boolean-object@npm:^1.1.0": - version: 1.1.2 - resolution: "is-boolean-object@npm:1.1.2" - dependencies: - call-bind: ^1.0.2 - has-tostringtag: ^1.0.0 - checksum: c03b23dbaacadc18940defb12c1c0e3aaece7553ef58b162a0f6bba0c2a7e1551b59f365b91e00d2dbac0522392d576ef322628cb1d036a0fe51eb466db67222 - languageName: node - linkType: hard - -"is-callable@npm:^1.1.3, is-callable@npm:^1.1.4, is-callable@npm:^1.2.7": - version: 1.2.7 - resolution: "is-callable@npm:1.2.7" - checksum: 61fd57d03b0d984e2ed3720fb1c7a897827ea174bd44402878e059542ea8c4aeedee0ea0985998aa5cc2736b2fa6e271c08587addb5b3959ac52cf665173d1ac - languageName: node - linkType: hard - -"is-core-module@npm:^2.11.0, is-core-module@npm:^2.9.0": - version: 2.12.1 - resolution: "is-core-module@npm:2.12.1" - dependencies: - has: ^1.0.3 - checksum: f04ea30533b5e62764e7b2e049d3157dc0abd95ef44275b32489ea2081176ac9746ffb1cdb107445cf1ff0e0dfcad522726ca27c27ece64dadf3795428b8e468 - languageName: node - linkType: hard - -"is-date-object@npm:^1.0.1": - version: 1.0.5 - resolution: "is-date-object@npm:1.0.5" - dependencies: - has-tostringtag: ^1.0.0 - checksum: baa9077cdf15eb7b58c79398604ca57379b2fc4cf9aa7a9b9e295278648f628c9b201400c01c5e0f7afae56507d741185730307cbe7cad3b9f90a77e5ee342fc - languageName: node - linkType: hard - -"is-docker@npm:^2.0.0": - version: 2.2.1 - resolution: "is-docker@npm:2.2.1" - bin: - is-docker: cli.js - checksum: 3fef7ddbf0be25958e8991ad941901bf5922ab2753c46980b60b05c1bf9c9c2402d35e6dc32e4380b980ef5e1970a5d9d5e5aa2e02d77727c3b6b5e918474c56 - languageName: node - linkType: hard - -"is-docker@npm:^3.0.0": - version: 3.0.0 - resolution: "is-docker@npm:3.0.0" - bin: - is-docker: cli.js - checksum: b698118f04feb7eaf3338922bd79cba064ea54a1c3db6ec8c0c8d8ee7613e7e5854d802d3ef646812a8a3ace81182a085dfa0a71cc68b06f3fa794b9783b3c90 - languageName: node - linkType: hard - -"is-expression@npm:^4.0.0": - version: 4.0.0 - resolution: "is-expression@npm:4.0.0" - dependencies: - acorn: ^7.1.1 - object-assign: ^4.1.1 - checksum: 0f01d0ff53fbbec36abae8fbb7ef056c6d024f7128646856a3e6c500b205788d3e0f337025e72df979d7d7cf4674a00370633d7f8974c668b2d3fdb7e8a83bdb - languageName: node - linkType: hard - -"is-extglob@npm:^2.1.1": - version: 2.1.1 - resolution: "is-extglob@npm:2.1.1" - checksum: df033653d06d0eb567461e58a7a8c9f940bd8c22274b94bf7671ab36df5719791aae15eef6d83bbb5e23283967f2f984b8914559d4449efda578c775c4be6f85 - languageName: node - linkType: hard - -"is-fullwidth-code-point@npm:^3.0.0": - version: 3.0.0 - resolution: "is-fullwidth-code-point@npm:3.0.0" - checksum: 44a30c29457c7fb8f00297bce733f0a64cd22eca270f83e58c105e0d015e45c019491a4ab2faef91ab51d4738c670daff901c799f6a700e27f7314029e99e348 - languageName: node - linkType: hard - -"is-fullwidth-code-point@npm:^4.0.0": - version: 4.0.0 - resolution: "is-fullwidth-code-point@npm:4.0.0" - checksum: 8ae89bf5057bdf4f57b346fb6c55e9c3dd2549983d54191d722d5c739397a903012cc41a04ee3403fd872e811243ef91a7c5196da7b5841dc6b6aae31a264a8d - languageName: node - linkType: hard - -"is-glob@npm:^4.0.0, is-glob@npm:^4.0.1, is-glob@npm:^4.0.3, is-glob@npm:~4.0.1": - version: 4.0.3 - resolution: "is-glob@npm:4.0.3" - dependencies: - is-extglob: ^2.1.1 - checksum: d381c1319fcb69d341cc6e6c7cd588e17cd94722d9a32dbd60660b993c4fb7d0f19438674e68dfec686d09b7c73139c9166b47597f846af387450224a8101ab4 - languageName: node - linkType: hard - -"is-inside-container@npm:^1.0.0": - version: 1.0.0 - resolution: "is-inside-container@npm:1.0.0" - dependencies: - is-docker: ^3.0.0 - bin: - is-inside-container: cli.js - checksum: c50b75a2ab66ab3e8b92b3bc534e1ea72ca25766832c0623ac22d134116a98bcf012197d1caabe1d1c4bd5f84363d4aa5c36bb4b585fbcaf57be172cd10a1a03 - languageName: node - linkType: hard - -"is-lambda@npm:^1.0.1": - version: 1.0.1 - resolution: "is-lambda@npm:1.0.1" - checksum: 93a32f01940220532e5948538699ad610d5924ac86093fcee83022252b363eb0cc99ba53ab084a04e4fb62bf7b5731f55496257a4c38adf87af9c4d352c71c35 - languageName: node - linkType: hard - -"is-negative-zero@npm:^2.0.2": - version: 2.0.2 - resolution: "is-negative-zero@npm:2.0.2" - checksum: f3232194c47a549da60c3d509c9a09be442507616b69454716692e37ae9f37c4dea264fb208ad0c9f3efd15a796a46b79df07c7e53c6227c32170608b809149a - languageName: node - linkType: hard - -"is-number-object@npm:^1.0.4": - version: 1.0.7 - resolution: "is-number-object@npm:1.0.7" - dependencies: - has-tostringtag: ^1.0.0 - checksum: d1e8d01bb0a7134c74649c4e62da0c6118a0bfc6771ea3c560914d52a627873e6920dd0fd0ebc0e12ad2ff4687eac4c308f7e80320b973b2c8a2c8f97a7524f7 - languageName: node - linkType: hard - -"is-number@npm:^7.0.0": - version: 7.0.0 - resolution: "is-number@npm:7.0.0" - checksum: 456ac6f8e0f3111ed34668a624e45315201dff921e5ac181f8ec24923b99e9f32ca1a194912dc79d539c97d33dba17dc635202ff0b2cf98326f608323276d27a - languageName: node - linkType: hard - -"is-path-inside@npm:^3.0.3": - version: 3.0.3 - resolution: "is-path-inside@npm:3.0.3" - checksum: abd50f06186a052b349c15e55b182326f1936c89a78bf6c8f2b707412517c097ce04bc49a0ca221787bc44e1049f51f09a2ffb63d22899051988d3a618ba13e9 - languageName: node - linkType: hard - -"is-plain-object@npm:^2.0.4": - version: 2.0.4 - resolution: "is-plain-object@npm:2.0.4" - dependencies: - isobject: ^3.0.1 - checksum: 2a401140cfd86cabe25214956ae2cfee6fbd8186809555cd0e84574f88de7b17abacb2e477a6a658fa54c6083ecbda1e6ae404c7720244cd198903848fca70ca - languageName: node - linkType: hard - -"is-promise@npm:^2.0.0": - version: 2.2.2 - resolution: "is-promise@npm:2.2.2" - checksum: 18bf7d1c59953e0ad82a1ed963fb3dc0d135c8f299a14f89a17af312fc918373136e56028e8831700e1933519630cc2fd4179a777030330fde20d34e96f40c78 - languageName: node - linkType: hard - -"is-regex@npm:^1.0.3, is-regex@npm:^1.1.4": - version: 1.1.4 - resolution: "is-regex@npm:1.1.4" - dependencies: - call-bind: ^1.0.2 - has-tostringtag: ^1.0.0 - checksum: 362399b33535bc8f386d96c45c9feb04cf7f8b41c182f54174c1a45c9abbbe5e31290bbad09a458583ff6bf3b2048672cdb1881b13289569a7c548370856a652 - languageName: node - linkType: hard - -"is-shared-array-buffer@npm:^1.0.2": - version: 1.0.2 - resolution: "is-shared-array-buffer@npm:1.0.2" - dependencies: - call-bind: ^1.0.2 - checksum: 9508929cf14fdc1afc9d61d723c6e8d34f5e117f0bffda4d97e7a5d88c3a8681f633a74f8e3ad1fe92d5113f9b921dc5ca44356492079612f9a247efbce7032a - languageName: node - linkType: hard - -"is-stream@npm:^2.0.0": - version: 2.0.1 - resolution: "is-stream@npm:2.0.1" - checksum: b8e05ccdf96ac330ea83c12450304d4a591f9958c11fd17bed240af8d5ffe08aedafa4c0f4cfccd4d28dc9d4d129daca1023633d5c11601a6cbc77521f6fae66 - languageName: node - linkType: hard - -"is-stream@npm:^3.0.0": - version: 3.0.0 - resolution: "is-stream@npm:3.0.0" - checksum: 172093fe99119ffd07611ab6d1bcccfe8bc4aa80d864b15f43e63e54b7abc71e779acd69afdb854c4e2a67fdc16ae710e370eda40088d1cfc956a50ed82d8f16 - languageName: node - linkType: hard - -"is-string@npm:^1.0.5, is-string@npm:^1.0.7": - version: 1.0.7 - resolution: "is-string@npm:1.0.7" - dependencies: - has-tostringtag: ^1.0.0 - checksum: 323b3d04622f78d45077cf89aab783b2f49d24dc641aa89b5ad1a72114cfeff2585efc8c12ef42466dff32bde93d839ad321b26884cf75e5a7892a938b089989 - languageName: node - linkType: hard - -"is-symbol@npm:^1.0.2, is-symbol@npm:^1.0.3": - version: 1.0.4 - resolution: "is-symbol@npm:1.0.4" - dependencies: - has-symbols: ^1.0.2 - checksum: 92805812ef590738d9de49d677cd17dfd486794773fb6fa0032d16452af46e9b91bb43ffe82c983570f015b37136f4b53b28b8523bfb10b0ece7a66c31a54510 - languageName: node - linkType: hard - -"is-typed-array@npm:^1.1.10, is-typed-array@npm:^1.1.9": - version: 1.1.10 - resolution: "is-typed-array@npm:1.1.10" - dependencies: - available-typed-arrays: ^1.0.5 - call-bind: ^1.0.2 - for-each: ^0.3.3 - gopd: ^1.0.1 - has-tostringtag: ^1.0.0 - checksum: aac6ecb59d4c56a1cdeb69b1f129154ef462bbffe434cb8a8235ca89b42f258b7ae94073c41b3cb7bce37f6a1733ad4499f07882d5d5093a7ba84dfc4ebb8017 - languageName: node - linkType: hard - -"is-weakref@npm:^1.0.2": - version: 1.0.2 - resolution: "is-weakref@npm:1.0.2" - dependencies: - call-bind: ^1.0.2 - checksum: 95bd9a57cdcb58c63b1c401c60a474b0f45b94719c30f548c891860f051bc2231575c290a6b420c6bc6e7ed99459d424c652bd5bf9a1d5259505dc35b4bf83de - languageName: node - linkType: hard - -"is-what@npm:^4.1.8": - version: 4.1.15 - resolution: "is-what@npm:4.1.15" - checksum: fe27f6cd4af41be59a60caf46ec09e3071bcc69b9b12a7c871c90f54360edb6d0bc7240cb944a251fb0afa3d35635d1cecea9e70709876b368a8285128d70a89 - languageName: node - linkType: hard - -"is-wsl@npm:^2.2.0": - version: 2.2.0 - resolution: "is-wsl@npm:2.2.0" - dependencies: - is-docker: ^2.0.0 - checksum: 20849846ae414997d290b75e16868e5261e86ff5047f104027026fd61d8b5a9b0b3ade16239f35e1a067b3c7cc02f70183cb661010ed16f4b6c7c93dad1b19d8 - languageName: node - linkType: hard - -"isexe@npm:^2.0.0": - version: 2.0.0 - resolution: "isexe@npm:2.0.0" - checksum: 26bf6c5480dda5161c820c5b5c751ae1e766c587b1f951ea3fcfc973bafb7831ae5b54a31a69bd670220e42e99ec154475025a468eae58ea262f813fdc8d1c62 - languageName: node - linkType: hard - -"isobject@npm:^3.0.1": - version: 3.0.1 - resolution: "isobject@npm:3.0.1" - checksum: db85c4c970ce30693676487cca0e61da2ca34e8d4967c2e1309143ff910c207133a969f9e4ddb2dc6aba670aabce4e0e307146c310350b298e74a31f7d464703 - languageName: node - linkType: hard - -"jackspeak@npm:^2.0.3": - version: 2.2.1 - resolution: "jackspeak@npm:2.2.1" - dependencies: - "@isaacs/cliui": ^8.0.2 - "@pkgjs/parseargs": ^0.11.0 - dependenciesMeta: - "@pkgjs/parseargs": - optional: true - checksum: e29291c0d0f280a063fa18fbd1e891ab8c2d7519fd34052c0ebde38538a15c603140d60c2c7f432375ff7ee4c5f1c10daa8b2ae19a97c3d4affe308c8360c1df - languageName: node - linkType: hard - -"jest-worker@npm:^27.4.5": - version: 27.5.1 - resolution: "jest-worker@npm:27.5.1" - dependencies: - "@types/node": "*" - merge-stream: ^2.0.0 - supports-color: ^8.0.0 - checksum: 98cd68b696781caed61c983a3ee30bf880b5bd021c01d98f47b143d4362b85d0737f8523761e2713d45e18b4f9a2b98af1eaee77afade4111bb65c77d6f7c980 - languageName: node - linkType: hard - -"jiti@npm:^1.18.2": - version: 1.19.1 - resolution: "jiti@npm:1.19.1" - bin: - jiti: bin/jiti.js - checksum: fdf55e315f9e81c04ae902416642062851d92c6cdcc17a59d5d1d35e1a0842e4e79be38da86613c5776fa18c579954542a441b93d1c347a50137dee2e558cbd0 - languageName: node - linkType: hard - -"js-stringify@npm:^1.0.2": - version: 1.0.2 - resolution: "js-stringify@npm:1.0.2" - checksum: f9701d9e535d3ac0f62bbf2624b76c5d0af5b889187232817ae284a41ba21fd7a8b464c2dce3815d8cf52c8bea3480be6b368cfc2c67da799cad458058e8bbf5 - languageName: node - linkType: hard - -"js-tokens@npm:^3.0.0 || ^4.0.0, js-tokens@npm:^4.0.0": - version: 4.0.0 - resolution: "js-tokens@npm:4.0.0" - checksum: 8a95213a5a77deb6cbe94d86340e8d9ace2b93bc367790b260101d2f36a2eaf4e4e22d9fa9cf459b38af3a32fb4190e638024cf82ec95ef708680e405ea7cc78 - languageName: node - linkType: hard - -"js-yaml@npm:^4.1.0": - version: 4.1.0 - resolution: "js-yaml@npm:4.1.0" - dependencies: - argparse: ^2.0.1 - bin: - js-yaml: bin/js-yaml.js - checksum: c7830dfd456c3ef2c6e355cc5a92e6700ceafa1d14bba54497b34a99f0376cecbb3e9ac14d3e5849b426d5a5140709a66237a8c991c675431271c4ce5504151a - languageName: node - linkType: hard - -"json-parse-even-better-errors@npm:^2.3.0, json-parse-even-better-errors@npm:^2.3.1": - version: 2.3.1 - resolution: "json-parse-even-better-errors@npm:2.3.1" - checksum: 798ed4cf3354a2d9ccd78e86d2169515a0097a5c133337807cdf7f1fc32e1391d207ccfc276518cc1d7d8d4db93288b8a50ba4293d212ad1336e52a8ec0a941f - languageName: node - linkType: hard - -"json-schema-traverse@npm:^0.4.1": - version: 0.4.1 - resolution: "json-schema-traverse@npm:0.4.1" - checksum: 7486074d3ba247769fda17d5181b345c9fb7d12e0da98b22d1d71a5db9698d8b4bd900a3ec1a4ffdd60846fc2556274a5c894d0c48795f14cb03aeae7b55260b - languageName: node - linkType: hard - -"json-stable-stringify-without-jsonify@npm:^1.0.1": - version: 1.0.1 - resolution: "json-stable-stringify-without-jsonify@npm:1.0.1" - checksum: cff44156ddce9c67c44386ad5cddf91925fe06b1d217f2da9c4910d01f358c6e3989c4d5a02683c7a5667f9727ff05831f7aa8ae66c8ff691c556f0884d49215 - languageName: node - linkType: hard - -"json5@npm:^1.0.2": - version: 1.0.2 - resolution: "json5@npm:1.0.2" - dependencies: - minimist: ^1.2.0 - bin: - json5: lib/cli.js - checksum: 866458a8c58a95a49bef3adba929c625e82532bcff1fe93f01d29cb02cac7c3fe1f4b79951b7792c2da9de0b32871a8401a6e3c5b36778ad852bf5b8a61165d7 - languageName: node - linkType: hard - -"json5@npm:^2.1.2": - version: 2.2.3 - resolution: "json5@npm:2.2.3" - bin: - json5: lib/cli.js - checksum: 2a7436a93393830bce797d4626275152e37e877b265e94ca69c99e3d20c2b9dab021279146a39cdb700e71b2dd32a4cebd1514cd57cee102b1af906ce5040349 - languageName: node - linkType: hard - -"jstransformer@npm:1.0.0": - version: 1.0.0 - resolution: "jstransformer@npm:1.0.0" - dependencies: - is-promise: ^2.0.0 - promise: ^7.0.1 - checksum: 1e019fde17a38766a5b96bccf0738156badc60cfa61e2ba8a8bbd3b855e7d5d7e17492b8a66e4aaabc39483e335d23217343ae32d0f7e5a81af42a95c3e075f9 - languageName: node - linkType: hard - -"jsx-ast-utils@npm:^2.4.1 || ^3.0.0, jsx-ast-utils@npm:^3.3.3": - version: 3.3.4 - resolution: "jsx-ast-utils@npm:3.3.4" - dependencies: - array-includes: ^3.1.6 - array.prototype.flat: ^1.3.1 - object.assign: ^4.1.4 - object.values: ^1.1.6 - checksum: a6a00d324e38f0d47e04f973d79670248a663422a4dccdc02efd6f1caf1c00042fb0aafcff1023707c85dea6f013d435b90db67c1c6841bf345628f0a720d8b3 - languageName: node - linkType: hard - -"jubilant-carnival@npm:^0.6.0": - version: 0.6.0 - resolution: "jubilant-carnival@npm:0.6.0" - peerDependencies: - react: ">=16" - checksum: 1661b8422f77ffa750e2ffff9b6dc5bf8af18f3f5c60c001a8982ddfa33362b56e66cad2060f222a6e69cd33480f8615df8009acbf6cc83c8210a7033b102bb6 - languageName: node - linkType: hard - -"kind-of@npm:^6.0.2": - version: 6.0.3 - resolution: "kind-of@npm:6.0.3" - checksum: 3ab01e7b1d440b22fe4c31f23d8d38b4d9b91d9f291df683476576493d5dfd2e03848a8b05813dd0c3f0e835bc63f433007ddeceb71f05cb25c45ae1b19c6d3b - languageName: node - linkType: hard - -"language-subtag-registry@npm:~0.3.2": - version: 0.3.22 - resolution: "language-subtag-registry@npm:0.3.22" - checksum: 8ab70a7e0e055fe977ac16ea4c261faec7205ac43db5e806f72e5b59606939a3b972c4bd1e10e323b35d6ffa97c3e1c4c99f6553069dad2dfdd22020fa3eb56a - languageName: node - linkType: hard - -"language-tags@npm:=1.0.5": - version: 1.0.5 - resolution: "language-tags@npm:1.0.5" - dependencies: - language-subtag-registry: ~0.3.2 - checksum: c81b5d8b9f5f9cfd06ee71ada6ddfe1cf83044dd5eeefcd1e420ad491944da8957688db4a0a9bc562df4afdc2783425cbbdfd152c01d93179cf86888903123cf - languageName: node - linkType: hard - -"levn@npm:^0.4.1": - version: 0.4.1 - resolution: "levn@npm:0.4.1" - dependencies: - prelude-ls: ^1.2.1 - type-check: ~0.4.0 - checksum: 12c5021c859bd0f5248561bf139121f0358285ec545ebf48bb3d346820d5c61a4309535c7f387ed7d84361cf821e124ce346c6b7cef8ee09a67c1473b46d0fc4 - languageName: node - linkType: hard - -"lilconfig@npm:2.1.0, lilconfig@npm:^2.0.5, lilconfig@npm:^2.1.0": - version: 2.1.0 - resolution: "lilconfig@npm:2.1.0" - checksum: 8549bb352b8192375fed4a74694cd61ad293904eee33f9d4866c2192865c44c4eb35d10782966242634e0cbc1e91fe62b1247f148dc5514918e3a966da7ea117 - languageName: node - linkType: hard - -"lines-and-columns@npm:^1.1.6": - version: 1.2.4 - resolution: "lines-and-columns@npm:1.2.4" - checksum: 0c37f9f7fa212b38912b7145e1cd16a5f3cd34d782441c3e6ca653485d326f58b3caccda66efce1c5812bde4961bbde3374fae4b0d11bf1226152337f3894aa5 - languageName: node - linkType: hard - -"lint-staged@npm:^13.2.3": - version: 13.2.3 - resolution: "lint-staged@npm:13.2.3" - dependencies: - chalk: 5.2.0 - cli-truncate: ^3.1.0 - commander: ^10.0.0 - debug: ^4.3.4 - execa: ^7.0.0 - lilconfig: 2.1.0 - listr2: ^5.0.7 - micromatch: ^4.0.5 - normalize-path: ^3.0.0 - object-inspect: ^1.12.3 - pidtree: ^0.6.0 - string-argv: ^0.3.1 - yaml: ^2.2.2 - bin: - lint-staged: bin/lint-staged.js - checksum: ff51a1e33072f488b28b938ed47323816a1ff278ef6d0e5cbe1704b292773a6c8ce945b504eae3a9b5702917a979523a741f17023e16077bd5fa35be687cc067 - languageName: node - linkType: hard - -"listr2@npm:^5.0.7": - version: 5.0.8 - resolution: "listr2@npm:5.0.8" - dependencies: - cli-truncate: ^2.1.0 - colorette: ^2.0.19 - log-update: ^4.0.0 - p-map: ^4.0.0 - rfdc: ^1.3.0 - rxjs: ^7.8.0 - through: ^2.3.8 - wrap-ansi: ^7.0.0 - peerDependencies: - enquirer: ">= 2.3.0 < 3" - peerDependenciesMeta: - enquirer: - optional: true - checksum: 8be9f5632627c4df0dc33f452c98d415a49e5f1614650d3cab1b103c33e95f2a7a0e9f3e1e5de00d51bf0b4179acd8ff11b25be77dbe097cf3773c05e728d46c - languageName: node - linkType: hard - -"loader-runner@npm:^4.2.0": - version: 4.3.0 - resolution: "loader-runner@npm:4.3.0" - checksum: a90e00dee9a16be118ea43fec3192d0b491fe03a32ed48a4132eb61d498f5536a03a1315531c19d284392a8726a4ecad71d82044c28d7f22ef62e029bf761569 - languageName: node - linkType: hard - -"loader-utils@npm:^2.0.0": - version: 2.0.4 - resolution: "loader-utils@npm:2.0.4" - dependencies: - big.js: ^5.2.2 - emojis-list: ^3.0.0 - json5: ^2.1.2 - checksum: a5281f5fff1eaa310ad5e1164095689443630f3411e927f95031ab4fb83b4a98f388185bb1fe949e8ab8d4247004336a625e9255c22122b815bb9a4c5d8fc3b7 - languageName: node - linkType: hard - -"loadware@npm:^2.0.0": - version: 2.0.0 - resolution: "loadware@npm:2.0.0" - dependencies: - app-module-path: ^2.1.0 - checksum: 788cbf7f0651e87acba920187bc831680f55dce2dd2b6202c381bd2c9c8486eaab353737f3b7fc61a4fadd5eae80f173471134b4e72f18a30f7e6e3c00dbd1cd - languageName: node - linkType: hard - -"locate-path@npm:^5.0.0": - version: 5.0.0 - resolution: "locate-path@npm:5.0.0" - dependencies: - p-locate: ^4.1.0 - checksum: 83e51725e67517287d73e1ded92b28602e3ae5580b301fe54bfb76c0c723e3f285b19252e375712316774cf52006cb236aed5704692c32db0d5d089b69696e30 - languageName: node - linkType: hard - -"locate-path@npm:^6.0.0": - version: 6.0.0 - resolution: "locate-path@npm:6.0.0" - dependencies: - p-locate: ^5.0.0 - checksum: 72eb661788a0368c099a184c59d2fee760b3831c9c1c33955e8a19ae4a21b4116e53fa736dc086cdeb9fce9f7cc508f2f92d2d3aae516f133e16a2bb59a39f5a - languageName: node - linkType: hard - -"lodash.defaults@npm:^4.2.0": - version: 4.2.0 - resolution: "lodash.defaults@npm:4.2.0" - checksum: 84923258235592c8886e29de5491946ff8c2ae5c82a7ac5cddd2e3cb697e6fbdfbbb6efcca015795c86eec2bb953a5a2ee4016e3735a3f02720428a40efbb8f1 - languageName: node - linkType: hard - -"lodash.isarguments@npm:^3.1.0": - version: 3.1.0 - resolution: "lodash.isarguments@npm:3.1.0" - checksum: ae1526f3eb5c61c77944b101b1f655f846ecbedcb9e6b073526eba6890dc0f13f09f72e11ffbf6540b602caee319af9ac363d6cdd6be41f4ee453436f04f13b5 - languageName: node - linkType: hard - -"lodash.merge@npm:^4.6.2": - version: 4.6.2 - resolution: "lodash.merge@npm:4.6.2" - checksum: ad580b4bdbb7ca1f7abf7e1bce63a9a0b98e370cf40194b03380a46b4ed799c9573029599caebc1b14e3f24b111aef72b96674a56cfa105e0f5ac70546cdc005 - languageName: node - linkType: hard - -"log-update@npm:^4.0.0": - version: 4.0.0 - resolution: "log-update@npm:4.0.0" - dependencies: - ansi-escapes: ^4.3.0 - cli-cursor: ^3.1.0 - slice-ansi: ^4.0.0 - wrap-ansi: ^6.2.0 - checksum: ae2f85bbabc1906034154fb7d4c4477c79b3e703d22d78adee8b3862fa913942772e7fa11713e3d96fb46de4e3cabefbf5d0a544344f03b58d3c4bff52aa9eb2 - languageName: node - linkType: hard - -"loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": - version: 1.4.0 - resolution: "loose-envify@npm:1.4.0" - dependencies: - js-tokens: ^3.0.0 || ^4.0.0 - bin: - loose-envify: cli.js - checksum: 6517e24e0cad87ec9888f500c5b5947032cdfe6ef65e1c1936a0c48a524b81e65542c9c3edc91c97d5bddc806ee2a985dbc79be89215d613b1de5db6d1cfe6f4 - languageName: node - linkType: hard - -"lru-cache@npm:^6.0.0": - version: 6.0.0 - resolution: "lru-cache@npm:6.0.0" - dependencies: - yallist: ^4.0.0 - checksum: f97f499f898f23e4585742138a22f22526254fdba6d75d41a1c2526b3b6cc5747ef59c5612ba7375f42aca4f8461950e925ba08c991ead0651b4918b7c978297 - languageName: node - linkType: hard - -"lru-cache@npm:^7.7.1": - version: 7.18.3 - resolution: "lru-cache@npm:7.18.3" - checksum: e550d772384709deea3f141af34b6d4fa392e2e418c1498c078de0ee63670f1f46f5eee746e8ef7e69e1c895af0d4224e62ee33e66a543a14763b0f2e74c1356 - languageName: node - linkType: hard - -"lru-cache@npm:^9.1.1 || ^10.0.0": - version: 10.0.0 - resolution: "lru-cache@npm:10.0.0" - checksum: 18f101675fe283bc09cda0ef1e3cc83781aeb8373b439f086f758d1d91b28730950db785999cd060d3c825a8571c03073e8c14512b6655af2188d623031baf50 - languageName: node - linkType: hard - -"make-fetch-happen@npm:^11.0.3": - version: 11.1.1 - resolution: "make-fetch-happen@npm:11.1.1" - dependencies: - agentkeepalive: ^4.2.1 - cacache: ^17.0.0 - http-cache-semantics: ^4.1.1 - http-proxy-agent: ^5.0.0 - https-proxy-agent: ^5.0.0 - is-lambda: ^1.0.1 - lru-cache: ^7.7.1 - minipass: ^5.0.0 - minipass-fetch: ^3.0.0 - minipass-flush: ^1.0.5 - minipass-pipeline: ^1.2.4 - negotiator: ^0.6.3 - promise-retry: ^2.0.1 - socks-proxy-agent: ^7.0.0 - ssri: ^10.0.0 - checksum: 7268bf274a0f6dcf0343829489a4506603ff34bd0649c12058753900b0eb29191dce5dba12680719a5d0a983d3e57810f594a12f3c18494e93a1fbc6348a4540 - languageName: node - linkType: hard - -"media-typer@npm:0.3.0": - version: 0.3.0 - resolution: "media-typer@npm:0.3.0" - checksum: af1b38516c28ec95d6b0826f6c8f276c58aec391f76be42aa07646b4e39d317723e869700933ca6995b056db4b09a78c92d5440dc23657e6764be5d28874bba1 - languageName: node - linkType: hard - -"merge-descriptors@npm:1.0.1": - version: 1.0.1 - resolution: "merge-descriptors@npm:1.0.1" - checksum: 5abc259d2ae25bb06d19ce2b94a21632583c74e2a9109ee1ba7fd147aa7362b380d971e0251069f8b3eb7d48c21ac839e21fa177b335e82c76ec172e30c31a26 - languageName: node - linkType: hard - -"merge-stream@npm:^2.0.0": - version: 2.0.0 - resolution: "merge-stream@npm:2.0.0" - checksum: 6fa4dcc8d86629705cea944a4b88ef4cb0e07656ebf223fa287443256414283dd25d91c1cd84c77987f2aec5927af1a9db6085757cb43d90eb170ebf4b47f4f4 - languageName: node - linkType: hard - -"merge2@npm:^1.3.0, merge2@npm:^1.4.1": - version: 1.4.1 - resolution: "merge2@npm:1.4.1" - checksum: 7268db63ed5169466540b6fb947aec313200bcf6d40c5ab722c22e242f651994619bcd85601602972d3c85bd2cc45a358a4c61937e9f11a061919a1da569b0c2 - languageName: node - linkType: hard - -"method-override@npm:^3.0.0": - version: 3.0.0 - resolution: "method-override@npm:3.0.0" - dependencies: - debug: 3.1.0 - methods: ~1.1.2 - parseurl: ~1.3.2 - vary: ~1.1.2 - checksum: 0e7300ebe6326410b0d6e64efe4316903f886f89e51cfaefb0382bbcc9587d7e9b6e72fa683a629a810eb7e994e954129af7d86023a92be336ffd1505c3ad5c0 - languageName: node - linkType: hard - -"methods@npm:~1.1.2": - version: 1.1.2 - resolution: "methods@npm:1.1.2" - checksum: 0917ff4041fa8e2f2fda5425a955fe16ca411591fbd123c0d722fcf02b73971ed6f764d85f0a6f547ce49ee0221ce2c19a5fa692157931cecb422984f1dcd13a - languageName: node - linkType: hard - -"micromatch@npm:^4.0.4, micromatch@npm:^4.0.5": - version: 4.0.5 - resolution: "micromatch@npm:4.0.5" - dependencies: - braces: ^3.0.2 - picomatch: ^2.3.1 - checksum: 02a17b671c06e8fefeeb6ef996119c1e597c942e632a21ef589154f23898c9c6a9858526246abb14f8bca6e77734aa9dcf65476fca47cedfb80d9577d52843fc - languageName: node - linkType: hard - -"mime-db@npm:1.52.0, mime-db@npm:>= 1.43.0 < 2": - version: 1.52.0 - resolution: "mime-db@npm:1.52.0" - checksum: 0d99a03585f8b39d68182803b12ac601d9c01abfa28ec56204fa330bc9f3d1c5e14beb049bafadb3dbdf646dfb94b87e24d4ec7b31b7279ef906a8ea9b6a513f - languageName: node - linkType: hard - -"mime-types@npm:^2.1.27, mime-types@npm:~2.1.17, mime-types@npm:~2.1.24, mime-types@npm:~2.1.34": - version: 2.1.35 - resolution: "mime-types@npm:2.1.35" - dependencies: - mime-db: 1.52.0 - checksum: 89a5b7f1def9f3af5dad6496c5ed50191ae4331cc5389d7c521c8ad28d5fdad2d06fd81baf38fed813dc4e46bb55c8145bb0ff406330818c9cf712fb2e9b3836 - languageName: node - linkType: hard - -"mime@npm:1.6.0": - version: 1.6.0 - resolution: "mime@npm:1.6.0" - bin: - mime: cli.js - checksum: fef25e39263e6d207580bdc629f8872a3f9772c923c7f8c7e793175cee22777bbe8bba95e5d509a40aaa292d8974514ce634ae35769faa45f22d17edda5e8557 - languageName: node - linkType: hard - -"mimic-fn@npm:^2.1.0": - version: 2.1.0 - resolution: "mimic-fn@npm:2.1.0" - checksum: d2421a3444848ce7f84bd49115ddacff29c15745db73f54041edc906c14b131a38d05298dae3081667627a59b2eb1ca4b436ff2e1b80f69679522410418b478a - languageName: node - linkType: hard - -"mimic-fn@npm:^4.0.0": - version: 4.0.0 - resolution: "mimic-fn@npm:4.0.0" - checksum: 995dcece15ee29aa16e188de6633d43a3db4611bcf93620e7e62109ec41c79c0f34277165b8ce5e361205049766e371851264c21ac64ca35499acb5421c2ba56 - languageName: node - linkType: hard - -"mimic-response@npm:^3.1.0": - version: 3.1.0 - resolution: "mimic-response@npm:3.1.0" - checksum: 25739fee32c17f433626bf19f016df9036b75b3d84a3046c7d156e72ec963dd29d7fc8a302f55a3d6c5a4ff24259676b15d915aad6480815a969ff2ec0836867 - languageName: node - linkType: hard - -"minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": - version: 3.1.2 - resolution: "minimatch@npm:3.1.2" - dependencies: - brace-expansion: ^1.1.7 - checksum: c154e566406683e7bcb746e000b84d74465b3a832c45d59912b9b55cd50dee66e5c4b1e5566dba26154040e51672f9aa450a9aef0c97cfc7336b78b7afb9540a - languageName: node - linkType: hard - -"minimatch@npm:^9.0.1": - version: 9.0.3 - resolution: "minimatch@npm:9.0.3" - dependencies: - brace-expansion: ^2.0.1 - checksum: 253487976bf485b612f16bf57463520a14f512662e592e95c571afdab1442a6a6864b6c88f248ce6fc4ff0b6de04ac7aa6c8bb51e868e99d1d65eb0658a708b5 - languageName: node - linkType: hard - -"minimist@npm:^1.2.0, minimist@npm:^1.2.3, minimist@npm:^1.2.5, minimist@npm:^1.2.6": - version: 1.2.8 - resolution: "minimist@npm:1.2.8" - checksum: 75a6d645fb122dad29c06a7597bddea977258957ed88d7a6df59b5cd3fe4a527e253e9bbf2e783e4b73657f9098b96a5fe96ab8a113655d4109108577ecf85b0 - languageName: node - linkType: hard - -"minipass-collect@npm:^1.0.2": - version: 1.0.2 - resolution: "minipass-collect@npm:1.0.2" - dependencies: - minipass: ^3.0.0 - checksum: 14df761028f3e47293aee72888f2657695ec66bd7d09cae7ad558da30415fdc4752bbfee66287dcc6fd5e6a2fa3466d6c484dc1cbd986525d9393b9523d97f10 - languageName: node - linkType: hard - -"minipass-fetch@npm:^3.0.0": - version: 3.0.3 - resolution: "minipass-fetch@npm:3.0.3" - dependencies: - encoding: ^0.1.13 - minipass: ^5.0.0 - minipass-sized: ^1.0.3 - minizlib: ^2.1.2 - dependenciesMeta: - encoding: - optional: true - checksum: af5ab2552a16fcf505d35fd7ffb84b57f4a0eeb269e6e1d9a2a75824dda48b36e527083250b7cca4a4def21d9544e2ade441e4730e233c0bc2133f6abda31e18 - languageName: node - linkType: hard - -"minipass-flush@npm:^1.0.5": - version: 1.0.5 - resolution: "minipass-flush@npm:1.0.5" - dependencies: - minipass: ^3.0.0 - checksum: 56269a0b22bad756a08a94b1ffc36b7c9c5de0735a4dd1ab2b06c066d795cfd1f0ac44a0fcae13eece5589b908ecddc867f04c745c7009be0b566421ea0944cf - languageName: node - linkType: hard - -"minipass-pipeline@npm:^1.2.4": - version: 1.2.4 - resolution: "minipass-pipeline@npm:1.2.4" - dependencies: - minipass: ^3.0.0 - checksum: b14240dac0d29823c3d5911c286069e36d0b81173d7bdf07a7e4a91ecdef92cdff4baaf31ea3746f1c61e0957f652e641223970870e2353593f382112257971b - languageName: node - linkType: hard - -"minipass-sized@npm:^1.0.3": - version: 1.0.3 - resolution: "minipass-sized@npm:1.0.3" - dependencies: - minipass: ^3.0.0 - checksum: 79076749fcacf21b5d16dd596d32c3b6bf4d6e62abb43868fac21674078505c8b15eaca4e47ed844985a4514854f917d78f588fcd029693709417d8f98b2bd60 - languageName: node - linkType: hard - -"minipass@npm:^3.0.0": - version: 3.3.6 - resolution: "minipass@npm:3.3.6" - dependencies: - yallist: ^4.0.0 - checksum: a30d083c8054cee83cdcdc97f97e4641a3f58ae743970457b1489ce38ee1167b3aaf7d815cd39ec7a99b9c40397fd4f686e83750e73e652b21cb516f6d845e48 - languageName: node - linkType: hard - -"minipass@npm:^5.0.0": - version: 5.0.0 - resolution: "minipass@npm:5.0.0" - checksum: 425dab288738853fded43da3314a0b5c035844d6f3097a8e3b5b29b328da8f3c1af6fc70618b32c29ff906284cf6406b6841376f21caaadd0793c1d5a6a620ea - languageName: node - linkType: hard - -"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0": - version: 7.0.2 - resolution: "minipass@npm:7.0.2" - checksum: 46776de732eb7cef2c7404a15fb28c41f5c54a22be50d47b03c605bf21f5c18d61a173c0a20b49a97e7a65f78d887245066410642551e45fffe04e9ac9e325bc - languageName: node - linkType: hard - -"minizlib@npm:^2.1.1, minizlib@npm:^2.1.2": - version: 2.1.2 - resolution: "minizlib@npm:2.1.2" - dependencies: - minipass: ^3.0.0 - yallist: ^4.0.0 - checksum: f1fdeac0b07cf8f30fcf12f4b586795b97be856edea22b5e9072707be51fc95d41487faec3f265b42973a304fe3a64acd91a44a3826a963e37b37bafde0212c3 - languageName: node - linkType: hard - -"mkdirp-classic@npm:^0.5.2, mkdirp-classic@npm:^0.5.3": - version: 0.5.3 - resolution: "mkdirp-classic@npm:0.5.3" - checksum: 3f4e088208270bbcc148d53b73e9a5bd9eef05ad2cbf3b3d0ff8795278d50dd1d11a8ef1875ff5aea3fa888931f95bfcb2ad5b7c1061cfefd6284d199e6776ac - languageName: node - linkType: hard - -"mkdirp@npm:^1.0.3": - version: 1.0.4 - resolution: "mkdirp@npm:1.0.4" - bin: - mkdirp: bin/cmd.js - checksum: a96865108c6c3b1b8e1d5e9f11843de1e077e57737602de1b82030815f311be11f96f09cce59bd5b903d0b29834733e5313f9301e3ed6d6f6fba2eae0df4298f - languageName: node - linkType: hard - -"ms@npm:2.0.0": - version: 2.0.0 - resolution: "ms@npm:2.0.0" - checksum: 0e6a22b8b746d2e0b65a430519934fefd41b6db0682e3477c10f60c76e947c4c0ad06f63ffdf1d78d335f83edee8c0aa928aa66a36c7cd95b69b26f468d527f4 - languageName: node - linkType: hard - -"ms@npm:2.1.1": - version: 2.1.1 - resolution: "ms@npm:2.1.1" - checksum: 0078a23cd916a9a7435c413caa14c57d4b4f6e2470e0ab554b6964163c8a4436448ac7ae020e883685475da6b6796cc396b670f579cb275db288a21e3e57721e - languageName: node - linkType: hard - -"ms@npm:2.1.2": - version: 2.1.2 - resolution: "ms@npm:2.1.2" - checksum: 673cdb2c3133eb050c745908d8ce632ed2c02d85640e2edb3ace856a2266a813b30c613569bf3354fdf4ea7d1a1494add3bfa95e2713baa27d0c2c71fc44f58f - languageName: node - linkType: hard - -"ms@npm:2.1.3, ms@npm:^2.0.0, ms@npm:^2.1.1": - version: 2.1.3 - resolution: "ms@npm:2.1.3" - checksum: aa92de608021b242401676e35cfa5aa42dd70cbdc082b916da7fb925c542173e36bce97ea3e804923fe92c0ad991434e4a38327e15a1b5b5f945d66df615ae6d - languageName: node - linkType: hard - -"mz@npm:^2.7.0": - version: 2.7.0 - resolution: "mz@npm:2.7.0" - dependencies: - any-promise: ^1.0.0 - object-assign: ^4.0.1 - thenify-all: ^1.0.0 - checksum: 8427de0ece99a07e9faed3c0c6778820d7543e3776f9a84d22cf0ec0a8eb65f6e9aee9c9d353ff9a105ff62d33a9463c6ca638974cc652ee8140cd1e35951c87 - languageName: node - linkType: hard - -"nanoid@npm:^3.3.4, nanoid@npm:^3.3.6": - version: 3.3.6 - resolution: "nanoid@npm:3.3.6" - bin: - nanoid: bin/nanoid.cjs - checksum: 7d0eda657002738aa5206107bd0580aead6c95c460ef1bdd0b1a87a9c7ae6277ac2e9b945306aaa5b32c6dcb7feaf462d0f552e7f8b5718abfc6ead5c94a71b3 - languageName: node - linkType: hard - -"napi-build-utils@npm:^1.0.1": - version: 1.0.2 - resolution: "napi-build-utils@npm:1.0.2" - checksum: 06c14271ee966e108d55ae109f340976a9556c8603e888037145d6522726aebe89dd0c861b4b83947feaf6d39e79e08817559e8693deedc2c94e82c5cbd090c7 - languageName: node - linkType: hard - -"natural-compare@npm:^1.4.0": - version: 1.4.0 - resolution: "natural-compare@npm:1.4.0" - checksum: 23ad088b08f898fc9b53011d7bb78ec48e79de7627e01ab5518e806033861bef68d5b0cd0e2205c2f36690ac9571ff6bcb05eb777ced2eeda8d4ac5b44592c3d - languageName: node - linkType: hard - -"negotiator@npm:0.6.3, negotiator@npm:^0.6.3": - version: 0.6.3 - resolution: "negotiator@npm:0.6.3" - checksum: b8ffeb1e262eff7968fc90a2b6767b04cfd9842582a9d0ece0af7049537266e7b2506dfb1d107a32f06dd849ab2aea834d5830f7f4d0e5cb7d36e1ae55d021d9 - languageName: node - linkType: hard - -"neo-async@npm:^2.6.0, neo-async@npm:^2.6.2": - version: 2.6.2 - resolution: "neo-async@npm:2.6.2" - checksum: deac9f8d00eda7b2e5cd1b2549e26e10a0faa70adaa6fdadca701cc55f49ee9018e427f424bac0c790b7c7e2d3068db97f3093f1093975f2acb8f8818b936ed9 - languageName: node - linkType: hard - -"next@npm:13.4.12": - version: 13.4.12 - resolution: "next@npm:13.4.12" - dependencies: - "@next/env": 13.4.12 - "@next/swc-darwin-arm64": 13.4.12 - "@next/swc-darwin-x64": 13.4.12 - "@next/swc-linux-arm64-gnu": 13.4.12 - "@next/swc-linux-arm64-musl": 13.4.12 - "@next/swc-linux-x64-gnu": 13.4.12 - "@next/swc-linux-x64-musl": 13.4.12 - "@next/swc-win32-arm64-msvc": 13.4.12 - "@next/swc-win32-ia32-msvc": 13.4.12 - "@next/swc-win32-x64-msvc": 13.4.12 - "@swc/helpers": 0.5.1 - busboy: 1.6.0 - caniuse-lite: ^1.0.30001406 - postcss: 8.4.14 - styled-jsx: 5.1.1 - watchpack: 2.4.0 - zod: 3.21.4 - peerDependencies: - "@opentelemetry/api": ^1.1.0 - fibers: ">= 3.1.0" - react: ^18.2.0 - react-dom: ^18.2.0 - sass: ^1.3.0 - dependenciesMeta: - "@next/swc-darwin-arm64": - optional: true - "@next/swc-darwin-x64": - optional: true - "@next/swc-linux-arm64-gnu": - optional: true - "@next/swc-linux-arm64-musl": - optional: true - "@next/swc-linux-x64-gnu": - optional: true - "@next/swc-linux-x64-musl": - optional: true - "@next/swc-win32-arm64-msvc": - optional: true - "@next/swc-win32-ia32-msvc": - optional: true - "@next/swc-win32-x64-msvc": - optional: true - peerDependenciesMeta: - "@opentelemetry/api": - optional: true - fibers: - optional: true - sass: - optional: true - bin: - next: dist/bin/next - checksum: 50bd443ffe09424c1a94d6606d41886ccd1d65185e125aa199957ea92c5e4d1c226f1675f3e5ea92e88f43f8355824ba50db52a8aeae225f7a86b6c901d25527 - languageName: node - linkType: hard - -"node-abi@npm:^3.3.0": - version: 3.45.0 - resolution: "node-abi@npm:3.45.0" - dependencies: - semver: ^7.3.5 - checksum: 18c4305d7de5f1132741a2a66ba652941518210d02c9268702abe97ce1c166db468b4fc3e85fff04b9c19218c2e47f4e295f9a46422dc834932f4e11443400cd - languageName: node - linkType: hard - -"node-addon-api@npm:^6.1.0": - version: 6.1.0 - resolution: "node-addon-api@npm:6.1.0" - dependencies: - node-gyp: latest - checksum: 3a539510e677cfa3a833aca5397300e36141aca064cdc487554f2017110709a03a95da937e98c2a14ec3c626af7b2d1b6dabe629a481f9883143d0d5bff07bf2 - languageName: node - linkType: hard - -"node-gyp@npm:latest": - version: 9.4.0 - resolution: "node-gyp@npm:9.4.0" - dependencies: - env-paths: ^2.2.0 - exponential-backoff: ^3.1.1 - glob: ^7.1.4 - graceful-fs: ^4.2.6 - make-fetch-happen: ^11.0.3 - nopt: ^6.0.0 - npmlog: ^6.0.0 - rimraf: ^3.0.2 - semver: ^7.3.5 - tar: ^6.1.2 - which: ^2.0.2 - bin: - node-gyp: bin/node-gyp.js - checksum: 78b404e2e0639d64e145845f7f5a3cb20c0520cdaf6dda2f6e025e9b644077202ea7de1232396ba5bde3fee84cdc79604feebe6ba3ec84d464c85d407bb5da99 - languageName: node - linkType: hard - -"node-releases@npm:^2.0.12": - version: 2.0.13 - resolution: "node-releases@npm:2.0.13" - checksum: 17ec8f315dba62710cae71a8dad3cd0288ba943d2ece43504b3b1aa8625bf138637798ab470b1d9035b0545996f63000a8a926e0f6d35d0996424f8b6d36dda3 - languageName: node - linkType: hard - -"nopt@npm:^6.0.0": - version: 6.0.0 - resolution: "nopt@npm:6.0.0" - dependencies: - abbrev: ^1.0.0 - bin: - nopt: bin/nopt.js - checksum: 82149371f8be0c4b9ec2f863cc6509a7fd0fa729929c009f3a58e4eb0c9e4cae9920e8f1f8eb46e7d032fec8fb01bede7f0f41a67eb3553b7b8e14fa53de1dac - languageName: node - linkType: hard - -"normalize-path@npm:^3.0.0, normalize-path@npm:~3.0.0": - version: 3.0.0 - resolution: "normalize-path@npm:3.0.0" - checksum: 88eeb4da891e10b1318c4b2476b6e2ecbeb5ff97d946815ffea7794c31a89017c70d7f34b3c2ebf23ef4e9fc9fb99f7dffe36da22011b5b5c6ffa34f4873ec20 - languageName: node - linkType: hard - -"normalize-range@npm:^0.1.2": - version: 0.1.2 - resolution: "normalize-range@npm:0.1.2" - checksum: 9b2f14f093593f367a7a0834267c24f3cb3e887a2d9809c77d8a7e5fd08738bcd15af46f0ab01cc3a3d660386f015816b5c922cea8bf2ee79777f40874063184 - languageName: node - linkType: hard - -"normalize.css@npm:^8.0.1": - version: 8.0.1 - resolution: "normalize.css@npm:8.0.1" - checksum: 4698cae88ec35e3f3e82f9f9402e6ffb906c27ccd6373cad88e6b3f5634fc7a043cb38702472299e5edb73825cf8b18d5fd9283f58829eddda79ea97453049a2 - languageName: node - linkType: hard - -"npm-run-path@npm:^4.0.1": - version: 4.0.1 - resolution: "npm-run-path@npm:4.0.1" - dependencies: - path-key: ^3.0.0 - checksum: 5374c0cea4b0bbfdfae62da7bbdf1e1558d338335f4cacf2515c282ff358ff27b2ecb91ffa5330a8b14390ac66a1e146e10700440c1ab868208430f56b5f4d23 - languageName: node - linkType: hard - -"npm-run-path@npm:^5.1.0": - version: 5.1.0 - resolution: "npm-run-path@npm:5.1.0" - dependencies: - path-key: ^4.0.0 - checksum: dc184eb5ec239d6a2b990b43236845332ef12f4e0beaa9701de724aa797fe40b6bbd0157fb7639d24d3ab13f5d5cf22d223a19c6300846b8126f335f788bee66 - languageName: node - linkType: hard - -"npmlog@npm:^6.0.0, npmlog@npm:^6.0.2": - version: 6.0.2 - resolution: "npmlog@npm:6.0.2" - dependencies: - are-we-there-yet: ^3.0.0 - console-control-strings: ^1.1.0 - gauge: ^4.0.3 - set-blocking: ^2.0.0 - checksum: ae238cd264a1c3f22091cdd9e2b106f684297d3c184f1146984ecbe18aaa86343953f26b9520dedd1b1372bc0316905b736c1932d778dbeb1fcf5a1001390e2a - languageName: node - linkType: hard - -"object-assign@npm:^4, object-assign@npm:^4.0.1, object-assign@npm:^4.1.1": - version: 4.1.1 - resolution: "object-assign@npm:4.1.1" - checksum: fcc6e4ea8c7fe48abfbb552578b1c53e0d194086e2e6bbbf59e0a536381a292f39943c6e9628af05b5528aa5e3318bb30d6b2e53cadaf5b8fe9e12c4b69af23f - languageName: node - linkType: hard - -"object-hash@npm:^3.0.0": - version: 3.0.0 - resolution: "object-hash@npm:3.0.0" - checksum: 80b4904bb3857c52cc1bfd0b52c0352532ca12ed3b8a6ff06a90cd209dfda1b95cee059a7625eb9da29537027f68ac4619363491eedb2f5d3dddbba97494fd6c - languageName: node - linkType: hard - -"object-inspect@npm:^1.12.3, object-inspect@npm:^1.9.0": - version: 1.12.3 - resolution: "object-inspect@npm:1.12.3" - checksum: dabfd824d97a5f407e6d5d24810d888859f6be394d8b733a77442b277e0808860555176719c5905e765e3743a7cada6b8b0a3b85e5331c530fd418cc8ae991db - languageName: node - linkType: hard - -"object-keys@npm:^1.1.1": - version: 1.1.1 - resolution: "object-keys@npm:1.1.1" - checksum: b363c5e7644b1e1b04aa507e88dcb8e3a2f52b6ffd0ea801e4c7a62d5aa559affe21c55a07fd4b1fd55fc03a33c610d73426664b20032405d7b92a1414c34d6a - languageName: node - linkType: hard - -"object.assign@npm:^4.1.4": - version: 4.1.4 - resolution: "object.assign@npm:4.1.4" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.1.4 - has-symbols: ^1.0.3 - object-keys: ^1.1.1 - checksum: 76cab513a5999acbfe0ff355f15a6a125e71805fcf53de4e9d4e082e1989bdb81d1e329291e1e4e0ae7719f0e4ef80e88fb2d367ae60500d79d25a6224ac8864 - languageName: node - linkType: hard - -"object.entries@npm:^1.1.6": - version: 1.1.6 - resolution: "object.entries@npm:1.1.6" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.1.4 - es-abstract: ^1.20.4 - checksum: 0f8c47517e6a9a980241eafe3b73de11e59511883173c2b93d67424a008e47e11b77c80e431ad1d8a806f6108b225a1cab9223e53e555776c612a24297117d28 - languageName: node - linkType: hard - -"object.fromentries@npm:^2.0.6": - version: 2.0.6 - resolution: "object.fromentries@npm:2.0.6" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.1.4 - es-abstract: ^1.20.4 - checksum: 453c6d694180c0c30df451b60eaf27a5b9bca3fb43c37908fd2b78af895803dc631242bcf05582173afa40d8d0e9c96e16e8874b39471aa53f3ac1f98a085d85 - languageName: node - linkType: hard - -"object.hasown@npm:^1.1.2": - version: 1.1.2 - resolution: "object.hasown@npm:1.1.2" - dependencies: - define-properties: ^1.1.4 - es-abstract: ^1.20.4 - checksum: b936572536db0cdf38eb30afd2f1026a8b6f2cc5d2c4497c9d9bbb01eaf3e980dead4fd07580cfdd098e6383e5a9db8212d3ea0c6bdd2b5e68c60aa7e3b45566 - languageName: node - linkType: hard - -"object.values@npm:^1.1.6": - version: 1.1.6 - resolution: "object.values@npm:1.1.6" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.1.4 - es-abstract: ^1.20.4 - checksum: f6fff9fd817c24cfd8107f50fb33061d81cd11bacc4e3dbb3852e9ff7692fde4dbce823d4333ea27cd9637ef1b6690df5fbb61f1ed314fa2959598dc3ae23d8e - languageName: node - linkType: hard - -"on-finished@npm:2.4.1": - version: 2.4.1 - resolution: "on-finished@npm:2.4.1" - dependencies: - ee-first: 1.1.1 - checksum: d20929a25e7f0bb62f937a425b5edeb4e4cde0540d77ba146ec9357f00b0d497cdb3b9b05b9c8e46222407d1548d08166bff69cc56dfa55ba0e4469228920ff0 - languageName: node - linkType: hard - -"on-headers@npm:~1.0.1, on-headers@npm:~1.0.2": - version: 1.0.2 - resolution: "on-headers@npm:1.0.2" - checksum: 2bf13467215d1e540a62a75021e8b318a6cfc5d4fc53af8e8f84ad98dbcea02d506c6d24180cd62e1d769c44721ba542f3154effc1f7579a8288c9f7873ed8e5 - languageName: node - linkType: hard - -"once@npm:^1.3.0, once@npm:^1.3.1, once@npm:^1.4.0": - version: 1.4.0 - resolution: "once@npm:1.4.0" - dependencies: - wrappy: 1 - checksum: cd0a88501333edd640d95f0d2700fbde6bff20b3d4d9bdc521bdd31af0656b5706570d6c6afe532045a20bb8dc0849f8332d6f2a416e0ba6d3d3b98806c7db68 - languageName: node - linkType: hard - -"onetime@npm:^5.1.0, onetime@npm:^5.1.2": - version: 5.1.2 - resolution: "onetime@npm:5.1.2" - dependencies: - mimic-fn: ^2.1.0 - checksum: 2478859ef817fc5d4e9c2f9e5728512ddd1dbc9fb7829ad263765bb6d3b91ce699d6e2332eef6b7dff183c2f490bd3349f1666427eaba4469fba0ac38dfd0d34 - languageName: node - linkType: hard - -"onetime@npm:^6.0.0": - version: 6.0.0 - resolution: "onetime@npm:6.0.0" - dependencies: - mimic-fn: ^4.0.0 - checksum: 0846ce78e440841335d4e9182ef69d5762e9f38aa7499b19f42ea1c4cd40f0b4446094c455c713f9adac3f4ae86f613bb5e30c99e52652764d06a89f709b3788 - languageName: node - linkType: hard - -"only@npm:^0.0.2": - version: 0.0.2 - resolution: "only@npm:0.0.2" - checksum: d399710db867a1ef436dd3ce74499c87ece794aa81ab0370b5d153968766ee4aed2f98d3f92fc87c963e45b7a74d400d6f463ef651a5e7cfb861b15e88e9efe6 - languageName: node - linkType: hard - -"open@npm:^9.1.0": - version: 9.1.0 - resolution: "open@npm:9.1.0" - dependencies: - default-browser: ^4.0.0 - define-lazy-prop: ^3.0.0 - is-inside-container: ^1.0.0 - is-wsl: ^2.2.0 - checksum: 3993c0f61d51fed8ac290e99c9c3cf45d3b6cfb3e2aa2b74cafd312c3486c22fd81df16ac8f3ab91dd8a4e3e729a16fc2480cfc406c4833416cf908acf1ae7c9 - languageName: node - linkType: hard - -"optimism@npm:^0.17.4": - version: 0.17.5 - resolution: "optimism@npm:0.17.5" - dependencies: - "@wry/context": ^0.7.0 - "@wry/trie": ^0.4.3 - tslib: ^2.3.0 - checksum: 5990217d989e9857dc523a64cb6e5a9205eae68c7acac78f7dde8fbe50045d0f11ca8068cdbb51b1eae15510d96ad593a99cf98c6f86c41d1b6f90e54956ff11 - languageName: node - linkType: hard - -"optionator@npm:^0.9.3": - version: 0.9.3 - resolution: "optionator@npm:0.9.3" - dependencies: - "@aashutoshrathi/word-wrap": ^1.2.3 - deep-is: ^0.1.3 - fast-levenshtein: ^2.0.6 - levn: ^0.4.1 - prelude-ls: ^1.2.1 - type-check: ^0.4.0 - checksum: 09281999441f2fe9c33a5eeab76700795365a061563d66b098923eb719251a42bdbe432790d35064d0816ead9296dbeb1ad51a733edf4167c96bd5d0882e428a - languageName: node - linkType: hard - -"p-limit@npm:^2.2.0": - version: 2.3.0 - resolution: "p-limit@npm:2.3.0" - dependencies: - p-try: ^2.0.0 - checksum: 84ff17f1a38126c3314e91ecfe56aecbf36430940e2873dadaa773ffe072dc23b7af8e46d4b6485d302a11673fe94c6b67ca2cfbb60c989848b02100d0594ac1 - languageName: node - linkType: hard - -"p-limit@npm:^3.0.2": - version: 3.1.0 - resolution: "p-limit@npm:3.1.0" - dependencies: - yocto-queue: ^0.1.0 - checksum: 7c3690c4dbf62ef625671e20b7bdf1cbc9534e83352a2780f165b0d3ceba21907e77ad63401708145ca4e25bfc51636588d89a8c0aeb715e6c37d1c066430360 - languageName: node - linkType: hard - -"p-locate@npm:^4.1.0": - version: 4.1.0 - resolution: "p-locate@npm:4.1.0" - dependencies: - p-limit: ^2.2.0 - checksum: 513bd14a455f5da4ebfcb819ef706c54adb09097703de6aeaa5d26fe5ea16df92b48d1ac45e01e3944ce1e6aa2a66f7f8894742b8c9d6e276e16cd2049a2b870 - languageName: node - linkType: hard - -"p-locate@npm:^5.0.0": - version: 5.0.0 - resolution: "p-locate@npm:5.0.0" - dependencies: - p-limit: ^3.0.2 - checksum: 1623088f36cf1cbca58e9b61c4e62bf0c60a07af5ae1ca99a720837356b5b6c5ba3eb1b2127e47a06865fee59dd0453cad7cc844cda9d5a62ac1a5a51b7c86d3 - languageName: node - linkType: hard - -"p-map@npm:^4.0.0": - version: 4.0.0 - resolution: "p-map@npm:4.0.0" - dependencies: - aggregate-error: ^3.0.0 - checksum: cb0ab21ec0f32ddffd31dfc250e3afa61e103ef43d957cc45497afe37513634589316de4eb88abdfd969fe6410c22c0b93ab24328833b8eb1ccc087fc0442a1c - languageName: node - linkType: hard - -"p-try@npm:^2.0.0": - version: 2.2.0 - resolution: "p-try@npm:2.2.0" - checksum: f8a8e9a7693659383f06aec604ad5ead237c7a261c18048a6e1b5b85a5f8a067e469aa24f5bc009b991ea3b058a87f5065ef4176793a200d4917349881216cae - languageName: node - linkType: hard - -"parent-module@npm:^1.0.0": - version: 1.0.1 - resolution: "parent-module@npm:1.0.1" - dependencies: - callsites: ^3.0.0 - checksum: 6ba8b255145cae9470cf5551eb74be2d22281587af787a2626683a6c20fbb464978784661478dd2a3f1dad74d1e802d403e1b03c1a31fab310259eec8ac560ff - languageName: node - linkType: hard - -"parse-json@npm:^5.0.0": - version: 5.2.0 - resolution: "parse-json@npm:5.2.0" - dependencies: - "@babel/code-frame": ^7.0.0 - error-ex: ^1.3.1 - json-parse-even-better-errors: ^2.3.0 - lines-and-columns: ^1.1.6 - checksum: 62085b17d64da57f40f6afc2ac1f4d95def18c4323577e1eced571db75d9ab59b297d1d10582920f84b15985cbfc6b6d450ccbf317644cfa176f3ed982ad87e2 - languageName: node - linkType: hard - -"parseurl@npm:~1.3.2, parseurl@npm:~1.3.3": - version: 1.3.3 - resolution: "parseurl@npm:1.3.3" - checksum: 407cee8e0a3a4c5cd472559bca8b6a45b82c124e9a4703302326e9ab60fc1081442ada4e02628efef1eb16197ddc7f8822f5a91fd7d7c86b51f530aedb17dfa2 - languageName: node - linkType: hard - -"path-exists@npm:^4.0.0": - version: 4.0.0 - resolution: "path-exists@npm:4.0.0" - checksum: 505807199dfb7c50737b057dd8d351b82c033029ab94cb10a657609e00c1bc53b951cfdbccab8de04c5584d5eff31128ce6afd3db79281874a5ef2adbba55ed1 - languageName: node - linkType: hard - -"path-is-absolute@npm:^1.0.0": - version: 1.0.1 - resolution: "path-is-absolute@npm:1.0.1" - checksum: 060840f92cf8effa293bcc1bea81281bd7d363731d214cbe5c227df207c34cd727430f70c6037b5159c8a870b9157cba65e775446b0ab06fd5ecc7e54615a3b8 - languageName: node - linkType: hard - -"path-key@npm:^3.0.0, path-key@npm:^3.1.0": - version: 3.1.1 - resolution: "path-key@npm:3.1.1" - checksum: 55cd7a9dd4b343412a8386a743f9c746ef196e57c823d90ca3ab917f90ab9f13dd0ded27252ba49dbdfcab2b091d998bc446f6220cd3cea65db407502a740020 - languageName: node - linkType: hard - -"path-key@npm:^4.0.0": - version: 4.0.0 - resolution: "path-key@npm:4.0.0" - checksum: 8e6c314ae6d16b83e93032c61020129f6f4484590a777eed709c4a01b50e498822b00f76ceaf94bc64dbd90b327df56ceadce27da3d83393790f1219e07721d7 - languageName: node - linkType: hard - -"path-parse@npm:^1.0.7": - version: 1.0.7 - resolution: "path-parse@npm:1.0.7" - checksum: 49abf3d81115642938a8700ec580da6e830dde670be21893c62f4e10bd7dd4c3742ddc603fe24f898cba7eb0c6bc1777f8d9ac14185d34540c6d4d80cd9cae8a - languageName: node - linkType: hard - -"path-scurry@npm:^1.10.1": - version: 1.10.1 - resolution: "path-scurry@npm:1.10.1" - dependencies: - lru-cache: ^9.1.1 || ^10.0.0 - minipass: ^5.0.0 || ^6.0.2 || ^7.0.0 - checksum: e2557cff3a8fb8bc07afdd6ab163a92587884f9969b05bbbaf6fe7379348bfb09af9ed292af12ed32398b15fb443e81692047b786d1eeb6d898a51eb17ed7d90 - languageName: node - linkType: hard - -"path-to-regexp@npm:0.1.7": - version: 0.1.7 - resolution: "path-to-regexp@npm:0.1.7" - checksum: 69a14ea24db543e8b0f4353305c5eac6907917031340e5a8b37df688e52accd09e3cebfe1660b70d76b6bd89152f52183f28c74813dbf454ba1a01c82a38abce - languageName: node - linkType: hard - -"path-to-regexp@npm:^6.2.1": - version: 6.2.1 - resolution: "path-to-regexp@npm:6.2.1" - checksum: f0227af8284ea13300f4293ba111e3635142f976d4197f14d5ad1f124aebd9118783dd2e5f1fe16f7273743cc3dbeddfb7493f237bb27c10fdae07020cc9b698 - languageName: node - linkType: hard - -"path-type@npm:^4.0.0": - version: 4.0.0 - resolution: "path-type@npm:4.0.0" - checksum: 5b1e2daa247062061325b8fdbfd1fb56dde0a448fb1455453276ea18c60685bdad23a445dc148cf87bc216be1573357509b7d4060494a6fd768c7efad833ee45 - languageName: node - linkType: hard - -"picocolors@npm:^1.0.0": - version: 1.0.0 - resolution: "picocolors@npm:1.0.0" - checksum: a2e8092dd86c8396bdba9f2b5481032848525b3dc295ce9b57896f931e63fc16f79805144321f72976383fc249584672a75cc18d6777c6b757603f372f745981 - languageName: node - linkType: hard - -"picomatch@npm:^2.0.4, picomatch@npm:^2.2.1, picomatch@npm:^2.3.1": - version: 2.3.1 - resolution: "picomatch@npm:2.3.1" - checksum: 050c865ce81119c4822c45d3c84f1ced46f93a0126febae20737bd05ca20589c564d6e9226977df859ed5e03dc73f02584a2b0faad36e896936238238b0446cf - languageName: node - linkType: hard - -"pidtree@npm:^0.6.0": - version: 0.6.0 - resolution: "pidtree@npm:0.6.0" - bin: - pidtree: bin/pidtree.js - checksum: 8fbc073ede9209dd15e80d616e65eb674986c93be49f42d9ddde8dbbd141bb53d628a7ca4e58ab5c370bb00383f67d75df59a9a226dede8fa801267a7030c27a - languageName: node - linkType: hard - -"pify@npm:^2.3.0": - version: 2.3.0 - resolution: "pify@npm:2.3.0" - checksum: 9503aaeaf4577acc58642ad1d25c45c6d90288596238fb68f82811c08104c800e5a7870398e9f015d82b44ecbcbef3dc3d4251a1cbb582f6e5959fe09884b2ba - languageName: node - linkType: hard - -"pirates@npm:^4.0.1": - version: 4.0.6 - resolution: "pirates@npm:4.0.6" - checksum: 46a65fefaf19c6f57460388a5af9ab81e3d7fd0e7bc44ca59d753cb5c4d0df97c6c6e583674869762101836d68675f027d60f841c105d72734df9dfca97cbcc6 - languageName: node - linkType: hard - -"pkg-dir@npm:^4.2.0": - version: 4.2.0 - resolution: "pkg-dir@npm:4.2.0" - dependencies: - find-up: ^4.0.0 - checksum: 9863e3f35132bf99ae1636d31ff1e1e3501251d480336edb1c211133c8d58906bed80f154a1d723652df1fda91e01c7442c2eeaf9dc83157c7ae89087e43c8d6 - languageName: node - linkType: hard - -"postcss-import@npm:^15.1.0": - version: 15.1.0 - resolution: "postcss-import@npm:15.1.0" - dependencies: - postcss-value-parser: ^4.0.0 - read-cache: ^1.0.0 - resolve: ^1.1.7 - peerDependencies: - postcss: ^8.0.0 - checksum: 7bd04bd8f0235429009d0022cbf00faebc885de1d017f6d12ccb1b021265882efc9302006ba700af6cab24c46bfa2f3bc590be3f9aee89d064944f171b04e2a3 - languageName: node - linkType: hard - -"postcss-js@npm:^4.0.1": - version: 4.0.1 - resolution: "postcss-js@npm:4.0.1" - dependencies: - camelcase-css: ^2.0.1 - peerDependencies: - postcss: ^8.4.21 - checksum: 5c1e83efeabeb5a42676193f4357aa9c88f4dc1b3c4a0332c132fe88932b33ea58848186db117cf473049fc233a980356f67db490bd0a7832ccba9d0b3fd3491 - languageName: node - linkType: hard - -"postcss-load-config@npm:^4.0.1": - version: 4.0.1 - resolution: "postcss-load-config@npm:4.0.1" - dependencies: - lilconfig: ^2.0.5 - yaml: ^2.1.1 - peerDependencies: - postcss: ">=8.0.9" - ts-node: ">=9.0.0" - peerDependenciesMeta: - postcss: - optional: true - ts-node: - optional: true - checksum: b61f890499ed7dcda1e36c20a9582b17d745bad5e2b2c7bc96942465e406bc43ae03f270c08e60d1e29dab1ee50cb26970b5eb20c9aae30e066e20bd607ae4e4 - languageName: node - linkType: hard - -"postcss-nested@npm:^6.0.1": - version: 6.0.1 - resolution: "postcss-nested@npm:6.0.1" - dependencies: - postcss-selector-parser: ^6.0.11 - peerDependencies: - postcss: ^8.2.14 - checksum: 7ddb0364cd797de01e38f644879189e0caeb7ea3f78628c933d91cc24f327c56d31269384454fc02ecaf503b44bfa8e08870a7c4cc56b23bc15640e1894523fa - languageName: node - linkType: hard - -"postcss-selector-parser@npm:^6.0.11": - version: 6.0.13 - resolution: "postcss-selector-parser@npm:6.0.13" - dependencies: - cssesc: ^3.0.0 - util-deprecate: ^1.0.2 - checksum: f89163338a1ce3b8ece8e9055cd5a3165e79a15e1c408e18de5ad8f87796b61ec2d48a2902d179ae0c4b5de10fccd3a325a4e660596549b040bc5ad1b465f096 - languageName: node - linkType: hard - -"postcss-value-parser@npm:^4.0.0, postcss-value-parser@npm:^4.2.0": - version: 4.2.0 - resolution: "postcss-value-parser@npm:4.2.0" - checksum: 819ffab0c9d51cf0acbabf8996dffbfafbafa57afc0e4c98db88b67f2094cb44488758f06e5da95d7036f19556a4a732525e84289a425f4f6fd8e412a9d7442f - languageName: node - linkType: hard - -"postcss@npm:8.4.14": - version: 8.4.14 - resolution: "postcss@npm:8.4.14" - dependencies: - nanoid: ^3.3.4 - picocolors: ^1.0.0 - source-map-js: ^1.0.2 - checksum: fe58766ff32e4becf65a7d57678995cfd239df6deed2fe0557f038b47c94e4132e7e5f68b5aa820c13adfec32e523b693efaeb65798efb995ce49ccd83953816 - languageName: node - linkType: hard - -"postcss@npm:8.4.27": - version: 8.4.27 - resolution: "postcss@npm:8.4.27" - dependencies: - nanoid: ^3.3.6 - picocolors: ^1.0.0 - source-map-js: ^1.0.2 - checksum: 1cdd0c298849df6cd65f7e646a3ba36870a37b65f55fd59d1a165539c263e9b4872a402bf4ed1ca1bc31f58b68b2835545e33ea1a23b161a1f8aa6d5ded81e78 - languageName: node - linkType: hard - -"postcss@npm:^8.4.23": - version: 8.4.25 - resolution: "postcss@npm:8.4.25" - dependencies: - nanoid: ^3.3.6 - picocolors: ^1.0.0 - source-map-js: ^1.0.2 - checksum: 9ed3ab8af43ad5210c28f56f916fd9b8c9f94fbeaebbf645dcf579bc28bdd8056c2a7ecc934668d399b81fedb6128f0c4b299f931e50454964bc911c25a3a0a2 - languageName: node - linkType: hard - -"prebuild-install@npm:^7.1.1": - version: 7.1.1 - resolution: "prebuild-install@npm:7.1.1" - dependencies: - detect-libc: ^2.0.0 - expand-template: ^2.0.3 - github-from-package: 0.0.0 - minimist: ^1.2.3 - mkdirp-classic: ^0.5.3 - napi-build-utils: ^1.0.1 - node-abi: ^3.3.0 - pump: ^3.0.0 - rc: ^1.2.7 - simple-get: ^4.0.0 - tar-fs: ^2.0.0 - tunnel-agent: ^0.6.0 - bin: - prebuild-install: bin.js - checksum: dbf96d0146b6b5827fc8f67f72074d2e19c69628b9a7a0a17d0fad1bf37e9f06922896972e074197fc00a52eae912993e6ef5a0d471652f561df5cb516f3f467 - languageName: node - linkType: hard - -"prelude-ls@npm:^1.2.1": - version: 1.2.1 - resolution: "prelude-ls@npm:1.2.1" - checksum: cd192ec0d0a8e4c6da3bb80e4f62afe336df3f76271ac6deb0e6a36187133b6073a19e9727a1ff108cd8b9982e4768850d413baa71214dd80c7979617dca827a - languageName: node - linkType: hard - -"prettier-plugin-tailwindcss@npm:^0.4.1": - version: 0.4.1 - resolution: "prettier-plugin-tailwindcss@npm:0.4.1" - peerDependencies: - "@ianvs/prettier-plugin-sort-imports": "*" - "@prettier/plugin-pug": "*" - "@shopify/prettier-plugin-liquid": "*" - "@shufo/prettier-plugin-blade": "*" - "@trivago/prettier-plugin-sort-imports": "*" - prettier: ^2.2 || ^3.0 - prettier-plugin-astro: "*" - prettier-plugin-css-order: "*" - prettier-plugin-import-sort: "*" - prettier-plugin-jsdoc: "*" - prettier-plugin-marko: "*" - prettier-plugin-organize-attributes: "*" - prettier-plugin-organize-imports: "*" - prettier-plugin-style-order: "*" - prettier-plugin-svelte: "*" - prettier-plugin-twig-melody: "*" - peerDependenciesMeta: - "@ianvs/prettier-plugin-sort-imports": - optional: true - "@prettier/plugin-pug": - optional: true - "@shopify/prettier-plugin-liquid": - optional: true - "@shufo/prettier-plugin-blade": - optional: true - "@trivago/prettier-plugin-sort-imports": - optional: true - prettier-plugin-astro: - optional: true - prettier-plugin-css-order: - optional: true - prettier-plugin-import-sort: - optional: true - prettier-plugin-jsdoc: - optional: true - prettier-plugin-marko: - optional: true - prettier-plugin-organize-attributes: - optional: true - prettier-plugin-organize-imports: - optional: true - prettier-plugin-style-order: - optional: true - prettier-plugin-svelte: - optional: true - prettier-plugin-twig-melody: - optional: true - checksum: 9bdf3b7c270cc544f6bc38bbb869d3a97afc93de5005eee7272a36f374488731349c9362d2bbe4c83bd2a14b8a7c96cd25b9b682d1bea6dccc5bf08b2d02096c - languageName: node - linkType: hard - -"prettier@npm:^2.8.8": - version: 2.8.8 - resolution: "prettier@npm:2.8.8" - bin: - prettier: bin-prettier.js - checksum: b49e409431bf129dd89238d64299ba80717b57ff5a6d1c1a8b1a28b590d998a34e083fa13573bc732bb8d2305becb4c9a4407f8486c81fa7d55100eb08263cf8 - languageName: node - linkType: hard - -"promise-retry@npm:^2.0.1": - version: 2.0.1 - resolution: "promise-retry@npm:2.0.1" - dependencies: - err-code: ^2.0.2 - retry: ^0.12.0 - checksum: f96a3f6d90b92b568a26f71e966cbbc0f63ab85ea6ff6c81284dc869b41510e6cdef99b6b65f9030f0db422bf7c96652a3fff9f2e8fb4a0f069d8f4430359429 - languageName: node - linkType: hard - -"promise@npm:^7.0.1": - version: 7.3.1 - resolution: "promise@npm:7.3.1" - dependencies: - asap: ~2.0.3 - checksum: 475bb069130179fbd27ed2ab45f26d8862376a137a57314cf53310bdd85cc986a826fd585829be97ebc0aaf10e9d8e68be1bfe5a4a0364144b1f9eedfa940cf1 - languageName: node - linkType: hard - -"prop-types@npm:^15.6.2, prop-types@npm:^15.7.2, prop-types@npm:^15.8.1": - version: 15.8.1 - resolution: "prop-types@npm:15.8.1" - dependencies: - loose-envify: ^1.4.0 - object-assign: ^4.1.1 - react-is: ^16.13.1 - checksum: c056d3f1c057cb7ff8344c645450e14f088a915d078dcda795041765047fa080d38e5d626560ccaac94a4e16e3aa15f3557c1a9a8d1174530955e992c675e459 - languageName: node - linkType: hard - -"proxy-addr@npm:~2.0.7": - version: 2.0.7 - resolution: "proxy-addr@npm:2.0.7" - dependencies: - forwarded: 0.2.0 - ipaddr.js: 1.9.1 - checksum: 29c6990ce9364648255454842f06f8c46fcd124d3e6d7c5066df44662de63cdc0bad032e9bf5a3d653ff72141cc7b6019873d685708ac8210c30458ad99f2b74 - languageName: node - linkType: hard - -"pug-attrs@npm:^3.0.0": - version: 3.0.0 - resolution: "pug-attrs@npm:3.0.0" - dependencies: - constantinople: ^4.0.1 - js-stringify: ^1.0.2 - pug-runtime: ^3.0.0 - checksum: 2ca2d34de3065239f01f0fc3c0e104c17f7a7105684d088bb71df623005a45f40a2301e65f49ec4581bb31794c74e691862643d4e34062d1509e92fa56a15aa5 - languageName: node - linkType: hard - -"pug-code-gen@npm:^3.0.2": - version: 3.0.2 - resolution: "pug-code-gen@npm:3.0.2" - dependencies: - constantinople: ^4.0.1 - doctypes: ^1.1.0 - js-stringify: ^1.0.2 - pug-attrs: ^3.0.0 - pug-error: ^2.0.0 - pug-runtime: ^3.0.0 - void-elements: ^3.1.0 - with: ^7.0.0 - checksum: 1644d3a4d673392794248749eb146299704639a8197746454b7d03b240b83ee102f25b76d203381501e283be3927ab01eb3f4563ff51c45a478de1f3435a400d - languageName: node - linkType: hard - -"pug-error@npm:^2.0.0": - version: 2.0.0 - resolution: "pug-error@npm:2.0.0" - checksum: c5372d018c897c1d6a141dd803c50957feecfda1f3d84a6adc6149801315d6c7f8c28b05f3e186d98d774fc9718699d1e1caa675630dd3c4453f8c5ec4e4a986 - languageName: node - linkType: hard - -"pug-filters@npm:^4.0.0": - version: 4.0.0 - resolution: "pug-filters@npm:4.0.0" - dependencies: - constantinople: ^4.0.1 - jstransformer: 1.0.0 - pug-error: ^2.0.0 - pug-walk: ^2.0.0 - resolve: ^1.15.1 - checksum: 44eb3273195e3f42f034ad81109452236377780557eaf5a28db6e478f297675e19b8598cca9de65a0ba9c1d57e2ca2a93e332f0ab4be79dc5dd042375228cdff - languageName: node - linkType: hard - -"pug-lexer@npm:^5.0.1": - version: 5.0.1 - resolution: "pug-lexer@npm:5.0.1" - dependencies: - character-parser: ^2.2.0 - is-expression: ^4.0.0 - pug-error: ^2.0.0 - checksum: afdd2f43f2c3ba96001a7b734c0c3bc745eb5d7dd68c787c2690c606d34573ca46ba807e4b4c7e70db9b4556fb938625dbb9c25b79cdb8857868e6deb2574d3e - languageName: node - linkType: hard - -"pug-linker@npm:^4.0.0": - version: 4.0.0 - resolution: "pug-linker@npm:4.0.0" - dependencies: - pug-error: ^2.0.0 - pug-walk: ^2.0.0 - checksum: 7433aa65181cd5b7bc631ab5f14baae7496fd8da98608cbd55bbea9bc72fe69a863e72026781a9fe76ab429d7037465b942145455420ee1178e2875ec87a1e12 - languageName: node - linkType: hard - -"pug-load@npm:^3.0.0": - version: 3.0.0 - resolution: "pug-load@npm:3.0.0" - dependencies: - object-assign: ^4.1.1 - pug-walk: ^2.0.0 - checksum: 1800ec51994c92338401bcf79bbfa0d5ef9aa312bc415c2618263d6c04d1d7c5be5ac4a333c47a0eaa823f6231b4ade1a1c40f5784b99eb576d25853597bff2f - languageName: node - linkType: hard - -"pug-parser@npm:^6.0.0": - version: 6.0.0 - resolution: "pug-parser@npm:6.0.0" - dependencies: - pug-error: ^2.0.0 - token-stream: 1.0.0 - checksum: a6954d1383601233ec9d58e8fb22339f4809cf938272db16c551d8574566f388af3bf5560ec95ad5e23902bc358e6fa857409e840de4ed1ff5120a1dd6892cca - languageName: node - linkType: hard - -"pug-runtime@npm:^3.0.0, pug-runtime@npm:^3.0.1": - version: 3.0.1 - resolution: "pug-runtime@npm:3.0.1" - checksum: 48a71b587caa08a5bccf9c1164206a34067edc1d13c2164bebad2dc562b529317578f889a0c41f0e16ddab3853c599696ff29a085f2d4554b783228f0002c41b - languageName: node - linkType: hard - -"pug-strip-comments@npm:^2.0.0": - version: 2.0.0 - resolution: "pug-strip-comments@npm:2.0.0" - dependencies: - pug-error: ^2.0.0 - checksum: 2cfcbf506c14bb3e64204a1d93f12ca61658d2540475b0f0911c35531ad28421e8d1e73a646d841d58cfa2c20f8593c52e492dfe5b6bec968e20b614e4dea1e4 - languageName: node - linkType: hard - -"pug-walk@npm:^2.0.0": - version: 2.0.0 - resolution: "pug-walk@npm:2.0.0" - checksum: bee64e133b711e1ed58022c0869b59e62f9f3ebb7084293857f074120b3cb588e7b8f74c4566426bf2b26dc1ec176ca6b64a2d1e53782f3fbbe039c5d4816638 - languageName: node - linkType: hard - -"pug@npm:^3.0.2": - version: 3.0.2 - resolution: "pug@npm:3.0.2" - dependencies: - pug-code-gen: ^3.0.2 - pug-filters: ^4.0.0 - pug-lexer: ^5.0.1 - pug-linker: ^4.0.0 - pug-load: ^3.0.0 - pug-parser: ^6.0.0 - pug-runtime: ^3.0.1 - pug-strip-comments: ^2.0.0 - checksum: 3e1a3d48897c0c7dedd4f959ce8afaf6417a63756b149e1b5382bef16de5792ec7c7ae6a7d41641059cb149520f20b0d1ecf57014c0661526e96f0bad88541e5 - languageName: node - linkType: hard - -"pump@npm:^3.0.0": - version: 3.0.0 - resolution: "pump@npm:3.0.0" - dependencies: - end-of-stream: ^1.1.0 - once: ^1.3.1 - checksum: e42e9229fba14732593a718b04cb5e1cfef8254544870997e0ecd9732b189a48e1256e4e5478148ecb47c8511dca2b09eae56b4d0aad8009e6fac8072923cfc9 - languageName: node - linkType: hard - -"punycode@npm:^2.1.0": - version: 2.3.0 - resolution: "punycode@npm:2.3.0" - checksum: 39f760e09a2a3bbfe8f5287cf733ecdad69d6af2fe6f97ca95f24b8921858b91e9ea3c9eeec6e08cede96181b3bb33f95c6ffd8c77e63986508aa2e8159fa200 - languageName: node - linkType: hard - -"qs@npm:6.11.0": - version: 6.11.0 - resolution: "qs@npm:6.11.0" - dependencies: - side-channel: ^1.0.4 - checksum: 6e1f29dd5385f7488ec74ac7b6c92f4d09a90408882d0c208414a34dd33badc1a621019d4c799a3df15ab9b1d0292f97c1dd71dc7c045e69f81a8064e5af7297 - languageName: node - linkType: hard - -"qs@npm:^6.11.0": - version: 6.11.2 - resolution: "qs@npm:6.11.2" - dependencies: - side-channel: ^1.0.4 - checksum: e812f3c590b2262548647d62f1637b6989cc56656dc960b893fe2098d96e1bd633f36576f4cd7564dfbff9db42e17775884db96d846bebe4f37420d073ecdc0b - languageName: node - linkType: hard - -"queue-microtask@npm:^1.2.2": - version: 1.2.3 - resolution: "queue-microtask@npm:1.2.3" - checksum: b676f8c040cdc5b12723ad2f91414d267605b26419d5c821ff03befa817ddd10e238d22b25d604920340fd73efd8ba795465a0377c4adf45a4a41e4234e42dc4 - languageName: node - linkType: hard - -"queue-tick@npm:^1.0.1": - version: 1.0.1 - resolution: "queue-tick@npm:1.0.1" - checksum: 57c3292814b297f87f792fbeb99ce982813e4e54d7a8bdff65cf53d5c084113913289d4a48ec8bbc964927a74b847554f9f4579df43c969a6c8e0f026457ad01 - languageName: node - linkType: hard - -"random-bytes@npm:~1.0.0": - version: 1.0.0 - resolution: "random-bytes@npm:1.0.0" - checksum: 09faa256394aa2ca9754aa57e92a27c452c3e97ffb266e98bebb517332e9df7168fea393159f88d884febce949ba8bec8ddb02f03342da6c6023ecc7b155e0ae - languageName: node - linkType: hard - -"randombytes@npm:^2.1.0": - version: 2.1.0 - resolution: "randombytes@npm:2.1.0" - dependencies: - safe-buffer: ^5.1.0 - checksum: d779499376bd4cbb435ef3ab9a957006c8682f343f14089ed5f27764e4645114196e75b7f6abf1cbd84fd247c0cb0651698444df8c9bf30e62120fbbc52269d6 - languageName: node - linkType: hard - -"range-parser@npm:~1.2.1": - version: 1.2.1 - resolution: "range-parser@npm:1.2.1" - checksum: 0a268d4fea508661cf5743dfe3d5f47ce214fd6b7dec1de0da4d669dd4ef3d2144468ebe4179049eff253d9d27e719c88dae55be64f954e80135a0cada804ec9 - languageName: node - linkType: hard - -"raw-body@npm:2.5.1": - version: 2.5.1 - resolution: "raw-body@npm:2.5.1" - dependencies: - bytes: 3.1.2 - http-errors: 2.0.0 - iconv-lite: 0.4.24 - unpipe: 1.0.0 - checksum: 5362adff1575d691bb3f75998803a0ffed8c64eabeaa06e54b4ada25a0cd1b2ae7f4f5ec46565d1bec337e08b5ac90c76eaa0758de6f72a633f025d754dec29e - languageName: node - linkType: hard - -"raw-body@npm:2.5.2": - version: 2.5.2 - resolution: "raw-body@npm:2.5.2" - dependencies: - bytes: 3.1.2 - http-errors: 2.0.0 - iconv-lite: 0.4.24 - unpipe: 1.0.0 - checksum: ba1583c8d8a48e8fbb7a873fdbb2df66ea4ff83775421bfe21ee120140949ab048200668c47d9ae3880012f6e217052690628cf679ddfbd82c9fc9358d574676 - languageName: node - linkType: hard - -"rc@npm:^1.2.7": - version: 1.2.8 - resolution: "rc@npm:1.2.8" - dependencies: - deep-extend: ^0.6.0 - ini: ~1.3.0 - minimist: ^1.2.0 - strip-json-comments: ~2.0.1 - bin: - rc: ./cli.js - checksum: 2e26e052f8be2abd64e6d1dabfbd7be03f80ec18ccbc49562d31f617d0015fbdbcf0f9eed30346ea6ab789e0fdfe4337f033f8016efdbee0df5354751842080e - languageName: node - linkType: hard - -"react-dom@npm:18.2.0": - version: 18.2.0 - resolution: "react-dom@npm:18.2.0" - dependencies: - loose-envify: ^1.1.0 - scheduler: ^0.23.0 - peerDependencies: - react: ^18.2.0 - checksum: 7d323310bea3a91be2965f9468d552f201b1c27891e45ddc2d6b8f717680c95a75ae0bc1e3f5cf41472446a2589a75aed4483aee8169287909fcd59ad149e8cc - languageName: node - linkType: hard - -"react-is@npm:^16.13.1, react-is@npm:^16.7.0": - version: 16.13.1 - resolution: "react-is@npm:16.13.1" - checksum: f7a19ac3496de32ca9ae12aa030f00f14a3d45374f1ceca0af707c831b2a6098ef0d6bdae51bd437b0a306d7f01d4677fcc8de7c0d331eb47ad0f46130e53c5f - languageName: node - linkType: hard - -"react-is@npm:^18.2.0": - version: 18.2.0 - resolution: "react-is@npm:18.2.0" - checksum: e72d0ba81b5922759e4aff17e0252bd29988f9642ed817f56b25a3e217e13eea8a7f2322af99a06edb779da12d5d636e9fda473d620df9a3da0df2a74141d53e - languageName: node - linkType: hard - -"react-transition-group@npm:^4.4.5": - version: 4.4.5 - resolution: "react-transition-group@npm:4.4.5" - dependencies: - "@babel/runtime": ^7.5.5 - dom-helpers: ^5.0.1 - loose-envify: ^1.4.0 - prop-types: ^15.6.2 - peerDependencies: - react: ">=16.6.0" - react-dom: ">=16.6.0" - checksum: 75602840106aa9c6545149d6d7ae1502fb7b7abadcce70a6954c4b64a438ff1cd16fc77a0a1e5197cdd72da398f39eb929ea06f9005c45b132ed34e056ebdeb1 - languageName: node - linkType: hard - -"react@npm:18.2.0": - version: 18.2.0 - resolution: "react@npm:18.2.0" - dependencies: - loose-envify: ^1.1.0 - checksum: 88e38092da8839b830cda6feef2e8505dec8ace60579e46aa5490fc3dc9bba0bd50336507dc166f43e3afc1c42939c09fe33b25fae889d6f402721dcd78fca1b - languageName: node - linkType: hard - -"read-cache@npm:^1.0.0": - version: 1.0.0 - resolution: "read-cache@npm:1.0.0" - dependencies: - pify: ^2.3.0 - checksum: cffc728b9ede1e0667399903f9ecaf3789888b041c46ca53382fa3a06303e5132774dc0a96d0c16aa702dbac1ea0833d5a868d414f5ab2af1e1438e19e6657c6 - languageName: node - linkType: hard - -"readable-stream@npm:^3.1.1, readable-stream@npm:^3.4.0, readable-stream@npm:^3.6.0": - version: 3.6.2 - resolution: "readable-stream@npm:3.6.2" - dependencies: - inherits: ^2.0.3 - string_decoder: ^1.1.1 - util-deprecate: ^1.0.1 - checksum: bdcbe6c22e846b6af075e32cf8f4751c2576238c5043169a1c221c92ee2878458a816a4ea33f4c67623c0b6827c8a400409bfb3cf0bf3381392d0b1dfb52ac8d - languageName: node - linkType: hard - -"readdirp@npm:~3.6.0": - version: 3.6.0 - resolution: "readdirp@npm:3.6.0" - dependencies: - picomatch: ^2.2.1 - checksum: 1ced032e6e45670b6d7352d71d21ce7edf7b9b928494dcaba6f11fba63180d9da6cd7061ebc34175ffda6ff529f481818c962952004d273178acd70f7059b320 - languageName: node - linkType: hard - -"rechoir@npm:^0.8.0": - version: 0.8.0 - resolution: "rechoir@npm:0.8.0" - dependencies: - resolve: ^1.20.0 - checksum: ad3caed8afdefbc33fbc30e6d22b86c35b3d51c2005546f4e79bcc03c074df804b3640ad18945e6bef9ed12caedc035655ec1082f64a5e94c849ff939dc0a788 - languageName: node - linkType: hard - -"redis-errors@npm:^1.0.0, redis-errors@npm:^1.2.0": - version: 1.2.0 - resolution: "redis-errors@npm:1.2.0" - checksum: f28ac2692113f6f9c222670735aa58aeae413464fd58ccf3fce3f700cae7262606300840c802c64f2b53f19f65993da24dc918afc277e9e33ac1ff09edb394f4 - languageName: node - linkType: hard - -"redis-parser@npm:^3.0.0": - version: 3.0.0 - resolution: "redis-parser@npm:3.0.0" - dependencies: - redis-errors: ^1.0.0 - checksum: 89290ae530332f2ae37577647fa18208d10308a1a6ba750b9d9a093e7398f5e5253f19855b64c98757f7129cccce958e4af2573fdc33bad41405f87f1943459a - languageName: node - linkType: hard - -"regenerator-runtime@npm:^0.13.11": - version: 0.13.11 - resolution: "regenerator-runtime@npm:0.13.11" - checksum: 27481628d22a1c4e3ff551096a683b424242a216fee44685467307f14d58020af1e19660bf2e26064de946bad7eff28950eae9f8209d55723e2d9351e632bbb4 - languageName: node - linkType: hard - -"regexp.prototype.flags@npm:^1.4.3, regexp.prototype.flags@npm:^1.5.0": - version: 1.5.0 - resolution: "regexp.prototype.flags@npm:1.5.0" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.2.0 - functions-have-names: ^1.2.3 - checksum: c541687cdbdfff1b9a07f6e44879f82c66bbf07665f9a7544c5fd16acdb3ec8d1436caab01662d2fbcad403f3499d49ab0b77fbc7ef29ef961d98cc4bc9755b4 - languageName: node - linkType: hard - -"resolve-cwd@npm:^3.0.0": - version: 3.0.0 - resolution: "resolve-cwd@npm:3.0.0" - dependencies: - resolve-from: ^5.0.0 - checksum: 546e0816012d65778e580ad62b29e975a642989108d9a3c5beabfb2304192fa3c9f9146fbdfe213563c6ff51975ae41bac1d3c6e047dd9572c94863a057b4d81 - languageName: node - linkType: hard - -"resolve-from@npm:^4.0.0": - version: 4.0.0 - resolution: "resolve-from@npm:4.0.0" - checksum: f4ba0b8494846a5066328ad33ef8ac173801a51739eb4d63408c847da9a2e1c1de1e6cbbf72699211f3d13f8fc1325648b169bd15eb7da35688e30a5fb0e4a7f - languageName: node - linkType: hard - -"resolve-from@npm:^5.0.0": - version: 5.0.0 - resolution: "resolve-from@npm:5.0.0" - checksum: 4ceeb9113e1b1372d0cd969f3468fa042daa1dd9527b1b6bb88acb6ab55d8b9cd65dbf18819f9f9ddf0db804990901dcdaade80a215e7b2c23daae38e64f5bdf - languageName: node - linkType: hard - -"resolve-pkg-maps@npm:^1.0.0": - version: 1.0.0 - resolution: "resolve-pkg-maps@npm:1.0.0" - checksum: 1012afc566b3fdb190a6309cc37ef3b2dcc35dff5fa6683a9d00cd25c3247edfbc4691b91078c97adc82a29b77a2660c30d791d65dab4fc78bfc473f60289977 - languageName: node - linkType: hard - -"resolve@npm:^1.1.7, resolve@npm:^1.15.1, resolve@npm:^1.19.0, resolve@npm:^1.20.0, resolve@npm:^1.22.1, resolve@npm:^1.22.2": - version: 1.22.2 - resolution: "resolve@npm:1.22.2" - dependencies: - is-core-module: ^2.11.0 - path-parse: ^1.0.7 - supports-preserve-symlinks-flag: ^1.0.0 - bin: - resolve: bin/resolve - checksum: 7e5df75796ebd429445d102d5824482ee7e567f0070b2b45897b29bb4f613dcbc262e0257b8aeedb3089330ccaea0d6a0464df1a77b2992cf331dcda0f4cb549 - languageName: node - linkType: hard - -"resolve@npm:^2.0.0-next.4": - version: 2.0.0-next.4 - resolution: "resolve@npm:2.0.0-next.4" - dependencies: - is-core-module: ^2.9.0 - path-parse: ^1.0.7 - supports-preserve-symlinks-flag: ^1.0.0 - bin: - resolve: bin/resolve - checksum: c438ac9a650f2030fd074219d7f12ceb983b475da2d89ad3d6dd05fbf6b7a0a8cd37d4d10b43cb1f632bc19f22246ab7f36ebda54d84a29bfb2910a0680906d3 - languageName: node - linkType: hard - -"resolve@patch:resolve@^1.1.7#~builtin, resolve@patch:resolve@^1.15.1#~builtin, resolve@patch:resolve@^1.19.0#~builtin, resolve@patch:resolve@^1.20.0#~builtin, resolve@patch:resolve@^1.22.1#~builtin, resolve@patch:resolve@^1.22.2#~builtin": - version: 1.22.2 - resolution: "resolve@patch:resolve@npm%3A1.22.2#~builtin::version=1.22.2&hash=c3c19d" - dependencies: - is-core-module: ^2.11.0 - path-parse: ^1.0.7 - supports-preserve-symlinks-flag: ^1.0.0 - bin: - resolve: bin/resolve - checksum: 66cc788f13b8398de18eb4abb3aed90435c84bb8935953feafcf7231ba4cd191b2c10b4a87b1e9681afc34fb138c705f91f7330ff90bfa36f457e5584076a2b8 - languageName: node - linkType: hard - -"resolve@patch:resolve@^2.0.0-next.4#~builtin": - version: 2.0.0-next.4 - resolution: "resolve@patch:resolve@npm%3A2.0.0-next.4#~builtin::version=2.0.0-next.4&hash=c3c19d" - dependencies: - is-core-module: ^2.9.0 - path-parse: ^1.0.7 - supports-preserve-symlinks-flag: ^1.0.0 - bin: - resolve: bin/resolve - checksum: 4bf9f4f8a458607af90518ff73c67a4bc1a38b5a23fef2bb0ccbd45e8be89820a1639b637b0ba377eb2be9eedfb1739a84cde24fe4cd670c8207d8fea922b011 - languageName: node - linkType: hard - -"response-iterator@npm:^0.2.6": - version: 0.2.6 - resolution: "response-iterator@npm:0.2.6" - checksum: b0db3c0665a0d698d65512951de9623c086b9c84ce015a76076d4bd0bf733779601d0b41f0931d16ae38132fba29e1ce291c1f8e6550fc32daaa2dc3ab4f338d - languageName: node - linkType: hard - -"response-time@npm:^2.3.2": - version: 2.3.2 - resolution: "response-time@npm:2.3.2" - dependencies: - depd: ~1.1.0 - on-headers: ~1.0.1 - checksum: 2520478f03dfe2bf44a099a696b3904af71e563e7df810e413d8d075945a23dd4277a5b44eb18a65fa01f3167fa4cf309166a3872a803649d387cfe67de8fbc8 - languageName: node - linkType: hard - -"restore-cursor@npm:^3.1.0": - version: 3.1.0 - resolution: "restore-cursor@npm:3.1.0" - dependencies: - onetime: ^5.1.0 - signal-exit: ^3.0.2 - checksum: f877dd8741796b909f2a82454ec111afb84eb45890eb49ac947d87991379406b3b83ff9673a46012fca0d7844bb989f45cc5b788254cf1a39b6b5a9659de0630 - languageName: node - linkType: hard - -"retry@npm:^0.12.0": - version: 0.12.0 - resolution: "retry@npm:0.12.0" - checksum: 623bd7d2e5119467ba66202d733ec3c2e2e26568074923bc0585b6b99db14f357e79bdedb63cab56cec47491c4a0da7e6021a7465ca6dc4f481d3898fdd3158c - languageName: node - linkType: hard - -"reusify@npm:^1.0.4": - version: 1.0.4 - resolution: "reusify@npm:1.0.4" - checksum: c3076ebcc22a6bc252cb0b9c77561795256c22b757f40c0d8110b1300723f15ec0fc8685e8d4ea6d7666f36c79ccc793b1939c748bf36f18f542744a4e379fcc - languageName: node - linkType: hard - -"rfdc@npm:^1.3.0": - version: 1.3.0 - resolution: "rfdc@npm:1.3.0" - checksum: fb2ba8512e43519983b4c61bd3fa77c0f410eff6bae68b08614437bc3f35f91362215f7b4a73cbda6f67330b5746ce07db5dd9850ad3edc91271ad6deea0df32 - languageName: node - linkType: hard - -"rimraf@npm:^3.0.2": - version: 3.0.2 - resolution: "rimraf@npm:3.0.2" - dependencies: - glob: ^7.1.3 - bin: - rimraf: bin.js - checksum: 87f4164e396f0171b0a3386cc1877a817f572148ee13a7e113b238e48e8a9f2f31d009a92ec38a591ff1567d9662c6b67fd8818a2dbbaed74bc26a87a2a4a9a0 - languageName: node - linkType: hard - -"rndm@npm:1.2.0": - version: 1.2.0 - resolution: "rndm@npm:1.2.0" - checksum: ff0c54a12357267108d7de17b762869e388215e2e3c8147b5bba80d8454ee490c5fdaa40020b8b52ca52b86f13ad6171b4845dd5b7f627e5e2b6195908117c07 - languageName: node - linkType: hard - -"run-applescript@npm:^5.0.0": - version: 5.0.0 - resolution: "run-applescript@npm:5.0.0" - dependencies: - execa: ^5.0.0 - checksum: d00c2dbfa5b2d774de7451194b8b125f40f65fc183de7d9dcae97f57f59433586d3c39b9001e111c38bfa24c3436c99df1bb4066a2a0c90d39a8c4cd6889af77 - languageName: node - linkType: hard - -"run-parallel@npm:^1.1.9": - version: 1.2.0 - resolution: "run-parallel@npm:1.2.0" - dependencies: - queue-microtask: ^1.2.2 - checksum: cb4f97ad25a75ebc11a8ef4e33bb962f8af8516bb2001082ceabd8902e15b98f4b84b4f8a9b222e5d57fc3bd1379c483886ed4619367a7680dad65316993021d - languageName: node - linkType: hard - -"rxjs@npm:^7.8.0": - version: 7.8.1 - resolution: "rxjs@npm:7.8.1" - dependencies: - tslib: ^2.1.0 - checksum: de4b53db1063e618ec2eca0f7965d9137cabe98cf6be9272efe6c86b47c17b987383df8574861bcced18ebd590764125a901d5506082be84a8b8e364bf05f119 - languageName: node - linkType: hard - -"safe-buffer@npm:5.1.1": - version: 5.1.1 - resolution: "safe-buffer@npm:5.1.1" - checksum: 7f117b604554c9daca713be76cecc6c52932ed1dd6303638274f21319038bfd760fbfd353e526cc83f11894935bc4beb71f5b7b9478c11bf9718c0e0d94c51cb - languageName: node - linkType: hard - -"safe-buffer@npm:5.1.2": - version: 5.1.2 - resolution: "safe-buffer@npm:5.1.2" - checksum: f2f1f7943ca44a594893a852894055cf619c1fbcb611237fc39e461ae751187e7baf4dc391a72125e0ac4fb2d8c5c0b3c71529622e6a58f46b960211e704903c - languageName: node - linkType: hard - -"safe-buffer@npm:5.2.1, safe-buffer@npm:^5.0.1, safe-buffer@npm:^5.1.0, safe-buffer@npm:~5.2.0": - version: 5.2.1 - resolution: "safe-buffer@npm:5.2.1" - checksum: b99c4b41fdd67a6aaf280fcd05e9ffb0813654894223afb78a31f14a19ad220bba8aba1cb14eddce1fcfb037155fe6de4e861784eb434f7d11ed58d1e70dd491 - languageName: node - linkType: hard - -"safe-regex-test@npm:^1.0.0": - version: 1.0.0 - resolution: "safe-regex-test@npm:1.0.0" - dependencies: - call-bind: ^1.0.2 - get-intrinsic: ^1.1.3 - is-regex: ^1.1.4 - checksum: bc566d8beb8b43c01b94e67de3f070fd2781685e835959bbbaaec91cc53381145ca91f69bd837ce6ec244817afa0a5e974fc4e40a2957f0aca68ac3add1ddd34 - languageName: node - linkType: hard - -"safer-buffer@npm:>= 2.1.2 < 3, safer-buffer@npm:>= 2.1.2 < 3.0.0": - version: 2.1.2 - resolution: "safer-buffer@npm:2.1.2" - checksum: cab8f25ae6f1434abee8d80023d7e72b598cf1327164ddab31003c51215526801e40b66c5e65d658a0af1e9d6478cadcb4c745f4bd6751f97d8644786c0978b0 - languageName: node - linkType: hard - -"scheduler@npm:^0.23.0": - version: 0.23.0 - resolution: "scheduler@npm:0.23.0" - dependencies: - loose-envify: ^1.1.0 - checksum: d79192eeaa12abef860c195ea45d37cbf2bbf5f66e3c4dcd16f54a7da53b17788a70d109ee3d3dde1a0fd50e6a8fc171f4300356c5aee4fc0171de526bf35f8a - languageName: node - linkType: hard - -"schema-utils@npm:^3.0.0, schema-utils@npm:^3.1.1, schema-utils@npm:^3.2.0": - version: 3.3.0 - resolution: "schema-utils@npm:3.3.0" - dependencies: - "@types/json-schema": ^7.0.8 - ajv: ^6.12.5 - ajv-keywords: ^3.5.2 - checksum: ea56971926fac2487f0757da939a871388891bc87c6a82220d125d587b388f1704788f3706e7f63a7b70e49fc2db974c41343528caea60444afd5ce0fe4b85c0 - languageName: node - linkType: hard - -"screen2.0@workspace:.": - version: 0.0.0-use.local - resolution: "screen2.0@workspace:." - dependencies: - "@apollo/client": alpha - "@apollo/experimental-nextjs-app-support": ^0.3.1 - "@emotion/react": ^11.11.1 - "@emotion/styled": ^11.11.0 - "@mui/icons-material": ^5.14.3 - "@mui/material": ^5.14.2 - "@types/node": ^20.4.9 - "@types/react": ^18.2.19 - "@types/react-dom": 18.2.7 - "@weng-lab/psychscreen-ui-components": ^0.7.8 - "@weng-lab/ts-ztable": ^4.0.1 - autoprefixer: 10.4.14 - eslint: 8.46.0 - eslint-config-next: 13.4.10 - file-loader: ^6.2.0 - graphql: ^16.7.1 - jubilant-carnival: ^0.6.0 - lint-staged: ^13.2.3 - next: 13.4.12 - normalize.css: ^8.0.1 - only: ^0.0.2 - postcss: 8.4.27 - prettier: ^2.8.8 - prettier-plugin-tailwindcss: ^0.4.1 - react: 18.2.0 - react-dom: 18.2.0 - server: ^1.0.38 - sharp: ^0.32.4 - tailwindcss: 3.3.3 - typescript: 5.1.6 - webpack: ^5.88.2 - webpack-cli: ^5.1.4 - languageName: unknown - linkType: soft - -"semver@npm:^6.3.0": - version: 6.3.1 - resolution: "semver@npm:6.3.1" - bin: - semver: bin/semver.js - checksum: ae47d06de28836adb9d3e25f22a92943477371292d9b665fb023fae278d345d508ca1958232af086d85e0155aee22e313e100971898bbb8d5d89b8b1d4054ca2 - languageName: node - linkType: hard - -"semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.5.4": - version: 7.5.4 - resolution: "semver@npm:7.5.4" - dependencies: - lru-cache: ^6.0.0 - bin: - semver: bin/semver.js - checksum: 12d8ad952fa353b0995bf180cdac205a4068b759a140e5d3c608317098b3575ac2f1e09182206bf2eb26120e1c0ed8fb92c48c592f6099680de56bb071423ca3 - languageName: node - linkType: hard - -"send@npm:0.18.0": - version: 0.18.0 - resolution: "send@npm:0.18.0" - dependencies: - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - encodeurl: ~1.0.2 - escape-html: ~1.0.3 - etag: ~1.8.1 - fresh: 0.5.2 - http-errors: 2.0.0 - mime: 1.6.0 - ms: 2.1.3 - on-finished: 2.4.1 - range-parser: ~1.2.1 - statuses: 2.0.1 - checksum: 74fc07ebb58566b87b078ec63e5a3e41ecd987e4272ba67b7467e86c6ad51bc6b0b0154133b6d8b08a2ddda360464f71382f7ef864700f34844a76c8027817a8 - languageName: node - linkType: hard - -"serialize-javascript@npm:^6.0.1": - version: 6.0.1 - resolution: "serialize-javascript@npm:6.0.1" - dependencies: - randombytes: ^2.1.0 - checksum: 3c4f4cb61d0893b988415bdb67243637333f3f574e9e9cc9a006a2ced0b390b0b3b44aef8d51c951272a9002ec50885eefdc0298891bc27eb2fe7510ea87dc4f - languageName: node - linkType: hard - -"serve-favicon@npm:^2.5.0": - version: 2.5.0 - resolution: "serve-favicon@npm:2.5.0" - dependencies: - etag: ~1.8.1 - fresh: 0.5.2 - ms: 2.1.1 - parseurl: ~1.3.2 - safe-buffer: 5.1.1 - checksum: f4dd0fbee3b7e18d0a27ba6ba01d2f585f23f533010c9e8c74aad74615b19b12d8fbe714f14cb3579803f0bacecd67cdc858714cb56c6e28f8dd07ccc997aea4 - languageName: node - linkType: hard - -"serve-index@npm:^1.9.1": - version: 1.9.1 - resolution: "serve-index@npm:1.9.1" - dependencies: - accepts: ~1.3.4 - batch: 0.6.1 - debug: 2.6.9 - escape-html: ~1.0.3 - http-errors: ~1.6.2 - mime-types: ~2.1.17 - parseurl: ~1.3.2 - checksum: e2647ce13379485b98a53ba2ea3fbad4d44b57540d00663b02b976e426e6194d62ac465c0d862cb7057f65e0de8ab8a684aa095427a4b8612412eca0d300d22f - languageName: node - linkType: hard - -"serve-static@npm:1.15.0": - version: 1.15.0 - resolution: "serve-static@npm:1.15.0" - dependencies: - encodeurl: ~1.0.2 - escape-html: ~1.0.3 - parseurl: ~1.3.3 - send: 0.18.0 - checksum: af57fc13be40d90a12562e98c0b7855cf6e8bd4c107fe9a45c212bf023058d54a1871b1c89511c3958f70626fff47faeb795f5d83f8cf88514dbaeb2b724464d - languageName: node - linkType: hard - -"server@npm:^1.0.38": - version: 1.0.38 - resolution: "server@npm:1.0.38" - dependencies: - body-parser: ^1.20.1 - compression: ^1.7.4 - connect-redis: ^6.1.3 - cookie-parser: ^1.4.6 - csurf: ^1.11.0 - dotenv: ^16.0.3 - express: ^4.18.1 - express-session: ^1.17.3 - extend: ^3.0.2 - hbs: ^4.2.0 - helmet: ^6.0.0 - ioredis: ^5.2.3 - loadware: ^2.0.0 - method-override: ^3.0.0 - mz: ^2.7.0 - npmlog: ^6.0.2 - path-to-regexp: ^6.2.1 - pug: ^3.0.2 - response-time: ^2.3.2 - serve-favicon: ^2.5.0 - serve-index: ^1.9.1 - socket.io: ^4.5.2 - upload-files-express: ^0.4.0 - checksum: c0395de94ab43f21412f651b3d655cc02bb9df574a8b6f151021fd1b4e8ab54b519269a075debf67df12f477f8c17f877761d97bda0ec1f33494b61cd741a08f - languageName: node - linkType: hard - -"set-blocking@npm:^2.0.0": - version: 2.0.0 - resolution: "set-blocking@npm:2.0.0" - checksum: 6e65a05f7cf7ebdf8b7c75b101e18c0b7e3dff4940d480efed8aad3a36a4005140b660fa1d804cb8bce911cac290441dc728084a30504d3516ac2ff7ad607b02 - languageName: node - linkType: hard - -"setprototypeof@npm:1.1.0": - version: 1.1.0 - resolution: "setprototypeof@npm:1.1.0" - checksum: 27cb44304d6c9e1a23bc6c706af4acaae1a7aa1054d4ec13c05f01a99fd4887109a83a8042b67ad90dbfcd100d43efc171ee036eb080667172079213242ca36e - languageName: node - linkType: hard - -"setprototypeof@npm:1.1.1": - version: 1.1.1 - resolution: "setprototypeof@npm:1.1.1" - checksum: a8bee29c1c64c245d460ce53f7460af8cbd0aceac68d66e5215153992cc8b3a7a123416353e0c642060e85cc5fd4241c92d1190eec97eda0dcb97436e8fcca3b - languageName: node - linkType: hard - -"setprototypeof@npm:1.2.0": - version: 1.2.0 - resolution: "setprototypeof@npm:1.2.0" - checksum: be18cbbf70e7d8097c97f713a2e76edf84e87299b40d085c6bf8b65314e994cc15e2e317727342fa6996e38e1f52c59720b53fe621e2eb593a6847bf0356db89 - languageName: node - linkType: hard - -"shallow-clone@npm:^3.0.0": - version: 3.0.1 - resolution: "shallow-clone@npm:3.0.1" - dependencies: - kind-of: ^6.0.2 - checksum: 39b3dd9630a774aba288a680e7d2901f5c0eae7b8387fc5c8ea559918b29b3da144b7bdb990d7ccd9e11be05508ac9e459ce51d01fd65e583282f6ffafcba2e7 - languageName: node - linkType: hard - -"sharp@npm:^0.32.4": - version: 0.32.4 - resolution: "sharp@npm:0.32.4" - dependencies: - color: ^4.2.3 - detect-libc: ^2.0.2 - node-addon-api: ^6.1.0 - node-gyp: latest - prebuild-install: ^7.1.1 - semver: ^7.5.4 - simple-get: ^4.0.1 - tar-fs: ^3.0.4 - tunnel-agent: ^0.6.0 - checksum: 52e3cfe8fbba2623a9b935be8a3d00d6993a2c56c775ac5cc89b273826db95f029f68a0029a37f96dcb6790aa2e3c05a02599035535b319f50ab31f5d86a13f0 - languageName: node - linkType: hard - -"shebang-command@npm:^2.0.0": - version: 2.0.0 - resolution: "shebang-command@npm:2.0.0" - dependencies: - shebang-regex: ^3.0.0 - checksum: 6b52fe87271c12968f6a054e60f6bde5f0f3d2db483a1e5c3e12d657c488a15474121a1d55cd958f6df026a54374ec38a4a963988c213b7570e1d51575cea7fa - languageName: node - linkType: hard - -"shebang-regex@npm:^3.0.0": - version: 3.0.0 - resolution: "shebang-regex@npm:3.0.0" - checksum: 1a2bcae50de99034fcd92ad4212d8e01eedf52c7ec7830eedcf886622804fe36884278f2be8be0ea5fde3fd1c23911643a4e0f726c8685b61871c8908af01222 - languageName: node - linkType: hard - -"side-channel@npm:^1.0.4": - version: 1.0.4 - resolution: "side-channel@npm:1.0.4" - dependencies: - call-bind: ^1.0.0 - get-intrinsic: ^1.0.2 - object-inspect: ^1.9.0 - checksum: 351e41b947079c10bd0858364f32bb3a7379514c399edb64ab3dce683933483fc63fb5e4efe0a15a2e8a7e3c436b6a91736ddb8d8c6591b0460a24bb4a1ee245 - languageName: node - linkType: hard - -"signal-exit@npm:^3.0.2, signal-exit@npm:^3.0.3, signal-exit@npm:^3.0.7": - version: 3.0.7 - resolution: "signal-exit@npm:3.0.7" - checksum: a2f098f247adc367dffc27845853e9959b9e88b01cb301658cfe4194352d8d2bb32e18467c786a7fe15f1d44b233ea35633d076d5e737870b7139949d1ab6318 - languageName: node - linkType: hard - -"signal-exit@npm:^4.0.1": - version: 4.0.2 - resolution: "signal-exit@npm:4.0.2" - checksum: 41f5928431cc6e91087bf0343db786a6313dd7c6fd7e551dbc141c95bb5fb26663444fd9df8ea47c5d7fc202f60aa7468c3162a9365cbb0615fc5e1b1328fe31 - languageName: node - linkType: hard - -"simple-concat@npm:^1.0.0": - version: 1.0.1 - resolution: "simple-concat@npm:1.0.1" - checksum: 4d211042cc3d73a718c21ac6c4e7d7a0363e184be6a5ad25c8a1502e49df6d0a0253979e3d50dbdd3f60ef6c6c58d756b5d66ac1e05cda9cacd2e9fc59e3876a - languageName: node - linkType: hard - -"simple-get@npm:^4.0.0, simple-get@npm:^4.0.1": - version: 4.0.1 - resolution: "simple-get@npm:4.0.1" - dependencies: - decompress-response: ^6.0.0 - once: ^1.3.1 - simple-concat: ^1.0.0 - checksum: e4132fd27cf7af230d853fa45c1b8ce900cb430dd0a3c6d3829649fe4f2b26574c803698076c4006450efb0fad2ba8c5455fbb5755d4b0a5ec42d4f12b31d27e - languageName: node - linkType: hard - -"simple-swizzle@npm:^0.2.2": - version: 0.2.2 - resolution: "simple-swizzle@npm:0.2.2" - dependencies: - is-arrayish: ^0.3.1 - checksum: a7f3f2ab5c76c4472d5c578df892e857323e452d9f392e1b5cf74b74db66e6294a1e1b8b390b519fa1b96b5b613f2a37db6cffef52c3f1f8f3c5ea64eb2d54c0 - languageName: node - linkType: hard - -"slash@npm:^3.0.0": - version: 3.0.0 - resolution: "slash@npm:3.0.0" - checksum: 94a93fff615f25a999ad4b83c9d5e257a7280c90a32a7cb8b4a87996e4babf322e469c42b7f649fd5796edd8687652f3fb452a86dc97a816f01113183393f11c - languageName: node - linkType: hard - -"slash@npm:^4.0.0": - version: 4.0.0 - resolution: "slash@npm:4.0.0" - checksum: da8e4af73712253acd21b7853b7e0dbba776b786e82b010a5bfc8b5051a1db38ed8aba8e1e8f400dd2c9f373be91eb1c42b66e91abb407ff42b10feece5e1d2d - languageName: node - linkType: hard - -"slice-ansi@npm:^3.0.0": - version: 3.0.0 - resolution: "slice-ansi@npm:3.0.0" - dependencies: - ansi-styles: ^4.0.0 - astral-regex: ^2.0.0 - is-fullwidth-code-point: ^3.0.0 - checksum: 5ec6d022d12e016347e9e3e98a7eb2a592213a43a65f1b61b74d2c78288da0aded781f665807a9f3876b9daa9ad94f64f77d7633a0458876c3a4fdc4eb223f24 - languageName: node - linkType: hard - -"slice-ansi@npm:^4.0.0": - version: 4.0.0 - resolution: "slice-ansi@npm:4.0.0" - dependencies: - ansi-styles: ^4.0.0 - astral-regex: ^2.0.0 - is-fullwidth-code-point: ^3.0.0 - checksum: 4a82d7f085b0e1b070e004941ada3c40d3818563ac44766cca4ceadd2080427d337554f9f99a13aaeb3b4a94d9964d9466c807b3d7b7541d1ec37ee32d308756 - languageName: node - linkType: hard - -"slice-ansi@npm:^5.0.0": - version: 5.0.0 - resolution: "slice-ansi@npm:5.0.0" - dependencies: - ansi-styles: ^6.0.0 - is-fullwidth-code-point: ^4.0.0 - checksum: 7e600a2a55e333a21ef5214b987c8358fe28bfb03c2867ff2cbf919d62143d1812ac27b4297a077fdaf27a03da3678e49551c93e35f9498a3d90221908a1180e - languageName: node - linkType: hard - -"smart-buffer@npm:^4.2.0": - version: 4.2.0 - resolution: "smart-buffer@npm:4.2.0" - checksum: b5167a7142c1da704c0e3af85c402002b597081dd9575031a90b4f229ca5678e9a36e8a374f1814c8156a725d17008ae3bde63b92f9cfd132526379e580bec8b - languageName: node - linkType: hard - -"socket.io-adapter@npm:~2.5.2": - version: 2.5.2 - resolution: "socket.io-adapter@npm:2.5.2" - dependencies: - ws: ~8.11.0 - checksum: 481251c3547221e57eb5cb247d0b1a3cde4d152a4c1c9051cc887345a7770e59f3b47f1011cac4499e833f01fcfc301ed13c4ec6e72f7dbb48a476375a6344cd - languageName: node - linkType: hard - -"socket.io-parser@npm:~4.2.4": - version: 4.2.4 - resolution: "socket.io-parser@npm:4.2.4" - dependencies: - "@socket.io/component-emitter": ~3.1.0 - debug: ~4.3.1 - checksum: 61540ef99af33e6a562b9effe0fad769bcb7ec6a301aba5a64b3a8bccb611a0abdbe25f469933ab80072582006a78ca136bf0ad8adff9c77c9953581285e2263 - languageName: node - linkType: hard - -"socket.io@npm:^4.5.2": - version: 4.7.1 - resolution: "socket.io@npm:4.7.1" - dependencies: - accepts: ~1.3.4 - base64id: ~2.0.0 - cors: ~2.8.5 - debug: ~4.3.2 - engine.io: ~6.5.0 - socket.io-adapter: ~2.5.2 - socket.io-parser: ~4.2.4 - checksum: 81404d06383aa5495b3cb9a1a4fc1435cfa97d8963c89fa54403c3ef20e0884eccedb8799b1c804a40896f903d64543e2303071d5d60dcbf7e062edf7a98d87f - languageName: node - linkType: hard - -"socks-proxy-agent@npm:^7.0.0": - version: 7.0.0 - resolution: "socks-proxy-agent@npm:7.0.0" - dependencies: - agent-base: ^6.0.2 - debug: ^4.3.3 - socks: ^2.6.2 - checksum: 720554370154cbc979e2e9ce6a6ec6ced205d02757d8f5d93fe95adae454fc187a5cbfc6b022afab850a5ce9b4c7d73e0f98e381879cf45f66317a4895953846 - languageName: node - linkType: hard - -"socks@npm:^2.6.2": - version: 2.7.1 - resolution: "socks@npm:2.7.1" - dependencies: - ip: ^2.0.0 - smart-buffer: ^4.2.0 - checksum: 259d9e3e8e1c9809a7f5c32238c3d4d2a36b39b83851d0f573bfde5f21c4b1288417ce1af06af1452569cd1eb0841169afd4998f0e04ba04656f6b7f0e46d748 - languageName: node - linkType: hard - -"source-map-js@npm:^1.0.2": - version: 1.0.2 - resolution: "source-map-js@npm:1.0.2" - checksum: c049a7fc4deb9a7e9b481ae3d424cc793cb4845daa690bc5a05d428bf41bf231ced49b4cf0c9e77f9d42fdb3d20d6187619fc586605f5eabe995a316da8d377c - languageName: node - linkType: hard - -"source-map-support@npm:~0.5.20": - version: 0.5.21 - resolution: "source-map-support@npm:0.5.21" - dependencies: - buffer-from: ^1.0.0 - source-map: ^0.6.0 - checksum: 43e98d700d79af1d36f859bdb7318e601dfc918c7ba2e98456118ebc4c4872b327773e5a1df09b0524e9e5063bb18f0934538eace60cca2710d1fa687645d137 - languageName: node - linkType: hard - -"source-map@npm:^0.5.7": - version: 0.5.7 - resolution: "source-map@npm:0.5.7" - checksum: 5dc2043b93d2f194142c7f38f74a24670cd7a0063acdaf4bf01d2964b402257ae843c2a8fa822ad5b71013b5fcafa55af7421383da919752f22ff488bc553f4d - languageName: node - linkType: hard - -"source-map@npm:^0.6.0, source-map@npm:^0.6.1": - version: 0.6.1 - resolution: "source-map@npm:0.6.1" - checksum: 59ce8640cf3f3124f64ac289012c2b8bd377c238e316fb323ea22fbfe83da07d81e000071d7242cad7a23cd91c7de98e4df8830ec3f133cb6133a5f6e9f67bc2 - languageName: node - linkType: hard - -"ssri@npm:^10.0.0": - version: 10.0.4 - resolution: "ssri@npm:10.0.4" - dependencies: - minipass: ^5.0.0 - checksum: fb14da9f8a72b04eab163eb13a9dda11d5962cd2317f85457c4e0b575e9a6e0e3a6a87b5bf122c75cb36565830cd5f263fb457571bf6f1587eb5f95d095d6165 - languageName: node - linkType: hard - -"standard-as-callback@npm:^2.1.0": - version: 2.1.0 - resolution: "standard-as-callback@npm:2.1.0" - checksum: 88bec83ee220687c72d94fd86a98d5272c91d37ec64b66d830dbc0d79b62bfa6e47f53b71646011835fc9ce7fae62739545d13124262b53be4fbb3e2ebad551c - languageName: node - linkType: hard - -"statuses@npm:2.0.1": - version: 2.0.1 - resolution: "statuses@npm:2.0.1" - checksum: 18c7623fdb8f646fb213ca4051be4df7efb3484d4ab662937ca6fbef7ced9b9e12842709872eb3020cc3504b93bde88935c9f6417489627a7786f24f8031cbcb - languageName: node - linkType: hard - -"statuses@npm:>= 1.4.0 < 2, statuses@npm:>= 1.5.0 < 2": - version: 1.5.0 - resolution: "statuses@npm:1.5.0" - checksum: c469b9519de16a4bb19600205cffb39ee471a5f17b82589757ca7bd40a8d92ebb6ed9f98b5a540c5d302ccbc78f15dc03cc0280dd6e00df1335568a5d5758a5c - languageName: node - linkType: hard - -"streamsearch@npm:^1.1.0": - version: 1.1.0 - resolution: "streamsearch@npm:1.1.0" - checksum: 1cce16cea8405d7a233d32ca5e00a00169cc0e19fbc02aa839959985f267335d435c07f96e5e0edd0eadc6d39c98d5435fb5bbbdefc62c41834eadc5622ad942 - languageName: node - linkType: hard - -"streamx@npm:^2.15.0": - version: 2.15.0 - resolution: "streamx@npm:2.15.0" - dependencies: - fast-fifo: ^1.1.0 - queue-tick: ^1.0.1 - checksum: 6f1dcdc326d57fa4ec0c2aade730b701d28e4e206047c230c6b3f6ac25b28f79809533342dd3e11861237dbd14f3af9ab83be972f569ccdf5eddc5c7ffeb657a - languageName: node - linkType: hard - -"string-argv@npm:^0.3.1": - version: 0.3.2 - resolution: "string-argv@npm:0.3.2" - checksum: 8703ad3f3db0b2641ed2adbb15cf24d3945070d9a751f9e74a924966db9f325ac755169007233e8985a39a6a292f14d4fee20482989b89b96e473c4221508a0f - languageName: node - linkType: hard - -"string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^1.0.2 || 2 || 3 || 4, string-width@npm:^4.1.0, string-width@npm:^4.2.0, string-width@npm:^4.2.3": - version: 4.2.3 - resolution: "string-width@npm:4.2.3" - dependencies: - emoji-regex: ^8.0.0 - is-fullwidth-code-point: ^3.0.0 - strip-ansi: ^6.0.1 - checksum: e52c10dc3fbfcd6c3a15f159f54a90024241d0f149cf8aed2982a2d801d2e64df0bf1dc351cf8e95c3319323f9f220c16e740b06faecd53e2462df1d2b5443fb - languageName: node - linkType: hard - -"string-width@npm:^5.0.0, string-width@npm:^5.0.1, string-width@npm:^5.1.2": - version: 5.1.2 - resolution: "string-width@npm:5.1.2" - dependencies: - eastasianwidth: ^0.2.0 - emoji-regex: ^9.2.2 - strip-ansi: ^7.0.1 - checksum: 7369deaa29f21dda9a438686154b62c2c5f661f8dda60449088f9f980196f7908fc39fdd1803e3e01541970287cf5deae336798337e9319a7055af89dafa7193 - languageName: node - linkType: hard - -"string.prototype.matchall@npm:^4.0.8": - version: 4.0.8 - resolution: "string.prototype.matchall@npm:4.0.8" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.1.4 - es-abstract: ^1.20.4 - get-intrinsic: ^1.1.3 - has-symbols: ^1.0.3 - internal-slot: ^1.0.3 - regexp.prototype.flags: ^1.4.3 - side-channel: ^1.0.4 - checksum: 952da3a818de42ad1c10b576140a5e05b4de7b34b8d9dbf00c3ac8c1293e9c0f533613a39c5cda53e0a8221f2e710bc2150e730b1c2278d60004a8a35726efb6 - languageName: node - linkType: hard - -"string.prototype.trim@npm:^1.2.7": - version: 1.2.7 - resolution: "string.prototype.trim@npm:1.2.7" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.1.4 - es-abstract: ^1.20.4 - checksum: 05b7b2d6af63648e70e44c4a8d10d8cc457536df78b55b9d6230918bde75c5987f6b8604438c4c8652eb55e4fc9725d2912789eb4ec457d6995f3495af190c09 - languageName: node - linkType: hard - -"string.prototype.trimend@npm:^1.0.6": - version: 1.0.6 - resolution: "string.prototype.trimend@npm:1.0.6" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.1.4 - es-abstract: ^1.20.4 - checksum: 0fdc34645a639bd35179b5a08227a353b88dc089adf438f46be8a7c197fc3f22f8514c1c9be4629b3cd29c281582730a8cbbad6466c60f76b5f99cf2addb132e - languageName: node - linkType: hard - -"string.prototype.trimstart@npm:^1.0.6": - version: 1.0.6 - resolution: "string.prototype.trimstart@npm:1.0.6" - dependencies: - call-bind: ^1.0.2 - define-properties: ^1.1.4 - es-abstract: ^1.20.4 - checksum: 89080feef416621e6ef1279588994305477a7a91648d9436490d56010a1f7adc39167cddac7ce0b9884b8cdbef086987c4dcb2960209f2af8bac0d23ceff4f41 - languageName: node - linkType: hard - -"string_decoder@npm:^1.1.1": - version: 1.3.0 - resolution: "string_decoder@npm:1.3.0" - dependencies: - safe-buffer: ~5.2.0 - checksum: 8417646695a66e73aefc4420eb3b84cc9ffd89572861fe004e6aeb13c7bc00e2f616247505d2dbbef24247c372f70268f594af7126f43548565c68c117bdeb56 - languageName: node - linkType: hard - -"strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": - version: 6.0.1 - resolution: "strip-ansi@npm:6.0.1" - dependencies: - ansi-regex: ^5.0.1 - checksum: f3cd25890aef3ba6e1a74e20896c21a46f482e93df4a06567cebf2b57edabb15133f1f94e57434e0a958d61186087b1008e89c94875d019910a213181a14fc8c - languageName: node - linkType: hard - -"strip-ansi@npm:^7.0.1": - version: 7.1.0 - resolution: "strip-ansi@npm:7.1.0" - dependencies: - ansi-regex: ^6.0.1 - checksum: 859c73fcf27869c22a4e4d8c6acfe690064659e84bef9458aa6d13719d09ca88dcfd40cbf31fd0be63518ea1a643fe070b4827d353e09533a5b0b9fd4553d64d - languageName: node - linkType: hard - -"strip-bom@npm:^3.0.0": - version: 3.0.0 - resolution: "strip-bom@npm:3.0.0" - checksum: 8d50ff27b7ebe5ecc78f1fe1e00fcdff7af014e73cf724b46fb81ef889eeb1015fc5184b64e81a2efe002180f3ba431bdd77e300da5c6685d702780fbf0c8d5b - languageName: node - linkType: hard - -"strip-final-newline@npm:^2.0.0": - version: 2.0.0 - resolution: "strip-final-newline@npm:2.0.0" - checksum: 69412b5e25731e1938184b5d489c32e340605bb611d6140344abc3421b7f3c6f9984b21dff296dfcf056681b82caa3bb4cc996a965ce37bcfad663e92eae9c64 - languageName: node - linkType: hard - -"strip-final-newline@npm:^3.0.0": - version: 3.0.0 - resolution: "strip-final-newline@npm:3.0.0" - checksum: 23ee263adfa2070cd0f23d1ac14e2ed2f000c9b44229aec9c799f1367ec001478469560abefd00c5c99ee6f0b31c137d53ec6029c53e9f32a93804e18c201050 - languageName: node - linkType: hard - -"strip-json-comments@npm:^3.1.1": - version: 3.1.1 - resolution: "strip-json-comments@npm:3.1.1" - checksum: 492f73e27268f9b1c122733f28ecb0e7e8d8a531a6662efbd08e22cccb3f9475e90a1b82cab06a392f6afae6d2de636f977e231296400d0ec5304ba70f166443 - languageName: node - linkType: hard - -"strip-json-comments@npm:~2.0.1": - version: 2.0.1 - resolution: "strip-json-comments@npm:2.0.1" - checksum: 1074ccb63270d32ca28edfb0a281c96b94dc679077828135141f27d52a5a398ef5e78bcf22809d23cadc2b81dfbe345eb5fd8699b385c8b1128907dec4a7d1e1 - languageName: node - linkType: hard - -"styled-jsx@npm:5.1.1": - version: 5.1.1 - resolution: "styled-jsx@npm:5.1.1" - dependencies: - client-only: 0.0.1 - peerDependencies: - react: ">= 16.8.0 || 17.x.x || ^18.0.0-0" - peerDependenciesMeta: - "@babel/core": - optional: true - babel-plugin-macros: - optional: true - checksum: 523a33b38603492547e861b98e29c873939b04e15fbe5ef16132c6f1e15958126647983c7d4675325038b428a5e91183d996e90141b18bdd1bbadf6e2c45b2fa - languageName: node - linkType: hard - -"stylis@npm:4.2.0": - version: 4.2.0 - resolution: "stylis@npm:4.2.0" - checksum: 0eb6cc1b866dc17a6037d0a82ac7fa877eba6a757443e79e7c4f35bacedbf6421fadcab4363b39667b43355cbaaa570a3cde850f776498e5450f32ed2f9b7584 - languageName: node - linkType: hard - -"sucrase@npm:^3.32.0": - version: 3.32.0 - resolution: "sucrase@npm:3.32.0" - dependencies: - "@jridgewell/gen-mapping": ^0.3.2 - commander: ^4.0.0 - glob: 7.1.6 - lines-and-columns: ^1.1.6 - mz: ^2.7.0 - pirates: ^4.0.1 - ts-interface-checker: ^0.1.9 - bin: - sucrase: bin/sucrase - sucrase-node: bin/sucrase-node - checksum: 79f760aef513adcf22b882d43100296a8afa7f307acef3e8803304b763484cf138a3e2cebc498a6791110ab20c7b8deba097f6ce82f812ca8f1723e3440e5c95 - languageName: node - linkType: hard - -"superjson@npm:^1.12.2": - version: 1.12.4 - resolution: "superjson@npm:1.12.4" - dependencies: - copy-anything: ^3.0.2 - checksum: fcf37714f734cd51af018b78fd7f630952a0682fc3cb060d00b824e5d0cd49f0206b8e23829469c99972fd7fcd6e468b9492abb1c4e258ea5ec7f45c345a56f2 - languageName: node - linkType: hard - -"supports-color@npm:^5.3.0": - version: 5.5.0 - resolution: "supports-color@npm:5.5.0" - dependencies: - has-flag: ^3.0.0 - checksum: 95f6f4ba5afdf92f495b5a912d4abee8dcba766ae719b975c56c084f5004845f6f5a5f7769f52d53f40e21952a6d87411bafe34af4a01e65f9926002e38e1dac - languageName: node - linkType: hard - -"supports-color@npm:^7.1.0": - version: 7.2.0 - resolution: "supports-color@npm:7.2.0" - dependencies: - has-flag: ^4.0.0 - checksum: 3dda818de06ebbe5b9653e07842d9479f3555ebc77e9a0280caf5a14fb877ffee9ed57007c3b78f5a6324b8dbeec648d9e97a24e2ed9fdb81ddc69ea07100f4a - languageName: node - linkType: hard - -"supports-color@npm:^8.0.0": - version: 8.1.1 - resolution: "supports-color@npm:8.1.1" - dependencies: - has-flag: ^4.0.0 - checksum: c052193a7e43c6cdc741eb7f378df605636e01ad434badf7324f17fb60c69a880d8d8fcdcb562cf94c2350e57b937d7425ab5b8326c67c2adc48f7c87c1db406 - languageName: node - linkType: hard - -"supports-preserve-symlinks-flag@npm:^1.0.0": - version: 1.0.0 - resolution: "supports-preserve-symlinks-flag@npm:1.0.0" - checksum: 53b1e247e68e05db7b3808b99b892bd36fb096e6fba213a06da7fab22045e97597db425c724f2bbd6c99a3c295e1e73f3e4de78592289f38431049e1277ca0ae - languageName: node - linkType: hard - -"symbol-observable@npm:^4.0.0": - version: 4.0.0 - resolution: "symbol-observable@npm:4.0.0" - checksum: 212c7edce6186634d671336a88c0e0bbd626c2ab51ed57498dc90698cce541839a261b969c2a1e8dd43762133d47672e8b62e0b1ce9cf4157934ba45fd172ba8 - languageName: node - linkType: hard - -"synckit@npm:^0.8.5": - version: 0.8.5 - resolution: "synckit@npm:0.8.5" - dependencies: - "@pkgr/utils": ^2.3.1 - tslib: ^2.5.0 - checksum: 8a9560e5d8f3d94dc3cf5f7b9c83490ffa30d320093560a37b88f59483040771fd1750e76b9939abfbb1b5a23fd6dfbae77f6b338abffe7cae7329cd9b9bb86b - languageName: node - linkType: hard - -"tailwindcss@npm:3.3.3": - version: 3.3.3 - resolution: "tailwindcss@npm:3.3.3" - dependencies: - "@alloc/quick-lru": ^5.2.0 - arg: ^5.0.2 - chokidar: ^3.5.3 - didyoumean: ^1.2.2 - dlv: ^1.1.3 - fast-glob: ^3.2.12 - glob-parent: ^6.0.2 - is-glob: ^4.0.3 - jiti: ^1.18.2 - lilconfig: ^2.1.0 - micromatch: ^4.0.5 - normalize-path: ^3.0.0 - object-hash: ^3.0.0 - picocolors: ^1.0.0 - postcss: ^8.4.23 - postcss-import: ^15.1.0 - postcss-js: ^4.0.1 - postcss-load-config: ^4.0.1 - postcss-nested: ^6.0.1 - postcss-selector-parser: ^6.0.11 - resolve: ^1.22.2 - sucrase: ^3.32.0 - bin: - tailwind: lib/cli.js - tailwindcss: lib/cli.js - checksum: 0195c7a3ebb0de5e391d2a883d777c78a4749f0c532d204ee8aea9129f2ed8e701d8c0c276aa5f7338d07176a3c2a7682c1d0ab9c8a6c2abe6d9325c2954eb50 - languageName: node - linkType: hard - -"tapable@npm:^2.1.1, tapable@npm:^2.2.0": - version: 2.2.1 - resolution: "tapable@npm:2.2.1" - checksum: 3b7a1b4d86fa940aad46d9e73d1e8739335efd4c48322cb37d073eb6f80f5281889bf0320c6d8ffcfa1a0dd5bfdbd0f9d037e252ef972aca595330538aac4d51 - languageName: node - linkType: hard - -"tar-fs@npm:^2.0.0": - version: 2.1.1 - resolution: "tar-fs@npm:2.1.1" - dependencies: - chownr: ^1.1.1 - mkdirp-classic: ^0.5.2 - pump: ^3.0.0 - tar-stream: ^2.1.4 - checksum: f5b9a70059f5b2969e65f037b4e4da2daf0fa762d3d232ffd96e819e3f94665dbbbe62f76f084f1acb4dbdcce16c6e4dac08d12ffc6d24b8d76720f4d9cf032d - languageName: node - linkType: hard - -"tar-fs@npm:^3.0.4": - version: 3.0.4 - resolution: "tar-fs@npm:3.0.4" - dependencies: - mkdirp-classic: ^0.5.2 - pump: ^3.0.0 - tar-stream: ^3.1.5 - checksum: dcf4054f9e92ca0efe61c2b3f612914fb259a47900aa908a63106513a6d006c899b426ada53eb88d9dbbf089b5724c8e90b96a2c4ca6171845fa14203d734e30 - languageName: node - linkType: hard - -"tar-stream@npm:^2.1.4": - version: 2.2.0 - resolution: "tar-stream@npm:2.2.0" - dependencies: - bl: ^4.0.3 - end-of-stream: ^1.4.1 - fs-constants: ^1.0.0 - inherits: ^2.0.3 - readable-stream: ^3.1.1 - checksum: 699831a8b97666ef50021c767f84924cfee21c142c2eb0e79c63254e140e6408d6d55a065a2992548e72b06de39237ef2b802b99e3ece93ca3904a37622a66f3 - languageName: node - linkType: hard - -"tar-stream@npm:^3.1.5": - version: 3.1.6 - resolution: "tar-stream@npm:3.1.6" - dependencies: - b4a: ^1.6.4 - fast-fifo: ^1.2.0 - streamx: ^2.15.0 - checksum: f3627f918581976e954ff03cb8d370551053796b82564f8c7ca8fac84c48e4d042026d0854fc222171a34ff9c682b72fae91be9c9b0a112d4c54f9e4f443e9c5 - languageName: node - linkType: hard - -"tar@npm:^6.1.11, tar@npm:^6.1.2": - version: 6.1.15 - resolution: "tar@npm:6.1.15" - dependencies: - chownr: ^2.0.0 - fs-minipass: ^2.0.0 - minipass: ^5.0.0 - minizlib: ^2.1.1 - mkdirp: ^1.0.3 - yallist: ^4.0.0 - checksum: f23832fceeba7578bf31907aac744ae21e74a66f4a17a9e94507acf460e48f6db598c7023882db33bab75b80e027c21f276d405e4a0322d58f51c7088d428268 - languageName: node - linkType: hard - -"terser-webpack-plugin@npm:^5.3.7": - version: 5.3.9 - resolution: "terser-webpack-plugin@npm:5.3.9" - dependencies: - "@jridgewell/trace-mapping": ^0.3.17 - jest-worker: ^27.4.5 - schema-utils: ^3.1.1 - serialize-javascript: ^6.0.1 - terser: ^5.16.8 - peerDependencies: - webpack: ^5.1.0 - peerDependenciesMeta: - "@swc/core": - optional: true - esbuild: - optional: true - uglify-js: - optional: true - checksum: 41705713d6f9cb83287936b21e27c658891c78c4392159f5148b5623f0e8c48559869779619b058382a4c9758e7820ea034695e57dc7c474b4962b79f553bc5f - languageName: node - linkType: hard - -"terser@npm:^5.16.8": - version: 5.19.0 - resolution: "terser@npm:5.19.0" - dependencies: - "@jridgewell/source-map": ^0.3.3 - acorn: ^8.8.2 - commander: ^2.20.0 - source-map-support: ~0.5.20 - bin: - terser: bin/terser - checksum: 31c937f1a30c03b68825df7803a3584b13616647438be6cbc0914b688f064a3f4f938d8182e476342ddd1675e84798393b076caeb549393f4df768aec9abd6bd - languageName: node - linkType: hard - -"text-table@npm:^0.2.0": - version: 0.2.0 - resolution: "text-table@npm:0.2.0" - checksum: b6937a38c80c7f84d9c11dd75e49d5c44f71d95e810a3250bd1f1797fc7117c57698204adf676b71497acc205d769d65c16ae8fa10afad832ae1322630aef10a - languageName: node - linkType: hard - -"thenify-all@npm:^1.0.0": - version: 1.6.0 - resolution: "thenify-all@npm:1.6.0" - dependencies: - thenify: ">= 3.1.0 < 4" - checksum: dba7cc8a23a154cdcb6acb7f51d61511c37a6b077ec5ab5da6e8b874272015937788402fd271fdfc5f187f8cb0948e38d0a42dcc89d554d731652ab458f5343e - languageName: node - linkType: hard - -"thenify@npm:>= 3.1.0 < 4": - version: 3.3.1 - resolution: "thenify@npm:3.3.1" - dependencies: - any-promise: ^1.0.0 - checksum: 84e1b804bfec49f3531215f17b4a6e50fd4397b5f7c1bccc427b9c656e1ecfb13ea79d899930184f78bc2f57285c54d9a50a590c8868f4f0cef5c1d9f898b05e - languageName: node - linkType: hard - -"through@npm:^2.3.8": - version: 2.3.8 - resolution: "through@npm:2.3.8" - checksum: a38c3e059853c494af95d50c072b83f8b676a9ba2818dcc5b108ef252230735c54e0185437618596c790bbba8fcdaef5b290405981ffa09dce67b1f1bf190cbd - languageName: node - linkType: hard - -"titleize@npm:^3.0.0": - version: 3.0.0 - resolution: "titleize@npm:3.0.0" - checksum: 71fbbeabbfb36ccd840559f67f21e356e1d03da2915b32d2ae1a60ddcc13a124be2739f696d2feb884983441d159a18649e8d956648d591bdad35c430a6b6d28 - languageName: node - linkType: hard - -"to-fast-properties@npm:^2.0.0": - version: 2.0.0 - resolution: "to-fast-properties@npm:2.0.0" - checksum: be2de62fe58ead94e3e592680052683b1ec986c72d589e7b21e5697f8744cdbf48c266fa72f6c15932894c10187b5f54573a3bcf7da0bfd964d5caf23d436168 - languageName: node - linkType: hard - -"to-regex-range@npm:^5.0.1": - version: 5.0.1 - resolution: "to-regex-range@npm:5.0.1" - dependencies: - is-number: ^7.0.0 - checksum: f76fa01b3d5be85db6a2a143e24df9f60dd047d151062d0ba3df62953f2f697b16fe5dad9b0ac6191c7efc7b1d9dcaa4b768174b7b29da89d4428e64bc0a20ed - languageName: node - linkType: hard - -"toidentifier@npm:1.0.0": - version: 1.0.0 - resolution: "toidentifier@npm:1.0.0" - checksum: 199e6bfca1531d49b3506cff02353d53ec987c9ee10ee272ca6484ed97f1fc10fb77c6c009079ca16d5c5be4a10378178c3cacdb41ce9ec954c3297c74c6053e - languageName: node - linkType: hard - -"toidentifier@npm:1.0.1": - version: 1.0.1 - resolution: "toidentifier@npm:1.0.1" - checksum: 952c29e2a85d7123239b5cfdd889a0dde47ab0497f0913d70588f19c53f7e0b5327c95f4651e413c74b785147f9637b17410ac8c846d5d4a20a5a33eb6dc3a45 - languageName: node - linkType: hard - -"token-stream@npm:1.0.0": - version: 1.0.0 - resolution: "token-stream@npm:1.0.0" - checksum: e8adb56f31b813b6157130e7fc2fe14eb60e7cbf7b746e70e8293c7e55664d8e7ad5d93d7ae3aa4cad7fcb2b0aaf59dad6f2fd4ee0269204e55af5b05bc369e2 - languageName: node - linkType: hard - -"ts-interface-checker@npm:^0.1.9": - version: 0.1.13 - resolution: "ts-interface-checker@npm:0.1.13" - checksum: 20c29189c2dd6067a8775e07823ddf8d59a33e2ffc47a1bd59a5cb28bb0121a2969a816d5e77eda2ed85b18171aa5d1c4005a6b88ae8499ec7cc49f78571cb5e - languageName: node - linkType: hard - -"ts-invariant@npm:^0.10.3": - version: 0.10.3 - resolution: "ts-invariant@npm:0.10.3" - dependencies: - tslib: ^2.1.0 - checksum: bb07d56fe4aae69d8860e0301dfdee2d375281159054bc24bf1e49e513fb0835bf7f70a11351344d213a79199c5e695f37ebbf5a447188a377ce0cd81d91ddb5 - languageName: node - linkType: hard - -"tsconfig-paths@npm:^3.14.1": - version: 3.14.2 - resolution: "tsconfig-paths@npm:3.14.2" - dependencies: - "@types/json5": ^0.0.29 - json5: ^1.0.2 - minimist: ^1.2.6 - strip-bom: ^3.0.0 - checksum: a6162eaa1aed680537f93621b82399c7856afd10ec299867b13a0675e981acac4e0ec00896860480efc59fc10fd0b16fdc928c0b885865b52be62cadac692447 - languageName: node - linkType: hard - -"tslib@npm:^1.8.1": - version: 1.14.1 - resolution: "tslib@npm:1.14.1" - checksum: dbe628ef87f66691d5d2959b3e41b9ca0045c3ee3c7c7b906cc1e328b39f199bb1ad9e671c39025bd56122ac57dfbf7385a94843b1cc07c60a4db74795829acd - languageName: node - linkType: hard - -"tslib@npm:^2.1.0, tslib@npm:^2.3.0, tslib@npm:^2.4.0, tslib@npm:^2.5.0, tslib@npm:^2.6.0": - version: 2.6.0 - resolution: "tslib@npm:2.6.0" - checksum: c01066038f950016a18106ddeca4649b4d76caa76ec5a31e2a26e10586a59fceb4ee45e96719bf6c715648e7c14085a81fee5c62f7e9ebee68e77a5396e5538f - languageName: node - linkType: hard - -"tsscmp@npm:1.0.6": - version: 1.0.6 - resolution: "tsscmp@npm:1.0.6" - checksum: 1512384def36bccc9125cabbd4c3b0e68608d7ee08127ceaa0b84a71797263f1a01c7f82fa69be8a3bd3c1396e2965d2f7b52d581d3a5eeaf3967fbc52e3b3bf - languageName: node - linkType: hard - -"tsutils@npm:^3.21.0": - version: 3.21.0 - resolution: "tsutils@npm:3.21.0" - dependencies: - tslib: ^1.8.1 - peerDependencies: - typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" - checksum: 1843f4c1b2e0f975e08c4c21caa4af4f7f65a12ac1b81b3b8489366826259323feb3fc7a243123453d2d1a02314205a7634e048d4a8009921da19f99755cdc48 - languageName: node - linkType: hard - -"tunnel-agent@npm:^0.6.0": - version: 0.6.0 - resolution: "tunnel-agent@npm:0.6.0" - dependencies: - safe-buffer: ^5.0.1 - checksum: 05f6510358f8afc62a057b8b692f05d70c1782b70db86d6a1e0d5e28a32389e52fa6e7707b6c5ecccacc031462e4bc35af85ecfe4bbc341767917b7cf6965711 - languageName: node - linkType: hard - -"type-check@npm:^0.4.0, type-check@npm:~0.4.0": - version: 0.4.0 - resolution: "type-check@npm:0.4.0" - dependencies: - prelude-ls: ^1.2.1 - checksum: ec688ebfc9c45d0c30412e41ca9c0cdbd704580eb3a9ccf07b9b576094d7b86a012baebc95681999dd38f4f444afd28504cb3a89f2ef16b31d4ab61a0739025a - languageName: node - linkType: hard - -"type-fest@npm:^0.20.2": - version: 0.20.2 - resolution: "type-fest@npm:0.20.2" - checksum: 4fb3272df21ad1c552486f8a2f8e115c09a521ad7a8db3d56d53718d0c907b62c6e9141ba5f584af3f6830d0872c521357e512381f24f7c44acae583ad517d73 - languageName: node - linkType: hard - -"type-fest@npm:^0.21.3": - version: 0.21.3 - resolution: "type-fest@npm:0.21.3" - checksum: e6b32a3b3877f04339bae01c193b273c62ba7bfc9e325b8703c4ee1b32dc8fe4ef5dfa54bf78265e069f7667d058e360ae0f37be5af9f153b22382cd55a9afe0 - languageName: node - linkType: hard - -"type-is@npm:~1.6.18": - version: 1.6.18 - resolution: "type-is@npm:1.6.18" - dependencies: - media-typer: 0.3.0 - mime-types: ~2.1.24 - checksum: 2c8e47675d55f8b4e404bcf529abdf5036c537a04c2b20177bcf78c9e3c1da69da3942b1346e6edb09e823228c0ee656ef0e033765ec39a70d496ef601a0c657 - languageName: node - linkType: hard - -"typed-array-byte-offset@npm:^1.0.0": - version: 1.0.0 - resolution: "typed-array-byte-offset@npm:1.0.0" - dependencies: - available-typed-arrays: ^1.0.5 - call-bind: ^1.0.2 - for-each: ^0.3.3 - has-proto: ^1.0.1 - is-typed-array: ^1.1.10 - checksum: 04f6f02d0e9a948a95fbfe0d5a70b002191fae0b8fe0fe3130a9b2336f043daf7a3dda56a31333c35a067a97e13f539949ab261ca0f3692c41603a46a94e960b - languageName: node - linkType: hard - -"typed-array-length@npm:^1.0.4": - version: 1.0.4 - resolution: "typed-array-length@npm:1.0.4" - dependencies: - call-bind: ^1.0.2 - for-each: ^0.3.3 - is-typed-array: ^1.1.9 - checksum: 2228febc93c7feff142b8c96a58d4a0d7623ecde6c7a24b2b98eb3170e99f7c7eff8c114f9b283085cd59dcd2bd43aadf20e25bba4b034a53c5bb292f71f8956 - languageName: node - linkType: hard - -"typescript@npm:5.1.6": - version: 5.1.6 - resolution: "typescript@npm:5.1.6" - bin: - tsc: bin/tsc - tsserver: bin/tsserver - checksum: b2f2c35096035fe1f5facd1e38922ccb8558996331405eb00a5111cc948b2e733163cc22fab5db46992aba7dd520fff637f2c1df4996ff0e134e77d3249a7350 - languageName: node - linkType: hard - -"typescript@patch:typescript@5.1.6#~builtin": - version: 5.1.6 - resolution: "typescript@patch:typescript@npm%3A5.1.6#~builtin::version=5.1.6&hash=5da071" - bin: - tsc: bin/tsc - tsserver: bin/tsserver - checksum: f53bfe97f7c8b2b6d23cf572750d4e7d1e0c5fff1c36d859d0ec84556a827b8785077bc27676bf7e71fae538e517c3ecc0f37e7f593be913d884805d931bc8be - languageName: node - linkType: hard - -"uglify-js@npm:^3.1.4": - version: 3.17.4 - resolution: "uglify-js@npm:3.17.4" - bin: - uglifyjs: bin/uglifyjs - checksum: 7b3897df38b6fc7d7d9f4dcd658599d81aa2b1fb0d074829dd4e5290f7318dbca1f4af2f45acb833b95b1fe0ed4698662ab61b87e94328eb4c0a0d3435baf924 - languageName: node - linkType: hard - -"uid-safe@npm:2.1.5, uid-safe@npm:~2.1.5": - version: 2.1.5 - resolution: "uid-safe@npm:2.1.5" - dependencies: - random-bytes: ~1.0.0 - checksum: 07536043da9a026f4a2bc397543d0ace7587449afa1d9d2c4fd3ce76af8a5263a678788bcc429dff499ef29d45843cd5ee9d05434450fcfc19cc661229f703d1 - languageName: node - linkType: hard - -"unbox-primitive@npm:^1.0.2": - version: 1.0.2 - resolution: "unbox-primitive@npm:1.0.2" - dependencies: - call-bind: ^1.0.2 - has-bigints: ^1.0.2 - has-symbols: ^1.0.3 - which-boxed-primitive: ^1.0.2 - checksum: b7a1cf5862b5e4b5deb091672ffa579aa274f648410009c81cca63fed3b62b610c4f3b773f912ce545bb4e31edc3138975b5bc777fc6e4817dca51affb6380e9 - languageName: node - linkType: hard - -"unique-filename@npm:^3.0.0": - version: 3.0.0 - resolution: "unique-filename@npm:3.0.0" - dependencies: - unique-slug: ^4.0.0 - checksum: 8e2f59b356cb2e54aab14ff98a51ac6c45781d15ceaab6d4f1c2228b780193dc70fae4463ce9e1df4479cb9d3304d7c2043a3fb905bdeca71cc7e8ce27e063df - languageName: node - linkType: hard - -"unique-slug@npm:^4.0.0": - version: 4.0.0 - resolution: "unique-slug@npm:4.0.0" - dependencies: - imurmurhash: ^0.1.4 - checksum: 0884b58365af59f89739e6f71e3feacb5b1b41f2df2d842d0757933620e6de08eff347d27e9d499b43c40476cbaf7988638d3acb2ffbcb9d35fd035591adfd15 - languageName: node - linkType: hard - -"unpipe@npm:1.0.0, unpipe@npm:~1.0.0": - version: 1.0.0 - resolution: "unpipe@npm:1.0.0" - checksum: 4fa18d8d8d977c55cb09715385c203197105e10a6d220087ec819f50cb68870f02942244f1017565484237f1f8c5d3cd413631b1ae104d3096f24fdfde1b4aa2 - languageName: node - linkType: hard - -"untildify@npm:^4.0.0": - version: 4.0.0 - resolution: "untildify@npm:4.0.0" - checksum: 39ced9c418a74f73f0a56e1ba4634b4d959422dff61f4c72a8e39f60b99380c1b45ed776fbaa0a4101b157e4310d873ad7d114e8534ca02609b4916bb4187fb9 - languageName: node - linkType: hard - -"update-browserslist-db@npm:^1.0.11": - version: 1.0.11 - resolution: "update-browserslist-db@npm:1.0.11" - dependencies: - escalade: ^3.1.1 - picocolors: ^1.0.0 - peerDependencies: - browserslist: ">= 4.21.0" - bin: - update-browserslist-db: cli.js - checksum: b98327518f9a345c7cad5437afae4d2ae7d865f9779554baf2a200fdf4bac4969076b679b1115434bd6557376bdd37ca7583d0f9b8f8e302d7d4cc1e91b5f231 - languageName: node - linkType: hard - -"upload-files-express@npm:^0.4.0": - version: 0.4.0 - resolution: "upload-files-express@npm:0.4.0" - dependencies: - formidable: ^2.0.1 - checksum: 8ddbfa16e932cfb7abfc2ed40a45082983b2ed3e565c6b5ae1302e53d97615951f60e9688bb46211b957ed46f81a88fe299bc696908b631628b6cc221a1753a1 - languageName: node - linkType: hard - -"uri-js@npm:^4.2.2": - version: 4.4.1 - resolution: "uri-js@npm:4.4.1" - dependencies: - punycode: ^2.1.0 - checksum: 7167432de6817fe8e9e0c9684f1d2de2bb688c94388f7569f7dbdb1587c9f4ca2a77962f134ec90be0cc4d004c939ff0d05acc9f34a0db39a3c797dada262633 - languageName: node - linkType: hard - -"util-deprecate@npm:^1.0.1, util-deprecate@npm:^1.0.2": - version: 1.0.2 - resolution: "util-deprecate@npm:1.0.2" - checksum: 474acf1146cb2701fe3b074892217553dfcf9a031280919ba1b8d651a068c9b15d863b7303cb15bd00a862b498e6cf4ad7b4a08fb134edd5a6f7641681cb54a2 - languageName: node - linkType: hard - -"utils-merge@npm:1.0.1": - version: 1.0.1 - resolution: "utils-merge@npm:1.0.1" - checksum: c81095493225ecfc28add49c106ca4f09cdf56bc66731aa8dabc2edbbccb1e1bfe2de6a115e5c6a380d3ea166d1636410b62ef216bb07b3feb1cfde1d95d5080 - languageName: node - linkType: hard - -"vary@npm:^1, vary@npm:~1.1.2": - version: 1.1.2 - resolution: "vary@npm:1.1.2" - checksum: ae0123222c6df65b437669d63dfa8c36cee20a504101b2fcd97b8bf76f91259c17f9f2b4d70a1e3c6bbcee7f51b28392833adb6b2770b23b01abec84e369660b - languageName: node - linkType: hard - -"void-elements@npm:^3.1.0": - version: 3.1.0 - resolution: "void-elements@npm:3.1.0" - checksum: 0390f818107fa8fce55bb0a5c3f661056001c1d5a2a48c28d582d4d847347c2ab5b7f8272314cac58acf62345126b6b09bea623a185935f6b1c3bbce0dfd7f7f - languageName: node - linkType: hard - -"walk@npm:2.3.15": - version: 2.3.15 - resolution: "walk@npm:2.3.15" - dependencies: - foreachasync: ^3.0.0 - checksum: d494df1924656cc4881ff8f70474f80be10d07d0c899620e02ff8627e4f339f37e74d1b30b70e7a714d0b873b0dc8b20129a619c4b407b39949c756637ebe3a6 - languageName: node - linkType: hard - -"watchpack@npm:2.4.0, watchpack@npm:^2.4.0": - version: 2.4.0 - resolution: "watchpack@npm:2.4.0" - dependencies: - glob-to-regexp: ^0.4.1 - graceful-fs: ^4.1.2 - checksum: 23d4bc58634dbe13b86093e01c6a68d8096028b664ab7139d58f0c37d962d549a940e98f2f201cecdabd6f9c340338dc73ef8bf094a2249ef582f35183d1a131 - languageName: node - linkType: hard - -"webpack-cli@npm:^5.1.4": - version: 5.1.4 - resolution: "webpack-cli@npm:5.1.4" - dependencies: - "@discoveryjs/json-ext": ^0.5.0 - "@webpack-cli/configtest": ^2.1.1 - "@webpack-cli/info": ^2.0.2 - "@webpack-cli/serve": ^2.0.5 - colorette: ^2.0.14 - commander: ^10.0.1 - cross-spawn: ^7.0.3 - envinfo: ^7.7.3 - fastest-levenshtein: ^1.0.12 - import-local: ^3.0.2 - interpret: ^3.1.1 - rechoir: ^0.8.0 - webpack-merge: ^5.7.3 - peerDependencies: - webpack: 5.x.x - peerDependenciesMeta: - "@webpack-cli/generators": - optional: true - webpack-bundle-analyzer: - optional: true - webpack-dev-server: - optional: true - bin: - webpack-cli: bin/cli.js - checksum: 3a4ad0d0342a6815c850ee4633cc2a8a5dae04f918e7847f180bf24ab400803cf8a8943707ffbed03eb20fe6ce647f996f60a2aade87b0b4a9954da3da172ce0 - languageName: node - linkType: hard - -"webpack-merge@npm:^5.7.3": - version: 5.9.0 - resolution: "webpack-merge@npm:5.9.0" - dependencies: - clone-deep: ^4.0.1 - wildcard: ^2.0.0 - checksum: 64fe2c23aacc5f19684452a0e84ec02c46b990423aee6fcc5c18d7d471155bd14e9a6adb02bd3656eb3e0ac2532c8e97d69412ad14c97eeafe32fa6d10050872 - languageName: node - linkType: hard - -"webpack-sources@npm:^3.2.3": - version: 3.2.3 - resolution: "webpack-sources@npm:3.2.3" - checksum: 989e401b9fe3536529e2a99dac8c1bdc50e3a0a2c8669cbafad31271eadd994bc9405f88a3039cd2e29db5e6d9d0926ceb7a1a4e7409ece021fe79c37d9c4607 - languageName: node - linkType: hard - -"webpack@npm:^5.88.2": - version: 5.88.2 - resolution: "webpack@npm:5.88.2" - dependencies: - "@types/eslint-scope": ^3.7.3 - "@types/estree": ^1.0.0 - "@webassemblyjs/ast": ^1.11.5 - "@webassemblyjs/wasm-edit": ^1.11.5 - "@webassemblyjs/wasm-parser": ^1.11.5 - acorn: ^8.7.1 - acorn-import-assertions: ^1.9.0 - browserslist: ^4.14.5 - chrome-trace-event: ^1.0.2 - enhanced-resolve: ^5.15.0 - es-module-lexer: ^1.2.1 - eslint-scope: 5.1.1 - events: ^3.2.0 - glob-to-regexp: ^0.4.1 - graceful-fs: ^4.2.9 - json-parse-even-better-errors: ^2.3.1 - loader-runner: ^4.2.0 - mime-types: ^2.1.27 - neo-async: ^2.6.2 - schema-utils: ^3.2.0 - tapable: ^2.1.1 - terser-webpack-plugin: ^5.3.7 - watchpack: ^2.4.0 - webpack-sources: ^3.2.3 - peerDependenciesMeta: - webpack-cli: - optional: true - bin: - webpack: bin/webpack.js - checksum: 79476a782da31a21f6dd38fbbd06b68da93baf6a62f0d08ca99222367f3b8668f5a1f2086b7bb78e23172e31fa6df6fa7ab09b25e827866c4fc4dc2b30443ce2 - languageName: node - linkType: hard - -"which-boxed-primitive@npm:^1.0.2": - version: 1.0.2 - resolution: "which-boxed-primitive@npm:1.0.2" - dependencies: - is-bigint: ^1.0.1 - is-boolean-object: ^1.1.0 - is-number-object: ^1.0.4 - is-string: ^1.0.5 - is-symbol: ^1.0.3 - checksum: 53ce774c7379071729533922adcca47220228405e1895f26673bbd71bdf7fb09bee38c1d6399395927c6289476b5ae0629863427fd151491b71c4b6cb04f3a5e - languageName: node - linkType: hard - -"which-typed-array@npm:^1.1.10": - version: 1.1.10 - resolution: "which-typed-array@npm:1.1.10" - dependencies: - available-typed-arrays: ^1.0.5 - call-bind: ^1.0.2 - for-each: ^0.3.3 - gopd: ^1.0.1 - has-tostringtag: ^1.0.0 - is-typed-array: ^1.1.10 - checksum: 149f54f5d11773ce938c60a2c36306720a1824eccb62bda0620170932c2783fa50ad0226254c5741a962e35c7ccba5f4e4c402b8618cb3b4f2cf47bf5e6ade31 - languageName: node - linkType: hard - -"which@npm:^2.0.1, which@npm:^2.0.2": - version: 2.0.2 - resolution: "which@npm:2.0.2" - dependencies: - isexe: ^2.0.0 - bin: - node-which: ./bin/node-which - checksum: 1a5c563d3c1b52d5f893c8b61afe11abc3bab4afac492e8da5bde69d550de701cf9806235f20a47b5c8fa8a1d6a9135841de2596535e998027a54589000e66d1 - languageName: node - linkType: hard - -"wide-align@npm:^1.1.5": - version: 1.1.5 - resolution: "wide-align@npm:1.1.5" - dependencies: - string-width: ^1.0.2 || 2 || 3 || 4 - checksum: d5fc37cd561f9daee3c80e03b92ed3e84d80dde3365a8767263d03dacfc8fa06b065ffe1df00d8c2a09f731482fcacae745abfbb478d4af36d0a891fad4834d3 - languageName: node - linkType: hard - -"wildcard@npm:^2.0.0": - version: 2.0.1 - resolution: "wildcard@npm:2.0.1" - checksum: e0c60a12a219e4b12065d1199802d81c27b841ed6ad6d9d28240980c73ceec6f856771d575af367cbec2982d9ae7838759168b551776577f155044f5a5ba843c - languageName: node - linkType: hard - -"with@npm:^7.0.0": - version: 7.0.2 - resolution: "with@npm:7.0.2" - dependencies: - "@babel/parser": ^7.9.6 - "@babel/types": ^7.9.6 - assert-never: ^1.2.1 - babel-walk: 3.0.0-canary-5 - checksum: a00fe87b736e434bd8b9d3e62ddcd664bde7d3990a011a0f1bdeb499db0d6c28e6d2ef921dcc47650b8d436eee55459bcae8fab4ce1ed89f4926ddda407ab755 - languageName: node - linkType: hard - -"wordwrap@npm:^1.0.0": - version: 1.0.0 - resolution: "wordwrap@npm:1.0.0" - checksum: 2a44b2788165d0a3de71fd517d4880a8e20ea3a82c080ce46e294f0b68b69a2e49cff5f99c600e275c698a90d12c5ea32aff06c311f0db2eb3f1201f3e7b2a04 - languageName: node - linkType: hard - -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0, wrap-ansi@npm:^7.0.0": - version: 7.0.0 - resolution: "wrap-ansi@npm:7.0.0" - dependencies: - ansi-styles: ^4.0.0 - string-width: ^4.1.0 - strip-ansi: ^6.0.0 - checksum: a790b846fd4505de962ba728a21aaeda189b8ee1c7568ca5e817d85930e06ef8d1689d49dbf0e881e8ef84436af3a88bc49115c2e2788d841ff1b8b5b51a608b - languageName: node - linkType: hard - -"wrap-ansi@npm:^6.2.0": - version: 6.2.0 - resolution: "wrap-ansi@npm:6.2.0" - dependencies: - ansi-styles: ^4.0.0 - string-width: ^4.1.0 - strip-ansi: ^6.0.0 - checksum: 6cd96a410161ff617b63581a08376f0cb9162375adeb7956e10c8cd397821f7eb2a6de24eb22a0b28401300bf228c86e50617cd568209b5f6775b93c97d2fe3a - languageName: node - linkType: hard - -"wrap-ansi@npm:^8.1.0": - version: 8.1.0 - resolution: "wrap-ansi@npm:8.1.0" - dependencies: - ansi-styles: ^6.1.0 - string-width: ^5.0.1 - strip-ansi: ^7.0.1 - checksum: 371733296dc2d616900ce15a0049dca0ef67597d6394c57347ba334393599e800bab03c41d4d45221b6bc967b8c453ec3ae4749eff3894202d16800fdfe0e238 - languageName: node - linkType: hard - -"wrappy@npm:1": - version: 1.0.2 - resolution: "wrappy@npm:1.0.2" - checksum: 159da4805f7e84a3d003d8841557196034155008f817172d4e986bd591f74aa82aa7db55929a54222309e01079a65a92a9e6414da5a6aa4b01ee44a511ac3ee5 - languageName: node - linkType: hard - -"ws@npm:~8.11.0": - version: 8.11.0 - resolution: "ws@npm:8.11.0" - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - checksum: 316b33aba32f317cd217df66dbfc5b281a2f09ff36815de222bc859e3424d83766d9eb2bd4d667de658b6ab7be151f258318fb1da812416b30be13103e5b5c67 - languageName: node - linkType: hard - -"yallist@npm:^4.0.0": - version: 4.0.0 - resolution: "yallist@npm:4.0.0" - checksum: 343617202af32df2a15a3be36a5a8c0c8545208f3d3dfbc6bb7c3e3b7e8c6f8e7485432e4f3b88da3031a6e20afa7c711eded32ddfb122896ac5d914e75848d5 - languageName: node - linkType: hard - -"yaml@npm:^1.10.0": - version: 1.10.2 - resolution: "yaml@npm:1.10.2" - checksum: ce4ada136e8a78a0b08dc10b4b900936912d15de59905b2bf415b4d33c63df1d555d23acb2a41b23cf9fb5da41c256441afca3d6509de7247daa062fd2c5ea5f - languageName: node - linkType: hard - -"yaml@npm:^2.1.1, yaml@npm:^2.2.2": - version: 2.3.1 - resolution: "yaml@npm:2.3.1" - checksum: 2c7bc9a7cd4c9f40d3b0b0a98e370781b68b8b7c4515720869aced2b00d92f5da1762b4ffa947f9e795d6cd6b19f410bd4d15fdd38aca7bd96df59bd9486fb54 - languageName: node - linkType: hard - -"yocto-queue@npm:^0.1.0": - version: 0.1.0 - resolution: "yocto-queue@npm:0.1.0" - checksum: f77b3d8d00310def622123df93d4ee654fc6a0096182af8bd60679ddcdfb3474c56c6c7190817c84a2785648cdee9d721c0154eb45698c62176c322fb46fc700 - languageName: node - linkType: hard - -"zen-observable-ts@npm:^1.2.5": - version: 1.2.5 - resolution: "zen-observable-ts@npm:1.2.5" - dependencies: - zen-observable: 0.8.15 - checksum: 3b707b7a0239a9bc40f73ba71b27733a689a957c1f364fabb9fa9cbd7d04b7c2faf0d517bf17004e3ed3f4330ac613e84c0d32313e450ddaa046f3350af44541 - languageName: node - linkType: hard - -"zen-observable@npm:0.8.15": - version: 0.8.15 - resolution: "zen-observable@npm:0.8.15" - checksum: b7289084bc1fc74a559b7259faa23d3214b14b538a8843d2b001a35e27147833f4107590b1b44bf5bc7f6dfe6f488660d3a3725f268e09b3925b3476153b7821 - languageName: node - linkType: hard - -"zod@npm:3.21.4": - version: 3.21.4 - resolution: "zod@npm:3.21.4" - checksum: f185ba87342ff16f7a06686767c2b2a7af41110c7edf7c1974095d8db7a73792696bcb4a00853de0d2edeb34a5b2ea6a55871bc864227dace682a0a28de33e1f - languageName: node - linkType: hard + version "3.8.0-alpha.15" + resolved "https://registry.yarnpkg.com/@apollo/client/-/client-3.8.0-alpha.15.tgz#8d122bfa01d9d4efea974f1e7714a21c0d6adfad" + integrity sha512-725uCJ7m/+39nHj7tUb3NMr3I6Fyth3GFtMjSVx5w4FngZiLF4xszXzH8sGZxfAlKagXMVKK0EDncAoFXoY16A== + dependencies: + "@graphql-typed-document-node/core" "^3.1.1" + "@wry/context" "^0.7.3" + "@wry/equality" "^0.5.6" + "@wry/trie" "^0.4.3" + graphql-tag "^2.12.6" + hoist-non-react-statics "^3.3.2" + optimism "^0.17.4" + prop-types "^15.7.2" + response-iterator "^0.2.6" + symbol-observable "^4.0.0" + ts-invariant "^0.10.3" + tslib "^2.3.0" + zen-observable-ts "^1.2.5" + +"@apollo/experimental-nextjs-app-support@^0.3.1": + version "0.3.5" + resolved "https://registry.yarnpkg.com/@apollo/experimental-nextjs-app-support/-/experimental-nextjs-app-support-0.3.5.tgz#acef36accf925c1855146feb346867dcdf513330" + integrity sha512-GscLswdwNWMzklO63dvdKuWbulIy9ePxH5WL4sh7B7XJhNkbP00ApoBO8/rtAW+1zimg+UdxqyjRLXSWfaur7g== + dependencies: + superjson "^1.12.2" + ts-invariant "^0.10.3" + +"@babel/code-frame@^7.0.0": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.10.tgz#1c20e612b768fefa75f6e90d6ecb86329247f0a3" + integrity sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA== + dependencies: + "@babel/highlight" "^7.22.10" + chalk "^2.4.2" + +"@babel/helper-module-imports@^7.16.7": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c" + integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-string-parser@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" + integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== + +"@babel/helper-validator-identifier@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193" + integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== + +"@babel/highlight@^7.22.10": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.10.tgz#02a3f6d8c1cb4521b2fd0ab0da8f4739936137d7" + integrity sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ== + dependencies: + "@babel/helper-validator-identifier" "^7.22.5" + chalk "^2.4.2" + js-tokens "^4.0.0" + +"@babel/parser@^7.6.0", "@babel/parser@^7.9.6": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.10.tgz#e37634f9a12a1716136c44624ef54283cabd3f55" + integrity sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ== + +"@babel/runtime@^7.12.5", "@babel/runtime@^7.18.3", "@babel/runtime@^7.20.7", "@babel/runtime@^7.21.0", "@babel/runtime@^7.22.6", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.7": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.10.tgz#ae3e9631fd947cb7e3610d3e9d8fef5f76696682" + integrity sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ== + dependencies: + regenerator-runtime "^0.14.0" + +"@babel/types@^7.22.5", "@babel/types@^7.6.1", "@babel/types@^7.9.6": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.10.tgz#4a9e76446048f2c66982d1a989dd12b8a2d2dc03" + integrity sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg== + dependencies: + "@babel/helper-string-parser" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.5" + to-fast-properties "^2.0.0" + +"@discoveryjs/json-ext@^0.5.0": + version "0.5.7" + resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" + integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw== + +"@emotion/babel-plugin@^11.11.0": + version "11.11.0" + resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz#c2d872b6a7767a9d176d007f5b31f7d504bb5d6c" + integrity sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ== + dependencies: + "@babel/helper-module-imports" "^7.16.7" + "@babel/runtime" "^7.18.3" + "@emotion/hash" "^0.9.1" + "@emotion/memoize" "^0.8.1" + "@emotion/serialize" "^1.1.2" + babel-plugin-macros "^3.1.0" + convert-source-map "^1.5.0" + escape-string-regexp "^4.0.0" + find-root "^1.1.0" + source-map "^0.5.7" + stylis "4.2.0" + +"@emotion/cache@^11.11.0": + version "11.11.0" + resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.11.0.tgz#809b33ee6b1cb1a625fef7a45bc568ccd9b8f3ff" + integrity sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ== + dependencies: + "@emotion/memoize" "^0.8.1" + "@emotion/sheet" "^1.2.2" + "@emotion/utils" "^1.2.1" + "@emotion/weak-memoize" "^0.3.1" + stylis "4.2.0" + +"@emotion/hash@^0.9.1": + version "0.9.1" + resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.9.1.tgz#4ffb0055f7ef676ebc3a5a91fb621393294e2f43" + integrity sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ== + +"@emotion/is-prop-valid@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz#23116cf1ed18bfeac910ec6436561ecb1a3885cc" + integrity sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw== + dependencies: + "@emotion/memoize" "^0.8.1" + +"@emotion/memoize@^0.8.1": + version "0.8.1" + resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.8.1.tgz#c1ddb040429c6d21d38cc945fe75c818cfb68e17" + integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA== + +"@emotion/react@^11.10.5", "@emotion/react@^11.11.1": + version "11.11.1" + resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.11.1.tgz#b2c36afac95b184f73b08da8c214fdf861fa4157" + integrity sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA== + dependencies: + "@babel/runtime" "^7.18.3" + "@emotion/babel-plugin" "^11.11.0" + "@emotion/cache" "^11.11.0" + "@emotion/serialize" "^1.1.2" + "@emotion/use-insertion-effect-with-fallbacks" "^1.0.1" + "@emotion/utils" "^1.2.1" + "@emotion/weak-memoize" "^0.3.1" + hoist-non-react-statics "^3.3.1" + +"@emotion/serialize@^1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.1.2.tgz#017a6e4c9b8a803bd576ff3d52a0ea6fa5a62b51" + integrity sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA== + dependencies: + "@emotion/hash" "^0.9.1" + "@emotion/memoize" "^0.8.1" + "@emotion/unitless" "^0.8.1" + "@emotion/utils" "^1.2.1" + csstype "^3.0.2" + +"@emotion/sheet@^1.2.2": + version "1.2.2" + resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.2.2.tgz#d58e788ee27267a14342303e1abb3d508b6d0fec" + integrity sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA== + +"@emotion/styled@^11.10.5", "@emotion/styled@^11.11.0": + version "11.11.0" + resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-11.11.0.tgz#26b75e1b5a1b7a629d7c0a8b708fbf5a9cdce346" + integrity sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng== + dependencies: + "@babel/runtime" "^7.18.3" + "@emotion/babel-plugin" "^11.11.0" + "@emotion/is-prop-valid" "^1.2.1" + "@emotion/serialize" "^1.1.2" + "@emotion/use-insertion-effect-with-fallbacks" "^1.0.1" + "@emotion/utils" "^1.2.1" + +"@emotion/unitless@^0.8.1": + version "0.8.1" + resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.8.1.tgz#182b5a4704ef8ad91bde93f7a860a88fd92c79a3" + integrity sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ== + +"@emotion/use-insertion-effect-with-fallbacks@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz#08de79f54eb3406f9daaf77c76e35313da963963" + integrity sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw== + +"@emotion/utils@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-1.2.1.tgz#bbab58465738d31ae4cb3dbb6fc00a5991f755e4" + integrity sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg== + +"@emotion/weak-memoize@^0.3.1": + version "0.3.1" + resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz#d0fce5d07b0620caa282b5131c297bb60f9d87e6" + integrity sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww== + +"@eslint-community/eslint-utils@^4.2.0": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" + integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== + dependencies: + eslint-visitor-keys "^3.3.0" + +"@eslint-community/regexpp@^4.6.1": + version "4.6.2" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.6.2.tgz#1816b5f6948029c5eaacb0703b850ee0cb37d8f8" + integrity sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw== + +"@eslint/eslintrc@^2.1.1": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.1.tgz#18d635e24ad35f7276e8a49d135c7d3ca6a46f93" + integrity sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA== + dependencies: + ajv "^6.12.4" + debug "^4.3.2" + espree "^9.6.0" + globals "^13.19.0" + ignore "^5.2.0" + import-fresh "^3.2.1" + js-yaml "^4.1.0" + minimatch "^3.1.2" + strip-json-comments "^3.1.1" + +"@eslint/js@^8.46.0": + version "8.46.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.46.0.tgz#3f7802972e8b6fe3f88ed1aabc74ec596c456db6" + integrity sha512-a8TLtmPi8xzPkCbp/OGFUo5yhRkHM2Ko9kOWP4znJr0WAhWyThaw3PnwX4vOTWOAMsV2uRt32PPDcEz63esSaA== + +"@graphql-typed-document-node/core@^3.1.1": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.2.0.tgz#5f3d96ec6b2354ad6d8a28bf216a1d97b5426861" + integrity sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ== + +"@humanwhocodes/config-array@^0.11.10": + version "0.11.10" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2" + integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ== + dependencies: + "@humanwhocodes/object-schema" "^1.2.1" + debug "^4.1.1" + minimatch "^3.0.5" + +"@humanwhocodes/module-importer@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" + integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== + +"@humanwhocodes/object-schema@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" + integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== + +"@ioredis/commands@^1.1.1": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@ioredis/commands/-/commands-1.2.0.tgz#6d61b3097470af1fdbbe622795b8921d42018e11" + integrity sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg== + +"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": + version "0.3.3" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" + integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/resolve-uri@^3.1.0": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" + integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== + +"@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + +"@jridgewell/source-map@^0.3.3": + version "0.3.5" + resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.5.tgz#a3bb4d5c6825aab0d281268f47f6ad5853431e91" + integrity sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ== + dependencies: + "@jridgewell/gen-mapping" "^0.3.0" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + +"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.19" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz#f8a3249862f91be48d3127c3cfe992f79b4b8811" + integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw== + dependencies: + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" + +"@mui/base@5.0.0-beta.10": + version "5.0.0-beta.10" + resolved "https://registry.yarnpkg.com/@mui/base/-/base-5.0.0-beta.10.tgz#b9a2de21c7de45aa4275c7ecf5aa803ecc236ba6" + integrity sha512-moTAhGwFfQffj7hsu61FnqcGqVcd53A1CrOhnskM9TF0Uh2rnLDMCuar4JRUWWpaJofAfQEbQBBFPadFQLI4PA== + dependencies: + "@babel/runtime" "^7.22.6" + "@emotion/is-prop-valid" "^1.2.1" + "@mui/types" "^7.2.4" + "@mui/utils" "^5.14.4" + "@popperjs/core" "^2.11.8" + clsx "^2.0.0" + prop-types "^15.8.1" + react-is "^18.2.0" + +"@mui/core-downloads-tracker@^5.14.4": + version "5.14.4" + resolved "https://registry.yarnpkg.com/@mui/core-downloads-tracker/-/core-downloads-tracker-5.14.4.tgz#a517265647ee9660170107d68905db5e400576c5" + integrity sha512-pW2XghSi3hpYKX57Wu0SCWMTSpzvXZmmucj3TcOJWaCiFt4xr05w2gcwBZi36dAp9uvd9//9N51qbblmnD+GPg== + +"@mui/icons-material@^5.11.0", "@mui/icons-material@^5.14.3": + version "5.14.3" + resolved "https://registry.yarnpkg.com/@mui/icons-material/-/icons-material-5.14.3.tgz#26a84d52ab2fceea2856adf7a139527b3a51ae90" + integrity sha512-XkxWPhageu1OPUm2LWjo5XqeQ0t2xfGe8EiLkRW9oz2LHMMZmijvCxulhgquUVTF1DnoSh+3KoDLSsoAFtVNVw== + dependencies: + "@babel/runtime" "^7.22.6" + +"@mui/material@^5.11.7", "@mui/material@^5.14.2": + version "5.14.4" + resolved "https://registry.yarnpkg.com/@mui/material/-/material-5.14.4.tgz#9d4d1834a929a4acc59e550e34ca64c0fd60b3a6" + integrity sha512-2XUV3KyRC07BQPPzEgd+ss3x/ezXtHeKtOGCMCNmx3MauZojPYUpSwFkE0fYgYCD9dMQMVG4DY/VF38P0KShsg== + dependencies: + "@babel/runtime" "^7.22.6" + "@mui/base" "5.0.0-beta.10" + "@mui/core-downloads-tracker" "^5.14.4" + "@mui/system" "^5.14.4" + "@mui/types" "^7.2.4" + "@mui/utils" "^5.14.4" + "@types/react-transition-group" "^4.4.6" + clsx "^2.0.0" + csstype "^3.1.2" + prop-types "^15.8.1" + react-is "^18.2.0" + react-transition-group "^4.4.5" + +"@mui/private-theming@^5.14.4": + version "5.14.4" + resolved "https://registry.yarnpkg.com/@mui/private-theming/-/private-theming-5.14.4.tgz#0ec5510da05047f94984344360c7f457f3a0e19e" + integrity sha512-ISXsHDiQ3z1XA4IuKn+iXDWvDjcz/UcQBiFZqtdoIsEBt8CB7wgdQf3LwcwqO81dl5ofg/vNQBEnXuKfZHrnYA== + dependencies: + "@babel/runtime" "^7.22.6" + "@mui/utils" "^5.14.4" + prop-types "^15.8.1" + +"@mui/styled-engine@^5.13.2": + version "5.13.2" + resolved "https://registry.yarnpkg.com/@mui/styled-engine/-/styled-engine-5.13.2.tgz#c87bd61c0ab8086d34828b6defe97c02bcd642ef" + integrity sha512-VCYCU6xVtXOrIN8lcbuPmoG+u7FYuOERG++fpY74hPpEWkyFQG97F+/XfTQVYzlR2m7nPjnwVUgATcTCMEaMvw== + dependencies: + "@babel/runtime" "^7.21.0" + "@emotion/cache" "^11.11.0" + csstype "^3.1.2" + prop-types "^15.8.1" + +"@mui/system@^5.14.4": + version "5.14.4" + resolved "https://registry.yarnpkg.com/@mui/system/-/system-5.14.4.tgz#306a2fdd41ab6f4912ea689316f834db8461bb86" + integrity sha512-oPgfWS97QNfHcDBapdkZIs4G5i85BJt69Hp6wbXF6s7vi3Evcmhdk8AbCRW6n0sX4vTj8oe0mh0RIm1G2A1KDA== + dependencies: + "@babel/runtime" "^7.22.6" + "@mui/private-theming" "^5.14.4" + "@mui/styled-engine" "^5.13.2" + "@mui/types" "^7.2.4" + "@mui/utils" "^5.14.4" + clsx "^2.0.0" + csstype "^3.1.2" + prop-types "^15.8.1" + +"@mui/types@^7.2.4": + version "7.2.4" + resolved "https://registry.yarnpkg.com/@mui/types/-/types-7.2.4.tgz#b6fade19323b754c5c6de679a38f068fd50b9328" + integrity sha512-LBcwa8rN84bKF+f5sDyku42w1NTxaPgPyYKODsh01U1fVstTClbUoSA96oyRBnSNyEiAVjKm6Gwx9vjR+xyqHA== + +"@mui/utils@^5.14.4": + version "5.14.4" + resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-5.14.4.tgz#498cc2b08e46776c1e4327bfd8c23ad2f5890bc6" + integrity sha512-4ANV0txPD3x0IcTCSEHKDWnsutg1K3m6Vz5IckkbLXVYu17oOZCVUdOKsb/txUmaCd0v0PmSRe5PW+Mlvns5dQ== + dependencies: + "@babel/runtime" "^7.22.6" + "@types/prop-types" "^15.7.5" + "@types/react-is" "^18.2.1" + prop-types "^15.8.1" + react-is "^18.2.0" + +"@next/env@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/env/-/env-13.4.12.tgz#0b88115ab817f178bf9dc0c5e7b367277595b58d" + integrity sha512-RmHanbV21saP/6OEPBJ7yJMuys68cIf8OBBWd7+uj40LdpmswVAwe1uzeuFyUsd6SfeITWT3XnQfn6wULeKwDQ== + +"@next/eslint-plugin-next@13.4.10": + version "13.4.10" + resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.10.tgz#ff19867396a7709ff75986645f2223787fbb2d9b" + integrity sha512-YJqyq6vk39JQfvaNtN83t/p5Jy45+bazRL+V4QI8FPd3FBqFYMEsULiwRLgSJMgFqkk4t4JbeZurz+gILEAFpA== + dependencies: + glob "7.1.7" + +"@next/swc-darwin-arm64@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.12.tgz#326c830b111de8a1a51ac0cbc3bcb157c4c4f92c" + integrity sha512-deUrbCXTMZ6ZhbOoloqecnUeNpUOupi8SE2tx4jPfNS9uyUR9zK4iXBvH65opVcA/9F5I/p8vDXSYbUlbmBjZg== + +"@next/swc-darwin-x64@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.12.tgz#dd5c49fc092a8ffe4f30b7aa9bf6c5d2e40bbfa1" + integrity sha512-WRvH7RxgRHlC1yb5oG0ZLx8F7uci9AivM5/HGGv9ZyG2Als8Ij64GC3d+mQ5sJhWjusyU6T6V1WKTUoTmOB0zQ== + +"@next/swc-linux-arm64-gnu@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.12.tgz#816cbe9d26ce4670ea99d95b66041e483ed122d6" + integrity sha512-YEKracAWuxp54tKiAvvq73PUs9lok57cc8meYRibTWe/VdPB2vLgkTVWFcw31YDuRXdEhdX0fWS6Q+ESBhnEig== + +"@next/swc-linux-arm64-musl@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.12.tgz#670c8aee221628f65e5b299ee84db746e6c778b0" + integrity sha512-LhJR7/RAjdHJ2Isl2pgc/JaoxNk0KtBgkVpiDJPVExVWA1c6gzY57+3zWuxuyWzTG+fhLZo2Y80pLXgIJv7g3g== + +"@next/swc-linux-x64-gnu@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.12.tgz#54c64e689f007ae463698dddc1c6637491c99cb4" + integrity sha512-1DWLL/B9nBNiQRng+1aqs3OaZcxC16Nf+mOnpcrZZSdyKHek3WQh6j/fkbukObgNGwmCoVevLUa/p3UFTTqgqg== + +"@next/swc-linux-x64-musl@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.12.tgz#9cbddf4e542ef3d32284e0c36ce102facc015f8b" + integrity sha512-kEAJmgYFhp0VL+eRWmUkVxLVunn7oL9Mdue/FS8yzRBVj7Z0AnIrHpTIeIUl1bbdQq1VaoOztnKicAjfkLTRCQ== + +"@next/swc-win32-arm64-msvc@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.12.tgz#3467a4b25429ccf49fd416388c9d19c80a4f6465" + integrity sha512-GMLuL/loR6yIIRTnPRY6UGbLL9MBdw2anxkOnANxvLvsml4F0HNIgvnU3Ej4BjbqMTNjD4hcPFdlEow4XHPdZA== + +"@next/swc-win32-ia32-msvc@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.12.tgz#73494cd167191946833c680b28d6a42435d383a8" + integrity sha512-PhgNqN2Vnkm7XaMdRmmX0ZSwZXQAtamBVSa9A/V1dfKQCV1rjIZeiy/dbBnVYGdj63ANfsOR/30XpxP71W0eww== + +"@next/swc-win32-x64-msvc@13.4.12": + version "13.4.12" + resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.12.tgz#4a497edc4e8c5ee3c3eb27cf0eb39dfadff70874" + integrity sha512-Z+56e/Ljt0bUs+T+jPjhFyxYBcdY2RIq9ELFU+qAMQMteHo7ymbV7CKmlcX59RI9C4YzN8PgMgLyAoi916b5HA== + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@popperjs/core@^2.11.8": + version "2.11.8" + resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.8.tgz#6b79032e760a0899cd4204710beede972a3a185f" + integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A== + +"@rushstack/eslint-patch@^1.1.3": + version "1.3.3" + resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.3.3.tgz#16ab6c727d8c2020a5b6e4a176a243ecd88d8d69" + integrity sha512-0xd7qez0AQ+MbHatZTlI1gu5vkG8r7MYRUJAHPAHJBmGLs16zpkrpAVLvjQKQOqaXPDUBwOiJzNc00znHSCVBw== + +"@socket.io/component-emitter@~3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz#96116f2a912e0c02817345b3c10751069920d553" + integrity sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg== + +"@swc/helpers@0.5.1": + version "0.5.1" + resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.1.tgz#e9031491aa3f26bfcc974a67f48bd456c8a5357a" + integrity sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg== + dependencies: + tslib "^2.4.0" + +"@types/cookie@^0.4.1": + version "0.4.1" + resolved "https://registry.yarnpkg.com/@types/cookie/-/cookie-0.4.1.tgz#bfd02c1f2224567676c1545199f87c3a861d878d" + integrity sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q== + +"@types/cors@^2.8.12": + version "2.8.13" + resolved "https://registry.yarnpkg.com/@types/cors/-/cors-2.8.13.tgz#b8ade22ba455a1b8cb3b5d3f35910fd204f84f94" + integrity sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA== + dependencies: + "@types/node" "*" + +"@types/eslint-scope@^3.7.3": + version "3.7.4" + resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.4.tgz#37fc1223f0786c39627068a12e94d6e6fc61de16" + integrity sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA== + dependencies: + "@types/eslint" "*" + "@types/estree" "*" + +"@types/eslint@*": + version "8.44.2" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.44.2.tgz#0d21c505f98a89b8dd4d37fa162b09da6089199a" + integrity sha512-sdPRb9K6iL5XZOmBubg8yiFp5yS/JdUDQsq5e6h95km91MCYMuvp7mh1fjPEYUhvHepKpZOjnEaMBR4PxjWDzg== + dependencies: + "@types/estree" "*" + "@types/json-schema" "*" + +"@types/estree@*", "@types/estree@^1.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.1.tgz#aa22750962f3bf0e79d753d3cc067f010c95f194" + integrity sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA== + +"@types/json-schema@*", "@types/json-schema@^7.0.8": + version "7.0.12" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb" + integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA== + +"@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== + +"@types/node@*", "@types/node@>=10.0.0", "@types/node@^20.4.9": + version "20.4.9" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.4.9.tgz#c7164e0f8d3f12dfae336af0b1f7fdec8c6b204f" + integrity sha512-8e2HYcg7ohnTUbHk8focoklEQYvemQmu9M/f43DZVx43kHn0tE3BY/6gSDxS7k0SprtS0NHvj+L80cGLnoOUcQ== + +"@types/parse-json@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" + integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== + +"@types/prop-types@*", "@types/prop-types@^15.7.5": + version "15.7.5" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" + integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== + +"@types/react-dom@18.2.7": + version "18.2.7" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.7.tgz#67222a08c0a6ae0a0da33c3532348277c70abb63" + integrity sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA== + dependencies: + "@types/react" "*" + +"@types/react-is@^18.2.1": + version "18.2.1" + resolved "https://registry.yarnpkg.com/@types/react-is/-/react-is-18.2.1.tgz#61d01c2a6fc089a53520c0b66996d458fdc46863" + integrity sha512-wyUkmaaSZEzFZivD8F2ftSyAfk6L+DfFliVj/mYdOXbVjRcS87fQJLTnhk6dRZPuJjI+9g6RZJO4PNCngUrmyw== + dependencies: + "@types/react" "*" + +"@types/react-transition-group@^4.4.6": + version "4.4.6" + resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.6.tgz#18187bcda5281f8e10dfc48f0943e2fdf4f75e2e" + integrity sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew== + dependencies: + "@types/react" "*" + +"@types/react@*", "@types/react@^18.2.19": + version "18.2.20" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.20.tgz#1605557a83df5c8a2cc4eeb743b3dfc0eb6aaeb2" + integrity sha512-WKNtmsLWJM/3D5mG4U84cysVY31ivmyw85dE84fOCk5Hx78wezB/XEjVPWl2JTZ5FkEeaTJf+VgUAUn3PE7Isw== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + +"@types/scheduler@*": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.3.tgz#cef09e3ec9af1d63d2a6cc5b383a737e24e6dcf5" + integrity sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ== + +"@types/uuid@^8.0.0": + version "8.3.4" + resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-8.3.4.tgz#bd86a43617df0594787d38b735f55c805becf1bc" + integrity sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw== + +"@typescript-eslint/parser@^5.42.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.62.0.tgz#1b63d082d849a2fcae8a569248fbe2ee1b8a56c7" + integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA== + dependencies: + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/typescript-estree" "5.62.0" + debug "^4.3.4" + +"@typescript-eslint/scope-manager@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz#d9457ccc6a0b8d6b37d0eb252a23022478c5460c" + integrity sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w== + dependencies: + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" + +"@typescript-eslint/types@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f" + integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ== + +"@typescript-eslint/typescript-estree@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b" + integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA== + dependencies: + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" + semver "^7.3.7" + tsutils "^3.21.0" + +"@typescript-eslint/visitor-keys@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e" + integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw== + dependencies: + "@typescript-eslint/types" "5.62.0" + eslint-visitor-keys "^3.3.0" + +"@webassemblyjs/ast@1.11.6", "@webassemblyjs/ast@^1.11.5": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.6.tgz#db046555d3c413f8966ca50a95176a0e2c642e24" + integrity sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q== + dependencies: + "@webassemblyjs/helper-numbers" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + +"@webassemblyjs/floating-point-hex-parser@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz#dacbcb95aff135c8260f77fa3b4c5fea600a6431" + integrity sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw== + +"@webassemblyjs/helper-api-error@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz#6132f68c4acd59dcd141c44b18cbebbd9f2fa768" + integrity sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q== + +"@webassemblyjs/helper-buffer@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz#b66d73c43e296fd5e88006f18524feb0f2c7c093" + integrity sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA== + +"@webassemblyjs/helper-numbers@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz#cbce5e7e0c1bd32cf4905ae444ef64cea919f1b5" + integrity sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g== + dependencies: + "@webassemblyjs/floating-point-hex-parser" "1.11.6" + "@webassemblyjs/helper-api-error" "1.11.6" + "@xtuc/long" "4.2.2" + +"@webassemblyjs/helper-wasm-bytecode@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz#bb2ebdb3b83aa26d9baad4c46d4315283acd51e9" + integrity sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA== + +"@webassemblyjs/helper-wasm-section@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz#ff97f3863c55ee7f580fd5c41a381e9def4aa577" + integrity sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g== + dependencies: + "@webassemblyjs/ast" "1.11.6" + "@webassemblyjs/helper-buffer" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/wasm-gen" "1.11.6" + +"@webassemblyjs/ieee754@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz#bb665c91d0b14fffceb0e38298c329af043c6e3a" + integrity sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg== + dependencies: + "@xtuc/ieee754" "^1.2.0" + +"@webassemblyjs/leb128@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.6.tgz#70e60e5e82f9ac81118bc25381a0b283893240d7" + integrity sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ== + dependencies: + "@xtuc/long" "4.2.2" + +"@webassemblyjs/utf8@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.6.tgz#90f8bc34c561595fe156603be7253cdbcd0fab5a" + integrity sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA== + +"@webassemblyjs/wasm-edit@^1.11.5": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz#c72fa8220524c9b416249f3d94c2958dfe70ceab" + integrity sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw== + dependencies: + "@webassemblyjs/ast" "1.11.6" + "@webassemblyjs/helper-buffer" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/helper-wasm-section" "1.11.6" + "@webassemblyjs/wasm-gen" "1.11.6" + "@webassemblyjs/wasm-opt" "1.11.6" + "@webassemblyjs/wasm-parser" "1.11.6" + "@webassemblyjs/wast-printer" "1.11.6" + +"@webassemblyjs/wasm-gen@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz#fb5283e0e8b4551cc4e9c3c0d7184a65faf7c268" + integrity sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA== + dependencies: + "@webassemblyjs/ast" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/ieee754" "1.11.6" + "@webassemblyjs/leb128" "1.11.6" + "@webassemblyjs/utf8" "1.11.6" + +"@webassemblyjs/wasm-opt@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz#d9a22d651248422ca498b09aa3232a81041487c2" + integrity sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g== + dependencies: + "@webassemblyjs/ast" "1.11.6" + "@webassemblyjs/helper-buffer" "1.11.6" + "@webassemblyjs/wasm-gen" "1.11.6" + "@webassemblyjs/wasm-parser" "1.11.6" + +"@webassemblyjs/wasm-parser@1.11.6", "@webassemblyjs/wasm-parser@^1.11.5": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz#bb85378c527df824004812bbdb784eea539174a1" + integrity sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ== + dependencies: + "@webassemblyjs/ast" "1.11.6" + "@webassemblyjs/helper-api-error" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/ieee754" "1.11.6" + "@webassemblyjs/leb128" "1.11.6" + "@webassemblyjs/utf8" "1.11.6" + +"@webassemblyjs/wast-printer@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz#a7bf8dd7e362aeb1668ff43f35cb849f188eff20" + integrity sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A== + dependencies: + "@webassemblyjs/ast" "1.11.6" + "@xtuc/long" "4.2.2" + +"@webpack-cli/configtest@^2.1.1": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-2.1.1.tgz#3b2f852e91dac6e3b85fb2a314fb8bef46d94646" + integrity sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw== + +"@webpack-cli/info@^2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@webpack-cli/info/-/info-2.0.2.tgz#cc3fbf22efeb88ff62310cf885c5b09f44ae0fdd" + integrity sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A== + +"@webpack-cli/serve@^2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-2.0.5.tgz#325db42395cd49fe6c14057f9a900e427df8810e" + integrity sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ== + +"@weng-lab/psychscreen-ui-components@^0.7.8": + version "0.7.8" + resolved "https://registry.yarnpkg.com/@weng-lab/psychscreen-ui-components/-/psychscreen-ui-components-0.7.8.tgz#229034fd329513c482b4cf1d5e73798a0222f8ba" + integrity sha512-nHQV/WGbGvVu5e6xk92/Zg7qH8bsSwD25Ygyfj+xhkuZoqIk9E8RcgWIul5Yb/pofBtk9BaFyjXmbrqYHo1o+g== + +"@weng-lab/ts-ztable@^4.0.1": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@weng-lab/ts-ztable/-/ts-ztable-4.0.1.tgz#682a649275bef22d28531da186d11ade49ce5bbe" + integrity sha512-QSOUNmOVmigShkgfgmkdkEUyiPZ8anp78p6IGRSFuDy/Sx+7CgQuu13qBkkHhhCls6SYJVtOcc56jQsiui/XNw== + dependencies: + "@emotion/react" "^11.10.5" + "@emotion/styled" "^11.10.5" + "@mui/icons-material" "^5.11.0" + "@mui/material" "^5.11.7" + tslib "^2.5.0" + +"@wry/context@^0.7.0", "@wry/context@^0.7.3": + version "0.7.3" + resolved "https://registry.yarnpkg.com/@wry/context/-/context-0.7.3.tgz#240f6dfd4db5ef54f81f6597f6714e58d4f476a1" + integrity sha512-Nl8WTesHp89RF803Se9X3IiHjdmLBrIvPMaJkl+rKVJAYyPsz1TEUbu89943HpvujtSJgDUx9W4vZw3K1Mr3sA== + dependencies: + tslib "^2.3.0" + +"@wry/equality@^0.5.6": + version "0.5.6" + resolved "https://registry.yarnpkg.com/@wry/equality/-/equality-0.5.6.tgz#cd4a533c72c3752993ab8cbf682d3d20e3cb601e" + integrity sha512-D46sfMTngaYlrH+OspKf8mIJETntFnf6Hsjb0V41jAXJ7Bx2kB8Rv8RCUujuVWYttFtHkUNp7g+FwxNQAr6mXA== + dependencies: + tslib "^2.3.0" + +"@wry/trie@^0.4.3": + version "0.4.3" + resolved "https://registry.yarnpkg.com/@wry/trie/-/trie-0.4.3.tgz#077d52c22365871bf3ffcbab8e95cb8bc5689af4" + integrity sha512-I6bHwH0fSf6RqQcnnXLJKhkSXG45MFral3GxPaY4uAl0LYDZM+YDVDAiU9bYwjTuysy1S0IeecWtmq1SZA3M1w== + dependencies: + tslib "^2.3.0" + +"@xtuc/ieee754@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" + integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== + +"@xtuc/long@4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" + integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== + +accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8: + version "1.3.8" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" + integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== + dependencies: + mime-types "~2.1.34" + negotiator "0.6.3" + +acorn-import-assertions@^1.9.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz#507276249d684797c84e0734ef84860334cfb1ac" + integrity sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA== + +acorn-jsx@^5.3.2: + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn@^7.1.1: + version "7.4.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + +acorn@^8.7.1, acorn@^8.8.2, acorn@^8.9.0: + version "8.10.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5" + integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== + +aggregate-error@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" + integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== + dependencies: + clean-stack "^2.0.0" + indent-string "^4.0.0" + +ajv-keywords@^3.5.2: + version "3.5.2" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" + integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== + +ajv@^6.12.4, ajv@^6.12.5: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ansi-escapes@^4.3.0: + version "4.3.2" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-regex@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" + integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +ansi-styles@^6.0.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" + integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== + +any-promise@^1.0.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" + integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== + +anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +app-module-path@^2.1.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/app-module-path/-/app-module-path-2.2.0.tgz#641aa55dfb7d6a6f0a8141c4b9c0aa50b6c24dd5" + integrity sha512-gkco+qxENJV+8vFcDiiFhuoSvRXb2a/QPqpSoWhVz829VNJfOTnELbBmPmNKFxf3xdNnw4DWCkzkDaavcX/1YQ== + +"aproba@^1.0.3 || ^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" + integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== + +are-we-there-yet@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz#679df222b278c64f2cdba1175cdc00b0d96164bd" + integrity sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg== + dependencies: + delegates "^1.0.0" + readable-stream "^3.6.0" + +arg@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" + integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +aria-query@^5.1.3: + version "5.3.0" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.3.0.tgz#650c569e41ad90b51b3d7df5e5eed1c7549c103e" + integrity sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A== + dependencies: + dequal "^2.0.3" + +array-buffer-byte-length@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead" + integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A== + dependencies: + call-bind "^1.0.2" + is-array-buffer "^3.0.1" + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== + +array-includes@^3.1.6: + version "3.1.6" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f" + integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + get-intrinsic "^1.1.3" + is-string "^1.0.7" + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +array.prototype.findlastindex@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.2.tgz#bc229aef98f6bd0533a2bc61ff95209875526c9b" + integrity sha512-tb5thFFlUcp7NdNF6/MpDk/1r/4awWG1FIz3YqDf+/zJSTezBb+/5WViH41obXULHVpDzoiCLpJ/ZO9YbJMsdw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-shim-unscopables "^1.0.0" + get-intrinsic "^1.1.3" + +array.prototype.flat@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2" + integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-shim-unscopables "^1.0.0" + +array.prototype.flatmap@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183" + integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-shim-unscopables "^1.0.0" + +array.prototype.tosorted@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz#ccf44738aa2b5ac56578ffda97c03fd3e23dd532" + integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-shim-unscopables "^1.0.0" + get-intrinsic "^1.1.3" + +arraybuffer.prototype.slice@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz#9b5ea3868a6eebc30273da577eb888381c0044bb" + integrity sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw== + dependencies: + array-buffer-byte-length "^1.0.0" + call-bind "^1.0.2" + define-properties "^1.2.0" + get-intrinsic "^1.2.1" + is-array-buffer "^3.0.2" + is-shared-array-buffer "^1.0.2" + +asap@^2.0.0, asap@~2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== + +assert-never@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/assert-never/-/assert-never-1.2.1.tgz#11f0e363bf146205fb08193b5c7b90f4d1cf44fe" + integrity sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw== + +ast-types-flow@^0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" + integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== + +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + +autoprefixer@10.4.14: + version "10.4.14" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.14.tgz#e28d49902f8e759dd25b153264e862df2705f79d" + integrity sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ== + dependencies: + browserslist "^4.21.5" + caniuse-lite "^1.0.30001464" + fraction.js "^4.2.0" + normalize-range "^0.1.2" + picocolors "^1.0.0" + postcss-value-parser "^4.2.0" + +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + +axe-core@^4.6.2: + version "4.7.2" + resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.7.2.tgz#040a7342b20765cb18bb50b628394c21bccc17a0" + integrity sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g== + +axios@^0.18.0: + version "0.18.1" + resolved "https://registry.yarnpkg.com/axios/-/axios-0.18.1.tgz#ff3f0de2e7b5d180e757ad98000f1081b87bcea3" + integrity sha512-0BfJq4NSfQXd+SkFdrvFbG7addhYSBA2mQwISr46pD6E5iqkWg02RAs8vyTT/j0RTnoYmeXauBuSv1qKwR179g== + dependencies: + follow-redirects "1.5.10" + is-buffer "^2.0.2" + +axobject-query@^3.1.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.2.1.tgz#39c378a6e3b06ca679f29138151e45b2b32da62a" + integrity sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg== + dependencies: + dequal "^2.0.3" + +b4a@^1.6.4: + version "1.6.4" + resolved "https://registry.yarnpkg.com/b4a/-/b4a-1.6.4.tgz#ef1c1422cae5ce6535ec191baeed7567443f36c9" + integrity sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw== + +babel-plugin-macros@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz#9ef6dc74deb934b4db344dc973ee851d148c50c1" + integrity sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg== + dependencies: + "@babel/runtime" "^7.12.5" + cosmiconfig "^7.0.0" + resolve "^1.19.0" + +babel-walk@3.0.0-canary-5: + version "3.0.0-canary-5" + resolved "https://registry.yarnpkg.com/babel-walk/-/babel-walk-3.0.0-canary-5.tgz#f66ecd7298357aee44955f235a6ef54219104b11" + integrity sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw== + dependencies: + "@babel/types" "^7.9.6" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +base64id@2.0.0, base64id@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/base64id/-/base64id-2.0.0.tgz#2770ac6bc47d312af97a8bf9a634342e0cd25cb6" + integrity sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog== + +batch@0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" + integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw== + +big.js@^5.2.2: + version "5.2.2" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" + integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== + +bigwig-reader@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/bigwig-reader/-/bigwig-reader-1.3.1.tgz#74fa97ef8847d0aad383484551fc101d6ad84ae1" + integrity sha512-V2ka12KSJDxv/DmJiq1zn/RwPzeGetOwbUixV7APtc7M6kjb25v6K2UsPxJ0KbmB0swiEtfxpnQuDd5GHl52kA== + dependencies: + axios "^0.18.0" + pako "^1.0.10" + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +binary-search@^1.3.6: + version "1.3.6" + resolved "https://registry.yarnpkg.com/binary-search/-/binary-search-1.3.6.tgz#e32426016a0c5092f0f3598836a1c7da3560565c" + integrity sha512-nbE1WxOTTrUWIfsfZ4aHGYu5DOuNkbxGokjV6Z2kxfJK3uaAb8zNK1muzOeipoLHZjInT4Br88BHpzevc681xA== + +bl@^4.0.3: + version "4.1.0" + resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + +body-parser@1.20.1: + version "1.20.1" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" + integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== + dependencies: + bytes "3.1.2" + content-type "~1.0.4" + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + http-errors "2.0.0" + iconv-lite "0.4.24" + on-finished "2.4.1" + qs "6.11.0" + raw-body "2.5.1" + type-is "~1.6.18" + unpipe "1.0.0" + +body-parser@^1.20.1: + version "1.20.2" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.2.tgz#6feb0e21c4724d06de7ff38da36dad4f57a747fd" + integrity sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA== + dependencies: + bytes "3.1.2" + content-type "~1.0.5" + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + http-errors "2.0.0" + iconv-lite "0.4.24" + on-finished "2.4.1" + qs "6.11.0" + raw-body "2.5.2" + type-is "~1.6.18" + unpipe "1.0.0" + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^3.0.2, braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +browserslist@^4.14.5, browserslist@^4.21.5: + version "4.21.10" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.10.tgz#dbbac576628c13d3b2231332cb2ec5a46e015bb0" + integrity sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ== + dependencies: + caniuse-lite "^1.0.30001517" + electron-to-chromium "^1.4.477" + node-releases "^2.0.13" + update-browserslist-db "^1.0.11" + +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +buffer@^5.5.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + +busboy@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz#966ea36a9502e43cdb9146962523b92f531f6893" + integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA== + dependencies: + streamsearch "^1.1.0" + +bytes@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== + +bytes@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== + +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase-css@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" + integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== + +caniuse-lite@^1.0.30001406, caniuse-lite@^1.0.30001464, caniuse-lite@^1.0.30001517: + version "1.0.30001519" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001519.tgz#3e7b8b8a7077e78b0eb054d69e6edf5c7df35601" + integrity sha512-0QHgqR+Jv4bxHMp8kZ1Kn8CH55OikjKJ6JmKkZYP1F3D7w+lnFXF70nG5eNfsZS89jadi5Ywy5UCSKLAglIRkg== + +chalk@5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz#249623b7d66869c673699fb66d65723e54dfcfb3" + integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA== + +chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^4.0.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +character-parser@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/character-parser/-/character-parser-2.2.0.tgz#c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0" + integrity sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw== + dependencies: + is-regex "^1.0.3" + +chokidar@^3.5.3: + version "3.5.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +chownr@^1.1.1: + version "1.1.4" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" + integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== + +chrome-trace-event@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" + integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== + +clean-stack@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== + +cli-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== + dependencies: + restore-cursor "^3.1.0" + +cli-truncate@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" + integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== + dependencies: + slice-ansi "^3.0.0" + string-width "^4.2.0" + +cli-truncate@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-3.1.0.tgz#3f23ab12535e3d73e839bb43e73c9de487db1389" + integrity sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA== + dependencies: + slice-ansi "^5.0.0" + string-width "^5.0.0" + +client-only@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/client-only/-/client-only-0.0.1.tgz#38bba5d403c41ab150bff64a95c85013cf73bca1" + integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA== + +clone-deep@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== + dependencies: + is-plain-object "^2.0.4" + kind-of "^6.0.2" + shallow-clone "^3.0.0" + +clsx@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/clsx/-/clsx-2.0.0.tgz#12658f3fd98fafe62075595a5c30e43d18f3d00b" + integrity sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q== + +cluster-key-slot@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz#88ddaa46906e303b5de30d3153b7d9fe0a0c19ac" + integrity sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA== + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@^1.0.0, color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +color-string@^1.9.0: + version "1.9.1" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4" + integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg== + dependencies: + color-name "^1.0.0" + simple-swizzle "^0.2.2" + +color-support@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" + integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== + +color@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/color/-/color-4.2.3.tgz#d781ecb5e57224ee43ea9627560107c0e0c6463a" + integrity sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A== + dependencies: + color-convert "^2.0.1" + color-string "^1.9.0" + +colorette@^2.0.14, colorette@^2.0.19: + version "2.0.20" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" + integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== + +commander@^10.0.0, commander@^10.0.1: + version "10.0.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06" + integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug== + +commander@^2.20.0: + version "2.20.3" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +commander@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" + integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== + +compressible@~2.0.16: + version "2.0.18" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" + integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== + dependencies: + mime-db ">= 1.43.0 < 2" + +compression@^1.7.4: + version "1.7.4" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" + integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + dependencies: + accepts "~1.3.5" + bytes "3.0.0" + compressible "~2.0.16" + debug "2.6.9" + on-headers "~1.0.2" + safe-buffer "5.1.2" + vary "~1.1.2" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +connect-redis@^6.1.3: + version "6.1.3" + resolved "https://registry.yarnpkg.com/connect-redis/-/connect-redis-6.1.3.tgz#0a83c953f9ece45ae37d304a8e8d1c3c6a60b4b9" + integrity sha512-aaNluLlAn/3JPxRwdzw7lhvEoU6Enb+d83xnokUNhC9dktqBoawKWL+WuxinxvBLTz6q9vReTnUDnUslaz74aw== + +console-control-strings@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== + +constantinople@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/constantinople/-/constantinople-4.0.1.tgz#0def113fa0e4dc8de83331a5cf79c8b325213151" + integrity sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw== + dependencies: + "@babel/parser" "^7.6.0" + "@babel/types" "^7.6.1" + +content-disposition@0.5.4: + version "0.5.4" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" + integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== + dependencies: + safe-buffer "5.2.1" + +content-type@~1.0.4, content-type@~1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" + integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== + +convert-source-map@^1.5.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== + +cookie-parser@^1.4.6: + version "1.4.6" + resolved "https://registry.yarnpkg.com/cookie-parser/-/cookie-parser-1.4.6.tgz#3ac3a7d35a7a03bbc7e365073a26074824214594" + integrity sha512-z3IzaNjdwUC2olLIB5/ITd0/setiaFMLYiZJle7xg5Fe9KWAceil7xszYfHHBtDFYLSgJduS2Ty0P1uJdPDJeA== + dependencies: + cookie "0.4.1" + cookie-signature "1.0.6" + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== + +cookie@0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" + integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg== + +cookie@0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.1.tgz#afd713fe26ebd21ba95ceb61f9a8116e50a537d1" + integrity sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA== + +cookie@0.4.2, cookie@~0.4.1: + version "0.4.2" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432" + integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA== + +cookie@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" + integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== + +copy-anything@^3.0.2: + version "3.0.5" + resolved "https://registry.yarnpkg.com/copy-anything/-/copy-anything-3.0.5.tgz#2d92dce8c498f790fa7ad16b01a1ae5a45b020a0" + integrity sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w== + dependencies: + is-what "^4.1.8" + +cors@~2.8.5: + version "2.8.5" + resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29" + integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g== + dependencies: + object-assign "^4" + vary "^1" + +cosmiconfig@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" + integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.2.1" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.10.0" + +cross-spawn@^7.0.2, cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +csrf@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/csrf/-/csrf-3.1.0.tgz#ec75e9656d004d674b8ef5ba47b41fbfd6cb9c30" + integrity sha512-uTqEnCvWRk042asU6JtapDTcJeeailFy4ydOQS28bj1hcLnYRiqi8SsD2jS412AY1I/4qdOwWZun774iqywf9w== + dependencies: + rndm "1.2.0" + tsscmp "1.0.6" + uid-safe "2.1.5" + +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + +csstype@^3.0.2, csstype@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" + integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== + +csurf@^1.11.0: + version "1.11.0" + resolved "https://registry.yarnpkg.com/csurf/-/csurf-1.11.0.tgz#ab0c3c6634634192bd3d6f4b861be20800eeb61a" + integrity sha512-UCtehyEExKTxgiu8UHdGvHj4tnpE/Qctue03Giq5gPgMQ9cg/ciod5blZQ5a4uCEenNQjxyGuzygLdKUmee/bQ== + dependencies: + cookie "0.4.0" + cookie-signature "1.0.6" + csrf "3.1.0" + http-errors "~1.7.3" + +damerau-levenshtein@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" + integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== + +debug@2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@3.1.0, debug@=3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" + integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== + dependencies: + ms "2.0.0" + +debug@^3.2.7: + version "3.2.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + dependencies: + ms "^2.1.1" + +debug@^4.1.1, debug@^4.3.2, debug@^4.3.4, debug@~4.3.1, debug@~4.3.2: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +decompress-response@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" + integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== + dependencies: + mimic-response "^3.1.0" + +deep-extend@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== + +deep-is@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" + integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== + +denque@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/denque/-/denque-2.1.0.tgz#e93e1a6569fb5e66f16a3c2a2964617d349d6ab1" + integrity sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw== + +depd@2.0.0, depd@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + +depd@~1.1.0, depd@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== + +dequal@^2.0.2, dequal@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" + integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== + +destroy@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" + integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== + +detect-libc@^2.0.0, detect-libc@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.2.tgz#8ccf2ba9315350e1241b88d0ac3b0e1fbd99605d" + integrity sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw== + +dezalgo@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.4.tgz#751235260469084c132157dfa857f386d4c33d81" + integrity sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig== + dependencies: + asap "^2.0.0" + wrappy "1" + +didyoumean@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" + integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +dlv@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" + integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== + +doctrine@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" + integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== + dependencies: + esutils "^2.0.2" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +doctypes@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/doctypes/-/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9" + integrity sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ== + +dom-helpers@^5.0.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902" + integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA== + dependencies: + "@babel/runtime" "^7.8.7" + csstype "^3.0.2" + +dotenv@^16.0.3: + version "16.3.1" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.3.1.tgz#369034de7d7e5b120972693352a3bf112172cc3e" + integrity sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ== + +eastasianwidth@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" + integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== + +electron-to-chromium@^1.4.477: + version "1.4.490" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.490.tgz#d99286f6e915667fa18ea4554def1aa60eb4d5f1" + integrity sha512-6s7NVJz+sATdYnIwhdshx/N/9O6rvMxmhVoDSDFdj6iA45gHR8EQje70+RYsF4GeB+k0IeNSBnP7yG9ZXJFr7A== + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +emoji-regex@^9.2.2: + version "9.2.2" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" + integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== + +emojis-list@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" + integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== + +encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== + +end-of-stream@^1.1.0, end-of-stream@^1.4.1: + version "1.4.4" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + dependencies: + once "^1.4.0" + +engine.io-parser@~5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-5.2.1.tgz#9f213c77512ff1a6cc0c7a86108a7ffceb16fcfb" + integrity sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ== + +engine.io@~6.5.2: + version "6.5.2" + resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-6.5.2.tgz#769348ced9d56bd47bd83d308ec1c3375e85937c" + integrity sha512-IXsMcGpw/xRfjra46sVZVHiSWo/nJ/3g1337q9KNXtS6YRzbW5yIzTCb9DjhrBe7r3GZQR0I4+nq+4ODk5g/cA== + dependencies: + "@types/cookie" "^0.4.1" + "@types/cors" "^2.8.12" + "@types/node" ">=10.0.0" + accepts "~1.3.4" + base64id "2.0.0" + cookie "~0.4.1" + cors "~2.8.5" + debug "~4.3.1" + engine.io-parser "~5.2.1" + ws "~8.11.0" + +enhanced-resolve@^5.12.0, enhanced-resolve@^5.15.0: + version "5.15.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35" + integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg== + dependencies: + graceful-fs "^4.2.4" + tapable "^2.2.0" + +envinfo@^7.7.3: + version "7.10.0" + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.10.0.tgz#55146e3909cc5fe63c22da63fb15b05aeac35b13" + integrity sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.19.0, es-abstract@^1.20.4, es-abstract@^1.21.2: + version "1.22.1" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.1.tgz#8b4e5fc5cefd7f1660f0f8e1a52900dfbc9d9ccc" + integrity sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw== + dependencies: + array-buffer-byte-length "^1.0.0" + arraybuffer.prototype.slice "^1.0.1" + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-set-tostringtag "^2.0.1" + es-to-primitive "^1.2.1" + function.prototype.name "^1.1.5" + get-intrinsic "^1.2.1" + get-symbol-description "^1.0.0" + globalthis "^1.0.3" + gopd "^1.0.1" + has "^1.0.3" + has-property-descriptors "^1.0.0" + has-proto "^1.0.1" + has-symbols "^1.0.3" + internal-slot "^1.0.5" + is-array-buffer "^3.0.2" + is-callable "^1.2.7" + is-negative-zero "^2.0.2" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + is-string "^1.0.7" + is-typed-array "^1.1.10" + is-weakref "^1.0.2" + object-inspect "^1.12.3" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.5.0" + safe-array-concat "^1.0.0" + safe-regex-test "^1.0.0" + string.prototype.trim "^1.2.7" + string.prototype.trimend "^1.0.6" + string.prototype.trimstart "^1.0.6" + typed-array-buffer "^1.0.0" + typed-array-byte-length "^1.0.0" + typed-array-byte-offset "^1.0.0" + typed-array-length "^1.0.4" + unbox-primitive "^1.0.2" + which-typed-array "^1.1.10" + +es-module-lexer@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.3.0.tgz#6be9c9e0b4543a60cd166ff6f8b4e9dae0b0c16f" + integrity sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA== + +es-set-tostringtag@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" + integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== + dependencies: + get-intrinsic "^1.1.3" + has "^1.0.3" + has-tostringtag "^1.0.0" + +es-shim-unscopables@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" + integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== + dependencies: + has "^1.0.3" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +eslint-config-next@13.4.10: + version "13.4.10" + resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-13.4.10.tgz#59eaa37c805337972351b9920b1c28a79a14173e" + integrity sha512-+JjcM6lQmFR5Mw0ORm9o1CR29+z/uajgSfYAPEGIBxOhTHBgCMs7ysuwi72o7LkMmA8E3N7/h09pSGZxs0s85g== + dependencies: + "@next/eslint-plugin-next" "13.4.10" + "@rushstack/eslint-patch" "^1.1.3" + "@typescript-eslint/parser" "^5.42.0" + eslint-import-resolver-node "^0.3.6" + eslint-import-resolver-typescript "^3.5.2" + eslint-plugin-import "^2.26.0" + eslint-plugin-jsx-a11y "^6.5.1" + eslint-plugin-react "^7.31.7" + eslint-plugin-react-hooks "5.0.0-canary-7118f5dd7-20230705" + +eslint-import-resolver-node@^0.3.6, eslint-import-resolver-node@^0.3.7: + version "0.3.9" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz#d4eaac52b8a2e7c3cd1903eb00f7e053356118ac" + integrity sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g== + dependencies: + debug "^3.2.7" + is-core-module "^2.13.0" + resolve "^1.22.4" + +eslint-import-resolver-typescript@^3.5.2: + version "3.6.0" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.0.tgz#36f93e1eb65a635e688e16cae4bead54552e3bbd" + integrity sha512-QTHR9ddNnn35RTxlaEnx2gCxqFlF2SEN0SE2d17SqwyM7YOSI2GHWRYp5BiRkObTUNYPupC/3Fq2a0PpT+EKpg== + dependencies: + debug "^4.3.4" + enhanced-resolve "^5.12.0" + eslint-module-utils "^2.7.4" + fast-glob "^3.3.1" + get-tsconfig "^4.5.0" + is-core-module "^2.11.0" + is-glob "^4.0.3" + +eslint-module-utils@^2.7.4, eslint-module-utils@^2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz#e439fee65fc33f6bba630ff621efc38ec0375c49" + integrity sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw== + dependencies: + debug "^3.2.7" + +eslint-plugin-import@^2.26.0: + version "2.28.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.28.0.tgz#8d66d6925117b06c4018d491ae84469eb3cb1005" + integrity sha512-B8s/n+ZluN7sxj9eUf7/pRFERX0r5bnFA2dCaLHy2ZeaQEAz0k+ZZkFWRFHJAqxfxQDx6KLv9LeIki7cFdwW+Q== + dependencies: + array-includes "^3.1.6" + array.prototype.findlastindex "^1.2.2" + array.prototype.flat "^1.3.1" + array.prototype.flatmap "^1.3.1" + debug "^3.2.7" + doctrine "^2.1.0" + eslint-import-resolver-node "^0.3.7" + eslint-module-utils "^2.8.0" + has "^1.0.3" + is-core-module "^2.12.1" + is-glob "^4.0.3" + minimatch "^3.1.2" + object.fromentries "^2.0.6" + object.groupby "^1.0.0" + object.values "^1.1.6" + resolve "^1.22.3" + semver "^6.3.1" + tsconfig-paths "^3.14.2" + +eslint-plugin-jsx-a11y@^6.5.1: + version "6.7.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz#fca5e02d115f48c9a597a6894d5bcec2f7a76976" + integrity sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA== + dependencies: + "@babel/runtime" "^7.20.7" + aria-query "^5.1.3" + array-includes "^3.1.6" + array.prototype.flatmap "^1.3.1" + ast-types-flow "^0.0.7" + axe-core "^4.6.2" + axobject-query "^3.1.1" + damerau-levenshtein "^1.0.8" + emoji-regex "^9.2.2" + has "^1.0.3" + jsx-ast-utils "^3.3.3" + language-tags "=1.0.5" + minimatch "^3.1.2" + object.entries "^1.1.6" + object.fromentries "^2.0.6" + semver "^6.3.0" + +eslint-plugin-react-hooks@5.0.0-canary-7118f5dd7-20230705: + version "5.0.0-canary-7118f5dd7-20230705" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.0.0-canary-7118f5dd7-20230705.tgz#4d55c50e186f1a2b0636433d2b0b2f592ddbccfd" + integrity sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw== + +eslint-plugin-react@^7.31.7: + version "7.33.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.33.1.tgz#bc27cccf860ae45413a4a4150bf0977345c1ceab" + integrity sha512-L093k0WAMvr6VhNwReB8VgOq5s2LesZmrpPdKz/kZElQDzqS7G7+DnKoqT+w4JwuiGeAhAvHO0fvy0Eyk4ejDA== + dependencies: + array-includes "^3.1.6" + array.prototype.flatmap "^1.3.1" + array.prototype.tosorted "^1.1.1" + doctrine "^2.1.0" + estraverse "^5.3.0" + jsx-ast-utils "^2.4.1 || ^3.0.0" + minimatch "^3.1.2" + object.entries "^1.1.6" + object.fromentries "^2.0.6" + object.hasown "^1.1.2" + object.values "^1.1.6" + prop-types "^15.8.1" + resolve "^2.0.0-next.4" + semver "^6.3.1" + string.prototype.matchall "^4.0.8" + +eslint-scope@5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +eslint-scope@^7.2.2: + version "7.2.2" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" + integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== + dependencies: + esrecurse "^4.3.0" + estraverse "^5.2.0" + +eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.2: + version "3.4.2" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.2.tgz#8c2095440eca8c933bedcadf16fefa44dbe9ba5f" + integrity sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw== + +eslint@8.46.0: + version "8.46.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.46.0.tgz#a06a0ff6974e53e643acc42d1dcf2e7f797b3552" + integrity sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg== + dependencies: + "@eslint-community/eslint-utils" "^4.2.0" + "@eslint-community/regexpp" "^4.6.1" + "@eslint/eslintrc" "^2.1.1" + "@eslint/js" "^8.46.0" + "@humanwhocodes/config-array" "^0.11.10" + "@humanwhocodes/module-importer" "^1.0.1" + "@nodelib/fs.walk" "^1.2.8" + ajv "^6.12.4" + chalk "^4.0.0" + cross-spawn "^7.0.2" + debug "^4.3.2" + doctrine "^3.0.0" + escape-string-regexp "^4.0.0" + eslint-scope "^7.2.2" + eslint-visitor-keys "^3.4.2" + espree "^9.6.1" + esquery "^1.4.2" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" + find-up "^5.0.0" + glob-parent "^6.0.2" + globals "^13.19.0" + graphemer "^1.4.0" + ignore "^5.2.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + is-path-inside "^3.0.3" + js-yaml "^4.1.0" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.4.1" + lodash.merge "^4.6.2" + minimatch "^3.1.2" + natural-compare "^1.4.0" + optionator "^0.9.3" + strip-ansi "^6.0.1" + text-table "^0.2.0" + +espree@^9.6.0, espree@^9.6.1: + version "9.6.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" + integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== + dependencies: + acorn "^8.9.0" + acorn-jsx "^5.3.2" + eslint-visitor-keys "^3.4.1" + +esquery@^1.4.2: + version "1.5.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" + integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1: + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +etag@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== + +events@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" + integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== + +execa@^7.0.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-7.2.0.tgz#657e75ba984f42a70f38928cedc87d6f2d4fe4e9" + integrity sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.1" + human-signals "^4.3.0" + is-stream "^3.0.0" + merge-stream "^2.0.0" + npm-run-path "^5.1.0" + onetime "^6.0.0" + signal-exit "^3.0.7" + strip-final-newline "^3.0.0" + +expand-template@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" + integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== + +express-session@^1.17.3: + version "1.17.3" + resolved "https://registry.yarnpkg.com/express-session/-/express-session-1.17.3.tgz#14b997a15ed43e5949cb1d073725675dd2777f36" + integrity sha512-4+otWXlShYlG1Ma+2Jnn+xgKUZTMJ5QD3YvfilX3AcocOAbIkVylSWEklzALe/+Pu4qV6TYBj5GwOBFfdKqLBw== + dependencies: + cookie "0.4.2" + cookie-signature "1.0.6" + debug "2.6.9" + depd "~2.0.0" + on-headers "~1.0.2" + parseurl "~1.3.3" + safe-buffer "5.2.1" + uid-safe "~2.1.5" + +express@^4.18.1: + version "4.18.2" + resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59" + integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ== + dependencies: + accepts "~1.3.8" + array-flatten "1.1.1" + body-parser "1.20.1" + content-disposition "0.5.4" + content-type "~1.0.4" + cookie "0.5.0" + cookie-signature "1.0.6" + debug "2.6.9" + depd "2.0.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "1.2.0" + fresh "0.5.2" + http-errors "2.0.0" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "2.4.1" + parseurl "~1.3.3" + path-to-regexp "0.1.7" + proxy-addr "~2.0.7" + qs "6.11.0" + range-parser "~1.2.1" + safe-buffer "5.2.1" + send "0.18.0" + serve-static "1.15.0" + setprototypeof "1.2.0" + statuses "2.0.1" + type-is "~1.6.18" + utils-merge "1.0.1" + vary "~1.1.2" + +extend@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-fifo@^1.1.0, fast-fifo@^1.2.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/fast-fifo/-/fast-fifo-1.3.0.tgz#03e381bcbfb29932d7c3afde6e15e83e05ab4d8b" + integrity sha512-IgfweLvEpwyA4WgiQe9Nx6VV2QkML2NkvZnk1oKnIzXgXdWxuhF7zw4DvLTPZJn6PIUneiAXPF24QmoEqHTjyw== + +fast-glob@^3.2.12, fast-glob@^3.2.9, fast-glob@^3.3.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.1.tgz#784b4e897340f3dbbef17413b3f11acf03c874c4" + integrity sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fastest-levenshtein@^1.0.12: + version "1.0.16" + resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" + integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== + +fastq@^1.6.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" + integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== + dependencies: + reusify "^1.0.4" + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +file-loader@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d" + integrity sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw== + dependencies: + loader-utils "^2.0.0" + schema-utils "^3.0.0" + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +finalhandler@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" + integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "2.4.1" + parseurl "~1.3.3" + statuses "2.0.1" + unpipe "~1.0.0" + +find-root@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" + integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== + +find-up@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +flat-cache@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + dependencies: + flatted "^3.1.0" + rimraf "^3.0.2" + +flatted@^3.1.0: + version "3.2.7" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" + integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== + +follow-redirects@1.5.10: + version "1.5.10" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.5.10.tgz#7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a" + integrity sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ== + dependencies: + debug "=3.1.0" + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +foreachasync@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/foreachasync/-/foreachasync-3.0.0.tgz#5502987dc8714be3392097f32e0071c9dee07cf6" + integrity sha512-J+ler7Ta54FwwNcx6wQRDhTIbNeyDcARMkOcguEqnEdtm0jKvN3Li3PDAb2Du3ubJYEWfYL83XMROXdsXAXycw== + +formidable@^2.0.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/formidable/-/formidable-2.1.2.tgz#fa973a2bec150e4ce7cac15589d7a25fc30ebd89" + integrity sha512-CM3GuJ57US06mlpQ47YcunuUZ9jpm8Vx+P2CGt2j7HpgkKZO/DJYQ0Bobim8G6PFQmK5lOqOOdUXboU+h73A4g== + dependencies: + dezalgo "^1.0.4" + hexoid "^1.0.0" + once "^1.4.0" + qs "^6.11.0" + +forwarded@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" + integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== + +fraction.js@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950" + integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== + +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== + +fs-constants@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" + integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +function.prototype.name@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" + integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.0" + functions-have-names "^1.2.2" + +functions-have-names@^1.2.2, functions-have-names@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +gauge@^4.0.3: + version "4.0.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-4.0.4.tgz#52ff0652f2bbf607a989793d53b751bef2328dce" + integrity sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg== + dependencies: + aproba "^1.0.3 || ^2.0.0" + color-support "^1.1.3" + console-control-strings "^1.1.0" + has-unicode "^2.0.1" + signal-exit "^3.0.7" + string-width "^4.2.3" + strip-ansi "^6.0.1" + wide-align "^1.1.5" + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" + integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-proto "^1.0.1" + has-symbols "^1.0.3" + +get-stream@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +get-symbol-description@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + +get-tsconfig@^4.5.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.7.0.tgz#06ce112a1463e93196aa90320c35df5039147e34" + integrity sha512-pmjiZ7xtB8URYm74PlGJozDNyhvsVLUcpBa8DZBG3bWHwaHa9bPiRpiSfovw+fjhwONSCWKRyk+JQHEGZmMrzw== + dependencies: + resolve-pkg-maps "^1.0.0" + +github-from-package@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" + integrity sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw== + +glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-parent@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +glob-to-regexp@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" + integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== + +glob@7.1.6: + version "7.1.6" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" + integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@7.1.7: + version "7.1.7" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" + integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.1.3: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +globals@^13.19.0: + version "13.21.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.21.0.tgz#163aae12f34ef502f5153cfbdd3600f36c63c571" + integrity sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg== + dependencies: + type-fest "^0.20.2" + +globalthis@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" + integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== + dependencies: + define-properties "^1.1.3" + +globby@^11.1.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.2.9" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^3.0.0" + +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + +graceful-fs@^4.1.2, graceful-fs@^4.2.4, graceful-fs@^4.2.9: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + +graphemer@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== + +graphql-tag@^2.10.4, graphql-tag@^2.12.6: + version "2.12.6" + resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.12.6.tgz#d441a569c1d2537ef10ca3d1633b48725329b5f1" + integrity sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg== + dependencies: + tslib "^2.1.0" + +graphql@^15.3.0: + version "15.8.0" + resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.8.0.tgz#33410e96b012fa3bdb1091cc99a94769db212b38" + integrity sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw== + +graphql@^16.7.1: + version "16.7.1" + resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.7.1.tgz#11475b74a7bff2aefd4691df52a0eca0abd9b642" + integrity sha512-DRYR9tf+UGU0KOsMcKAlXeFfX89UiiIZ0dRU3mR0yJfu6OjZqUcp68NnFLnqQU5RexygFoDy1EW+ccOYcPfmHg== + +handlebars@4.7.7: + version "4.7.7" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" + integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== + dependencies: + minimist "^1.2.5" + neo-async "^2.6.0" + source-map "^0.6.1" + wordwrap "^1.0.0" + optionalDependencies: + uglify-js "^3.1.4" + +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" + integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== + +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +has-unicode@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hbs@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/hbs/-/hbs-4.2.0.tgz#10e40dcc24d5be7342df9636316896617542a32b" + integrity sha512-dQwHnrfWlTk5PvG9+a45GYpg0VpX47ryKF8dULVd6DtwOE6TEcYQXQ5QM6nyOx/h7v3bvEQbdn19EDAcfUAgZg== + dependencies: + handlebars "4.7.7" + walk "2.3.15" + +helmet@^6.0.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/helmet/-/helmet-6.2.0.tgz#c29d62014be4c70b8ef092c9c5e54c8c26b8e16e" + integrity sha512-DWlwuXLLqbrIOltR6tFQXShj/+7Cyp0gLi6uAb8qMdFh/YBBFbKSgQ6nbXmScYd8emMctuthmgIa7tUfo9Rtyg== + +hexoid@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/hexoid/-/hexoid-1.0.0.tgz#ad10c6573fb907de23d9ec63a711267d9dc9bc18" + integrity sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g== + +hoist-non-react-statics@^3.3.1, hoist-non-react-statics@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" + integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== + dependencies: + react-is "^16.7.0" + +http-errors@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" + integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== + dependencies: + depd "2.0.0" + inherits "2.0.4" + setprototypeof "1.2.0" + statuses "2.0.1" + toidentifier "1.0.1" + +http-errors@~1.6.2: + version "1.6.3" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" + integrity sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A== + dependencies: + depd "~1.1.2" + inherits "2.0.3" + setprototypeof "1.1.0" + statuses ">= 1.4.0 < 2" + +http-errors@~1.7.3: + version "1.7.3" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" + integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== + dependencies: + depd "~1.1.2" + inherits "2.0.4" + setprototypeof "1.1.1" + statuses ">= 1.5.0 < 2" + toidentifier "1.0.0" + +human-signals@^4.3.0: + version "4.3.1" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-4.3.1.tgz#ab7f811e851fca97ffbd2c1fe9a958964de321b2" + integrity sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ== + +iconv-lite@0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +ieee754@^1.1.13: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +ignore@^5.2.0: + version "5.2.4" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" + integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== + +import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +import-local@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" + integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== + dependencies: + pkg-dir "^4.2.0" + resolve-cwd "^3.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@2.0.4, inherits@^2.0.3, inherits@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +inherits@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== + +ini@~1.3.0: + version "1.3.8" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" + integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== + +internal-slot@^1.0.3, internal-slot@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" + integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== + dependencies: + get-intrinsic "^1.2.0" + has "^1.0.3" + side-channel "^1.0.4" + +interpret@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-3.1.1.tgz#5be0ceed67ca79c6c4bc5cf0d7ee843dcea110c4" + integrity sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ== + +ioredis@^5.2.3: + version "5.3.2" + resolved "https://registry.yarnpkg.com/ioredis/-/ioredis-5.3.2.tgz#9139f596f62fc9c72d873353ac5395bcf05709f7" + integrity sha512-1DKMMzlIHM02eBBVOFQ1+AolGjs6+xEcM4PDL7NqOS6szq7H9jSaEkIUH6/a5Hl241LzW6JLSiAbNvTQjUupUA== + dependencies: + "@ioredis/commands" "^1.1.1" + cluster-key-slot "^1.1.0" + debug "^4.3.4" + denque "^2.1.0" + lodash.defaults "^4.2.0" + lodash.isarguments "^3.1.0" + redis-errors "^1.2.0" + redis-parser "^3.0.0" + standard-as-callback "^2.1.0" + +ipaddr.js@1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== + +is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" + integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.0" + is-typed-array "^1.1.10" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-arrayish@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" + integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-buffer@^2.0.2: + version "2.0.5" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" + integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== + +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + +is-core-module@^2.11.0, is-core-module@^2.12.1, is-core-module@^2.13.0, is-core-module@^2.9.0: + version "2.13.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db" + integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ== + dependencies: + has "^1.0.3" + +is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-expression@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-expression/-/is-expression-4.0.0.tgz#c33155962abf21d0afd2552514d67d2ec16fd2ab" + integrity sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A== + dependencies: + acorn "^7.1.1" + object-assign "^4.1.1" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-fullwidth-code-point@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz#fae3167c729e7463f8461ce512b080a49268aa88" + integrity sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ== + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-negative-zero@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" + integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-path-inside@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== + +is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + +is-promise@^2.0.0: + version "2.2.2" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" + integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== + +is-regex@^1.0.3, is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-shared-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + dependencies: + call-bind "^1.0.2" + +is-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" + integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typed-array@^1.1.10, is-typed-array@^1.1.9: + version "1.1.12" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.12.tgz#d0bab5686ef4a76f7a73097b95470ab199c57d4a" + integrity sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg== + dependencies: + which-typed-array "^1.1.11" + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +is-what@^4.1.8: + version "4.1.15" + resolved "https://registry.yarnpkg.com/is-what/-/is-what-4.1.15.tgz#de43a81090417a425942d67b1ae86e7fae2eee0e" + integrity sha512-uKua1wfy3Yt+YqsD6mTUEa2zSi3G1oPlqTflgaPJ7z63vUGN5pxFpnQfeSLMFnJDEsdvOtkp1rUWkYjB4YfhgA== + +isarray@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== + +jest-worker@^27.4.5: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0" + integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== + dependencies: + "@types/node" "*" + merge-stream "^2.0.0" + supports-color "^8.0.0" + +jiti@^1.18.2: + version "1.19.1" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.19.1.tgz#fa99e4b76a23053e0e7cde098efe1704a14c16f1" + integrity sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg== + +js-stringify@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/js-stringify/-/js-stringify-1.0.2.tgz#1736fddfd9724f28a3682adc6230ae7e4e9679db" + integrity sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g== + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +json5@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" + integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== + dependencies: + minimist "^1.2.0" + +json5@^2.1.2: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + +jstransformer@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/jstransformer/-/jstransformer-1.0.0.tgz#ed8bf0921e2f3f1ed4d5c1a44f68709ed24722c3" + integrity sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A== + dependencies: + is-promise "^2.0.0" + promise "^7.0.1" + +"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.3: + version "3.3.5" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz#4766bd05a8e2a11af222becd19e15575e52a853a" + integrity sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ== + dependencies: + array-includes "^3.1.6" + array.prototype.flat "^1.3.1" + object.assign "^4.1.4" + object.values "^1.1.6" + +jubilant-carnival@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/jubilant-carnival/-/jubilant-carnival-0.6.0.tgz#1d8b8b43ea6320ac3bd470044111750a56136ce8" + integrity sha512-tpu+RhiY/hP/mwSsi2AKxNTNO3jR/pBypEYLtE34SWmMc3VEb0bvmNFdCeCCuFu9NnDY97pCNScm+3lb1bQIcQ== + +kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +language-subtag-registry@~0.3.2: + version "0.3.22" + resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d" + integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w== + +language-tags@=1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" + integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== + dependencies: + language-subtag-registry "~0.3.2" + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +lilconfig@2.1.0, lilconfig@^2.0.5, lilconfig@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" + integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +lint-staged@^13.2.3: + version "13.2.3" + resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-13.2.3.tgz#f899aad6c093473467e9c9e316e3c2d8a28f87a7" + integrity sha512-zVVEXLuQIhr1Y7R7YAWx4TZLdvuzk7DnmrsTNL0fax6Z3jrpFcas+vKbzxhhvp6TA55m1SQuWkpzI1qbfDZbAg== + dependencies: + chalk "5.2.0" + cli-truncate "^3.1.0" + commander "^10.0.0" + debug "^4.3.4" + execa "^7.0.0" + lilconfig "2.1.0" + listr2 "^5.0.7" + micromatch "^4.0.5" + normalize-path "^3.0.0" + object-inspect "^1.12.3" + pidtree "^0.6.0" + string-argv "^0.3.1" + yaml "^2.2.2" + +listr2@^5.0.7: + version "5.0.8" + resolved "https://registry.yarnpkg.com/listr2/-/listr2-5.0.8.tgz#a9379ffeb4bd83a68931a65fb223a11510d6ba23" + integrity sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA== + dependencies: + cli-truncate "^2.1.0" + colorette "^2.0.19" + log-update "^4.0.0" + p-map "^4.0.0" + rfdc "^1.3.0" + rxjs "^7.8.0" + through "^2.3.8" + wrap-ansi "^7.0.0" + +loader-runner@^4.2.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1" + integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== + +loader-utils@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c" + integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^2.1.2" + +loadware@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/loadware/-/loadware-2.0.0.tgz#57a72b6f18ee2baff8d1ad1fa05a5d16e5afd42c" + integrity sha512-PD5Yn9VFr7RTJLvIx/CBRALvE+PATUDoEedCcik49Te30LK4qU39DZPV3oxhhF9ql9NKg3kwL+kyf0NqnX9e/g== + dependencies: + app-module-path "^2.1.0" + +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash.defaults@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" + integrity sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ== + +lodash.isarguments@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" + integrity sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg== + +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +log-update@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1" + integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== + dependencies: + ansi-escapes "^4.3.0" + cli-cursor "^3.1.0" + slice-ansi "^4.0.0" + wrap-ansi "^6.2.0" + +logots-react@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/logots-react/-/logots-react-0.1.6.tgz#4d3632c1732b87780b1e25988ccbb0ae661ec966" + integrity sha512-6mSwtEBWlE5Zy8OFS4SKiNVYzdrn4fKP5HqeixdOcS+w6V1ndJzMjEwxInk+5WfbcjwxTNz2GF9gL9HzkMF+Cg== + +loose-envify@^1.1.0, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +method-override@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/method-override/-/method-override-3.0.0.tgz#6ab0d5d574e3208f15b0c9cf45ab52000468d7a2" + integrity sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA== + dependencies: + debug "3.1.0" + methods "~1.1.2" + parseurl "~1.3.2" + vary "~1.1.2" + +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== + +micromatch@^4.0.4, micromatch@^4.0.5: + version "4.0.5" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + dependencies: + braces "^3.0.2" + picomatch "^2.3.1" + +mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@^2.1.27, mime-types@~2.1.17, mime-types@~2.1.24, mime-types@~2.1.34: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mime@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +mimic-fn@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" + integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== + +mimic-response@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" + integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== + +minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5, minimist@^1.2.6: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + +mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" + integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + +ms@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" + integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@2.1.3, ms@^2.1.1: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +mz@^2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" + integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== + dependencies: + any-promise "^1.0.0" + object-assign "^4.0.1" + thenify-all "^1.0.0" + +nanoid@^3.3.4, nanoid@^3.3.6: + version "3.3.6" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" + integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== + +napi-build-utils@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806" + integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +negotiator@0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== + +neo-async@^2.6.0, neo-async@^2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== + +next@13.4.12: + version "13.4.12" + resolved "https://registry.yarnpkg.com/next/-/next-13.4.12.tgz#809b21ea0aabbe88ced53252c88c4a5bd5af95df" + integrity sha512-eHfnru9x6NRmTMcjQp6Nz0J4XH9OubmzOa7CkWL+AUrUxpibub3vWwttjduu9No16dug1kq04hiUUpo7J3m3Xw== + dependencies: + "@next/env" "13.4.12" + "@swc/helpers" "0.5.1" + busboy "1.6.0" + caniuse-lite "^1.0.30001406" + postcss "8.4.14" + styled-jsx "5.1.1" + watchpack "2.4.0" + zod "3.21.4" + optionalDependencies: + "@next/swc-darwin-arm64" "13.4.12" + "@next/swc-darwin-x64" "13.4.12" + "@next/swc-linux-arm64-gnu" "13.4.12" + "@next/swc-linux-arm64-musl" "13.4.12" + "@next/swc-linux-x64-gnu" "13.4.12" + "@next/swc-linux-x64-musl" "13.4.12" + "@next/swc-win32-arm64-msvc" "13.4.12" + "@next/swc-win32-ia32-msvc" "13.4.12" + "@next/swc-win32-x64-msvc" "13.4.12" + +node-abi@^3.3.0: + version "3.45.0" + resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.45.0.tgz#f568f163a3bfca5aacfce1fbeee1fa2cc98441f5" + integrity sha512-iwXuFrMAcFVi/ZoZiqq8BzAdsLw9kxDfTC0HMyjXfSL/6CSDAGD5UmR7azrAgWV1zKYq7dUUMj4owusBWKLsiQ== + dependencies: + semver "^7.3.5" + +node-addon-api@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-6.1.0.tgz#ac8470034e58e67d0c6f1204a18ae6995d9c0d76" + integrity sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA== + +node-releases@^2.0.13: + version "2.0.13" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d" + integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== + +normalize.css@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/normalize.css/-/normalize.css-8.0.1.tgz#9b98a208738b9cc2634caacbc42d131c97487bf3" + integrity sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg== + +npm-run-path@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.1.0.tgz#bc62f7f3f6952d9894bd08944ba011a6ee7b7e00" + integrity sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q== + dependencies: + path-key "^4.0.0" + +npmlog@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-6.0.2.tgz#c8166017a42f2dea92d6453168dd865186a70830" + integrity sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg== + dependencies: + are-we-there-yet "^3.0.0" + console-control-strings "^1.1.0" + gauge "^4.0.3" + set-blocking "^2.0.0" + +object-assign@^4, object-assign@^4.0.1, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-hash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" + integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== + +object-inspect@^1.12.3, object-inspect@^1.9.0: + version "1.12.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" + integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +object.entries@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.6.tgz#9737d0e5b8291edd340a3e3264bb8a3b00d5fa23" + integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +object.fromentries@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.6.tgz#cdb04da08c539cffa912dcd368b886e0904bfa73" + integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +object.groupby@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.0.tgz#cb29259cf90f37e7bac6437686c1ea8c916d12a9" + integrity sha512-70MWG6NfRH9GnbZOikuhPPYzpUpof9iW2J9E4dW7FXTqPNb6rllE6u39SKwwiNh8lCwX3DDb5OgcKGiEBrTTyw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.21.2" + get-intrinsic "^1.2.1" + +object.hasown@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.2.tgz#f919e21fad4eb38a57bc6345b3afd496515c3f92" + integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw== + dependencies: + define-properties "^1.1.4" + es-abstract "^1.20.4" + +object.values@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d" + integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +on-finished@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" + integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== + dependencies: + ee-first "1.1.1" + +on-headers@~1.0.1, on-headers@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== + +once@^1.3.0, once@^1.3.1, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^5.1.0: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +onetime@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4" + integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== + dependencies: + mimic-fn "^4.0.0" + +only@^0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/only/-/only-0.0.2.tgz#2afde84d03e50b9a8edc444e30610a70295edfb4" + integrity sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ== + +optimism@^0.17.4: + version "0.17.5" + resolved "https://registry.yarnpkg.com/optimism/-/optimism-0.17.5.tgz#a4c78b3ad12c58623abedbebb4f2f2c19b8e8816" + integrity sha512-TEcp8ZwK1RczmvMnvktxHSF2tKgMWjJ71xEFGX5ApLh67VsMSTy1ZUlipJw8W+KaqgOmQ+4pqwkeivY89j+4Vw== + dependencies: + "@wry/context" "^0.7.0" + "@wry/trie" "^0.4.3" + tslib "^2.3.0" + +optionator@^0.9.3: + version "0.9.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" + integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== + dependencies: + "@aashutoshrathi/word-wrap" "^1.2.3" + deep-is "^0.1.3" + fast-levenshtein "^2.0.6" + levn "^0.4.1" + prelude-ls "^1.2.1" + type-check "^0.4.0" + +p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +p-map@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" + integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== + dependencies: + aggregate-error "^3.0.0" + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +pako@^1.0.10: + version "1.0.11" + resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" + integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-json@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + +parseurl@~1.3.2, parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-key@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" + integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== + +path-to-regexp@^6.2.1: + version "6.2.1" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.2.1.tgz#d54934d6798eb9e5ef14e7af7962c945906918e5" + integrity sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw== + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pidtree@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz#90ad7b6d42d5841e69e0a2419ef38f8883aa057c" + integrity sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g== + +pify@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== + +pirates@^4.0.1: + version "4.0.6" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" + integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== + +pkg-dir@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + dependencies: + find-up "^4.0.0" + +postcss-import@^15.1.0: + version "15.1.0" + resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70" + integrity sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew== + dependencies: + postcss-value-parser "^4.0.0" + read-cache "^1.0.0" + resolve "^1.1.7" + +postcss-js@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.1.tgz#61598186f3703bab052f1c4f7d805f3991bee9d2" + integrity sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw== + dependencies: + camelcase-css "^2.0.1" + +postcss-load-config@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.1.tgz#152383f481c2758274404e4962743191d73875bd" + integrity sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA== + dependencies: + lilconfig "^2.0.5" + yaml "^2.1.1" + +postcss-nested@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.0.1.tgz#f83dc9846ca16d2f4fa864f16e9d9f7d0961662c" + integrity sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ== + dependencies: + postcss-selector-parser "^6.0.11" + +postcss-selector-parser@^6.0.11: + version "6.0.13" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b" + integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + +postcss@8.4.14: + version "8.4.14" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf" + integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== + dependencies: + nanoid "^3.3.4" + picocolors "^1.0.0" + source-map-js "^1.0.2" + +postcss@8.4.27, postcss@^8.4.23: + version "8.4.27" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.27.tgz#234d7e4b72e34ba5a92c29636734349e0d9c3057" + integrity sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ== + dependencies: + nanoid "^3.3.6" + picocolors "^1.0.0" + source-map-js "^1.0.2" + +prebuild-install@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.1.tgz#de97d5b34a70a0c81334fd24641f2a1702352e45" + integrity sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw== + dependencies: + detect-libc "^2.0.0" + expand-template "^2.0.3" + github-from-package "0.0.0" + minimist "^1.2.3" + mkdirp-classic "^0.5.3" + napi-build-utils "^1.0.1" + node-abi "^3.3.0" + pump "^3.0.0" + rc "^1.2.7" + simple-get "^4.0.0" + tar-fs "^2.0.0" + tunnel-agent "^0.6.0" + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +prettier-plugin-tailwindcss@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.4.1.tgz#f7ed664199540978b2cbd037bac3a337d6689e86" + integrity sha512-hwn2EiJmv8M+AW4YDkbjJ6HlZCTzLyz1QlySn9sMuKV/Px0fjwldlB7tol8GzdgqtkdPtzT3iJ4UzdnYXP25Ag== + +prettier@^2.8.8: + version "2.8.8" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" + integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== + +promise@^7.0.1: + version "7.3.1" + resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" + integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== + dependencies: + asap "~2.0.3" + +prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1: + version "15.8.1" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" + integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.13.1" + +proxy-addr@~2.0.7: + version "2.0.7" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" + integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== + dependencies: + forwarded "0.2.0" + ipaddr.js "1.9.1" + +pug-attrs@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pug-attrs/-/pug-attrs-3.0.0.tgz#b10451e0348165e31fad1cc23ebddd9dc7347c41" + integrity sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA== + dependencies: + constantinople "^4.0.1" + js-stringify "^1.0.2" + pug-runtime "^3.0.0" + +pug-code-gen@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/pug-code-gen/-/pug-code-gen-3.0.2.tgz#ad190f4943133bf186b60b80de483100e132e2ce" + integrity sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg== + dependencies: + constantinople "^4.0.1" + doctypes "^1.1.0" + js-stringify "^1.0.2" + pug-attrs "^3.0.0" + pug-error "^2.0.0" + pug-runtime "^3.0.0" + void-elements "^3.1.0" + with "^7.0.0" + +pug-error@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pug-error/-/pug-error-2.0.0.tgz#5c62173cb09c34de2a2ce04f17b8adfec74d8ca5" + integrity sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ== + +pug-filters@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/pug-filters/-/pug-filters-4.0.0.tgz#d3e49af5ba8472e9b7a66d980e707ce9d2cc9b5e" + integrity sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A== + dependencies: + constantinople "^4.0.1" + jstransformer "1.0.0" + pug-error "^2.0.0" + pug-walk "^2.0.0" + resolve "^1.15.1" + +pug-lexer@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/pug-lexer/-/pug-lexer-5.0.1.tgz#ae44628c5bef9b190b665683b288ca9024b8b0d5" + integrity sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w== + dependencies: + character-parser "^2.2.0" + is-expression "^4.0.0" + pug-error "^2.0.0" + +pug-linker@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/pug-linker/-/pug-linker-4.0.0.tgz#12cbc0594fc5a3e06b9fc59e6f93c146962a7708" + integrity sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw== + dependencies: + pug-error "^2.0.0" + pug-walk "^2.0.0" + +pug-load@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pug-load/-/pug-load-3.0.0.tgz#9fd9cda52202b08adb11d25681fb9f34bd41b662" + integrity sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ== + dependencies: + object-assign "^4.1.1" + pug-walk "^2.0.0" + +pug-parser@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/pug-parser/-/pug-parser-6.0.0.tgz#a8fdc035863a95b2c1dc5ebf4ecf80b4e76a1260" + integrity sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw== + dependencies: + pug-error "^2.0.0" + token-stream "1.0.0" + +pug-runtime@^3.0.0, pug-runtime@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/pug-runtime/-/pug-runtime-3.0.1.tgz#f636976204723f35a8c5f6fad6acda2a191b83d7" + integrity sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg== + +pug-strip-comments@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pug-strip-comments/-/pug-strip-comments-2.0.0.tgz#f94b07fd6b495523330f490a7f554b4ff876303e" + integrity sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ== + dependencies: + pug-error "^2.0.0" + +pug-walk@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pug-walk/-/pug-walk-2.0.0.tgz#417aabc29232bb4499b5b5069a2b2d2a24d5f5fe" + integrity sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ== + +pug@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/pug/-/pug-3.0.2.tgz#f35c7107343454e43bc27ae0ff76c731b78ea535" + integrity sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw== + dependencies: + pug-code-gen "^3.0.2" + pug-filters "^4.0.0" + pug-lexer "^5.0.1" + pug-linker "^4.0.0" + pug-load "^3.0.0" + pug-parser "^6.0.0" + pug-runtime "^3.0.1" + pug-strip-comments "^2.0.0" + +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +punycode@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" + integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== + +qs@6.11.0: + version "6.11.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" + integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== + dependencies: + side-channel "^1.0.4" + +qs@^6.11.0: + version "6.11.2" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" + integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== + dependencies: + side-channel "^1.0.4" + +queryz@^0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/queryz/-/queryz-0.0.3.tgz#220d472d45351d2f0e838c11dfc72d4ea1bde633" + integrity sha512-YLLclxn55qWsd2JOhrvB4RooiB6o3W55Igsd5/s033IJ0wjKF7OWm7kh8R8tTJC1BND3Pcg5lYR2C/I/sH258A== + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +queue-tick@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/queue-tick/-/queue-tick-1.0.1.tgz#f6f07ac82c1fd60f82e098b417a80e52f1f4c142" + integrity sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag== + +random-bytes@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/random-bytes/-/random-bytes-1.0.0.tgz#4f68a1dc0ae58bd3fb95848c30324db75d64360b" + integrity sha512-iv7LhNVO047HzYR3InF6pUcUsPQiHTM1Qal51DcGSuZFBil1aBBWG5eHPNek7bvILMaYJ/8RU1e8w1AMdHmLQQ== + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +range-parser@~1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + +raw-body@2.5.1: + version "2.5.1" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" + integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== + dependencies: + bytes "3.1.2" + http-errors "2.0.0" + iconv-lite "0.4.24" + unpipe "1.0.0" + +raw-body@2.5.2: + version "2.5.2" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.2.tgz#99febd83b90e08975087e8f1f9419a149366b68a" + integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA== + dependencies: + bytes "3.1.2" + http-errors "2.0.0" + iconv-lite "0.4.24" + unpipe "1.0.0" + +rc@^1.2.7: + version "1.2.8" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== + dependencies: + deep-extend "^0.6.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +react-dom@18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" + integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== + dependencies: + loose-envify "^1.1.0" + scheduler "^0.23.0" + +react-is@^16.13.1, react-is@^16.7.0: + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + +react-is@^18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" + integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== + +react-transition-group@^4.4.5: + version "4.4.5" + resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.5.tgz#e53d4e3f3344da8521489fbef8f2581d42becdd1" + integrity sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g== + dependencies: + "@babel/runtime" "^7.5.5" + dom-helpers "^5.0.1" + loose-envify "^1.4.0" + prop-types "^15.6.2" + +react@18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" + integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== + dependencies: + loose-envify "^1.1.0" + +read-cache@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" + integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== + dependencies: + pify "^2.3.0" + +readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +rechoir@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.8.0.tgz#49f866e0d32146142da3ad8f0eff352b3215ff22" + integrity sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ== + dependencies: + resolve "^1.20.0" + +redis-errors@^1.0.0, redis-errors@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/redis-errors/-/redis-errors-1.2.0.tgz#eb62d2adb15e4eaf4610c04afe1529384250abad" + integrity sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w== + +redis-parser@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/redis-parser/-/redis-parser-3.0.0.tgz#b66d828cdcafe6b4b8a428a7def4c6bcac31c8b4" + integrity sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A== + dependencies: + redis-errors "^1.0.0" + +regenerator-runtime@^0.14.0: + version "0.14.0" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz#5e19d68eb12d486f797e15a3c6a918f7cec5eb45" + integrity sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA== + +regexp.prototype.flags@^1.4.3, regexp.prototype.flags@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb" + integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + functions-have-names "^1.2.3" + +resolve-cwd@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" + integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== + dependencies: + resolve-from "^5.0.0" + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + +resolve-pkg-maps@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f" + integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw== + +resolve@^1.1.7, resolve@^1.15.1, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.2, resolve@^1.22.3, resolve@^1.22.4: + version "1.22.4" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.4.tgz#1dc40df46554cdaf8948a486a10f6ba1e2026c34" + integrity sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg== + dependencies: + is-core-module "^2.13.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +resolve@^2.0.0-next.4: + version "2.0.0-next.4" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" + integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +response-iterator@^0.2.6: + version "0.2.6" + resolved "https://registry.yarnpkg.com/response-iterator/-/response-iterator-0.2.6.tgz#249005fb14d2e4eeb478a3f735a28fd8b4c9f3da" + integrity sha512-pVzEEzrsg23Sh053rmDUvLSkGXluZio0qu8VT6ukrYuvtjVfCbDZH9d6PGXb8HZfzdNZt8feXv/jvUzlhRgLnw== + +response-time@^2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/response-time/-/response-time-2.3.2.tgz#ffa71bab952d62f7c1d49b7434355fbc68dffc5a" + integrity sha512-MUIDaDQf+CVqflfTdQ5yam+aYCkXj1PY8fjlPDQ6ppxJlmgZb864pHtA750mayywNg8tx4rS7qH9JXd/OF+3gw== + dependencies: + depd "~1.1.0" + on-headers "~1.0.1" + +restore-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== + dependencies: + onetime "^5.1.0" + signal-exit "^3.0.2" + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rfdc@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b" + integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA== + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +rndm@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/rndm/-/rndm-1.2.0.tgz#f33fe9cfb52bbfd520aa18323bc65db110a1b76c" + integrity sha512-fJhQQI5tLrQvYIYFpOnFinzv9dwmR7hRnUz1XqP3OJ1jIweTNOd6aTO4jwQSgcBSFUB+/KHJxuGneime+FdzOw== + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +rxjs@^7.8.0: + version "7.8.1" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" + integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== + dependencies: + tslib "^2.1.0" + +safe-array-concat@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.0.0.tgz#2064223cba3c08d2ee05148eedbc563cd6d84060" + integrity sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.0" + has-symbols "^1.0.3" + isarray "^2.0.5" + +safe-buffer@5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" + integrity sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg== + +safe-buffer@5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-buffer@5.2.1, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +safe-regex-test@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" + integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.3" + is-regex "^1.1.4" + +"safer-buffer@>= 2.1.2 < 3": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +scheduler@^0.23.0: + version "0.23.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" + integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== + dependencies: + loose-envify "^1.1.0" + +schema-utils@^3.0.0, schema-utils@^3.1.1, schema-utils@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe" + integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== + dependencies: + "@types/json-schema" "^7.0.8" + ajv "^6.12.5" + ajv-keywords "^3.5.2" + +semver@^6.3.0, semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + +semver@^7.3.5, semver@^7.3.7, semver@^7.5.4: + version "7.5.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" + integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== + dependencies: + lru-cache "^6.0.0" + +send@0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" + integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== + dependencies: + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "2.0.0" + mime "1.6.0" + ms "2.1.3" + on-finished "2.4.1" + range-parser "~1.2.1" + statuses "2.0.1" + +serialize-javascript@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz#b206efb27c3da0b0ab6b52f48d170b7996458e5c" + integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w== + dependencies: + randombytes "^2.1.0" + +serve-favicon@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/serve-favicon/-/serve-favicon-2.5.0.tgz#935d240cdfe0f5805307fdfe967d88942a2cbcf0" + integrity sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA== + dependencies: + etag "~1.8.1" + fresh "0.5.2" + ms "2.1.1" + parseurl "~1.3.2" + safe-buffer "5.1.1" + +serve-index@^1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" + integrity sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw== + dependencies: + accepts "~1.3.4" + batch "0.6.1" + debug "2.6.9" + escape-html "~1.0.3" + http-errors "~1.6.2" + mime-types "~2.1.17" + parseurl "~1.3.2" + +serve-static@1.15.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" + integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.18.0" + +server@^1.0.38: + version "1.0.38" + resolved "https://registry.yarnpkg.com/server/-/server-1.0.38.tgz#055232a3bcc69334099804b45f7a69e1284ee4da" + integrity sha512-RMpuql7HedxgfjqnQqUs8kt1LgkZRRyQaS2KOpsjRwo5bycxtePlwn1Qo/+/KEc33CFhvZflkLKZKdWU/lIWXw== + dependencies: + body-parser "^1.20.1" + compression "^1.7.4" + connect-redis "^6.1.3" + cookie-parser "^1.4.6" + csurf "^1.11.0" + dotenv "^16.0.3" + express "^4.18.1" + express-session "^1.17.3" + extend "^3.0.2" + hbs "^4.2.0" + helmet "^6.0.0" + ioredis "^5.2.3" + loadware "^2.0.0" + method-override "^3.0.0" + mz "^2.7.0" + npmlog "^6.0.2" + path-to-regexp "^6.2.1" + pug "^3.0.2" + response-time "^2.3.2" + serve-favicon "^2.5.0" + serve-index "^1.9.1" + socket.io "^4.5.2" + upload-files-express "^0.4.0" + +set-blocking@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== + +setprototypeof@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" + integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== + +setprototypeof@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" + integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== + +setprototypeof@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" + integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== + +shallow-clone@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== + dependencies: + kind-of "^6.0.2" + +sharp@^0.32.4: + version "0.32.4" + resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.32.4.tgz#0354653b7924f2520b2264ac9bcd10a58bf411b6" + integrity sha512-exUnZewqVZC6UXqXuQ8fyJJv0M968feBi04jb9GcUHrWtkRoAKnbJt8IfwT4NJs7FskArbJ14JAFGVuooszoGg== + dependencies: + color "^4.2.3" + detect-libc "^2.0.2" + node-addon-api "^6.1.0" + prebuild-install "^7.1.1" + semver "^7.5.4" + simple-get "^4.0.1" + tar-fs "^3.0.4" + tunnel-agent "^0.6.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.2, signal-exit@^3.0.7: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +simple-concat@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" + integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== + +simple-get@^4.0.0, simple-get@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz#4a39db549287c979d352112fa03fd99fd6bc3543" + integrity sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA== + dependencies: + decompress-response "^6.0.0" + once "^1.3.1" + simple-concat "^1.0.0" + +simple-swizzle@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" + integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg== + dependencies: + is-arrayish "^0.3.1" + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +slice-ansi@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" + integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +slice-ansi@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-5.0.0.tgz#b73063c57aa96f9cd881654b15294d95d285c42a" + integrity sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ== + dependencies: + ansi-styles "^6.0.0" + is-fullwidth-code-point "^4.0.0" + +socket.io-adapter@~2.5.2: + version "2.5.2" + resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-2.5.2.tgz#5de9477c9182fdc171cd8c8364b9a8894ec75d12" + integrity sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA== + dependencies: + ws "~8.11.0" + +socket.io-parser@~4.2.4: + version "4.2.4" + resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-4.2.4.tgz#c806966cf7270601e47469ddeec30fbdfda44c83" + integrity sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew== + dependencies: + "@socket.io/component-emitter" "~3.1.0" + debug "~4.3.1" + +socket.io@^4.5.2: + version "4.7.2" + resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-4.7.2.tgz#22557d76c3f3ca48f82e73d68b7add36a22df002" + integrity sha512-bvKVS29/I5fl2FGLNHuXlQaUH/BlzX1IN6S+NKLNZpBsPZIDH+90eQmCs2Railn4YUiww4SzUedJ6+uzwFnKLw== + dependencies: + accepts "~1.3.4" + base64id "~2.0.0" + cors "~2.8.5" + debug "~4.3.2" + engine.io "~6.5.2" + socket.io-adapter "~2.5.2" + socket.io-parser "~4.2.4" + +source-map-js@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" + integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== + +source-map-support@~0.5.20: + version "0.5.21" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.5.7: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== + +source-map@^0.6.0, source-map@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +standard-as-callback@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/standard-as-callback/-/standard-as-callback-2.1.0.tgz#8953fc05359868a77b5b9739a665c5977bb7df45" + integrity sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A== + +statuses@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" + integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== + +"statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2": + version "1.5.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== + +streamsearch@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764" + integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== + +streamx@^2.15.0: + version "2.15.1" + resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.15.1.tgz#396ad286d8bc3eeef8f5cea3f029e81237c024c6" + integrity sha512-fQMzy2O/Q47rgwErk/eGeLu/roaFWV0jVsogDmrszM9uIw8L5OA+t+V93MgYlufNptfjmYR1tOMWhei/Eh7TQA== + dependencies: + fast-fifo "^1.1.0" + queue-tick "^1.0.1" + +string-argv@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.2.tgz#2b6d0ef24b656274d957d54e0a4bbf6153dc02b6" + integrity sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q== + +"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string-width@^5.0.0: + version "5.1.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" + integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== + dependencies: + eastasianwidth "^0.2.0" + emoji-regex "^9.2.2" + strip-ansi "^7.0.1" + +string.prototype.matchall@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3" + integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + get-intrinsic "^1.1.3" + has-symbols "^1.0.3" + internal-slot "^1.0.3" + regexp.prototype.flags "^1.4.3" + side-channel "^1.0.4" + +string.prototype.trim@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533" + integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +string.prototype.trimend@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" + integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +string.prototype.trimstart@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" + integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-ansi@^7.0.1: + version "7.1.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" + integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== + dependencies: + ansi-regex "^6.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +strip-final-newline@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" + integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== + +strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== + +styled-jsx@5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.1.1.tgz#839a1c3aaacc4e735fed0781b8619ea5d0009d1f" + integrity sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw== + dependencies: + client-only "0.0.1" + +stylis@4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.2.0.tgz#79daee0208964c8fe695a42fcffcac633a211a51" + integrity sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw== + +sucrase@^3.32.0: + version "3.34.0" + resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.34.0.tgz#1e0e2d8fcf07f8b9c3569067d92fbd8690fb576f" + integrity sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw== + dependencies: + "@jridgewell/gen-mapping" "^0.3.2" + commander "^4.0.0" + glob "7.1.6" + lines-and-columns "^1.1.6" + mz "^2.7.0" + pirates "^4.0.1" + ts-interface-checker "^0.1.9" + +superjson@^1.12.2: + version "1.13.1" + resolved "https://registry.yarnpkg.com/superjson/-/superjson-1.13.1.tgz#a0b6ab5d22876f6207fcb9d08b0cb2acad8ee5cd" + integrity sha512-AVH2eknm9DEd3qvxM4Sq+LTCkSXE2ssfh1t11MHMXyYXFQyQ1HLgVvV+guLTsaQnJU3gnaVo34TohHPulY/wLg== + dependencies: + copy-anything "^3.0.2" + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-color@^8.0.0: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +symbol-observable@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-4.0.0.tgz#5b425f192279e87f2f9b937ac8540d1984b39205" + integrity sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ== + +tailwindcss@3.3.3: + version "3.3.3" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.3.3.tgz#90da807393a2859189e48e9e7000e6880a736daf" + integrity sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w== + dependencies: + "@alloc/quick-lru" "^5.2.0" + arg "^5.0.2" + chokidar "^3.5.3" + didyoumean "^1.2.2" + dlv "^1.1.3" + fast-glob "^3.2.12" + glob-parent "^6.0.2" + is-glob "^4.0.3" + jiti "^1.18.2" + lilconfig "^2.1.0" + micromatch "^4.0.5" + normalize-path "^3.0.0" + object-hash "^3.0.0" + picocolors "^1.0.0" + postcss "^8.4.23" + postcss-import "^15.1.0" + postcss-js "^4.0.1" + postcss-load-config "^4.0.1" + postcss-nested "^6.0.1" + postcss-selector-parser "^6.0.11" + resolve "^1.22.2" + sucrase "^3.32.0" + +tapable@^2.1.1, tapable@^2.2.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" + integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== + +tar-fs@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" + integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== + dependencies: + chownr "^1.1.1" + mkdirp-classic "^0.5.2" + pump "^3.0.0" + tar-stream "^2.1.4" + +tar-fs@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-3.0.4.tgz#a21dc60a2d5d9f55e0089ccd78124f1d3771dbbf" + integrity sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w== + dependencies: + mkdirp-classic "^0.5.2" + pump "^3.0.0" + tar-stream "^3.1.5" + +tar-stream@^2.1.4: + version "2.2.0" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" + integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== + dependencies: + bl "^4.0.3" + end-of-stream "^1.4.1" + fs-constants "^1.0.0" + inherits "^2.0.3" + readable-stream "^3.1.1" + +tar-stream@^3.1.5: + version "3.1.6" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-3.1.6.tgz#6520607b55a06f4a2e2e04db360ba7d338cc5bab" + integrity sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg== + dependencies: + b4a "^1.6.4" + fast-fifo "^1.2.0" + streamx "^2.15.0" + +terser-webpack-plugin@^5.3.7: + version "5.3.9" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz#832536999c51b46d468067f9e37662a3b96adfe1" + integrity sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA== + dependencies: + "@jridgewell/trace-mapping" "^0.3.17" + jest-worker "^27.4.5" + schema-utils "^3.1.1" + serialize-javascript "^6.0.1" + terser "^5.16.8" + +terser@^5.16.8: + version "5.19.2" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.19.2.tgz#bdb8017a9a4a8de4663a7983f45c506534f9234e" + integrity sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA== + dependencies: + "@jridgewell/source-map" "^0.3.3" + acorn "^8.8.2" + commander "^2.20.0" + source-map-support "~0.5.20" + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +thenify-all@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" + integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== + dependencies: + thenify ">= 3.1.0 < 4" + +"thenify@>= 3.1.0 < 4": + version "3.3.1" + resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" + integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== + dependencies: + any-promise "^1.0.0" + +through@^2.3.8: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +toidentifier@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" + integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== + +toidentifier@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" + integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== + +token-stream@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/token-stream/-/token-stream-1.0.0.tgz#cc200eab2613f4166d27ff9afc7ca56d49df6eb4" + integrity sha512-VSsyNPPW74RpHwR8Fc21uubwHY7wMDeJLys2IX5zJNih+OnAnaifKHo+1LHT7DAdloQ7apeaaWg8l7qnf/TnEg== + +ts-bedkit@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/ts-bedkit/-/ts-bedkit-0.1.0.tgz#4a4fcf982535cad4845e79ac407e3186425f816b" + integrity sha512-df53kSlAoxN3MqJaP7qAv8ITp6SLq5FoiWE+FuwYhbkTjzIciLeEDun3ymlp886v1N6WxCtyFQ+5APwbX43UGw== + dependencies: + binary-search "^1.3.6" + +ts-interface-checker@^0.1.9: + version "0.1.13" + resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" + integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== + +ts-invariant@^0.10.3: + version "0.10.3" + resolved "https://registry.yarnpkg.com/ts-invariant/-/ts-invariant-0.10.3.tgz#3e048ff96e91459ffca01304dbc7f61c1f642f6c" + integrity sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ== + dependencies: + tslib "^2.1.0" + +tsconfig-paths@^3.14.2: + version "3.14.2" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088" + integrity sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g== + dependencies: + "@types/json5" "^0.0.29" + json5 "^1.0.2" + minimist "^1.2.6" + strip-bom "^3.0.0" + +tslib@^1.8.1: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^2.1.0, tslib@^2.3.0, tslib@^2.4.0, tslib@^2.5.0: + version "2.6.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.1.tgz#fd8c9a0ff42590b25703c0acb3de3d3f4ede0410" + integrity sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig== + +tsscmp@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/tsscmp/-/tsscmp-1.0.6.tgz#85b99583ac3589ec4bfef825b5000aa911d605eb" + integrity sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA== + +tsutils@^3.21.0: + version "3.21.0" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== + dependencies: + tslib "^1.8.1" + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== + dependencies: + safe-buffer "^5.0.1" + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + +type-is@~1.6.18: + version "1.6.18" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.24" + +typed-array-buffer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz#18de3e7ed7974b0a729d3feecb94338d1472cd60" + integrity sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.1" + is-typed-array "^1.1.10" + +typed-array-byte-length@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz#d787a24a995711611fb2b87a4052799517b230d0" + integrity sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA== + dependencies: + call-bind "^1.0.2" + for-each "^0.3.3" + has-proto "^1.0.1" + is-typed-array "^1.1.10" + +typed-array-byte-offset@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz#cbbe89b51fdef9cd6aaf07ad4707340abbc4ea0b" + integrity sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + has-proto "^1.0.1" + is-typed-array "^1.1.10" + +typed-array-length@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" + integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== + dependencies: + call-bind "^1.0.2" + for-each "^0.3.3" + is-typed-array "^1.1.9" + +typescript@5.1.6: + version "5.1.6" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.6.tgz#02f8ac202b6dad2c0dd5e0913745b47a37998274" + integrity sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA== + +uglify-js@^3.1.4: + version "3.17.4" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c" + integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g== + +uid-safe@2.1.5, uid-safe@~2.1.5: + version "2.1.5" + resolved "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.1.5.tgz#2b3d5c7240e8fc2e58f8aa269e5ee49c0857bd3a" + integrity sha512-KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA== + dependencies: + random-bytes "~1.0.0" + +umms-gb@^3.9.13: + version "3.9.13" + resolved "https://registry.yarnpkg.com/umms-gb/-/umms-gb-3.9.13.tgz#eac4a36a9bee027099c90c9d3899ea1afef5eab5" + integrity sha512-9ntsHSb2G9FgxRiHH/jGHv8Zf5G60p2QXX0JCxkUoQK9QbIGxWIZI5uJnJn6tx15oOu7nSWedDw+7Yl43AW9dw== + dependencies: + "@types/uuid" "^8.0.0" + bigwig-reader "^1.3.1" + graphql "^15.3.0" + graphql-tag "^2.10.4" + logots-react "^0.1.6" + ts-bedkit "^0.1.0" + use-deep-compare-effect "^1.4.0" + +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== + dependencies: + call-bind "^1.0.2" + has-bigints "^1.0.2" + has-symbols "^1.0.3" + which-boxed-primitive "^1.0.2" + +unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== + +update-browserslist-db@^1.0.11: + version "1.0.11" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" + integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + +upload-files-express@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/upload-files-express/-/upload-files-express-0.4.0.tgz#9aefa8323b3d51a8fb306b9d3895985ec0a39688" + integrity sha512-ET3Pcstq4F1gNCPtfy9cK8WAYhg81NoiC1qjYaptGT2ODkT8FMarNbGh5Ku71/B6Ig39o58JibfEkObmhJFY0Q== + dependencies: + formidable "^2.0.1" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +use-deep-compare-effect@^1.4.0: + version "1.8.1" + resolved "https://registry.yarnpkg.com/use-deep-compare-effect/-/use-deep-compare-effect-1.8.1.tgz#ef0ce3b3271edb801da1ec23bf0754ef4189d0c6" + integrity sha512-kbeNVZ9Zkc0RFGpfMN3MNfaKNvcLNyxOAAd9O4CBZ+kCBXXscn9s/4I+8ytUER4RDpEYs5+O6Rs4PqiZ+rHr5Q== + dependencies: + "@babel/runtime" "^7.12.5" + dequal "^2.0.2" + +util-deprecate@^1.0.1, util-deprecate@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== + +uuid@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5" + integrity sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg== + +vary@^1, vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== + +void-elements@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-3.1.0.tgz#614f7fbf8d801f0bb5f0661f5b2f5785750e4f09" + integrity sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w== + +walk@2.3.15: + version "2.3.15" + resolved "https://registry.yarnpkg.com/walk/-/walk-2.3.15.tgz#1b4611e959d656426bc521e2da5db3acecae2424" + integrity sha512-4eRTBZljBfIISK1Vnt69Gvr2w/wc3U6Vtrw7qiN5iqYJPH7LElcYh/iU4XWhdCy2dZqv1ToMyYlybDylfG/5Vg== + dependencies: + foreachasync "^3.0.0" + +watchpack@2.4.0, watchpack@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" + integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== + dependencies: + glob-to-regexp "^0.4.1" + graceful-fs "^4.1.2" + +webpack-cli@^5.1.4: + version "5.1.4" + resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-5.1.4.tgz#c8e046ba7eaae4911d7e71e2b25b776fcc35759b" + integrity sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg== + dependencies: + "@discoveryjs/json-ext" "^0.5.0" + "@webpack-cli/configtest" "^2.1.1" + "@webpack-cli/info" "^2.0.2" + "@webpack-cli/serve" "^2.0.5" + colorette "^2.0.14" + commander "^10.0.1" + cross-spawn "^7.0.3" + envinfo "^7.7.3" + fastest-levenshtein "^1.0.12" + import-local "^3.0.2" + interpret "^3.1.1" + rechoir "^0.8.0" + webpack-merge "^5.7.3" + +webpack-merge@^5.7.3: + version "5.9.0" + resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.9.0.tgz#dc160a1c4cf512ceca515cc231669e9ddb133826" + integrity sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg== + dependencies: + clone-deep "^4.0.1" + wildcard "^2.0.0" + +webpack-sources@^3.2.3: + version "3.2.3" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" + integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== + +webpack@^5.88.2: + version "5.88.2" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.88.2.tgz#f62b4b842f1c6ff580f3fcb2ed4f0b579f4c210e" + integrity sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ== + dependencies: + "@types/eslint-scope" "^3.7.3" + "@types/estree" "^1.0.0" + "@webassemblyjs/ast" "^1.11.5" + "@webassemblyjs/wasm-edit" "^1.11.5" + "@webassemblyjs/wasm-parser" "^1.11.5" + acorn "^8.7.1" + acorn-import-assertions "^1.9.0" + browserslist "^4.14.5" + chrome-trace-event "^1.0.2" + enhanced-resolve "^5.15.0" + es-module-lexer "^1.2.1" + eslint-scope "5.1.1" + events "^3.2.0" + glob-to-regexp "^0.4.1" + graceful-fs "^4.2.9" + json-parse-even-better-errors "^2.3.1" + loader-runner "^4.2.0" + mime-types "^2.1.27" + neo-async "^2.6.2" + schema-utils "^3.2.0" + tapable "^2.1.1" + terser-webpack-plugin "^5.3.7" + watchpack "^2.4.0" + webpack-sources "^3.2.3" + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== + dependencies: + is-bigint "^1.0.1" + is-boolean-object "^1.1.0" + is-number-object "^1.0.4" + is-string "^1.0.5" + is-symbol "^1.0.3" + +which-typed-array@^1.1.10, which-typed-array@^1.1.11: + version "1.1.11" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.11.tgz#99d691f23c72aab6768680805a271b69761ed61a" + integrity sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.0" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +wide-align@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" + integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== + dependencies: + string-width "^1.0.2 || 2 || 3 || 4" + +wildcard@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67" + integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ== + +with@^7.0.0: + version "7.0.2" + resolved "https://registry.yarnpkg.com/with/-/with-7.0.2.tgz#ccee3ad542d25538a7a7a80aad212b9828495bac" + integrity sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w== + dependencies: + "@babel/parser" "^7.9.6" + "@babel/types" "^7.9.6" + assert-never "^1.2.1" + babel-walk "3.0.0-canary-5" + +wordwrap@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== + +wrap-ansi@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +ws@~8.11.0: + version "8.11.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.11.0.tgz#6a0d36b8edfd9f96d8b25683db2f8d7de6e8e143" + integrity sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yaml@^1.10.0: + version "1.10.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + +yaml@^2.1.1, yaml@^2.2.2: + version "2.3.1" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.1.tgz#02fe0975d23cd441242aa7204e09fc28ac2ac33b" + integrity sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +zen-observable-ts@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-1.2.5.tgz#6c6d9ea3d3a842812c6e9519209365a122ba8b58" + integrity sha512-QZWQekv6iB72Naeake9hS1KxHlotfRpe+WGNbNx5/ta+R3DNjVO2bswf63gXlWDcs+EMd7XY8HfVQyP1X6T4Zg== + dependencies: + zen-observable "0.8.15" + +zen-observable@0.8.15: + version "0.8.15" + resolved "https://registry.yarnpkg.com/zen-observable/-/zen-observable-0.8.15.tgz#96415c512d8e3ffd920afd3889604e30b9eaac15" + integrity sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ== + +zod@3.21.4: + version "3.21.4" + resolved "https://registry.yarnpkg.com/zod/-/zod-3.21.4.tgz#10882231d992519f0a10b5dd58a38c9dabbb64db" + integrity sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw== From 244f4a3c1c0c8ef0b78e96d43ac5f2619cabb493 Mon Sep 17 00:00:00 2001 From: NishiPhalke Date: Thu, 24 Aug 2023 11:21:05 -0400 Subject: [PATCH 2/8] ran prettier --- screen2.0/package.json | 1 + .../differential-gene-expression/options.tsx | 90 +- .../differential-gene-expression/page.tsx | 263 +- .../differential-gene-expression/plot.tsx | 4 +- .../differential-gene-expression/queries.ts | 2 +- .../differential-gene-expression/utils.tsx | 14 +- .../src/app/applets/gene-expression/const.ts | 3 +- .../src/app/applets/gene-expression/page.tsx | 2 +- .../src/app/applets/gene-expression/utils.tsx | 31 +- screen2.0/src/app/page.tsx | 2 +- screen2.0/src/app/search/ccredetails/const.ts | 3 +- screen2.0/src/app/search/ccresearch.tsx | 30 +- screen2.0/src/app/search/gbview/allmotifs.ts | 10985 ++++++++-------- .../src/app/search/gbview/biosampletracks.tsx | 402 +- .../src/app/search/gbview/ccretooltip.tsx | 190 +- screen2.0/src/app/search/gbview/controls.tsx | 77 +- .../src/app/search/gbview/cytobandview.tsx | 176 +- .../src/app/search/gbview/defaulttracks.tsx | 583 +- .../src/app/search/gbview/egenetracks.tsx | 179 +- .../app/search/gbview/genomebrowserview.tsx | 480 +- .../src/app/search/gbview/shiftbutton.tsx | 61 +- .../src/app/search/gbview/tfmotiftrack.tsx | 167 +- .../src/app/search/gbview/zoombutton.tsx | 65 +- .../common/components/MainResultsTable.tsx | 22 +- .../src/common/components/MainSearch.tsx | 108 - .../common/components/ResponsiveAppBar.tsx | 36 +- .../{ => mainsearch}/CcreAutocomplete.tsx | 292 +- .../{ => mainsearch}/CelltypeAutocomplete.tsx | 253 +- .../{ => mainsearch}/GeneAutocomplete.tsx | 392 +- .../components/mainsearch/MainSearch.tsx | 123 + .../{ => mainsearch}/SnpAutocomplete.tsx | 285 +- screen2.0/yarn.lock | 138 +- 32 files changed, 7701 insertions(+), 7758 deletions(-) delete mode 100644 screen2.0/src/common/components/MainSearch.tsx rename screen2.0/src/common/components/{ => mainsearch}/CcreAutocomplete.tsx (60%) rename screen2.0/src/common/components/{ => mainsearch}/CelltypeAutocomplete.tsx (52%) rename screen2.0/src/common/components/{ => mainsearch}/GeneAutocomplete.tsx (55%) create mode 100644 screen2.0/src/common/components/mainsearch/MainSearch.tsx rename screen2.0/src/common/components/{ => mainsearch}/SnpAutocomplete.tsx (52%) diff --git a/screen2.0/package.json b/screen2.0/package.json index 8616a867..205c75d7 100644 --- a/screen2.0/package.json +++ b/screen2.0/package.json @@ -41,6 +41,7 @@ "@emotion/styled": "^11.11.0", "@mui/icons-material": "^5.14.3", "@mui/material": "^5.14.2", + "@mui/styles": "^5.14.5", "@types/node": "^20.4.9", "@types/react": "^18.2.19", "@types/react-dom": "18.2.7", diff --git a/screen2.0/src/app/applets/differential-gene-expression/options.tsx b/screen2.0/src/app/applets/differential-gene-expression/options.tsx index c37e5d6c..49f03d8a 100644 --- a/screen2.0/src/app/applets/differential-gene-expression/options.tsx +++ b/screen2.0/src/app/applets/differential-gene-expression/options.tsx @@ -30,63 +30,63 @@ export function CoordinateRangeField(props: { console.log(value) if (value[0].split(",").length > 0) { let j: string = "" - for (let c of value[0].split(",")){ + for (let c of value[0].split(",")) { j += c } value[0] = j - } + } if (value[1].split(",").length > 0) { let j: string = "" - for (let c of value[1].split(",")){ + for (let c of value[1].split(",")) { j += c } value[1] = j - } + } console.log(value) if (parseInt(value[1]) - parseInt(value[0]) <= 500000 && parseInt(value[1]) - parseInt(value[0]) > 0) props.setdr([parseInt(value[0]), parseInt(value[1])]) - // variant === "min" - // ? props.setdr([parseInt(value[0]), props.dr[1]]) - // : props.setdr([props.dr[0], parseInt(value[1])]) + // variant === "min" + // ? props.setdr([parseInt(value[0]), props.dr[1]]) + // : props.setdr([props.dr[0], parseInt(value[1])]) }} onKeyDown={(e) => { if (e.key === "Enter") { - if (props.range.x.end - props.dr[0] > 0 && props.range.x.end - props.dr[0] <= 500000) { - props.setRange({ - x: { - start: props.dr[0], - end: props.range.x.end, - }, - y: { - start: props.range.y.start, - end: props.range.y.end, - }, - }) - props.setSlider({ - x1: props.dr[0], - x2: props.range.x.end, - min: props.dr[0], - max: props.range.x.end, - }) - } else return - if (props.dr[1] - props.range.x.start > 0 && props.dr[1] - props.range.x.start <= 500000) { - props.setRange({ - x: { - start: props.range.x.start, - end: props.dr[1], - }, - y: { - start: props.range.y.start, - end: props.range.y.end, - }, - }) - props.setSlider({ - x1: props.range.x.start, - x2: props.dr[1], - min: props.range.x.start, - max: props.dr[1], - }) - } else return + if (props.range.x.end - props.dr[0] > 0 && props.range.x.end - props.dr[0] <= 500000) { + props.setRange({ + x: { + start: props.dr[0], + end: props.range.x.end, + }, + y: { + start: props.range.y.start, + end: props.range.y.end, + }, + }) + props.setSlider({ + x1: props.dr[0], + x2: props.range.x.end, + min: props.dr[0], + max: props.range.x.end, + }) + } else return + if (props.dr[1] - props.range.x.start > 0 && props.dr[1] - props.range.x.start <= 500000) { + props.setRange({ + x: { + start: props.range.x.start, + end: props.dr[1], + }, + y: { + start: props.range.y.start, + end: props.range.y.end, + }, + }) + props.setSlider({ + x1: props.range.x.start, + x2: props.dr[1], + min: props.range.x.start, + max: props.dr[1], + }) + } else return } }} /> @@ -119,7 +119,9 @@ export function CoordinateRangeField(props: { }) } else return }} - >Set + > + Set + ) } diff --git a/screen2.0/src/app/applets/differential-gene-expression/page.tsx b/screen2.0/src/app/applets/differential-gene-expression/page.tsx index 9892c74b..45f05303 100644 --- a/screen2.0/src/app/applets/differential-gene-expression/page.tsx +++ b/screen2.0/src/app/applets/differential-gene-expression/page.tsx @@ -13,7 +13,20 @@ import ArrowBackIosIcon from "@mui/icons-material/ArrowBackIos" import ExpandMoreIcon from "@mui/icons-material/ExpandMore" import { ThemeProvider } from "@mui/material/styles" import { defaultTheme } from "../../../common/lib/themes" -import { Box, FormGroup, Slider, Typography, IconButton, Paper, Chip, Drawer, AppBar, AccordionSummary, AccordionDetails, Accordion } from "@mui/material" +import { + Box, + FormGroup, + Slider, + Typography, + IconButton, + Paper, + Chip, + Drawer, + AppBar, + AccordionSummary, + AccordionDetails, + Accordion, +} from "@mui/material" import { useQuery } from "@apollo/client" import { GENE_SEARCH_QUERY, ZSCORE_QUERY } from "./queries" @@ -402,141 +415,149 @@ export default function DifferentialGeneExpression() { Cell Type 1 - row.biosample_summary }, - { header: "Experiment", value: (row: any) => row.expID, render: (row: any) => createLink("https://encodeproject.org/experiments/", row.expID)}, - { header: "Tissue", value: (row: any) => row.tissue }, - ]} - onRowClick={(row: any) => { - setct1(row.value) - setTitle({ - ct1: { - name: row.name, - expID: row.expID, - }, - ct2: title.ct2, - }) - if (rowHighlight) setRowHighlight([row, rowHighlight[1]]) - else setRowHighlight([row]) - }} - sortDescending={true} - searchable={true} - dense={true} - /> + row.biosample_summary }, + { + header: "Experiment", + value: (row: any) => row.expID, + render: (row: any) => createLink("https://encodeproject.org/experiments/", row.expID), + }, + { header: "Tissue", value: (row: any) => row.tissue }, + ]} + onRowClick={(row: any) => { + setct1(row.value) + setTitle({ + ct1: { + name: row.name, + expID: row.expID, + }, + ct2: title.ct2, + }) + if (rowHighlight) setRowHighlight([row, rowHighlight[1]]) + else setRowHighlight([row]) + }} + sortDescending={true} + searchable={true} + dense={true} + /> - }> + }> Cell Type 2 row.biosample_summary }, - { header: "Experiment", value: (row: any) => row.expID, render: (row: any) => createLink("https://encodeproject.org/experiments/", row.expID)}, - { header: "Tissue", value: (row: any) => row.tissue }, - ]} - onRowClick={(row: any) => { - setct2(row.value) - setTitle({ - ct1: title.ct1, - ct2: { - name: row.name, - expID: row.expID, - }, - }) - if (rowHighlight) setRowHighlight([rowHighlight[0], row]) - else setRowHighlight([row]) - }} - sortDescending={true} - searchable={true} - dense={true} - /> + highlighted={rowHighlight ? rowHighlight[1] : false} + page={1} + rows={cellTypes["cellTypeInfoArr"]} + columns={[ + { header: "Cell Type", value: (row: any) => row.biosample_summary }, + { + header: "Experiment", + value: (row: any) => row.expID, + render: (row: any) => createLink("https://encodeproject.org/experiments/", row.expID), + }, + { header: "Tissue", value: (row: any) => row.tissue }, + ]} + onRowClick={(row: any) => { + setct2(row.value) + setTitle({ + ct1: title.ct1, + ct2: { + name: row.name, + expID: row.expID, + }, + }) + if (rowHighlight) setRowHighlight([rowHighlight[0], row]) + else setRowHighlight([row]) + }} + sortDescending={true} + searchable={true} + dense={true} + /> - Filters - - - - - - - - - - - - - - Coordinate Range: - { - if (value[0] > value[1]) return <> - if (value[0] !== slider.x1) { - setSlider({ - x1: value[0], - x2: slider.x2, - min: slider.min, - max: slider.max, - }) - setdr([value[0], dr[1]]) - setRange({ - x: { - start: value[0], - end: range.x.end, - }, - y: { - start: range.y.start, - end: range.y.end, - }, - }) - } else { - setSlider({ - x1: slider.x1, - x2: value[1], - min: slider.min, - max: slider.max, - }) - setdr([dr[0], value[1]]) - setRange({ - x: { - start: range.x.start, - end: value[1], - }, - y: { - start: range.y.start, - end: range.y.end, - }, - }) - } - }} - /> - - - + Filters + + + + + + + + + + + + + + Coordinate Range: + { + if (value[0] > value[1]) return <> + if (value[0] !== slider.x1) { + setSlider({ + x1: value[0], + x2: slider.x2, + min: slider.min, + max: slider.max, + }) + setdr([value[0], dr[1]]) + setRange({ + x: { + start: value[0], + end: range.x.end, + }, + y: { + start: range.y.start, + end: range.y.end, + }, + }) + } else { + setSlider({ + x1: slider.x1, + x2: value[1], + min: slider.min, + max: slider.max, + }) + setdr([dr[0], value[1]]) + setRange({ + x: { + start: range.x.start, + end: value[1], + }, + y: { + start: range.y.start, + end: range.y.end, + }, + }) + } + }} + /> + + + ) diff --git a/screen2.0/src/app/applets/differential-gene-expression/plot.tsx b/screen2.0/src/app/applets/differential-gene-expression/plot.tsx index f8615f4f..67024908 100644 --- a/screen2.0/src/app/applets/differential-gene-expression/plot.tsx +++ b/screen2.0/src/app/applets/differential-gene-expression/plot.tsx @@ -73,9 +73,7 @@ export function PlotDifferentialExpression(props: { <> ) : ( - - log2 gene expression fold change - + log2 gene expression fold change )} {!props.toggleccres ? ( diff --git a/screen2.0/src/app/applets/differential-gene-expression/queries.ts b/screen2.0/src/app/applets/differential-gene-expression/queries.ts index 1076cd2a..22dd0be1 100644 --- a/screen2.0/src/app/applets/differential-gene-expression/queries.ts +++ b/screen2.0/src/app/applets/differential-gene-expression/queries.ts @@ -70,4 +70,4 @@ export const ZSCORE_QUERY = gql` } } } -` \ No newline at end of file +` diff --git a/screen2.0/src/app/applets/differential-gene-expression/utils.tsx b/screen2.0/src/app/applets/differential-gene-expression/utils.tsx index 1c91789d..e2c81037 100644 --- a/screen2.0/src/app/applets/differential-gene-expression/utils.tsx +++ b/screen2.0/src/app/applets/differential-gene-expression/utils.tsx @@ -268,8 +268,8 @@ export const GenePoint = (props: { point: Gene; i: number; range: Range2D; dimen console.log(tmp) // transform - p1 = linearTransform2D(props.range, props.dimensions)({ x: x1, y: (props.i+props.range.y.start)*tmp }) - p2 = linearTransform2D(props.range, props.dimensions)({ x: x2, y: (props.i+props.range.y.start)*tmp }) + p1 = linearTransform2D(props.range, props.dimensions)({ x: x1, y: (props.i + props.range.y.start) * tmp }) + p2 = linearTransform2D(props.range, props.dimensions)({ x: x2, y: (props.i + props.range.y.start) * tmp }) // tooltip for mouseover const GeneTooltip = () => { @@ -423,9 +423,7 @@ export const SetRange_y = (props: { let r: number = range_y[range_y.length - 1] // last label in list let cellTypeLabel: string[] = [ "translate(39," + t.y.toString() + ") rotate(-90)", - "translate(39," + - (t.y + (props.title.ct1.expID.length === 0 ? 32.5 : 32.5)).toString() + - ") rotate(-90)", + "translate(39," + (t.y + (props.title.ct1.expID.length === 0 ? 32.5 : 32.5)).toString() + ") rotate(-90)", ] // console.log(props.title.ct1.name.length) // console.log(document.getElementById(props.title.ct1.name).clientWidth) @@ -435,11 +433,11 @@ export const SetRange_y = (props: { const getName = (name: string) => { let cellname: string = "" - for (let c of name){ + for (let c of name) { if (c === "(") break else cellname += c } - return cellname += " " + return (cellname += " ") } if (y === 0.0) @@ -456,7 +454,7 @@ export const SetRange_y = (props: { - + ◄ {getName(props.title.ct1.name)} diff --git a/screen2.0/src/app/applets/gene-expression/const.ts b/screen2.0/src/app/applets/gene-expression/const.ts index 8201fc4c..c5b9bae7 100644 --- a/screen2.0/src/app/applets/gene-expression/const.ts +++ b/screen2.0/src/app/applets/gene-expression/const.ts @@ -1 +1,2 @@ -export const GeneExpressionInfoTooltip = "This bar plot displays the expression level of a given gene across available cell types and tissues derived from RNA-seq data. By default, the data displayed is log2(TPM + 0.01), but this may be customized by selecting from the data dropdown; FPKM values are also available and the log scale may be turned off. TPM and RPKM are two metrics of gene expression levels and they differ slightly in their approaches to normalizing for sequencing depth and gene length. The sort order dropdown allows sorting of the data by TPM or FPKM and also allows grouping of the expression values by tissue. Mousing over the bars displays more information about the expriments that produced the data points, and clicking on a bar redirects to the corresponging experiment at the ENCODE portal." \ No newline at end of file +export const GeneExpressionInfoTooltip = + "This bar plot displays the expression level of a given gene across available cell types and tissues derived from RNA-seq data. By default, the data displayed is log2(TPM + 0.01), but this may be customized by selecting from the data dropdown; FPKM values are also available and the log scale may be turned off. TPM and RPKM are two metrics of gene expression levels and they differ slightly in their approaches to normalizing for sequencing depth and gene length. The sort order dropdown allows sorting of the data by TPM or FPKM and also allows grouping of the expression values by tissue. Mousing over the bars displays more information about the expriments that produced the data points, and clicking on a bar redirects to the corresponging experiment at the ENCODE portal." diff --git a/screen2.0/src/app/applets/gene-expression/page.tsx b/screen2.0/src/app/applets/gene-expression/page.tsx index a916b48a..deba0022 100644 --- a/screen2.0/src/app/applets/gene-expression/page.tsx +++ b/screen2.0/src/app/applets/gene-expression/page.tsx @@ -16,7 +16,7 @@ import { ThemeProvider } from "@mui/material/styles" import { defaultTheme } from "../../../common/lib/themes" import MenuIcon from "@mui/icons-material/Menu" import ArrowBackIosIcon from "@mui/icons-material/ArrowBackIos" -import InfoIcon from '@mui/icons-material/Info'; +import InfoIcon from "@mui/icons-material/Info" import Image from "next/image" import GeneAutoComplete from "./gene-autocomplete" diff --git a/screen2.0/src/app/applets/gene-expression/utils.tsx b/screen2.0/src/app/applets/gene-expression/utils.tsx index 337f99bf..68c2e8fa 100644 --- a/screen2.0/src/app/applets/gene-expression/utils.tsx +++ b/screen2.0/src/app/applets/gene-expression/utils.tsx @@ -26,7 +26,7 @@ export function PlotGeneExpression(props: { }) { const router = useRouter() const [collapse, setCollapse] = useState<{ [id: string]: boolean }>({}) - const[highlighted, setHighlighted] = useState("") + const [highlighted, setHighlighted] = useState("") let itemsRID: RIDItemList = props.data[props.RNAtype]["itemsByRID"] let tissues: { [id: string]: { sum: number; values: GeneExpEntry[] } } = {} // dict of ftissues @@ -64,19 +64,26 @@ export function PlotGeneExpression(props: { p1 = linearTransform2D(props.range, props.dimensions)({ x: item.value, y: 0 }) return ( - router.push("https://encodeproject.org/experiments/" + item.expID)} - onMouseEnter={() => { - setHighlighted(item.expID) - }} - onMouseOut={() => { - setHighlighted("") - }} - onMouseOver={() => { - setHighlighted(item.expID) - }}> + router.push("https://encodeproject.org/experiments/" + item.expID)} + onMouseEnter={() => { + setHighlighted(item.expID) + }} + onMouseOut={() => { + setHighlighted("") + }} + onMouseOver={() => { + setHighlighted(item.expID) + }} + > {item.cellType + "\n" + item.value} - {highlighted === item.expID ? : <>} + {highlighted === item.expID ? : <>} {Number(item.value.toFixed(3)) + " "} {item.expID} diff --git a/screen2.0/src/app/page.tsx b/screen2.0/src/app/page.tsx index ddbd87ee..0860da6b 100644 --- a/screen2.0/src/app/page.tsx +++ b/screen2.0/src/app/page.tsx @@ -3,7 +3,7 @@ "use client" import { Typography } from "@mui/material" -import MainSearch from "../common/components/MainSearch" +import MainSearch from "../common/components/mainsearch/MainSearch" // Grid v2 isn't declared stable yet, but using it now as it's what MUI is currently developing out import Grid2 from "@mui/material/Unstable_Grid2/Grid2" diff --git a/screen2.0/src/app/search/ccredetails/const.ts b/screen2.0/src/app/search/ccredetails/const.ts index eefb8706..c12d07cb 100644 --- a/screen2.0/src/app/search/ccredetails/const.ts +++ b/screen2.0/src/app/search/ccredetails/const.ts @@ -1 +1,2 @@ -export const RampageToolTipInfo = "RAMPAGE (RNA Annotiation and Mapping of Promoters for Analysis of Gene Expression) data allows for the annotation of and expression at transcription start sites with nucleotide precision. Here, we display the sum of signal (from ENCODE Data Coordination Center's RAMPAGE pipeline) in a +-50bp window around GENCODE V19 annotated TSSs for the cRE's nearest protein coding gene. As, this signal is strand specific, we display signal from both the + and - strands for each experiment." +export const RampageToolTipInfo = + "RAMPAGE (RNA Annotiation and Mapping of Promoters for Analysis of Gene Expression) data allows for the annotation of and expression at transcription start sites with nucleotide precision. Here, we display the sum of signal (from ENCODE Data Coordination Center's RAMPAGE pipeline) in a +-50bp window around GENCODE V19 annotated TSSs for the cRE's nearest protein coding gene. As, this signal is strand specific, we display signal from both the + and - strands for each experiment." diff --git a/screen2.0/src/app/search/ccresearch.tsx b/screen2.0/src/app/search/ccresearch.tsx index e5a04729..fd9a861b 100644 --- a/screen2.0/src/app/search/ccresearch.tsx +++ b/screen2.0/src/app/search/ccresearch.tsx @@ -37,7 +37,6 @@ export const CcreSearch = ({ mainQueryParams, ccrerows, globals, assembly }) => - {searchParams.get("accession") && } @@ -49,18 +48,27 @@ export const CcreSearch = ({ mainQueryParams, ccrerows, globals, assembly }) => - setTabIndex(val)}> + setTabIndex(val)}> - + - {tabIndex===0 && } - {tabIndex===1 && } + {tabIndex === 0 && ( + + )} + {tabIndex === 1 && ( + + )} )} diff --git a/screen2.0/src/app/search/gbview/allmotifs.ts b/screen2.0/src/app/search/gbview/allmotifs.ts index 866fc4b7..05528a6d 100644 --- a/screen2.0/src/app/search/gbview/allmotifs.ts +++ b/screen2.0/src/app/search/gbview/allmotifs.ts @@ -1,5493 +1,5492 @@ -export const MOTIFS = { - IRF1: [ - [0.323, 0.103, 0.503, 0.071], - [0.536, 0.179, 0.258, 0.028], - [0.818, 0.09, 0.058, 0.034], - [0.906, 0.0, 0.077, 0.017], - [0.182, 0.427, 0.213, 0.178], - [0.256, 0.242, 0.113, 0.39], - [0.1, 0.003, 0.898, 0.0], - [0.696, 0.3, 0.0, 0.004], - [0.837, 0.129, 0.005, 0.029], - [0.885, 0.0, 0.069, 0.046], - [0.082, 0.426, 0.46, 0.032], - [0.119, 0.292, 0.166, 0.423], - [0.422, 0.034, 0.486, 0.058], - [0.493, 0.145, 0.317, 0.045], - [0.511, 0.206, 0.151, 0.131], - [0.52, 0.098, 0.297, 0.085], - ], - HIC1: [ - [0.001, 0.022, 0.0, 0.977], - [0.06, 0.0, 0.938, 0.002], - [0.186, 0.783, 0.031, 0.0], - [0.007, 0.959, 0.002, 0.032], - [0.054, 0.934, 0.006, 0.006], - [0.261, 0.0, 0.169, 0.569], - [0.078, 0.487, 0.179, 0.255], - ], - LHX2: [ - [0.067, 0.666, 0.193, 0.074], - [0.0, 0.215, 0.0, 0.785], - [0.512, 0.446, 0.0, 0.041], - [1.0, 0.0, 0.0, 0.0], - [0.0, 0.0, 0.003, 0.997], - [0.001, 0.018, 0.004, 0.978], - [0.988, 0.0, 0.0, 0.012], - ], - ZNF667: [ - [0.052, 0.058, 0.825, 0.064], - [0.236, 0.282, 0.331, 0.15], - [0.071, 0.083, 0.285, 0.561], - [0.074, 0.046, 0.816, 0.064], - [0.785, 0.012, 0.166, 0.037], - [0.083, 0.009, 0.902, 0.006], - [0.003, 0.936, 0.012, 0.049], - [0.028, 0.046, 0.025, 0.902], - [0.003, 0.448, 0.012, 0.537], - [0.123, 0.058, 0.12, 0.699], - [0.083, 0.028, 0.067, 0.822], - [0.758, 0.031, 0.117, 0.095], - [0.798, 0.117, 0.055, 0.031], - [0.393, 0.028, 0.518, 0.061], - [0.025, 0.043, 0.911, 0.021], - [0.077, 0.644, 0.187, 0.092], - [0.11, 0.788, 0.058, 0.043], - [0.518, 0.181, 0.086, 0.215], - [0.113, 0.712, 0.08, 0.095], - ], - ZNF341: [ - [0.008, 0.006, 0.977, 0.008], - [0.014, 0.961, 0.017, 0.009], - [0.047, 0.15, 0.053, 0.751], - [0.093, 0.309, 0.558, 0.041], - [0.027, 0.055, 0.01, 0.908], - [0.003, 0.069, 0.094, 0.834], - [0.075, 0.791, 0.088, 0.045], - [0.057, 0.685, 0.035, 0.223], - ], - TP53: [ - [0.264, 0.024, 0.526, 0.186], - [0.459, 0.0, 0.476, 0.066], - [0.017, 0.96, 0.001, 0.023], - [0.79, 0.0, 0.103, 0.106], - [0.209, 0.063, 0.019, 0.71], - [0.0, 0.004, 0.978, 0.018], - [0.055, 0.368, 0.0, 0.577], - [0.101, 0.59, 0.019, 0.289], - [0.156, 0.329, 0.136, 0.379], - [0.264, 0.177, 0.426, 0.133], - [0.251, 0.16, 0.411, 0.178], - [0.44, 0.054, 0.416, 0.09], - [0.079, 0.741, 0.153, 0.027], - [0.576, 0.225, 0.037, 0.162], - [0.269, 0.075, 0.137, 0.519], - [0.168, 0.078, 0.664, 0.09], - ], - SRF: [ - [0.258, 0.127, 0.089, 0.527], - [0.124, 0.132, 0.324, 0.419], - [0.261, 0.215, 0.293, 0.231], - [0.016, 0.968, 0.008, 0.008], - [0.0, 0.93, 0.0, 0.069], - [0.532, 0.061, 0.016, 0.39], - [0.251, 0.021, 0.017, 0.71], - [0.817, 0.009, 0.033, 0.141], - [0.131, 0.028, 0.004, 0.837], - [0.678, 0.016, 0.017, 0.29], - [0.353, 0.012, 0.061, 0.574], - [0.093, 0.0, 0.906, 0.001], - [0.032, 0.006, 0.951, 0.011], - [0.229, 0.294, 0.215, 0.262], - [0.419, 0.357, 0.109, 0.115], - [0.558, 0.077, 0.146, 0.219], - ], - SPIB: [ - [0.593, 0.068, 0.192, 0.148], - [0.602, 0.058, 0.23, 0.11], - [0.561, 0.029, 0.184, 0.227], - [0.182, 0.093, 0.697, 0.028], - [0.606, 0.102, 0.277, 0.015], - [0.088, 0.0, 0.904, 0.007], - [0.0, 0.004, 0.996, 0.0], - [0.991, 0.005, 0.001, 0.003], - [0.985, 0.0, 0.003, 0.012], - [0.052, 0.176, 0.769, 0.003], - [0.091, 0.076, 0.03, 0.803], - [0.076, 0.157, 0.738, 0.029], - ], - "NKX2-5": [ - [0.119, 0.154, 0.528, 0.2], - [0.172, 0.458, 0.144, 0.226], - [0.24, 0.026, 0.498, 0.236], - [0.247, 0.425, 0.163, 0.164], - [0.311, 0.187, 0.148, 0.353], - [0.316, 0.082, 0.427, 0.174], - [0.382, 0.249, 0.194, 0.175], - [0.147, 0.188, 0.406, 0.26], - [0.207, 0.307, 0.207, 0.279], - [0.31, 0.176, 0.316, 0.199], - [0.221, 0.319, 0.163, 0.296], - [0.087, 0.299, 0.176, 0.438], - [0.124, 0.206, 0.163, 0.507], - [0.205, 0.163, 0.216, 0.416], - [0.343, 0.07, 0.583, 0.004], - [0.987, 0.003, 0.003, 0.007], - [0.058, 0.019, 0.915, 0.007], - [0.404, 0.002, 0.021, 0.573], - [0.031, 0.002, 0.941, 0.027], - [0.055, 0.274, 0.541, 0.129], - ], - TBX5: [ - [0.195, 0.312, 0.018, 0.475], - [0.364, 0.131, 0.345, 0.16], - [0.008, 0.053, 0.099, 0.841], - [0.055, 0.745, 0.013, 0.187], - [0.615, 0.147, 0.039, 0.2], - [0.146, 0.427, 0.277, 0.149], - [0.333, 0.2, 0.078, 0.389], - [0.302, 0.273, 0.365, 0.059], - [0.547, 0.067, 0.144, 0.243], - [0.019, 0.929, 0.0, 0.052], - [0.816, 0.002, 0.081, 0.102], - [0.03, 0.834, 0.118, 0.017], - [0.168, 0.457, 0.068, 0.308], - [0.172, 0.192, 0.078, 0.558], - ], - ELK4: [ - [0.462, 0.116, 0.319, 0.103], - [0.008, 0.638, 0.097, 0.257], - [0.111, 0.0, 0.003, 0.887], - [0.002, 0.0, 0.0, 0.998], - [0.006, 0.994, 0.001, 0.0], - [0.005, 0.973, 0.0, 0.021], - [0.026, 0.021, 0.674, 0.279], - [0.053, 0.189, 0.653, 0.104], - ], - STAT3: [ - [0.082, 0.065, 0.078, 0.776], - [0.081, 0.012, 0.257, 0.649], - [0.192, 0.668, 0.07, 0.07], - [0.024, 0.748, 0.01, 0.218], - [0.313, 0.165, 0.35, 0.172], - [0.136, 0.003, 0.856, 0.005], - [0.03, 0.016, 0.819, 0.135], - [0.961, 0.028, 0.003, 0.008], - [0.964, 0.01, 0.022, 0.004], - ], - NR2F6: [ - [0.143, 0.125, 0.165, 0.567], - [0.12, 0.112, 0.629, 0.139], - [0.415, 0.123, 0.394, 0.068], - [0.484, 0.282, 0.129, 0.105], - [0.025, 0.949, 0.023, 0.003], - [0.015, 0.262, 0.028, 0.695], - [0.034, 0.196, 0.034, 0.736], - [0.007, 0.091, 0.001, 0.901], - [0.031, 0.012, 0.927, 0.03], - [0.44, 0.167, 0.271, 0.122], - [0.354, 0.392, 0.054, 0.199], - [0.05, 0.839, 0.046, 0.064], - [0.122, 0.363, 0.022, 0.493], - ], - FOXK2: [ - [0.028, 0.014, 0.014, 0.944], - [0.158, 0.004, 0.838, 0.0], - [0.003, 0.017, 0.017, 0.963], - [0.015, 0.0, 0.082, 0.903], - [0.002, 0.0, 0.126, 0.873], - [0.969, 0.007, 0.0, 0.023], - [0.0, 0.734, 0.016, 0.25], - ], - ZNF24: [ - [0.161, 0.533, 0.111, 0.195], - [0.415, 0.227, 0.193, 0.165], - [0.117, 0.311, 0.111, 0.461], - [0.172, 0.106, 0.163, 0.56], - [0.259, 0.569, 0.125, 0.047], - [0.527, 0.239, 0.131, 0.103], - [0.208, 0.089, 0.139, 0.564], - [0.056, 0.06, 0.085, 0.8], - [0.005, 0.968, 0.023, 0.004], - [0.878, 0.059, 0.037, 0.026], - [0.007, 0.149, 0.154, 0.69], - [0.059, 0.047, 0.082, 0.811], - [0.157, 0.656, 0.024, 0.163], - [0.572, 0.178, 0.178, 0.071], - [0.026, 0.091, 0.031, 0.851], - [0.036, 0.019, 0.044, 0.9], - [0.005, 0.984, 0.004, 0.007], - [0.568, 0.182, 0.149, 0.101], - ], - CEBPB: [ - [0.617, 0.049, 0.195, 0.139], - [0.0, 0.0, 0.0, 1.0], - [0.001, 0.0, 0.044, 0.955], - [0.332, 0.0, 0.286, 0.381], - [0.0, 0.998, 0.0, 0.002], - [0.65, 0.123, 0.001, 0.225], - [0.164, 0.363, 0.008, 0.466], - [0.716, 0.276, 0.0, 0.008], - [0.986, 0.001, 0.003, 0.01], - [0.021, 0.302, 0.136, 0.541], - ], - MAX: [ - [0.0, 1.0, 0.0, 0.0], - [0.96, 0.001, 0.018, 0.02], - [0.0, 0.481, 0.004, 0.515], - [0.031, 0.01, 0.96, 0.0], - [0.052, 0.154, 0.0, 0.795], - [0.0, 0.005, 0.92, 0.075], - ], - PPARG: [ - [0.098, 0.123, 0.08, 0.699], - [0.197, 0.143, 0.541, 0.119], - [0.57, 0.252, 0.129, 0.05], - [0.189, 0.72, 0.014, 0.077], - [0.05, 0.822, 0.007, 0.121], - [0.011, 0.161, 0.011, 0.816], - [0.075, 0.224, 0.037, 0.664], - [0.025, 0.061, 0.022, 0.893], - [0.132, 0.201, 0.536, 0.13], - [0.336, 0.316, 0.188, 0.159], - [0.065, 0.74, 0.043, 0.152], - [0.151, 0.727, 0.016, 0.107], - [0.063, 0.445, 0.046, 0.446], - [0.591, 0.145, 0.15, 0.114], - [0.214, 0.319, 0.335, 0.133], - [0.333, 0.09, 0.033, 0.544], - [0.196, 0.103, 0.152, 0.549], - ], - NFIA: [ - [0.057, 0.392, 0.103, 0.449], - [0.012, 0.19, 0.121, 0.677], - [0.045, 0.0, 0.847, 0.109], - [0.032, 0.063, 0.896, 0.009], - [0.286, 0.595, 0.041, 0.078], - [0.331, 0.204, 0.131, 0.334], - [0.206, 0.411, 0.171, 0.211], - [0.23, 0.209, 0.328, 0.234], - [0.187, 0.378, 0.239, 0.196], - [0.25, 0.105, 0.231, 0.413], - [0.042, 0.029, 0.746, 0.183], - [0.002, 0.93, 0.032, 0.035], - [0.0, 0.84, 0.0, 0.16], - [0.721, 0.027, 0.239, 0.013], - [0.37, 0.127, 0.454, 0.048], - ], - EPAS1: [ - [0.746, 0.021, 0.218, 0.015], - [0.002, 0.906, 0.001, 0.091], - [0.091, 0.0, 0.888, 0.021], - [0.004, 0.0, 0.004, 0.992], - [0.0, 0.0, 0.993, 0.007], - ], - JUNB: [ - [0.443, 0.231, 0.271, 0.055], - [0.0, 0.004, 0.001, 0.995], - [0.0, 0.0, 0.86, 0.14], - [0.991, 0.002, 0.0, 0.007], - [0.125, 0.375, 0.452, 0.047], - [0.0, 0.0, 0.0, 1.0], - [0.029, 0.971, 0.0, 0.0], - [0.992, 0.0, 0.008, 0.0], - [0.05, 0.31, 0.202, 0.438], - ], - PBX1: [ - [0.184, 0.032, 0.058, 0.727], - [0.002, 0.137, 0.86, 0.001], - [0.712, 0.16, 0.01, 0.118], - [0.071, 0.195, 0.361, 0.373], - [0.024, 0.001, 0.005, 0.971], - [0.016, 0.198, 0.783, 0.003], - [0.709, 0.001, 0.238, 0.053], - [0.008, 0.717, 0.053, 0.222], - [0.477, 0.004, 0.204, 0.315], - [0.127, 0.076, 0.584, 0.213], - ], - KLF13: [ - [0.098, 0.119, 0.721, 0.062], - [0.134, 0.693, 0.089, 0.084], - [0.11, 0.699, 0.064, 0.127], - [0.423, 0.562, 0.013, 0.001], - [0.002, 0.99, 0.0, 0.009], - [0.111, 0.0, 0.825, 0.065], - [0.0, 0.997, 0.0, 0.003], - [0.001, 0.98, 0.017, 0.003], - [0.049, 0.912, 0.001, 0.038], - [0.286, 0.555, 0.001, 0.158], - [0.027, 0.693, 0.071, 0.209], - ], - ZNF652: [ - [0.015, 0.024, 0.065, 0.896], - [0.006, 0.013, 0.023, 0.958], - [0.837, 0.019, 0.085, 0.058], - [0.949, 0.015, 0.022, 0.014], - [0.01, 0.98, 0.006, 0.004], - [0.034, 0.644, 0.031, 0.291], - [0.122, 0.712, 0.084, 0.082], - [0.095, 0.196, 0.063, 0.646], - [0.097, 0.111, 0.123, 0.669], - [0.14, 0.164, 0.181, 0.515], - [0.282, 0.383, 0.229, 0.106], - [0.286, 0.282, 0.189, 0.242], - [0.224, 0.185, 0.233, 0.357], - [0.162, 0.225, 0.304, 0.309], - [0.218, 0.254, 0.289, 0.239], - [0.176, 0.539, 0.115, 0.17], - ], - "NKX2-1": [ - [0.215, 0.012, 0.773, 0.001], - [1.0, 0.0, 0.0, 0.0], - [0.0, 0.002, 0.955, 0.042], - [0.349, 0.001, 0.0, 0.651], - [0.0, 0.0, 0.993, 0.007], - [0.004, 0.004, 0.713, 0.279], - ], - BACH1: [ - [0.015, 0.025, 0.121, 0.839], - [0.081, 0.013, 0.827, 0.079], - [0.72, 0.246, 0.006, 0.027], - [0.196, 0.002, 0.749, 0.054], - [0.005, 0.0, 0.008, 0.988], - [0.039, 0.907, 0.0, 0.054], - [0.915, 0.0, 0.056, 0.029], - [0.036, 0.263, 0.323, 0.377], - ], - HOXA9: [ - [0.209, 0.012, 0.025, 0.754], - [0.115, 0.014, 0.802, 0.068], - [0.974, 0.006, 0.009, 0.011], - [0.028, 0.008, 0.028, 0.935], - [0.085, 0.008, 0.049, 0.858], - [0.077, 0.072, 0.162, 0.689], - [0.978, 0.001, 0.02, 0.002], - [0.027, 0.152, 0.042, 0.779], - [0.224, 0.044, 0.465, 0.267], - [0.268, 0.062, 0.458, 0.211], - ], - TEAD1: [ - [0.255, 0.071, 0.053, 0.621], - [0.006, 0.0, 0.987, 0.007], - [0.006, 0.018, 0.976, 0.0], - [0.816, 0.052, 0.0, 0.131], - [0.998, 0.0, 0.0, 0.002], - [0.0, 0.009, 0.0, 0.991], - [0.0, 0.073, 0.61, 0.317], - [0.043, 0.353, 0.03, 0.573], - ], - ATOH8: [ - [0.462, 0.401, 0.137, 0.0], - [0.004, 0.996, 0.0, 0.0], - [0.999, 0.0, 0.0, 0.001], - [0.0, 0.109, 0.729, 0.162], - [0.063, 0.917, 0.018, 0.003], - [0.0, 0.01, 0.001, 0.988], - [0.0, 0.006, 0.994, 0.0], - [0.045, 0.346, 0.236, 0.372], - [0.096, 0.12, 0.199, 0.585], - [0.104, 0.208, 0.396, 0.293], - [0.22, 0.424, 0.152, 0.204], - [0.092, 0.366, 0.43, 0.111], - ], - NR2C1: [ - [0.366, 0.124, 0.48, 0.03], - [0.608, 0.002, 0.39, 0.0], - [0.0, 0.001, 0.999, 0.0], - [0.0, 0.0, 0.995, 0.005], - [0.0, 0.0, 0.0, 1.0], - [0.0, 0.984, 0.0, 0.016], - [0.974, 0.0, 0.026, 0.0], - ], - E2F7: [ - [0.176, 0.098, 0.214, 0.511], - [0.06, 0.345, 0.595, 0.0], - [0.041, 0.047, 0.9, 0.013], - [0.058, 0.932, 0.0, 0.01], - [0.014, 0.034, 0.927, 0.025], - [0.08, 0.208, 0.703, 0.008], - [0.023, 0.102, 0.866, 0.009], - [0.941, 0.008, 0.009, 0.041], - [0.642, 0.075, 0.215, 0.069], - ], - SOX2: [ - [0.98, 0.001, 0.0, 0.019], - [0.0, 0.919, 0.024, 0.057], - [0.999, 0.0, 0.0, 0.001], - [1.0, 0.0, 0.0, 0.0], - [0.57, 0.003, 0.001, 0.426], - [0.068, 0.008, 0.924, 0.001], - [0.332, 0.201, 0.418, 0.048], - ], - CTCFL: [ - [0.071, 0.788, 0.103, 0.039], - [0.032, 0.915, 0.039, 0.014], - [0.452, 0.093, 0.31, 0.145], - [0.065, 0.547, 0.37, 0.019], - [0.143, 0.457, 0.111, 0.289], - [0.723, 0.111, 0.105, 0.061], - [0.005, 0.019, 0.972, 0.003], - [0.243, 0.025, 0.722, 0.011], - [0.056, 0.135, 0.594, 0.215], - [0.006, 0.025, 0.958, 0.012], - [0.013, 0.043, 0.903, 0.041], - [0.106, 0.846, 0.011, 0.038], - [0.223, 0.046, 0.692, 0.039], - [0.065, 0.607, 0.244, 0.085], - ], - PKNOX1: [ - [0.159, 0.576, 0.136, 0.129], - [0.176, 0.241, 0.031, 0.552], - [0.293, 0.011, 0.682, 0.014], - [0.0, 0.223, 0.005, 0.772], - [0.114, 0.806, 0.041, 0.039], - [0.773, 0.099, 0.007, 0.121], - [0.528, 0.213, 0.215, 0.044], - [0.004, 0.004, 0.0, 0.992], - [0.003, 0.982, 0.0, 0.015], - [0.836, 0.027, 0.01, 0.128], - ], - NFKB1: [ - [0.044, 0.011, 0.936, 0.009], - [0.0, 0.0, 1.0, 0.0], - [0.0, 0.0, 0.978, 0.022], - [0.402, 0.0, 0.572, 0.026], - [0.7, 0.088, 0.154, 0.057], - [0.559, 0.038, 0.056, 0.347], - [0.18, 0.153, 0.132, 0.535], - [0.08, 0.436, 0.029, 0.454], - [0.105, 0.825, 0.001, 0.069], - [0.013, 0.968, 0.001, 0.018], - [0.103, 0.801, 0.024, 0.072], - ], - ISL1: [ - [0.0, 0.828, 0.017, 0.156], - [0.474, 0.403, 0.003, 0.121], - [0.984, 0.014, 0.002, 0.0], - [0.0, 0.0, 0.0, 1.0], - [0.0, 0.0, 0.0, 0.999], - [0.976, 0.0, 0.0, 0.024], - ], - HLF: [ - [0.295, 0.158, 0.526, 0.021], - [0.0, 0.001, 0.0, 0.999], - [0.0, 0.0, 0.002, 0.998], - [0.585, 0.003, 0.409, 0.003], - [0.004, 0.531, 0.009, 0.456], - [0.607, 0.013, 0.38, 0.0], - [0.003, 0.243, 0.002, 0.752], - [0.92, 0.079, 0.001, 0.0], - [1.0, 0.0, 0.0, 0.0], - [0.027, 0.508, 0.167, 0.298], - ], - ATF4: [ - [0.606, 0.118, 0.244, 0.032], - [0.0, 0.001, 0.0, 0.999], - [0.0, 0.0, 0.056, 0.944], - [0.219, 0.002, 0.558, 0.221], - [0.007, 0.992, 0.0, 0.0], - [0.928, 0.017, 0.053, 0.002], - [0.01, 0.017, 0.011, 0.962], - [0.043, 0.948, 0.009, 0.001], - [0.985, 0.0, 0.014, 0.001], - [0.01, 0.195, 0.209, 0.586], - ], - RARG: [ - [0.58, 0.02, 0.397, 0.003], - [0.019, 0.0, 0.851, 0.129], - [0.033, 0.0, 0.923, 0.044], - [0.007, 0.021, 0.09, 0.881], - [0.0, 0.9, 0.072, 0.028], - [0.94, 0.002, 0.046, 0.012], - [0.128, 0.392, 0.32, 0.16], - [0.257, 0.315, 0.258, 0.17], - [0.171, 0.242, 0.426, 0.161], - [0.127, 0.203, 0.102, 0.568], - [0.2, 0.064, 0.69, 0.046], - [0.466, 0.234, 0.18, 0.119], - [0.049, 0.705, 0.118, 0.127], - [0.157, 0.631, 0.093, 0.12], - ], - WT1: [ - [0.16, 0.355, 0.072, 0.413], - [0.364, 0.614, 0.016, 0.006], - [0.001, 0.998, 0.0, 0.001], - [0.0, 0.001, 0.056, 0.943], - [0.0, 0.995, 0.002, 0.003], - [0.0, 0.998, 0.0, 0.002], - [0.001, 0.938, 0.0, 0.061], - [0.201, 0.286, 0.053, 0.46], - ], - RUNX3: [ - [0.045, 0.073, 0.01, 0.872], - [0.0, 0.001, 0.999, 0.0], - [0.041, 0.124, 0.003, 0.832], - [0.0, 0.0, 1.0, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.0, 0.116, 0.112, 0.772], - [0.082, 0.235, 0.109, 0.574], - [0.335, 0.068, 0.173, 0.425], - ], - SP3: [ - [0.267, 0.147, 0.511, 0.075], - [0.121, 0.024, 0.631, 0.225], - [0.241, 0.0, 0.759, 0.001], - [0.002, 0.0, 0.997, 0.001], - [0.001, 0.002, 0.996, 0.001], - [0.183, 0.69, 0.0, 0.127], - [0.02, 0.004, 0.968, 0.008], - [0.008, 0.002, 0.867, 0.123], - [0.267, 0.027, 0.651, 0.056], - [0.076, 0.057, 0.836, 0.031], - [0.106, 0.81, 0.003, 0.08], - ], - HSF2: [ - [0.238, 0.574, 0.134, 0.054], - [0.083, 0.261, 0.14, 0.516], - [0.555, 0.025, 0.417, 0.003], - [0.0, 0.0, 1.0, 0.0], - [0.992, 0.002, 0.0, 0.007], - [0.922, 0.013, 0.019, 0.046], - [0.207, 0.292, 0.292, 0.209], - [0.251, 0.25, 0.325, 0.174], - [0.049, 0.035, 0.022, 0.894], - [0.007, 0.002, 0.029, 0.963], - [0.0, 1.0, 0.0, 0.0], - [0.0, 0.292, 0.008, 0.7], - [0.654, 0.022, 0.32, 0.003], - [0.0, 0.0, 0.997, 0.003], - [0.933, 0.013, 0.025, 0.029], - [0.83, 0.044, 0.091, 0.034], - [0.292, 0.28, 0.297, 0.13], - [0.261, 0.22, 0.284, 0.235], - [0.196, 0.207, 0.158, 0.439], - [0.146, 0.175, 0.217, 0.463], - [0.156, 0.568, 0.199, 0.077], - ], - SNAI2: [ - [0.028, 0.971, 0.0, 0.001], - [1.0, 0.0, 0.0, 0.0], - [0.0, 1.0, 0.0, 0.0], - [0.0, 1.0, 0.0, 0.0], - [0.0, 0.0, 0.0, 1.0], - [0.0, 0.0, 1.0, 0.0], - [0.004, 0.501, 0.0, 0.496], - ], - NR2F2: [ - [0.0, 0.083, 0.002, 0.915], - [0.007, 0.001, 0.991, 0.0], - [0.89, 0.076, 0.034, 0.0], - [0.003, 0.994, 0.003, 0.0], - [0.006, 0.993, 0.0, 0.0], - [0.001, 0.334, 0.023, 0.642], - [0.063, 0.458, 0.192, 0.288], - ], - BCL11A: [ - [0.077, 0.282, 0.094, 0.548], - [0.079, 0.745, 0.042, 0.135], - [0.84, 0.003, 0.099, 0.057], - [0.006, 0.642, 0.214, 0.138], - [0.067, 0.001, 0.001, 0.932], - [0.004, 0.0, 0.0, 0.996], - [0.001, 0.988, 0.001, 0.011], - [0.005, 0.85, 0.001, 0.144], - [0.009, 0.245, 0.156, 0.589], - [0.032, 0.538, 0.211, 0.218], - [0.197, 0.196, 0.044, 0.563], - [0.171, 0.163, 0.084, 0.582], - ], - MLX: [ - [0.172, 0.222, 0.508, 0.099], - [0.288, 0.142, 0.4, 0.17], - [0.112, 0.342, 0.245, 0.301], - [0.027, 0.794, 0.088, 0.09], - [0.716, 0.0, 0.269, 0.015], - [0.0, 0.924, 0.021, 0.054], - [0.198, 0.003, 0.799, 0.0], - [0.037, 0.0, 0.048, 0.915], - [0.037, 0.064, 0.795, 0.105], - [0.34, 0.275, 0.289, 0.096], - [0.099, 0.59, 0.186, 0.125], - ], - ETV7: [ - [0.227, 0.548, 0.222, 0.003], - [0.471, 0.477, 0.047, 0.005], - [0.012, 0.002, 0.984, 0.002], - [0.041, 0.06, 0.885, 0.013], - [0.992, 0.0, 0.002, 0.006], - [0.951, 0.021, 0.001, 0.027], - [0.265, 0.108, 0.623, 0.004], - [0.138, 0.296, 0.091, 0.474], - ], - FOXO1: [ - [0.06, 0.015, 0.021, 0.904], - [0.115, 0.0, 0.885, 0.0], - [0.006, 0.038, 0.001, 0.955], - [0.0, 0.0, 0.025, 0.975], - [0.0, 0.0, 0.109, 0.891], - [0.832, 0.071, 0.062, 0.034], - [0.001, 0.662, 0.0, 0.336], - ], - MEF2B: [ - [0.029, 0.8, 0.048, 0.123], - [0.003, 0.037, 0.064, 0.896], - [0.826, 0.029, 0.072, 0.073], - [0.193, 0.031, 0.032, 0.744], - [0.161, 0.034, 0.053, 0.752], - [0.101, 0.062, 0.017, 0.82], - [0.268, 0.111, 0.05, 0.572], - [0.153, 0.078, 0.1, 0.668], - [0.57, 0.026, 0.404, 0.001], - [0.133, 0.068, 0.668, 0.131], - ], - ZNF467: [ - [0.309, 0.075, 0.489, 0.127], - [0.246, 0.099, 0.506, 0.148], - [0.218, 0.135, 0.533, 0.114], - [0.28, 0.067, 0.577, 0.077], - [0.14, 0.073, 0.732, 0.055], - [0.124, 0.035, 0.821, 0.019], - [0.179, 0.023, 0.778, 0.02], - [0.665, 0.034, 0.289, 0.011], - [0.244, 0.02, 0.685, 0.051], - [0.241, 0.086, 0.654, 0.02], - [0.227, 0.076, 0.655, 0.042], - [0.147, 0.049, 0.705, 0.098], - [0.437, 0.227, 0.26, 0.076], - [0.28, 0.243, 0.39, 0.087], - [0.35, 0.116, 0.417, 0.117], - [0.185, 0.138, 0.595, 0.082], - [0.227, 0.093, 0.614, 0.065], - [0.395, 0.115, 0.446, 0.044], - [0.198, 0.104, 0.625, 0.073], - [0.234, 0.057, 0.636, 0.074], - [0.245, 0.054, 0.664, 0.038], - [0.198, 0.055, 0.707, 0.041], - [0.222, 0.061, 0.678, 0.039], - [0.324, 0.051, 0.605, 0.02], - [0.31, 0.179, 0.464, 0.046], - [0.249, 0.117, 0.569, 0.065], - [0.17, 0.127, 0.659, 0.045], - [0.389, 0.096, 0.425, 0.089], - [0.388, 0.098, 0.448, 0.066], - ], - KLF6: [ - [0.038, 0.073, 0.889, 0.0], - [0.001, 0.062, 0.937, 0.0], - [0.0, 0.001, 0.999, 0.0], - [0.033, 0.771, 0.0, 0.196], - [0.0, 0.0, 0.999, 0.001], - [0.045, 0.085, 0.549, 0.321], - [0.132, 0.155, 0.617, 0.096], - [0.091, 0.143, 0.617, 0.15], - [0.112, 0.526, 0.196, 0.166], - ], - RXRA: [ - [0.671, 0.023, 0.306, 0.0], - [0.005, 0.038, 0.949, 0.008], - [0.0, 0.001, 0.814, 0.185], - [0.01, 0.024, 0.029, 0.937], - [0.002, 0.888, 0.003, 0.107], - [0.968, 0.001, 0.031, 0.0], - ], - TFAP2A: [ - [0.172, 0.113, 0.593, 0.121], - [0.008, 0.612, 0.361, 0.019], - [0.0, 1.0, 0.0, 0.0], - [0.0, 0.949, 0.0, 0.051], - [0.023, 0.281, 0.039, 0.656], - [0.082, 0.373, 0.503, 0.043], - [0.525, 0.071, 0.387, 0.017], - [0.088, 0.0, 0.912, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.022, 0.578, 0.383, 0.018], - ], - FOSL1: [ - [0.423, 0.146, 0.36, 0.071], - [0.007, 0.063, 0.016, 0.915], - [0.002, 0.007, 0.942, 0.049], - [0.908, 0.074, 0.0, 0.018], - [0.064, 0.648, 0.099, 0.188], - [0.021, 0.0, 0.212, 0.768], - [0.129, 0.847, 0.002, 0.023], - [0.796, 0.137, 0.034, 0.032], - ], - GATA1: [ - [0.658, 0.028, 0.012, 0.302], - [0.0, 0.0, 1.0, 0.0], - [1.0, 0.0, 0.0, 0.0], - [0.0, 0.0, 0.0, 1.0], - [0.949, 0.0, 0.0, 0.051], - [0.858, 0.011, 0.093, 0.037], - [0.148, 0.195, 0.543, 0.114], - ], - JUN: [ - [0.029, 0.054, 0.008, 0.909], - [0.017, 0.009, 0.899, 0.076], - [0.967, 0.027, 0.0, 0.006], - [0.076, 0.515, 0.342, 0.067], - [0.082, 0.037, 0.078, 0.802], - [0.108, 0.815, 0.058, 0.018], - [0.841, 0.022, 0.098, 0.039], - ], - NFE2L2: [ - [0.586, 0.114, 0.282, 0.019], - [0.008, 0.104, 0.0, 0.888], - [0.009, 0.008, 0.954, 0.029], - [0.931, 0.027, 0.027, 0.016], - [0.036, 0.7, 0.18, 0.084], - [0.165, 0.077, 0.084, 0.675], - [0.164, 0.612, 0.115, 0.11], - [0.619, 0.054, 0.156, 0.17], - [0.071, 0.0, 0.883, 0.045], - [0.001, 0.957, 0.013, 0.029], - [0.697, 0.014, 0.167, 0.122], - ], - FOXJ2: [ - [0.0, 0.001, 0.013, 0.986], - [0.047, 0.0, 0.953, 0.0], - [0.003, 0.004, 0.0, 0.993], - [0.005, 0.0, 0.03, 0.965], - [0.0, 0.0, 0.123, 0.877], - [0.734, 0.068, 0.133, 0.065], - [0.001, 0.542, 0.029, 0.427], - ], - TFE3: [ - [0.255, 0.14, 0.528, 0.077], - [0.096, 0.237, 0.126, 0.541], - [0.005, 0.986, 0.007, 0.002], - [0.811, 0.073, 0.075, 0.042], - [0.0, 0.737, 0.05, 0.213], - [0.234, 0.027, 0.733, 0.006], - [0.147, 0.131, 0.05, 0.672], - [0.012, 0.0, 0.962, 0.026], - ], - ZNF740: [ - [0.145, 0.142, 0.555, 0.158], - [0.118, 0.15, 0.587, 0.146], - [0.121, 0.114, 0.615, 0.15], - [0.091, 0.059, 0.607, 0.243], - [0.073, 0.029, 0.533, 0.365], - [0.0, 0.0, 0.999, 0.001], - [0.0, 0.0, 1.0, 0.0], - [0.001, 0.0, 0.999, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.115, 0.0, 0.658, 0.227], - [0.002, 0.0, 0.989, 0.009], - [0.151, 0.491, 0.096, 0.262], - [0.257, 0.177, 0.415, 0.152], - [0.143, 0.178, 0.538, 0.142], - ], - ELF4: [ - [0.567, 0.073, 0.237, 0.124], - [0.0, 0.83, 0.059, 0.11], - [0.007, 0.0, 0.0, 0.993], - [0.002, 0.001, 0.001, 0.997], - [0.0, 1.0, 0.0, 0.0], - [0.0, 1.0, 0.0, 0.0], - [0.001, 0.028, 0.459, 0.512], - [0.032, 0.206, 0.674, 0.088], - ], - ZNF257: [ - [0.043, 0.06, 0.815, 0.083], - [0.71, 0.094, 0.015, 0.18], - [0.017, 0.0, 0.982, 0.0], - [0.0, 0.0, 0.999, 0.001], - [0.201, 0.716, 0.001, 0.083], - [0.72, 0.0, 0.279, 0.0], - [1.0, 0.0, 0.0, 0.0], - [0.001, 0.003, 0.93, 0.066], - [0.413, 0.162, 0.409, 0.016], - [0.189, 0.126, 0.417, 0.267], - [0.153, 0.598, 0.137, 0.113], - ], - PAX3: [ - [0.368, 0.042, 0.192, 0.398], - [0.795, 0.096, 0.084, 0.025], - [0.982, 0.001, 0.002, 0.015], - [0.069, 0.082, 0.058, 0.791], - [0.009, 0.476, 0.184, 0.332], - [0.465, 0.156, 0.375, 0.003], - [0.86, 0.0, 0.076, 0.064], - [0.009, 0.014, 0.008, 0.969], - [0.014, 0.114, 0.122, 0.749], - ], - EGR1: [ - [0.16, 0.083, 0.737, 0.02], - [0.179, 0.485, 0.113, 0.223], - [0.007, 0.0, 0.993, 0.0], - [0.012, 0.028, 0.422, 0.538], - [0.087, 0.019, 0.888, 0.006], - [0.005, 0.002, 0.982, 0.011], - [0.008, 0.0, 0.989, 0.003], - [0.239, 0.48, 0.002, 0.278], - [0.051, 0.019, 0.895, 0.035], - [0.064, 0.052, 0.694, 0.189], - ], - NFYB: [ - [0.321, 0.231, 0.416, 0.032], - [0.563, 0.035, 0.337, 0.065], - [0.0, 1.0, 0.0, 0.0], - [0.0, 0.998, 0.002, 0.0], - [0.984, 0.0, 0.0, 0.016], - [0.995, 0.001, 0.003, 0.001], - [0.0, 0.013, 0.0, 0.987], - [0.059, 0.746, 0.173, 0.022], - [0.737, 0.046, 0.212, 0.005], - [0.098, 0.136, 0.725, 0.04], - [0.303, 0.454, 0.137, 0.106], - [0.42, 0.063, 0.342, 0.176], - [0.114, 0.428, 0.304, 0.154], - [0.114, 0.265, 0.265, 0.356], - [0.192, 0.49, 0.184, 0.134], - [0.177, 0.159, 0.2, 0.464], - [0.109, 0.21, 0.573, 0.108], - ], - ZEB1: [ - [0.046, 0.473, 0.011, 0.47], - [0.806, 0.003, 0.001, 0.19], - [0.003, 0.955, 0.001, 0.042], - [0.008, 0.97, 0.007, 0.016], - [0.011, 0.0, 0.0, 0.989], - [0.081, 0.018, 0.808, 0.093], - [0.06, 0.16, 0.332, 0.448], - ], - RFX2: [ - [0.141, 0.001, 0.85, 0.008], - [0.028, 0.094, 0.1, 0.778], - [0.125, 0.246, 0.022, 0.607], - [0.182, 0.03, 0.573, 0.215], - [0.023, 0.835, 0.051, 0.091], - [0.0, 0.736, 0.04, 0.224], - [0.621, 0.138, 0.102, 0.139], - [0.235, 0.054, 0.244, 0.467], - [0.061, 0.08, 0.858, 0.001], - [0.133, 0.068, 0.757, 0.043], - [0.239, 0.375, 0.244, 0.142], - [0.558, 0.081, 0.271, 0.09], - [0.595, 0.18, 0.074, 0.151], - [0.177, 0.546, 0.023, 0.254], - ], - THAP11: [ - [0.037, 0.215, 0.39, 0.358], - [0.099, 0.733, 0.093, 0.075], - [0.008, 0.191, 0.008, 0.793], - [0.009, 0.01, 0.959, 0.022], - [0.006, 0.005, 0.977, 0.011], - [0.036, 0.002, 0.946, 0.016], - [0.834, 0.037, 0.075, 0.054], - [0.472, 0.136, 0.319, 0.074], - [0.366, 0.095, 0.096, 0.443], - [0.011, 0.094, 0.026, 0.869], - [0.009, 0.002, 0.988, 0.002], - [0.025, 0.043, 0.043, 0.889], - [0.935, 0.001, 0.058, 0.006], - [0.004, 0.002, 0.993, 0.001], - [0.0, 0.008, 0.01, 0.982], - [0.029, 0.504, 0.026, 0.442], - [0.032, 0.574, 0.022, 0.371], - ], - NR4A1: [ - [0.01, 0.055, 0.001, 0.934], - [0.084, 0.0, 0.916, 0.0], - [0.793, 0.104, 0.101, 0.003], - [0.033, 0.954, 0.0, 0.013], - [0.289, 0.699, 0.0, 0.012], - [0.0, 0.0, 0.0, 0.999], - [0.015, 0.0, 0.0, 0.985], - [0.058, 0.082, 0.0, 0.86], - ], - TFDP1: [ - [0.104, 0.143, 0.219, 0.533], - [0.004, 0.751, 0.244, 0.0], - [0.0, 0.672, 0.327, 0.0], - [0.001, 0.998, 0.0, 0.001], - [0.001, 0.0, 0.976, 0.023], - [0.0, 0.999, 0.001, 0.0], - [0.0, 0.633, 0.267, 0.1], - ], - MYOG: [ - [0.481, 0.177, 0.32, 0.022], - [0.596, 0.082, 0.272, 0.05], - [0.035, 0.932, 0.017, 0.017], - [0.953, 0.009, 0.029, 0.008], - [0.046, 0.019, 0.883, 0.052], - [0.047, 0.832, 0.109, 0.012], - [0.012, 0.011, 0.004, 0.973], - [0.001, 0.003, 0.98, 0.017], - ], - HOXA13: [ - [0.066, 0.093, 0.219, 0.622], - [0.003, 0.119, 0.037, 0.84], - [0.028, 0.059, 0.003, 0.911], - [0.04, 0.077, 0.01, 0.873], - [0.856, 0.099, 0.045, 0.0], - [0.002, 0.065, 0.057, 0.875], - [0.256, 0.158, 0.252, 0.335], - [0.245, 0.01, 0.718, 0.027], - [0.055, 0.423, 0.396, 0.126], - ], - PAX7: [ - [0.489, 0.059, 0.131, 0.321], - [0.853, 0.061, 0.07, 0.016], - [0.983, 0.0, 0.0, 0.017], - [0.059, 0.04, 0.002, 0.9], - [0.009, 0.499, 0.24, 0.251], - [0.387, 0.237, 0.366, 0.01], - [0.907, 0.001, 0.071, 0.022], - [0.103, 0.005, 0.009, 0.883], - [0.001, 0.057, 0.119, 0.823], - ], - SCRT1: [ - [0.189, 0.566, 0.108, 0.136], - [0.948, 0.001, 0.045, 0.006], - [0.023, 0.958, 0.002, 0.017], - [0.012, 0.779, 0.004, 0.205], - [0.015, 0.0, 0.001, 0.984], - [0.0, 0.0, 1.0, 0.0], - [0.012, 0.031, 0.0, 0.957], - [0.085, 0.035, 0.186, 0.693], - [0.047, 0.01, 0.932, 0.012], - [0.372, 0.431, 0.121, 0.076], - ], - HAND2: [ - [0.302, 0.43, 0.218, 0.051], - [0.028, 0.961, 0.01, 0.001], - [0.972, 0.0, 0.025, 0.003], - [0.0, 0.009, 0.296, 0.695], - [0.149, 0.743, 0.106, 0.002], - [0.0, 0.001, 0.0, 0.999], - [0.0, 0.0, 0.999, 0.0], - [0.005, 0.204, 0.496, 0.295], - ], - ZNF554: [ - [0.214, 0.094, 0.575, 0.117], - [0.175, 0.669, 0.104, 0.052], - [0.221, 0.081, 0.051, 0.647], - [0.011, 0.028, 0.927, 0.033], - [0.784, 0.01, 0.191, 0.015], - [0.055, 0.104, 0.835, 0.006], - [0.003, 0.374, 0.006, 0.617], - [0.007, 0.987, 0.002, 0.004], - [0.82, 0.034, 0.112, 0.033], - ], - SOX10: [ - [0.839, 0.083, 0.058, 0.02], - [0.786, 0.034, 0.061, 0.119], - [0.467, 0.038, 0.188, 0.307], - [0.263, 0.048, 0.568, 0.12], - [0.251, 0.281, 0.379, 0.088], - [0.25, 0.231, 0.28, 0.239], - [0.151, 0.308, 0.244, 0.298], - [0.051, 0.41, 0.239, 0.3], - [0.052, 0.699, 0.056, 0.193], - [0.426, 0.077, 0.009, 0.488], - [0.006, 0.076, 0.01, 0.908], - [0.0, 0.0, 0.0, 1.0], - [0.043, 0.009, 0.949, 0.0], - [0.002, 0.0, 0.0, 0.998], - [0.123, 0.157, 0.192, 0.528], - [0.108, 0.394, 0.064, 0.434], - ], - NR5A2: [ - [0.056, 0.173, 0.041, 0.729], - [0.131, 0.034, 0.824, 0.011], - [0.33, 0.08, 0.387, 0.202], - [0.013, 0.981, 0.0, 0.005], - [0.026, 0.972, 0.0, 0.002], - [0.04, 0.092, 0.004, 0.864], - [0.004, 0.034, 0.0, 0.962], - [0.0, 0.114, 0.886, 0.0], - [0.627, 0.054, 0.229, 0.09], - ], - ETV6: [ - [0.551, 0.119, 0.232, 0.098], - [0.142, 0.469, 0.363, 0.026], - [0.664, 0.245, 0.089, 0.002], - [0.028, 0.001, 0.971, 0.0], - [0.018, 0.0, 0.98, 0.002], - [0.994, 0.003, 0.001, 0.002], - [0.954, 0.0, 0.001, 0.045], - [0.274, 0.031, 0.694, 0.001], - [0.067, 0.229, 0.054, 0.651], - ], - ZFP64: [ - [0.265, 0.004, 0.683, 0.048], - [0.018, 0.976, 0.001, 0.005], - [0.007, 0.989, 0.0, 0.004], - [0.034, 0.946, 0.0, 0.019], - [0.13, 0.201, 0.438, 0.231], - [0.051, 0.0, 0.925, 0.024], - [0.047, 0.049, 0.837, 0.067], - [0.524, 0.198, 0.22, 0.058], - [0.391, 0.378, 0.201, 0.03], - [0.14, 0.394, 0.104, 0.362], - [0.188, 0.45, 0.233, 0.129], - [0.233, 0.192, 0.272, 0.303], - [0.078, 0.16, 0.691, 0.071], - ], - TP73: [ - [0.265, 0.047, 0.534, 0.155], - [0.428, 0.018, 0.506, 0.048], - [0.017, 0.98, 0.002, 0.001], - [0.78, 0.012, 0.115, 0.093], - [0.293, 0.039, 0.094, 0.574], - [0.0, 0.0, 0.97, 0.03], - [0.084, 0.374, 0.0, 0.541], - [0.098, 0.477, 0.075, 0.351], - [0.139, 0.332, 0.202, 0.327], - [0.302, 0.173, 0.391, 0.134], - [0.303, 0.121, 0.437, 0.138], - [0.498, 0.039, 0.356, 0.107], - [0.039, 0.947, 0.0, 0.014], - [0.623, 0.073, 0.048, 0.256], - [0.16, 0.132, 0.094, 0.615], - [0.064, 0.036, 0.849, 0.051], - [0.134, 0.432, 0.07, 0.364], - [0.199, 0.491, 0.085, 0.226], - ], - THRA: [ - [0.031, 0.06, 0.01, 0.899], - [0.053, 0.065, 0.875, 0.007], - [0.473, 0.033, 0.077, 0.417], - [0.017, 0.981, 0.0, 0.002], - [0.002, 0.998, 0.0, 0.0], - [0.002, 0.18, 0.002, 0.816], - [0.041, 0.631, 0.132, 0.196], - [0.772, 0.021, 0.194, 0.014], - [0.225, 0.204, 0.321, 0.25], - [0.346, 0.144, 0.297, 0.213], - [0.033, 0.058, 0.017, 0.892], - [0.173, 0.072, 0.731, 0.024], - [0.832, 0.065, 0.091, 0.012], - [0.093, 0.882, 0.0, 0.026], - [0.012, 0.959, 0.0, 0.029], - ], - ZNF140: [ - [0.198, 0.103, 0.54, 0.159], - [0.193, 0.177, 0.26, 0.37], - [0.406, 0.152, 0.29, 0.152], - [0.225, 0.183, 0.24, 0.352], - [0.448, 0.193, 0.183, 0.176], - [0.179, 0.174, 0.168, 0.479], - [0.443, 0.135, 0.265, 0.156], - [0.197, 0.387, 0.229, 0.186], - [0.245, 0.393, 0.206, 0.155], - [0.241, 0.139, 0.214, 0.406], - [0.487, 0.09, 0.215, 0.207], - [0.131, 0.018, 0.669, 0.183], - [0.139, 0.0, 0.859, 0.002], - [0.795, 0.012, 0.191, 0.002], - [0.039, 0.115, 0.824, 0.022], - [0.028, 0.487, 0.03, 0.455], - [0.214, 0.002, 0.698, 0.086], - [0.007, 0.0, 0.902, 0.091], - [0.997, 0.0, 0.0, 0.002], - [0.953, 0.004, 0.041, 0.002], - [0.004, 0.066, 0.039, 0.89], - [0.09, 0.041, 0.055, 0.814], - [0.032, 0.006, 0.95, 0.012], - [0.047, 0.749, 0.04, 0.164], - [0.211, 0.129, 0.062, 0.598], - [0.215, 0.146, 0.529, 0.11], - ], - ZNF549: [ - [0.077, 0.16, 0.127, 0.637], - [0.073, 0.632, 0.038, 0.257], - [0.918, 0.027, 0.032, 0.023], - [0.108, 0.045, 0.359, 0.487], - [0.115, 0.228, 0.447, 0.21], - [0.446, 0.177, 0.224, 0.152], - [0.626, 0.022, 0.23, 0.122], - [0.09, 0.482, 0.054, 0.374], - [0.329, 0.223, 0.039, 0.409], - [0.186, 0.006, 0.751, 0.057], - [0.024, 0.058, 0.881, 0.037], - [0.136, 0.114, 0.733, 0.017], - [0.067, 0.883, 0.014, 0.036], - [0.788, 0.052, 0.088, 0.072], - [0.034, 0.019, 0.927, 0.02], - [0.05, 0.821, 0.069, 0.061], - ], - MEF2C: [ - [0.049, 0.721, 0.041, 0.189], - [0.001, 0.01, 0.0, 0.989], - [0.973, 0.0, 0.004, 0.022], - [0.165, 0.0, 0.0, 0.835], - [0.214, 0.009, 0.002, 0.774], - [0.16, 0.04, 0.003, 0.798], - [0.284, 0.084, 0.013, 0.619], - [0.146, 0.033, 0.07, 0.751], - [0.66, 0.0, 0.337, 0.003], - [0.144, 0.054, 0.649, 0.152], - ], - GFI1: [ - [0.593, 0.23, 0.087, 0.09], - [0.991, 0.0, 0.0, 0.008], - [0.999, 0.0, 0.0, 0.0], - [0.002, 0.141, 0.0, 0.857], - [0.0, 0.996, 0.0, 0.004], - [0.562, 0.0, 0.004, 0.434], - [0.081, 0.648, 0.268, 0.002], - [0.581, 0.006, 0.095, 0.318], - [0.086, 0.03, 0.792, 0.092], - ], - ZNF768: [ - [0.069, 0.697, 0.144, 0.09], - [0.049, 0.181, 0.074, 0.696], - [0.057, 0.098, 0.653, 0.192], - [0.061, 0.085, 0.183, 0.671], - [0.054, 0.06, 0.69, 0.196], - [0.061, 0.107, 0.184, 0.648], - [0.13, 0.083, 0.609, 0.178], - [0.539, 0.088, 0.232, 0.141], - [0.133, 0.595, 0.09, 0.182], - [0.105, 0.58, 0.073, 0.242], - [0.088, 0.222, 0.086, 0.604], - [0.087, 0.179, 0.104, 0.63], - [0.214, 0.113, 0.504, 0.17], - [0.206, 0.09, 0.608, 0.096], - [0.206, 0.098, 0.599, 0.097], - [0.124, 0.54, 0.151, 0.185], - [0.624, 0.132, 0.124, 0.119], - [0.637, 0.089, 0.165, 0.11], - [0.221, 0.105, 0.577, 0.097], - [0.095, 0.138, 0.109, 0.658], - [0.11, 0.28, 0.145, 0.466], - [0.509, 0.141, 0.205, 0.144], - [0.121, 0.693, 0.08, 0.105], - [0.088, 0.147, 0.084, 0.681], - [0.087, 0.205, 0.1, 0.608], - [0.575, 0.11, 0.192, 0.123], - [0.606, 0.219, 0.148, 0.027], - [0.059, 0.828, 0.035, 0.079], - [0.046, 0.687, 0.119, 0.148], - [0.031, 0.023, 0.019, 0.928], - [0.008, 0.896, 0.015, 0.081], - [0.004, 0.014, 0.028, 0.953], - [0.0, 0.999, 0.001, 0.0], - [0.006, 0.002, 0.002, 0.99], - [0.004, 0.003, 0.991, 0.002], - [0.395, 0.008, 0.206, 0.391], - [0.1, 0.019, 0.613, 0.269], - [0.022, 0.741, 0.033, 0.205], - [0.093, 0.557, 0.029, 0.32], - [0.097, 0.172, 0.082, 0.65], - [0.116, 0.493, 0.126, 0.265], - [0.428, 0.15, 0.171, 0.251], - [0.193, 0.159, 0.411, 0.237], - [0.122, 0.186, 0.113, 0.578], - [0.108, 0.202, 0.128, 0.562], - [0.123, 0.211, 0.12, 0.546], - [0.126, 0.437, 0.112, 0.325], - [0.148, 0.444, 0.103, 0.306], - [0.185, 0.224, 0.105, 0.486], - [0.181, 0.408, 0.126, 0.285], - [0.402, 0.216, 0.133, 0.249], - [0.169, 0.204, 0.146, 0.481], - [0.173, 0.379, 0.164, 0.284], - [0.193, 0.156, 0.173, 0.478], - [0.28, 0.136, 0.352, 0.232], - [0.275, 0.166, 0.164, 0.394], - [0.499, 0.133, 0.176, 0.191], - [0.526, 0.133, 0.159, 0.183], - ], - ZNF350: [ - [0.087, 0.21, 0.126, 0.576], - [0.295, 0.09, 0.254, 0.361], - [0.256, 0.126, 0.578, 0.04], - [0.176, 0.095, 0.639, 0.089], - [0.085, 0.118, 0.208, 0.589], - [0.19, 0.5, 0.029, 0.281], - [0.729, 0.11, 0.054, 0.108], - [0.149, 0.114, 0.048, 0.689], - [0.912, 0.048, 0.006, 0.034], - [0.927, 0.045, 0.017, 0.01], - [0.987, 0.004, 0.007, 0.002], - [0.859, 0.01, 0.113, 0.018], - [0.384, 0.047, 0.486, 0.082], - [0.325, 0.054, 0.537, 0.084], - [0.276, 0.178, 0.386, 0.16], - [0.185, 0.645, 0.077, 0.093], - ], - SMAD4: [ - [0.078, 0.189, 0.616, 0.117], - [0.132, 0.17, 0.081, 0.617], - [0.03, 0.077, 0.833, 0.06], - [0.25, 0.38, 0.16, 0.21], - [0.037, 0.622, 0.19, 0.15], - [0.998, 0.001, 0.0, 0.0], - [0.001, 0.0, 0.998, 0.0], - [0.777, 0.16, 0.008, 0.055], - [0.0, 1.0, 0.0, 0.0], - [0.518, 0.053, 0.162, 0.266], - ], - CREB1: [ - [0.009, 0.027, 0.007, 0.957], - [0.0, 0.003, 0.994, 0.004], - [0.999, 0.0, 0.0, 0.001], - [0.0, 0.999, 0.0, 0.001], - [0.038, 0.338, 0.335, 0.29], - [0.075, 0.415, 0.051, 0.459], - ], - ELF5: [ - [0.242, 0.201, 0.49, 0.067], - [0.487, 0.138, 0.229, 0.146], - [0.876, 0.001, 0.022, 0.1], - [0.108, 0.431, 0.252, 0.209], - [0.224, 0.425, 0.351, 0.0], - [0.657, 0.314, 0.03, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.001, 0.0, 0.999, 0.0], - [1.0, 0.0, 0.0, 0.0], - [1.0, 0.0, 0.0, 0.0], - [0.114, 0.0, 0.886, 0.0], - [0.097, 0.16, 0.077, 0.667], - ], - TWIST1: [ - [0.394, 0.439, 0.138, 0.029], - [0.002, 0.998, 0.0, 0.0], - [1.0, 0.0, 0.0, 0.0], - [0.0, 0.119, 0.431, 0.45], - [0.263, 0.575, 0.162, 0.001], - [0.0, 0.002, 0.0, 0.998], - [0.0, 0.0, 0.999, 0.001], - [0.002, 0.254, 0.437, 0.307], - ], - GFI1B: [ - [0.634, 0.221, 0.086, 0.06], - [0.975, 0.0, 0.005, 0.019], - [1.0, 0.0, 0.0, 0.0], - [0.002, 0.049, 0.004, 0.945], - [0.0, 0.999, 0.0, 0.001], - [0.655, 0.01, 0.0, 0.335], - [0.133, 0.482, 0.376, 0.009], - [0.487, 0.03, 0.143, 0.34], - [0.1, 0.043, 0.777, 0.08], - [0.122, 0.559, 0.1, 0.22], - ], - NFATC1: [ - [0.564, 0.114, 0.207, 0.116], - [0.596, 0.117, 0.22, 0.067], - [0.125, 0.13, 0.027, 0.717], - [0.004, 0.004, 0.991, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.972, 0.009, 0.007, 0.012], - [0.967, 0.0, 0.024, 0.009], - [0.688, 0.057, 0.054, 0.2], - [0.411, 0.223, 0.212, 0.154], - [0.434, 0.035, 0.191, 0.341], - [0.391, 0.159, 0.168, 0.282], - [0.21, 0.215, 0.065, 0.509], - ], - ZNF770: [ - [0.696, 0.102, 0.142, 0.06], - [0.491, 0.357, 0.078, 0.074], - [0.068, 0.722, 0.071, 0.139], - [0.061, 0.13, 0.062, 0.746], - [0.032, 0.778, 0.065, 0.124], - [0.039, 0.795, 0.055, 0.11], - [0.061, 0.217, 0.069, 0.653], - [0.166, 0.087, 0.669, 0.078], - [0.131, 0.081, 0.731, 0.057], - [0.108, 0.293, 0.548, 0.051], - [0.048, 0.74, 0.082, 0.13], - [0.034, 0.094, 0.074, 0.798], - [0.046, 0.812, 0.063, 0.078], - [0.789, 0.091, 0.067, 0.054], - [0.74, 0.097, 0.109, 0.055], - [0.082, 0.1, 0.743, 0.074], - [0.049, 0.426, 0.081, 0.443], - [0.214, 0.155, 0.576, 0.055], - [0.851, 0.002, 0.141, 0.006], - [0.008, 0.001, 0.213, 0.779], - [0.001, 0.998, 0.0, 0.001], - [0.0, 1.0, 0.0, 0.0], - [0.0, 0.0, 0.0, 1.0], - [0.0, 0.995, 0.0, 0.005], - [0.003, 0.939, 0.006, 0.051], - [0.088, 0.464, 0.035, 0.413], - [0.399, 0.092, 0.407, 0.102], - [0.039, 0.759, 0.045, 0.156], - [0.032, 0.814, 0.038, 0.117], - [0.023, 0.092, 0.055, 0.829], - [0.028, 0.682, 0.065, 0.225], - [0.61, 0.085, 0.274, 0.031], - [0.037, 0.041, 0.892, 0.03], - [0.031, 0.88, 0.073, 0.017], - [0.018, 0.911, 0.053, 0.019], - [0.019, 0.054, 0.051, 0.876], - [0.011, 0.881, 0.043, 0.065], - [0.016, 0.872, 0.042, 0.069], - [0.084, 0.642, 0.058, 0.215], - [0.588, 0.086, 0.263, 0.064], - [0.779, 0.08, 0.092, 0.049], - [0.434, 0.085, 0.421, 0.06], - [0.083, 0.085, 0.405, 0.427], - [0.418, 0.102, 0.098, 0.382], - [0.105, 0.089, 0.718, 0.088], - [0.048, 0.714, 0.086, 0.152], - [0.049, 0.112, 0.072, 0.767], - [0.136, 0.078, 0.708, 0.078], - [0.123, 0.094, 0.726, 0.057], - [0.126, 0.093, 0.72, 0.061], - [0.742, 0.082, 0.096, 0.08], - [0.073, 0.38, 0.091, 0.455], - [0.08, 0.173, 0.075, 0.672], - [0.712, 0.12, 0.097, 0.071], - [0.099, 0.643, 0.079, 0.179], - [0.724, 0.114, 0.096, 0.065], - [0.142, 0.088, 0.703, 0.066], - [0.128, 0.1, 0.697, 0.075], - [0.088, 0.517, 0.106, 0.289], - [0.399, 0.131, 0.373, 0.097], - [0.089, 0.242, 0.114, 0.555], - [0.232, 0.118, 0.56, 0.09], - ], - STAT5A: [ - [0.0, 0.01, 0.0, 0.99], - [0.075, 0.013, 0.003, 0.91], - [0.001, 0.998, 0.0, 0.0], - [0.058, 0.361, 0.019, 0.561], - [0.303, 0.231, 0.171, 0.294], - [0.506, 0.016, 0.407, 0.07], - [0.006, 0.0, 0.98, 0.015], - [0.877, 0.001, 0.007, 0.115], - [0.994, 0.0, 0.006, 0.0], - ], - ZIM3: [ - [0.974, 0.001, 0.021, 0.004], - [0.932, 0.003, 0.019, 0.046], - [0.089, 0.871, 0.039, 0.001], - [1.0, 0.0, 0.0, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.88, 0.075, 0.011, 0.035], - [0.993, 0.001, 0.004, 0.002], - [0.723, 0.031, 0.048, 0.198], - [0.157, 0.293, 0.226, 0.324], - [0.078, 0.902, 0.002, 0.018], - [0.107, 0.376, 0.03, 0.487], - [0.479, 0.245, 0.123, 0.153], - [0.42, 0.221, 0.17, 0.188], - [0.345, 0.156, 0.217, 0.281], - [0.488, 0.155, 0.178, 0.18], - [0.344, 0.187, 0.112, 0.357], - [0.32, 0.225, 0.219, 0.236], - [0.637, 0.13, 0.123, 0.11], - ], - KLF3: [ - [0.185, 0.083, 0.617, 0.116], - [0.157, 0.674, 0.098, 0.07], - [0.076, 0.761, 0.058, 0.104], - [0.406, 0.409, 0.108, 0.077], - [0.006, 0.982, 0.0, 0.012], - [0.366, 0.0, 0.539, 0.094], - [0.005, 0.98, 0.0, 0.014], - [0.0, 0.981, 0.019, 0.0], - [0.005, 0.826, 0.037, 0.132], - ], - ZNF18: [ - [0.292, 0.011, 0.617, 0.081], - [0.005, 0.013, 0.982, 0.0], - [0.012, 0.0, 0.002, 0.986], - [0.005, 0.002, 0.992, 0.001], - [0.046, 0.003, 0.089, 0.862], - [0.025, 0.001, 0.967, 0.007], - [0.925, 0.018, 0.001, 0.056], - [0.733, 0.028, 0.107, 0.131], - [0.012, 0.575, 0.152, 0.262], - ], - GATA4: [ - [0.033, 0.594, 0.207, 0.165], - [0.043, 0.085, 0.01, 0.862], - [0.115, 0.0, 0.0, 0.884], - [1.0, 0.0, 0.0, 0.0], - [0.005, 0.0, 0.0, 0.995], - [0.0, 1.0, 0.0, 0.0], - [0.114, 0.004, 0.002, 0.88], - ], - NEUROD1: [ - [0.296, 0.584, 0.12, 0.0], - [0.009, 0.991, 0.0, 0.0], - [0.992, 0.0, 0.002, 0.006], - [0.001, 0.045, 0.428, 0.526], - [0.237, 0.763, 0.0, 0.0], - [0.0, 0.0, 0.0, 1.0], - [0.0, 0.0, 1.0, 0.0], - [0.001, 0.257, 0.361, 0.382], - [0.068, 0.402, 0.09, 0.44], - ], - RELA: [ - [0.097, 0.018, 0.639, 0.246], - [0.0, 0.0, 0.989, 0.011], - [0.039, 0.0, 0.939, 0.022], - [0.586, 0.004, 0.401, 0.009], - [0.632, 0.149, 0.127, 0.092], - [0.377, 0.055, 0.04, 0.527], - [0.044, 0.051, 0.064, 0.841], - [0.003, 0.029, 0.04, 0.928], - [0.025, 0.499, 0.001, 0.475], - [0.064, 0.507, 0.058, 0.371], - ], - MYNN: [ - [0.123, 0.095, 0.698, 0.085], - [0.419, 0.104, 0.429, 0.047], - [0.01, 0.979, 0.003, 0.009], - [0.004, 0.129, 0.186, 0.68], - [0.038, 0.283, 0.19, 0.489], - [0.042, 0.114, 0.209, 0.635], - [0.019, 0.008, 0.101, 0.872], - [0.63, 0.134, 0.186, 0.049], - [0.227, 0.155, 0.137, 0.48], - [0.044, 0.292, 0.209, 0.455], - [0.148, 0.176, 0.129, 0.547], - [0.078, 0.214, 0.179, 0.528], - [0.115, 0.105, 0.652, 0.128], - [0.396, 0.214, 0.239, 0.15], - [0.437, 0.27, 0.083, 0.21], - [0.378, 0.124, 0.407, 0.09], - ], - ETV2: [ - [0.06, 0.546, 0.31, 0.084], - [0.165, 0.398, 0.182, 0.255], - [0.453, 0.117, 0.289, 0.141], - [0.004, 0.586, 0.037, 0.373], - [0.103, 0.0, 0.015, 0.882], - [0.0, 0.005, 0.0, 0.995], - [0.0, 0.999, 0.0, 0.001], - [0.0, 1.0, 0.0, 0.0], - [0.0, 0.005, 0.282, 0.713], - [0.003, 0.157, 0.711, 0.129], - [0.04, 0.325, 0.106, 0.529], - [0.114, 0.396, 0.092, 0.398], - [0.125, 0.252, 0.117, 0.506], - ], - RFX3: [ - [0.041, 0.011, 0.89, 0.058], - [0.026, 0.058, 0.019, 0.897], - [0.083, 0.149, 0.005, 0.763], - [0.161, 0.049, 0.634, 0.157], - [0.005, 0.88, 0.014, 0.101], - [0.022, 0.658, 0.017, 0.304], - [0.728, 0.092, 0.054, 0.125], - [0.131, 0.08, 0.266, 0.523], - [0.121, 0.024, 0.825, 0.031], - [0.143, 0.144, 0.66, 0.053], - [0.234, 0.428, 0.187, 0.151], - [0.605, 0.068, 0.246, 0.081], - [0.609, 0.203, 0.122, 0.065], - [0.132, 0.582, 0.092, 0.194], - ], - NFYC: [ - [0.403, 0.182, 0.364, 0.051], - [0.436, 0.056, 0.419, 0.089], - [0.006, 0.966, 0.0, 0.027], - [0.052, 0.902, 0.043, 0.004], - [0.917, 0.0, 0.037, 0.046], - [0.884, 0.037, 0.074, 0.006], - [0.0, 0.117, 0.019, 0.865], - [0.132, 0.581, 0.258, 0.029], - [0.566, 0.109, 0.309, 0.016], - [0.168, 0.201, 0.565, 0.066], - ], - SREBF1: [ - [0.18, 0.179, 0.538, 0.103], - [0.167, 0.327, 0.242, 0.264], - [0.066, 0.346, 0.34, 0.247], - [0.239, 0.301, 0.304, 0.156], - [0.129, 0.458, 0.258, 0.154], - [0.142, 0.21, 0.38, 0.268], - [0.287, 0.212, 0.289, 0.212], - [0.172, 0.285, 0.303, 0.24], - [0.251, 0.222, 0.42, 0.107], - [0.136, 0.244, 0.456, 0.164], - [0.254, 0.303, 0.382, 0.061], - [0.231, 0.119, 0.647, 0.003], - [0.04, 0.022, 0.056, 0.883], - [0.029, 0.361, 0.606, 0.005], - [0.341, 0.013, 0.572, 0.075], - [0.011, 0.448, 0.373, 0.168], - [0.054, 0.194, 0.744, 0.009], - [0.003, 0.226, 0.0, 0.771], - [0.0, 0.083, 0.906, 0.011], - [0.802, 0.049, 0.096, 0.053], - [0.033, 0.475, 0.086, 0.406], - [0.088, 0.476, 0.307, 0.128], - ], - HOXC9: [ - [0.423, 0.049, 0.273, 0.255], - [0.212, 0.29, 0.158, 0.339], - [0.333, 0.206, 0.091, 0.37], - [0.497, 0.152, 0.21, 0.141], - [0.368, 0.076, 0.333, 0.223], - [0.197, 0.429, 0.133, 0.241], - [0.39, 0.138, 0.186, 0.286], - [0.363, 0.135, 0.39, 0.113], - [0.422, 0.201, 0.179, 0.198], - [0.179, 0.045, 0.724, 0.052], - [0.046, 0.762, 0.002, 0.19], - [0.196, 0.51, 0.002, 0.292], - [0.65, 0.008, 0.34, 0.003], - [0.001, 0.035, 0.056, 0.908], - [0.567, 0.171, 0.036, 0.226], - [0.891, 0.029, 0.023, 0.057], - [0.744, 0.055, 0.076, 0.125], - [0.41, 0.063, 0.162, 0.365], - ], - CREB3L1: [ - [0.126, 0.083, 0.697, 0.094], - [0.109, 0.755, 0.004, 0.133], - [0.008, 0.928, 0.061, 0.003], - [0.937, 0.001, 0.031, 0.031], - [0.007, 0.945, 0.003, 0.045], - [0.093, 0.024, 0.877, 0.006], - [0.073, 0.121, 0.021, 0.785], - [0.121, 0.294, 0.504, 0.081], - [0.307, 0.121, 0.412, 0.16], - [0.183, 0.339, 0.227, 0.251], - [0.151, 0.555, 0.136, 0.159], - ], - ZNF418: [ - [0.103, 0.099, 0.335, 0.463], - [0.089, 0.037, 0.099, 0.775], - [0.058, 0.124, 0.781, 0.037], - [0.05, 0.709, 0.058, 0.184], - [0.054, 0.076, 0.004, 0.866], - [0.045, 0.052, 0.021, 0.882], - [0.052, 0.138, 0.153, 0.657], - [0.112, 0.11, 0.118, 0.661], - [0.647, 0.031, 0.262, 0.06], - [0.023, 0.023, 0.89, 0.064], - [0.093, 0.837, 0.017, 0.054], - [0.062, 0.599, 0.019, 0.32], - [0.32, 0.064, 0.107, 0.508], - [0.039, 0.727, 0.12, 0.114], - [0.211, 0.258, 0.039, 0.492], - [0.067, 0.155, 0.352, 0.426], - ], - ZNF263: [ - [0.013, 0.359, 0.592, 0.036], - [0.0, 0.002, 0.0, 0.997], - [0.002, 0.652, 0.346, 0.0], - [0.045, 0.954, 0.0, 0.001], - [0.0, 0.0, 0.004, 0.995], - [0.0, 1.0, 0.0, 0.0], - [0.007, 0.976, 0.011, 0.007], - [0.08, 0.78, 0.021, 0.118], - ], - MNT: [ - [0.468, 0.393, 0.126, 0.012], - [0.0, 1.0, 0.0, 0.0], - [1.0, 0.0, 0.0, 0.0], - [0.0, 0.409, 0.0, 0.591], - [0.0, 0.001, 0.999, 0.0], - [0.001, 0.0, 0.0, 0.999], - [0.0, 0.0, 1.0, 0.0], - ], - TCF7L2: [ - [0.656, 0.054, 0.156, 0.135], - [0.014, 0.482, 0.441, 0.063], - [0.653, 0.011, 0.001, 0.335], - [0.083, 0.009, 0.001, 0.908], - [0.058, 0.768, 0.147, 0.028], - [0.992, 0.0, 0.0, 0.008], - [0.937, 0.027, 0.036, 0.0], - [0.948, 0.0, 0.038, 0.013], - [0.118, 0.047, 0.824, 0.011], - ], - PAX6: [ - [0.377, 0.055, 0.54, 0.028], - [0.191, 0.222, 0.267, 0.32], - [0.008, 0.291, 0.319, 0.382], - [0.153, 0.606, 0.002, 0.239], - [0.805, 0.028, 0.122, 0.044], - [0.294, 0.253, 0.3, 0.153], - [0.023, 0.192, 0.024, 0.762], - [0.038, 0.476, 0.44, 0.047], - [0.765, 0.016, 0.189, 0.029], - [0.451, 0.077, 0.227, 0.245], - [0.013, 0.296, 0.68, 0.011], - [0.004, 0.747, 0.009, 0.24], - [0.404, 0.01, 0.511, 0.075], - [0.063, 0.052, 0.435, 0.45], - [0.533, 0.043, 0.375, 0.049], - [0.713, 0.108, 0.081, 0.097], - [0.536, 0.107, 0.259, 0.099], - ], - ATOH1: [ - [0.313, 0.392, 0.288, 0.006], - [0.012, 0.988, 0.0, 0.0], - [0.978, 0.0, 0.009, 0.013], - [0.001, 0.196, 0.477, 0.326], - [0.232, 0.767, 0.001, 0.0], - [0.0, 0.0, 0.0, 1.0], - [0.0, 0.0, 0.999, 0.0], - [0.0, 0.32, 0.24, 0.439], - [0.0, 0.343, 0.156, 0.5], - ], - CREB5: [ - [0.633, 0.117, 0.219, 0.031], - [0.011, 0.022, 0.002, 0.966], - [0.006, 0.004, 0.787, 0.204], - [0.969, 0.011, 0.003, 0.016], - [0.035, 0.372, 0.181, 0.412], - [0.181, 0.209, 0.555, 0.055], - [0.032, 0.041, 0.002, 0.925], - [0.302, 0.668, 0.004, 0.025], - [0.982, 0.0, 0.014, 0.004], - [0.032, 0.198, 0.096, 0.674], - ], - PRDM1: [ - [0.866, 0.005, 0.087, 0.043], - [0.254, 0.024, 0.616, 0.107], - [0.204, 0.139, 0.359, 0.298], - [0.112, 0.005, 0.882, 0.0], - [0.971, 0.029, 0.0, 0.0], - [0.672, 0.007, 0.314, 0.007], - [0.98, 0.006, 0.002, 0.012], - [0.001, 0.002, 0.997, 0.0], - [0.0, 0.086, 0.225, 0.689], - ], - ELF1: [ - [0.056, 0.706, 0.223, 0.016], - [0.468, 0.491, 0.041, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.0, 0.002, 0.998, 0.0], - [0.97, 0.019, 0.008, 0.004], - [0.961, 0.013, 0.005, 0.02], - [0.128, 0.076, 0.792, 0.004], - ], - ZSCAN22: [ - [0.143, 0.015, 0.836, 0.006], - [0.843, 0.025, 0.071, 0.062], - [0.175, 0.08, 0.436, 0.309], - [0.128, 0.01, 0.853, 0.009], - [0.035, 0.001, 0.954, 0.01], - [0.542, 0.173, 0.121, 0.164], - [0.17, 0.0, 0.827, 0.002], - [0.001, 0.0, 0.987, 0.012], - [0.808, 0.102, 0.025, 0.065], - [0.09, 0.002, 0.904, 0.004], - [0.053, 0.015, 0.905, 0.027], - ], - ETS1: [ - [0.133, 0.645, 0.2, 0.021], - [0.614, 0.335, 0.047, 0.004], - [0.004, 0.0, 0.956, 0.04], - [0.0, 0.0, 0.999, 0.001], - [0.965, 0.0, 0.007, 0.028], - [0.795, 0.018, 0.025, 0.162], - [0.324, 0.02, 0.647, 0.009], - [0.052, 0.298, 0.116, 0.534], - ], - TFEB: [ - [0.37, 0.147, 0.407, 0.077], - [0.077, 0.129, 0.198, 0.596], - [0.0, 0.998, 0.0, 0.001], - [0.929, 0.033, 0.0, 0.037], - [0.002, 0.796, 0.0, 0.202], - [0.275, 0.0, 0.725, 0.0], - [0.123, 0.078, 0.042, 0.757], - [0.014, 0.0, 0.959, 0.026], - ], - ZNF76: [ - [0.128, 0.272, 0.529, 0.071], - [0.154, 0.502, 0.215, 0.129], - [0.358, 0.146, 0.367, 0.129], - [0.267, 0.108, 0.499, 0.126], - [0.263, 0.109, 0.466, 0.161], - [0.038, 0.01, 0.908, 0.044], - [0.168, 0.344, 0.454, 0.034], - [0.424, 0.294, 0.154, 0.129], - [0.082, 0.194, 0.141, 0.583], - [0.039, 0.187, 0.403, 0.371], - [0.163, 0.576, 0.178, 0.082], - [0.039, 0.301, 0.018, 0.642], - [0.004, 0.043, 0.946, 0.007], - [0.005, 0.03, 0.958, 0.007], - [0.005, 0.002, 0.978, 0.014], - [0.757, 0.027, 0.054, 0.163], - [0.51, 0.136, 0.266, 0.088], - ], - YY2: [ - [0.587, 0.069, 0.289, 0.055], - [0.513, 0.231, 0.115, 0.14], - [0.285, 0.324, 0.324, 0.067], - [0.999, 0.0, 0.001, 0.0], - [0.0, 0.0, 0.0, 1.0], - [0.0, 0.0, 1.0, 0.0], - [0.003, 0.011, 0.98, 0.006], - [0.063, 0.924, 0.0, 0.013], - [0.078, 0.146, 0.62, 0.157], - [0.066, 0.092, 0.781, 0.061], - [0.143, 0.65, 0.12, 0.088], - ], - TP63: [ - [0.025, 0.809, 0.04, 0.126], - [0.505, 0.169, 0.153, 0.174], - [0.225, 0.039, 0.109, 0.627], - [0.006, 0.002, 0.991, 0.001], - [0.091, 0.351, 0.04, 0.518], - [0.169, 0.385, 0.115, 0.332], - [0.153, 0.334, 0.221, 0.292], - [0.281, 0.205, 0.332, 0.182], - [0.3, 0.137, 0.376, 0.187], - [0.504, 0.035, 0.329, 0.132], - [0.002, 0.986, 0.005, 0.008], - [0.511, 0.14, 0.027, 0.322], - [0.12, 0.089, 0.094, 0.697], - [0.013, 0.003, 0.983, 0.001], - [0.14, 0.425, 0.036, 0.399], - ], - KLF16: [ - [0.077, 0.072, 0.671, 0.18], - [0.105, 0.752, 0.074, 0.068], - [0.085, 0.667, 0.029, 0.219], - [0.24, 0.74, 0.004, 0.017], - [0.0, 0.985, 0.004, 0.012], - [0.103, 0.001, 0.795, 0.101], - [0.0, 1.0, 0.0, 0.0], - [0.007, 0.984, 0.007, 0.002], - [0.031, 0.824, 0.013, 0.132], - [0.167, 0.703, 0.022, 0.108], - [0.031, 0.635, 0.035, 0.299], - ], - ZIC2: [ - [0.117, 0.832, 0.049, 0.002], - [0.306, 0.189, 0.321, 0.184], - [0.002, 0.988, 0.006, 0.003], - [0.475, 0.323, 0.093, 0.109], - [0.087, 0.142, 0.77, 0.0], - [0.001, 0.933, 0.008, 0.059], - [0.543, 0.004, 0.433, 0.021], - [0.01, 0.008, 0.947, 0.035], - [0.005, 0.006, 0.982, 0.007], - [0.262, 0.071, 0.562, 0.106], - [0.133, 0.104, 0.692, 0.07], - [0.092, 0.096, 0.692, 0.119], - [0.011, 0.482, 0.237, 0.27], - [0.131, 0.569, 0.21, 0.09], - ], - ZBTB18: [ - [0.102, 0.78, 0.117, 0.0], - [0.0, 0.999, 0.001, 0.0], - [0.994, 0.001, 0.001, 0.005], - [0.0, 0.0, 1.0, 0.0], - [0.571, 0.423, 0.001, 0.005], - [0.003, 0.005, 0.054, 0.938], - [0.0, 0.0, 1.0, 0.0], - [0.007, 0.244, 0.003, 0.746], - [0.033, 0.054, 0.566, 0.346], - ], - FOXM1: [ - [0.042, 0.028, 0.026, 0.904], - [0.196, 0.003, 0.801, 0.0], - [0.017, 0.078, 0.0, 0.905], - [0.005, 0.0, 0.08, 0.914], - [0.004, 0.0, 0.24, 0.756], - [0.61, 0.069, 0.279, 0.043], - [0.019, 0.828, 0.017, 0.135], - [0.297, 0.137, 0.094, 0.472], - [0.04, 0.314, 0.142, 0.504], - [0.404, 0.079, 0.072, 0.444], - ], - TEAD4: [ - [0.422, 0.003, 0.567, 0.008], - [0.2, 0.729, 0.071, 0.0], - [0.951, 0.002, 0.047, 0.0], - [0.0, 0.0, 0.028, 0.972], - [0.054, 0.006, 0.081, 0.859], - [0.001, 0.977, 0.012, 0.01], - [0.013, 0.729, 0.039, 0.219], - [0.251, 0.218, 0.053, 0.478], - ], - HNF1B: [ - [0.19, 0.03, 0.713, 0.067], - [0.035, 0.081, 0.05, 0.833], - [0.142, 0.074, 0.052, 0.732], - [0.941, 0.001, 0.044, 0.013], - [0.823, 0.098, 0.012, 0.067], - [0.151, 0.039, 0.007, 0.804], - [0.207, 0.293, 0.28, 0.22], - [0.839, 0.003, 0.027, 0.131], - [0.047, 0.007, 0.066, 0.88], - [0.018, 0.035, 0.002, 0.946], - [0.714, 0.051, 0.093, 0.142], - [0.751, 0.103, 0.085, 0.061], - [0.115, 0.596, 0.039, 0.25], - ], - FOXA1: [ - [0.387, 0.112, 0.096, 0.405], - [0.462, 0.141, 0.199, 0.198], - [0.318, 0.029, 0.101, 0.551], - [0.065, 0.001, 0.934, 0.001], - [0.004, 0.0, 0.004, 0.992], - [0.692, 0.307, 0.0, 0.001], - [0.828, 0.168, 0.0, 0.004], - [0.991, 0.0, 0.005, 0.004], - [0.0, 0.629, 0.001, 0.37], - [0.951, 0.01, 0.014, 0.026], - ], - STAT2: [ - [0.569, 0.053, 0.265, 0.113], - [0.009, 0.325, 0.614, 0.052], - [0.0, 0.02, 0.031, 0.949], - [0.024, 0.007, 0.004, 0.965], - [0.044, 0.225, 0.063, 0.668], - [0.002, 0.901, 0.004, 0.094], - [0.289, 0.131, 0.321, 0.259], - [0.101, 0.301, 0.194, 0.404], - [0.011, 0.05, 0.086, 0.853], - [0.085, 0.066, 0.058, 0.791], - [0.056, 0.292, 0.053, 0.6], - [0.096, 0.516, 0.076, 0.312], - [0.178, 0.361, 0.063, 0.399], - ], - ZNF322: [ - [0.122, 0.119, 0.692, 0.068], - [0.432, 0.096, 0.183, 0.289], - [0.096, 0.072, 0.699, 0.133], - [0.187, 0.648, 0.027, 0.138], - [0.047, 0.91, 0.015, 0.029], - [0.067, 0.098, 0.022, 0.813], - [0.353, 0.031, 0.559, 0.057], - [0.086, 0.331, 0.525, 0.058], - [0.111, 0.143, 0.062, 0.683], - [0.806, 0.118, 0.029, 0.047], - [0.003, 0.99, 0.002, 0.005], - [0.451, 0.059, 0.137, 0.353], - [0.029, 0.355, 0.598, 0.018], - [0.413, 0.085, 0.091, 0.411], - [0.047, 0.021, 0.875, 0.058], - [0.055, 0.815, 0.031, 0.099], - [0.114, 0.751, 0.047, 0.088], - [0.103, 0.104, 0.137, 0.656], - [0.074, 0.108, 0.694, 0.124], - ], - ZBTB7B: [ - [0.193, 0.094, 0.621, 0.092], - [0.083, 0.158, 0.187, 0.573], - [0.141, 0.231, 0.026, 0.603], - [0.146, 0.185, 0.413, 0.257], - [0.086, 0.574, 0.181, 0.159], - [0.037, 0.776, 0.053, 0.133], - [0.492, 0.259, 0.084, 0.164], - [0.139, 0.133, 0.172, 0.557], - [0.223, 0.043, 0.688, 0.046], - [0.085, 0.041, 0.829, 0.044], - [0.149, 0.587, 0.126, 0.138], - [0.632, 0.08, 0.23, 0.058], - [0.876, 0.034, 0.077, 0.013], - [0.068, 0.841, 0.046, 0.045], - ], - HIF1A: [ - [0.713, 0.046, 0.211, 0.03], - [0.0, 0.979, 0.005, 0.017], - [0.012, 0.057, 0.928, 0.003], - [0.004, 0.027, 0.006, 0.963], - [0.0, 0.009, 0.989, 0.002], - ], - EBF3: [ - [0.055, 0.296, 0.061, 0.588], - [0.002, 0.99, 0.007, 0.0], - [0.03, 0.743, 0.004, 0.223], - [0.023, 0.891, 0.008, 0.078], - [0.26, 0.311, 0.072, 0.357], - [0.337, 0.055, 0.318, 0.289], - [0.038, 0.002, 0.953, 0.007], - [0.143, 0.001, 0.854, 0.001], - [0.0, 0.001, 0.998, 0.0], - [0.715, 0.055, 0.195, 0.036], - ], - ZNF148: [ - [0.184, 0.133, 0.554, 0.128], - [0.158, 0.139, 0.524, 0.179], - [0.176, 0.152, 0.136, 0.535], - [0.012, 0.007, 0.981, 0.001], - [0.001, 0.016, 0.974, 0.009], - [0.036, 0.001, 0.963, 0.0], - [0.001, 0.001, 0.99, 0.007], - [0.002, 0.0, 0.997, 0.001], - [0.608, 0.231, 0.008, 0.153], - [0.129, 0.002, 0.735, 0.133], - [0.005, 0.009, 0.976, 0.01], - [0.032, 0.018, 0.916, 0.034], - [0.046, 0.017, 0.906, 0.032], - ], - HNF4A: [ - [0.518, 0.053, 0.286, 0.143], - [0.101, 0.023, 0.812, 0.065], - [0.194, 0.049, 0.394, 0.363], - [0.16, 0.315, 0.221, 0.305], - [0.003, 0.886, 0.029, 0.082], - [0.92, 0.006, 0.069, 0.005], - [0.859, 0.027, 0.086, 0.029], - [0.865, 0.017, 0.101, 0.017], - [0.034, 0.037, 0.919, 0.01], - [0.074, 0.02, 0.444, 0.461], - [0.052, 0.366, 0.153, 0.429], - [0.051, 0.708, 0.041, 0.201], - [0.573, 0.147, 0.151, 0.129], - ], - ATF1: [ - [0.068, 0.204, 0.063, 0.665], - [0.031, 0.304, 0.432, 0.234], - [0.861, 0.004, 0.082, 0.053], - [0.002, 0.783, 0.091, 0.124], - [0.195, 0.04, 0.755, 0.01], - [0.026, 0.0, 0.006, 0.968], - [0.109, 0.623, 0.265, 0.004], - [0.873, 0.021, 0.089, 0.017], - [0.029, 0.514, 0.173, 0.284], - ], - POU5F1: [ - [0.552, 0.188, 0.076, 0.184], - [0.065, 0.041, 0.085, 0.809], - [0.095, 0.22, 0.083, 0.602], - [0.282, 0.143, 0.015, 0.56], - [0.243, 0.139, 0.584, 0.035], - [0.205, 0.734, 0.039, 0.022], - [0.803, 0.001, 0.17, 0.026], - [0.163, 0.089, 0.118, 0.629], - [0.327, 0.191, 0.299, 0.183], - [0.523, 0.029, 0.087, 0.361], - [0.069, 0.482, 0.334, 0.116], - [0.895, 0.0, 0.023, 0.082], - [0.828, 0.016, 0.151, 0.005], - [0.485, 0.083, 0.058, 0.374], - [0.34, 0.111, 0.471, 0.078], - [0.26, 0.158, 0.506, 0.075], - ], - FEZF1: [ - [0.325, 0.112, 0.472, 0.092], - [0.219, 0.314, 0.09, 0.376], - [0.073, 0.117, 0.099, 0.711], - [0.122, 0.002, 0.773, 0.103], - [0.019, 0.374, 0.462, 0.146], - [0.001, 0.469, 0.019, 0.511], - [0.008, 0.986, 0.004, 0.002], - [0.342, 0.097, 0.01, 0.551], - [0.015, 0.207, 0.007, 0.771], - [0.013, 0.006, 0.002, 0.978], - [0.019, 0.06, 0.012, 0.909], - ], - ESR2: [ - [0.416, 0.148, 0.379, 0.056], - [0.095, 0.0, 0.835, 0.07], - [0.047, 0.004, 0.949, 0.0], - [0.057, 0.098, 0.237, 0.609], - [0.0, 0.763, 0.115, 0.122], - [0.685, 0.058, 0.195, 0.062], - [0.141, 0.52, 0.21, 0.13], - [0.145, 0.384, 0.325, 0.146], - [0.151, 0.233, 0.449, 0.167], - [0.11, 0.416, 0.002, 0.472], - [0.119, 0.001, 0.874, 0.006], - [0.213, 0.328, 0.236, 0.223], - [0.052, 0.679, 0.036, 0.233], - [0.047, 0.854, 0.018, 0.081], - [0.058, 0.398, 0.15, 0.393], - ], - TCF4: [ - [0.231, 0.459, 0.31, 0.0], - [0.572, 0.185, 0.069, 0.175], - [0.001, 0.999, 0.0, 0.0], - [1.0, 0.0, 0.0, 0.0], - [0.0, 0.39, 0.604, 0.006], - [0.028, 0.607, 0.364, 0.0], - [0.0, 0.006, 0.0, 0.994], - [0.0, 0.0, 1.0, 0.0], - [0.0, 0.311, 0.195, 0.494], - ], - GABPA: [ - [0.089, 0.713, 0.186, 0.012], - [0.588, 0.386, 0.023, 0.003], - [0.002, 0.0, 0.998, 0.0], - [0.0, 0.0, 0.999, 0.0], - [0.998, 0.0, 0.001, 0.001], - [0.922, 0.001, 0.002, 0.075], - [0.194, 0.052, 0.754, 0.0], - [0.083, 0.275, 0.106, 0.537], - ], - KLF12: [ - [0.112, 0.374, 0.457, 0.058], - [0.125, 0.354, 0.422, 0.099], - [0.119, 0.367, 0.394, 0.121], - [0.169, 0.293, 0.433, 0.105], - [0.173, 0.383, 0.341, 0.104], - [0.196, 0.414, 0.302, 0.088], - [0.214, 0.101, 0.457, 0.228], - [0.017, 0.0, 0.983, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.009, 0.905, 0.0, 0.085], - [0.001, 0.001, 0.994, 0.004], - [0.004, 0.014, 0.763, 0.219], - [0.193, 0.04, 0.686, 0.082], - [0.081, 0.079, 0.769, 0.07], - [0.106, 0.698, 0.103, 0.094], - [0.086, 0.569, 0.157, 0.189], - [0.198, 0.249, 0.34, 0.213], - [0.147, 0.288, 0.458, 0.108], - [0.12, 0.283, 0.481, 0.117], - ], - TBX21: [ - [0.106, 0.231, 0.132, 0.531], - [0.042, 0.065, 0.002, 0.891], - [0.373, 0.378, 0.219, 0.03], - [0.765, 0.067, 0.061, 0.107], - [0.007, 0.993, 0.0, 0.0], - [0.968, 0.001, 0.028, 0.004], - [0.05, 0.867, 0.084, 0.0], - [0.1, 0.617, 0.094, 0.189], - [0.082, 0.142, 0.026, 0.749], - ], - MEIS2: [ - [0.17, 0.61, 0.095, 0.125], - [0.0, 0.017, 0.0, 0.982], - [0.002, 0.0, 0.998, 0.0], - [0.014, 0.029, 0.0, 0.957], - [0.0, 1.0, 0.0, 0.0], - [0.933, 0.018, 0.007, 0.042], - ], - FOXP2: [ - [0.009, 0.001, 0.02, 0.97], - [0.076, 0.0, 0.924, 0.0], - [0.024, 0.023, 0.0, 0.953], - [0.023, 0.0, 0.113, 0.865], - [0.0, 0.0, 0.15, 0.85], - [0.841, 0.004, 0.048, 0.108], - [0.015, 0.669, 0.037, 0.279], - ], - USF2: [ - [0.01, 0.98, 0.009, 0.0], - [0.901, 0.022, 0.042, 0.035], - [0.0, 0.767, 0.0, 0.233], - [0.179, 0.003, 0.818, 0.0], - [0.027, 0.023, 0.013, 0.937], - [0.0, 0.006, 0.994, 0.001], - [0.439, 0.157, 0.315, 0.089], - [0.044, 0.553, 0.133, 0.27], - ], - ELK1: [ - [0.532, 0.1, 0.287, 0.081], - [0.005, 0.76, 0.096, 0.14], - [0.047, 0.0, 0.001, 0.952], - [0.001, 0.001, 0.0, 0.998], - [0.0, 0.999, 0.001, 0.0], - [0.0, 0.997, 0.0, 0.003], - [0.001, 0.017, 0.644, 0.338], - [0.022, 0.227, 0.659, 0.092], - ], - E2F6: [ - [0.139, 0.161, 0.685, 0.014], - [0.001, 0.013, 0.985, 0.0], - [0.202, 0.764, 0.007, 0.028], - [0.002, 0.033, 0.962, 0.002], - [0.0, 0.054, 0.946, 0.0], - [0.005, 0.129, 0.837, 0.029], - [0.817, 0.021, 0.133, 0.029], - [0.461, 0.122, 0.383, 0.034], - ], - SOX3: [ - [0.459, 0.248, 0.233, 0.06], - [0.966, 0.016, 0.0, 0.018], - [0.0, 0.933, 0.001, 0.067], - [0.999, 0.001, 0.001, 0.0], - [0.999, 0.0, 0.001, 0.0], - [0.568, 0.016, 0.001, 0.415], - [0.528, 0.005, 0.46, 0.008], - [0.196, 0.043, 0.755, 0.006], - ], - CEBPZ: [ - [0.446, 0.093, 0.391, 0.069], - [0.257, 0.07, 0.564, 0.108], - [0.024, 0.942, 0.013, 0.02], - [0.014, 0.958, 0.021, 0.007], - [0.94, 0.013, 0.003, 0.044], - [0.856, 0.059, 0.058, 0.027], - [0.001, 0.078, 0.044, 0.877], - [0.16, 0.49, 0.318, 0.032], - [0.433, 0.128, 0.409, 0.03], - [0.239, 0.21, 0.452, 0.1], - [0.353, 0.249, 0.243, 0.155], - [0.275, 0.09, 0.471, 0.164], - [0.135, 0.213, 0.513, 0.14], - [0.084, 0.492, 0.267, 0.157], - ], - GRHL2: [ - [0.203, 0.145, 0.531, 0.121], - [0.264, 0.323, 0.152, 0.261], - [0.325, 0.294, 0.166, 0.215], - [0.427, 0.151, 0.217, 0.204], - [0.528, 0.041, 0.229, 0.202], - [0.58, 0.03, 0.181, 0.209], - [0.0, 0.969, 0.03, 0.0], - [0.247, 0.452, 0.023, 0.278], - [0.283, 0.018, 0.453, 0.247], - [0.003, 0.012, 0.985, 0.0], - [0.136, 0.201, 0.019, 0.644], - [0.116, 0.295, 0.041, 0.549], - [0.191, 0.236, 0.147, 0.425], - [0.192, 0.097, 0.401, 0.31], - [0.27, 0.09, 0.377, 0.263], - [0.034, 0.707, 0.084, 0.175], - [0.264, 0.384, 0.105, 0.248], - [0.488, 0.018, 0.332, 0.162], - [0.01, 0.305, 0.655, 0.03], - [0.204, 0.173, 0.097, 0.526], - ], - MYF5: [ - [0.0, 0.979, 0.021, 0.0], - [0.824, 0.052, 0.123, 0.001], - [0.0, 0.133, 0.865, 0.003], - [0.0, 1.0, 0.0, 0.0], - [0.0, 0.088, 0.061, 0.851], - [0.0, 0.044, 0.956, 0.0], - [0.0, 0.449, 0.06, 0.49], - [0.0, 0.3, 0.229, 0.471], - ], - DUX4: [ - [0.143, 0.008, 0.025, 0.823], - [0.19, 0.0, 0.81, 0.0], - [1.0, 0.0, 0.0, 0.0], - [0.003, 0.001, 0.02, 0.976], - [0.0, 0.005, 0.007, 0.988], - [0.454, 0.001, 0.545, 0.0], - [0.36, 0.206, 0.4, 0.034], - [0.442, 0.073, 0.283, 0.201], - [0.0, 0.0, 0.001, 0.999], - [0.016, 0.22, 0.004, 0.76], - [0.6, 0.062, 0.11, 0.228], - ], - IRF4: [ - [0.562, 0.047, 0.238, 0.153], - [0.575, 0.114, 0.167, 0.145], - [0.302, 0.176, 0.378, 0.143], - [0.345, 0.257, 0.202, 0.197], - [0.226, 0.012, 0.747, 0.015], - [0.477, 0.0, 0.496, 0.027], - [0.871, 0.0, 0.103, 0.026], - [0.907, 0.021, 0.057, 0.016], - [0.071, 0.496, 0.402, 0.03], - [0.108, 0.187, 0.089, 0.615], - [0.144, 0.0, 0.854, 0.002], - [0.774, 0.135, 0.083, 0.008], - [0.63, 0.016, 0.34, 0.013], - [0.855, 0.072, 0.017, 0.056], - ], - PRDM14: [ - [0.035, 0.209, 0.714, 0.042], - [0.069, 0.116, 0.659, 0.156], - [0.173, 0.024, 0.222, 0.581], - [0.023, 0.75, 0.163, 0.064], - [0.071, 0.32, 0.146, 0.463], - [0.009, 0.823, 0.097, 0.071], - [0.063, 0.059, 0.066, 0.811], - [0.896, 0.004, 0.036, 0.065], - [0.691, 0.085, 0.097, 0.128], - [0.063, 0.613, 0.205, 0.12], - ], - PDX1: [ - [0.18, 0.005, 0.025, 0.79], - [0.062, 0.001, 0.916, 0.021], - [0.997, 0.001, 0.0, 0.001], - [0.032, 0.107, 0.055, 0.806], - [0.146, 0.016, 0.135, 0.703], - [0.288, 0.044, 0.628, 0.041], - [0.998, 0.0, 0.002, 0.0], - [0.026, 0.063, 0.089, 0.822], - [0.067, 0.077, 0.509, 0.346], - [0.375, 0.079, 0.415, 0.132], - ], - ZKSCAN1: [ - [0.123, 0.166, 0.628, 0.083], - [0.153, 0.697, 0.039, 0.112], - [0.587, 0.029, 0.288, 0.095], - [0.006, 0.841, 0.133, 0.02], - [0.526, 0.125, 0.216, 0.134], - [0.008, 0.455, 0.09, 0.447], - [0.777, 0.003, 0.082, 0.138], - [0.02, 0.067, 0.908, 0.005], - [0.016, 0.186, 0.0, 0.797], - [0.607, 0.0, 0.261, 0.131], - [0.01, 0.052, 0.717, 0.221], - [0.035, 0.0, 0.877, 0.088], - ], - ZNF816: [ - [0.139, 0.588, 0.11, 0.162], - [0.071, 0.685, 0.103, 0.14], - [0.194, 0.502, 0.076, 0.227], - [0.208, 0.187, 0.203, 0.401], - [0.23, 0.068, 0.489, 0.214], - [0.068, 0.787, 0.07, 0.075], - [0.605, 0.247, 0.076, 0.072], - [0.131, 0.131, 0.169, 0.569], - [0.008, 0.073, 0.839, 0.08], - [0.0, 0.001, 0.004, 0.994], - [0.003, 0.975, 0.004, 0.019], - [0.001, 0.992, 0.006, 0.001], - [0.003, 0.968, 0.02, 0.009], - [0.006, 0.921, 0.018, 0.054], - [0.366, 0.423, 0.069, 0.142], - [0.102, 0.246, 0.144, 0.508], - [0.109, 0.263, 0.153, 0.475], - [0.182, 0.291, 0.127, 0.4], - [0.123, 0.223, 0.197, 0.457], - [0.093, 0.216, 0.178, 0.513], - ], - LEF1: [ - [0.611, 0.086, 0.197, 0.107], - [0.149, 0.203, 0.308, 0.339], - [0.584, 0.091, 0.1, 0.226], - [0.606, 0.0, 0.0, 0.393], - [0.0, 0.973, 0.027, 0.0], - [0.997, 0.0, 0.002, 0.001], - [0.99, 0.007, 0.0, 0.003], - [0.79, 0.015, 0.011, 0.184], - [0.21, 0.033, 0.7, 0.057], - [0.246, 0.129, 0.578, 0.046], - [0.342, 0.301, 0.338, 0.019], - ], - ZNF136: [ - [0.517, 0.114, 0.206, 0.163], - [0.438, 0.117, 0.295, 0.151], - [0.584, 0.107, 0.161, 0.148], - [0.625, 0.108, 0.116, 0.151], - [0.631, 0.114, 0.117, 0.138], - [0.652, 0.079, 0.125, 0.143], - [0.492, 0.109, 0.133, 0.266], - [0.515, 0.165, 0.131, 0.189], - [0.549, 0.134, 0.127, 0.19], - [0.104, 0.581, 0.095, 0.22], - [0.045, 0.035, 0.011, 0.91], - [0.119, 0.038, 0.696, 0.147], - [0.07, 0.37, 0.068, 0.493], - [0.131, 0.736, 0.045, 0.087], - [0.67, 0.136, 0.08, 0.114], - [0.815, 0.005, 0.117, 0.063], - [0.007, 0.966, 0.011, 0.016], - [0.101, 0.643, 0.008, 0.248], - [0.486, 0.132, 0.106, 0.277], - [0.749, 0.067, 0.117, 0.067], - [0.211, 0.015, 0.731, 0.043], - [0.857, 0.073, 0.035, 0.035], - [0.911, 0.036, 0.028, 0.025], - [0.022, 0.034, 0.04, 0.904], - [0.393, 0.088, 0.06, 0.459], - [0.052, 0.682, 0.063, 0.204], - [0.03, 0.057, 0.025, 0.889], - [0.627, 0.033, 0.147, 0.194], - [0.139, 0.053, 0.044, 0.765], - [0.739, 0.046, 0.181, 0.034], - [0.062, 0.347, 0.041, 0.55], - [0.08, 0.651, 0.078, 0.191], - [0.156, 0.721, 0.031, 0.092], - [0.817, 0.024, 0.086, 0.073], - [0.155, 0.063, 0.695, 0.087], - ], - CEBPG: [ - [0.596, 0.099, 0.303, 0.001], - [0.0, 0.0, 0.0, 1.0], - [0.0, 0.0, 0.526, 0.474], - [0.658, 0.0, 0.3, 0.043], - [0.067, 0.214, 0.052, 0.667], - [0.0, 0.005, 0.995, 0.001], - [0.21, 0.568, 0.0, 0.223], - [0.956, 0.044, 0.0, 0.0], - [1.0, 0.0, 0.0, 0.0], - [0.01, 0.206, 0.09, 0.694], - ], - SPDEF: [ - [0.593, 0.036, 0.3, 0.071], - [0.063, 0.489, 0.28, 0.167], - [0.497, 0.022, 0.085, 0.396], - [0.003, 0.003, 0.003, 0.991], - [0.0, 1.0, 0.0, 0.0], - [0.0, 0.999, 0.0, 0.0], - [0.0, 0.003, 0.465, 0.533], - [0.007, 0.116, 0.786, 0.092], - [0.118, 0.293, 0.345, 0.244], - [0.234, 0.163, 0.102, 0.501], - ], - ZNF317: [ - [0.5, 0.03, 0.125, 0.345], - [0.349, 0.021, 0.628, 0.002], - [0.003, 0.004, 0.001, 0.993], - [0.056, 0.879, 0.008, 0.058], - [0.504, 0.051, 0.072, 0.373], - [0.038, 0.031, 0.677, 0.253], - [0.067, 0.728, 0.071, 0.134], - [0.235, 0.091, 0.042, 0.631], - [0.041, 0.004, 0.951, 0.004], - [0.151, 0.089, 0.053, 0.707], - [0.109, 0.402, 0.106, 0.384], - [0.357, 0.283, 0.052, 0.307], - [0.288, 0.254, 0.145, 0.313], - [0.138, 0.217, 0.041, 0.604], - [0.09, 0.715, 0.055, 0.14], - [0.089, 0.21, 0.176, 0.525], - ], - CDX2: [ - [0.112, 0.067, 0.065, 0.756], - [0.02, 0.0, 0.0, 0.979], - [0.107, 0.0, 0.0, 0.893], - [0.091, 0.0, 0.001, 0.908], - [1.0, 0.0, 0.0, 0.0], - [0.0, 0.127, 0.004, 0.869], - [0.211, 0.028, 0.112, 0.649], - [0.439, 0.0, 0.56, 0.0], - [0.036, 0.875, 0.047, 0.042], - [0.168, 0.345, 0.0, 0.487], - [0.217, 0.275, 0.061, 0.446], - [0.208, 0.201, 0.087, 0.504], - ], - POU2F2: [ - [0.001, 0.321, 0.013, 0.664], - [0.236, 0.053, 0.164, 0.547], - [0.049, 0.211, 0.0, 0.74], - [0.038, 0.026, 0.928, 0.009], - [0.033, 0.967, 0.0, 0.0], - [0.8, 0.061, 0.122, 0.016], - [0.0, 0.229, 0.0, 0.771], - [0.44, 0.048, 0.35, 0.163], - ], - STAT6: [ - [0.029, 0.038, 0.033, 0.9], - [0.077, 0.119, 0.025, 0.779], - [0.103, 0.633, 0.047, 0.217], - [0.356, 0.293, 0.072, 0.279], - [0.383, 0.316, 0.147, 0.154], - [0.476, 0.121, 0.227, 0.177], - [0.287, 0.0, 0.703, 0.01], - [0.221, 0.025, 0.751, 0.003], - [0.979, 0.021, 0.0, 0.0], - [0.975, 0.0, 0.024, 0.001], - [0.325, 0.3, 0.184, 0.191], - [0.175, 0.056, 0.096, 0.673], - ], - SP2: [ - [0.24, 0.142, 0.526, 0.092], - [0.245, 0.037, 0.622, 0.096], - [0.3, 0.015, 0.686, 0.0], - [0.002, 0.004, 0.994, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.182, 0.794, 0.0, 0.024], - [0.0, 0.001, 0.997, 0.002], - [0.0, 0.01, 0.933, 0.057], - [0.05, 0.031, 0.873, 0.046], - ], - RUNX2: [ - [0.067, 0.128, 0.011, 0.794], - [0.001, 0.001, 0.997, 0.001], - [0.011, 0.124, 0.0, 0.865], - [0.0, 0.0, 1.0, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.0, 0.087, 0.162, 0.75], - [0.092, 0.338, 0.139, 0.43], - [0.425, 0.043, 0.213, 0.318], - ], - SIX2: [ - [0.231, 0.04, 0.254, 0.476], - [0.023, 0.003, 0.954, 0.02], - [0.469, 0.065, 0.101, 0.365], - [0.841, 0.087, 0.006, 0.065], - [0.998, 0.0, 0.0, 0.001], - [0.047, 0.446, 0.06, 0.447], - [0.235, 0.332, 0.087, 0.345], - [0.099, 0.172, 0.101, 0.627], - [0.165, 0.002, 0.725, 0.108], - [0.996, 0.0, 0.003, 0.0], - [0.059, 0.107, 0.324, 0.509], - [0.502, 0.44, 0.024, 0.035], - [0.116, 0.494, 0.07, 0.32], - ], - MYCN: [ - [0.052, 0.464, 0.376, 0.108], - [0.128, 0.859, 0.011, 0.003], - [0.825, 0.025, 0.066, 0.084], - [0.006, 0.795, 0.095, 0.104], - [0.53, 0.054, 0.412, 0.004], - [0.065, 0.013, 0.001, 0.921], - [0.0, 0.006, 0.989, 0.004], - [0.03, 0.212, 0.639, 0.118], - [0.093, 0.435, 0.13, 0.342], - ], - NR1H4: [ - [0.584, 0.061, 0.326, 0.029], - [0.029, 0.0, 0.907, 0.064], - [0.01, 0.006, 0.838, 0.146], - [0.04, 0.112, 0.14, 0.708], - [0.0, 0.876, 0.03, 0.095], - [0.873, 0.03, 0.08, 0.017], - [0.227, 0.237, 0.193, 0.343], - [0.055, 0.094, 0.044, 0.807], - [0.104, 0.119, 0.763, 0.015], - [0.623, 0.19, 0.12, 0.068], - [0.165, 0.772, 0.012, 0.05], - [0.072, 0.845, 0.008, 0.075], - [0.038, 0.336, 0.071, 0.555], - ], - CENPA: [ - [0.028, 0.102, 0.083, 0.787], - [0.088, 0.115, 0.005, 0.792], - [0.045, 0.011, 0.071, 0.873], - [0.102, 0.784, 0.097, 0.017], - [0.136, 0.076, 0.766, 0.023], - [0.142, 0.038, 0.01, 0.811], - [0.08, 0.018, 0.091, 0.811], - [0.025, 0.001, 0.895, 0.079], - [0.136, 0.068, 0.775, 0.02], - [0.909, 0.005, 0.038, 0.048], - [0.862, 0.024, 0.076, 0.039], - [0.792, 0.002, 0.058, 0.148], - [0.022, 0.834, 0.061, 0.083], - [0.045, 0.11, 0.747, 0.098], - [0.086, 0.001, 0.866, 0.048], - [0.044, 0.011, 0.854, 0.091], - [0.751, 0.011, 0.129, 0.109], - [0.102, 0.001, 0.01, 0.887], - [0.321, 0.071, 0.042, 0.566], - [0.455, 0.006, 0.35, 0.189], - [0.103, 0.581, 0.049, 0.267], - [0.271, 0.356, 0.05, 0.323], - [0.034, 0.186, 0.045, 0.734], - [0.313, 0.208, 0.032, 0.447], - ], - VDR: [ - [0.517, 0.018, 0.448, 0.017], - [0.07, 0.006, 0.866, 0.058], - [0.03, 0.004, 0.797, 0.169], - [0.022, 0.076, 0.163, 0.739], - [0.063, 0.728, 0.111, 0.098], - [0.828, 0.037, 0.105, 0.029], - [0.227, 0.297, 0.259, 0.216], - [0.226, 0.215, 0.204, 0.355], - [0.227, 0.088, 0.653, 0.031], - [0.571, 0.006, 0.417, 0.007], - [0.009, 0.0, 0.985, 0.006], - [0.014, 0.002, 0.456, 0.527], - [0.085, 0.115, 0.179, 0.621], - [0.017, 0.758, 0.05, 0.175], - [0.649, 0.065, 0.198, 0.089], - ], - RFX5: [ - [0.005, 0.837, 0.079, 0.079], - [0.243, 0.414, 0.223, 0.12], - [0.027, 0.338, 0.004, 0.631], - [0.383, 0.113, 0.44, 0.063], - [0.063, 0.049, 0.888, 0.0], - [0.033, 0.81, 0.033, 0.124], - [0.643, 0.116, 0.24, 0.001], - [0.723, 0.0, 0.27, 0.006], - [0.0, 0.996, 0.001, 0.003], - ], - ETV4: [ - [0.179, 0.501, 0.262, 0.057], - [0.734, 0.194, 0.058, 0.013], - [0.002, 0.001, 0.984, 0.014], - [0.0, 0.024, 0.974, 0.002], - [0.972, 0.019, 0.006, 0.003], - [0.735, 0.038, 0.055, 0.172], - [0.325, 0.075, 0.584, 0.016], - [0.075, 0.179, 0.117, 0.628], - [0.263, 0.08, 0.516, 0.141], - [0.502, 0.243, 0.13, 0.125], - ], - REST: [ - [0.06, 0.783, 0.048, 0.108], - [0.833, 0.051, 0.081, 0.035], - [0.057, 0.058, 0.864, 0.021], - [0.099, 0.544, 0.218, 0.139], - [0.94, 0.018, 0.034, 0.008], - [0.011, 0.942, 0.018, 0.029], - [0.028, 0.866, 0.06, 0.045], - [0.504, 0.157, 0.097, 0.241], - [0.125, 0.182, 0.06, 0.633], - [0.008, 0.0, 0.992, 0.0], - [0.009, 0.0, 0.991, 0.0], - [0.946, 0.037, 0.002, 0.015], - [0.003, 0.831, 0.119, 0.047], - [0.999, 0.0, 0.001, 0.0], - [0.011, 0.001, 0.987, 0.002], - [0.109, 0.688, 0.064, 0.139], - [0.202, 0.013, 0.402, 0.382], - [0.096, 0.697, 0.144, 0.062], - [0.084, 0.759, 0.011, 0.146], - ], - FOSL2: [ - [0.438, 0.197, 0.319, 0.046], - [0.0, 0.004, 0.0, 0.996], - [0.0, 0.0, 0.987, 0.013], - [1.0, 0.0, 0.0, 0.0], - [0.026, 0.475, 0.393, 0.106], - [0.021, 0.0, 0.002, 0.977], - [0.112, 0.888, 0.0, 0.0], - [0.996, 0.0, 0.004, 0.0], - [0.049, 0.297, 0.214, 0.44], - ], - GATA2: [ - [0.687, 0.023, 0.005, 0.285], - [0.0, 0.0, 1.0, 0.0], - [1.0, 0.0, 0.0, 0.0], - [0.0, 0.0, 0.0, 1.0], - [0.939, 0.0, 0.0, 0.061], - [0.884, 0.008, 0.086, 0.021], - ], - BATF3: [ - [0.53, 0.038, 0.285, 0.147], - [0.043, 0.406, 0.513, 0.039], - [0.0, 0.012, 0.001, 0.986], - [0.104, 0.086, 0.01, 0.8], - [0.001, 0.142, 0.022, 0.835], - [0.055, 0.68, 0.084, 0.181], - [0.449, 0.051, 0.332, 0.168], - [0.338, 0.145, 0.165, 0.352], - [0.28, 0.02, 0.123, 0.578], - [0.544, 0.098, 0.02, 0.338], - [0.013, 0.037, 0.019, 0.931], - [0.019, 0.089, 0.659, 0.233], - [0.892, 0.041, 0.014, 0.052], - ], - MEF2A: [ - [0.06, 0.7, 0.039, 0.201], - [0.0, 0.021, 0.0, 0.979], - [0.944, 0.002, 0.012, 0.043], - [0.152, 0.001, 0.0, 0.846], - [0.206, 0.008, 0.005, 0.78], - [0.136, 0.044, 0.001, 0.819], - [0.277, 0.073, 0.014, 0.635], - [0.151, 0.034, 0.074, 0.741], - [0.675, 0.001, 0.321, 0.003], - [0.165, 0.053, 0.641, 0.142], - ], - KLF5: [ - [0.134, 0.009, 0.79, 0.067], - [0.086, 0.823, 0.049, 0.042], - [0.007, 0.931, 0.004, 0.058], - [0.321, 0.575, 0.068, 0.036], - [0.001, 0.996, 0.0, 0.003], - [0.317, 0.0, 0.575, 0.108], - [0.0, 1.0, 0.0, 0.0], - [0.0, 0.999, 0.001, 0.0], - [0.0, 0.896, 0.001, 0.103], - ], - LHX9: [ - [0.004, 0.519, 0.0, 0.477], - [0.841, 0.109, 0.008, 0.042], - [1.0, 0.0, 0.0, 0.0], - [0.0, 0.0, 0.0, 1.0], - [0.0, 0.014, 0.0, 0.986], - [0.983, 0.0, 0.0, 0.017], - ], - TCF12: [ - [0.276, 0.388, 0.311, 0.025], - [0.0, 0.988, 0.012, 0.0], - [0.932, 0.032, 0.033, 0.002], - [0.0, 0.195, 0.764, 0.041], - [0.008, 0.796, 0.196, 0.0], - [0.001, 0.025, 0.037, 0.938], - [0.0, 0.001, 0.999, 0.0], - [0.022, 0.474, 0.285, 0.22], - ], - NFE2: [ - [0.153, 0.121, 0.091, 0.635], - [0.063, 0.067, 0.745, 0.125], - [0.079, 0.724, 0.129, 0.069], - [0.162, 0.257, 0.019, 0.563], - [0.192, 0.134, 0.509, 0.165], - [0.681, 0.062, 0.036, 0.221], - [0.073, 0.104, 0.794, 0.028], - [0.0, 0.003, 0.0, 0.997], - [0.011, 0.989, 0.0, 0.0], - [0.988, 0.011, 0.001, 0.001], - [0.006, 0.278, 0.063, 0.653], - ], - SOX17: [ - [0.045, 0.78, 0.061, 0.115], - [0.679, 0.01, 0.007, 0.304], - [0.0, 0.005, 0.001, 0.993], - [0.001, 0.0, 0.0, 0.999], - [0.022, 0.086, 0.892, 0.0], - [0.076, 0.002, 0.002, 0.921], - [0.383, 0.179, 0.101, 0.338], - [0.092, 0.14, 0.021, 0.746], - [0.107, 0.077, 0.367, 0.449], - ], - ZNF708: [ - [0.132, 0.101, 0.582, 0.185], - [0.177, 0.166, 0.45, 0.207], - [0.859, 0.022, 0.116, 0.003], - [0.008, 0.02, 0.972, 0.0], - [0.046, 0.064, 0.885, 0.005], - [0.018, 0.367, 0.016, 0.599], - [0.881, 0.007, 0.103, 0.009], - [0.02, 0.911, 0.03, 0.04], - [0.711, 0.02, 0.255, 0.014], - [0.005, 0.004, 0.96, 0.031], - [0.053, 0.876, 0.007, 0.064], - ], - NFE2L1: [ - [0.17, 0.172, 0.116, 0.541], - [0.094, 0.144, 0.682, 0.08], - [0.142, 0.692, 0.107, 0.058], - [0.084, 0.157, 0.066, 0.693], - [0.095, 0.058, 0.69, 0.157], - [0.784, 0.075, 0.024, 0.117], - [0.09, 0.156, 0.704, 0.051], - [0.021, 0.018, 0.031, 0.931], - [0.055, 0.914, 0.009, 0.022], - [0.904, 0.036, 0.049, 0.011], - [0.018, 0.286, 0.106, 0.59], - ], - ARNT: [ - [0.653, 0.04, 0.278, 0.028], - [0.0, 0.968, 0.001, 0.031], - [0.025, 0.001, 0.973, 0.002], - [0.0, 0.013, 0.0, 0.987], - [0.0, 0.001, 0.996, 0.003], - [0.223, 0.541, 0.118, 0.118], - ], - MITF: [ - [0.494, 0.076, 0.392, 0.039], - [0.064, 0.216, 0.076, 0.644], - [0.0, 0.999, 0.0, 0.0], - [0.847, 0.013, 0.008, 0.133], - [0.0, 0.725, 0.0, 0.275], - [0.234, 0.011, 0.755, 0.0], - [0.009, 0.0, 0.003, 0.987], - [0.0, 0.0, 1.0, 0.0], - [0.882, 0.036, 0.059, 0.023], - [0.006, 0.489, 0.033, 0.472], - ], - PGR: [ - [0.441, 0.031, 0.372, 0.155], - [0.139, 0.015, 0.723, 0.123], - [0.341, 0.148, 0.298, 0.212], - [0.854, 0.012, 0.041, 0.093], - [0.002, 0.912, 0.04, 0.047], - [0.65, 0.02, 0.138, 0.193], - [0.155, 0.202, 0.133, 0.511], - [0.198, 0.285, 0.168, 0.35], - [0.169, 0.422, 0.206, 0.203], - [0.157, 0.096, 0.022, 0.725], - [0.039, 0.033, 0.919, 0.009], - [0.084, 0.046, 0.036, 0.834], - [0.184, 0.309, 0.142, 0.364], - [0.1, 0.729, 0.017, 0.154], - [0.148, 0.37, 0.049, 0.433], - ], - EGR2: [ - [0.156, 0.186, 0.606, 0.052], - [0.201, 0.362, 0.137, 0.301], - [0.0, 0.0, 1.0, 0.0], - [0.009, 0.046, 0.221, 0.724], - [0.059, 0.0, 0.939, 0.002], - [0.0, 0.0, 1.0, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.198, 0.411, 0.004, 0.387], - [0.028, 0.011, 0.931, 0.029], - [0.084, 0.1, 0.58, 0.236], - ], - ZNF354A: [ - [0.073, 0.341, 0.121, 0.464], - [0.08, 0.565, 0.1, 0.255], - [0.08, 0.177, 0.069, 0.673], - [0.069, 0.1, 0.048, 0.784], - [0.082, 0.08, 0.048, 0.79], - [0.087, 0.072, 0.052, 0.79], - [0.586, 0.074, 0.169, 0.171], - [0.668, 0.048, 0.13, 0.154], - [0.163, 0.143, 0.061, 0.633], - [0.156, 0.061, 0.069, 0.714], - [0.2, 0.056, 0.573, 0.171], - [0.204, 0.054, 0.592, 0.15], - [0.421, 0.085, 0.252, 0.243], - [0.336, 0.043, 0.523, 0.098], - [0.284, 0.087, 0.067, 0.562], - [0.438, 0.046, 0.41, 0.106], - [0.05, 0.059, 0.059, 0.833], - [0.024, 0.035, 0.039, 0.902], - [0.009, 0.017, 0.022, 0.952], - [0.843, 0.024, 0.085, 0.048], - [0.233, 0.013, 0.685, 0.07], - [0.402, 0.083, 0.143, 0.372], - [0.067, 0.75, 0.035, 0.148], - [0.009, 0.92, 0.011, 0.061], - [0.904, 0.03, 0.048, 0.017], - [0.007, 0.046, 0.013, 0.935], - [0.002, 0.0, 0.022, 0.976], - [0.02, 0.076, 0.013, 0.891], - [0.963, 0.0, 0.033, 0.004], - [0.026, 0.721, 0.004, 0.248], - [0.887, 0.009, 0.1, 0.004], - [0.007, 0.031, 0.015, 0.948], - [0.0, 0.011, 0.033, 0.956], - [0.002, 0.017, 0.022, 0.959], - [0.974, 0.002, 0.015, 0.009], - [0.675, 0.013, 0.166, 0.146], - [0.044, 0.015, 0.002, 0.939], - [0.122, 0.007, 0.861, 0.011], - [0.009, 0.078, 0.052, 0.861], - [0.734, 0.009, 0.196, 0.061], - [0.841, 0.041, 0.098, 0.02], - [0.059, 0.033, 0.015, 0.893], - [0.1, 0.081, 0.054, 0.765], - [0.717, 0.033, 0.129, 0.122], - [0.065, 0.248, 0.044, 0.643], - [0.083, 0.109, 0.085, 0.723], - [0.279, 0.041, 0.595, 0.085], - [0.662, 0.096, 0.111, 0.131], - [0.129, 0.102, 0.068, 0.702], - [0.721, 0.033, 0.124, 0.122], - [0.198, 0.078, 0.083, 0.641], - [0.32, 0.046, 0.479, 0.155], - [0.172, 0.076, 0.353, 0.399], - [0.181, 0.107, 0.102, 0.61], - [0.288, 0.044, 0.144, 0.525], - [0.27, 0.076, 0.497, 0.157], - [0.237, 0.057, 0.497, 0.209], - [0.414, 0.081, 0.285, 0.22], - [0.111, 0.214, 0.081, 0.595], - [0.126, 0.05, 0.057, 0.767], - [0.157, 0.061, 0.092, 0.691], - [0.599, 0.094, 0.109, 0.198], - ], - ZBTB12: [ - [0.081, 0.345, 0.103, 0.471], - [0.033, 0.807, 0.067, 0.093], - [0.068, 0.104, 0.12, 0.708], - [0.761, 0.006, 0.233, 0.0], - [0.001, 0.0, 0.998, 0.001], - [0.962, 0.021, 0.007, 0.01], - [0.919, 0.007, 0.06, 0.014], - [0.002, 0.985, 0.001, 0.012], - [0.245, 0.53, 0.097, 0.129], - ], - SPI1: [ - [0.523, 0.082, 0.211, 0.183], - [0.535, 0.071, 0.251, 0.143], - [0.481, 0.047, 0.219, 0.254], - [0.265, 0.093, 0.589, 0.054], - [0.613, 0.045, 0.323, 0.02], - [0.07, 0.0, 0.93, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.999, 0.0, 0.0, 0.001], - [0.991, 0.0, 0.0, 0.009], - [0.074, 0.159, 0.764, 0.003], - [0.142, 0.055, 0.047, 0.756], - [0.048, 0.23, 0.687, 0.035], - ], - AHR: [ - [0.198, 0.027, 0.495, 0.28], - [0.014, 0.984, 0.0, 0.001], - [0.994, 0.0, 0.0, 0.006], - [0.001, 0.77, 0.031, 0.198], - [0.019, 0.0, 0.98, 0.0], - [0.173, 0.656, 0.114, 0.058], - [0.564, 0.147, 0.145, 0.144], - [0.516, 0.222, 0.129, 0.133], - ], - CTCF: [ - [0.091, 0.799, 0.061, 0.05], - [0.038, 0.95, 0.008, 0.004], - [0.612, 0.028, 0.176, 0.184], - [0.051, 0.561, 0.357, 0.03], - [0.169, 0.403, 0.085, 0.344], - [0.718, 0.033, 0.166, 0.084], - [0.01, 0.014, 0.958, 0.018], - [0.295, 0.007, 0.684, 0.013], - [0.114, 0.044, 0.558, 0.284], - [0.017, 0.021, 0.934, 0.028], - [0.055, 0.096, 0.752, 0.097], - [0.191, 0.617, 0.073, 0.12], - [0.315, 0.127, 0.461, 0.097], - ], - GATA6: [ - [0.641, 0.026, 0.0, 0.333], - [0.0, 0.0, 1.0, 0.0], - [0.972, 0.0, 0.003, 0.025], - [0.001, 0.006, 0.003, 0.989], - [0.973, 0.001, 0.0, 0.026], - [0.902, 0.016, 0.038, 0.045], - [0.301, 0.096, 0.555, 0.048], - [0.35, 0.221, 0.406, 0.023], - ], - MAFK: [ - [0.192, 0.213, 0.091, 0.504], - [0.246, 0.143, 0.407, 0.204], - [0.597, 0.101, 0.124, 0.179], - [0.193, 0.293, 0.458, 0.056], - [0.02, 0.003, 0.001, 0.976], - [0.061, 0.931, 0.0, 0.007], - [0.974, 0.002, 0.019, 0.005], - [0.007, 0.001, 0.863, 0.129], - [0.0, 0.991, 0.007, 0.001], - [0.857, 0.018, 0.036, 0.089], - [0.367, 0.164, 0.175, 0.294], - [0.396, 0.059, 0.063, 0.482], - [0.346, 0.081, 0.046, 0.528], - [0.271, 0.141, 0.072, 0.516], - ], - KLF1: [ - [0.17, 0.005, 0.825, 0.001], - [0.0, 0.017, 0.982, 0.001], - [0.0, 0.0, 1.0, 0.0], - [0.003, 0.743, 0.0, 0.254], - [0.0, 0.0, 1.0, 0.0], - [0.006, 0.0, 0.75, 0.244], - [0.276, 0.091, 0.586, 0.048], - [0.0, 0.011, 0.971, 0.018], - ], - XBP1: [ - [0.531, 0.114, 0.134, 0.221], - [0.283, 0.155, 0.213, 0.349], - [0.318, 0.097, 0.306, 0.279], - [0.106, 0.085, 0.487, 0.322], - [0.542, 0.423, 0.007, 0.028], - [0.026, 0.825, 0.0, 0.149], - [0.969, 0.0, 0.027, 0.003], - [0.009, 0.978, 0.01, 0.003], - [0.098, 0.016, 0.886, 0.0], - [0.017, 0.07, 0.002, 0.91], - ], - ZNF8: [ - [0.179, 0.06, 0.647, 0.114], - [0.224, 0.069, 0.615, 0.092], - [0.673, 0.06, 0.127, 0.14], - [0.127, 0.084, 0.076, 0.712], - [0.698, 0.064, 0.114, 0.124], - [0.75, 0.071, 0.097, 0.081], - [0.776, 0.056, 0.085, 0.082], - [0.126, 0.248, 0.423, 0.202], - [0.797, 0.051, 0.06, 0.093], - [0.781, 0.075, 0.085, 0.059], - [0.812, 0.084, 0.067, 0.038], - [0.593, 0.202, 0.036, 0.17], - [0.044, 0.068, 0.043, 0.845], - [0.159, 0.059, 0.766, 0.016], - [0.008, 0.063, 0.014, 0.915], - [0.006, 0.002, 0.975, 0.017], - [0.005, 0.005, 0.989, 0.001], - [0.001, 0.09, 0.001, 0.908], - [0.987, 0.009, 0.003, 0.002], - [0.027, 0.454, 0.024, 0.495], - [0.756, 0.005, 0.23, 0.009], - [0.014, 0.122, 0.019, 0.844], - [0.41, 0.509, 0.051, 0.03], - [0.07, 0.411, 0.008, 0.511], - [0.891, 0.03, 0.034, 0.046], - [0.056, 0.366, 0.073, 0.506], - [0.722, 0.025, 0.153, 0.099], - [0.133, 0.702, 0.024, 0.14], - [0.58, 0.309, 0.051, 0.059], - [0.737, 0.063, 0.125, 0.076], - [0.084, 0.099, 0.075, 0.742], - [0.131, 0.047, 0.748, 0.074], - [0.138, 0.046, 0.75, 0.066], - [0.804, 0.052, 0.078, 0.066], - [0.716, 0.066, 0.14, 0.079], - [0.101, 0.076, 0.044, 0.779], - [0.788, 0.052, 0.071, 0.089], - [0.079, 0.51, 0.069, 0.341], - [0.098, 0.075, 0.05, 0.777], - [0.779, 0.06, 0.072, 0.089], - [0.078, 0.238, 0.058, 0.626], - [0.161, 0.08, 0.277, 0.482], - [0.095, 0.665, 0.07, 0.17], - [0.733, 0.062, 0.122, 0.083], - [0.124, 0.105, 0.7, 0.071], - [0.103, 0.7, 0.056, 0.141], - [0.244, 0.559, 0.086, 0.111], - [0.668, 0.108, 0.095, 0.13], - [0.099, 0.105, 0.065, 0.731], - [0.65, 0.066, 0.163, 0.121], - [0.785, 0.065, 0.064, 0.086], - [0.818, 0.059, 0.061, 0.061], - [0.798, 0.05, 0.077, 0.075], - [0.802, 0.047, 0.087, 0.064], - [0.455, 0.062, 0.388, 0.095], - [0.246, 0.059, 0.584, 0.111], - [0.686, 0.06, 0.168, 0.086], - [0.705, 0.066, 0.11, 0.118], - [0.201, 0.155, 0.163, 0.481], - [0.339, 0.079, 0.455, 0.127], - [0.65, 0.076, 0.145, 0.129], - [0.456, 0.093, 0.328, 0.123], - [0.43, 0.161, 0.183, 0.227], - [0.178, 0.13, 0.099, 0.593], - ], - ZNF146: [ - [0.86, 0.024, 0.063, 0.053], - [0.142, 0.087, 0.685, 0.086], - [0.858, 0.034, 0.06, 0.049], - [0.873, 0.041, 0.041, 0.046], - [0.885, 0.026, 0.041, 0.048], - [0.823, 0.057, 0.045, 0.074], - [0.097, 0.053, 0.042, 0.809], - [0.133, 0.033, 0.765, 0.068], - [0.068, 0.033, 0.058, 0.84], - [0.083, 0.029, 0.814, 0.073], - [0.112, 0.031, 0.807, 0.051], - [0.05, 0.47, 0.045, 0.435], - [0.843, 0.052, 0.057, 0.048], - [0.055, 0.705, 0.027, 0.212], - [0.861, 0.033, 0.06, 0.045], - [0.047, 0.064, 0.035, 0.854], - [0.784, 0.095, 0.055, 0.066], - [0.039, 0.187, 0.021, 0.754], - [0.897, 0.026, 0.046, 0.031], - [0.037, 0.722, 0.02, 0.222], - [0.894, 0.025, 0.052, 0.028], - [0.042, 0.855, 0.023, 0.08], - [0.212, 0.697, 0.033, 0.057], - [0.885, 0.013, 0.091, 0.012], - [0.017, 0.044, 0.016, 0.923], - [0.037, 0.001, 0.959, 0.003], - [0.029, 0.0, 0.971, 0.0], - [0.988, 0.004, 0.007, 0.001], - [0.933, 0.01, 0.055, 0.002], - [0.004, 0.017, 0.001, 0.978], - [0.991, 0.001, 0.007, 0.001], - [0.005, 0.835, 0.023, 0.137], - [0.004, 0.013, 0.004, 0.979], - [0.996, 0.002, 0.002, 0.0], - [0.001, 0.147, 0.008, 0.844], - [0.114, 0.003, 0.703, 0.181], - [0.005, 0.952, 0.004, 0.039], - [0.974, 0.001, 0.016, 0.01], - [0.016, 0.011, 0.968, 0.005], - [0.003, 0.949, 0.007, 0.042], - [0.063, 0.901, 0.004, 0.032], - [0.891, 0.021, 0.042, 0.046], - [0.007, 0.035, 0.015, 0.943], - [0.788, 0.021, 0.152, 0.039], - [0.982, 0.005, 0.008, 0.006], - [0.988, 0.005, 0.004, 0.003], - [0.966, 0.01, 0.021, 0.002], - [0.996, 0.001, 0.003, 0.001], - [0.731, 0.006, 0.234, 0.028], - [0.05, 0.009, 0.799, 0.143], - [0.519, 0.012, 0.46, 0.009], - [0.893, 0.016, 0.041, 0.05], - [0.096, 0.115, 0.103, 0.686], - [0.216, 0.023, 0.705, 0.056], - [0.831, 0.025, 0.095, 0.049], - [0.282, 0.047, 0.61, 0.061], - [0.36, 0.066, 0.09, 0.484], - [0.058, 0.09, 0.035, 0.817], - [0.161, 0.643, 0.06, 0.136], - [0.648, 0.16, 0.062, 0.13], - [0.074, 0.092, 0.079, 0.755], - [0.098, 0.052, 0.726, 0.124], - [0.106, 0.102, 0.075, 0.717], - [0.058, 0.725, 0.038, 0.18], - ], - EOMES: [ - [0.76, 0.01, 0.15, 0.08], - [0.271, 0.025, 0.635, 0.069], - [0.0, 0.076, 0.919, 0.005], - [0.0, 0.056, 0.001, 0.944], - [0.0, 0.0, 0.999, 0.0], - [0.267, 0.144, 0.014, 0.575], - [0.035, 0.249, 0.41, 0.306], - [0.909, 0.0, 0.056, 0.035], - [0.45, 0.108, 0.377, 0.064], - ], - NFYA: [ - [0.447, 0.113, 0.401, 0.04], - [0.318, 0.086, 0.497, 0.098], - [0.0, 0.99, 0.005, 0.005], - [0.017, 0.972, 0.009, 0.002], - [0.969, 0.0, 0.0, 0.031], - [0.983, 0.005, 0.01, 0.002], - [0.0, 0.033, 0.001, 0.966], - [0.133, 0.543, 0.28, 0.044], - [0.525, 0.096, 0.37, 0.01], - [0.163, 0.227, 0.522, 0.088], - ], - RFX1: [ - [0.186, 0.067, 0.622, 0.125], - [0.093, 0.113, 0.133, 0.66], - [0.142, 0.201, 0.089, 0.569], - [0.186, 0.186, 0.428, 0.201], - [0.037, 0.759, 0.05, 0.155], - [0.018, 0.848, 0.012, 0.123], - [0.626, 0.161, 0.052, 0.161], - [0.107, 0.056, 0.066, 0.77], - [0.251, 0.001, 0.748, 0.0], - [0.117, 0.01, 0.871, 0.002], - [0.132, 0.636, 0.059, 0.173], - [0.76, 0.006, 0.122, 0.112], - [0.961, 0.007, 0.027, 0.005], - [0.005, 0.921, 0.0, 0.074], - ], - NEUROG2: [ - [0.338, 0.331, 0.33, 0.0], - [0.0, 1.0, 0.0, 0.0], - [1.0, 0.0, 0.0, 0.0], - [0.0, 0.005, 0.757, 0.238], - [0.394, 0.605, 0.0, 0.0], - [0.002, 0.008, 0.0, 0.99], - [0.0, 0.0, 0.996, 0.004], - [0.018, 0.315, 0.41, 0.257], - ], - EHF: [ - [0.524, 0.109, 0.232, 0.135], - [0.003, 0.611, 0.063, 0.322], - [0.035, 0.0, 0.001, 0.965], - [0.0, 0.0, 0.0, 1.0], - [0.0, 1.0, 0.0, 0.0], - [0.0, 0.999, 0.0, 0.0], - [0.0, 0.022, 0.207, 0.771], - [0.004, 0.274, 0.562, 0.16], - [0.181, 0.26, 0.325, 0.235], - [0.218, 0.075, 0.054, 0.652], - ], - SCRT2: [ - [0.088, 0.1, 0.468, 0.344], - [0.013, 0.927, 0.01, 0.05], - [0.817, 0.099, 0.031, 0.053], - [0.975, 0.0, 0.016, 0.009], - [0.0, 1.0, 0.0, 0.0], - [0.987, 0.001, 0.0, 0.013], - [0.195, 0.005, 0.789, 0.011], - [0.022, 0.005, 0.944, 0.028], - [0.012, 0.046, 0.005, 0.937], - [0.139, 0.082, 0.611, 0.169], - ], - HAND1: [ - [0.035, 0.348, 0.065, 0.551], - [0.007, 0.99, 0.003, 0.0], - [0.0, 0.025, 0.013, 0.963], - [0.003, 0.0, 0.997, 0.0], - [0.0, 0.202, 0.59, 0.208], - [0.287, 0.128, 0.185, 0.4], - [0.194, 0.22, 0.121, 0.465], - [0.296, 0.147, 0.097, 0.461], - [0.196, 0.208, 0.274, 0.322], - [0.059, 0.376, 0.049, 0.517], - [0.208, 0.257, 0.391, 0.145], - [0.012, 0.023, 0.043, 0.922], - [0.022, 0.935, 0.003, 0.04], - [0.601, 0.095, 0.048, 0.256], - ], - FLI1: [ - [0.38, 0.1, 0.417, 0.103], - [0.27, 0.429, 0.292, 0.01], - [0.742, 0.129, 0.099, 0.03], - [0.007, 0.009, 0.953, 0.03], - [0.0, 0.009, 0.989, 0.001], - [0.928, 0.047, 0.024, 0.0], - [0.927, 0.001, 0.024, 0.048], - [0.02, 0.001, 0.978, 0.0], - ], - SOX13: [ - [0.464, 0.104, 0.312, 0.12], - [0.658, 0.092, 0.191, 0.059], - [0.943, 0.002, 0.0, 0.055], - [0.0, 1.0, 0.0, 0.0], - [1.0, 0.0, 0.0, 0.0], - [1.0, 0.0, 0.0, 0.0], - [0.579, 0.002, 0.0, 0.419], - [0.34, 0.083, 0.529, 0.048], - [0.274, 0.185, 0.516, 0.025], - ], - ELF3: [ - [0.658, 0.024, 0.221, 0.096], - [0.0, 0.632, 0.025, 0.343], - [0.03, 0.0, 0.0, 0.97], - [0.0, 0.0, 0.0, 1.0], - [0.0, 1.0, 0.0, 0.0], - [0.0, 1.0, 0.0, 0.0], - [0.001, 0.024, 0.121, 0.854], - [0.022, 0.262, 0.534, 0.182], - [0.119, 0.285, 0.292, 0.304], - [0.193, 0.145, 0.061, 0.601], - ], - ZNF250: [ - [0.11, 0.106, 0.061, 0.723], - [0.316, 0.06, 0.442, 0.183], - [0.071, 0.052, 0.092, 0.785], - [0.144, 0.055, 0.622, 0.178], - [0.039, 0.139, 0.092, 0.729], - [0.049, 0.683, 0.057, 0.21], - [0.052, 0.117, 0.049, 0.781], - [0.185, 0.059, 0.575, 0.181], - [0.048, 0.066, 0.083, 0.802], - [0.039, 0.225, 0.04, 0.697], - [0.03, 0.138, 0.02, 0.811], - [0.047, 0.053, 0.031, 0.868], - [0.046, 0.043, 0.065, 0.845], - [0.647, 0.047, 0.206, 0.1], - [0.047, 0.082, 0.049, 0.822], - [0.301, 0.06, 0.568, 0.071], - [0.079, 0.744, 0.051, 0.126], - [0.05, 0.803, 0.026, 0.121], - [0.852, 0.042, 0.048, 0.058], - [0.188, 0.034, 0.733, 0.045], - [0.019, 0.077, 0.049, 0.855], - [0.774, 0.012, 0.177, 0.036], - [0.044, 0.893, 0.025, 0.039], - [0.009, 0.949, 0.009, 0.033], - [0.921, 0.035, 0.023, 0.021], - [0.021, 0.205, 0.028, 0.746], - [0.404, 0.009, 0.565, 0.021], - [0.015, 0.884, 0.023, 0.078], - [0.027, 0.04, 0.013, 0.92], - [0.029, 0.027, 0.907, 0.037], - [0.011, 0.036, 0.037, 0.916], - [0.027, 0.022, 0.006, 0.946], - [0.002, 0.035, 0.003, 0.96], - [0.005, 0.012, 0.05, 0.933], - [0.091, 0.039, 0.843, 0.027], - [0.459, 0.044, 0.456, 0.042], - [0.04, 0.026, 0.018, 0.917], - [0.037, 0.028, 0.067, 0.867], - [0.914, 0.014, 0.028, 0.044], - [0.012, 0.845, 0.027, 0.116], - [0.038, 0.098, 0.029, 0.835], - [0.498, 0.004, 0.489, 0.009], - [0.006, 0.07, 0.018, 0.906], - [0.891, 0.018, 0.046, 0.045], - [0.055, 0.038, 0.896, 0.011], - [0.009, 0.902, 0.012, 0.078], - [0.03, 0.191, 0.001, 0.777], - [0.003, 0.168, 0.003, 0.827], - [0.009, 0.019, 0.018, 0.954], - [0.107, 0.025, 0.852, 0.016], - [0.022, 0.115, 0.016, 0.848], - [0.884, 0.018, 0.07, 0.028], - [0.299, 0.019, 0.622, 0.061], - [0.016, 0.075, 0.016, 0.893], - [0.855, 0.026, 0.076, 0.043], - [0.154, 0.078, 0.028, 0.74], - [0.716, 0.018, 0.242, 0.025], - [0.178, 0.066, 0.261, 0.495], - [0.009, 0.026, 0.01, 0.956], - [0.013, 0.06, 0.009, 0.917], - [0.021, 0.053, 0.042, 0.884], - [0.146, 0.044, 0.761, 0.048], - [0.889, 0.022, 0.042, 0.047], - [0.836, 0.022, 0.067, 0.076], - ], - SOX9: [ - [0.406, 0.073, 0.403, 0.118], - [0.627, 0.12, 0.186, 0.068], - [0.905, 0.026, 0.001, 0.067], - [0.0, 0.976, 0.022, 0.002], - [0.997, 0.001, 0.002, 0.001], - [0.978, 0.011, 0.008, 0.003], - [0.511, 0.007, 0.026, 0.456], - [0.145, 0.105, 0.733, 0.017], - [0.335, 0.156, 0.448, 0.061], - [0.275, 0.217, 0.313, 0.194], - [0.199, 0.301, 0.223, 0.278], - [0.146, 0.367, 0.189, 0.298], - [0.136, 0.47, 0.131, 0.263], - [0.279, 0.188, 0.066, 0.467], - [0.059, 0.142, 0.088, 0.711], - [0.066, 0.062, 0.148, 0.725], - [0.147, 0.125, 0.432, 0.296], - [0.237, 0.056, 0.151, 0.557], - ], - MZF1: [ - [0.286, 0.057, 0.198, 0.458], - [0.173, 0.001, 0.826, 0.0], - [0.003, 0.0, 0.997, 0.0], - [0.0, 0.0, 0.999, 0.001], - [0.0, 0.0, 1.0, 0.0], - [0.999, 0.001, 0.0, 0.0], - [0.079, 0.059, 0.182, 0.679], - [0.005, 0.298, 0.161, 0.536], - ], - ZNF449: [ - [0.355, 0.314, 0.302, 0.029], - [0.632, 0.235, 0.021, 0.112], - [0.0, 0.0, 0.999, 0.001], - [0.003, 0.876, 0.112, 0.009], - [0.001, 0.983, 0.015, 0.0], - [0.009, 0.955, 0.036, 0.001], - [0.8, 0.073, 0.073, 0.054], - [0.705, 0.001, 0.289, 0.004], - [0.024, 0.948, 0.015, 0.012], - [0.129, 0.679, 0.071, 0.121], - ], - ERG: [ - [0.44, 0.117, 0.378, 0.065], - [0.011, 0.627, 0.016, 0.346], - [0.093, 0.008, 0.002, 0.898], - [0.014, 0.002, 0.008, 0.976], - [0.0, 0.999, 0.001, 0.0], - [0.019, 0.977, 0.0, 0.004], - [0.0, 0.02, 0.18, 0.8], - [0.017, 0.18, 0.65, 0.154], - ], - IRF2: [ - [0.069, 0.418, 0.129, 0.383], - [0.068, 0.595, 0.08, 0.257], - [0.486, 0.113, 0.246, 0.155], - [0.003, 0.671, 0.316, 0.01], - [0.041, 0.049, 0.0, 0.91], - [0.013, 0.088, 0.033, 0.866], - [0.0, 0.353, 0.0, 0.646], - [0.0, 0.951, 0.013, 0.036], - [0.352, 0.094, 0.27, 0.283], - [0.04, 0.475, 0.295, 0.19], - [0.02, 0.178, 0.081, 0.721], - [0.122, 0.129, 0.005, 0.744], - [0.075, 0.225, 0.113, 0.587], - [0.11, 0.515, 0.183, 0.192], - ], - IKZF1: [ - [0.101, 0.233, 0.078, 0.588], - [0.151, 0.059, 0.752, 0.038], - [0.0, 0.0, 1.0, 0.0], - [0.0, 0.007, 0.993, 0.0], - [0.995, 0.004, 0.0, 0.001], - [0.67, 0.015, 0.251, 0.063], - [0.239, 0.09, 0.253, 0.419], - [0.411, 0.026, 0.336, 0.226], - ], - MAF: [ - [0.105, 0.227, 0.524, 0.144], - [0.156, 0.577, 0.084, 0.183], - [0.212, 0.17, 0.121, 0.496], - [0.214, 0.124, 0.461, 0.201], - [0.509, 0.163, 0.116, 0.213], - [0.132, 0.272, 0.525, 0.071], - [0.012, 0.032, 0.032, 0.925], - [0.123, 0.875, 0.0, 0.002], - [0.908, 0.013, 0.024, 0.055], - [0.003, 0.0, 0.912, 0.084], - [0.004, 0.965, 0.018, 0.012], - [0.803, 0.015, 0.083, 0.099], - [0.291, 0.248, 0.264, 0.197], - [0.362, 0.154, 0.119, 0.365], - [0.291, 0.127, 0.086, 0.496], - ], - PHOX2B: [ - [0.191, 0.029, 0.016, 0.764], - [0.807, 0.012, 0.058, 0.123], - [1.0, 0.0, 0.0, 0.0], - [0.036, 0.034, 0.012, 0.917], - [0.061, 0.152, 0.066, 0.721], - [0.5, 0.033, 0.135, 0.332], - [0.613, 0.109, 0.222, 0.056], - [0.875, 0.009, 0.072, 0.043], - [0.0, 0.0, 0.0, 1.0], - [0.064, 0.045, 0.011, 0.881], - [0.831, 0.009, 0.02, 0.14], - ], - SOX5: [ - [0.04, 0.507, 0.233, 0.219], - [0.031, 0.583, 0.059, 0.327], - [0.499, 0.017, 0.047, 0.437], - [0.001, 0.003, 0.024, 0.972], - [0.001, 0.007, 0.0, 0.991], - [0.003, 0.022, 0.975, 0.0], - [0.121, 0.005, 0.039, 0.835], - [0.058, 0.21, 0.11, 0.623], - [0.106, 0.362, 0.106, 0.427], - ], - OSR2: [ - [0.044, 0.858, 0.008, 0.089], - [0.715, 0.0, 0.285, 0.0], - [0.0, 0.0, 0.997, 0.003], - [0.286, 0.017, 0.162, 0.535], - [0.852, 0.0, 0.12, 0.028], - [0.009, 0.0, 0.98, 0.011], - [0.018, 0.836, 0.045, 0.101], - ], - PITX3: [ - [0.264, 0.013, 0.703, 0.019], - [0.071, 0.043, 0.882, 0.005], - [0.777, 0.221, 0.001, 0.002], - [0.0, 0.001, 0.0, 0.999], - [0.003, 0.046, 0.0, 0.951], - [0.853, 0.005, 0.002, 0.14], - [0.43, 0.055, 0.396, 0.119], - ], - OLIG2: [ - [0.273, 0.418, 0.294, 0.016], - [0.001, 0.999, 0.0, 0.0], - [0.844, 0.0, 0.117, 0.039], - [0.003, 0.002, 0.659, 0.336], - [0.373, 0.627, 0.0, 0.0], - [0.016, 0.115, 0.017, 0.852], - [0.0, 0.0, 0.911, 0.089], - [0.006, 0.239, 0.581, 0.174], - ], - KLF14: [ - [0.134, 0.145, 0.629, 0.091], - [0.144, 0.529, 0.105, 0.223], - [0.079, 0.679, 0.032, 0.21], - [0.372, 0.623, 0.0, 0.005], - [0.012, 0.981, 0.0, 0.007], - [0.154, 0.001, 0.771, 0.074], - [0.009, 0.987, 0.0, 0.004], - [0.001, 0.98, 0.009, 0.01], - [0.0, 0.963, 0.003, 0.034], - [0.472, 0.406, 0.005, 0.117], - [0.025, 0.766, 0.043, 0.165], - ], - EBF1: [ - [0.051, 0.251, 0.12, 0.577], - [0.007, 0.922, 0.071, 0.0], - [0.025, 0.78, 0.056, 0.139], - [0.0, 0.965, 0.017, 0.018], - [0.293, 0.335, 0.061, 0.311], - [0.305, 0.082, 0.335, 0.277], - [0.026, 0.033, 0.94, 0.002], - [0.171, 0.049, 0.72, 0.06], - [0.0, 0.091, 0.888, 0.021], - [0.595, 0.066, 0.312, 0.027], - [0.175, 0.493, 0.246, 0.086], - ], - FOXK1: [ - [0.017, 0.007, 0.012, 0.964], - [0.101, 0.001, 0.898, 0.0], - [0.013, 0.003, 0.006, 0.978], - [0.012, 0.0, 0.057, 0.93], - [0.0, 0.0, 0.193, 0.807], - [0.771, 0.071, 0.021, 0.137], - [0.0, 0.633, 0.053, 0.314], - ], - NR1H2: [ - [0.071, 0.107, 0.09, 0.731], - [0.172, 0.076, 0.598, 0.154], - [0.529, 0.138, 0.28, 0.052], - [0.367, 0.59, 0.023, 0.02], - [0.025, 0.968, 0.003, 0.004], - [0.024, 0.061, 0.002, 0.912], - [0.028, 0.093, 0.01, 0.869], - [0.015, 0.027, 0.035, 0.922], - [0.154, 0.098, 0.704, 0.044], - [0.438, 0.197, 0.226, 0.139], - [0.321, 0.39, 0.041, 0.247], - [0.115, 0.715, 0.085, 0.085], - [0.13, 0.345, 0.046, 0.48], - ], - ZNF382: [ - [0.087, 0.689, 0.044, 0.179], - [0.07, 0.11, 0.181, 0.638], - [0.038, 0.092, 0.842, 0.028], - [0.017, 0.027, 0.015, 0.941], - [0.551, 0.021, 0.235, 0.193], - [0.057, 0.287, 0.54, 0.116], - [0.022, 0.037, 0.034, 0.907], - [0.465, 0.019, 0.424, 0.092], - [0.323, 0.239, 0.237, 0.201], - [0.03, 0.082, 0.022, 0.866], - [0.158, 0.024, 0.518, 0.3], - [0.082, 0.209, 0.216, 0.493], - [0.115, 0.758, 0.03, 0.097], - [0.104, 0.218, 0.034, 0.644], - [0.073, 0.767, 0.069, 0.091], - [0.333, 0.338, 0.068, 0.26], - [0.112, 0.203, 0.113, 0.572], - ], - MYB: [ - [0.988, 0.0, 0.003, 0.009], - [0.982, 0.002, 0.015, 0.001], - [0.0, 1.0, 0.0, 0.0], - [0.13, 0.165, 0.156, 0.549], - [0.059, 0.005, 0.936, 0.0], - [0.284, 0.388, 0.028, 0.299], - [0.309, 0.436, 0.032, 0.223], - ], - TBP: [ - [0.05, 0.516, 0.158, 0.276], - [0.284, 0.028, 0.057, 0.63], - [0.832, 0.008, 0.032, 0.128], - [0.003, 0.014, 0.024, 0.959], - [0.85, 0.085, 0.006, 0.059], - [0.628, 0.029, 0.025, 0.318], - [0.815, 0.002, 0.153, 0.031], - [0.55, 0.045, 0.144, 0.261], - ], - ASCL1: [ - [0.238, 0.278, 0.479, 0.006], - [0.007, 0.99, 0.0, 0.003], - [0.994, 0.002, 0.002, 0.002], - [0.022, 0.0, 0.978, 0.001], - [0.117, 0.405, 0.478, 0.0], - [0.01, 0.0, 0.003, 0.987], - [0.003, 0.001, 0.987, 0.009], - ], - ZNF85: [ - [0.661, 0.073, 0.174, 0.092], - [0.034, 0.007, 0.936, 0.023], - [0.93, 0.026, 0.032, 0.011], - [0.008, 0.008, 0.107, 0.877], - [0.002, 0.001, 0.002, 0.994], - [0.407, 0.404, 0.081, 0.108], - [0.004, 0.976, 0.005, 0.015], - [0.444, 0.064, 0.078, 0.414], - [0.035, 0.045, 0.426, 0.494], - [0.004, 0.852, 0.003, 0.141], - [0.704, 0.069, 0.083, 0.144], - [0.126, 0.212, 0.442, 0.221], - [0.322, 0.134, 0.085, 0.459], - [0.123, 0.249, 0.102, 0.527], - [0.13, 0.127, 0.208, 0.534], - [0.139, 0.167, 0.114, 0.581], - [0.12, 0.515, 0.109, 0.255], - ], - ZBTB33: [ - [0.069, 0.148, 0.132, 0.651], - [0.105, 0.756, 0.08, 0.058], - [0.087, 0.112, 0.145, 0.656], - [0.031, 0.906, 0.052, 0.01], - [0.066, 0.01, 0.911, 0.013], - [0.025, 0.881, 0.01, 0.084], - [0.004, 0.009, 0.981, 0.006], - [0.546, 0.165, 0.252, 0.037], - [0.048, 0.091, 0.61, 0.251], - [0.571, 0.167, 0.221, 0.042], - ], - SP4: [ - [0.05, 0.687, 0.129, 0.134], - [0.068, 0.706, 0.0, 0.226], - [0.097, 0.903, 0.0, 0.0], - [0.0, 1.0, 0.0, 0.0], - [0.026, 0.0, 0.79, 0.185], - [0.0, 1.0, 0.0, 0.0], - [0.0, 1.0, 0.0, 0.0], - [0.0, 0.821, 0.0, 0.179], - [0.208, 0.659, 0.01, 0.123], - [0.052, 0.523, 0.203, 0.221], - [0.13, 0.412, 0.211, 0.246], - [0.126, 0.358, 0.287, 0.229], - [0.121, 0.528, 0.239, 0.113], - [0.075, 0.526, 0.254, 0.144], - [0.114, 0.385, 0.295, 0.206], - [0.111, 0.481, 0.318, 0.09], - [0.137, 0.415, 0.304, 0.144], - [0.082, 0.465, 0.327, 0.126], - [0.111, 0.464, 0.289, 0.136], - [0.089, 0.439, 0.294, 0.178], - [0.114, 0.406, 0.3, 0.181], - [0.117, 0.463, 0.27, 0.15], - [0.072, 0.447, 0.32, 0.161], - ], - FOXA3: [ - [0.271, 0.06, 0.16, 0.509], - [0.012, 0.006, 0.969, 0.012], - [0.054, 0.0, 0.053, 0.893], - [0.684, 0.309, 0.003, 0.004], - [0.799, 0.2, 0.0, 0.001], - [0.929, 0.037, 0.023, 0.01], - [0.0, 0.741, 0.001, 0.258], - [0.822, 0.002, 0.113, 0.064], - ], - BCL6: [ - [0.136, 0.628, 0.134, 0.102], - [0.145, 0.197, 0.057, 0.6], - [0.074, 0.213, 0.143, 0.57], - [0.048, 0.067, 0.072, 0.814], - [0.0, 0.892, 0.006, 0.102], - [0.025, 0.484, 0.094, 0.398], - [0.811, 0.096, 0.062, 0.031], - [0.147, 0.006, 0.817, 0.029], - [0.028, 0.035, 0.871, 0.065], - [0.693, 0.112, 0.141, 0.054], - [0.736, 0.113, 0.074, 0.077], - ], - ZNF320: [ - [0.138, 0.115, 0.586, 0.161], - [0.1, 0.1, 0.501, 0.299], - [0.166, 0.084, 0.581, 0.169], - [0.071, 0.062, 0.808, 0.059], - [0.039, 0.055, 0.87, 0.037], - [0.228, 0.066, 0.44, 0.266], - [0.183, 0.419, 0.184, 0.214], - [0.178, 0.611, 0.09, 0.122], - [0.363, 0.346, 0.086, 0.205], - [0.297, 0.062, 0.515, 0.127], - [0.124, 0.017, 0.664, 0.195], - [0.01, 0.002, 0.983, 0.005], - [0.039, 0.001, 0.958, 0.001], - [0.035, 0.013, 0.92, 0.031], - [0.346, 0.618, 0.031, 0.004], - [0.28, 0.595, 0.029, 0.096], - [0.372, 0.047, 0.183, 0.399], - [0.321, 0.085, 0.524, 0.069], - [0.093, 0.156, 0.099, 0.653], - [0.063, 0.07, 0.77, 0.097], - ], - ZBTB6: [ - [0.138, 0.128, 0.595, 0.139], - [0.398, 0.058, 0.506, 0.038], - [0.187, 0.178, 0.073, 0.562], - [0.052, 0.241, 0.556, 0.152], - [0.415, 0.536, 0.034, 0.014], - [0.009, 0.097, 0.009, 0.885], - [0.32, 0.021, 0.527, 0.131], - [0.0, 0.002, 0.998, 0.0], - [0.997, 0.003, 0.0, 0.0], - [0.001, 0.001, 0.998, 0.0], - [0.086, 0.839, 0.037, 0.038], - [0.114, 0.631, 0.06, 0.196], - ], - ARNTL: [ - [0.032, 0.819, 0.0, 0.149], - [0.852, 0.0, 0.105, 0.043], - [0.02, 0.654, 0.049, 0.276], - [0.135, 0.0, 0.836, 0.029], - [0.0, 0.0, 0.0, 1.0], - [0.008, 0.017, 0.961, 0.014], - ], - NFIB: [ - [0.066, 0.374, 0.1, 0.46], - [0.03, 0.036, 0.122, 0.812], - [0.001, 0.033, 0.966, 0.0], - [0.031, 0.0, 0.921, 0.049], - [0.187, 0.716, 0.078, 0.019], - [0.424, 0.222, 0.058, 0.295], - [0.146, 0.306, 0.299, 0.25], - [0.225, 0.263, 0.267, 0.245], - [0.226, 0.237, 0.374, 0.163], - [0.289, 0.049, 0.187, 0.475], - [0.0, 0.0, 0.898, 0.102], - [0.026, 0.937, 0.0, 0.037], - [0.0, 0.903, 0.095, 0.002], - [0.838, 0.079, 0.056, 0.027], - [0.544, 0.008, 0.436, 0.012], - ], - NRF1: [ - [0.183, 0.059, 0.755, 0.004], - [0.058, 0.89, 0.052, 0.0], - [0.061, 0.002, 0.915, 0.023], - [0.0, 0.996, 0.0, 0.003], - [0.549, 0.257, 0.177, 0.018], - [0.029, 0.238, 0.345, 0.388], - [0.101, 0.148, 0.726, 0.024], - [0.024, 0.876, 0.034, 0.066], - [0.034, 0.042, 0.718, 0.206], - [0.005, 0.868, 0.061, 0.066], - ], - CEBPA: [ - [0.498, 0.11, 0.385, 0.007], - [0.0, 0.001, 0.0, 0.999], - [0.001, 0.0, 0.351, 0.648], - [0.292, 0.001, 0.446, 0.262], - [0.09, 0.533, 0.124, 0.253], - [0.165, 0.062, 0.729, 0.043], - [0.045, 0.895, 0.0, 0.06], - [0.988, 0.012, 0.0, 0.0], - [1.0, 0.0, 0.0, 0.0], - [0.009, 0.303, 0.089, 0.599], - ], - MAFG: [ - [0.057, 0.129, 0.016, 0.798], - [0.105, 0.042, 0.752, 0.101], - [0.871, 0.026, 0.031, 0.072], - [0.091, 0.489, 0.348, 0.072], - [0.081, 0.014, 0.009, 0.896], - [0.102, 0.824, 0.013, 0.061], - [0.898, 0.002, 0.052, 0.048], - [0.024, 0.003, 0.87, 0.103], - [0.0, 0.961, 0.033, 0.006], - [0.824, 0.035, 0.047, 0.095], - [0.371, 0.149, 0.197, 0.283], - [0.394, 0.079, 0.09, 0.437], - [0.346, 0.085, 0.059, 0.51], - [0.268, 0.161, 0.073, 0.499], - ], - ZNF16: [ - [0.106, 0.175, 0.159, 0.561], - [0.139, 0.156, 0.183, 0.522], - [0.342, 0.165, 0.243, 0.25], - [0.235, 0.169, 0.193, 0.403], - [0.128, 0.404, 0.166, 0.302], - [0.105, 0.486, 0.154, 0.255], - [0.137, 0.316, 0.175, 0.372], - [0.233, 0.179, 0.38, 0.208], - [0.377, 0.126, 0.273, 0.223], - [0.35, 0.062, 0.495, 0.093], - [0.212, 0.015, 0.736, 0.037], - [0.085, 0.018, 0.859, 0.038], - [0.153, 0.535, 0.13, 0.182], - [0.77, 0.121, 0.082, 0.027], - [0.425, 0.263, 0.295, 0.018], - [0.066, 0.116, 0.192, 0.625], - [0.385, 0.026, 0.358, 0.231], - [0.022, 0.002, 0.966, 0.01], - [0.015, 0.019, 0.936, 0.03], - [0.004, 0.021, 0.974, 0.002], - [0.992, 0.006, 0.002, 0.0], - [0.015, 0.0, 0.981, 0.004], - [0.012, 0.948, 0.003, 0.038], - [0.01, 0.861, 0.013, 0.116], - [0.938, 0.032, 0.017, 0.013], - [0.039, 0.254, 0.054, 0.653], - [0.246, 0.03, 0.486, 0.238], - [0.033, 0.024, 0.917, 0.026], - [0.677, 0.146, 0.126, 0.051], - [0.575, 0.034, 0.298, 0.092], - [0.108, 0.012, 0.797, 0.083], - [0.134, 0.012, 0.83, 0.024], - [0.105, 0.21, 0.087, 0.599], - [0.041, 0.082, 0.194, 0.682], - [0.078, 0.348, 0.162, 0.412], - [0.079, 0.116, 0.129, 0.677], - [0.346, 0.02, 0.265, 0.369], - [0.112, 0.043, 0.797, 0.047], - [0.682, 0.04, 0.252, 0.026], - [0.062, 0.191, 0.71, 0.038], - [0.233, 0.479, 0.207, 0.081], - [0.505, 0.039, 0.369, 0.086], - [0.361, 0.051, 0.539, 0.049], - [0.207, 0.045, 0.675, 0.073], - [0.302, 0.034, 0.617, 0.047], - [0.214, 0.091, 0.641, 0.055], - [0.495, 0.138, 0.248, 0.119], - [0.237, 0.061, 0.617, 0.085], - [0.16, 0.073, 0.471, 0.295], - ], - ATF3: [ - [0.276, 0.161, 0.515, 0.047], - [0.026, 0.136, 0.101, 0.738], - [0.004, 0.567, 0.221, 0.209], - [0.788, 0.008, 0.174, 0.029], - [0.0, 0.928, 0.021, 0.052], - [0.325, 0.04, 0.635, 0.0], - [0.02, 0.005, 0.0, 0.975], - [0.011, 0.442, 0.547, 0.0], - [0.842, 0.016, 0.11, 0.032], - [0.005, 0.631, 0.074, 0.289], - ], - FOS: [ - [0.458, 0.188, 0.309, 0.044], - [0.0, 0.003, 0.0, 0.997], - [0.0, 0.0, 0.957, 0.043], - [1.0, 0.0, 0.0, 0.0], - [0.081, 0.434, 0.36, 0.125], - [0.009, 0.0, 0.0, 0.991], - [0.126, 0.874, 0.0, 0.0], - [0.993, 0.0, 0.007, 0.0], - [0.05, 0.279, 0.219, 0.452], - ], - ZNF41: [ - [0.116, 0.151, 0.133, 0.601], - [0.141, 0.355, 0.17, 0.335], - [0.273, 0.334, 0.202, 0.191], - [0.116, 0.595, 0.107, 0.182], - [0.13, 0.141, 0.081, 0.648], - [0.12, 0.544, 0.155, 0.181], - [0.582, 0.163, 0.084, 0.171], - [0.035, 0.192, 0.032, 0.741], - [0.092, 0.082, 0.519, 0.307], - [0.052, 0.094, 0.755, 0.099], - [0.005, 0.017, 0.006, 0.971], - [0.096, 0.164, 0.66, 0.08], - [0.148, 0.423, 0.156, 0.273], - [0.087, 0.433, 0.059, 0.421], - [0.12, 0.238, 0.204, 0.437], - [0.18, 0.256, 0.18, 0.384], - [0.425, 0.105, 0.154, 0.316], - [0.042, 0.506, 0.097, 0.355], - [0.019, 0.058, 0.015, 0.908], - [0.016, 0.665, 0.021, 0.298], - [0.109, 0.673, 0.067, 0.15], - [0.039, 0.831, 0.03, 0.101], - [0.045, 0.294, 0.039, 0.622], - [0.073, 0.181, 0.1, 0.646], - [0.136, 0.086, 0.611, 0.167], - [0.067, 0.182, 0.086, 0.665], - ], - TEAD2: [ - [0.439, 0.004, 0.535, 0.022], - [0.097, 0.901, 0.002, 0.0], - [0.99, 0.0, 0.004, 0.006], - [0.0, 0.0, 0.0, 1.0], - [0.012, 0.0, 0.002, 0.986], - [0.0, 0.98, 0.0, 0.02], - [0.0, 0.867, 0.0, 0.133], - [0.35, 0.163, 0.034, 0.453], - [0.318, 0.137, 0.397, 0.147], - [0.127, 0.385, 0.417, 0.071], - [0.117, 0.473, 0.316, 0.093], - [0.442, 0.253, 0.152, 0.154], - [0.198, 0.279, 0.393, 0.13], - [0.15, 0.331, 0.293, 0.226], - [0.331, 0.118, 0.19, 0.361], - [0.062, 0.201, 0.458, 0.279], - ], - ELK3: [ - [0.597, 0.038, 0.252, 0.113], - [0.023, 0.576, 0.057, 0.344], - [0.083, 0.0, 0.0, 0.917], - [0.018, 0.0, 0.0, 0.982], - [0.001, 0.895, 0.0, 0.104], - [0.063, 0.838, 0.009, 0.089], - [0.036, 0.021, 0.481, 0.462], - [0.066, 0.183, 0.597, 0.154], - ], - BACH2: [ - [0.587, 0.146, 0.228, 0.039], - [0.009, 0.005, 0.0, 0.985], - [0.004, 0.006, 0.94, 0.05], - [0.971, 0.013, 0.001, 0.016], - [0.067, 0.7, 0.166, 0.067], - [0.225, 0.055, 0.059, 0.661], - [0.187, 0.554, 0.122, 0.136], - [0.627, 0.035, 0.167, 0.171], - [0.12, 0.035, 0.732, 0.113], - [0.046, 0.81, 0.094, 0.051], - [0.633, 0.077, 0.141, 0.15], - ], - PBX2: [ - [0.157, 0.546, 0.08, 0.217], - [0.258, 0.376, 0.025, 0.341], - [0.621, 0.012, 0.357, 0.01], - [0.0, 0.09, 0.001, 0.91], - [0.427, 0.464, 0.012, 0.097], - [0.88, 0.063, 0.005, 0.052], - [0.758, 0.139, 0.065, 0.037], - [0.006, 0.0, 0.0, 0.994], - [0.018, 0.913, 0.0, 0.07], - [0.797, 0.038, 0.009, 0.157], - ], - KLF10: [ - [0.262, 0.058, 0.642, 0.038], - [0.132, 0.009, 0.654, 0.205], - [0.147, 0.0, 0.848, 0.005], - [0.011, 0.002, 0.98, 0.008], - [0.003, 0.005, 0.986, 0.005], - [0.052, 0.703, 0.0, 0.246], - [0.01, 0.012, 0.938, 0.041], - [0.001, 0.077, 0.508, 0.414], - [0.05, 0.003, 0.876, 0.071], - [0.076, 0.075, 0.644, 0.205], - [0.095, 0.718, 0.089, 0.098], - ], - NFKB2: [ - [0.033, 0.022, 0.871, 0.074], - [0.0, 0.0, 0.999, 0.0], - [0.0, 0.0, 0.857, 0.143], - [0.396, 0.048, 0.461, 0.095], - [0.413, 0.262, 0.149, 0.176], - [0.27, 0.083, 0.064, 0.583], - [0.053, 0.145, 0.147, 0.655], - [0.036, 0.545, 0.016, 0.403], - [0.05, 0.949, 0.0, 0.0], - [0.0, 1.0, 0.0, 0.0], - [0.104, 0.79, 0.03, 0.076], - ], - FOSB: [ - [0.0, 0.014, 0.0, 0.986], - [0.0, 0.0, 0.919, 0.081], - [1.0, 0.0, 0.0, 0.0], - [0.087, 0.436, 0.446, 0.032], - [0.005, 0.0, 0.0, 0.995], - [0.001, 0.999, 0.0, 0.0], - [1.0, 0.0, 0.0, 0.0], - [0.018, 0.358, 0.233, 0.391], - ], - E2F4: [ - [0.107, 0.228, 0.664, 0.001], - [0.009, 0.031, 0.954, 0.007], - [0.008, 0.987, 0.0, 0.006], - [0.002, 0.0, 0.984, 0.015], - [0.0, 0.164, 0.836, 0.0], - [0.017, 0.065, 0.902, 0.017], - [0.916, 0.046, 0.017, 0.021], - [0.626, 0.055, 0.271, 0.049], - ], - NR2C2: [ - [0.0, 0.046, 0.001, 0.953], - [0.056, 0.014, 0.93, 0.0], - [0.972, 0.023, 0.004, 0.0], - [0.061, 0.933, 0.002, 0.003], - [0.016, 0.97, 0.002, 0.012], - [0.0, 0.381, 0.008, 0.611], - ], - NFIL3: [ - [0.432, 0.144, 0.398, 0.025], - [0.001, 0.0, 0.0, 0.999], - [0.0, 0.0, 0.05, 0.95], - [0.723, 0.0, 0.265, 0.012], - [0.028, 0.598, 0.021, 0.354], - [0.494, 0.032, 0.453, 0.021], - [0.017, 0.145, 0.001, 0.838], - [0.83, 0.169, 0.0, 0.0], - [0.999, 0.001, 0.0, 0.0], - [0.035, 0.393, 0.147, 0.425], - ], - ZNF134: [ - [0.124, 0.536, 0.106, 0.233], - [0.041, 0.206, 0.085, 0.668], - [0.403, 0.412, 0.08, 0.105], - [0.976, 0.006, 0.014, 0.004], - [0.023, 0.053, 0.281, 0.642], - [0.013, 0.937, 0.003, 0.046], - [0.958, 0.016, 0.012, 0.014], - [0.002, 0.011, 0.987, 0.001], - [0.042, 0.041, 0.51, 0.407], - [0.058, 0.081, 0.134, 0.727], - [0.034, 0.005, 0.946, 0.016], - [0.703, 0.237, 0.041, 0.019], - [0.437, 0.188, 0.116, 0.259], - [0.052, 0.044, 0.864, 0.039], - [0.119, 0.103, 0.674, 0.105], - ], - KLF9: [ - [0.13, 0.154, 0.613, 0.102], - [0.151, 0.669, 0.091, 0.09], - [0.033, 0.868, 0.023, 0.076], - [0.387, 0.597, 0.014, 0.002], - [0.002, 0.996, 0.001, 0.002], - [0.31, 0.001, 0.577, 0.112], - [0.0, 1.0, 0.0, 0.0], - [0.0, 1.0, 0.0, 0.0], - [0.0, 0.931, 0.0, 0.069], - [0.333, 0.576, 0.003, 0.087], - [0.036, 0.668, 0.086, 0.21], - ], - ZNF547: [ - [0.078, 0.09, 0.731, 0.101], - [0.09, 0.313, 0.098, 0.499], - [0.28, 0.212, 0.283, 0.225], - [0.101, 0.235, 0.121, 0.543], - [0.096, 0.045, 0.744, 0.114], - [0.095, 0.496, 0.127, 0.283], - [0.114, 0.38, 0.178, 0.328], - [0.074, 0.068, 0.196, 0.661], - [0.07, 0.024, 0.839, 0.067], - [0.096, 0.531, 0.056, 0.317], - [0.272, 0.153, 0.226, 0.35], - [0.006, 0.008, 0.921, 0.066], - [0.295, 0.572, 0.053, 0.08], - [0.508, 0.034, 0.282, 0.176], - [0.003, 0.071, 0.028, 0.898], - [0.035, 0.066, 0.245, 0.654], - [0.337, 0.174, 0.081, 0.407], - [0.185, 0.016, 0.778, 0.021], - [0.054, 0.641, 0.106, 0.199], - ], - ATF7: [ - [0.781, 0.038, 0.172, 0.009], - [0.007, 0.007, 0.0, 0.985], - [0.004, 0.008, 0.713, 0.275], - [0.848, 0.0, 0.087, 0.064], - [0.003, 0.702, 0.103, 0.192], - [0.428, 0.098, 0.472, 0.002], - [0.007, 0.001, 0.0, 0.991], - [0.095, 0.9, 0.004, 0.001], - [0.992, 0.0, 0.008, 0.0], - [0.008, 0.199, 0.035, 0.758], - ], - BATF: [ - [0.031, 0.128, 0.007, 0.834], - [0.046, 0.031, 0.77, 0.152], - [0.908, 0.043, 0.011, 0.039], - [0.039, 0.366, 0.504, 0.09], - [0.047, 0.055, 0.008, 0.89], - [0.238, 0.693, 0.061, 0.008], - [0.984, 0.009, 0.002, 0.005], - [0.223, 0.023, 0.17, 0.585], - [0.48, 0.164, 0.038, 0.318], - [0.286, 0.231, 0.122, 0.361], - [0.17, 0.429, 0.118, 0.283], - [0.281, 0.106, 0.411, 0.202], - [0.406, 0.156, 0.268, 0.17], - [0.349, 0.142, 0.314, 0.195], - [0.599, 0.207, 0.081, 0.113], - ], - HNF4G: [ - [0.1, 0.123, 0.084, 0.693], - [0.14, 0.023, 0.826, 0.011], - [0.476, 0.113, 0.375, 0.036], - [0.531, 0.412, 0.012, 0.045], - [0.007, 0.981, 0.007, 0.005], - [0.01, 0.102, 0.003, 0.885], - [0.021, 0.13, 0.01, 0.839], - [0.01, 0.043, 0.009, 0.938], - [0.071, 0.015, 0.905, 0.009], - [0.302, 0.229, 0.31, 0.159], - [0.368, 0.342, 0.099, 0.19], - [0.084, 0.792, 0.027, 0.097], - [0.117, 0.402, 0.052, 0.429], - ], - SNAI1: [ - [0.259, 0.021, 0.72, 0.0], - [0.0, 1.0, 0.0, 0.0], - [0.999, 0.0, 0.0, 0.001], - [0.0, 0.03, 0.97, 0.0], - [0.0, 0.023, 0.977, 0.0], - [0.0, 0.0, 0.0, 1.0], - [0.004, 0.002, 0.97, 0.025], - ], - NR2F1: [ - [0.0, 0.039, 0.0, 0.961], - [0.038, 0.002, 0.96, 0.0], - [0.985, 0.008, 0.007, 0.0], - [0.004, 0.995, 0.0, 0.001], - [0.001, 0.993, 0.005, 0.001], - [0.0, 0.288, 0.002, 0.71], - [0.036, 0.468, 0.126, 0.37], - ], - HSF1: [ - [0.113, 0.1, 0.077, 0.71], - [0.063, 0.054, 0.054, 0.829], - [0.016, 0.961, 0.02, 0.004], - [0.018, 0.3, 0.016, 0.666], - [0.661, 0.011, 0.314, 0.014], - [0.0, 0.003, 0.994, 0.003], - [0.864, 0.053, 0.023, 0.06], - [0.814, 0.039, 0.057, 0.09], - [0.239, 0.27, 0.213, 0.278], - [0.274, 0.218, 0.233, 0.276], - [0.096, 0.054, 0.033, 0.817], - [0.054, 0.02, 0.035, 0.891], - [0.013, 0.946, 0.015, 0.026], - [0.059, 0.351, 0.027, 0.564], - ], - CREM: [ - [0.427, 0.166, 0.343, 0.065], - [0.169, 0.683, 0.061, 0.087], - [0.0, 0.001, 0.999, 0.0], - [0.007, 0.12, 0.019, 0.855], - [0.002, 0.995, 0.003, 0.0], - [0.884, 0.105, 0.004, 0.007], - [0.043, 0.405, 0.116, 0.436], - ], - ZNF324: [ - [0.207, 0.115, 0.538, 0.14], - [0.231, 0.258, 0.339, 0.172], - [0.194, 0.119, 0.48, 0.207], - [0.484, 0.218, 0.245, 0.053], - [0.142, 0.08, 0.099, 0.678], - [0.047, 0.585, 0.074, 0.293], - [0.446, 0.11, 0.381, 0.063], - [0.826, 0.108, 0.047, 0.019], - [0.626, 0.023, 0.337, 0.014], - [0.048, 0.867, 0.029, 0.055], - [0.01, 0.805, 0.011, 0.174], - [0.649, 0.078, 0.118, 0.154], - [0.164, 0.074, 0.184, 0.578], - [0.068, 0.818, 0.104, 0.01], - [0.07, 0.685, 0.111, 0.134], - [0.118, 0.164, 0.165, 0.553], - [0.097, 0.201, 0.09, 0.611], - [0.31, 0.134, 0.299, 0.257], - [0.252, 0.239, 0.303, 0.206], - [0.246, 0.527, 0.11, 0.117], - ], - STAT4: [ - [0.104, 0.429, 0.085, 0.382], - [0.049, 0.086, 0.021, 0.844], - [0.078, 0.0, 0.315, 0.607], - [0.245, 0.638, 0.094, 0.023], - [0.161, 0.505, 0.052, 0.282], - [0.304, 0.266, 0.314, 0.116], - [0.363, 0.035, 0.593, 0.01], - [0.042, 0.011, 0.911, 0.037], - [0.934, 0.052, 0.0, 0.014], - [0.938, 0.001, 0.061, 0.001], - [0.423, 0.16, 0.371, 0.046], - ], - HMBOX1: [ - [0.321, 0.048, 0.42, 0.212], - [0.714, 0.051, 0.197, 0.038], - [0.001, 0.935, 0.03, 0.035], - [0.0, 0.0, 0.0, 1.0], - [0.757, 0.012, 0.158, 0.073], - [0.001, 0.001, 0.995, 0.003], - [0.14, 0.03, 0.101, 0.73], - [0.158, 0.154, 0.147, 0.541], - ], - YY1: [ - [0.544, 0.127, 0.242, 0.088], - [0.489, 0.238, 0.073, 0.199], - [0.454, 0.225, 0.274, 0.047], - [0.967, 0.028, 0.005, 0.0], - [0.013, 0.0, 0.004, 0.983], - [0.0, 0.0, 1.0, 0.0], - [0.002, 0.006, 0.984, 0.008], - [0.132, 0.755, 0.02, 0.093], - [0.109, 0.216, 0.41, 0.265], - [0.087, 0.169, 0.62, 0.124], - [0.183, 0.571, 0.113, 0.133], - ], - ERF: [ - [0.528, 0.102, 0.287, 0.083], - [0.089, 0.613, 0.107, 0.191], - [0.108, 0.014, 0.007, 0.871], - [0.001, 0.02, 0.054, 0.924], - [0.001, 0.985, 0.008, 0.006], - [0.013, 0.986, 0.0, 0.001], - [0.067, 0.036, 0.348, 0.549], - [0.01, 0.16, 0.796, 0.034], - ], - E2F1: [ - [0.142, 0.072, 0.645, 0.142], - [0.015, 0.145, 0.839, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.0, 1.0, 0.0, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.0, 0.093, 0.907, 0.0], - [0.0, 0.051, 0.941, 0.008], - ], - SOX4: [ - [0.002, 0.562, 0.121, 0.315], - [0.018, 0.587, 0.037, 0.358], - [0.299, 0.011, 0.009, 0.681], - [0.0, 0.0, 0.005, 0.995], - [0.0, 0.005, 0.0, 0.995], - [0.005, 0.012, 0.983, 0.0], - [0.001, 0.0, 0.0, 0.999], - [0.027, 0.247, 0.153, 0.572], - ], - BHLHE40: [ - [0.16, 0.082, 0.486, 0.272], - [0.083, 0.91, 0.001, 0.006], - [0.781, 0.081, 0.089, 0.049], - [0.0, 0.875, 0.027, 0.098], - [0.046, 0.07, 0.884, 0.0], - [0.017, 0.036, 0.054, 0.893], - [0.002, 0.0, 0.992, 0.006], - [0.301, 0.572, 0.041, 0.086], - ], - HOXB13: [ - [0.085, 0.661, 0.254, 0.0], - [0.03, 0.345, 0.0, 0.625], - [0.505, 0.307, 0.002, 0.186], - [0.672, 0.0, 0.307, 0.022], - [0.0, 0.001, 0.0, 0.999], - [0.759, 0.001, 0.017, 0.223], - [0.996, 0.0, 0.0, 0.004], - [0.993, 0.006, 0.001, 0.0], - [0.657, 0.102, 0.071, 0.17], - ], - HNF1A: [ - [0.201, 0.037, 0.659, 0.102], - [0.057, 0.086, 0.09, 0.766], - [0.158, 0.098, 0.063, 0.681], - [0.922, 0.003, 0.054, 0.021], - [0.81, 0.102, 0.015, 0.073], - [0.19, 0.03, 0.012, 0.768], - [0.166, 0.315, 0.265, 0.253], - [0.855, 0.001, 0.016, 0.128], - [0.023, 0.0, 0.046, 0.93], - [0.008, 0.024, 0.001, 0.967], - [0.771, 0.031, 0.061, 0.137], - [0.851, 0.046, 0.077, 0.026], - [0.076, 0.726, 0.035, 0.163], - ], - KLF15: [ - [0.213, 0.136, 0.578, 0.074], - [0.133, 0.044, 0.636, 0.188], - [0.227, 0.0, 0.773, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.276, 0.577, 0.0, 0.147], - [0.001, 0.002, 0.997, 0.0], - [0.002, 0.0, 0.951, 0.047], - [0.435, 0.096, 0.354, 0.116], - [0.065, 0.017, 0.872, 0.047], - [0.165, 0.562, 0.166, 0.107], - [0.203, 0.488, 0.159, 0.15], - [0.148, 0.242, 0.477, 0.133], - [0.153, 0.226, 0.479, 0.141], - [0.233, 0.218, 0.468, 0.081], - [0.181, 0.218, 0.515, 0.087], - [0.089, 0.243, 0.584, 0.085], - [0.275, 0.307, 0.294, 0.123], - [0.166, 0.26, 0.46, 0.113], - [0.068, 0.216, 0.577, 0.139], - [0.289, 0.291, 0.31, 0.109], - [0.132, 0.229, 0.527, 0.112], - ], - LYL1: [ - [0.338, 0.285, 0.354, 0.023], - [0.007, 0.993, 0.0, 0.0], - [0.957, 0.0, 0.043, 0.0], - [0.0, 0.024, 0.782, 0.193], - [0.388, 0.575, 0.001, 0.035], - [0.013, 0.021, 0.001, 0.965], - [0.0, 0.0, 0.984, 0.016], - [0.017, 0.224, 0.362, 0.397], - ], - MYOD1: [ - [0.022, 0.971, 0.007, 0.0], - [0.946, 0.003, 0.02, 0.031], - [0.0, 0.316, 0.662, 0.022], - [0.032, 0.925, 0.027, 0.015], - [0.005, 0.028, 0.019, 0.948], - [0.034, 0.012, 0.936, 0.019], - [0.031, 0.397, 0.099, 0.473], - [0.078, 0.378, 0.118, 0.426], - ], - JUND: [ - [0.54, 0.134, 0.325, 0.0], - [0.0, 0.0, 0.0, 1.0], - [0.0, 0.0, 1.0, 0.0], - [0.997, 0.0, 0.0, 0.003], - [0.002, 0.472, 0.45, 0.076], - [0.0, 0.0, 0.0, 1.0], - [0.087, 0.913, 0.0, 0.0], - [0.998, 0.0, 0.002, 0.0], - [0.015, 0.302, 0.162, 0.522], - ], - "NKX3-1": [ - [0.553, 0.07, 0.206, 0.172], - [0.383, 0.109, 0.304, 0.204], - [0.209, 0.33, 0.41, 0.052], - [0.002, 0.756, 0.0, 0.243], - [0.9, 0.0, 0.016, 0.085], - [0.004, 0.99, 0.006, 0.0], - [0.001, 0.001, 0.0, 0.998], - [0.0, 0.122, 0.0, 0.878], - [0.648, 0.123, 0.087, 0.141], - [0.528, 0.129, 0.244, 0.099], - ], - ZBTB7A: [ - [0.093, 0.339, 0.459, 0.109], - [0.216, 0.234, 0.416, 0.135], - [0.125, 0.23, 0.534, 0.11], - [0.129, 0.286, 0.351, 0.234], - [0.257, 0.195, 0.408, 0.14], - [0.501, 0.052, 0.445, 0.002], - [0.0, 0.0, 1.0, 0.0], - [0.0, 0.008, 0.992, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.0, 0.0, 0.317, 0.683], - [0.004, 0.982, 0.014, 0.0], - [0.005, 0.29, 0.268, 0.438], - [0.012, 0.468, 0.282, 0.238], - ], - MYC: [ - [0.0, 0.998, 0.0, 0.001], - [0.904, 0.0, 0.033, 0.062], - [0.0, 0.61, 0.302, 0.088], - [0.559, 0.027, 0.414, 0.0], - [0.005, 0.059, 0.006, 0.93], - [0.0, 0.0, 0.958, 0.042], - [0.031, 0.071, 0.646, 0.252], - [0.09, 0.502, 0.089, 0.319], - ], - NR1H3: [ - [0.463, 0.22, 0.065, 0.251], - [0.292, 0.113, 0.537, 0.058], - [0.713, 0.041, 0.245, 0.0], - [0.031, 0.078, 0.751, 0.14], - [0.001, 0.0, 0.946, 0.053], - [0.0, 0.0, 0.243, 0.757], - [0.04, 0.759, 0.007, 0.194], - [0.873, 0.004, 0.115, 0.008], - [0.176, 0.432, 0.196, 0.196], - [0.164, 0.308, 0.076, 0.452], - ], - FOXA2: [ - [0.029, 0.026, 0.011, 0.933], - [0.228, 0.021, 0.685, 0.066], - [0.03, 0.004, 0.003, 0.962], - [0.01, 0.0, 0.047, 0.943], - [0.011, 0.001, 0.311, 0.678], - [0.589, 0.012, 0.376, 0.023], - [0.037, 0.6, 0.052, 0.311], - [0.309, 0.221, 0.029, 0.441], - ], - STAT1: [ - [0.012, 0.034, 0.011, 0.942], - [0.017, 0.0, 0.109, 0.874], - [0.195, 0.759, 0.016, 0.029], - [0.048, 0.623, 0.032, 0.297], - [0.457, 0.183, 0.359, 0.002], - [0.255, 0.007, 0.727, 0.01], - [0.017, 0.006, 0.899, 0.077], - [0.999, 0.0, 0.001, 0.0], - [0.98, 0.0, 0.015, 0.004], - ], - EN1: [ - [0.053, 0.073, 0.0, 0.873], - [0.899, 0.005, 0.056, 0.04], - [1.0, 0.0, 0.0, 0.0], - [0.0, 0.001, 0.0, 0.999], - [0.051, 0.047, 0.162, 0.741], - [0.705, 0.0, 0.295, 0.0], - ], - NFIC: [ - [0.061, 0.381, 0.041, 0.517], - [0.017, 0.007, 0.081, 0.895], - [0.0, 0.0, 0.999, 0.0], - [0.014, 0.0, 0.981, 0.005], - [0.228, 0.724, 0.035, 0.013], - [0.437, 0.208, 0.065, 0.29], - [0.191, 0.334, 0.23, 0.245], - [0.252, 0.244, 0.248, 0.256], - [0.242, 0.234, 0.332, 0.192], - [0.286, 0.067, 0.191, 0.455], - [0.003, 0.024, 0.758, 0.216], - [0.003, 0.995, 0.0, 0.002], - [0.0, 1.0, 0.0, 0.0], - [0.888, 0.082, 0.008, 0.022], - [0.509, 0.045, 0.381, 0.065], - ], - ZBTB48: [ - [0.021, 0.399, 0.054, 0.525], - [0.324, 0.24, 0.032, 0.403], - [0.983, 0.001, 0.015, 0.001], - [0.0, 0.0, 1.0, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.0, 0.004, 0.996, 0.0], - [0.77, 0.064, 0.146, 0.02], - [0.09, 0.405, 0.168, 0.337], - [0.1, 0.649, 0.036, 0.214], - ], - TCF7: [ - [0.655, 0.044, 0.171, 0.129], - [0.024, 0.428, 0.5, 0.048], - [0.608, 0.023, 0.004, 0.366], - [0.094, 0.013, 0.001, 0.892], - [0.044, 0.799, 0.143, 0.014], - [0.988, 0.0, 0.0, 0.012], - [0.933, 0.017, 0.048, 0.002], - [0.95, 0.0, 0.019, 0.031], - [0.122, 0.048, 0.819, 0.01], - ], - ZNF274: [ - [0.161, 0.306, 0.064, 0.468], - [0.644, 0.084, 0.105, 0.167], - [0.352, 0.17, 0.358, 0.119], - [0.23, 0.238, 0.22, 0.313], - [0.257, 0.36, 0.156, 0.227], - [0.439, 0.14, 0.266, 0.155], - [0.189, 0.15, 0.32, 0.342], - [0.397, 0.106, 0.207, 0.29], - [0.276, 0.27, 0.27, 0.183], - [0.18, 0.358, 0.174, 0.287], - [0.267, 0.051, 0.118, 0.564], - [0.086, 0.514, 0.15, 0.25], - [0.534, 0.108, 0.096, 0.262], - [0.318, 0.235, 0.177, 0.27], - [0.421, 0.294, 0.183, 0.102], - [0.353, 0.338, 0.114, 0.195], - [0.157, 0.575, 0.084, 0.183], - [0.138, 0.033, 0.134, 0.696], - [0.165, 0.246, 0.169, 0.42], - [0.599, 0.131, 0.157, 0.113], - [0.292, 0.319, 0.125, 0.264], - [0.266, 0.121, 0.159, 0.454], - [0.408, 0.212, 0.311, 0.068], - [0.468, 0.137, 0.24, 0.155], - [0.656, 0.092, 0.161, 0.092], - [0.185, 0.654, 0.046, 0.115], - [0.749, 0.038, 0.07, 0.143], - [0.15, 0.113, 0.111, 0.626], - [0.331, 0.37, 0.234, 0.065], - [0.715, 0.016, 0.057, 0.212], - [0.188, 0.018, 0.78, 0.014], - [0.939, 0.006, 0.002, 0.053], - [0.0, 0.012, 0.988, 0.0], - [0.8, 0.0, 0.186, 0.014], - [0.99, 0.006, 0.0, 0.004], - [0.075, 0.541, 0.042, 0.343], - [0.02, 0.022, 0.03, 0.929], - [0.004, 0.956, 0.026, 0.014], - [0.929, 0.046, 0.0, 0.026], - [0.095, 0.319, 0.008, 0.578], - [0.873, 0.034, 0.042, 0.051], - [0.012, 0.919, 0.01, 0.059], - [0.192, 0.044, 0.024, 0.741], - [0.048, 0.02, 0.84, 0.092], - [0.199, 0.092, 0.597, 0.113], - [0.641, 0.13, 0.122, 0.108], - [0.09, 0.082, 0.62, 0.208], - [0.686, 0.081, 0.158, 0.075], - [0.265, 0.081, 0.542, 0.113], - [0.731, 0.043, 0.069, 0.156], - [0.66, 0.069, 0.164, 0.107], - [0.56, 0.097, 0.174, 0.17], - [0.124, 0.623, 0.124, 0.128], - [0.117, 0.595, 0.184, 0.105], - [0.295, 0.378, 0.107, 0.221], - [0.209, 0.085, 0.091, 0.615], - [0.611, 0.071, 0.075, 0.242], - [0.085, 0.336, 0.152, 0.427], - [0.417, 0.07, 0.378, 0.135], - [0.629, 0.134, 0.081, 0.156], - [0.682, 0.074, 0.111, 0.133], - [0.115, 0.079, 0.064, 0.742], - [0.12, 0.046, 0.695, 0.138], - [0.13, 0.175, 0.159, 0.536], - ], - RARA: [ - [0.402, 0.114, 0.412, 0.073], - [0.71, 0.029, 0.259, 0.002], - [0.023, 0.014, 0.962, 0.001], - [0.014, 0.002, 0.789, 0.195], - [0.006, 0.001, 0.117, 0.876], - [0.0, 0.979, 0.004, 0.017], - [0.851, 0.001, 0.148, 0.001], - ], - MAFF: [ - [0.501, 0.077, 0.151, 0.27], - [0.494, 0.062, 0.11, 0.334], - [0.48, 0.078, 0.058, 0.384], - [0.292, 0.173, 0.179, 0.356], - [0.086, 0.044, 0.014, 0.856], - [0.0, 0.001, 0.999, 0.0], - [0.118, 0.882, 0.0, 0.0], - [0.002, 0.003, 0.003, 0.992], - [0.0, 0.001, 0.945, 0.054], - [0.99, 0.001, 0.002, 0.007], - [0.056, 0.478, 0.254, 0.212], - [0.183, 0.154, 0.109, 0.554], - ], - ATF2: [ - [0.752, 0.031, 0.208, 0.009], - [0.002, 0.013, 0.0, 0.985], - [0.001, 0.007, 0.846, 0.146], - [0.992, 0.001, 0.002, 0.005], - [0.005, 0.502, 0.123, 0.37], - [0.231, 0.127, 0.642, 0.0], - [0.036, 0.031, 0.001, 0.933], - [0.235, 0.748, 0.011, 0.005], - [0.979, 0.0, 0.011, 0.009], - [0.009, 0.193, 0.031, 0.767], - ], - FOXH1: [ - [0.169, 0.038, 0.06, 0.733], - [0.016, 0.0, 0.984, 0.0], - [0.022, 0.078, 0.028, 0.873], - [0.02, 0.001, 0.749, 0.229], - [0.03, 0.0, 0.683, 0.287], - [0.96, 0.007, 0.002, 0.031], - [0.09, 0.043, 0.044, 0.823], - [0.025, 0.092, 0.005, 0.878], - ], - ESR1: [ - [0.795, 0.017, 0.185, 0.003], - [0.007, 0.013, 0.768, 0.211], - [0.004, 0.0, 0.991, 0.004], - [0.01, 0.027, 0.089, 0.874], - [0.0, 0.969, 0.018, 0.013], - [0.961, 0.001, 0.034, 0.003], - ], - MAZ: [ - [0.052, 0.704, 0.016, 0.228], - [0.002, 0.998, 0.0, 0.0], - [0.0, 0.993, 0.007, 0.0], - [0.0, 1.0, 0.0, 0.0], - [0.031, 0.0, 0.465, 0.504], - [0.0, 1.0, 0.0, 0.0], - [0.0, 0.993, 0.007, 0.0], - [0.007, 0.819, 0.023, 0.152], - ], - NR3C1: [ - [0.421, 0.064, 0.364, 0.151], - [0.185, 0.024, 0.671, 0.12], - [0.426, 0.146, 0.239, 0.189], - [0.835, 0.02, 0.093, 0.053], - [0.005, 0.913, 0.033, 0.05], - [0.635, 0.011, 0.177, 0.178], - [0.162, 0.243, 0.303, 0.292], - [0.326, 0.16, 0.213, 0.302], - [0.342, 0.28, 0.23, 0.147], - [0.194, 0.137, 0.005, 0.664], - [0.011, 0.01, 0.979, 0.0], - [0.054, 0.066, 0.048, 0.832], - [0.27, 0.2, 0.19, 0.34], - [0.119, 0.735, 0.023, 0.123], - [0.172, 0.236, 0.093, 0.5], - ], - ZNF281: [ - [0.048, 0.856, 0.043, 0.054], - [0.043, 0.876, 0.015, 0.066], - [0.005, 0.985, 0.008, 0.002], - [0.091, 0.795, 0.004, 0.11], - [0.184, 0.012, 0.121, 0.684], - [0.0, 0.994, 0.002, 0.003], - [0.001, 0.995, 0.001, 0.002], - [0.001, 0.97, 0.002, 0.028], - [0.002, 0.984, 0.002, 0.012], - [0.003, 0.977, 0.01, 0.011], - [0.459, 0.218, 0.13, 0.192], - [0.187, 0.569, 0.084, 0.159], - [0.11, 0.613, 0.1, 0.177], - [0.134, 0.568, 0.127, 0.171], - [0.138, 0.526, 0.125, 0.212], - ], - TBX3: [ - [0.061, 0.202, 0.023, 0.713], - [0.284, 0.302, 0.404, 0.01], - [0.736, 0.081, 0.092, 0.091], - [0.0, 1.0, 0.0, 0.0], - [0.927, 0.005, 0.046, 0.022], - [0.006, 0.973, 0.02, 0.001], - [0.135, 0.686, 0.004, 0.175], - [0.083, 0.129, 0.061, 0.726], - ], - USF1: [ - [0.243, 0.048, 0.708, 0.001], - [0.037, 0.155, 0.065, 0.743], - [0.0, 1.0, 0.0, 0.0], - [0.994, 0.001, 0.0, 0.005], - [0.001, 0.672, 0.101, 0.227], - [0.327, 0.085, 0.588, 0.0], - [0.015, 0.012, 0.011, 0.962], - [0.0, 0.0, 0.997, 0.003], - [0.454, 0.134, 0.331, 0.08], - [0.06, 0.498, 0.137, 0.305], - ], - MXI1: [ - [0.023, 0.907, 0.065, 0.005], - [0.792, 0.0, 0.184, 0.024], - [0.002, 0.915, 0.0, 0.083], - [0.146, 0.0, 0.853, 0.001], - [0.044, 0.1, 0.008, 0.847], - [0.0, 0.01, 0.952, 0.038], - ], - OTX2: [ - [0.225, 0.331, 0.014, 0.43], - [0.189, 0.022, 0.002, 0.787], - [0.923, 0.005, 0.056, 0.017], - [0.991, 0.007, 0.001, 0.0], - [0.006, 0.004, 0.08, 0.91], - [0.022, 0.957, 0.015, 0.005], - [0.014, 0.762, 0.002, 0.223], - [0.118, 0.423, 0.08, 0.379], - ], - ZIC5: [ - [0.123, 0.75, 0.12, 0.006], - [0.314, 0.262, 0.215, 0.208], - [0.003, 0.981, 0.002, 0.014], - [0.503, 0.296, 0.102, 0.099], - [0.069, 0.162, 0.766, 0.003], - [0.005, 0.878, 0.005, 0.112], - [0.598, 0.002, 0.391, 0.009], - [0.005, 0.002, 0.968, 0.024], - [0.0, 0.0, 1.0, 0.0], - [0.19, 0.034, 0.674, 0.101], - [0.078, 0.045, 0.833, 0.044], - [0.04, 0.033, 0.845, 0.083], - [0.005, 0.469, 0.153, 0.373], - [0.143, 0.583, 0.221, 0.053], - ], - ZFP42: [ - [0.231, 0.1, 0.587, 0.082], - [0.154, 0.05, 0.731, 0.066], - [0.106, 0.605, 0.242, 0.048], - [0.581, 0.309, 0.082, 0.028], - [0.017, 0.017, 0.882, 0.084], - [0.099, 0.861, 0.016, 0.025], - [0.0, 1.0, 0.0, 0.0], - [0.999, 0.0, 0.001, 0.0], - [0.0, 0.0, 0.0, 1.0], - [0.058, 0.233, 0.113, 0.596], - [0.079, 0.047, 0.069, 0.805], - [0.049, 0.14, 0.008, 0.803], - ], - FOXP1: [ - [0.453, 0.054, 0.089, 0.405], - [0.513, 0.173, 0.197, 0.118], - [0.289, 0.024, 0.411, 0.276], - [0.215, 0.087, 0.686, 0.011], - [0.105, 0.007, 0.117, 0.771], - [0.863, 0.122, 0.011, 0.005], - [0.901, 0.084, 0.015, 0.0], - [0.927, 0.019, 0.054, 0.0], - [0.0, 0.839, 0.033, 0.128], - [0.865, 0.044, 0.087, 0.004], - ], - MEIS1: [ - [0.228, 0.029, 0.102, 0.641], - [0.186, 0.0, 0.752, 0.062], - [0.864, 0.001, 0.088, 0.047], - [0.022, 0.038, 0.146, 0.794], - [0.075, 0.011, 0.11, 0.803], - [0.129, 0.055, 0.196, 0.62], - [0.905, 0.009, 0.067, 0.019], - [0.091, 0.146, 0.033, 0.73], - [0.182, 0.046, 0.461, 0.311], - ], - CLOCK: [ - [0.019, 0.98, 0.0, 0.0], - [0.99, 0.009, 0.0, 0.001], - [0.0, 0.973, 0.018, 0.009], - [0.162, 0.061, 0.772, 0.005], - [0.009, 0.031, 0.002, 0.958], - [0.0, 0.002, 0.941, 0.057], - [0.026, 0.316, 0.274, 0.384], - ], - PBX3: [ - [0.138, 0.019, 0.06, 0.783], - [0.019, 0.0, 0.98, 0.001], - [0.993, 0.001, 0.001, 0.004], - [0.05, 0.218, 0.287, 0.445], - [0.07, 0.023, 0.106, 0.801], - [0.036, 0.0, 0.943, 0.021], - [0.736, 0.001, 0.263, 0.0], - [0.01, 0.779, 0.003, 0.208], - [0.595, 0.013, 0.239, 0.153], - [0.093, 0.138, 0.622, 0.148], - ], - ZNF586: [ - [0.117, 0.064, 0.499, 0.32], - [0.077, 0.096, 0.099, 0.728], - [0.102, 0.663, 0.077, 0.158], - [0.716, 0.103, 0.1, 0.081], - [0.176, 0.067, 0.689, 0.068], - [0.727, 0.054, 0.146, 0.072], - [0.197, 0.06, 0.68, 0.063], - [0.584, 0.067, 0.279, 0.07], - [0.136, 0.426, 0.088, 0.35], - [0.083, 0.704, 0.071, 0.142], - [0.081, 0.11, 0.055, 0.755], - [0.076, 0.086, 0.058, 0.78], - [0.097, 0.512, 0.078, 0.313], - [0.512, 0.121, 0.271, 0.097], - [0.195, 0.347, 0.102, 0.356], - [0.34, 0.065, 0.511, 0.085], - [0.13, 0.077, 0.73, 0.063], - [0.112, 0.69, 0.098, 0.1], - [0.763, 0.086, 0.089, 0.061], - [0.143, 0.072, 0.724, 0.06], - [0.068, 0.719, 0.112, 0.101], - [0.07, 0.751, 0.053, 0.126], - [0.074, 0.754, 0.05, 0.122], - [0.064, 0.757, 0.057, 0.123], - [0.068, 0.102, 0.045, 0.785], - [0.067, 0.743, 0.058, 0.132], - [0.057, 0.766, 0.046, 0.132], - [0.074, 0.758, 0.055, 0.113], - [0.795, 0.074, 0.069, 0.063], - [0.079, 0.075, 0.044, 0.802], - [0.079, 0.757, 0.051, 0.113], - [0.837, 0.077, 0.048, 0.037], - [0.108, 0.759, 0.043, 0.09], - [0.839, 0.056, 0.065, 0.04], - [0.112, 0.03, 0.811, 0.047], - [0.097, 0.044, 0.81, 0.049], - [0.053, 0.799, 0.065, 0.083], - [0.044, 0.823, 0.034, 0.099], - [0.077, 0.468, 0.048, 0.408], - [0.464, 0.038, 0.429, 0.07], - [0.097, 0.033, 0.826, 0.044], - [0.848, 0.026, 0.095, 0.03], - [0.078, 0.013, 0.874, 0.035], - [0.051, 0.026, 0.892, 0.032], - [0.07, 0.738, 0.073, 0.119], - [0.061, 0.776, 0.027, 0.136], - [0.051, 0.166, 0.016, 0.767], - [0.842, 0.035, 0.069, 0.054], - [0.098, 0.014, 0.878, 0.01], - [0.067, 0.003, 0.922, 0.008], - [0.9, 0.004, 0.087, 0.01], - [0.053, 0.003, 0.906, 0.039], - [0.057, 0.005, 0.907, 0.031], - [0.685, 0.056, 0.248, 0.011], - [0.771, 0.16, 0.019, 0.05], - [0.926, 0.022, 0.012, 0.04], - [0.794, 0.022, 0.157, 0.027], - [0.99, 0.003, 0.005, 0.003], - [0.828, 0.009, 0.141, 0.021], - [0.008, 0.052, 0.022, 0.918], - [0.03, 0.0, 0.957, 0.013], - [0.103, 0.022, 0.763, 0.112], - [0.013, 0.043, 0.058, 0.886], - [0.063, 0.04, 0.046, 0.851], - ], - GRHL1: [ - [0.596, 0.071, 0.174, 0.158], - [0.583, 0.055, 0.164, 0.198], - [0.014, 0.703, 0.27, 0.013], - [0.128, 0.391, 0.02, 0.461], - [0.231, 0.093, 0.358, 0.318], - [0.098, 0.028, 0.873, 0.001], - [0.281, 0.318, 0.063, 0.337], - [0.342, 0.348, 0.092, 0.217], - [0.464, 0.117, 0.233, 0.187], - [0.652, 0.011, 0.257, 0.081], - [0.801, 0.001, 0.138, 0.061], - [0.0, 1.0, 0.0, 0.0], - [0.259, 0.456, 0.016, 0.269], - [0.276, 0.009, 0.524, 0.191], - [0.0, 0.032, 0.968, 0.0], - [0.185, 0.127, 0.012, 0.677], - [0.146, 0.183, 0.023, 0.649], - [0.17, 0.226, 0.137, 0.468], - [0.217, 0.176, 0.278, 0.33], - [0.236, 0.17, 0.331, 0.263], - [0.107, 0.542, 0.139, 0.212], - ], - ZSCAN29: [ - [0.164, 0.078, 0.554, 0.204], - [0.27, 0.26, 0.199, 0.27], - [0.096, 0.623, 0.078, 0.203], - [0.258, 0.276, 0.125, 0.341], - [0.068, 0.079, 0.781, 0.073], - [0.003, 0.285, 0.006, 0.706], - [0.347, 0.017, 0.6, 0.036], - [0.023, 0.001, 0.103, 0.874], - [0.875, 0.003, 0.122, 0.0], - [0.035, 0.063, 0.893, 0.01], - [0.895, 0.066, 0.02, 0.019], - [0.009, 0.957, 0.002, 0.032], - ], - TFAP4: [ - [0.461, 0.211, 0.294, 0.034], - [0.257, 0.418, 0.081, 0.244], - [0.0, 1.0, 0.0, 0.0], - [0.913, 0.0, 0.087, 0.0], - [0.0, 0.127, 0.693, 0.18], - [0.166, 0.767, 0.066, 0.0], - [0.0, 0.079, 0.0, 0.921], - [0.0, 0.0, 1.0, 0.0], - ], - TCF3: [ - [0.298, 0.353, 0.341, 0.008], - [0.0, 1.0, 0.0, 0.0], - [0.999, 0.0, 0.001, 0.0], - [0.0, 0.295, 0.498, 0.207], - [0.002, 0.998, 0.0, 0.0], - [0.0, 0.001, 0.001, 0.998], - [0.0, 0.0, 1.0, 0.0], - [0.015, 0.367, 0.351, 0.267], - ], - MAFB: [ - [0.102, 0.172, 0.571, 0.156], - [0.184, 0.562, 0.092, 0.162], - [0.215, 0.224, 0.085, 0.476], - [0.173, 0.128, 0.486, 0.213], - [0.612, 0.097, 0.098, 0.193], - [0.123, 0.33, 0.499, 0.048], - [0.022, 0.018, 0.0, 0.96], - [0.085, 0.903, 0.011, 0.0], - [0.935, 0.01, 0.004, 0.051], - [0.038, 0.02, 0.834, 0.108], - [0.009, 0.934, 0.047, 0.011], - [0.81, 0.042, 0.028, 0.121], - ], - AHRR: [ - [0.126, 0.173, 0.134, 0.566], - [0.035, 0.091, 0.739, 0.136], - [0.001, 0.989, 0.0, 0.01], - [0.061, 0.006, 0.933, 0.0], - [0.002, 0.0, 0.0, 0.998], - [0.002, 0.001, 0.993, 0.003], - [0.219, 0.599, 0.016, 0.166], - ], - CEBPD: [ - [0.528, 0.1, 0.36, 0.013], - [0.001, 0.0, 0.0, 0.999], - [0.001, 0.0, 0.343, 0.656], - [0.36, 0.002, 0.397, 0.241], - [0.105, 0.455, 0.082, 0.359], - [0.144, 0.022, 0.831, 0.003], - [0.023, 0.927, 0.0, 0.049], - [1.0, 0.0, 0.0, 0.0], - [1.0, 0.0, 0.0, 0.0], - [0.018, 0.29, 0.086, 0.606], - ], - BCL6B: [ - [0.189, 0.201, 0.1, 0.51], - [0.145, 0.189, 0.33, 0.336], - [0.25, 0.221, 0.141, 0.389], - [0.195, 0.246, 0.182, 0.377], - [0.308, 0.126, 0.131, 0.434], - [0.244, 0.223, 0.15, 0.383], - [0.335, 0.148, 0.197, 0.32], - [0.21, 0.188, 0.259, 0.343], - [0.18, 0.301, 0.137, 0.382], - [0.219, 0.184, 0.146, 0.452], - [0.145, 0.063, 0.613, 0.179], - [0.069, 0.884, 0.046, 0.0], - [0.096, 0.064, 0.001, 0.839], - [0.012, 0.2, 0.086, 0.702], - [0.005, 0.003, 0.031, 0.96], - [0.003, 0.852, 0.035, 0.11], - [0.052, 0.122, 0.077, 0.749], - [0.896, 0.087, 0.014, 0.002], - [0.156, 0.024, 0.598, 0.222], - [0.096, 0.019, 0.625, 0.261], - ], - ZFP82: [ - [0.792, 0.032, 0.107, 0.069], - [0.773, 0.008, 0.187, 0.032], - [0.158, 0.013, 0.763, 0.067], - [0.836, 0.015, 0.143, 0.006], - [0.336, 0.015, 0.517, 0.132], - [0.824, 0.057, 0.103, 0.017], - [0.204, 0.067, 0.7, 0.029], - [0.752, 0.034, 0.162, 0.053], - [0.882, 0.019, 0.059, 0.04], - [0.038, 0.023, 0.013, 0.926], - [0.069, 0.218, 0.063, 0.649], - [0.7, 0.103, 0.109, 0.088], - [0.248, 0.103, 0.626, 0.023], - [0.113, 0.088, 0.132, 0.666], - [0.284, 0.074, 0.597, 0.046], - [0.897, 0.055, 0.013, 0.036], - [0.774, 0.015, 0.113, 0.099], - [0.18, 0.501, 0.044, 0.275], - [0.09, 0.052, 0.036, 0.822], - [0.065, 0.002, 0.786, 0.147], - [0.124, 0.0, 0.876, 0.0], - [0.937, 0.0, 0.046, 0.017], - [0.757, 0.021, 0.143, 0.08], - [0.308, 0.013, 0.603, 0.077], - ], - SP1: [ - [0.15, 0.079, 0.746, 0.024], - [0.101, 0.021, 0.785, 0.093], - [0.106, 0.0, 0.893, 0.001], - [0.025, 0.0, 0.973, 0.002], - [0.009, 0.005, 0.987, 0.0], - [0.393, 0.506, 0.0, 0.101], - [0.082, 0.002, 0.863, 0.053], - [0.023, 0.068, 0.834, 0.076], - [0.068, 0.028, 0.797, 0.107], - [0.101, 0.091, 0.737, 0.071], - [0.213, 0.531, 0.107, 0.149], - ], - ZSCAN31: [ - [0.017, 0.004, 0.972, 0.008], - [0.082, 0.841, 0.001, 0.076], - [0.082, 0.767, 0.008, 0.143], - [0.002, 0.981, 0.012, 0.004], - [0.019, 0.311, 0.009, 0.66], - [0.021, 0.0, 0.974, 0.005], - [0.03, 0.933, 0.012, 0.025], - [0.208, 0.033, 0.271, 0.488], - [0.049, 0.053, 0.762, 0.135], - [0.099, 0.751, 0.067, 0.083], - [0.176, 0.505, 0.102, 0.217], - ], - RUNX1: [ - [0.524, 0.124, 0.234, 0.118], - [0.63, 0.1, 0.269, 0.001], - [0.003, 0.982, 0.004, 0.011], - [0.001, 0.963, 0.001, 0.035], - [0.819, 0.003, 0.136, 0.042], - [0.0, 0.997, 0.003, 0.0], - [0.721, 0.077, 0.109, 0.092], - ], - SIX1: [ - [0.228, 0.025, 0.691, 0.056], - [0.059, 0.037, 0.393, 0.511], - [0.527, 0.179, 0.196, 0.098], - [0.0, 0.002, 0.0, 0.998], - [0.088, 0.7, 0.01, 0.202], - [0.648, 0.084, 0.164, 0.105], - [0.337, 0.064, 0.363, 0.235], - [0.41, 0.054, 0.517, 0.019], - [0.001, 0.001, 0.001, 0.998], - [0.031, 0.002, 0.061, 0.906], - [0.408, 0.026, 0.04, 0.526], - [0.0, 0.995, 0.001, 0.004], - [0.587, 0.208, 0.013, 0.191], - ], - ZNF143: [ - [0.333, 0.086, 0.458, 0.124], - [0.268, 0.041, 0.486, 0.205], - [0.017, 0.01, 0.946, 0.027], - [0.21, 0.372, 0.38, 0.038], - [0.587, 0.275, 0.061, 0.078], - [0.056, 0.161, 0.112, 0.672], - [0.022, 0.242, 0.301, 0.434], - [0.239, 0.593, 0.12, 0.048], - [0.011, 0.111, 0.004, 0.873], - [0.004, 0.017, 0.977, 0.003], - [0.001, 0.008, 0.989, 0.002], - [0.007, 0.002, 0.985, 0.007], - [0.724, 0.044, 0.054, 0.178], - [0.551, 0.097, 0.27, 0.082], - ], - FOXO3: [ - [0.349, 0.199, 0.412, 0.041], - [0.433, 0.095, 0.196, 0.277], - [0.082, 0.007, 0.888, 0.023], - [0.053, 0.285, 0.096, 0.565], - [0.655, 0.345, 0.0, 0.0], - [0.873, 0.068, 0.058, 0.0], - [0.78, 0.026, 0.165, 0.03], - [0.0, 0.833, 0.015, 0.152], - [0.87, 0.042, 0.072, 0.016], - ], - ETV5: [ - [0.013, 0.72, 0.089, 0.178], - [0.13, 0.042, 0.016, 0.812], - [0.007, 0.006, 0.032, 0.955], - [0.0, 0.994, 0.005, 0.0], - [0.008, 0.989, 0.0, 0.003], - [0.007, 0.029, 0.368, 0.596], - [0.02, 0.188, 0.739, 0.053], - ], - DDIT3: [ - [0.562, 0.138, 0.241, 0.059], - [0.007, 0.004, 0.0, 0.989], - [0.016, 0.001, 0.342, 0.641], - [0.452, 0.005, 0.308, 0.235], - [0.065, 0.83, 0.085, 0.02], - [0.737, 0.099, 0.122, 0.042], - [0.085, 0.004, 0.016, 0.895], - [0.03, 0.967, 0.002, 0.001], - [0.957, 0.002, 0.017, 0.024], - [0.016, 0.209, 0.23, 0.544], - ], - FOXE1: [ - [0.682, 0.031, 0.009, 0.279], - [0.615, 0.074, 0.196, 0.114], - [0.497, 0.095, 0.219, 0.189], - [0.522, 0.109, 0.324, 0.045], - [0.201, 0.214, 0.014, 0.571], - [0.916, 0.078, 0.006, 0.0], - [0.995, 0.0, 0.005, 0.001], - [0.985, 0.009, 0.001, 0.005], - [0.0, 0.891, 0.002, 0.107], - [0.86, 0.048, 0.004, 0.088], - [0.513, 0.141, 0.261, 0.084], - [0.527, 0.114, 0.108, 0.251], - ], - ZNF329: [ - [0.227, 0.057, 0.623, 0.092], - [0.11, 0.623, 0.139, 0.127], - [0.281, 0.236, 0.271, 0.211], - [0.078, 0.629, 0.237, 0.055], - [0.039, 0.94, 0.003, 0.018], - [0.033, 0.145, 0.094, 0.727], - [0.092, 0.043, 0.681, 0.184], - [0.041, 0.012, 0.935, 0.011], - [0.866, 0.036, 0.037, 0.061], - [0.07, 0.047, 0.179, 0.704], - [0.067, 0.818, 0.077, 0.038], - [0.348, 0.485, 0.12, 0.047], - [0.661, 0.138, 0.094, 0.107], - [0.195, 0.103, 0.638, 0.064], - [0.028, 0.882, 0.055, 0.035], - [0.063, 0.49, 0.098, 0.349], - [0.395, 0.131, 0.33, 0.144], - [0.109, 0.157, 0.166, 0.568], - [0.368, 0.107, 0.381, 0.144], - [0.073, 0.863, 0.028, 0.036], - [0.019, 0.817, 0.125, 0.039], - [0.027, 0.073, 0.162, 0.738], - [0.076, 0.027, 0.861, 0.036], - [0.723, 0.149, 0.1, 0.027], - [0.697, 0.13, 0.08, 0.093], - [0.137, 0.165, 0.625, 0.073], - [0.041, 0.576, 0.194, 0.189], - [0.095, 0.555, 0.111, 0.239], - ], - GATA3: [ - [0.037, 0.068, 0.007, 0.888], - [0.047, 0.0, 0.0, 0.953], - [0.987, 0.0, 0.0, 0.013], - [0.001, 0.0, 0.0, 0.999], - [0.0, 0.998, 0.002, 0.0], - [0.268, 0.003, 0.02, 0.709], - ], - TFAP2C: [ - [0.17, 0.077, 0.659, 0.095], - [0.017, 0.615, 0.327, 0.041], - [0.001, 0.999, 0.0, 0.0], - [0.0, 0.921, 0.001, 0.079], - [0.043, 0.276, 0.049, 0.632], - [0.096, 0.311, 0.537, 0.055], - [0.515, 0.075, 0.396, 0.013], - [0.112, 0.0, 0.888, 0.0], - [0.001, 0.0, 0.999, 0.0], - [0.036, 0.656, 0.282, 0.025], - ], - KLF4: [ - [0.174, 0.026, 0.795, 0.005], - [0.0, 0.0, 1.0, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.01, 0.723, 0.0, 0.268], - [0.028, 0.0, 0.966, 0.007], - [0.042, 0.084, 0.466, 0.408], - [0.021, 0.039, 0.898, 0.043], - [0.069, 0.093, 0.727, 0.112], - [0.124, 0.507, 0.102, 0.267], - ], - AR: [ - [0.352, 0.093, 0.078, 0.477], - [0.468, 0.12, 0.278, 0.133], - [0.438, 0.063, 0.163, 0.337], - [0.305, 0.087, 0.506, 0.102], - [0.109, 0.323, 0.027, 0.541], - [0.778, 0.17, 0.007, 0.046], - [0.733, 0.183, 0.021, 0.063], - [0.825, 0.03, 0.072, 0.073], - [0.001, 0.65, 0.07, 0.279], - [0.707, 0.088, 0.053, 0.152], - [0.373, 0.193, 0.2, 0.234], - [0.409, 0.219, 0.158, 0.214], - [0.392, 0.236, 0.16, 0.213], - [0.472, 0.153, 0.175, 0.2], - [0.526, 0.035, 0.314, 0.125], - [0.165, 0.006, 0.721, 0.108], - [0.507, 0.154, 0.101, 0.237], - [0.877, 0.013, 0.058, 0.052], - [0.006, 0.822, 0.047, 0.126], - [0.683, 0.02, 0.136, 0.161], - ], - ZNF331: [ - [0.529, 0.146, 0.207, 0.118], - [0.656, 0.095, 0.146, 0.103], - [0.345, 0.097, 0.486, 0.072], - [0.772, 0.069, 0.12, 0.038], - [0.663, 0.137, 0.163, 0.038], - [0.104, 0.634, 0.125, 0.138], - [0.125, 0.621, 0.109, 0.144], - [0.409, 0.186, 0.255, 0.151], - [0.157, 0.579, 0.097, 0.167], - [0.134, 0.699, 0.044, 0.123], - [0.081, 0.662, 0.043, 0.215], - [0.494, 0.042, 0.078, 0.386], - [0.065, 0.008, 0.909, 0.018], - [0.006, 0.976, 0.003, 0.016], - [0.277, 0.046, 0.025, 0.651], - [0.068, 0.013, 0.904, 0.015], - [0.976, 0.003, 0.013, 0.008], - [0.117, 0.003, 0.858, 0.023], - [0.008, 0.97, 0.004, 0.019], - [0.131, 0.771, 0.002, 0.096], - [0.051, 0.8, 0.031, 0.118], - [0.538, 0.076, 0.041, 0.344], - [0.151, 0.044, 0.625, 0.18], - [0.06, 0.585, 0.076, 0.28], - [0.081, 0.771, 0.034, 0.114], - ], - ZNF563: [ - [0.191, 0.133, 0.528, 0.148], - [0.094, 0.083, 0.707, 0.115], - [0.235, 0.067, 0.517, 0.181], - [0.182, 0.335, 0.299, 0.184], - [0.001, 0.04, 0.018, 0.942], - [0.006, 0.981, 0.005, 0.008], - [0.304, 0.49, 0.048, 0.159], - [0.103, 0.179, 0.178, 0.54], - [0.145, 0.235, 0.359, 0.262], - [0.435, 0.13, 0.245, 0.191], - [0.112, 0.585, 0.214, 0.09], - [0.186, 0.37, 0.041, 0.403], - [0.207, 0.012, 0.728, 0.053], - [0.031, 0.083, 0.738, 0.148], - [0.028, 0.903, 0.048, 0.021], - [0.611, 0.261, 0.043, 0.086], - [0.379, 0.173, 0.393, 0.055], - [0.01, 0.909, 0.009, 0.072], - [0.229, 0.191, 0.233, 0.347], - [0.058, 0.116, 0.612, 0.213], - ], - ZNF528: [ - [0.531, 0.1, 0.253, 0.116], - [0.255, 0.069, 0.539, 0.137], - [0.09, 0.022, 0.863, 0.025], - [0.093, 0.009, 0.888, 0.011], - [0.965, 0.01, 0.018, 0.007], - [0.859, 0.03, 0.087, 0.024], - [0.007, 0.004, 0.974, 0.015], - [0.112, 0.342, 0.129, 0.417], - [0.184, 0.793, 0.009, 0.014], - [0.845, 0.014, 0.137, 0.004], - [0.064, 0.188, 0.032, 0.716], - [0.008, 0.065, 0.022, 0.905], - [0.025, 0.059, 0.21, 0.705], - [0.019, 0.919, 0.004, 0.058], - [0.019, 0.261, 0.014, 0.707], - ], - MECOM: [ - [0.027, 0.071, 0.058, 0.845], - [0.028, 0.006, 0.0, 0.966], - [0.903, 0.027, 0.061, 0.009], - [0.022, 0.017, 0.046, 0.915], - [0.0, 0.964, 0.036, 0.0], - [0.266, 0.018, 0.055, 0.66], - ], - STAT5B: [ - [0.006, 0.054, 0.021, 0.919], - [0.111, 0.012, 0.095, 0.781], - [0.154, 0.788, 0.016, 0.042], - [0.084, 0.64, 0.008, 0.268], - [0.337, 0.012, 0.452, 0.199], - [0.35, 0.087, 0.46, 0.103], - [0.073, 0.011, 0.756, 0.16], - [0.836, 0.04, 0.071, 0.053], - [0.925, 0.018, 0.057, 0.0], - [0.56, 0.159, 0.227, 0.054], - ], - ZNF436: [ - [0.216, 0.128, 0.576, 0.08], - [0.102, 0.462, 0.062, 0.375], - [0.028, 0.77, 0.022, 0.18], - [0.564, 0.1, 0.19, 0.146], - [0.015, 0.935, 0.007, 0.043], - [0.001, 0.818, 0.002, 0.179], - [0.05, 0.017, 0.039, 0.894], - [0.007, 0.976, 0.003, 0.014], - [0.004, 0.853, 0.001, 0.142], - [0.029, 0.033, 0.015, 0.923], - [0.022, 0.921, 0.014, 0.042], - [0.041, 0.874, 0.002, 0.083], - [0.793, 0.019, 0.138, 0.05], - [0.107, 0.008, 0.788, 0.098], - [0.019, 0.003, 0.976, 0.002], - [0.84, 0.093, 0.059, 0.009], - [0.921, 0.007, 0.051, 0.02], - [0.001, 0.001, 0.995, 0.002], - [0.027, 0.753, 0.062, 0.159], - [0.02, 0.935, 0.004, 0.041], - [0.031, 0.411, 0.011, 0.546], - [0.044, 0.101, 0.059, 0.796], - [0.006, 0.938, 0.006, 0.05], - [0.029, 0.837, 0.02, 0.113], - [0.133, 0.454, 0.085, 0.328], - [0.124, 0.039, 0.311, 0.526], - [0.112, 0.059, 0.795, 0.033], - [0.657, 0.16, 0.096, 0.087], - [0.068, 0.343, 0.049, 0.54], - [0.08, 0.262, 0.117, 0.542], - [0.204, 0.285, 0.227, 0.284], - [0.112, 0.622, 0.086, 0.18], - [0.139, 0.519, 0.064, 0.277], - [0.137, 0.541, 0.094, 0.228], - ], - EGR3: [ - [0.233, 0.572, 0.08, 0.115], - [0.029, 0.965, 0.0, 0.006], - [0.402, 0.0, 0.306, 0.292], - [0.0, 1.0, 0.0, 0.0], - [0.0, 1.0, 0.0, 0.0], - [0.0, 0.988, 0.012, 0.001], - [0.654, 0.273, 0.072, 0.0], - [0.0, 1.0, 0.0, 0.0], - ], - NFAT5: [ - [0.112, 0.05, 0.767, 0.071], - [0.117, 0.145, 0.372, 0.366], - [0.351, 0.197, 0.163, 0.289], - [0.368, 0.265, 0.149, 0.218], - [0.284, 0.174, 0.206, 0.336], - [0.186, 0.12, 0.074, 0.62], - [0.027, 0.021, 0.056, 0.896], - [0.039, 0.039, 0.0, 0.922], - [0.056, 0.926, 0.005, 0.013], - [0.074, 0.917, 0.002, 0.006], - [0.479, 0.035, 0.26, 0.226], - [0.058, 0.456, 0.25, 0.237], - ], - ZNF121: [ - [0.156, 0.119, 0.107, 0.619], - [0.185, 0.106, 0.091, 0.619], - [0.187, 0.1, 0.1, 0.613], - [0.199, 0.105, 0.081, 0.615], - [0.195, 0.099, 0.094, 0.612], - [0.12, 0.091, 0.085, 0.705], - [0.106, 0.085, 0.09, 0.72], - [0.101, 0.081, 0.086, 0.732], - [0.079, 0.08, 0.094, 0.746], - [0.085, 0.083, 0.083, 0.75], - [0.079, 0.075, 0.137, 0.709], - [0.114, 0.074, 0.228, 0.584], - [0.147, 0.083, 0.09, 0.68], - [0.403, 0.059, 0.165, 0.372], - [0.151, 0.068, 0.71, 0.071], - [0.74, 0.051, 0.157, 0.052], - [0.156, 0.064, 0.734, 0.046], - [0.729, 0.077, 0.111, 0.083], - [0.083, 0.447, 0.106, 0.364], - [0.485, 0.033, 0.43, 0.052], - [0.042, 0.022, 0.914, 0.021], - [0.179, 0.017, 0.764, 0.04], - [0.133, 0.024, 0.825, 0.018], - [0.023, 0.048, 0.028, 0.901], - [0.019, 0.94, 0.017, 0.024], - [0.023, 0.04, 0.033, 0.904], - [0.022, 0.443, 0.043, 0.492], - [0.437, 0.021, 0.513, 0.028], - [0.02, 0.953, 0.01, 0.017], - [0.044, 0.01, 0.015, 0.932], - [0.385, 0.406, 0.189, 0.02], - [0.036, 0.092, 0.021, 0.851], - [0.114, 0.082, 0.782, 0.023], - [0.011, 0.111, 0.015, 0.863], - [0.017, 0.033, 0.036, 0.915], - [0.0, 0.002, 0.997, 0.001], - [0.003, 0.839, 0.065, 0.094], - [0.008, 0.975, 0.007, 0.011], - [0.001, 0.991, 0.007, 0.001], - [0.85, 0.093, 0.002, 0.054], - [0.018, 0.002, 0.975, 0.005], - [0.027, 0.046, 0.81, 0.116], - [0.025, 0.864, 0.025, 0.085], - [0.036, 0.06, 0.036, 0.868], - [0.109, 0.047, 0.786, 0.059], - [0.123, 0.064, 0.757, 0.055], - [0.507, 0.069, 0.09, 0.333], - [0.077, 0.368, 0.475, 0.08], - [0.056, 0.071, 0.069, 0.804], - [0.102, 0.255, 0.463, 0.18], - [0.216, 0.469, 0.23, 0.085], - [0.801, 0.053, 0.092, 0.054], - [0.414, 0.073, 0.451, 0.062], - [0.058, 0.376, 0.078, 0.489], - [0.076, 0.082, 0.464, 0.379], - [0.091, 0.387, 0.445, 0.078], - [0.063, 0.588, 0.079, 0.27], - [0.225, 0.085, 0.283, 0.407], - [0.116, 0.3, 0.377, 0.207], - [0.269, 0.092, 0.534, 0.105], - [0.439, 0.191, 0.269, 0.1], - [0.076, 0.402, 0.071, 0.452], - [0.086, 0.451, 0.071, 0.393], - ], - NFATC2: [ - [0.535, 0.112, 0.254, 0.098], - [0.113, 0.136, 0.026, 0.725], - [0.002, 0.0, 0.998, 0.0], - [0.0, 0.0, 1.0, 0.0], - [0.998, 0.002, 0.0, 0.0], - [0.988, 0.0, 0.011, 0.0], - [0.793, 0.077, 0.021, 0.11], - [0.471, 0.238, 0.154, 0.137], - [0.443, 0.063, 0.093, 0.401], - ], - RELB: [ - [0.023, 0.035, 0.89, 0.051], - [0.004, 0.024, 0.965, 0.007], - [0.001, 0.014, 0.725, 0.261], - [0.456, 0.031, 0.459, 0.054], - [0.06, 0.506, 0.291, 0.142], - [0.007, 0.011, 0.004, 0.978], - [0.0, 0.031, 0.002, 0.967], - [0.012, 0.266, 0.015, 0.706], - [0.002, 0.868, 0.0, 0.13], - [0.051, 0.76, 0.063, 0.127], - ], - MEF2D: [ - [0.096, 0.079, 0.401, 0.424], - [0.026, 0.757, 0.101, 0.117], - [0.001, 0.026, 0.0, 0.973], - [0.974, 0.001, 0.01, 0.015], - [0.15, 0.004, 0.0, 0.846], - [0.203, 0.006, 0.006, 0.784], - [0.142, 0.048, 0.0, 0.81], - [0.276, 0.074, 0.008, 0.642], - [0.091, 0.019, 0.043, 0.848], - [0.758, 0.002, 0.237, 0.002], - [0.085, 0.033, 0.81, 0.072], - ], - ETV1: [ - [0.063, 0.764, 0.159, 0.014], - [0.512, 0.472, 0.015, 0.001], - [0.0, 0.0, 1.0, 0.0], - [0.003, 0.0, 0.997, 0.0], - [0.999, 0.0, 0.0, 0.001], - [0.827, 0.014, 0.008, 0.152], - [0.239, 0.061, 0.681, 0.018], - [0.091, 0.285, 0.141, 0.483], - ], - ZFP28: [ - [0.132, 0.048, 0.127, 0.693], - [0.067, 0.301, 0.087, 0.545], - [0.012, 0.003, 0.001, 0.984], - [0.0, 0.842, 0.0, 0.158], - [0.228, 0.205, 0.058, 0.508], - [0.615, 0.073, 0.142, 0.17], - [0.003, 0.158, 0.017, 0.822], - [0.025, 0.141, 0.013, 0.821], - [0.0, 0.019, 0.001, 0.98], - [0.0, 0.893, 0.0, 0.107], - [0.115, 0.272, 0.009, 0.605], - [0.025, 0.014, 0.023, 0.939], - [0.007, 0.693, 0.003, 0.297], - [0.188, 0.126, 0.05, 0.636], - [0.228, 0.078, 0.306, 0.389], - [0.231, 0.057, 0.464, 0.248], - [0.324, 0.051, 0.22, 0.405], - [0.191, 0.072, 0.581, 0.156], - [0.134, 0.079, 0.116, 0.671], - [0.141, 0.457, 0.204, 0.198], - [0.677, 0.069, 0.116, 0.138], - ], - ESRRA: [ - [0.518, 0.017, 0.461, 0.004], - [0.762, 0.14, 0.035, 0.062], - [0.001, 0.04, 0.959, 0.001], - [0.0, 0.0, 1.0, 0.0], - [0.039, 0.026, 0.005, 0.929], - [0.001, 0.913, 0.012, 0.075], - [0.91, 0.004, 0.086, 0.001], - ], - PAX5: [ - [0.011, 0.003, 0.86, 0.125], - [0.105, 0.162, 0.008, 0.725], - [0.0, 0.999, 0.0, 0.001], - [0.87, 0.0, 0.052, 0.079], - [0.052, 0.586, 0.029, 0.334], - [0.203, 0.016, 0.777, 0.004], - [0.003, 0.594, 0.379, 0.024], - [0.212, 0.245, 0.068, 0.475], - ], - TCF7L1: [ - [0.0, 0.928, 0.054, 0.018], - [0.003, 0.004, 0.001, 0.993], - [0.0, 0.007, 0.004, 0.989], - [0.018, 0.0, 0.01, 0.972], - [0.022, 0.102, 0.772, 0.104], - [0.898, 0.0, 0.005, 0.097], - [0.412, 0.027, 0.008, 0.552], - ], - ZBTB17: [ - [0.195, 0.22, 0.5, 0.085], - [0.182, 0.175, 0.484, 0.16], - [0.154, 0.124, 0.601, 0.121], - [0.198, 0.179, 0.163, 0.46], - [0.051, 0.107, 0.811, 0.031], - [0.026, 0.025, 0.898, 0.051], - [0.088, 0.08, 0.817, 0.015], - [0.009, 0.014, 0.921, 0.056], - [0.009, 0.009, 0.958, 0.024], - [0.431, 0.491, 0.016, 0.063], - [0.116, 0.021, 0.772, 0.091], - [0.024, 0.039, 0.899, 0.038], - [0.08, 0.033, 0.824, 0.063], - [0.04, 0.049, 0.873, 0.039], - [0.275, 0.513, 0.102, 0.11], - ], - ZNF260: [ - [0.018, 0.298, 0.034, 0.65], - [0.095, 0.785, 0.019, 0.101], - [0.052, 0.336, 0.034, 0.579], - [0.03, 0.029, 0.027, 0.914], - [0.026, 0.024, 0.033, 0.917], - [0.027, 0.026, 0.049, 0.898], - [0.187, 0.042, 0.096, 0.676], - [0.076, 0.197, 0.017, 0.711], - [0.859, 0.053, 0.042, 0.045], - [0.014, 0.18, 0.016, 0.79], - [0.154, 0.022, 0.661, 0.163], - [0.042, 0.002, 0.946, 0.009], - [0.003, 0.779, 0.019, 0.2], - [0.022, 0.032, 0.006, 0.941], - [0.028, 0.057, 0.886, 0.029], - [0.153, 0.697, 0.006, 0.144], - [0.809, 0.012, 0.175, 0.003], - [0.001, 0.004, 0.012, 0.982], - [0.918, 0.008, 0.026, 0.047], - [0.137, 0.101, 0.751, 0.011], - [0.003, 0.007, 0.014, 0.976], - [0.96, 0.005, 0.025, 0.011], - [0.002, 0.104, 0.016, 0.877], - [0.003, 0.004, 0.009, 0.984], - [0.0, 0.954, 0.003, 0.042], - [0.006, 0.945, 0.003, 0.046], - [0.861, 0.036, 0.055, 0.047], - [0.024, 0.148, 0.036, 0.792], - [0.094, 0.064, 0.53, 0.312], - [0.11, 0.068, 0.743, 0.08], - [0.067, 0.099, 0.064, 0.77], - [0.296, 0.048, 0.582, 0.075], - [0.057, 0.08, 0.056, 0.807], - [0.611, 0.049, 0.263, 0.077], - [0.149, 0.081, 0.156, 0.614], - [0.741, 0.076, 0.089, 0.095], - [0.093, 0.091, 0.073, 0.744], - [0.256, 0.049, 0.591, 0.104], - [0.091, 0.087, 0.076, 0.746], - [0.527, 0.086, 0.291, 0.096], - [0.078, 0.706, 0.06, 0.156], - [0.115, 0.702, 0.055, 0.129], - [0.731, 0.085, 0.06, 0.125], - [0.105, 0.623, 0.05, 0.222], - [0.685, 0.086, 0.084, 0.145], - [0.135, 0.094, 0.093, 0.678], - [0.097, 0.073, 0.066, 0.764], - [0.092, 0.073, 0.065, 0.77], - [0.09, 0.078, 0.066, 0.766], - [0.142, 0.545, 0.115, 0.197], - [0.093, 0.113, 0.049, 0.746], - [0.106, 0.092, 0.066, 0.736], - [0.213, 0.109, 0.052, 0.627], - [0.651, 0.084, 0.07, 0.195], - [0.123, 0.14, 0.071, 0.666], - [0.109, 0.618, 0.074, 0.2], - [0.131, 0.593, 0.076, 0.199], - [0.633, 0.108, 0.097, 0.162], - [0.173, 0.116, 0.42, 0.291], - [0.105, 0.15, 0.085, 0.66], - [0.123, 0.591, 0.079, 0.207], - [0.191, 0.18, 0.088, 0.541], - [0.47, 0.151, 0.129, 0.251], - [0.121, 0.293, 0.082, 0.505], - ], - ZNF490: [ - [0.218, 0.128, 0.143, 0.511], - [0.214, 0.123, 0.475, 0.189], - [0.231, 0.116, 0.477, 0.176], - [0.54, 0.111, 0.173, 0.176], - [0.214, 0.117, 0.147, 0.521], - [0.544, 0.12, 0.142, 0.194], - [0.586, 0.127, 0.112, 0.174], - [0.58, 0.122, 0.154, 0.144], - [0.39, 0.118, 0.344, 0.149], - [0.634, 0.119, 0.116, 0.131], - [0.395, 0.134, 0.301, 0.17], - [0.307, 0.159, 0.17, 0.364], - [0.172, 0.563, 0.105, 0.16], - [0.654, 0.142, 0.094, 0.11], - [0.585, 0.141, 0.08, 0.194], - [0.152, 0.101, 0.682, 0.065], - [0.751, 0.026, 0.197, 0.026], - [0.195, 0.599, 0.073, 0.133], - [0.059, 0.767, 0.024, 0.15], - [0.065, 0.735, 0.021, 0.179], - [0.629, 0.129, 0.048, 0.194], - [0.402, 0.087, 0.168, 0.342], - [0.098, 0.374, 0.204, 0.325], - [0.232, 0.043, 0.336, 0.39], - [0.39, 0.016, 0.537, 0.057], - [0.008, 0.046, 0.05, 0.896], - [0.284, 0.236, 0.274, 0.206], - [0.006, 0.002, 0.001, 0.991], - [0.001, 0.001, 0.97, 0.029], - [0.002, 0.811, 0.005, 0.182], - [0.004, 0.035, 0.002, 0.958], - [0.01, 0.001, 0.978, 0.011], - [0.012, 0.487, 0.046, 0.455], - [0.214, 0.506, 0.021, 0.259], - [0.064, 0.048, 0.083, 0.805], - [0.32, 0.134, 0.099, 0.447], - [0.046, 0.859, 0.033, 0.062], - [0.752, 0.136, 0.037, 0.075], - [0.553, 0.057, 0.279, 0.11], - [0.074, 0.09, 0.749, 0.087], - [0.749, 0.065, 0.111, 0.074], - [0.291, 0.082, 0.52, 0.107], - [0.706, 0.131, 0.065, 0.097], - [0.08, 0.71, 0.09, 0.121], - [0.204, 0.407, 0.078, 0.31], - [0.136, 0.583, 0.104, 0.177], - [0.662, 0.098, 0.11, 0.13], - [0.118, 0.33, 0.103, 0.45], - [0.112, 0.481, 0.097, 0.31], - [0.123, 0.109, 0.096, 0.671], - [0.185, 0.488, 0.109, 0.218], - [0.651, 0.114, 0.116, 0.118], - [0.161, 0.461, 0.132, 0.247], - [0.389, 0.217, 0.244, 0.149], - [0.134, 0.173, 0.122, 0.571], - ], - ZBTB26: [ - [0.012, 0.041, 0.141, 0.806], - [0.003, 0.984, 0.01, 0.004], - [0.013, 0.539, 0.08, 0.368], - [0.467, 0.033, 0.485, 0.014], - [0.006, 0.005, 0.985, 0.004], - [0.883, 0.034, 0.052, 0.03], - [0.506, 0.097, 0.264, 0.132], - ], - TAL1: [ - [0.075, 0.5, 0.219, 0.206], - [0.053, 0.048, 0.005, 0.894], - [0.098, 0.0, 0.0, 0.902], - [1.0, 0.0, 0.0, 0.0], - [0.001, 0.0, 0.0, 0.999], - [0.0, 1.0, 0.0, 0.0], - [0.321, 0.013, 0.017, 0.649], - ], - ELF2: [ - [0.514, 0.082, 0.269, 0.134], - [0.011, 0.777, 0.098, 0.114], - [0.036, 0.0, 0.0, 0.964], - [0.001, 0.0, 0.003, 0.996], - [0.0, 0.971, 0.013, 0.016], - [0.009, 0.97, 0.0, 0.022], - [0.026, 0.025, 0.611, 0.338], - [0.032, 0.228, 0.638, 0.102], - ], - NANOG: [ - [0.05, 0.485, 0.191, 0.274], - [0.084, 0.459, 0.107, 0.349], - [0.43, 0.051, 0.06, 0.459], - [0.023, 0.042, 0.033, 0.902], - [0.074, 0.007, 0.035, 0.884], - [0.092, 0.299, 0.553, 0.056], - [0.353, 0.015, 0.062, 0.57], - [0.254, 0.246, 0.141, 0.358], - [0.742, 0.039, 0.083, 0.136], - [0.048, 0.045, 0.05, 0.857], - [0.013, 0.007, 0.754, 0.226], - [0.037, 0.547, 0.127, 0.289], - [0.615, 0.021, 0.084, 0.281], - [0.651, 0.031, 0.191, 0.127], - [0.737, 0.054, 0.089, 0.121], - [0.165, 0.143, 0.167, 0.524], - ], - ONECUT2: [ - [0.145, 0.115, 0.057, 0.683], - [0.994, 0.001, 0.003, 0.002], - [0.148, 0.012, 0.014, 0.826], - [0.228, 0.002, 0.089, 0.68], - [0.0, 0.0, 1.0, 0.0], - [0.961, 0.01, 0.026, 0.003], - [0.017, 0.04, 0.016, 0.927], - [0.019, 0.071, 0.041, 0.869], - [0.23, 0.081, 0.076, 0.614], - ], - GLIS3: [ - [0.409, 0.198, 0.393, 0.0], - [0.023, 0.834, 0.003, 0.14], - [0.002, 0.971, 0.009, 0.018], - [0.102, 0.622, 0.002, 0.274], - [0.0, 0.997, 0.0, 0.002], - [0.103, 0.887, 0.003, 0.006], - [0.158, 0.526, 0.01, 0.306], - [0.393, 0.004, 0.578, 0.025], - [0.01, 0.759, 0.222, 0.009], - [0.356, 0.216, 0.24, 0.189], - [0.218, 0.139, 0.468, 0.176], - [0.405, 0.188, 0.275, 0.132], - [0.011, 0.163, 0.761, 0.065], - ], - ZFX: [ - [0.145, 0.484, 0.07, 0.301], - [0.119, 0.348, 0.325, 0.208], - [0.389, 0.133, 0.41, 0.068], - [0.001, 0.0, 0.985, 0.015], - [0.002, 0.0, 0.992, 0.006], - [0.006, 0.993, 0.0, 0.001], - [0.0, 0.998, 0.0, 0.002], - [0.005, 0.076, 0.0, 0.919], - [0.245, 0.209, 0.365, 0.181], - [0.054, 0.384, 0.454, 0.109], - ], - RBPJ: [ - [0.006, 0.212, 0.015, 0.767], - [0.0, 0.003, 0.0, 0.996], - [0.0, 1.0, 0.0, 0.0], - [0.063, 0.741, 0.0, 0.196], - [0.001, 0.987, 0.011, 0.0], - [0.775, 0.0, 0.188, 0.037], - [0.023, 0.437, 0.375, 0.165], - [0.257, 0.254, 0.407, 0.083], - [0.236, 0.35, 0.372, 0.042], - ], - ZNF680: [ - [0.198, 0.036, 0.711, 0.055], - [0.295, 0.184, 0.259, 0.262], - [0.09, 0.764, 0.03, 0.116], - [0.309, 0.564, 0.026, 0.102], - [0.792, 0.01, 0.166, 0.032], - [0.672, 0.005, 0.253, 0.07], - [0.001, 0.001, 0.998, 0.0], - [0.998, 0.001, 0.001, 0.0], - [0.946, 0.003, 0.035, 0.016], - [0.161, 0.002, 0.828, 0.009], - [0.996, 0.002, 0.002, 0.0], - [0.472, 0.288, 0.039, 0.201], - [0.041, 0.152, 0.03, 0.776], - [0.291, 0.138, 0.258, 0.312], - [0.626, 0.086, 0.077, 0.211], - [0.3, 0.036, 0.598, 0.067], - ], - } - \ No newline at end of file +export const MOTIFS = { + IRF1: [ + [0.323, 0.103, 0.503, 0.071], + [0.536, 0.179, 0.258, 0.028], + [0.818, 0.09, 0.058, 0.034], + [0.906, 0.0, 0.077, 0.017], + [0.182, 0.427, 0.213, 0.178], + [0.256, 0.242, 0.113, 0.39], + [0.1, 0.003, 0.898, 0.0], + [0.696, 0.3, 0.0, 0.004], + [0.837, 0.129, 0.005, 0.029], + [0.885, 0.0, 0.069, 0.046], + [0.082, 0.426, 0.46, 0.032], + [0.119, 0.292, 0.166, 0.423], + [0.422, 0.034, 0.486, 0.058], + [0.493, 0.145, 0.317, 0.045], + [0.511, 0.206, 0.151, 0.131], + [0.52, 0.098, 0.297, 0.085], + ], + HIC1: [ + [0.001, 0.022, 0.0, 0.977], + [0.06, 0.0, 0.938, 0.002], + [0.186, 0.783, 0.031, 0.0], + [0.007, 0.959, 0.002, 0.032], + [0.054, 0.934, 0.006, 0.006], + [0.261, 0.0, 0.169, 0.569], + [0.078, 0.487, 0.179, 0.255], + ], + LHX2: [ + [0.067, 0.666, 0.193, 0.074], + [0.0, 0.215, 0.0, 0.785], + [0.512, 0.446, 0.0, 0.041], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.003, 0.997], + [0.001, 0.018, 0.004, 0.978], + [0.988, 0.0, 0.0, 0.012], + ], + ZNF667: [ + [0.052, 0.058, 0.825, 0.064], + [0.236, 0.282, 0.331, 0.15], + [0.071, 0.083, 0.285, 0.561], + [0.074, 0.046, 0.816, 0.064], + [0.785, 0.012, 0.166, 0.037], + [0.083, 0.009, 0.902, 0.006], + [0.003, 0.936, 0.012, 0.049], + [0.028, 0.046, 0.025, 0.902], + [0.003, 0.448, 0.012, 0.537], + [0.123, 0.058, 0.12, 0.699], + [0.083, 0.028, 0.067, 0.822], + [0.758, 0.031, 0.117, 0.095], + [0.798, 0.117, 0.055, 0.031], + [0.393, 0.028, 0.518, 0.061], + [0.025, 0.043, 0.911, 0.021], + [0.077, 0.644, 0.187, 0.092], + [0.11, 0.788, 0.058, 0.043], + [0.518, 0.181, 0.086, 0.215], + [0.113, 0.712, 0.08, 0.095], + ], + ZNF341: [ + [0.008, 0.006, 0.977, 0.008], + [0.014, 0.961, 0.017, 0.009], + [0.047, 0.15, 0.053, 0.751], + [0.093, 0.309, 0.558, 0.041], + [0.027, 0.055, 0.01, 0.908], + [0.003, 0.069, 0.094, 0.834], + [0.075, 0.791, 0.088, 0.045], + [0.057, 0.685, 0.035, 0.223], + ], + TP53: [ + [0.264, 0.024, 0.526, 0.186], + [0.459, 0.0, 0.476, 0.066], + [0.017, 0.96, 0.001, 0.023], + [0.79, 0.0, 0.103, 0.106], + [0.209, 0.063, 0.019, 0.71], + [0.0, 0.004, 0.978, 0.018], + [0.055, 0.368, 0.0, 0.577], + [0.101, 0.59, 0.019, 0.289], + [0.156, 0.329, 0.136, 0.379], + [0.264, 0.177, 0.426, 0.133], + [0.251, 0.16, 0.411, 0.178], + [0.44, 0.054, 0.416, 0.09], + [0.079, 0.741, 0.153, 0.027], + [0.576, 0.225, 0.037, 0.162], + [0.269, 0.075, 0.137, 0.519], + [0.168, 0.078, 0.664, 0.09], + ], + SRF: [ + [0.258, 0.127, 0.089, 0.527], + [0.124, 0.132, 0.324, 0.419], + [0.261, 0.215, 0.293, 0.231], + [0.016, 0.968, 0.008, 0.008], + [0.0, 0.93, 0.0, 0.069], + [0.532, 0.061, 0.016, 0.39], + [0.251, 0.021, 0.017, 0.71], + [0.817, 0.009, 0.033, 0.141], + [0.131, 0.028, 0.004, 0.837], + [0.678, 0.016, 0.017, 0.29], + [0.353, 0.012, 0.061, 0.574], + [0.093, 0.0, 0.906, 0.001], + [0.032, 0.006, 0.951, 0.011], + [0.229, 0.294, 0.215, 0.262], + [0.419, 0.357, 0.109, 0.115], + [0.558, 0.077, 0.146, 0.219], + ], + SPIB: [ + [0.593, 0.068, 0.192, 0.148], + [0.602, 0.058, 0.23, 0.11], + [0.561, 0.029, 0.184, 0.227], + [0.182, 0.093, 0.697, 0.028], + [0.606, 0.102, 0.277, 0.015], + [0.088, 0.0, 0.904, 0.007], + [0.0, 0.004, 0.996, 0.0], + [0.991, 0.005, 0.001, 0.003], + [0.985, 0.0, 0.003, 0.012], + [0.052, 0.176, 0.769, 0.003], + [0.091, 0.076, 0.03, 0.803], + [0.076, 0.157, 0.738, 0.029], + ], + "NKX2-5": [ + [0.119, 0.154, 0.528, 0.2], + [0.172, 0.458, 0.144, 0.226], + [0.24, 0.026, 0.498, 0.236], + [0.247, 0.425, 0.163, 0.164], + [0.311, 0.187, 0.148, 0.353], + [0.316, 0.082, 0.427, 0.174], + [0.382, 0.249, 0.194, 0.175], + [0.147, 0.188, 0.406, 0.26], + [0.207, 0.307, 0.207, 0.279], + [0.31, 0.176, 0.316, 0.199], + [0.221, 0.319, 0.163, 0.296], + [0.087, 0.299, 0.176, 0.438], + [0.124, 0.206, 0.163, 0.507], + [0.205, 0.163, 0.216, 0.416], + [0.343, 0.07, 0.583, 0.004], + [0.987, 0.003, 0.003, 0.007], + [0.058, 0.019, 0.915, 0.007], + [0.404, 0.002, 0.021, 0.573], + [0.031, 0.002, 0.941, 0.027], + [0.055, 0.274, 0.541, 0.129], + ], + TBX5: [ + [0.195, 0.312, 0.018, 0.475], + [0.364, 0.131, 0.345, 0.16], + [0.008, 0.053, 0.099, 0.841], + [0.055, 0.745, 0.013, 0.187], + [0.615, 0.147, 0.039, 0.2], + [0.146, 0.427, 0.277, 0.149], + [0.333, 0.2, 0.078, 0.389], + [0.302, 0.273, 0.365, 0.059], + [0.547, 0.067, 0.144, 0.243], + [0.019, 0.929, 0.0, 0.052], + [0.816, 0.002, 0.081, 0.102], + [0.03, 0.834, 0.118, 0.017], + [0.168, 0.457, 0.068, 0.308], + [0.172, 0.192, 0.078, 0.558], + ], + ELK4: [ + [0.462, 0.116, 0.319, 0.103], + [0.008, 0.638, 0.097, 0.257], + [0.111, 0.0, 0.003, 0.887], + [0.002, 0.0, 0.0, 0.998], + [0.006, 0.994, 0.001, 0.0], + [0.005, 0.973, 0.0, 0.021], + [0.026, 0.021, 0.674, 0.279], + [0.053, 0.189, 0.653, 0.104], + ], + STAT3: [ + [0.082, 0.065, 0.078, 0.776], + [0.081, 0.012, 0.257, 0.649], + [0.192, 0.668, 0.07, 0.07], + [0.024, 0.748, 0.01, 0.218], + [0.313, 0.165, 0.35, 0.172], + [0.136, 0.003, 0.856, 0.005], + [0.03, 0.016, 0.819, 0.135], + [0.961, 0.028, 0.003, 0.008], + [0.964, 0.01, 0.022, 0.004], + ], + NR2F6: [ + [0.143, 0.125, 0.165, 0.567], + [0.12, 0.112, 0.629, 0.139], + [0.415, 0.123, 0.394, 0.068], + [0.484, 0.282, 0.129, 0.105], + [0.025, 0.949, 0.023, 0.003], + [0.015, 0.262, 0.028, 0.695], + [0.034, 0.196, 0.034, 0.736], + [0.007, 0.091, 0.001, 0.901], + [0.031, 0.012, 0.927, 0.03], + [0.44, 0.167, 0.271, 0.122], + [0.354, 0.392, 0.054, 0.199], + [0.05, 0.839, 0.046, 0.064], + [0.122, 0.363, 0.022, 0.493], + ], + FOXK2: [ + [0.028, 0.014, 0.014, 0.944], + [0.158, 0.004, 0.838, 0.0], + [0.003, 0.017, 0.017, 0.963], + [0.015, 0.0, 0.082, 0.903], + [0.002, 0.0, 0.126, 0.873], + [0.969, 0.007, 0.0, 0.023], + [0.0, 0.734, 0.016, 0.25], + ], + ZNF24: [ + [0.161, 0.533, 0.111, 0.195], + [0.415, 0.227, 0.193, 0.165], + [0.117, 0.311, 0.111, 0.461], + [0.172, 0.106, 0.163, 0.56], + [0.259, 0.569, 0.125, 0.047], + [0.527, 0.239, 0.131, 0.103], + [0.208, 0.089, 0.139, 0.564], + [0.056, 0.06, 0.085, 0.8], + [0.005, 0.968, 0.023, 0.004], + [0.878, 0.059, 0.037, 0.026], + [0.007, 0.149, 0.154, 0.69], + [0.059, 0.047, 0.082, 0.811], + [0.157, 0.656, 0.024, 0.163], + [0.572, 0.178, 0.178, 0.071], + [0.026, 0.091, 0.031, 0.851], + [0.036, 0.019, 0.044, 0.9], + [0.005, 0.984, 0.004, 0.007], + [0.568, 0.182, 0.149, 0.101], + ], + CEBPB: [ + [0.617, 0.049, 0.195, 0.139], + [0.0, 0.0, 0.0, 1.0], + [0.001, 0.0, 0.044, 0.955], + [0.332, 0.0, 0.286, 0.381], + [0.0, 0.998, 0.0, 0.002], + [0.65, 0.123, 0.001, 0.225], + [0.164, 0.363, 0.008, 0.466], + [0.716, 0.276, 0.0, 0.008], + [0.986, 0.001, 0.003, 0.01], + [0.021, 0.302, 0.136, 0.541], + ], + MAX: [ + [0.0, 1.0, 0.0, 0.0], + [0.96, 0.001, 0.018, 0.02], + [0.0, 0.481, 0.004, 0.515], + [0.031, 0.01, 0.96, 0.0], + [0.052, 0.154, 0.0, 0.795], + [0.0, 0.005, 0.92, 0.075], + ], + PPARG: [ + [0.098, 0.123, 0.08, 0.699], + [0.197, 0.143, 0.541, 0.119], + [0.57, 0.252, 0.129, 0.05], + [0.189, 0.72, 0.014, 0.077], + [0.05, 0.822, 0.007, 0.121], + [0.011, 0.161, 0.011, 0.816], + [0.075, 0.224, 0.037, 0.664], + [0.025, 0.061, 0.022, 0.893], + [0.132, 0.201, 0.536, 0.13], + [0.336, 0.316, 0.188, 0.159], + [0.065, 0.74, 0.043, 0.152], + [0.151, 0.727, 0.016, 0.107], + [0.063, 0.445, 0.046, 0.446], + [0.591, 0.145, 0.15, 0.114], + [0.214, 0.319, 0.335, 0.133], + [0.333, 0.09, 0.033, 0.544], + [0.196, 0.103, 0.152, 0.549], + ], + NFIA: [ + [0.057, 0.392, 0.103, 0.449], + [0.012, 0.19, 0.121, 0.677], + [0.045, 0.0, 0.847, 0.109], + [0.032, 0.063, 0.896, 0.009], + [0.286, 0.595, 0.041, 0.078], + [0.331, 0.204, 0.131, 0.334], + [0.206, 0.411, 0.171, 0.211], + [0.23, 0.209, 0.328, 0.234], + [0.187, 0.378, 0.239, 0.196], + [0.25, 0.105, 0.231, 0.413], + [0.042, 0.029, 0.746, 0.183], + [0.002, 0.93, 0.032, 0.035], + [0.0, 0.84, 0.0, 0.16], + [0.721, 0.027, 0.239, 0.013], + [0.37, 0.127, 0.454, 0.048], + ], + EPAS1: [ + [0.746, 0.021, 0.218, 0.015], + [0.002, 0.906, 0.001, 0.091], + [0.091, 0.0, 0.888, 0.021], + [0.004, 0.0, 0.004, 0.992], + [0.0, 0.0, 0.993, 0.007], + ], + JUNB: [ + [0.443, 0.231, 0.271, 0.055], + [0.0, 0.004, 0.001, 0.995], + [0.0, 0.0, 0.86, 0.14], + [0.991, 0.002, 0.0, 0.007], + [0.125, 0.375, 0.452, 0.047], + [0.0, 0.0, 0.0, 1.0], + [0.029, 0.971, 0.0, 0.0], + [0.992, 0.0, 0.008, 0.0], + [0.05, 0.31, 0.202, 0.438], + ], + PBX1: [ + [0.184, 0.032, 0.058, 0.727], + [0.002, 0.137, 0.86, 0.001], + [0.712, 0.16, 0.01, 0.118], + [0.071, 0.195, 0.361, 0.373], + [0.024, 0.001, 0.005, 0.971], + [0.016, 0.198, 0.783, 0.003], + [0.709, 0.001, 0.238, 0.053], + [0.008, 0.717, 0.053, 0.222], + [0.477, 0.004, 0.204, 0.315], + [0.127, 0.076, 0.584, 0.213], + ], + KLF13: [ + [0.098, 0.119, 0.721, 0.062], + [0.134, 0.693, 0.089, 0.084], + [0.11, 0.699, 0.064, 0.127], + [0.423, 0.562, 0.013, 0.001], + [0.002, 0.99, 0.0, 0.009], + [0.111, 0.0, 0.825, 0.065], + [0.0, 0.997, 0.0, 0.003], + [0.001, 0.98, 0.017, 0.003], + [0.049, 0.912, 0.001, 0.038], + [0.286, 0.555, 0.001, 0.158], + [0.027, 0.693, 0.071, 0.209], + ], + ZNF652: [ + [0.015, 0.024, 0.065, 0.896], + [0.006, 0.013, 0.023, 0.958], + [0.837, 0.019, 0.085, 0.058], + [0.949, 0.015, 0.022, 0.014], + [0.01, 0.98, 0.006, 0.004], + [0.034, 0.644, 0.031, 0.291], + [0.122, 0.712, 0.084, 0.082], + [0.095, 0.196, 0.063, 0.646], + [0.097, 0.111, 0.123, 0.669], + [0.14, 0.164, 0.181, 0.515], + [0.282, 0.383, 0.229, 0.106], + [0.286, 0.282, 0.189, 0.242], + [0.224, 0.185, 0.233, 0.357], + [0.162, 0.225, 0.304, 0.309], + [0.218, 0.254, 0.289, 0.239], + [0.176, 0.539, 0.115, 0.17], + ], + "NKX2-1": [ + [0.215, 0.012, 0.773, 0.001], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.002, 0.955, 0.042], + [0.349, 0.001, 0.0, 0.651], + [0.0, 0.0, 0.993, 0.007], + [0.004, 0.004, 0.713, 0.279], + ], + BACH1: [ + [0.015, 0.025, 0.121, 0.839], + [0.081, 0.013, 0.827, 0.079], + [0.72, 0.246, 0.006, 0.027], + [0.196, 0.002, 0.749, 0.054], + [0.005, 0.0, 0.008, 0.988], + [0.039, 0.907, 0.0, 0.054], + [0.915, 0.0, 0.056, 0.029], + [0.036, 0.263, 0.323, 0.377], + ], + HOXA9: [ + [0.209, 0.012, 0.025, 0.754], + [0.115, 0.014, 0.802, 0.068], + [0.974, 0.006, 0.009, 0.011], + [0.028, 0.008, 0.028, 0.935], + [0.085, 0.008, 0.049, 0.858], + [0.077, 0.072, 0.162, 0.689], + [0.978, 0.001, 0.02, 0.002], + [0.027, 0.152, 0.042, 0.779], + [0.224, 0.044, 0.465, 0.267], + [0.268, 0.062, 0.458, 0.211], + ], + TEAD1: [ + [0.255, 0.071, 0.053, 0.621], + [0.006, 0.0, 0.987, 0.007], + [0.006, 0.018, 0.976, 0.0], + [0.816, 0.052, 0.0, 0.131], + [0.998, 0.0, 0.0, 0.002], + [0.0, 0.009, 0.0, 0.991], + [0.0, 0.073, 0.61, 0.317], + [0.043, 0.353, 0.03, 0.573], + ], + ATOH8: [ + [0.462, 0.401, 0.137, 0.0], + [0.004, 0.996, 0.0, 0.0], + [0.999, 0.0, 0.0, 0.001], + [0.0, 0.109, 0.729, 0.162], + [0.063, 0.917, 0.018, 0.003], + [0.0, 0.01, 0.001, 0.988], + [0.0, 0.006, 0.994, 0.0], + [0.045, 0.346, 0.236, 0.372], + [0.096, 0.12, 0.199, 0.585], + [0.104, 0.208, 0.396, 0.293], + [0.22, 0.424, 0.152, 0.204], + [0.092, 0.366, 0.43, 0.111], + ], + NR2C1: [ + [0.366, 0.124, 0.48, 0.03], + [0.608, 0.002, 0.39, 0.0], + [0.0, 0.001, 0.999, 0.0], + [0.0, 0.0, 0.995, 0.005], + [0.0, 0.0, 0.0, 1.0], + [0.0, 0.984, 0.0, 0.016], + [0.974, 0.0, 0.026, 0.0], + ], + E2F7: [ + [0.176, 0.098, 0.214, 0.511], + [0.06, 0.345, 0.595, 0.0], + [0.041, 0.047, 0.9, 0.013], + [0.058, 0.932, 0.0, 0.01], + [0.014, 0.034, 0.927, 0.025], + [0.08, 0.208, 0.703, 0.008], + [0.023, 0.102, 0.866, 0.009], + [0.941, 0.008, 0.009, 0.041], + [0.642, 0.075, 0.215, 0.069], + ], + SOX2: [ + [0.98, 0.001, 0.0, 0.019], + [0.0, 0.919, 0.024, 0.057], + [0.999, 0.0, 0.0, 0.001], + [1.0, 0.0, 0.0, 0.0], + [0.57, 0.003, 0.001, 0.426], + [0.068, 0.008, 0.924, 0.001], + [0.332, 0.201, 0.418, 0.048], + ], + CTCFL: [ + [0.071, 0.788, 0.103, 0.039], + [0.032, 0.915, 0.039, 0.014], + [0.452, 0.093, 0.31, 0.145], + [0.065, 0.547, 0.37, 0.019], + [0.143, 0.457, 0.111, 0.289], + [0.723, 0.111, 0.105, 0.061], + [0.005, 0.019, 0.972, 0.003], + [0.243, 0.025, 0.722, 0.011], + [0.056, 0.135, 0.594, 0.215], + [0.006, 0.025, 0.958, 0.012], + [0.013, 0.043, 0.903, 0.041], + [0.106, 0.846, 0.011, 0.038], + [0.223, 0.046, 0.692, 0.039], + [0.065, 0.607, 0.244, 0.085], + ], + PKNOX1: [ + [0.159, 0.576, 0.136, 0.129], + [0.176, 0.241, 0.031, 0.552], + [0.293, 0.011, 0.682, 0.014], + [0.0, 0.223, 0.005, 0.772], + [0.114, 0.806, 0.041, 0.039], + [0.773, 0.099, 0.007, 0.121], + [0.528, 0.213, 0.215, 0.044], + [0.004, 0.004, 0.0, 0.992], + [0.003, 0.982, 0.0, 0.015], + [0.836, 0.027, 0.01, 0.128], + ], + NFKB1: [ + [0.044, 0.011, 0.936, 0.009], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 0.978, 0.022], + [0.402, 0.0, 0.572, 0.026], + [0.7, 0.088, 0.154, 0.057], + [0.559, 0.038, 0.056, 0.347], + [0.18, 0.153, 0.132, 0.535], + [0.08, 0.436, 0.029, 0.454], + [0.105, 0.825, 0.001, 0.069], + [0.013, 0.968, 0.001, 0.018], + [0.103, 0.801, 0.024, 0.072], + ], + ISL1: [ + [0.0, 0.828, 0.017, 0.156], + [0.474, 0.403, 0.003, 0.121], + [0.984, 0.014, 0.002, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.0, 0.0, 0.0, 0.999], + [0.976, 0.0, 0.0, 0.024], + ], + HLF: [ + [0.295, 0.158, 0.526, 0.021], + [0.0, 0.001, 0.0, 0.999], + [0.0, 0.0, 0.002, 0.998], + [0.585, 0.003, 0.409, 0.003], + [0.004, 0.531, 0.009, 0.456], + [0.607, 0.013, 0.38, 0.0], + [0.003, 0.243, 0.002, 0.752], + [0.92, 0.079, 0.001, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.027, 0.508, 0.167, 0.298], + ], + ATF4: [ + [0.606, 0.118, 0.244, 0.032], + [0.0, 0.001, 0.0, 0.999], + [0.0, 0.0, 0.056, 0.944], + [0.219, 0.002, 0.558, 0.221], + [0.007, 0.992, 0.0, 0.0], + [0.928, 0.017, 0.053, 0.002], + [0.01, 0.017, 0.011, 0.962], + [0.043, 0.948, 0.009, 0.001], + [0.985, 0.0, 0.014, 0.001], + [0.01, 0.195, 0.209, 0.586], + ], + RARG: [ + [0.58, 0.02, 0.397, 0.003], + [0.019, 0.0, 0.851, 0.129], + [0.033, 0.0, 0.923, 0.044], + [0.007, 0.021, 0.09, 0.881], + [0.0, 0.9, 0.072, 0.028], + [0.94, 0.002, 0.046, 0.012], + [0.128, 0.392, 0.32, 0.16], + [0.257, 0.315, 0.258, 0.17], + [0.171, 0.242, 0.426, 0.161], + [0.127, 0.203, 0.102, 0.568], + [0.2, 0.064, 0.69, 0.046], + [0.466, 0.234, 0.18, 0.119], + [0.049, 0.705, 0.118, 0.127], + [0.157, 0.631, 0.093, 0.12], + ], + WT1: [ + [0.16, 0.355, 0.072, 0.413], + [0.364, 0.614, 0.016, 0.006], + [0.001, 0.998, 0.0, 0.001], + [0.0, 0.001, 0.056, 0.943], + [0.0, 0.995, 0.002, 0.003], + [0.0, 0.998, 0.0, 0.002], + [0.001, 0.938, 0.0, 0.061], + [0.201, 0.286, 0.053, 0.46], + ], + RUNX3: [ + [0.045, 0.073, 0.01, 0.872], + [0.0, 0.001, 0.999, 0.0], + [0.041, 0.124, 0.003, 0.832], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.116, 0.112, 0.772], + [0.082, 0.235, 0.109, 0.574], + [0.335, 0.068, 0.173, 0.425], + ], + SP3: [ + [0.267, 0.147, 0.511, 0.075], + [0.121, 0.024, 0.631, 0.225], + [0.241, 0.0, 0.759, 0.001], + [0.002, 0.0, 0.997, 0.001], + [0.001, 0.002, 0.996, 0.001], + [0.183, 0.69, 0.0, 0.127], + [0.02, 0.004, 0.968, 0.008], + [0.008, 0.002, 0.867, 0.123], + [0.267, 0.027, 0.651, 0.056], + [0.076, 0.057, 0.836, 0.031], + [0.106, 0.81, 0.003, 0.08], + ], + HSF2: [ + [0.238, 0.574, 0.134, 0.054], + [0.083, 0.261, 0.14, 0.516], + [0.555, 0.025, 0.417, 0.003], + [0.0, 0.0, 1.0, 0.0], + [0.992, 0.002, 0.0, 0.007], + [0.922, 0.013, 0.019, 0.046], + [0.207, 0.292, 0.292, 0.209], + [0.251, 0.25, 0.325, 0.174], + [0.049, 0.035, 0.022, 0.894], + [0.007, 0.002, 0.029, 0.963], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.292, 0.008, 0.7], + [0.654, 0.022, 0.32, 0.003], + [0.0, 0.0, 0.997, 0.003], + [0.933, 0.013, 0.025, 0.029], + [0.83, 0.044, 0.091, 0.034], + [0.292, 0.28, 0.297, 0.13], + [0.261, 0.22, 0.284, 0.235], + [0.196, 0.207, 0.158, 0.439], + [0.146, 0.175, 0.217, 0.463], + [0.156, 0.568, 0.199, 0.077], + ], + SNAI2: [ + [0.028, 0.971, 0.0, 0.001], + [1.0, 0.0, 0.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.0, 0.0, 1.0, 0.0], + [0.004, 0.501, 0.0, 0.496], + ], + NR2F2: [ + [0.0, 0.083, 0.002, 0.915], + [0.007, 0.001, 0.991, 0.0], + [0.89, 0.076, 0.034, 0.0], + [0.003, 0.994, 0.003, 0.0], + [0.006, 0.993, 0.0, 0.0], + [0.001, 0.334, 0.023, 0.642], + [0.063, 0.458, 0.192, 0.288], + ], + BCL11A: [ + [0.077, 0.282, 0.094, 0.548], + [0.079, 0.745, 0.042, 0.135], + [0.84, 0.003, 0.099, 0.057], + [0.006, 0.642, 0.214, 0.138], + [0.067, 0.001, 0.001, 0.932], + [0.004, 0.0, 0.0, 0.996], + [0.001, 0.988, 0.001, 0.011], + [0.005, 0.85, 0.001, 0.144], + [0.009, 0.245, 0.156, 0.589], + [0.032, 0.538, 0.211, 0.218], + [0.197, 0.196, 0.044, 0.563], + [0.171, 0.163, 0.084, 0.582], + ], + MLX: [ + [0.172, 0.222, 0.508, 0.099], + [0.288, 0.142, 0.4, 0.17], + [0.112, 0.342, 0.245, 0.301], + [0.027, 0.794, 0.088, 0.09], + [0.716, 0.0, 0.269, 0.015], + [0.0, 0.924, 0.021, 0.054], + [0.198, 0.003, 0.799, 0.0], + [0.037, 0.0, 0.048, 0.915], + [0.037, 0.064, 0.795, 0.105], + [0.34, 0.275, 0.289, 0.096], + [0.099, 0.59, 0.186, 0.125], + ], + ETV7: [ + [0.227, 0.548, 0.222, 0.003], + [0.471, 0.477, 0.047, 0.005], + [0.012, 0.002, 0.984, 0.002], + [0.041, 0.06, 0.885, 0.013], + [0.992, 0.0, 0.002, 0.006], + [0.951, 0.021, 0.001, 0.027], + [0.265, 0.108, 0.623, 0.004], + [0.138, 0.296, 0.091, 0.474], + ], + FOXO1: [ + [0.06, 0.015, 0.021, 0.904], + [0.115, 0.0, 0.885, 0.0], + [0.006, 0.038, 0.001, 0.955], + [0.0, 0.0, 0.025, 0.975], + [0.0, 0.0, 0.109, 0.891], + [0.832, 0.071, 0.062, 0.034], + [0.001, 0.662, 0.0, 0.336], + ], + MEF2B: [ + [0.029, 0.8, 0.048, 0.123], + [0.003, 0.037, 0.064, 0.896], + [0.826, 0.029, 0.072, 0.073], + [0.193, 0.031, 0.032, 0.744], + [0.161, 0.034, 0.053, 0.752], + [0.101, 0.062, 0.017, 0.82], + [0.268, 0.111, 0.05, 0.572], + [0.153, 0.078, 0.1, 0.668], + [0.57, 0.026, 0.404, 0.001], + [0.133, 0.068, 0.668, 0.131], + ], + ZNF467: [ + [0.309, 0.075, 0.489, 0.127], + [0.246, 0.099, 0.506, 0.148], + [0.218, 0.135, 0.533, 0.114], + [0.28, 0.067, 0.577, 0.077], + [0.14, 0.073, 0.732, 0.055], + [0.124, 0.035, 0.821, 0.019], + [0.179, 0.023, 0.778, 0.02], + [0.665, 0.034, 0.289, 0.011], + [0.244, 0.02, 0.685, 0.051], + [0.241, 0.086, 0.654, 0.02], + [0.227, 0.076, 0.655, 0.042], + [0.147, 0.049, 0.705, 0.098], + [0.437, 0.227, 0.26, 0.076], + [0.28, 0.243, 0.39, 0.087], + [0.35, 0.116, 0.417, 0.117], + [0.185, 0.138, 0.595, 0.082], + [0.227, 0.093, 0.614, 0.065], + [0.395, 0.115, 0.446, 0.044], + [0.198, 0.104, 0.625, 0.073], + [0.234, 0.057, 0.636, 0.074], + [0.245, 0.054, 0.664, 0.038], + [0.198, 0.055, 0.707, 0.041], + [0.222, 0.061, 0.678, 0.039], + [0.324, 0.051, 0.605, 0.02], + [0.31, 0.179, 0.464, 0.046], + [0.249, 0.117, 0.569, 0.065], + [0.17, 0.127, 0.659, 0.045], + [0.389, 0.096, 0.425, 0.089], + [0.388, 0.098, 0.448, 0.066], + ], + KLF6: [ + [0.038, 0.073, 0.889, 0.0], + [0.001, 0.062, 0.937, 0.0], + [0.0, 0.001, 0.999, 0.0], + [0.033, 0.771, 0.0, 0.196], + [0.0, 0.0, 0.999, 0.001], + [0.045, 0.085, 0.549, 0.321], + [0.132, 0.155, 0.617, 0.096], + [0.091, 0.143, 0.617, 0.15], + [0.112, 0.526, 0.196, 0.166], + ], + RXRA: [ + [0.671, 0.023, 0.306, 0.0], + [0.005, 0.038, 0.949, 0.008], + [0.0, 0.001, 0.814, 0.185], + [0.01, 0.024, 0.029, 0.937], + [0.002, 0.888, 0.003, 0.107], + [0.968, 0.001, 0.031, 0.0], + ], + TFAP2A: [ + [0.172, 0.113, 0.593, 0.121], + [0.008, 0.612, 0.361, 0.019], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.949, 0.0, 0.051], + [0.023, 0.281, 0.039, 0.656], + [0.082, 0.373, 0.503, 0.043], + [0.525, 0.071, 0.387, 0.017], + [0.088, 0.0, 0.912, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.022, 0.578, 0.383, 0.018], + ], + FOSL1: [ + [0.423, 0.146, 0.36, 0.071], + [0.007, 0.063, 0.016, 0.915], + [0.002, 0.007, 0.942, 0.049], + [0.908, 0.074, 0.0, 0.018], + [0.064, 0.648, 0.099, 0.188], + [0.021, 0.0, 0.212, 0.768], + [0.129, 0.847, 0.002, 0.023], + [0.796, 0.137, 0.034, 0.032], + ], + GATA1: [ + [0.658, 0.028, 0.012, 0.302], + [0.0, 0.0, 1.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.949, 0.0, 0.0, 0.051], + [0.858, 0.011, 0.093, 0.037], + [0.148, 0.195, 0.543, 0.114], + ], + JUN: [ + [0.029, 0.054, 0.008, 0.909], + [0.017, 0.009, 0.899, 0.076], + [0.967, 0.027, 0.0, 0.006], + [0.076, 0.515, 0.342, 0.067], + [0.082, 0.037, 0.078, 0.802], + [0.108, 0.815, 0.058, 0.018], + [0.841, 0.022, 0.098, 0.039], + ], + NFE2L2: [ + [0.586, 0.114, 0.282, 0.019], + [0.008, 0.104, 0.0, 0.888], + [0.009, 0.008, 0.954, 0.029], + [0.931, 0.027, 0.027, 0.016], + [0.036, 0.7, 0.18, 0.084], + [0.165, 0.077, 0.084, 0.675], + [0.164, 0.612, 0.115, 0.11], + [0.619, 0.054, 0.156, 0.17], + [0.071, 0.0, 0.883, 0.045], + [0.001, 0.957, 0.013, 0.029], + [0.697, 0.014, 0.167, 0.122], + ], + FOXJ2: [ + [0.0, 0.001, 0.013, 0.986], + [0.047, 0.0, 0.953, 0.0], + [0.003, 0.004, 0.0, 0.993], + [0.005, 0.0, 0.03, 0.965], + [0.0, 0.0, 0.123, 0.877], + [0.734, 0.068, 0.133, 0.065], + [0.001, 0.542, 0.029, 0.427], + ], + TFE3: [ + [0.255, 0.14, 0.528, 0.077], + [0.096, 0.237, 0.126, 0.541], + [0.005, 0.986, 0.007, 0.002], + [0.811, 0.073, 0.075, 0.042], + [0.0, 0.737, 0.05, 0.213], + [0.234, 0.027, 0.733, 0.006], + [0.147, 0.131, 0.05, 0.672], + [0.012, 0.0, 0.962, 0.026], + ], + ZNF740: [ + [0.145, 0.142, 0.555, 0.158], + [0.118, 0.15, 0.587, 0.146], + [0.121, 0.114, 0.615, 0.15], + [0.091, 0.059, 0.607, 0.243], + [0.073, 0.029, 0.533, 0.365], + [0.0, 0.0, 0.999, 0.001], + [0.0, 0.0, 1.0, 0.0], + [0.001, 0.0, 0.999, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.115, 0.0, 0.658, 0.227], + [0.002, 0.0, 0.989, 0.009], + [0.151, 0.491, 0.096, 0.262], + [0.257, 0.177, 0.415, 0.152], + [0.143, 0.178, 0.538, 0.142], + ], + ELF4: [ + [0.567, 0.073, 0.237, 0.124], + [0.0, 0.83, 0.059, 0.11], + [0.007, 0.0, 0.0, 0.993], + [0.002, 0.001, 0.001, 0.997], + [0.0, 1.0, 0.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.001, 0.028, 0.459, 0.512], + [0.032, 0.206, 0.674, 0.088], + ], + ZNF257: [ + [0.043, 0.06, 0.815, 0.083], + [0.71, 0.094, 0.015, 0.18], + [0.017, 0.0, 0.982, 0.0], + [0.0, 0.0, 0.999, 0.001], + [0.201, 0.716, 0.001, 0.083], + [0.72, 0.0, 0.279, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.001, 0.003, 0.93, 0.066], + [0.413, 0.162, 0.409, 0.016], + [0.189, 0.126, 0.417, 0.267], + [0.153, 0.598, 0.137, 0.113], + ], + PAX3: [ + [0.368, 0.042, 0.192, 0.398], + [0.795, 0.096, 0.084, 0.025], + [0.982, 0.001, 0.002, 0.015], + [0.069, 0.082, 0.058, 0.791], + [0.009, 0.476, 0.184, 0.332], + [0.465, 0.156, 0.375, 0.003], + [0.86, 0.0, 0.076, 0.064], + [0.009, 0.014, 0.008, 0.969], + [0.014, 0.114, 0.122, 0.749], + ], + EGR1: [ + [0.16, 0.083, 0.737, 0.02], + [0.179, 0.485, 0.113, 0.223], + [0.007, 0.0, 0.993, 0.0], + [0.012, 0.028, 0.422, 0.538], + [0.087, 0.019, 0.888, 0.006], + [0.005, 0.002, 0.982, 0.011], + [0.008, 0.0, 0.989, 0.003], + [0.239, 0.48, 0.002, 0.278], + [0.051, 0.019, 0.895, 0.035], + [0.064, 0.052, 0.694, 0.189], + ], + NFYB: [ + [0.321, 0.231, 0.416, 0.032], + [0.563, 0.035, 0.337, 0.065], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.998, 0.002, 0.0], + [0.984, 0.0, 0.0, 0.016], + [0.995, 0.001, 0.003, 0.001], + [0.0, 0.013, 0.0, 0.987], + [0.059, 0.746, 0.173, 0.022], + [0.737, 0.046, 0.212, 0.005], + [0.098, 0.136, 0.725, 0.04], + [0.303, 0.454, 0.137, 0.106], + [0.42, 0.063, 0.342, 0.176], + [0.114, 0.428, 0.304, 0.154], + [0.114, 0.265, 0.265, 0.356], + [0.192, 0.49, 0.184, 0.134], + [0.177, 0.159, 0.2, 0.464], + [0.109, 0.21, 0.573, 0.108], + ], + ZEB1: [ + [0.046, 0.473, 0.011, 0.47], + [0.806, 0.003, 0.001, 0.19], + [0.003, 0.955, 0.001, 0.042], + [0.008, 0.97, 0.007, 0.016], + [0.011, 0.0, 0.0, 0.989], + [0.081, 0.018, 0.808, 0.093], + [0.06, 0.16, 0.332, 0.448], + ], + RFX2: [ + [0.141, 0.001, 0.85, 0.008], + [0.028, 0.094, 0.1, 0.778], + [0.125, 0.246, 0.022, 0.607], + [0.182, 0.03, 0.573, 0.215], + [0.023, 0.835, 0.051, 0.091], + [0.0, 0.736, 0.04, 0.224], + [0.621, 0.138, 0.102, 0.139], + [0.235, 0.054, 0.244, 0.467], + [0.061, 0.08, 0.858, 0.001], + [0.133, 0.068, 0.757, 0.043], + [0.239, 0.375, 0.244, 0.142], + [0.558, 0.081, 0.271, 0.09], + [0.595, 0.18, 0.074, 0.151], + [0.177, 0.546, 0.023, 0.254], + ], + THAP11: [ + [0.037, 0.215, 0.39, 0.358], + [0.099, 0.733, 0.093, 0.075], + [0.008, 0.191, 0.008, 0.793], + [0.009, 0.01, 0.959, 0.022], + [0.006, 0.005, 0.977, 0.011], + [0.036, 0.002, 0.946, 0.016], + [0.834, 0.037, 0.075, 0.054], + [0.472, 0.136, 0.319, 0.074], + [0.366, 0.095, 0.096, 0.443], + [0.011, 0.094, 0.026, 0.869], + [0.009, 0.002, 0.988, 0.002], + [0.025, 0.043, 0.043, 0.889], + [0.935, 0.001, 0.058, 0.006], + [0.004, 0.002, 0.993, 0.001], + [0.0, 0.008, 0.01, 0.982], + [0.029, 0.504, 0.026, 0.442], + [0.032, 0.574, 0.022, 0.371], + ], + NR4A1: [ + [0.01, 0.055, 0.001, 0.934], + [0.084, 0.0, 0.916, 0.0], + [0.793, 0.104, 0.101, 0.003], + [0.033, 0.954, 0.0, 0.013], + [0.289, 0.699, 0.0, 0.012], + [0.0, 0.0, 0.0, 0.999], + [0.015, 0.0, 0.0, 0.985], + [0.058, 0.082, 0.0, 0.86], + ], + TFDP1: [ + [0.104, 0.143, 0.219, 0.533], + [0.004, 0.751, 0.244, 0.0], + [0.0, 0.672, 0.327, 0.0], + [0.001, 0.998, 0.0, 0.001], + [0.001, 0.0, 0.976, 0.023], + [0.0, 0.999, 0.001, 0.0], + [0.0, 0.633, 0.267, 0.1], + ], + MYOG: [ + [0.481, 0.177, 0.32, 0.022], + [0.596, 0.082, 0.272, 0.05], + [0.035, 0.932, 0.017, 0.017], + [0.953, 0.009, 0.029, 0.008], + [0.046, 0.019, 0.883, 0.052], + [0.047, 0.832, 0.109, 0.012], + [0.012, 0.011, 0.004, 0.973], + [0.001, 0.003, 0.98, 0.017], + ], + HOXA13: [ + [0.066, 0.093, 0.219, 0.622], + [0.003, 0.119, 0.037, 0.84], + [0.028, 0.059, 0.003, 0.911], + [0.04, 0.077, 0.01, 0.873], + [0.856, 0.099, 0.045, 0.0], + [0.002, 0.065, 0.057, 0.875], + [0.256, 0.158, 0.252, 0.335], + [0.245, 0.01, 0.718, 0.027], + [0.055, 0.423, 0.396, 0.126], + ], + PAX7: [ + [0.489, 0.059, 0.131, 0.321], + [0.853, 0.061, 0.07, 0.016], + [0.983, 0.0, 0.0, 0.017], + [0.059, 0.04, 0.002, 0.9], + [0.009, 0.499, 0.24, 0.251], + [0.387, 0.237, 0.366, 0.01], + [0.907, 0.001, 0.071, 0.022], + [0.103, 0.005, 0.009, 0.883], + [0.001, 0.057, 0.119, 0.823], + ], + SCRT1: [ + [0.189, 0.566, 0.108, 0.136], + [0.948, 0.001, 0.045, 0.006], + [0.023, 0.958, 0.002, 0.017], + [0.012, 0.779, 0.004, 0.205], + [0.015, 0.0, 0.001, 0.984], + [0.0, 0.0, 1.0, 0.0], + [0.012, 0.031, 0.0, 0.957], + [0.085, 0.035, 0.186, 0.693], + [0.047, 0.01, 0.932, 0.012], + [0.372, 0.431, 0.121, 0.076], + ], + HAND2: [ + [0.302, 0.43, 0.218, 0.051], + [0.028, 0.961, 0.01, 0.001], + [0.972, 0.0, 0.025, 0.003], + [0.0, 0.009, 0.296, 0.695], + [0.149, 0.743, 0.106, 0.002], + [0.0, 0.001, 0.0, 0.999], + [0.0, 0.0, 0.999, 0.0], + [0.005, 0.204, 0.496, 0.295], + ], + ZNF554: [ + [0.214, 0.094, 0.575, 0.117], + [0.175, 0.669, 0.104, 0.052], + [0.221, 0.081, 0.051, 0.647], + [0.011, 0.028, 0.927, 0.033], + [0.784, 0.01, 0.191, 0.015], + [0.055, 0.104, 0.835, 0.006], + [0.003, 0.374, 0.006, 0.617], + [0.007, 0.987, 0.002, 0.004], + [0.82, 0.034, 0.112, 0.033], + ], + SOX10: [ + [0.839, 0.083, 0.058, 0.02], + [0.786, 0.034, 0.061, 0.119], + [0.467, 0.038, 0.188, 0.307], + [0.263, 0.048, 0.568, 0.12], + [0.251, 0.281, 0.379, 0.088], + [0.25, 0.231, 0.28, 0.239], + [0.151, 0.308, 0.244, 0.298], + [0.051, 0.41, 0.239, 0.3], + [0.052, 0.699, 0.056, 0.193], + [0.426, 0.077, 0.009, 0.488], + [0.006, 0.076, 0.01, 0.908], + [0.0, 0.0, 0.0, 1.0], + [0.043, 0.009, 0.949, 0.0], + [0.002, 0.0, 0.0, 0.998], + [0.123, 0.157, 0.192, 0.528], + [0.108, 0.394, 0.064, 0.434], + ], + NR5A2: [ + [0.056, 0.173, 0.041, 0.729], + [0.131, 0.034, 0.824, 0.011], + [0.33, 0.08, 0.387, 0.202], + [0.013, 0.981, 0.0, 0.005], + [0.026, 0.972, 0.0, 0.002], + [0.04, 0.092, 0.004, 0.864], + [0.004, 0.034, 0.0, 0.962], + [0.0, 0.114, 0.886, 0.0], + [0.627, 0.054, 0.229, 0.09], + ], + ETV6: [ + [0.551, 0.119, 0.232, 0.098], + [0.142, 0.469, 0.363, 0.026], + [0.664, 0.245, 0.089, 0.002], + [0.028, 0.001, 0.971, 0.0], + [0.018, 0.0, 0.98, 0.002], + [0.994, 0.003, 0.001, 0.002], + [0.954, 0.0, 0.001, 0.045], + [0.274, 0.031, 0.694, 0.001], + [0.067, 0.229, 0.054, 0.651], + ], + ZFP64: [ + [0.265, 0.004, 0.683, 0.048], + [0.018, 0.976, 0.001, 0.005], + [0.007, 0.989, 0.0, 0.004], + [0.034, 0.946, 0.0, 0.019], + [0.13, 0.201, 0.438, 0.231], + [0.051, 0.0, 0.925, 0.024], + [0.047, 0.049, 0.837, 0.067], + [0.524, 0.198, 0.22, 0.058], + [0.391, 0.378, 0.201, 0.03], + [0.14, 0.394, 0.104, 0.362], + [0.188, 0.45, 0.233, 0.129], + [0.233, 0.192, 0.272, 0.303], + [0.078, 0.16, 0.691, 0.071], + ], + TP73: [ + [0.265, 0.047, 0.534, 0.155], + [0.428, 0.018, 0.506, 0.048], + [0.017, 0.98, 0.002, 0.001], + [0.78, 0.012, 0.115, 0.093], + [0.293, 0.039, 0.094, 0.574], + [0.0, 0.0, 0.97, 0.03], + [0.084, 0.374, 0.0, 0.541], + [0.098, 0.477, 0.075, 0.351], + [0.139, 0.332, 0.202, 0.327], + [0.302, 0.173, 0.391, 0.134], + [0.303, 0.121, 0.437, 0.138], + [0.498, 0.039, 0.356, 0.107], + [0.039, 0.947, 0.0, 0.014], + [0.623, 0.073, 0.048, 0.256], + [0.16, 0.132, 0.094, 0.615], + [0.064, 0.036, 0.849, 0.051], + [0.134, 0.432, 0.07, 0.364], + [0.199, 0.491, 0.085, 0.226], + ], + THRA: [ + [0.031, 0.06, 0.01, 0.899], + [0.053, 0.065, 0.875, 0.007], + [0.473, 0.033, 0.077, 0.417], + [0.017, 0.981, 0.0, 0.002], + [0.002, 0.998, 0.0, 0.0], + [0.002, 0.18, 0.002, 0.816], + [0.041, 0.631, 0.132, 0.196], + [0.772, 0.021, 0.194, 0.014], + [0.225, 0.204, 0.321, 0.25], + [0.346, 0.144, 0.297, 0.213], + [0.033, 0.058, 0.017, 0.892], + [0.173, 0.072, 0.731, 0.024], + [0.832, 0.065, 0.091, 0.012], + [0.093, 0.882, 0.0, 0.026], + [0.012, 0.959, 0.0, 0.029], + ], + ZNF140: [ + [0.198, 0.103, 0.54, 0.159], + [0.193, 0.177, 0.26, 0.37], + [0.406, 0.152, 0.29, 0.152], + [0.225, 0.183, 0.24, 0.352], + [0.448, 0.193, 0.183, 0.176], + [0.179, 0.174, 0.168, 0.479], + [0.443, 0.135, 0.265, 0.156], + [0.197, 0.387, 0.229, 0.186], + [0.245, 0.393, 0.206, 0.155], + [0.241, 0.139, 0.214, 0.406], + [0.487, 0.09, 0.215, 0.207], + [0.131, 0.018, 0.669, 0.183], + [0.139, 0.0, 0.859, 0.002], + [0.795, 0.012, 0.191, 0.002], + [0.039, 0.115, 0.824, 0.022], + [0.028, 0.487, 0.03, 0.455], + [0.214, 0.002, 0.698, 0.086], + [0.007, 0.0, 0.902, 0.091], + [0.997, 0.0, 0.0, 0.002], + [0.953, 0.004, 0.041, 0.002], + [0.004, 0.066, 0.039, 0.89], + [0.09, 0.041, 0.055, 0.814], + [0.032, 0.006, 0.95, 0.012], + [0.047, 0.749, 0.04, 0.164], + [0.211, 0.129, 0.062, 0.598], + [0.215, 0.146, 0.529, 0.11], + ], + ZNF549: [ + [0.077, 0.16, 0.127, 0.637], + [0.073, 0.632, 0.038, 0.257], + [0.918, 0.027, 0.032, 0.023], + [0.108, 0.045, 0.359, 0.487], + [0.115, 0.228, 0.447, 0.21], + [0.446, 0.177, 0.224, 0.152], + [0.626, 0.022, 0.23, 0.122], + [0.09, 0.482, 0.054, 0.374], + [0.329, 0.223, 0.039, 0.409], + [0.186, 0.006, 0.751, 0.057], + [0.024, 0.058, 0.881, 0.037], + [0.136, 0.114, 0.733, 0.017], + [0.067, 0.883, 0.014, 0.036], + [0.788, 0.052, 0.088, 0.072], + [0.034, 0.019, 0.927, 0.02], + [0.05, 0.821, 0.069, 0.061], + ], + MEF2C: [ + [0.049, 0.721, 0.041, 0.189], + [0.001, 0.01, 0.0, 0.989], + [0.973, 0.0, 0.004, 0.022], + [0.165, 0.0, 0.0, 0.835], + [0.214, 0.009, 0.002, 0.774], + [0.16, 0.04, 0.003, 0.798], + [0.284, 0.084, 0.013, 0.619], + [0.146, 0.033, 0.07, 0.751], + [0.66, 0.0, 0.337, 0.003], + [0.144, 0.054, 0.649, 0.152], + ], + GFI1: [ + [0.593, 0.23, 0.087, 0.09], + [0.991, 0.0, 0.0, 0.008], + [0.999, 0.0, 0.0, 0.0], + [0.002, 0.141, 0.0, 0.857], + [0.0, 0.996, 0.0, 0.004], + [0.562, 0.0, 0.004, 0.434], + [0.081, 0.648, 0.268, 0.002], + [0.581, 0.006, 0.095, 0.318], + [0.086, 0.03, 0.792, 0.092], + ], + ZNF768: [ + [0.069, 0.697, 0.144, 0.09], + [0.049, 0.181, 0.074, 0.696], + [0.057, 0.098, 0.653, 0.192], + [0.061, 0.085, 0.183, 0.671], + [0.054, 0.06, 0.69, 0.196], + [0.061, 0.107, 0.184, 0.648], + [0.13, 0.083, 0.609, 0.178], + [0.539, 0.088, 0.232, 0.141], + [0.133, 0.595, 0.09, 0.182], + [0.105, 0.58, 0.073, 0.242], + [0.088, 0.222, 0.086, 0.604], + [0.087, 0.179, 0.104, 0.63], + [0.214, 0.113, 0.504, 0.17], + [0.206, 0.09, 0.608, 0.096], + [0.206, 0.098, 0.599, 0.097], + [0.124, 0.54, 0.151, 0.185], + [0.624, 0.132, 0.124, 0.119], + [0.637, 0.089, 0.165, 0.11], + [0.221, 0.105, 0.577, 0.097], + [0.095, 0.138, 0.109, 0.658], + [0.11, 0.28, 0.145, 0.466], + [0.509, 0.141, 0.205, 0.144], + [0.121, 0.693, 0.08, 0.105], + [0.088, 0.147, 0.084, 0.681], + [0.087, 0.205, 0.1, 0.608], + [0.575, 0.11, 0.192, 0.123], + [0.606, 0.219, 0.148, 0.027], + [0.059, 0.828, 0.035, 0.079], + [0.046, 0.687, 0.119, 0.148], + [0.031, 0.023, 0.019, 0.928], + [0.008, 0.896, 0.015, 0.081], + [0.004, 0.014, 0.028, 0.953], + [0.0, 0.999, 0.001, 0.0], + [0.006, 0.002, 0.002, 0.99], + [0.004, 0.003, 0.991, 0.002], + [0.395, 0.008, 0.206, 0.391], + [0.1, 0.019, 0.613, 0.269], + [0.022, 0.741, 0.033, 0.205], + [0.093, 0.557, 0.029, 0.32], + [0.097, 0.172, 0.082, 0.65], + [0.116, 0.493, 0.126, 0.265], + [0.428, 0.15, 0.171, 0.251], + [0.193, 0.159, 0.411, 0.237], + [0.122, 0.186, 0.113, 0.578], + [0.108, 0.202, 0.128, 0.562], + [0.123, 0.211, 0.12, 0.546], + [0.126, 0.437, 0.112, 0.325], + [0.148, 0.444, 0.103, 0.306], + [0.185, 0.224, 0.105, 0.486], + [0.181, 0.408, 0.126, 0.285], + [0.402, 0.216, 0.133, 0.249], + [0.169, 0.204, 0.146, 0.481], + [0.173, 0.379, 0.164, 0.284], + [0.193, 0.156, 0.173, 0.478], + [0.28, 0.136, 0.352, 0.232], + [0.275, 0.166, 0.164, 0.394], + [0.499, 0.133, 0.176, 0.191], + [0.526, 0.133, 0.159, 0.183], + ], + ZNF350: [ + [0.087, 0.21, 0.126, 0.576], + [0.295, 0.09, 0.254, 0.361], + [0.256, 0.126, 0.578, 0.04], + [0.176, 0.095, 0.639, 0.089], + [0.085, 0.118, 0.208, 0.589], + [0.19, 0.5, 0.029, 0.281], + [0.729, 0.11, 0.054, 0.108], + [0.149, 0.114, 0.048, 0.689], + [0.912, 0.048, 0.006, 0.034], + [0.927, 0.045, 0.017, 0.01], + [0.987, 0.004, 0.007, 0.002], + [0.859, 0.01, 0.113, 0.018], + [0.384, 0.047, 0.486, 0.082], + [0.325, 0.054, 0.537, 0.084], + [0.276, 0.178, 0.386, 0.16], + [0.185, 0.645, 0.077, 0.093], + ], + SMAD4: [ + [0.078, 0.189, 0.616, 0.117], + [0.132, 0.17, 0.081, 0.617], + [0.03, 0.077, 0.833, 0.06], + [0.25, 0.38, 0.16, 0.21], + [0.037, 0.622, 0.19, 0.15], + [0.998, 0.001, 0.0, 0.0], + [0.001, 0.0, 0.998, 0.0], + [0.777, 0.16, 0.008, 0.055], + [0.0, 1.0, 0.0, 0.0], + [0.518, 0.053, 0.162, 0.266], + ], + CREB1: [ + [0.009, 0.027, 0.007, 0.957], + [0.0, 0.003, 0.994, 0.004], + [0.999, 0.0, 0.0, 0.001], + [0.0, 0.999, 0.0, 0.001], + [0.038, 0.338, 0.335, 0.29], + [0.075, 0.415, 0.051, 0.459], + ], + ELF5: [ + [0.242, 0.201, 0.49, 0.067], + [0.487, 0.138, 0.229, 0.146], + [0.876, 0.001, 0.022, 0.1], + [0.108, 0.431, 0.252, 0.209], + [0.224, 0.425, 0.351, 0.0], + [0.657, 0.314, 0.03, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.001, 0.0, 0.999, 0.0], + [1.0, 0.0, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.114, 0.0, 0.886, 0.0], + [0.097, 0.16, 0.077, 0.667], + ], + TWIST1: [ + [0.394, 0.439, 0.138, 0.029], + [0.002, 0.998, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.119, 0.431, 0.45], + [0.263, 0.575, 0.162, 0.001], + [0.0, 0.002, 0.0, 0.998], + [0.0, 0.0, 0.999, 0.001], + [0.002, 0.254, 0.437, 0.307], + ], + GFI1B: [ + [0.634, 0.221, 0.086, 0.06], + [0.975, 0.0, 0.005, 0.019], + [1.0, 0.0, 0.0, 0.0], + [0.002, 0.049, 0.004, 0.945], + [0.0, 0.999, 0.0, 0.001], + [0.655, 0.01, 0.0, 0.335], + [0.133, 0.482, 0.376, 0.009], + [0.487, 0.03, 0.143, 0.34], + [0.1, 0.043, 0.777, 0.08], + [0.122, 0.559, 0.1, 0.22], + ], + NFATC1: [ + [0.564, 0.114, 0.207, 0.116], + [0.596, 0.117, 0.22, 0.067], + [0.125, 0.13, 0.027, 0.717], + [0.004, 0.004, 0.991, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.972, 0.009, 0.007, 0.012], + [0.967, 0.0, 0.024, 0.009], + [0.688, 0.057, 0.054, 0.2], + [0.411, 0.223, 0.212, 0.154], + [0.434, 0.035, 0.191, 0.341], + [0.391, 0.159, 0.168, 0.282], + [0.21, 0.215, 0.065, 0.509], + ], + ZNF770: [ + [0.696, 0.102, 0.142, 0.06], + [0.491, 0.357, 0.078, 0.074], + [0.068, 0.722, 0.071, 0.139], + [0.061, 0.13, 0.062, 0.746], + [0.032, 0.778, 0.065, 0.124], + [0.039, 0.795, 0.055, 0.11], + [0.061, 0.217, 0.069, 0.653], + [0.166, 0.087, 0.669, 0.078], + [0.131, 0.081, 0.731, 0.057], + [0.108, 0.293, 0.548, 0.051], + [0.048, 0.74, 0.082, 0.13], + [0.034, 0.094, 0.074, 0.798], + [0.046, 0.812, 0.063, 0.078], + [0.789, 0.091, 0.067, 0.054], + [0.74, 0.097, 0.109, 0.055], + [0.082, 0.1, 0.743, 0.074], + [0.049, 0.426, 0.081, 0.443], + [0.214, 0.155, 0.576, 0.055], + [0.851, 0.002, 0.141, 0.006], + [0.008, 0.001, 0.213, 0.779], + [0.001, 0.998, 0.0, 0.001], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.0, 0.995, 0.0, 0.005], + [0.003, 0.939, 0.006, 0.051], + [0.088, 0.464, 0.035, 0.413], + [0.399, 0.092, 0.407, 0.102], + [0.039, 0.759, 0.045, 0.156], + [0.032, 0.814, 0.038, 0.117], + [0.023, 0.092, 0.055, 0.829], + [0.028, 0.682, 0.065, 0.225], + [0.61, 0.085, 0.274, 0.031], + [0.037, 0.041, 0.892, 0.03], + [0.031, 0.88, 0.073, 0.017], + [0.018, 0.911, 0.053, 0.019], + [0.019, 0.054, 0.051, 0.876], + [0.011, 0.881, 0.043, 0.065], + [0.016, 0.872, 0.042, 0.069], + [0.084, 0.642, 0.058, 0.215], + [0.588, 0.086, 0.263, 0.064], + [0.779, 0.08, 0.092, 0.049], + [0.434, 0.085, 0.421, 0.06], + [0.083, 0.085, 0.405, 0.427], + [0.418, 0.102, 0.098, 0.382], + [0.105, 0.089, 0.718, 0.088], + [0.048, 0.714, 0.086, 0.152], + [0.049, 0.112, 0.072, 0.767], + [0.136, 0.078, 0.708, 0.078], + [0.123, 0.094, 0.726, 0.057], + [0.126, 0.093, 0.72, 0.061], + [0.742, 0.082, 0.096, 0.08], + [0.073, 0.38, 0.091, 0.455], + [0.08, 0.173, 0.075, 0.672], + [0.712, 0.12, 0.097, 0.071], + [0.099, 0.643, 0.079, 0.179], + [0.724, 0.114, 0.096, 0.065], + [0.142, 0.088, 0.703, 0.066], + [0.128, 0.1, 0.697, 0.075], + [0.088, 0.517, 0.106, 0.289], + [0.399, 0.131, 0.373, 0.097], + [0.089, 0.242, 0.114, 0.555], + [0.232, 0.118, 0.56, 0.09], + ], + STAT5A: [ + [0.0, 0.01, 0.0, 0.99], + [0.075, 0.013, 0.003, 0.91], + [0.001, 0.998, 0.0, 0.0], + [0.058, 0.361, 0.019, 0.561], + [0.303, 0.231, 0.171, 0.294], + [0.506, 0.016, 0.407, 0.07], + [0.006, 0.0, 0.98, 0.015], + [0.877, 0.001, 0.007, 0.115], + [0.994, 0.0, 0.006, 0.0], + ], + ZIM3: [ + [0.974, 0.001, 0.021, 0.004], + [0.932, 0.003, 0.019, 0.046], + [0.089, 0.871, 0.039, 0.001], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.88, 0.075, 0.011, 0.035], + [0.993, 0.001, 0.004, 0.002], + [0.723, 0.031, 0.048, 0.198], + [0.157, 0.293, 0.226, 0.324], + [0.078, 0.902, 0.002, 0.018], + [0.107, 0.376, 0.03, 0.487], + [0.479, 0.245, 0.123, 0.153], + [0.42, 0.221, 0.17, 0.188], + [0.345, 0.156, 0.217, 0.281], + [0.488, 0.155, 0.178, 0.18], + [0.344, 0.187, 0.112, 0.357], + [0.32, 0.225, 0.219, 0.236], + [0.637, 0.13, 0.123, 0.11], + ], + KLF3: [ + [0.185, 0.083, 0.617, 0.116], + [0.157, 0.674, 0.098, 0.07], + [0.076, 0.761, 0.058, 0.104], + [0.406, 0.409, 0.108, 0.077], + [0.006, 0.982, 0.0, 0.012], + [0.366, 0.0, 0.539, 0.094], + [0.005, 0.98, 0.0, 0.014], + [0.0, 0.981, 0.019, 0.0], + [0.005, 0.826, 0.037, 0.132], + ], + ZNF18: [ + [0.292, 0.011, 0.617, 0.081], + [0.005, 0.013, 0.982, 0.0], + [0.012, 0.0, 0.002, 0.986], + [0.005, 0.002, 0.992, 0.001], + [0.046, 0.003, 0.089, 0.862], + [0.025, 0.001, 0.967, 0.007], + [0.925, 0.018, 0.001, 0.056], + [0.733, 0.028, 0.107, 0.131], + [0.012, 0.575, 0.152, 0.262], + ], + GATA4: [ + [0.033, 0.594, 0.207, 0.165], + [0.043, 0.085, 0.01, 0.862], + [0.115, 0.0, 0.0, 0.884], + [1.0, 0.0, 0.0, 0.0], + [0.005, 0.0, 0.0, 0.995], + [0.0, 1.0, 0.0, 0.0], + [0.114, 0.004, 0.002, 0.88], + ], + NEUROD1: [ + [0.296, 0.584, 0.12, 0.0], + [0.009, 0.991, 0.0, 0.0], + [0.992, 0.0, 0.002, 0.006], + [0.001, 0.045, 0.428, 0.526], + [0.237, 0.763, 0.0, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.0, 0.0, 1.0, 0.0], + [0.001, 0.257, 0.361, 0.382], + [0.068, 0.402, 0.09, 0.44], + ], + RELA: [ + [0.097, 0.018, 0.639, 0.246], + [0.0, 0.0, 0.989, 0.011], + [0.039, 0.0, 0.939, 0.022], + [0.586, 0.004, 0.401, 0.009], + [0.632, 0.149, 0.127, 0.092], + [0.377, 0.055, 0.04, 0.527], + [0.044, 0.051, 0.064, 0.841], + [0.003, 0.029, 0.04, 0.928], + [0.025, 0.499, 0.001, 0.475], + [0.064, 0.507, 0.058, 0.371], + ], + MYNN: [ + [0.123, 0.095, 0.698, 0.085], + [0.419, 0.104, 0.429, 0.047], + [0.01, 0.979, 0.003, 0.009], + [0.004, 0.129, 0.186, 0.68], + [0.038, 0.283, 0.19, 0.489], + [0.042, 0.114, 0.209, 0.635], + [0.019, 0.008, 0.101, 0.872], + [0.63, 0.134, 0.186, 0.049], + [0.227, 0.155, 0.137, 0.48], + [0.044, 0.292, 0.209, 0.455], + [0.148, 0.176, 0.129, 0.547], + [0.078, 0.214, 0.179, 0.528], + [0.115, 0.105, 0.652, 0.128], + [0.396, 0.214, 0.239, 0.15], + [0.437, 0.27, 0.083, 0.21], + [0.378, 0.124, 0.407, 0.09], + ], + ETV2: [ + [0.06, 0.546, 0.31, 0.084], + [0.165, 0.398, 0.182, 0.255], + [0.453, 0.117, 0.289, 0.141], + [0.004, 0.586, 0.037, 0.373], + [0.103, 0.0, 0.015, 0.882], + [0.0, 0.005, 0.0, 0.995], + [0.0, 0.999, 0.0, 0.001], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.005, 0.282, 0.713], + [0.003, 0.157, 0.711, 0.129], + [0.04, 0.325, 0.106, 0.529], + [0.114, 0.396, 0.092, 0.398], + [0.125, 0.252, 0.117, 0.506], + ], + RFX3: [ + [0.041, 0.011, 0.89, 0.058], + [0.026, 0.058, 0.019, 0.897], + [0.083, 0.149, 0.005, 0.763], + [0.161, 0.049, 0.634, 0.157], + [0.005, 0.88, 0.014, 0.101], + [0.022, 0.658, 0.017, 0.304], + [0.728, 0.092, 0.054, 0.125], + [0.131, 0.08, 0.266, 0.523], + [0.121, 0.024, 0.825, 0.031], + [0.143, 0.144, 0.66, 0.053], + [0.234, 0.428, 0.187, 0.151], + [0.605, 0.068, 0.246, 0.081], + [0.609, 0.203, 0.122, 0.065], + [0.132, 0.582, 0.092, 0.194], + ], + NFYC: [ + [0.403, 0.182, 0.364, 0.051], + [0.436, 0.056, 0.419, 0.089], + [0.006, 0.966, 0.0, 0.027], + [0.052, 0.902, 0.043, 0.004], + [0.917, 0.0, 0.037, 0.046], + [0.884, 0.037, 0.074, 0.006], + [0.0, 0.117, 0.019, 0.865], + [0.132, 0.581, 0.258, 0.029], + [0.566, 0.109, 0.309, 0.016], + [0.168, 0.201, 0.565, 0.066], + ], + SREBF1: [ + [0.18, 0.179, 0.538, 0.103], + [0.167, 0.327, 0.242, 0.264], + [0.066, 0.346, 0.34, 0.247], + [0.239, 0.301, 0.304, 0.156], + [0.129, 0.458, 0.258, 0.154], + [0.142, 0.21, 0.38, 0.268], + [0.287, 0.212, 0.289, 0.212], + [0.172, 0.285, 0.303, 0.24], + [0.251, 0.222, 0.42, 0.107], + [0.136, 0.244, 0.456, 0.164], + [0.254, 0.303, 0.382, 0.061], + [0.231, 0.119, 0.647, 0.003], + [0.04, 0.022, 0.056, 0.883], + [0.029, 0.361, 0.606, 0.005], + [0.341, 0.013, 0.572, 0.075], + [0.011, 0.448, 0.373, 0.168], + [0.054, 0.194, 0.744, 0.009], + [0.003, 0.226, 0.0, 0.771], + [0.0, 0.083, 0.906, 0.011], + [0.802, 0.049, 0.096, 0.053], + [0.033, 0.475, 0.086, 0.406], + [0.088, 0.476, 0.307, 0.128], + ], + HOXC9: [ + [0.423, 0.049, 0.273, 0.255], + [0.212, 0.29, 0.158, 0.339], + [0.333, 0.206, 0.091, 0.37], + [0.497, 0.152, 0.21, 0.141], + [0.368, 0.076, 0.333, 0.223], + [0.197, 0.429, 0.133, 0.241], + [0.39, 0.138, 0.186, 0.286], + [0.363, 0.135, 0.39, 0.113], + [0.422, 0.201, 0.179, 0.198], + [0.179, 0.045, 0.724, 0.052], + [0.046, 0.762, 0.002, 0.19], + [0.196, 0.51, 0.002, 0.292], + [0.65, 0.008, 0.34, 0.003], + [0.001, 0.035, 0.056, 0.908], + [0.567, 0.171, 0.036, 0.226], + [0.891, 0.029, 0.023, 0.057], + [0.744, 0.055, 0.076, 0.125], + [0.41, 0.063, 0.162, 0.365], + ], + CREB3L1: [ + [0.126, 0.083, 0.697, 0.094], + [0.109, 0.755, 0.004, 0.133], + [0.008, 0.928, 0.061, 0.003], + [0.937, 0.001, 0.031, 0.031], + [0.007, 0.945, 0.003, 0.045], + [0.093, 0.024, 0.877, 0.006], + [0.073, 0.121, 0.021, 0.785], + [0.121, 0.294, 0.504, 0.081], + [0.307, 0.121, 0.412, 0.16], + [0.183, 0.339, 0.227, 0.251], + [0.151, 0.555, 0.136, 0.159], + ], + ZNF418: [ + [0.103, 0.099, 0.335, 0.463], + [0.089, 0.037, 0.099, 0.775], + [0.058, 0.124, 0.781, 0.037], + [0.05, 0.709, 0.058, 0.184], + [0.054, 0.076, 0.004, 0.866], + [0.045, 0.052, 0.021, 0.882], + [0.052, 0.138, 0.153, 0.657], + [0.112, 0.11, 0.118, 0.661], + [0.647, 0.031, 0.262, 0.06], + [0.023, 0.023, 0.89, 0.064], + [0.093, 0.837, 0.017, 0.054], + [0.062, 0.599, 0.019, 0.32], + [0.32, 0.064, 0.107, 0.508], + [0.039, 0.727, 0.12, 0.114], + [0.211, 0.258, 0.039, 0.492], + [0.067, 0.155, 0.352, 0.426], + ], + ZNF263: [ + [0.013, 0.359, 0.592, 0.036], + [0.0, 0.002, 0.0, 0.997], + [0.002, 0.652, 0.346, 0.0], + [0.045, 0.954, 0.0, 0.001], + [0.0, 0.0, 0.004, 0.995], + [0.0, 1.0, 0.0, 0.0], + [0.007, 0.976, 0.011, 0.007], + [0.08, 0.78, 0.021, 0.118], + ], + MNT: [ + [0.468, 0.393, 0.126, 0.012], + [0.0, 1.0, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.409, 0.0, 0.591], + [0.0, 0.001, 0.999, 0.0], + [0.001, 0.0, 0.0, 0.999], + [0.0, 0.0, 1.0, 0.0], + ], + TCF7L2: [ + [0.656, 0.054, 0.156, 0.135], + [0.014, 0.482, 0.441, 0.063], + [0.653, 0.011, 0.001, 0.335], + [0.083, 0.009, 0.001, 0.908], + [0.058, 0.768, 0.147, 0.028], + [0.992, 0.0, 0.0, 0.008], + [0.937, 0.027, 0.036, 0.0], + [0.948, 0.0, 0.038, 0.013], + [0.118, 0.047, 0.824, 0.011], + ], + PAX6: [ + [0.377, 0.055, 0.54, 0.028], + [0.191, 0.222, 0.267, 0.32], + [0.008, 0.291, 0.319, 0.382], + [0.153, 0.606, 0.002, 0.239], + [0.805, 0.028, 0.122, 0.044], + [0.294, 0.253, 0.3, 0.153], + [0.023, 0.192, 0.024, 0.762], + [0.038, 0.476, 0.44, 0.047], + [0.765, 0.016, 0.189, 0.029], + [0.451, 0.077, 0.227, 0.245], + [0.013, 0.296, 0.68, 0.011], + [0.004, 0.747, 0.009, 0.24], + [0.404, 0.01, 0.511, 0.075], + [0.063, 0.052, 0.435, 0.45], + [0.533, 0.043, 0.375, 0.049], + [0.713, 0.108, 0.081, 0.097], + [0.536, 0.107, 0.259, 0.099], + ], + ATOH1: [ + [0.313, 0.392, 0.288, 0.006], + [0.012, 0.988, 0.0, 0.0], + [0.978, 0.0, 0.009, 0.013], + [0.001, 0.196, 0.477, 0.326], + [0.232, 0.767, 0.001, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.0, 0.0, 0.999, 0.0], + [0.0, 0.32, 0.24, 0.439], + [0.0, 0.343, 0.156, 0.5], + ], + CREB5: [ + [0.633, 0.117, 0.219, 0.031], + [0.011, 0.022, 0.002, 0.966], + [0.006, 0.004, 0.787, 0.204], + [0.969, 0.011, 0.003, 0.016], + [0.035, 0.372, 0.181, 0.412], + [0.181, 0.209, 0.555, 0.055], + [0.032, 0.041, 0.002, 0.925], + [0.302, 0.668, 0.004, 0.025], + [0.982, 0.0, 0.014, 0.004], + [0.032, 0.198, 0.096, 0.674], + ], + PRDM1: [ + [0.866, 0.005, 0.087, 0.043], + [0.254, 0.024, 0.616, 0.107], + [0.204, 0.139, 0.359, 0.298], + [0.112, 0.005, 0.882, 0.0], + [0.971, 0.029, 0.0, 0.0], + [0.672, 0.007, 0.314, 0.007], + [0.98, 0.006, 0.002, 0.012], + [0.001, 0.002, 0.997, 0.0], + [0.0, 0.086, 0.225, 0.689], + ], + ELF1: [ + [0.056, 0.706, 0.223, 0.016], + [0.468, 0.491, 0.041, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.002, 0.998, 0.0], + [0.97, 0.019, 0.008, 0.004], + [0.961, 0.013, 0.005, 0.02], + [0.128, 0.076, 0.792, 0.004], + ], + ZSCAN22: [ + [0.143, 0.015, 0.836, 0.006], + [0.843, 0.025, 0.071, 0.062], + [0.175, 0.08, 0.436, 0.309], + [0.128, 0.01, 0.853, 0.009], + [0.035, 0.001, 0.954, 0.01], + [0.542, 0.173, 0.121, 0.164], + [0.17, 0.0, 0.827, 0.002], + [0.001, 0.0, 0.987, 0.012], + [0.808, 0.102, 0.025, 0.065], + [0.09, 0.002, 0.904, 0.004], + [0.053, 0.015, 0.905, 0.027], + ], + ETS1: [ + [0.133, 0.645, 0.2, 0.021], + [0.614, 0.335, 0.047, 0.004], + [0.004, 0.0, 0.956, 0.04], + [0.0, 0.0, 0.999, 0.001], + [0.965, 0.0, 0.007, 0.028], + [0.795, 0.018, 0.025, 0.162], + [0.324, 0.02, 0.647, 0.009], + [0.052, 0.298, 0.116, 0.534], + ], + TFEB: [ + [0.37, 0.147, 0.407, 0.077], + [0.077, 0.129, 0.198, 0.596], + [0.0, 0.998, 0.0, 0.001], + [0.929, 0.033, 0.0, 0.037], + [0.002, 0.796, 0.0, 0.202], + [0.275, 0.0, 0.725, 0.0], + [0.123, 0.078, 0.042, 0.757], + [0.014, 0.0, 0.959, 0.026], + ], + ZNF76: [ + [0.128, 0.272, 0.529, 0.071], + [0.154, 0.502, 0.215, 0.129], + [0.358, 0.146, 0.367, 0.129], + [0.267, 0.108, 0.499, 0.126], + [0.263, 0.109, 0.466, 0.161], + [0.038, 0.01, 0.908, 0.044], + [0.168, 0.344, 0.454, 0.034], + [0.424, 0.294, 0.154, 0.129], + [0.082, 0.194, 0.141, 0.583], + [0.039, 0.187, 0.403, 0.371], + [0.163, 0.576, 0.178, 0.082], + [0.039, 0.301, 0.018, 0.642], + [0.004, 0.043, 0.946, 0.007], + [0.005, 0.03, 0.958, 0.007], + [0.005, 0.002, 0.978, 0.014], + [0.757, 0.027, 0.054, 0.163], + [0.51, 0.136, 0.266, 0.088], + ], + YY2: [ + [0.587, 0.069, 0.289, 0.055], + [0.513, 0.231, 0.115, 0.14], + [0.285, 0.324, 0.324, 0.067], + [0.999, 0.0, 0.001, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.0, 0.0, 1.0, 0.0], + [0.003, 0.011, 0.98, 0.006], + [0.063, 0.924, 0.0, 0.013], + [0.078, 0.146, 0.62, 0.157], + [0.066, 0.092, 0.781, 0.061], + [0.143, 0.65, 0.12, 0.088], + ], + TP63: [ + [0.025, 0.809, 0.04, 0.126], + [0.505, 0.169, 0.153, 0.174], + [0.225, 0.039, 0.109, 0.627], + [0.006, 0.002, 0.991, 0.001], + [0.091, 0.351, 0.04, 0.518], + [0.169, 0.385, 0.115, 0.332], + [0.153, 0.334, 0.221, 0.292], + [0.281, 0.205, 0.332, 0.182], + [0.3, 0.137, 0.376, 0.187], + [0.504, 0.035, 0.329, 0.132], + [0.002, 0.986, 0.005, 0.008], + [0.511, 0.14, 0.027, 0.322], + [0.12, 0.089, 0.094, 0.697], + [0.013, 0.003, 0.983, 0.001], + [0.14, 0.425, 0.036, 0.399], + ], + KLF16: [ + [0.077, 0.072, 0.671, 0.18], + [0.105, 0.752, 0.074, 0.068], + [0.085, 0.667, 0.029, 0.219], + [0.24, 0.74, 0.004, 0.017], + [0.0, 0.985, 0.004, 0.012], + [0.103, 0.001, 0.795, 0.101], + [0.0, 1.0, 0.0, 0.0], + [0.007, 0.984, 0.007, 0.002], + [0.031, 0.824, 0.013, 0.132], + [0.167, 0.703, 0.022, 0.108], + [0.031, 0.635, 0.035, 0.299], + ], + ZIC2: [ + [0.117, 0.832, 0.049, 0.002], + [0.306, 0.189, 0.321, 0.184], + [0.002, 0.988, 0.006, 0.003], + [0.475, 0.323, 0.093, 0.109], + [0.087, 0.142, 0.77, 0.0], + [0.001, 0.933, 0.008, 0.059], + [0.543, 0.004, 0.433, 0.021], + [0.01, 0.008, 0.947, 0.035], + [0.005, 0.006, 0.982, 0.007], + [0.262, 0.071, 0.562, 0.106], + [0.133, 0.104, 0.692, 0.07], + [0.092, 0.096, 0.692, 0.119], + [0.011, 0.482, 0.237, 0.27], + [0.131, 0.569, 0.21, 0.09], + ], + ZBTB18: [ + [0.102, 0.78, 0.117, 0.0], + [0.0, 0.999, 0.001, 0.0], + [0.994, 0.001, 0.001, 0.005], + [0.0, 0.0, 1.0, 0.0], + [0.571, 0.423, 0.001, 0.005], + [0.003, 0.005, 0.054, 0.938], + [0.0, 0.0, 1.0, 0.0], + [0.007, 0.244, 0.003, 0.746], + [0.033, 0.054, 0.566, 0.346], + ], + FOXM1: [ + [0.042, 0.028, 0.026, 0.904], + [0.196, 0.003, 0.801, 0.0], + [0.017, 0.078, 0.0, 0.905], + [0.005, 0.0, 0.08, 0.914], + [0.004, 0.0, 0.24, 0.756], + [0.61, 0.069, 0.279, 0.043], + [0.019, 0.828, 0.017, 0.135], + [0.297, 0.137, 0.094, 0.472], + [0.04, 0.314, 0.142, 0.504], + [0.404, 0.079, 0.072, 0.444], + ], + TEAD4: [ + [0.422, 0.003, 0.567, 0.008], + [0.2, 0.729, 0.071, 0.0], + [0.951, 0.002, 0.047, 0.0], + [0.0, 0.0, 0.028, 0.972], + [0.054, 0.006, 0.081, 0.859], + [0.001, 0.977, 0.012, 0.01], + [0.013, 0.729, 0.039, 0.219], + [0.251, 0.218, 0.053, 0.478], + ], + HNF1B: [ + [0.19, 0.03, 0.713, 0.067], + [0.035, 0.081, 0.05, 0.833], + [0.142, 0.074, 0.052, 0.732], + [0.941, 0.001, 0.044, 0.013], + [0.823, 0.098, 0.012, 0.067], + [0.151, 0.039, 0.007, 0.804], + [0.207, 0.293, 0.28, 0.22], + [0.839, 0.003, 0.027, 0.131], + [0.047, 0.007, 0.066, 0.88], + [0.018, 0.035, 0.002, 0.946], + [0.714, 0.051, 0.093, 0.142], + [0.751, 0.103, 0.085, 0.061], + [0.115, 0.596, 0.039, 0.25], + ], + FOXA1: [ + [0.387, 0.112, 0.096, 0.405], + [0.462, 0.141, 0.199, 0.198], + [0.318, 0.029, 0.101, 0.551], + [0.065, 0.001, 0.934, 0.001], + [0.004, 0.0, 0.004, 0.992], + [0.692, 0.307, 0.0, 0.001], + [0.828, 0.168, 0.0, 0.004], + [0.991, 0.0, 0.005, 0.004], + [0.0, 0.629, 0.001, 0.37], + [0.951, 0.01, 0.014, 0.026], + ], + STAT2: [ + [0.569, 0.053, 0.265, 0.113], + [0.009, 0.325, 0.614, 0.052], + [0.0, 0.02, 0.031, 0.949], + [0.024, 0.007, 0.004, 0.965], + [0.044, 0.225, 0.063, 0.668], + [0.002, 0.901, 0.004, 0.094], + [0.289, 0.131, 0.321, 0.259], + [0.101, 0.301, 0.194, 0.404], + [0.011, 0.05, 0.086, 0.853], + [0.085, 0.066, 0.058, 0.791], + [0.056, 0.292, 0.053, 0.6], + [0.096, 0.516, 0.076, 0.312], + [0.178, 0.361, 0.063, 0.399], + ], + ZNF322: [ + [0.122, 0.119, 0.692, 0.068], + [0.432, 0.096, 0.183, 0.289], + [0.096, 0.072, 0.699, 0.133], + [0.187, 0.648, 0.027, 0.138], + [0.047, 0.91, 0.015, 0.029], + [0.067, 0.098, 0.022, 0.813], + [0.353, 0.031, 0.559, 0.057], + [0.086, 0.331, 0.525, 0.058], + [0.111, 0.143, 0.062, 0.683], + [0.806, 0.118, 0.029, 0.047], + [0.003, 0.99, 0.002, 0.005], + [0.451, 0.059, 0.137, 0.353], + [0.029, 0.355, 0.598, 0.018], + [0.413, 0.085, 0.091, 0.411], + [0.047, 0.021, 0.875, 0.058], + [0.055, 0.815, 0.031, 0.099], + [0.114, 0.751, 0.047, 0.088], + [0.103, 0.104, 0.137, 0.656], + [0.074, 0.108, 0.694, 0.124], + ], + ZBTB7B: [ + [0.193, 0.094, 0.621, 0.092], + [0.083, 0.158, 0.187, 0.573], + [0.141, 0.231, 0.026, 0.603], + [0.146, 0.185, 0.413, 0.257], + [0.086, 0.574, 0.181, 0.159], + [0.037, 0.776, 0.053, 0.133], + [0.492, 0.259, 0.084, 0.164], + [0.139, 0.133, 0.172, 0.557], + [0.223, 0.043, 0.688, 0.046], + [0.085, 0.041, 0.829, 0.044], + [0.149, 0.587, 0.126, 0.138], + [0.632, 0.08, 0.23, 0.058], + [0.876, 0.034, 0.077, 0.013], + [0.068, 0.841, 0.046, 0.045], + ], + HIF1A: [ + [0.713, 0.046, 0.211, 0.03], + [0.0, 0.979, 0.005, 0.017], + [0.012, 0.057, 0.928, 0.003], + [0.004, 0.027, 0.006, 0.963], + [0.0, 0.009, 0.989, 0.002], + ], + EBF3: [ + [0.055, 0.296, 0.061, 0.588], + [0.002, 0.99, 0.007, 0.0], + [0.03, 0.743, 0.004, 0.223], + [0.023, 0.891, 0.008, 0.078], + [0.26, 0.311, 0.072, 0.357], + [0.337, 0.055, 0.318, 0.289], + [0.038, 0.002, 0.953, 0.007], + [0.143, 0.001, 0.854, 0.001], + [0.0, 0.001, 0.998, 0.0], + [0.715, 0.055, 0.195, 0.036], + ], + ZNF148: [ + [0.184, 0.133, 0.554, 0.128], + [0.158, 0.139, 0.524, 0.179], + [0.176, 0.152, 0.136, 0.535], + [0.012, 0.007, 0.981, 0.001], + [0.001, 0.016, 0.974, 0.009], + [0.036, 0.001, 0.963, 0.0], + [0.001, 0.001, 0.99, 0.007], + [0.002, 0.0, 0.997, 0.001], + [0.608, 0.231, 0.008, 0.153], + [0.129, 0.002, 0.735, 0.133], + [0.005, 0.009, 0.976, 0.01], + [0.032, 0.018, 0.916, 0.034], + [0.046, 0.017, 0.906, 0.032], + ], + HNF4A: [ + [0.518, 0.053, 0.286, 0.143], + [0.101, 0.023, 0.812, 0.065], + [0.194, 0.049, 0.394, 0.363], + [0.16, 0.315, 0.221, 0.305], + [0.003, 0.886, 0.029, 0.082], + [0.92, 0.006, 0.069, 0.005], + [0.859, 0.027, 0.086, 0.029], + [0.865, 0.017, 0.101, 0.017], + [0.034, 0.037, 0.919, 0.01], + [0.074, 0.02, 0.444, 0.461], + [0.052, 0.366, 0.153, 0.429], + [0.051, 0.708, 0.041, 0.201], + [0.573, 0.147, 0.151, 0.129], + ], + ATF1: [ + [0.068, 0.204, 0.063, 0.665], + [0.031, 0.304, 0.432, 0.234], + [0.861, 0.004, 0.082, 0.053], + [0.002, 0.783, 0.091, 0.124], + [0.195, 0.04, 0.755, 0.01], + [0.026, 0.0, 0.006, 0.968], + [0.109, 0.623, 0.265, 0.004], + [0.873, 0.021, 0.089, 0.017], + [0.029, 0.514, 0.173, 0.284], + ], + POU5F1: [ + [0.552, 0.188, 0.076, 0.184], + [0.065, 0.041, 0.085, 0.809], + [0.095, 0.22, 0.083, 0.602], + [0.282, 0.143, 0.015, 0.56], + [0.243, 0.139, 0.584, 0.035], + [0.205, 0.734, 0.039, 0.022], + [0.803, 0.001, 0.17, 0.026], + [0.163, 0.089, 0.118, 0.629], + [0.327, 0.191, 0.299, 0.183], + [0.523, 0.029, 0.087, 0.361], + [0.069, 0.482, 0.334, 0.116], + [0.895, 0.0, 0.023, 0.082], + [0.828, 0.016, 0.151, 0.005], + [0.485, 0.083, 0.058, 0.374], + [0.34, 0.111, 0.471, 0.078], + [0.26, 0.158, 0.506, 0.075], + ], + FEZF1: [ + [0.325, 0.112, 0.472, 0.092], + [0.219, 0.314, 0.09, 0.376], + [0.073, 0.117, 0.099, 0.711], + [0.122, 0.002, 0.773, 0.103], + [0.019, 0.374, 0.462, 0.146], + [0.001, 0.469, 0.019, 0.511], + [0.008, 0.986, 0.004, 0.002], + [0.342, 0.097, 0.01, 0.551], + [0.015, 0.207, 0.007, 0.771], + [0.013, 0.006, 0.002, 0.978], + [0.019, 0.06, 0.012, 0.909], + ], + ESR2: [ + [0.416, 0.148, 0.379, 0.056], + [0.095, 0.0, 0.835, 0.07], + [0.047, 0.004, 0.949, 0.0], + [0.057, 0.098, 0.237, 0.609], + [0.0, 0.763, 0.115, 0.122], + [0.685, 0.058, 0.195, 0.062], + [0.141, 0.52, 0.21, 0.13], + [0.145, 0.384, 0.325, 0.146], + [0.151, 0.233, 0.449, 0.167], + [0.11, 0.416, 0.002, 0.472], + [0.119, 0.001, 0.874, 0.006], + [0.213, 0.328, 0.236, 0.223], + [0.052, 0.679, 0.036, 0.233], + [0.047, 0.854, 0.018, 0.081], + [0.058, 0.398, 0.15, 0.393], + ], + TCF4: [ + [0.231, 0.459, 0.31, 0.0], + [0.572, 0.185, 0.069, 0.175], + [0.001, 0.999, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.39, 0.604, 0.006], + [0.028, 0.607, 0.364, 0.0], + [0.0, 0.006, 0.0, 0.994], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.311, 0.195, 0.494], + ], + GABPA: [ + [0.089, 0.713, 0.186, 0.012], + [0.588, 0.386, 0.023, 0.003], + [0.002, 0.0, 0.998, 0.0], + [0.0, 0.0, 0.999, 0.0], + [0.998, 0.0, 0.001, 0.001], + [0.922, 0.001, 0.002, 0.075], + [0.194, 0.052, 0.754, 0.0], + [0.083, 0.275, 0.106, 0.537], + ], + KLF12: [ + [0.112, 0.374, 0.457, 0.058], + [0.125, 0.354, 0.422, 0.099], + [0.119, 0.367, 0.394, 0.121], + [0.169, 0.293, 0.433, 0.105], + [0.173, 0.383, 0.341, 0.104], + [0.196, 0.414, 0.302, 0.088], + [0.214, 0.101, 0.457, 0.228], + [0.017, 0.0, 0.983, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.009, 0.905, 0.0, 0.085], + [0.001, 0.001, 0.994, 0.004], + [0.004, 0.014, 0.763, 0.219], + [0.193, 0.04, 0.686, 0.082], + [0.081, 0.079, 0.769, 0.07], + [0.106, 0.698, 0.103, 0.094], + [0.086, 0.569, 0.157, 0.189], + [0.198, 0.249, 0.34, 0.213], + [0.147, 0.288, 0.458, 0.108], + [0.12, 0.283, 0.481, 0.117], + ], + TBX21: [ + [0.106, 0.231, 0.132, 0.531], + [0.042, 0.065, 0.002, 0.891], + [0.373, 0.378, 0.219, 0.03], + [0.765, 0.067, 0.061, 0.107], + [0.007, 0.993, 0.0, 0.0], + [0.968, 0.001, 0.028, 0.004], + [0.05, 0.867, 0.084, 0.0], + [0.1, 0.617, 0.094, 0.189], + [0.082, 0.142, 0.026, 0.749], + ], + MEIS2: [ + [0.17, 0.61, 0.095, 0.125], + [0.0, 0.017, 0.0, 0.982], + [0.002, 0.0, 0.998, 0.0], + [0.014, 0.029, 0.0, 0.957], + [0.0, 1.0, 0.0, 0.0], + [0.933, 0.018, 0.007, 0.042], + ], + FOXP2: [ + [0.009, 0.001, 0.02, 0.97], + [0.076, 0.0, 0.924, 0.0], + [0.024, 0.023, 0.0, 0.953], + [0.023, 0.0, 0.113, 0.865], + [0.0, 0.0, 0.15, 0.85], + [0.841, 0.004, 0.048, 0.108], + [0.015, 0.669, 0.037, 0.279], + ], + USF2: [ + [0.01, 0.98, 0.009, 0.0], + [0.901, 0.022, 0.042, 0.035], + [0.0, 0.767, 0.0, 0.233], + [0.179, 0.003, 0.818, 0.0], + [0.027, 0.023, 0.013, 0.937], + [0.0, 0.006, 0.994, 0.001], + [0.439, 0.157, 0.315, 0.089], + [0.044, 0.553, 0.133, 0.27], + ], + ELK1: [ + [0.532, 0.1, 0.287, 0.081], + [0.005, 0.76, 0.096, 0.14], + [0.047, 0.0, 0.001, 0.952], + [0.001, 0.001, 0.0, 0.998], + [0.0, 0.999, 0.001, 0.0], + [0.0, 0.997, 0.0, 0.003], + [0.001, 0.017, 0.644, 0.338], + [0.022, 0.227, 0.659, 0.092], + ], + E2F6: [ + [0.139, 0.161, 0.685, 0.014], + [0.001, 0.013, 0.985, 0.0], + [0.202, 0.764, 0.007, 0.028], + [0.002, 0.033, 0.962, 0.002], + [0.0, 0.054, 0.946, 0.0], + [0.005, 0.129, 0.837, 0.029], + [0.817, 0.021, 0.133, 0.029], + [0.461, 0.122, 0.383, 0.034], + ], + SOX3: [ + [0.459, 0.248, 0.233, 0.06], + [0.966, 0.016, 0.0, 0.018], + [0.0, 0.933, 0.001, 0.067], + [0.999, 0.001, 0.001, 0.0], + [0.999, 0.0, 0.001, 0.0], + [0.568, 0.016, 0.001, 0.415], + [0.528, 0.005, 0.46, 0.008], + [0.196, 0.043, 0.755, 0.006], + ], + CEBPZ: [ + [0.446, 0.093, 0.391, 0.069], + [0.257, 0.07, 0.564, 0.108], + [0.024, 0.942, 0.013, 0.02], + [0.014, 0.958, 0.021, 0.007], + [0.94, 0.013, 0.003, 0.044], + [0.856, 0.059, 0.058, 0.027], + [0.001, 0.078, 0.044, 0.877], + [0.16, 0.49, 0.318, 0.032], + [0.433, 0.128, 0.409, 0.03], + [0.239, 0.21, 0.452, 0.1], + [0.353, 0.249, 0.243, 0.155], + [0.275, 0.09, 0.471, 0.164], + [0.135, 0.213, 0.513, 0.14], + [0.084, 0.492, 0.267, 0.157], + ], + GRHL2: [ + [0.203, 0.145, 0.531, 0.121], + [0.264, 0.323, 0.152, 0.261], + [0.325, 0.294, 0.166, 0.215], + [0.427, 0.151, 0.217, 0.204], + [0.528, 0.041, 0.229, 0.202], + [0.58, 0.03, 0.181, 0.209], + [0.0, 0.969, 0.03, 0.0], + [0.247, 0.452, 0.023, 0.278], + [0.283, 0.018, 0.453, 0.247], + [0.003, 0.012, 0.985, 0.0], + [0.136, 0.201, 0.019, 0.644], + [0.116, 0.295, 0.041, 0.549], + [0.191, 0.236, 0.147, 0.425], + [0.192, 0.097, 0.401, 0.31], + [0.27, 0.09, 0.377, 0.263], + [0.034, 0.707, 0.084, 0.175], + [0.264, 0.384, 0.105, 0.248], + [0.488, 0.018, 0.332, 0.162], + [0.01, 0.305, 0.655, 0.03], + [0.204, 0.173, 0.097, 0.526], + ], + MYF5: [ + [0.0, 0.979, 0.021, 0.0], + [0.824, 0.052, 0.123, 0.001], + [0.0, 0.133, 0.865, 0.003], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.088, 0.061, 0.851], + [0.0, 0.044, 0.956, 0.0], + [0.0, 0.449, 0.06, 0.49], + [0.0, 0.3, 0.229, 0.471], + ], + DUX4: [ + [0.143, 0.008, 0.025, 0.823], + [0.19, 0.0, 0.81, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.003, 0.001, 0.02, 0.976], + [0.0, 0.005, 0.007, 0.988], + [0.454, 0.001, 0.545, 0.0], + [0.36, 0.206, 0.4, 0.034], + [0.442, 0.073, 0.283, 0.201], + [0.0, 0.0, 0.001, 0.999], + [0.016, 0.22, 0.004, 0.76], + [0.6, 0.062, 0.11, 0.228], + ], + IRF4: [ + [0.562, 0.047, 0.238, 0.153], + [0.575, 0.114, 0.167, 0.145], + [0.302, 0.176, 0.378, 0.143], + [0.345, 0.257, 0.202, 0.197], + [0.226, 0.012, 0.747, 0.015], + [0.477, 0.0, 0.496, 0.027], + [0.871, 0.0, 0.103, 0.026], + [0.907, 0.021, 0.057, 0.016], + [0.071, 0.496, 0.402, 0.03], + [0.108, 0.187, 0.089, 0.615], + [0.144, 0.0, 0.854, 0.002], + [0.774, 0.135, 0.083, 0.008], + [0.63, 0.016, 0.34, 0.013], + [0.855, 0.072, 0.017, 0.056], + ], + PRDM14: [ + [0.035, 0.209, 0.714, 0.042], + [0.069, 0.116, 0.659, 0.156], + [0.173, 0.024, 0.222, 0.581], + [0.023, 0.75, 0.163, 0.064], + [0.071, 0.32, 0.146, 0.463], + [0.009, 0.823, 0.097, 0.071], + [0.063, 0.059, 0.066, 0.811], + [0.896, 0.004, 0.036, 0.065], + [0.691, 0.085, 0.097, 0.128], + [0.063, 0.613, 0.205, 0.12], + ], + PDX1: [ + [0.18, 0.005, 0.025, 0.79], + [0.062, 0.001, 0.916, 0.021], + [0.997, 0.001, 0.0, 0.001], + [0.032, 0.107, 0.055, 0.806], + [0.146, 0.016, 0.135, 0.703], + [0.288, 0.044, 0.628, 0.041], + [0.998, 0.0, 0.002, 0.0], + [0.026, 0.063, 0.089, 0.822], + [0.067, 0.077, 0.509, 0.346], + [0.375, 0.079, 0.415, 0.132], + ], + ZKSCAN1: [ + [0.123, 0.166, 0.628, 0.083], + [0.153, 0.697, 0.039, 0.112], + [0.587, 0.029, 0.288, 0.095], + [0.006, 0.841, 0.133, 0.02], + [0.526, 0.125, 0.216, 0.134], + [0.008, 0.455, 0.09, 0.447], + [0.777, 0.003, 0.082, 0.138], + [0.02, 0.067, 0.908, 0.005], + [0.016, 0.186, 0.0, 0.797], + [0.607, 0.0, 0.261, 0.131], + [0.01, 0.052, 0.717, 0.221], + [0.035, 0.0, 0.877, 0.088], + ], + ZNF816: [ + [0.139, 0.588, 0.11, 0.162], + [0.071, 0.685, 0.103, 0.14], + [0.194, 0.502, 0.076, 0.227], + [0.208, 0.187, 0.203, 0.401], + [0.23, 0.068, 0.489, 0.214], + [0.068, 0.787, 0.07, 0.075], + [0.605, 0.247, 0.076, 0.072], + [0.131, 0.131, 0.169, 0.569], + [0.008, 0.073, 0.839, 0.08], + [0.0, 0.001, 0.004, 0.994], + [0.003, 0.975, 0.004, 0.019], + [0.001, 0.992, 0.006, 0.001], + [0.003, 0.968, 0.02, 0.009], + [0.006, 0.921, 0.018, 0.054], + [0.366, 0.423, 0.069, 0.142], + [0.102, 0.246, 0.144, 0.508], + [0.109, 0.263, 0.153, 0.475], + [0.182, 0.291, 0.127, 0.4], + [0.123, 0.223, 0.197, 0.457], + [0.093, 0.216, 0.178, 0.513], + ], + LEF1: [ + [0.611, 0.086, 0.197, 0.107], + [0.149, 0.203, 0.308, 0.339], + [0.584, 0.091, 0.1, 0.226], + [0.606, 0.0, 0.0, 0.393], + [0.0, 0.973, 0.027, 0.0], + [0.997, 0.0, 0.002, 0.001], + [0.99, 0.007, 0.0, 0.003], + [0.79, 0.015, 0.011, 0.184], + [0.21, 0.033, 0.7, 0.057], + [0.246, 0.129, 0.578, 0.046], + [0.342, 0.301, 0.338, 0.019], + ], + ZNF136: [ + [0.517, 0.114, 0.206, 0.163], + [0.438, 0.117, 0.295, 0.151], + [0.584, 0.107, 0.161, 0.148], + [0.625, 0.108, 0.116, 0.151], + [0.631, 0.114, 0.117, 0.138], + [0.652, 0.079, 0.125, 0.143], + [0.492, 0.109, 0.133, 0.266], + [0.515, 0.165, 0.131, 0.189], + [0.549, 0.134, 0.127, 0.19], + [0.104, 0.581, 0.095, 0.22], + [0.045, 0.035, 0.011, 0.91], + [0.119, 0.038, 0.696, 0.147], + [0.07, 0.37, 0.068, 0.493], + [0.131, 0.736, 0.045, 0.087], + [0.67, 0.136, 0.08, 0.114], + [0.815, 0.005, 0.117, 0.063], + [0.007, 0.966, 0.011, 0.016], + [0.101, 0.643, 0.008, 0.248], + [0.486, 0.132, 0.106, 0.277], + [0.749, 0.067, 0.117, 0.067], + [0.211, 0.015, 0.731, 0.043], + [0.857, 0.073, 0.035, 0.035], + [0.911, 0.036, 0.028, 0.025], + [0.022, 0.034, 0.04, 0.904], + [0.393, 0.088, 0.06, 0.459], + [0.052, 0.682, 0.063, 0.204], + [0.03, 0.057, 0.025, 0.889], + [0.627, 0.033, 0.147, 0.194], + [0.139, 0.053, 0.044, 0.765], + [0.739, 0.046, 0.181, 0.034], + [0.062, 0.347, 0.041, 0.55], + [0.08, 0.651, 0.078, 0.191], + [0.156, 0.721, 0.031, 0.092], + [0.817, 0.024, 0.086, 0.073], + [0.155, 0.063, 0.695, 0.087], + ], + CEBPG: [ + [0.596, 0.099, 0.303, 0.001], + [0.0, 0.0, 0.0, 1.0], + [0.0, 0.0, 0.526, 0.474], + [0.658, 0.0, 0.3, 0.043], + [0.067, 0.214, 0.052, 0.667], + [0.0, 0.005, 0.995, 0.001], + [0.21, 0.568, 0.0, 0.223], + [0.956, 0.044, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.01, 0.206, 0.09, 0.694], + ], + SPDEF: [ + [0.593, 0.036, 0.3, 0.071], + [0.063, 0.489, 0.28, 0.167], + [0.497, 0.022, 0.085, 0.396], + [0.003, 0.003, 0.003, 0.991], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.999, 0.0, 0.0], + [0.0, 0.003, 0.465, 0.533], + [0.007, 0.116, 0.786, 0.092], + [0.118, 0.293, 0.345, 0.244], + [0.234, 0.163, 0.102, 0.501], + ], + ZNF317: [ + [0.5, 0.03, 0.125, 0.345], + [0.349, 0.021, 0.628, 0.002], + [0.003, 0.004, 0.001, 0.993], + [0.056, 0.879, 0.008, 0.058], + [0.504, 0.051, 0.072, 0.373], + [0.038, 0.031, 0.677, 0.253], + [0.067, 0.728, 0.071, 0.134], + [0.235, 0.091, 0.042, 0.631], + [0.041, 0.004, 0.951, 0.004], + [0.151, 0.089, 0.053, 0.707], + [0.109, 0.402, 0.106, 0.384], + [0.357, 0.283, 0.052, 0.307], + [0.288, 0.254, 0.145, 0.313], + [0.138, 0.217, 0.041, 0.604], + [0.09, 0.715, 0.055, 0.14], + [0.089, 0.21, 0.176, 0.525], + ], + CDX2: [ + [0.112, 0.067, 0.065, 0.756], + [0.02, 0.0, 0.0, 0.979], + [0.107, 0.0, 0.0, 0.893], + [0.091, 0.0, 0.001, 0.908], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.127, 0.004, 0.869], + [0.211, 0.028, 0.112, 0.649], + [0.439, 0.0, 0.56, 0.0], + [0.036, 0.875, 0.047, 0.042], + [0.168, 0.345, 0.0, 0.487], + [0.217, 0.275, 0.061, 0.446], + [0.208, 0.201, 0.087, 0.504], + ], + POU2F2: [ + [0.001, 0.321, 0.013, 0.664], + [0.236, 0.053, 0.164, 0.547], + [0.049, 0.211, 0.0, 0.74], + [0.038, 0.026, 0.928, 0.009], + [0.033, 0.967, 0.0, 0.0], + [0.8, 0.061, 0.122, 0.016], + [0.0, 0.229, 0.0, 0.771], + [0.44, 0.048, 0.35, 0.163], + ], + STAT6: [ + [0.029, 0.038, 0.033, 0.9], + [0.077, 0.119, 0.025, 0.779], + [0.103, 0.633, 0.047, 0.217], + [0.356, 0.293, 0.072, 0.279], + [0.383, 0.316, 0.147, 0.154], + [0.476, 0.121, 0.227, 0.177], + [0.287, 0.0, 0.703, 0.01], + [0.221, 0.025, 0.751, 0.003], + [0.979, 0.021, 0.0, 0.0], + [0.975, 0.0, 0.024, 0.001], + [0.325, 0.3, 0.184, 0.191], + [0.175, 0.056, 0.096, 0.673], + ], + SP2: [ + [0.24, 0.142, 0.526, 0.092], + [0.245, 0.037, 0.622, 0.096], + [0.3, 0.015, 0.686, 0.0], + [0.002, 0.004, 0.994, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.182, 0.794, 0.0, 0.024], + [0.0, 0.001, 0.997, 0.002], + [0.0, 0.01, 0.933, 0.057], + [0.05, 0.031, 0.873, 0.046], + ], + RUNX2: [ + [0.067, 0.128, 0.011, 0.794], + [0.001, 0.001, 0.997, 0.001], + [0.011, 0.124, 0.0, 0.865], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.087, 0.162, 0.75], + [0.092, 0.338, 0.139, 0.43], + [0.425, 0.043, 0.213, 0.318], + ], + SIX2: [ + [0.231, 0.04, 0.254, 0.476], + [0.023, 0.003, 0.954, 0.02], + [0.469, 0.065, 0.101, 0.365], + [0.841, 0.087, 0.006, 0.065], + [0.998, 0.0, 0.0, 0.001], + [0.047, 0.446, 0.06, 0.447], + [0.235, 0.332, 0.087, 0.345], + [0.099, 0.172, 0.101, 0.627], + [0.165, 0.002, 0.725, 0.108], + [0.996, 0.0, 0.003, 0.0], + [0.059, 0.107, 0.324, 0.509], + [0.502, 0.44, 0.024, 0.035], + [0.116, 0.494, 0.07, 0.32], + ], + MYCN: [ + [0.052, 0.464, 0.376, 0.108], + [0.128, 0.859, 0.011, 0.003], + [0.825, 0.025, 0.066, 0.084], + [0.006, 0.795, 0.095, 0.104], + [0.53, 0.054, 0.412, 0.004], + [0.065, 0.013, 0.001, 0.921], + [0.0, 0.006, 0.989, 0.004], + [0.03, 0.212, 0.639, 0.118], + [0.093, 0.435, 0.13, 0.342], + ], + NR1H4: [ + [0.584, 0.061, 0.326, 0.029], + [0.029, 0.0, 0.907, 0.064], + [0.01, 0.006, 0.838, 0.146], + [0.04, 0.112, 0.14, 0.708], + [0.0, 0.876, 0.03, 0.095], + [0.873, 0.03, 0.08, 0.017], + [0.227, 0.237, 0.193, 0.343], + [0.055, 0.094, 0.044, 0.807], + [0.104, 0.119, 0.763, 0.015], + [0.623, 0.19, 0.12, 0.068], + [0.165, 0.772, 0.012, 0.05], + [0.072, 0.845, 0.008, 0.075], + [0.038, 0.336, 0.071, 0.555], + ], + CENPA: [ + [0.028, 0.102, 0.083, 0.787], + [0.088, 0.115, 0.005, 0.792], + [0.045, 0.011, 0.071, 0.873], + [0.102, 0.784, 0.097, 0.017], + [0.136, 0.076, 0.766, 0.023], + [0.142, 0.038, 0.01, 0.811], + [0.08, 0.018, 0.091, 0.811], + [0.025, 0.001, 0.895, 0.079], + [0.136, 0.068, 0.775, 0.02], + [0.909, 0.005, 0.038, 0.048], + [0.862, 0.024, 0.076, 0.039], + [0.792, 0.002, 0.058, 0.148], + [0.022, 0.834, 0.061, 0.083], + [0.045, 0.11, 0.747, 0.098], + [0.086, 0.001, 0.866, 0.048], + [0.044, 0.011, 0.854, 0.091], + [0.751, 0.011, 0.129, 0.109], + [0.102, 0.001, 0.01, 0.887], + [0.321, 0.071, 0.042, 0.566], + [0.455, 0.006, 0.35, 0.189], + [0.103, 0.581, 0.049, 0.267], + [0.271, 0.356, 0.05, 0.323], + [0.034, 0.186, 0.045, 0.734], + [0.313, 0.208, 0.032, 0.447], + ], + VDR: [ + [0.517, 0.018, 0.448, 0.017], + [0.07, 0.006, 0.866, 0.058], + [0.03, 0.004, 0.797, 0.169], + [0.022, 0.076, 0.163, 0.739], + [0.063, 0.728, 0.111, 0.098], + [0.828, 0.037, 0.105, 0.029], + [0.227, 0.297, 0.259, 0.216], + [0.226, 0.215, 0.204, 0.355], + [0.227, 0.088, 0.653, 0.031], + [0.571, 0.006, 0.417, 0.007], + [0.009, 0.0, 0.985, 0.006], + [0.014, 0.002, 0.456, 0.527], + [0.085, 0.115, 0.179, 0.621], + [0.017, 0.758, 0.05, 0.175], + [0.649, 0.065, 0.198, 0.089], + ], + RFX5: [ + [0.005, 0.837, 0.079, 0.079], + [0.243, 0.414, 0.223, 0.12], + [0.027, 0.338, 0.004, 0.631], + [0.383, 0.113, 0.44, 0.063], + [0.063, 0.049, 0.888, 0.0], + [0.033, 0.81, 0.033, 0.124], + [0.643, 0.116, 0.24, 0.001], + [0.723, 0.0, 0.27, 0.006], + [0.0, 0.996, 0.001, 0.003], + ], + ETV4: [ + [0.179, 0.501, 0.262, 0.057], + [0.734, 0.194, 0.058, 0.013], + [0.002, 0.001, 0.984, 0.014], + [0.0, 0.024, 0.974, 0.002], + [0.972, 0.019, 0.006, 0.003], + [0.735, 0.038, 0.055, 0.172], + [0.325, 0.075, 0.584, 0.016], + [0.075, 0.179, 0.117, 0.628], + [0.263, 0.08, 0.516, 0.141], + [0.502, 0.243, 0.13, 0.125], + ], + REST: [ + [0.06, 0.783, 0.048, 0.108], + [0.833, 0.051, 0.081, 0.035], + [0.057, 0.058, 0.864, 0.021], + [0.099, 0.544, 0.218, 0.139], + [0.94, 0.018, 0.034, 0.008], + [0.011, 0.942, 0.018, 0.029], + [0.028, 0.866, 0.06, 0.045], + [0.504, 0.157, 0.097, 0.241], + [0.125, 0.182, 0.06, 0.633], + [0.008, 0.0, 0.992, 0.0], + [0.009, 0.0, 0.991, 0.0], + [0.946, 0.037, 0.002, 0.015], + [0.003, 0.831, 0.119, 0.047], + [0.999, 0.0, 0.001, 0.0], + [0.011, 0.001, 0.987, 0.002], + [0.109, 0.688, 0.064, 0.139], + [0.202, 0.013, 0.402, 0.382], + [0.096, 0.697, 0.144, 0.062], + [0.084, 0.759, 0.011, 0.146], + ], + FOSL2: [ + [0.438, 0.197, 0.319, 0.046], + [0.0, 0.004, 0.0, 0.996], + [0.0, 0.0, 0.987, 0.013], + [1.0, 0.0, 0.0, 0.0], + [0.026, 0.475, 0.393, 0.106], + [0.021, 0.0, 0.002, 0.977], + [0.112, 0.888, 0.0, 0.0], + [0.996, 0.0, 0.004, 0.0], + [0.049, 0.297, 0.214, 0.44], + ], + GATA2: [ + [0.687, 0.023, 0.005, 0.285], + [0.0, 0.0, 1.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.939, 0.0, 0.0, 0.061], + [0.884, 0.008, 0.086, 0.021], + ], + BATF3: [ + [0.53, 0.038, 0.285, 0.147], + [0.043, 0.406, 0.513, 0.039], + [0.0, 0.012, 0.001, 0.986], + [0.104, 0.086, 0.01, 0.8], + [0.001, 0.142, 0.022, 0.835], + [0.055, 0.68, 0.084, 0.181], + [0.449, 0.051, 0.332, 0.168], + [0.338, 0.145, 0.165, 0.352], + [0.28, 0.02, 0.123, 0.578], + [0.544, 0.098, 0.02, 0.338], + [0.013, 0.037, 0.019, 0.931], + [0.019, 0.089, 0.659, 0.233], + [0.892, 0.041, 0.014, 0.052], + ], + MEF2A: [ + [0.06, 0.7, 0.039, 0.201], + [0.0, 0.021, 0.0, 0.979], + [0.944, 0.002, 0.012, 0.043], + [0.152, 0.001, 0.0, 0.846], + [0.206, 0.008, 0.005, 0.78], + [0.136, 0.044, 0.001, 0.819], + [0.277, 0.073, 0.014, 0.635], + [0.151, 0.034, 0.074, 0.741], + [0.675, 0.001, 0.321, 0.003], + [0.165, 0.053, 0.641, 0.142], + ], + KLF5: [ + [0.134, 0.009, 0.79, 0.067], + [0.086, 0.823, 0.049, 0.042], + [0.007, 0.931, 0.004, 0.058], + [0.321, 0.575, 0.068, 0.036], + [0.001, 0.996, 0.0, 0.003], + [0.317, 0.0, 0.575, 0.108], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.999, 0.001, 0.0], + [0.0, 0.896, 0.001, 0.103], + ], + LHX9: [ + [0.004, 0.519, 0.0, 0.477], + [0.841, 0.109, 0.008, 0.042], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.0, 0.014, 0.0, 0.986], + [0.983, 0.0, 0.0, 0.017], + ], + TCF12: [ + [0.276, 0.388, 0.311, 0.025], + [0.0, 0.988, 0.012, 0.0], + [0.932, 0.032, 0.033, 0.002], + [0.0, 0.195, 0.764, 0.041], + [0.008, 0.796, 0.196, 0.0], + [0.001, 0.025, 0.037, 0.938], + [0.0, 0.001, 0.999, 0.0], + [0.022, 0.474, 0.285, 0.22], + ], + NFE2: [ + [0.153, 0.121, 0.091, 0.635], + [0.063, 0.067, 0.745, 0.125], + [0.079, 0.724, 0.129, 0.069], + [0.162, 0.257, 0.019, 0.563], + [0.192, 0.134, 0.509, 0.165], + [0.681, 0.062, 0.036, 0.221], + [0.073, 0.104, 0.794, 0.028], + [0.0, 0.003, 0.0, 0.997], + [0.011, 0.989, 0.0, 0.0], + [0.988, 0.011, 0.001, 0.001], + [0.006, 0.278, 0.063, 0.653], + ], + SOX17: [ + [0.045, 0.78, 0.061, 0.115], + [0.679, 0.01, 0.007, 0.304], + [0.0, 0.005, 0.001, 0.993], + [0.001, 0.0, 0.0, 0.999], + [0.022, 0.086, 0.892, 0.0], + [0.076, 0.002, 0.002, 0.921], + [0.383, 0.179, 0.101, 0.338], + [0.092, 0.14, 0.021, 0.746], + [0.107, 0.077, 0.367, 0.449], + ], + ZNF708: [ + [0.132, 0.101, 0.582, 0.185], + [0.177, 0.166, 0.45, 0.207], + [0.859, 0.022, 0.116, 0.003], + [0.008, 0.02, 0.972, 0.0], + [0.046, 0.064, 0.885, 0.005], + [0.018, 0.367, 0.016, 0.599], + [0.881, 0.007, 0.103, 0.009], + [0.02, 0.911, 0.03, 0.04], + [0.711, 0.02, 0.255, 0.014], + [0.005, 0.004, 0.96, 0.031], + [0.053, 0.876, 0.007, 0.064], + ], + NFE2L1: [ + [0.17, 0.172, 0.116, 0.541], + [0.094, 0.144, 0.682, 0.08], + [0.142, 0.692, 0.107, 0.058], + [0.084, 0.157, 0.066, 0.693], + [0.095, 0.058, 0.69, 0.157], + [0.784, 0.075, 0.024, 0.117], + [0.09, 0.156, 0.704, 0.051], + [0.021, 0.018, 0.031, 0.931], + [0.055, 0.914, 0.009, 0.022], + [0.904, 0.036, 0.049, 0.011], + [0.018, 0.286, 0.106, 0.59], + ], + ARNT: [ + [0.653, 0.04, 0.278, 0.028], + [0.0, 0.968, 0.001, 0.031], + [0.025, 0.001, 0.973, 0.002], + [0.0, 0.013, 0.0, 0.987], + [0.0, 0.001, 0.996, 0.003], + [0.223, 0.541, 0.118, 0.118], + ], + MITF: [ + [0.494, 0.076, 0.392, 0.039], + [0.064, 0.216, 0.076, 0.644], + [0.0, 0.999, 0.0, 0.0], + [0.847, 0.013, 0.008, 0.133], + [0.0, 0.725, 0.0, 0.275], + [0.234, 0.011, 0.755, 0.0], + [0.009, 0.0, 0.003, 0.987], + [0.0, 0.0, 1.0, 0.0], + [0.882, 0.036, 0.059, 0.023], + [0.006, 0.489, 0.033, 0.472], + ], + PGR: [ + [0.441, 0.031, 0.372, 0.155], + [0.139, 0.015, 0.723, 0.123], + [0.341, 0.148, 0.298, 0.212], + [0.854, 0.012, 0.041, 0.093], + [0.002, 0.912, 0.04, 0.047], + [0.65, 0.02, 0.138, 0.193], + [0.155, 0.202, 0.133, 0.511], + [0.198, 0.285, 0.168, 0.35], + [0.169, 0.422, 0.206, 0.203], + [0.157, 0.096, 0.022, 0.725], + [0.039, 0.033, 0.919, 0.009], + [0.084, 0.046, 0.036, 0.834], + [0.184, 0.309, 0.142, 0.364], + [0.1, 0.729, 0.017, 0.154], + [0.148, 0.37, 0.049, 0.433], + ], + EGR2: [ + [0.156, 0.186, 0.606, 0.052], + [0.201, 0.362, 0.137, 0.301], + [0.0, 0.0, 1.0, 0.0], + [0.009, 0.046, 0.221, 0.724], + [0.059, 0.0, 0.939, 0.002], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.198, 0.411, 0.004, 0.387], + [0.028, 0.011, 0.931, 0.029], + [0.084, 0.1, 0.58, 0.236], + ], + ZNF354A: [ + [0.073, 0.341, 0.121, 0.464], + [0.08, 0.565, 0.1, 0.255], + [0.08, 0.177, 0.069, 0.673], + [0.069, 0.1, 0.048, 0.784], + [0.082, 0.08, 0.048, 0.79], + [0.087, 0.072, 0.052, 0.79], + [0.586, 0.074, 0.169, 0.171], + [0.668, 0.048, 0.13, 0.154], + [0.163, 0.143, 0.061, 0.633], + [0.156, 0.061, 0.069, 0.714], + [0.2, 0.056, 0.573, 0.171], + [0.204, 0.054, 0.592, 0.15], + [0.421, 0.085, 0.252, 0.243], + [0.336, 0.043, 0.523, 0.098], + [0.284, 0.087, 0.067, 0.562], + [0.438, 0.046, 0.41, 0.106], + [0.05, 0.059, 0.059, 0.833], + [0.024, 0.035, 0.039, 0.902], + [0.009, 0.017, 0.022, 0.952], + [0.843, 0.024, 0.085, 0.048], + [0.233, 0.013, 0.685, 0.07], + [0.402, 0.083, 0.143, 0.372], + [0.067, 0.75, 0.035, 0.148], + [0.009, 0.92, 0.011, 0.061], + [0.904, 0.03, 0.048, 0.017], + [0.007, 0.046, 0.013, 0.935], + [0.002, 0.0, 0.022, 0.976], + [0.02, 0.076, 0.013, 0.891], + [0.963, 0.0, 0.033, 0.004], + [0.026, 0.721, 0.004, 0.248], + [0.887, 0.009, 0.1, 0.004], + [0.007, 0.031, 0.015, 0.948], + [0.0, 0.011, 0.033, 0.956], + [0.002, 0.017, 0.022, 0.959], + [0.974, 0.002, 0.015, 0.009], + [0.675, 0.013, 0.166, 0.146], + [0.044, 0.015, 0.002, 0.939], + [0.122, 0.007, 0.861, 0.011], + [0.009, 0.078, 0.052, 0.861], + [0.734, 0.009, 0.196, 0.061], + [0.841, 0.041, 0.098, 0.02], + [0.059, 0.033, 0.015, 0.893], + [0.1, 0.081, 0.054, 0.765], + [0.717, 0.033, 0.129, 0.122], + [0.065, 0.248, 0.044, 0.643], + [0.083, 0.109, 0.085, 0.723], + [0.279, 0.041, 0.595, 0.085], + [0.662, 0.096, 0.111, 0.131], + [0.129, 0.102, 0.068, 0.702], + [0.721, 0.033, 0.124, 0.122], + [0.198, 0.078, 0.083, 0.641], + [0.32, 0.046, 0.479, 0.155], + [0.172, 0.076, 0.353, 0.399], + [0.181, 0.107, 0.102, 0.61], + [0.288, 0.044, 0.144, 0.525], + [0.27, 0.076, 0.497, 0.157], + [0.237, 0.057, 0.497, 0.209], + [0.414, 0.081, 0.285, 0.22], + [0.111, 0.214, 0.081, 0.595], + [0.126, 0.05, 0.057, 0.767], + [0.157, 0.061, 0.092, 0.691], + [0.599, 0.094, 0.109, 0.198], + ], + ZBTB12: [ + [0.081, 0.345, 0.103, 0.471], + [0.033, 0.807, 0.067, 0.093], + [0.068, 0.104, 0.12, 0.708], + [0.761, 0.006, 0.233, 0.0], + [0.001, 0.0, 0.998, 0.001], + [0.962, 0.021, 0.007, 0.01], + [0.919, 0.007, 0.06, 0.014], + [0.002, 0.985, 0.001, 0.012], + [0.245, 0.53, 0.097, 0.129], + ], + SPI1: [ + [0.523, 0.082, 0.211, 0.183], + [0.535, 0.071, 0.251, 0.143], + [0.481, 0.047, 0.219, 0.254], + [0.265, 0.093, 0.589, 0.054], + [0.613, 0.045, 0.323, 0.02], + [0.07, 0.0, 0.93, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.999, 0.0, 0.0, 0.001], + [0.991, 0.0, 0.0, 0.009], + [0.074, 0.159, 0.764, 0.003], + [0.142, 0.055, 0.047, 0.756], + [0.048, 0.23, 0.687, 0.035], + ], + AHR: [ + [0.198, 0.027, 0.495, 0.28], + [0.014, 0.984, 0.0, 0.001], + [0.994, 0.0, 0.0, 0.006], + [0.001, 0.77, 0.031, 0.198], + [0.019, 0.0, 0.98, 0.0], + [0.173, 0.656, 0.114, 0.058], + [0.564, 0.147, 0.145, 0.144], + [0.516, 0.222, 0.129, 0.133], + ], + CTCF: [ + [0.091, 0.799, 0.061, 0.05], + [0.038, 0.95, 0.008, 0.004], + [0.612, 0.028, 0.176, 0.184], + [0.051, 0.561, 0.357, 0.03], + [0.169, 0.403, 0.085, 0.344], + [0.718, 0.033, 0.166, 0.084], + [0.01, 0.014, 0.958, 0.018], + [0.295, 0.007, 0.684, 0.013], + [0.114, 0.044, 0.558, 0.284], + [0.017, 0.021, 0.934, 0.028], + [0.055, 0.096, 0.752, 0.097], + [0.191, 0.617, 0.073, 0.12], + [0.315, 0.127, 0.461, 0.097], + ], + GATA6: [ + [0.641, 0.026, 0.0, 0.333], + [0.0, 0.0, 1.0, 0.0], + [0.972, 0.0, 0.003, 0.025], + [0.001, 0.006, 0.003, 0.989], + [0.973, 0.001, 0.0, 0.026], + [0.902, 0.016, 0.038, 0.045], + [0.301, 0.096, 0.555, 0.048], + [0.35, 0.221, 0.406, 0.023], + ], + MAFK: [ + [0.192, 0.213, 0.091, 0.504], + [0.246, 0.143, 0.407, 0.204], + [0.597, 0.101, 0.124, 0.179], + [0.193, 0.293, 0.458, 0.056], + [0.02, 0.003, 0.001, 0.976], + [0.061, 0.931, 0.0, 0.007], + [0.974, 0.002, 0.019, 0.005], + [0.007, 0.001, 0.863, 0.129], + [0.0, 0.991, 0.007, 0.001], + [0.857, 0.018, 0.036, 0.089], + [0.367, 0.164, 0.175, 0.294], + [0.396, 0.059, 0.063, 0.482], + [0.346, 0.081, 0.046, 0.528], + [0.271, 0.141, 0.072, 0.516], + ], + KLF1: [ + [0.17, 0.005, 0.825, 0.001], + [0.0, 0.017, 0.982, 0.001], + [0.0, 0.0, 1.0, 0.0], + [0.003, 0.743, 0.0, 0.254], + [0.0, 0.0, 1.0, 0.0], + [0.006, 0.0, 0.75, 0.244], + [0.276, 0.091, 0.586, 0.048], + [0.0, 0.011, 0.971, 0.018], + ], + XBP1: [ + [0.531, 0.114, 0.134, 0.221], + [0.283, 0.155, 0.213, 0.349], + [0.318, 0.097, 0.306, 0.279], + [0.106, 0.085, 0.487, 0.322], + [0.542, 0.423, 0.007, 0.028], + [0.026, 0.825, 0.0, 0.149], + [0.969, 0.0, 0.027, 0.003], + [0.009, 0.978, 0.01, 0.003], + [0.098, 0.016, 0.886, 0.0], + [0.017, 0.07, 0.002, 0.91], + ], + ZNF8: [ + [0.179, 0.06, 0.647, 0.114], + [0.224, 0.069, 0.615, 0.092], + [0.673, 0.06, 0.127, 0.14], + [0.127, 0.084, 0.076, 0.712], + [0.698, 0.064, 0.114, 0.124], + [0.75, 0.071, 0.097, 0.081], + [0.776, 0.056, 0.085, 0.082], + [0.126, 0.248, 0.423, 0.202], + [0.797, 0.051, 0.06, 0.093], + [0.781, 0.075, 0.085, 0.059], + [0.812, 0.084, 0.067, 0.038], + [0.593, 0.202, 0.036, 0.17], + [0.044, 0.068, 0.043, 0.845], + [0.159, 0.059, 0.766, 0.016], + [0.008, 0.063, 0.014, 0.915], + [0.006, 0.002, 0.975, 0.017], + [0.005, 0.005, 0.989, 0.001], + [0.001, 0.09, 0.001, 0.908], + [0.987, 0.009, 0.003, 0.002], + [0.027, 0.454, 0.024, 0.495], + [0.756, 0.005, 0.23, 0.009], + [0.014, 0.122, 0.019, 0.844], + [0.41, 0.509, 0.051, 0.03], + [0.07, 0.411, 0.008, 0.511], + [0.891, 0.03, 0.034, 0.046], + [0.056, 0.366, 0.073, 0.506], + [0.722, 0.025, 0.153, 0.099], + [0.133, 0.702, 0.024, 0.14], + [0.58, 0.309, 0.051, 0.059], + [0.737, 0.063, 0.125, 0.076], + [0.084, 0.099, 0.075, 0.742], + [0.131, 0.047, 0.748, 0.074], + [0.138, 0.046, 0.75, 0.066], + [0.804, 0.052, 0.078, 0.066], + [0.716, 0.066, 0.14, 0.079], + [0.101, 0.076, 0.044, 0.779], + [0.788, 0.052, 0.071, 0.089], + [0.079, 0.51, 0.069, 0.341], + [0.098, 0.075, 0.05, 0.777], + [0.779, 0.06, 0.072, 0.089], + [0.078, 0.238, 0.058, 0.626], + [0.161, 0.08, 0.277, 0.482], + [0.095, 0.665, 0.07, 0.17], + [0.733, 0.062, 0.122, 0.083], + [0.124, 0.105, 0.7, 0.071], + [0.103, 0.7, 0.056, 0.141], + [0.244, 0.559, 0.086, 0.111], + [0.668, 0.108, 0.095, 0.13], + [0.099, 0.105, 0.065, 0.731], + [0.65, 0.066, 0.163, 0.121], + [0.785, 0.065, 0.064, 0.086], + [0.818, 0.059, 0.061, 0.061], + [0.798, 0.05, 0.077, 0.075], + [0.802, 0.047, 0.087, 0.064], + [0.455, 0.062, 0.388, 0.095], + [0.246, 0.059, 0.584, 0.111], + [0.686, 0.06, 0.168, 0.086], + [0.705, 0.066, 0.11, 0.118], + [0.201, 0.155, 0.163, 0.481], + [0.339, 0.079, 0.455, 0.127], + [0.65, 0.076, 0.145, 0.129], + [0.456, 0.093, 0.328, 0.123], + [0.43, 0.161, 0.183, 0.227], + [0.178, 0.13, 0.099, 0.593], + ], + ZNF146: [ + [0.86, 0.024, 0.063, 0.053], + [0.142, 0.087, 0.685, 0.086], + [0.858, 0.034, 0.06, 0.049], + [0.873, 0.041, 0.041, 0.046], + [0.885, 0.026, 0.041, 0.048], + [0.823, 0.057, 0.045, 0.074], + [0.097, 0.053, 0.042, 0.809], + [0.133, 0.033, 0.765, 0.068], + [0.068, 0.033, 0.058, 0.84], + [0.083, 0.029, 0.814, 0.073], + [0.112, 0.031, 0.807, 0.051], + [0.05, 0.47, 0.045, 0.435], + [0.843, 0.052, 0.057, 0.048], + [0.055, 0.705, 0.027, 0.212], + [0.861, 0.033, 0.06, 0.045], + [0.047, 0.064, 0.035, 0.854], + [0.784, 0.095, 0.055, 0.066], + [0.039, 0.187, 0.021, 0.754], + [0.897, 0.026, 0.046, 0.031], + [0.037, 0.722, 0.02, 0.222], + [0.894, 0.025, 0.052, 0.028], + [0.042, 0.855, 0.023, 0.08], + [0.212, 0.697, 0.033, 0.057], + [0.885, 0.013, 0.091, 0.012], + [0.017, 0.044, 0.016, 0.923], + [0.037, 0.001, 0.959, 0.003], + [0.029, 0.0, 0.971, 0.0], + [0.988, 0.004, 0.007, 0.001], + [0.933, 0.01, 0.055, 0.002], + [0.004, 0.017, 0.001, 0.978], + [0.991, 0.001, 0.007, 0.001], + [0.005, 0.835, 0.023, 0.137], + [0.004, 0.013, 0.004, 0.979], + [0.996, 0.002, 0.002, 0.0], + [0.001, 0.147, 0.008, 0.844], + [0.114, 0.003, 0.703, 0.181], + [0.005, 0.952, 0.004, 0.039], + [0.974, 0.001, 0.016, 0.01], + [0.016, 0.011, 0.968, 0.005], + [0.003, 0.949, 0.007, 0.042], + [0.063, 0.901, 0.004, 0.032], + [0.891, 0.021, 0.042, 0.046], + [0.007, 0.035, 0.015, 0.943], + [0.788, 0.021, 0.152, 0.039], + [0.982, 0.005, 0.008, 0.006], + [0.988, 0.005, 0.004, 0.003], + [0.966, 0.01, 0.021, 0.002], + [0.996, 0.001, 0.003, 0.001], + [0.731, 0.006, 0.234, 0.028], + [0.05, 0.009, 0.799, 0.143], + [0.519, 0.012, 0.46, 0.009], + [0.893, 0.016, 0.041, 0.05], + [0.096, 0.115, 0.103, 0.686], + [0.216, 0.023, 0.705, 0.056], + [0.831, 0.025, 0.095, 0.049], + [0.282, 0.047, 0.61, 0.061], + [0.36, 0.066, 0.09, 0.484], + [0.058, 0.09, 0.035, 0.817], + [0.161, 0.643, 0.06, 0.136], + [0.648, 0.16, 0.062, 0.13], + [0.074, 0.092, 0.079, 0.755], + [0.098, 0.052, 0.726, 0.124], + [0.106, 0.102, 0.075, 0.717], + [0.058, 0.725, 0.038, 0.18], + ], + EOMES: [ + [0.76, 0.01, 0.15, 0.08], + [0.271, 0.025, 0.635, 0.069], + [0.0, 0.076, 0.919, 0.005], + [0.0, 0.056, 0.001, 0.944], + [0.0, 0.0, 0.999, 0.0], + [0.267, 0.144, 0.014, 0.575], + [0.035, 0.249, 0.41, 0.306], + [0.909, 0.0, 0.056, 0.035], + [0.45, 0.108, 0.377, 0.064], + ], + NFYA: [ + [0.447, 0.113, 0.401, 0.04], + [0.318, 0.086, 0.497, 0.098], + [0.0, 0.99, 0.005, 0.005], + [0.017, 0.972, 0.009, 0.002], + [0.969, 0.0, 0.0, 0.031], + [0.983, 0.005, 0.01, 0.002], + [0.0, 0.033, 0.001, 0.966], + [0.133, 0.543, 0.28, 0.044], + [0.525, 0.096, 0.37, 0.01], + [0.163, 0.227, 0.522, 0.088], + ], + RFX1: [ + [0.186, 0.067, 0.622, 0.125], + [0.093, 0.113, 0.133, 0.66], + [0.142, 0.201, 0.089, 0.569], + [0.186, 0.186, 0.428, 0.201], + [0.037, 0.759, 0.05, 0.155], + [0.018, 0.848, 0.012, 0.123], + [0.626, 0.161, 0.052, 0.161], + [0.107, 0.056, 0.066, 0.77], + [0.251, 0.001, 0.748, 0.0], + [0.117, 0.01, 0.871, 0.002], + [0.132, 0.636, 0.059, 0.173], + [0.76, 0.006, 0.122, 0.112], + [0.961, 0.007, 0.027, 0.005], + [0.005, 0.921, 0.0, 0.074], + ], + NEUROG2: [ + [0.338, 0.331, 0.33, 0.0], + [0.0, 1.0, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.005, 0.757, 0.238], + [0.394, 0.605, 0.0, 0.0], + [0.002, 0.008, 0.0, 0.99], + [0.0, 0.0, 0.996, 0.004], + [0.018, 0.315, 0.41, 0.257], + ], + EHF: [ + [0.524, 0.109, 0.232, 0.135], + [0.003, 0.611, 0.063, 0.322], + [0.035, 0.0, 0.001, 0.965], + [0.0, 0.0, 0.0, 1.0], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.999, 0.0, 0.0], + [0.0, 0.022, 0.207, 0.771], + [0.004, 0.274, 0.562, 0.16], + [0.181, 0.26, 0.325, 0.235], + [0.218, 0.075, 0.054, 0.652], + ], + SCRT2: [ + [0.088, 0.1, 0.468, 0.344], + [0.013, 0.927, 0.01, 0.05], + [0.817, 0.099, 0.031, 0.053], + [0.975, 0.0, 0.016, 0.009], + [0.0, 1.0, 0.0, 0.0], + [0.987, 0.001, 0.0, 0.013], + [0.195, 0.005, 0.789, 0.011], + [0.022, 0.005, 0.944, 0.028], + [0.012, 0.046, 0.005, 0.937], + [0.139, 0.082, 0.611, 0.169], + ], + HAND1: [ + [0.035, 0.348, 0.065, 0.551], + [0.007, 0.99, 0.003, 0.0], + [0.0, 0.025, 0.013, 0.963], + [0.003, 0.0, 0.997, 0.0], + [0.0, 0.202, 0.59, 0.208], + [0.287, 0.128, 0.185, 0.4], + [0.194, 0.22, 0.121, 0.465], + [0.296, 0.147, 0.097, 0.461], + [0.196, 0.208, 0.274, 0.322], + [0.059, 0.376, 0.049, 0.517], + [0.208, 0.257, 0.391, 0.145], + [0.012, 0.023, 0.043, 0.922], + [0.022, 0.935, 0.003, 0.04], + [0.601, 0.095, 0.048, 0.256], + ], + FLI1: [ + [0.38, 0.1, 0.417, 0.103], + [0.27, 0.429, 0.292, 0.01], + [0.742, 0.129, 0.099, 0.03], + [0.007, 0.009, 0.953, 0.03], + [0.0, 0.009, 0.989, 0.001], + [0.928, 0.047, 0.024, 0.0], + [0.927, 0.001, 0.024, 0.048], + [0.02, 0.001, 0.978, 0.0], + ], + SOX13: [ + [0.464, 0.104, 0.312, 0.12], + [0.658, 0.092, 0.191, 0.059], + [0.943, 0.002, 0.0, 0.055], + [0.0, 1.0, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.579, 0.002, 0.0, 0.419], + [0.34, 0.083, 0.529, 0.048], + [0.274, 0.185, 0.516, 0.025], + ], + ELF3: [ + [0.658, 0.024, 0.221, 0.096], + [0.0, 0.632, 0.025, 0.343], + [0.03, 0.0, 0.0, 0.97], + [0.0, 0.0, 0.0, 1.0], + [0.0, 1.0, 0.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.001, 0.024, 0.121, 0.854], + [0.022, 0.262, 0.534, 0.182], + [0.119, 0.285, 0.292, 0.304], + [0.193, 0.145, 0.061, 0.601], + ], + ZNF250: [ + [0.11, 0.106, 0.061, 0.723], + [0.316, 0.06, 0.442, 0.183], + [0.071, 0.052, 0.092, 0.785], + [0.144, 0.055, 0.622, 0.178], + [0.039, 0.139, 0.092, 0.729], + [0.049, 0.683, 0.057, 0.21], + [0.052, 0.117, 0.049, 0.781], + [0.185, 0.059, 0.575, 0.181], + [0.048, 0.066, 0.083, 0.802], + [0.039, 0.225, 0.04, 0.697], + [0.03, 0.138, 0.02, 0.811], + [0.047, 0.053, 0.031, 0.868], + [0.046, 0.043, 0.065, 0.845], + [0.647, 0.047, 0.206, 0.1], + [0.047, 0.082, 0.049, 0.822], + [0.301, 0.06, 0.568, 0.071], + [0.079, 0.744, 0.051, 0.126], + [0.05, 0.803, 0.026, 0.121], + [0.852, 0.042, 0.048, 0.058], + [0.188, 0.034, 0.733, 0.045], + [0.019, 0.077, 0.049, 0.855], + [0.774, 0.012, 0.177, 0.036], + [0.044, 0.893, 0.025, 0.039], + [0.009, 0.949, 0.009, 0.033], + [0.921, 0.035, 0.023, 0.021], + [0.021, 0.205, 0.028, 0.746], + [0.404, 0.009, 0.565, 0.021], + [0.015, 0.884, 0.023, 0.078], + [0.027, 0.04, 0.013, 0.92], + [0.029, 0.027, 0.907, 0.037], + [0.011, 0.036, 0.037, 0.916], + [0.027, 0.022, 0.006, 0.946], + [0.002, 0.035, 0.003, 0.96], + [0.005, 0.012, 0.05, 0.933], + [0.091, 0.039, 0.843, 0.027], + [0.459, 0.044, 0.456, 0.042], + [0.04, 0.026, 0.018, 0.917], + [0.037, 0.028, 0.067, 0.867], + [0.914, 0.014, 0.028, 0.044], + [0.012, 0.845, 0.027, 0.116], + [0.038, 0.098, 0.029, 0.835], + [0.498, 0.004, 0.489, 0.009], + [0.006, 0.07, 0.018, 0.906], + [0.891, 0.018, 0.046, 0.045], + [0.055, 0.038, 0.896, 0.011], + [0.009, 0.902, 0.012, 0.078], + [0.03, 0.191, 0.001, 0.777], + [0.003, 0.168, 0.003, 0.827], + [0.009, 0.019, 0.018, 0.954], + [0.107, 0.025, 0.852, 0.016], + [0.022, 0.115, 0.016, 0.848], + [0.884, 0.018, 0.07, 0.028], + [0.299, 0.019, 0.622, 0.061], + [0.016, 0.075, 0.016, 0.893], + [0.855, 0.026, 0.076, 0.043], + [0.154, 0.078, 0.028, 0.74], + [0.716, 0.018, 0.242, 0.025], + [0.178, 0.066, 0.261, 0.495], + [0.009, 0.026, 0.01, 0.956], + [0.013, 0.06, 0.009, 0.917], + [0.021, 0.053, 0.042, 0.884], + [0.146, 0.044, 0.761, 0.048], + [0.889, 0.022, 0.042, 0.047], + [0.836, 0.022, 0.067, 0.076], + ], + SOX9: [ + [0.406, 0.073, 0.403, 0.118], + [0.627, 0.12, 0.186, 0.068], + [0.905, 0.026, 0.001, 0.067], + [0.0, 0.976, 0.022, 0.002], + [0.997, 0.001, 0.002, 0.001], + [0.978, 0.011, 0.008, 0.003], + [0.511, 0.007, 0.026, 0.456], + [0.145, 0.105, 0.733, 0.017], + [0.335, 0.156, 0.448, 0.061], + [0.275, 0.217, 0.313, 0.194], + [0.199, 0.301, 0.223, 0.278], + [0.146, 0.367, 0.189, 0.298], + [0.136, 0.47, 0.131, 0.263], + [0.279, 0.188, 0.066, 0.467], + [0.059, 0.142, 0.088, 0.711], + [0.066, 0.062, 0.148, 0.725], + [0.147, 0.125, 0.432, 0.296], + [0.237, 0.056, 0.151, 0.557], + ], + MZF1: [ + [0.286, 0.057, 0.198, 0.458], + [0.173, 0.001, 0.826, 0.0], + [0.003, 0.0, 0.997, 0.0], + [0.0, 0.0, 0.999, 0.001], + [0.0, 0.0, 1.0, 0.0], + [0.999, 0.001, 0.0, 0.0], + [0.079, 0.059, 0.182, 0.679], + [0.005, 0.298, 0.161, 0.536], + ], + ZNF449: [ + [0.355, 0.314, 0.302, 0.029], + [0.632, 0.235, 0.021, 0.112], + [0.0, 0.0, 0.999, 0.001], + [0.003, 0.876, 0.112, 0.009], + [0.001, 0.983, 0.015, 0.0], + [0.009, 0.955, 0.036, 0.001], + [0.8, 0.073, 0.073, 0.054], + [0.705, 0.001, 0.289, 0.004], + [0.024, 0.948, 0.015, 0.012], + [0.129, 0.679, 0.071, 0.121], + ], + ERG: [ + [0.44, 0.117, 0.378, 0.065], + [0.011, 0.627, 0.016, 0.346], + [0.093, 0.008, 0.002, 0.898], + [0.014, 0.002, 0.008, 0.976], + [0.0, 0.999, 0.001, 0.0], + [0.019, 0.977, 0.0, 0.004], + [0.0, 0.02, 0.18, 0.8], + [0.017, 0.18, 0.65, 0.154], + ], + IRF2: [ + [0.069, 0.418, 0.129, 0.383], + [0.068, 0.595, 0.08, 0.257], + [0.486, 0.113, 0.246, 0.155], + [0.003, 0.671, 0.316, 0.01], + [0.041, 0.049, 0.0, 0.91], + [0.013, 0.088, 0.033, 0.866], + [0.0, 0.353, 0.0, 0.646], + [0.0, 0.951, 0.013, 0.036], + [0.352, 0.094, 0.27, 0.283], + [0.04, 0.475, 0.295, 0.19], + [0.02, 0.178, 0.081, 0.721], + [0.122, 0.129, 0.005, 0.744], + [0.075, 0.225, 0.113, 0.587], + [0.11, 0.515, 0.183, 0.192], + ], + IKZF1: [ + [0.101, 0.233, 0.078, 0.588], + [0.151, 0.059, 0.752, 0.038], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.007, 0.993, 0.0], + [0.995, 0.004, 0.0, 0.001], + [0.67, 0.015, 0.251, 0.063], + [0.239, 0.09, 0.253, 0.419], + [0.411, 0.026, 0.336, 0.226], + ], + MAF: [ + [0.105, 0.227, 0.524, 0.144], + [0.156, 0.577, 0.084, 0.183], + [0.212, 0.17, 0.121, 0.496], + [0.214, 0.124, 0.461, 0.201], + [0.509, 0.163, 0.116, 0.213], + [0.132, 0.272, 0.525, 0.071], + [0.012, 0.032, 0.032, 0.925], + [0.123, 0.875, 0.0, 0.002], + [0.908, 0.013, 0.024, 0.055], + [0.003, 0.0, 0.912, 0.084], + [0.004, 0.965, 0.018, 0.012], + [0.803, 0.015, 0.083, 0.099], + [0.291, 0.248, 0.264, 0.197], + [0.362, 0.154, 0.119, 0.365], + [0.291, 0.127, 0.086, 0.496], + ], + PHOX2B: [ + [0.191, 0.029, 0.016, 0.764], + [0.807, 0.012, 0.058, 0.123], + [1.0, 0.0, 0.0, 0.0], + [0.036, 0.034, 0.012, 0.917], + [0.061, 0.152, 0.066, 0.721], + [0.5, 0.033, 0.135, 0.332], + [0.613, 0.109, 0.222, 0.056], + [0.875, 0.009, 0.072, 0.043], + [0.0, 0.0, 0.0, 1.0], + [0.064, 0.045, 0.011, 0.881], + [0.831, 0.009, 0.02, 0.14], + ], + SOX5: [ + [0.04, 0.507, 0.233, 0.219], + [0.031, 0.583, 0.059, 0.327], + [0.499, 0.017, 0.047, 0.437], + [0.001, 0.003, 0.024, 0.972], + [0.001, 0.007, 0.0, 0.991], + [0.003, 0.022, 0.975, 0.0], + [0.121, 0.005, 0.039, 0.835], + [0.058, 0.21, 0.11, 0.623], + [0.106, 0.362, 0.106, 0.427], + ], + OSR2: [ + [0.044, 0.858, 0.008, 0.089], + [0.715, 0.0, 0.285, 0.0], + [0.0, 0.0, 0.997, 0.003], + [0.286, 0.017, 0.162, 0.535], + [0.852, 0.0, 0.12, 0.028], + [0.009, 0.0, 0.98, 0.011], + [0.018, 0.836, 0.045, 0.101], + ], + PITX3: [ + [0.264, 0.013, 0.703, 0.019], + [0.071, 0.043, 0.882, 0.005], + [0.777, 0.221, 0.001, 0.002], + [0.0, 0.001, 0.0, 0.999], + [0.003, 0.046, 0.0, 0.951], + [0.853, 0.005, 0.002, 0.14], + [0.43, 0.055, 0.396, 0.119], + ], + OLIG2: [ + [0.273, 0.418, 0.294, 0.016], + [0.001, 0.999, 0.0, 0.0], + [0.844, 0.0, 0.117, 0.039], + [0.003, 0.002, 0.659, 0.336], + [0.373, 0.627, 0.0, 0.0], + [0.016, 0.115, 0.017, 0.852], + [0.0, 0.0, 0.911, 0.089], + [0.006, 0.239, 0.581, 0.174], + ], + KLF14: [ + [0.134, 0.145, 0.629, 0.091], + [0.144, 0.529, 0.105, 0.223], + [0.079, 0.679, 0.032, 0.21], + [0.372, 0.623, 0.0, 0.005], + [0.012, 0.981, 0.0, 0.007], + [0.154, 0.001, 0.771, 0.074], + [0.009, 0.987, 0.0, 0.004], + [0.001, 0.98, 0.009, 0.01], + [0.0, 0.963, 0.003, 0.034], + [0.472, 0.406, 0.005, 0.117], + [0.025, 0.766, 0.043, 0.165], + ], + EBF1: [ + [0.051, 0.251, 0.12, 0.577], + [0.007, 0.922, 0.071, 0.0], + [0.025, 0.78, 0.056, 0.139], + [0.0, 0.965, 0.017, 0.018], + [0.293, 0.335, 0.061, 0.311], + [0.305, 0.082, 0.335, 0.277], + [0.026, 0.033, 0.94, 0.002], + [0.171, 0.049, 0.72, 0.06], + [0.0, 0.091, 0.888, 0.021], + [0.595, 0.066, 0.312, 0.027], + [0.175, 0.493, 0.246, 0.086], + ], + FOXK1: [ + [0.017, 0.007, 0.012, 0.964], + [0.101, 0.001, 0.898, 0.0], + [0.013, 0.003, 0.006, 0.978], + [0.012, 0.0, 0.057, 0.93], + [0.0, 0.0, 0.193, 0.807], + [0.771, 0.071, 0.021, 0.137], + [0.0, 0.633, 0.053, 0.314], + ], + NR1H2: [ + [0.071, 0.107, 0.09, 0.731], + [0.172, 0.076, 0.598, 0.154], + [0.529, 0.138, 0.28, 0.052], + [0.367, 0.59, 0.023, 0.02], + [0.025, 0.968, 0.003, 0.004], + [0.024, 0.061, 0.002, 0.912], + [0.028, 0.093, 0.01, 0.869], + [0.015, 0.027, 0.035, 0.922], + [0.154, 0.098, 0.704, 0.044], + [0.438, 0.197, 0.226, 0.139], + [0.321, 0.39, 0.041, 0.247], + [0.115, 0.715, 0.085, 0.085], + [0.13, 0.345, 0.046, 0.48], + ], + ZNF382: [ + [0.087, 0.689, 0.044, 0.179], + [0.07, 0.11, 0.181, 0.638], + [0.038, 0.092, 0.842, 0.028], + [0.017, 0.027, 0.015, 0.941], + [0.551, 0.021, 0.235, 0.193], + [0.057, 0.287, 0.54, 0.116], + [0.022, 0.037, 0.034, 0.907], + [0.465, 0.019, 0.424, 0.092], + [0.323, 0.239, 0.237, 0.201], + [0.03, 0.082, 0.022, 0.866], + [0.158, 0.024, 0.518, 0.3], + [0.082, 0.209, 0.216, 0.493], + [0.115, 0.758, 0.03, 0.097], + [0.104, 0.218, 0.034, 0.644], + [0.073, 0.767, 0.069, 0.091], + [0.333, 0.338, 0.068, 0.26], + [0.112, 0.203, 0.113, 0.572], + ], + MYB: [ + [0.988, 0.0, 0.003, 0.009], + [0.982, 0.002, 0.015, 0.001], + [0.0, 1.0, 0.0, 0.0], + [0.13, 0.165, 0.156, 0.549], + [0.059, 0.005, 0.936, 0.0], + [0.284, 0.388, 0.028, 0.299], + [0.309, 0.436, 0.032, 0.223], + ], + TBP: [ + [0.05, 0.516, 0.158, 0.276], + [0.284, 0.028, 0.057, 0.63], + [0.832, 0.008, 0.032, 0.128], + [0.003, 0.014, 0.024, 0.959], + [0.85, 0.085, 0.006, 0.059], + [0.628, 0.029, 0.025, 0.318], + [0.815, 0.002, 0.153, 0.031], + [0.55, 0.045, 0.144, 0.261], + ], + ASCL1: [ + [0.238, 0.278, 0.479, 0.006], + [0.007, 0.99, 0.0, 0.003], + [0.994, 0.002, 0.002, 0.002], + [0.022, 0.0, 0.978, 0.001], + [0.117, 0.405, 0.478, 0.0], + [0.01, 0.0, 0.003, 0.987], + [0.003, 0.001, 0.987, 0.009], + ], + ZNF85: [ + [0.661, 0.073, 0.174, 0.092], + [0.034, 0.007, 0.936, 0.023], + [0.93, 0.026, 0.032, 0.011], + [0.008, 0.008, 0.107, 0.877], + [0.002, 0.001, 0.002, 0.994], + [0.407, 0.404, 0.081, 0.108], + [0.004, 0.976, 0.005, 0.015], + [0.444, 0.064, 0.078, 0.414], + [0.035, 0.045, 0.426, 0.494], + [0.004, 0.852, 0.003, 0.141], + [0.704, 0.069, 0.083, 0.144], + [0.126, 0.212, 0.442, 0.221], + [0.322, 0.134, 0.085, 0.459], + [0.123, 0.249, 0.102, 0.527], + [0.13, 0.127, 0.208, 0.534], + [0.139, 0.167, 0.114, 0.581], + [0.12, 0.515, 0.109, 0.255], + ], + ZBTB33: [ + [0.069, 0.148, 0.132, 0.651], + [0.105, 0.756, 0.08, 0.058], + [0.087, 0.112, 0.145, 0.656], + [0.031, 0.906, 0.052, 0.01], + [0.066, 0.01, 0.911, 0.013], + [0.025, 0.881, 0.01, 0.084], + [0.004, 0.009, 0.981, 0.006], + [0.546, 0.165, 0.252, 0.037], + [0.048, 0.091, 0.61, 0.251], + [0.571, 0.167, 0.221, 0.042], + ], + SP4: [ + [0.05, 0.687, 0.129, 0.134], + [0.068, 0.706, 0.0, 0.226], + [0.097, 0.903, 0.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.026, 0.0, 0.79, 0.185], + [0.0, 1.0, 0.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.821, 0.0, 0.179], + [0.208, 0.659, 0.01, 0.123], + [0.052, 0.523, 0.203, 0.221], + [0.13, 0.412, 0.211, 0.246], + [0.126, 0.358, 0.287, 0.229], + [0.121, 0.528, 0.239, 0.113], + [0.075, 0.526, 0.254, 0.144], + [0.114, 0.385, 0.295, 0.206], + [0.111, 0.481, 0.318, 0.09], + [0.137, 0.415, 0.304, 0.144], + [0.082, 0.465, 0.327, 0.126], + [0.111, 0.464, 0.289, 0.136], + [0.089, 0.439, 0.294, 0.178], + [0.114, 0.406, 0.3, 0.181], + [0.117, 0.463, 0.27, 0.15], + [0.072, 0.447, 0.32, 0.161], + ], + FOXA3: [ + [0.271, 0.06, 0.16, 0.509], + [0.012, 0.006, 0.969, 0.012], + [0.054, 0.0, 0.053, 0.893], + [0.684, 0.309, 0.003, 0.004], + [0.799, 0.2, 0.0, 0.001], + [0.929, 0.037, 0.023, 0.01], + [0.0, 0.741, 0.001, 0.258], + [0.822, 0.002, 0.113, 0.064], + ], + BCL6: [ + [0.136, 0.628, 0.134, 0.102], + [0.145, 0.197, 0.057, 0.6], + [0.074, 0.213, 0.143, 0.57], + [0.048, 0.067, 0.072, 0.814], + [0.0, 0.892, 0.006, 0.102], + [0.025, 0.484, 0.094, 0.398], + [0.811, 0.096, 0.062, 0.031], + [0.147, 0.006, 0.817, 0.029], + [0.028, 0.035, 0.871, 0.065], + [0.693, 0.112, 0.141, 0.054], + [0.736, 0.113, 0.074, 0.077], + ], + ZNF320: [ + [0.138, 0.115, 0.586, 0.161], + [0.1, 0.1, 0.501, 0.299], + [0.166, 0.084, 0.581, 0.169], + [0.071, 0.062, 0.808, 0.059], + [0.039, 0.055, 0.87, 0.037], + [0.228, 0.066, 0.44, 0.266], + [0.183, 0.419, 0.184, 0.214], + [0.178, 0.611, 0.09, 0.122], + [0.363, 0.346, 0.086, 0.205], + [0.297, 0.062, 0.515, 0.127], + [0.124, 0.017, 0.664, 0.195], + [0.01, 0.002, 0.983, 0.005], + [0.039, 0.001, 0.958, 0.001], + [0.035, 0.013, 0.92, 0.031], + [0.346, 0.618, 0.031, 0.004], + [0.28, 0.595, 0.029, 0.096], + [0.372, 0.047, 0.183, 0.399], + [0.321, 0.085, 0.524, 0.069], + [0.093, 0.156, 0.099, 0.653], + [0.063, 0.07, 0.77, 0.097], + ], + ZBTB6: [ + [0.138, 0.128, 0.595, 0.139], + [0.398, 0.058, 0.506, 0.038], + [0.187, 0.178, 0.073, 0.562], + [0.052, 0.241, 0.556, 0.152], + [0.415, 0.536, 0.034, 0.014], + [0.009, 0.097, 0.009, 0.885], + [0.32, 0.021, 0.527, 0.131], + [0.0, 0.002, 0.998, 0.0], + [0.997, 0.003, 0.0, 0.0], + [0.001, 0.001, 0.998, 0.0], + [0.086, 0.839, 0.037, 0.038], + [0.114, 0.631, 0.06, 0.196], + ], + ARNTL: [ + [0.032, 0.819, 0.0, 0.149], + [0.852, 0.0, 0.105, 0.043], + [0.02, 0.654, 0.049, 0.276], + [0.135, 0.0, 0.836, 0.029], + [0.0, 0.0, 0.0, 1.0], + [0.008, 0.017, 0.961, 0.014], + ], + NFIB: [ + [0.066, 0.374, 0.1, 0.46], + [0.03, 0.036, 0.122, 0.812], + [0.001, 0.033, 0.966, 0.0], + [0.031, 0.0, 0.921, 0.049], + [0.187, 0.716, 0.078, 0.019], + [0.424, 0.222, 0.058, 0.295], + [0.146, 0.306, 0.299, 0.25], + [0.225, 0.263, 0.267, 0.245], + [0.226, 0.237, 0.374, 0.163], + [0.289, 0.049, 0.187, 0.475], + [0.0, 0.0, 0.898, 0.102], + [0.026, 0.937, 0.0, 0.037], + [0.0, 0.903, 0.095, 0.002], + [0.838, 0.079, 0.056, 0.027], + [0.544, 0.008, 0.436, 0.012], + ], + NRF1: [ + [0.183, 0.059, 0.755, 0.004], + [0.058, 0.89, 0.052, 0.0], + [0.061, 0.002, 0.915, 0.023], + [0.0, 0.996, 0.0, 0.003], + [0.549, 0.257, 0.177, 0.018], + [0.029, 0.238, 0.345, 0.388], + [0.101, 0.148, 0.726, 0.024], + [0.024, 0.876, 0.034, 0.066], + [0.034, 0.042, 0.718, 0.206], + [0.005, 0.868, 0.061, 0.066], + ], + CEBPA: [ + [0.498, 0.11, 0.385, 0.007], + [0.0, 0.001, 0.0, 0.999], + [0.001, 0.0, 0.351, 0.648], + [0.292, 0.001, 0.446, 0.262], + [0.09, 0.533, 0.124, 0.253], + [0.165, 0.062, 0.729, 0.043], + [0.045, 0.895, 0.0, 0.06], + [0.988, 0.012, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.009, 0.303, 0.089, 0.599], + ], + MAFG: [ + [0.057, 0.129, 0.016, 0.798], + [0.105, 0.042, 0.752, 0.101], + [0.871, 0.026, 0.031, 0.072], + [0.091, 0.489, 0.348, 0.072], + [0.081, 0.014, 0.009, 0.896], + [0.102, 0.824, 0.013, 0.061], + [0.898, 0.002, 0.052, 0.048], + [0.024, 0.003, 0.87, 0.103], + [0.0, 0.961, 0.033, 0.006], + [0.824, 0.035, 0.047, 0.095], + [0.371, 0.149, 0.197, 0.283], + [0.394, 0.079, 0.09, 0.437], + [0.346, 0.085, 0.059, 0.51], + [0.268, 0.161, 0.073, 0.499], + ], + ZNF16: [ + [0.106, 0.175, 0.159, 0.561], + [0.139, 0.156, 0.183, 0.522], + [0.342, 0.165, 0.243, 0.25], + [0.235, 0.169, 0.193, 0.403], + [0.128, 0.404, 0.166, 0.302], + [0.105, 0.486, 0.154, 0.255], + [0.137, 0.316, 0.175, 0.372], + [0.233, 0.179, 0.38, 0.208], + [0.377, 0.126, 0.273, 0.223], + [0.35, 0.062, 0.495, 0.093], + [0.212, 0.015, 0.736, 0.037], + [0.085, 0.018, 0.859, 0.038], + [0.153, 0.535, 0.13, 0.182], + [0.77, 0.121, 0.082, 0.027], + [0.425, 0.263, 0.295, 0.018], + [0.066, 0.116, 0.192, 0.625], + [0.385, 0.026, 0.358, 0.231], + [0.022, 0.002, 0.966, 0.01], + [0.015, 0.019, 0.936, 0.03], + [0.004, 0.021, 0.974, 0.002], + [0.992, 0.006, 0.002, 0.0], + [0.015, 0.0, 0.981, 0.004], + [0.012, 0.948, 0.003, 0.038], + [0.01, 0.861, 0.013, 0.116], + [0.938, 0.032, 0.017, 0.013], + [0.039, 0.254, 0.054, 0.653], + [0.246, 0.03, 0.486, 0.238], + [0.033, 0.024, 0.917, 0.026], + [0.677, 0.146, 0.126, 0.051], + [0.575, 0.034, 0.298, 0.092], + [0.108, 0.012, 0.797, 0.083], + [0.134, 0.012, 0.83, 0.024], + [0.105, 0.21, 0.087, 0.599], + [0.041, 0.082, 0.194, 0.682], + [0.078, 0.348, 0.162, 0.412], + [0.079, 0.116, 0.129, 0.677], + [0.346, 0.02, 0.265, 0.369], + [0.112, 0.043, 0.797, 0.047], + [0.682, 0.04, 0.252, 0.026], + [0.062, 0.191, 0.71, 0.038], + [0.233, 0.479, 0.207, 0.081], + [0.505, 0.039, 0.369, 0.086], + [0.361, 0.051, 0.539, 0.049], + [0.207, 0.045, 0.675, 0.073], + [0.302, 0.034, 0.617, 0.047], + [0.214, 0.091, 0.641, 0.055], + [0.495, 0.138, 0.248, 0.119], + [0.237, 0.061, 0.617, 0.085], + [0.16, 0.073, 0.471, 0.295], + ], + ATF3: [ + [0.276, 0.161, 0.515, 0.047], + [0.026, 0.136, 0.101, 0.738], + [0.004, 0.567, 0.221, 0.209], + [0.788, 0.008, 0.174, 0.029], + [0.0, 0.928, 0.021, 0.052], + [0.325, 0.04, 0.635, 0.0], + [0.02, 0.005, 0.0, 0.975], + [0.011, 0.442, 0.547, 0.0], + [0.842, 0.016, 0.11, 0.032], + [0.005, 0.631, 0.074, 0.289], + ], + FOS: [ + [0.458, 0.188, 0.309, 0.044], + [0.0, 0.003, 0.0, 0.997], + [0.0, 0.0, 0.957, 0.043], + [1.0, 0.0, 0.0, 0.0], + [0.081, 0.434, 0.36, 0.125], + [0.009, 0.0, 0.0, 0.991], + [0.126, 0.874, 0.0, 0.0], + [0.993, 0.0, 0.007, 0.0], + [0.05, 0.279, 0.219, 0.452], + ], + ZNF41: [ + [0.116, 0.151, 0.133, 0.601], + [0.141, 0.355, 0.17, 0.335], + [0.273, 0.334, 0.202, 0.191], + [0.116, 0.595, 0.107, 0.182], + [0.13, 0.141, 0.081, 0.648], + [0.12, 0.544, 0.155, 0.181], + [0.582, 0.163, 0.084, 0.171], + [0.035, 0.192, 0.032, 0.741], + [0.092, 0.082, 0.519, 0.307], + [0.052, 0.094, 0.755, 0.099], + [0.005, 0.017, 0.006, 0.971], + [0.096, 0.164, 0.66, 0.08], + [0.148, 0.423, 0.156, 0.273], + [0.087, 0.433, 0.059, 0.421], + [0.12, 0.238, 0.204, 0.437], + [0.18, 0.256, 0.18, 0.384], + [0.425, 0.105, 0.154, 0.316], + [0.042, 0.506, 0.097, 0.355], + [0.019, 0.058, 0.015, 0.908], + [0.016, 0.665, 0.021, 0.298], + [0.109, 0.673, 0.067, 0.15], + [0.039, 0.831, 0.03, 0.101], + [0.045, 0.294, 0.039, 0.622], + [0.073, 0.181, 0.1, 0.646], + [0.136, 0.086, 0.611, 0.167], + [0.067, 0.182, 0.086, 0.665], + ], + TEAD2: [ + [0.439, 0.004, 0.535, 0.022], + [0.097, 0.901, 0.002, 0.0], + [0.99, 0.0, 0.004, 0.006], + [0.0, 0.0, 0.0, 1.0], + [0.012, 0.0, 0.002, 0.986], + [0.0, 0.98, 0.0, 0.02], + [0.0, 0.867, 0.0, 0.133], + [0.35, 0.163, 0.034, 0.453], + [0.318, 0.137, 0.397, 0.147], + [0.127, 0.385, 0.417, 0.071], + [0.117, 0.473, 0.316, 0.093], + [0.442, 0.253, 0.152, 0.154], + [0.198, 0.279, 0.393, 0.13], + [0.15, 0.331, 0.293, 0.226], + [0.331, 0.118, 0.19, 0.361], + [0.062, 0.201, 0.458, 0.279], + ], + ELK3: [ + [0.597, 0.038, 0.252, 0.113], + [0.023, 0.576, 0.057, 0.344], + [0.083, 0.0, 0.0, 0.917], + [0.018, 0.0, 0.0, 0.982], + [0.001, 0.895, 0.0, 0.104], + [0.063, 0.838, 0.009, 0.089], + [0.036, 0.021, 0.481, 0.462], + [0.066, 0.183, 0.597, 0.154], + ], + BACH2: [ + [0.587, 0.146, 0.228, 0.039], + [0.009, 0.005, 0.0, 0.985], + [0.004, 0.006, 0.94, 0.05], + [0.971, 0.013, 0.001, 0.016], + [0.067, 0.7, 0.166, 0.067], + [0.225, 0.055, 0.059, 0.661], + [0.187, 0.554, 0.122, 0.136], + [0.627, 0.035, 0.167, 0.171], + [0.12, 0.035, 0.732, 0.113], + [0.046, 0.81, 0.094, 0.051], + [0.633, 0.077, 0.141, 0.15], + ], + PBX2: [ + [0.157, 0.546, 0.08, 0.217], + [0.258, 0.376, 0.025, 0.341], + [0.621, 0.012, 0.357, 0.01], + [0.0, 0.09, 0.001, 0.91], + [0.427, 0.464, 0.012, 0.097], + [0.88, 0.063, 0.005, 0.052], + [0.758, 0.139, 0.065, 0.037], + [0.006, 0.0, 0.0, 0.994], + [0.018, 0.913, 0.0, 0.07], + [0.797, 0.038, 0.009, 0.157], + ], + KLF10: [ + [0.262, 0.058, 0.642, 0.038], + [0.132, 0.009, 0.654, 0.205], + [0.147, 0.0, 0.848, 0.005], + [0.011, 0.002, 0.98, 0.008], + [0.003, 0.005, 0.986, 0.005], + [0.052, 0.703, 0.0, 0.246], + [0.01, 0.012, 0.938, 0.041], + [0.001, 0.077, 0.508, 0.414], + [0.05, 0.003, 0.876, 0.071], + [0.076, 0.075, 0.644, 0.205], + [0.095, 0.718, 0.089, 0.098], + ], + NFKB2: [ + [0.033, 0.022, 0.871, 0.074], + [0.0, 0.0, 0.999, 0.0], + [0.0, 0.0, 0.857, 0.143], + [0.396, 0.048, 0.461, 0.095], + [0.413, 0.262, 0.149, 0.176], + [0.27, 0.083, 0.064, 0.583], + [0.053, 0.145, 0.147, 0.655], + [0.036, 0.545, 0.016, 0.403], + [0.05, 0.949, 0.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.104, 0.79, 0.03, 0.076], + ], + FOSB: [ + [0.0, 0.014, 0.0, 0.986], + [0.0, 0.0, 0.919, 0.081], + [1.0, 0.0, 0.0, 0.0], + [0.087, 0.436, 0.446, 0.032], + [0.005, 0.0, 0.0, 0.995], + [0.001, 0.999, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.018, 0.358, 0.233, 0.391], + ], + E2F4: [ + [0.107, 0.228, 0.664, 0.001], + [0.009, 0.031, 0.954, 0.007], + [0.008, 0.987, 0.0, 0.006], + [0.002, 0.0, 0.984, 0.015], + [0.0, 0.164, 0.836, 0.0], + [0.017, 0.065, 0.902, 0.017], + [0.916, 0.046, 0.017, 0.021], + [0.626, 0.055, 0.271, 0.049], + ], + NR2C2: [ + [0.0, 0.046, 0.001, 0.953], + [0.056, 0.014, 0.93, 0.0], + [0.972, 0.023, 0.004, 0.0], + [0.061, 0.933, 0.002, 0.003], + [0.016, 0.97, 0.002, 0.012], + [0.0, 0.381, 0.008, 0.611], + ], + NFIL3: [ + [0.432, 0.144, 0.398, 0.025], + [0.001, 0.0, 0.0, 0.999], + [0.0, 0.0, 0.05, 0.95], + [0.723, 0.0, 0.265, 0.012], + [0.028, 0.598, 0.021, 0.354], + [0.494, 0.032, 0.453, 0.021], + [0.017, 0.145, 0.001, 0.838], + [0.83, 0.169, 0.0, 0.0], + [0.999, 0.001, 0.0, 0.0], + [0.035, 0.393, 0.147, 0.425], + ], + ZNF134: [ + [0.124, 0.536, 0.106, 0.233], + [0.041, 0.206, 0.085, 0.668], + [0.403, 0.412, 0.08, 0.105], + [0.976, 0.006, 0.014, 0.004], + [0.023, 0.053, 0.281, 0.642], + [0.013, 0.937, 0.003, 0.046], + [0.958, 0.016, 0.012, 0.014], + [0.002, 0.011, 0.987, 0.001], + [0.042, 0.041, 0.51, 0.407], + [0.058, 0.081, 0.134, 0.727], + [0.034, 0.005, 0.946, 0.016], + [0.703, 0.237, 0.041, 0.019], + [0.437, 0.188, 0.116, 0.259], + [0.052, 0.044, 0.864, 0.039], + [0.119, 0.103, 0.674, 0.105], + ], + KLF9: [ + [0.13, 0.154, 0.613, 0.102], + [0.151, 0.669, 0.091, 0.09], + [0.033, 0.868, 0.023, 0.076], + [0.387, 0.597, 0.014, 0.002], + [0.002, 0.996, 0.001, 0.002], + [0.31, 0.001, 0.577, 0.112], + [0.0, 1.0, 0.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.931, 0.0, 0.069], + [0.333, 0.576, 0.003, 0.087], + [0.036, 0.668, 0.086, 0.21], + ], + ZNF547: [ + [0.078, 0.09, 0.731, 0.101], + [0.09, 0.313, 0.098, 0.499], + [0.28, 0.212, 0.283, 0.225], + [0.101, 0.235, 0.121, 0.543], + [0.096, 0.045, 0.744, 0.114], + [0.095, 0.496, 0.127, 0.283], + [0.114, 0.38, 0.178, 0.328], + [0.074, 0.068, 0.196, 0.661], + [0.07, 0.024, 0.839, 0.067], + [0.096, 0.531, 0.056, 0.317], + [0.272, 0.153, 0.226, 0.35], + [0.006, 0.008, 0.921, 0.066], + [0.295, 0.572, 0.053, 0.08], + [0.508, 0.034, 0.282, 0.176], + [0.003, 0.071, 0.028, 0.898], + [0.035, 0.066, 0.245, 0.654], + [0.337, 0.174, 0.081, 0.407], + [0.185, 0.016, 0.778, 0.021], + [0.054, 0.641, 0.106, 0.199], + ], + ATF7: [ + [0.781, 0.038, 0.172, 0.009], + [0.007, 0.007, 0.0, 0.985], + [0.004, 0.008, 0.713, 0.275], + [0.848, 0.0, 0.087, 0.064], + [0.003, 0.702, 0.103, 0.192], + [0.428, 0.098, 0.472, 0.002], + [0.007, 0.001, 0.0, 0.991], + [0.095, 0.9, 0.004, 0.001], + [0.992, 0.0, 0.008, 0.0], + [0.008, 0.199, 0.035, 0.758], + ], + BATF: [ + [0.031, 0.128, 0.007, 0.834], + [0.046, 0.031, 0.77, 0.152], + [0.908, 0.043, 0.011, 0.039], + [0.039, 0.366, 0.504, 0.09], + [0.047, 0.055, 0.008, 0.89], + [0.238, 0.693, 0.061, 0.008], + [0.984, 0.009, 0.002, 0.005], + [0.223, 0.023, 0.17, 0.585], + [0.48, 0.164, 0.038, 0.318], + [0.286, 0.231, 0.122, 0.361], + [0.17, 0.429, 0.118, 0.283], + [0.281, 0.106, 0.411, 0.202], + [0.406, 0.156, 0.268, 0.17], + [0.349, 0.142, 0.314, 0.195], + [0.599, 0.207, 0.081, 0.113], + ], + HNF4G: [ + [0.1, 0.123, 0.084, 0.693], + [0.14, 0.023, 0.826, 0.011], + [0.476, 0.113, 0.375, 0.036], + [0.531, 0.412, 0.012, 0.045], + [0.007, 0.981, 0.007, 0.005], + [0.01, 0.102, 0.003, 0.885], + [0.021, 0.13, 0.01, 0.839], + [0.01, 0.043, 0.009, 0.938], + [0.071, 0.015, 0.905, 0.009], + [0.302, 0.229, 0.31, 0.159], + [0.368, 0.342, 0.099, 0.19], + [0.084, 0.792, 0.027, 0.097], + [0.117, 0.402, 0.052, 0.429], + ], + SNAI1: [ + [0.259, 0.021, 0.72, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.999, 0.0, 0.0, 0.001], + [0.0, 0.03, 0.97, 0.0], + [0.0, 0.023, 0.977, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.004, 0.002, 0.97, 0.025], + ], + NR2F1: [ + [0.0, 0.039, 0.0, 0.961], + [0.038, 0.002, 0.96, 0.0], + [0.985, 0.008, 0.007, 0.0], + [0.004, 0.995, 0.0, 0.001], + [0.001, 0.993, 0.005, 0.001], + [0.0, 0.288, 0.002, 0.71], + [0.036, 0.468, 0.126, 0.37], + ], + HSF1: [ + [0.113, 0.1, 0.077, 0.71], + [0.063, 0.054, 0.054, 0.829], + [0.016, 0.961, 0.02, 0.004], + [0.018, 0.3, 0.016, 0.666], + [0.661, 0.011, 0.314, 0.014], + [0.0, 0.003, 0.994, 0.003], + [0.864, 0.053, 0.023, 0.06], + [0.814, 0.039, 0.057, 0.09], + [0.239, 0.27, 0.213, 0.278], + [0.274, 0.218, 0.233, 0.276], + [0.096, 0.054, 0.033, 0.817], + [0.054, 0.02, 0.035, 0.891], + [0.013, 0.946, 0.015, 0.026], + [0.059, 0.351, 0.027, 0.564], + ], + CREM: [ + [0.427, 0.166, 0.343, 0.065], + [0.169, 0.683, 0.061, 0.087], + [0.0, 0.001, 0.999, 0.0], + [0.007, 0.12, 0.019, 0.855], + [0.002, 0.995, 0.003, 0.0], + [0.884, 0.105, 0.004, 0.007], + [0.043, 0.405, 0.116, 0.436], + ], + ZNF324: [ + [0.207, 0.115, 0.538, 0.14], + [0.231, 0.258, 0.339, 0.172], + [0.194, 0.119, 0.48, 0.207], + [0.484, 0.218, 0.245, 0.053], + [0.142, 0.08, 0.099, 0.678], + [0.047, 0.585, 0.074, 0.293], + [0.446, 0.11, 0.381, 0.063], + [0.826, 0.108, 0.047, 0.019], + [0.626, 0.023, 0.337, 0.014], + [0.048, 0.867, 0.029, 0.055], + [0.01, 0.805, 0.011, 0.174], + [0.649, 0.078, 0.118, 0.154], + [0.164, 0.074, 0.184, 0.578], + [0.068, 0.818, 0.104, 0.01], + [0.07, 0.685, 0.111, 0.134], + [0.118, 0.164, 0.165, 0.553], + [0.097, 0.201, 0.09, 0.611], + [0.31, 0.134, 0.299, 0.257], + [0.252, 0.239, 0.303, 0.206], + [0.246, 0.527, 0.11, 0.117], + ], + STAT4: [ + [0.104, 0.429, 0.085, 0.382], + [0.049, 0.086, 0.021, 0.844], + [0.078, 0.0, 0.315, 0.607], + [0.245, 0.638, 0.094, 0.023], + [0.161, 0.505, 0.052, 0.282], + [0.304, 0.266, 0.314, 0.116], + [0.363, 0.035, 0.593, 0.01], + [0.042, 0.011, 0.911, 0.037], + [0.934, 0.052, 0.0, 0.014], + [0.938, 0.001, 0.061, 0.001], + [0.423, 0.16, 0.371, 0.046], + ], + HMBOX1: [ + [0.321, 0.048, 0.42, 0.212], + [0.714, 0.051, 0.197, 0.038], + [0.001, 0.935, 0.03, 0.035], + [0.0, 0.0, 0.0, 1.0], + [0.757, 0.012, 0.158, 0.073], + [0.001, 0.001, 0.995, 0.003], + [0.14, 0.03, 0.101, 0.73], + [0.158, 0.154, 0.147, 0.541], + ], + YY1: [ + [0.544, 0.127, 0.242, 0.088], + [0.489, 0.238, 0.073, 0.199], + [0.454, 0.225, 0.274, 0.047], + [0.967, 0.028, 0.005, 0.0], + [0.013, 0.0, 0.004, 0.983], + [0.0, 0.0, 1.0, 0.0], + [0.002, 0.006, 0.984, 0.008], + [0.132, 0.755, 0.02, 0.093], + [0.109, 0.216, 0.41, 0.265], + [0.087, 0.169, 0.62, 0.124], + [0.183, 0.571, 0.113, 0.133], + ], + ERF: [ + [0.528, 0.102, 0.287, 0.083], + [0.089, 0.613, 0.107, 0.191], + [0.108, 0.014, 0.007, 0.871], + [0.001, 0.02, 0.054, 0.924], + [0.001, 0.985, 0.008, 0.006], + [0.013, 0.986, 0.0, 0.001], + [0.067, 0.036, 0.348, 0.549], + [0.01, 0.16, 0.796, 0.034], + ], + E2F1: [ + [0.142, 0.072, 0.645, 0.142], + [0.015, 0.145, 0.839, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.093, 0.907, 0.0], + [0.0, 0.051, 0.941, 0.008], + ], + SOX4: [ + [0.002, 0.562, 0.121, 0.315], + [0.018, 0.587, 0.037, 0.358], + [0.299, 0.011, 0.009, 0.681], + [0.0, 0.0, 0.005, 0.995], + [0.0, 0.005, 0.0, 0.995], + [0.005, 0.012, 0.983, 0.0], + [0.001, 0.0, 0.0, 0.999], + [0.027, 0.247, 0.153, 0.572], + ], + BHLHE40: [ + [0.16, 0.082, 0.486, 0.272], + [0.083, 0.91, 0.001, 0.006], + [0.781, 0.081, 0.089, 0.049], + [0.0, 0.875, 0.027, 0.098], + [0.046, 0.07, 0.884, 0.0], + [0.017, 0.036, 0.054, 0.893], + [0.002, 0.0, 0.992, 0.006], + [0.301, 0.572, 0.041, 0.086], + ], + HOXB13: [ + [0.085, 0.661, 0.254, 0.0], + [0.03, 0.345, 0.0, 0.625], + [0.505, 0.307, 0.002, 0.186], + [0.672, 0.0, 0.307, 0.022], + [0.0, 0.001, 0.0, 0.999], + [0.759, 0.001, 0.017, 0.223], + [0.996, 0.0, 0.0, 0.004], + [0.993, 0.006, 0.001, 0.0], + [0.657, 0.102, 0.071, 0.17], + ], + HNF1A: [ + [0.201, 0.037, 0.659, 0.102], + [0.057, 0.086, 0.09, 0.766], + [0.158, 0.098, 0.063, 0.681], + [0.922, 0.003, 0.054, 0.021], + [0.81, 0.102, 0.015, 0.073], + [0.19, 0.03, 0.012, 0.768], + [0.166, 0.315, 0.265, 0.253], + [0.855, 0.001, 0.016, 0.128], + [0.023, 0.0, 0.046, 0.93], + [0.008, 0.024, 0.001, 0.967], + [0.771, 0.031, 0.061, 0.137], + [0.851, 0.046, 0.077, 0.026], + [0.076, 0.726, 0.035, 0.163], + ], + KLF15: [ + [0.213, 0.136, 0.578, 0.074], + [0.133, 0.044, 0.636, 0.188], + [0.227, 0.0, 0.773, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.276, 0.577, 0.0, 0.147], + [0.001, 0.002, 0.997, 0.0], + [0.002, 0.0, 0.951, 0.047], + [0.435, 0.096, 0.354, 0.116], + [0.065, 0.017, 0.872, 0.047], + [0.165, 0.562, 0.166, 0.107], + [0.203, 0.488, 0.159, 0.15], + [0.148, 0.242, 0.477, 0.133], + [0.153, 0.226, 0.479, 0.141], + [0.233, 0.218, 0.468, 0.081], + [0.181, 0.218, 0.515, 0.087], + [0.089, 0.243, 0.584, 0.085], + [0.275, 0.307, 0.294, 0.123], + [0.166, 0.26, 0.46, 0.113], + [0.068, 0.216, 0.577, 0.139], + [0.289, 0.291, 0.31, 0.109], + [0.132, 0.229, 0.527, 0.112], + ], + LYL1: [ + [0.338, 0.285, 0.354, 0.023], + [0.007, 0.993, 0.0, 0.0], + [0.957, 0.0, 0.043, 0.0], + [0.0, 0.024, 0.782, 0.193], + [0.388, 0.575, 0.001, 0.035], + [0.013, 0.021, 0.001, 0.965], + [0.0, 0.0, 0.984, 0.016], + [0.017, 0.224, 0.362, 0.397], + ], + MYOD1: [ + [0.022, 0.971, 0.007, 0.0], + [0.946, 0.003, 0.02, 0.031], + [0.0, 0.316, 0.662, 0.022], + [0.032, 0.925, 0.027, 0.015], + [0.005, 0.028, 0.019, 0.948], + [0.034, 0.012, 0.936, 0.019], + [0.031, 0.397, 0.099, 0.473], + [0.078, 0.378, 0.118, 0.426], + ], + JUND: [ + [0.54, 0.134, 0.325, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.0, 0.0, 1.0, 0.0], + [0.997, 0.0, 0.0, 0.003], + [0.002, 0.472, 0.45, 0.076], + [0.0, 0.0, 0.0, 1.0], + [0.087, 0.913, 0.0, 0.0], + [0.998, 0.0, 0.002, 0.0], + [0.015, 0.302, 0.162, 0.522], + ], + "NKX3-1": [ + [0.553, 0.07, 0.206, 0.172], + [0.383, 0.109, 0.304, 0.204], + [0.209, 0.33, 0.41, 0.052], + [0.002, 0.756, 0.0, 0.243], + [0.9, 0.0, 0.016, 0.085], + [0.004, 0.99, 0.006, 0.0], + [0.001, 0.001, 0.0, 0.998], + [0.0, 0.122, 0.0, 0.878], + [0.648, 0.123, 0.087, 0.141], + [0.528, 0.129, 0.244, 0.099], + ], + ZBTB7A: [ + [0.093, 0.339, 0.459, 0.109], + [0.216, 0.234, 0.416, 0.135], + [0.125, 0.23, 0.534, 0.11], + [0.129, 0.286, 0.351, 0.234], + [0.257, 0.195, 0.408, 0.14], + [0.501, 0.052, 0.445, 0.002], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.008, 0.992, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 0.317, 0.683], + [0.004, 0.982, 0.014, 0.0], + [0.005, 0.29, 0.268, 0.438], + [0.012, 0.468, 0.282, 0.238], + ], + MYC: [ + [0.0, 0.998, 0.0, 0.001], + [0.904, 0.0, 0.033, 0.062], + [0.0, 0.61, 0.302, 0.088], + [0.559, 0.027, 0.414, 0.0], + [0.005, 0.059, 0.006, 0.93], + [0.0, 0.0, 0.958, 0.042], + [0.031, 0.071, 0.646, 0.252], + [0.09, 0.502, 0.089, 0.319], + ], + NR1H3: [ + [0.463, 0.22, 0.065, 0.251], + [0.292, 0.113, 0.537, 0.058], + [0.713, 0.041, 0.245, 0.0], + [0.031, 0.078, 0.751, 0.14], + [0.001, 0.0, 0.946, 0.053], + [0.0, 0.0, 0.243, 0.757], + [0.04, 0.759, 0.007, 0.194], + [0.873, 0.004, 0.115, 0.008], + [0.176, 0.432, 0.196, 0.196], + [0.164, 0.308, 0.076, 0.452], + ], + FOXA2: [ + [0.029, 0.026, 0.011, 0.933], + [0.228, 0.021, 0.685, 0.066], + [0.03, 0.004, 0.003, 0.962], + [0.01, 0.0, 0.047, 0.943], + [0.011, 0.001, 0.311, 0.678], + [0.589, 0.012, 0.376, 0.023], + [0.037, 0.6, 0.052, 0.311], + [0.309, 0.221, 0.029, 0.441], + ], + STAT1: [ + [0.012, 0.034, 0.011, 0.942], + [0.017, 0.0, 0.109, 0.874], + [0.195, 0.759, 0.016, 0.029], + [0.048, 0.623, 0.032, 0.297], + [0.457, 0.183, 0.359, 0.002], + [0.255, 0.007, 0.727, 0.01], + [0.017, 0.006, 0.899, 0.077], + [0.999, 0.0, 0.001, 0.0], + [0.98, 0.0, 0.015, 0.004], + ], + EN1: [ + [0.053, 0.073, 0.0, 0.873], + [0.899, 0.005, 0.056, 0.04], + [1.0, 0.0, 0.0, 0.0], + [0.0, 0.001, 0.0, 0.999], + [0.051, 0.047, 0.162, 0.741], + [0.705, 0.0, 0.295, 0.0], + ], + NFIC: [ + [0.061, 0.381, 0.041, 0.517], + [0.017, 0.007, 0.081, 0.895], + [0.0, 0.0, 0.999, 0.0], + [0.014, 0.0, 0.981, 0.005], + [0.228, 0.724, 0.035, 0.013], + [0.437, 0.208, 0.065, 0.29], + [0.191, 0.334, 0.23, 0.245], + [0.252, 0.244, 0.248, 0.256], + [0.242, 0.234, 0.332, 0.192], + [0.286, 0.067, 0.191, 0.455], + [0.003, 0.024, 0.758, 0.216], + [0.003, 0.995, 0.0, 0.002], + [0.0, 1.0, 0.0, 0.0], + [0.888, 0.082, 0.008, 0.022], + [0.509, 0.045, 0.381, 0.065], + ], + ZBTB48: [ + [0.021, 0.399, 0.054, 0.525], + [0.324, 0.24, 0.032, 0.403], + [0.983, 0.001, 0.015, 0.001], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.004, 0.996, 0.0], + [0.77, 0.064, 0.146, 0.02], + [0.09, 0.405, 0.168, 0.337], + [0.1, 0.649, 0.036, 0.214], + ], + TCF7: [ + [0.655, 0.044, 0.171, 0.129], + [0.024, 0.428, 0.5, 0.048], + [0.608, 0.023, 0.004, 0.366], + [0.094, 0.013, 0.001, 0.892], + [0.044, 0.799, 0.143, 0.014], + [0.988, 0.0, 0.0, 0.012], + [0.933, 0.017, 0.048, 0.002], + [0.95, 0.0, 0.019, 0.031], + [0.122, 0.048, 0.819, 0.01], + ], + ZNF274: [ + [0.161, 0.306, 0.064, 0.468], + [0.644, 0.084, 0.105, 0.167], + [0.352, 0.17, 0.358, 0.119], + [0.23, 0.238, 0.22, 0.313], + [0.257, 0.36, 0.156, 0.227], + [0.439, 0.14, 0.266, 0.155], + [0.189, 0.15, 0.32, 0.342], + [0.397, 0.106, 0.207, 0.29], + [0.276, 0.27, 0.27, 0.183], + [0.18, 0.358, 0.174, 0.287], + [0.267, 0.051, 0.118, 0.564], + [0.086, 0.514, 0.15, 0.25], + [0.534, 0.108, 0.096, 0.262], + [0.318, 0.235, 0.177, 0.27], + [0.421, 0.294, 0.183, 0.102], + [0.353, 0.338, 0.114, 0.195], + [0.157, 0.575, 0.084, 0.183], + [0.138, 0.033, 0.134, 0.696], + [0.165, 0.246, 0.169, 0.42], + [0.599, 0.131, 0.157, 0.113], + [0.292, 0.319, 0.125, 0.264], + [0.266, 0.121, 0.159, 0.454], + [0.408, 0.212, 0.311, 0.068], + [0.468, 0.137, 0.24, 0.155], + [0.656, 0.092, 0.161, 0.092], + [0.185, 0.654, 0.046, 0.115], + [0.749, 0.038, 0.07, 0.143], + [0.15, 0.113, 0.111, 0.626], + [0.331, 0.37, 0.234, 0.065], + [0.715, 0.016, 0.057, 0.212], + [0.188, 0.018, 0.78, 0.014], + [0.939, 0.006, 0.002, 0.053], + [0.0, 0.012, 0.988, 0.0], + [0.8, 0.0, 0.186, 0.014], + [0.99, 0.006, 0.0, 0.004], + [0.075, 0.541, 0.042, 0.343], + [0.02, 0.022, 0.03, 0.929], + [0.004, 0.956, 0.026, 0.014], + [0.929, 0.046, 0.0, 0.026], + [0.095, 0.319, 0.008, 0.578], + [0.873, 0.034, 0.042, 0.051], + [0.012, 0.919, 0.01, 0.059], + [0.192, 0.044, 0.024, 0.741], + [0.048, 0.02, 0.84, 0.092], + [0.199, 0.092, 0.597, 0.113], + [0.641, 0.13, 0.122, 0.108], + [0.09, 0.082, 0.62, 0.208], + [0.686, 0.081, 0.158, 0.075], + [0.265, 0.081, 0.542, 0.113], + [0.731, 0.043, 0.069, 0.156], + [0.66, 0.069, 0.164, 0.107], + [0.56, 0.097, 0.174, 0.17], + [0.124, 0.623, 0.124, 0.128], + [0.117, 0.595, 0.184, 0.105], + [0.295, 0.378, 0.107, 0.221], + [0.209, 0.085, 0.091, 0.615], + [0.611, 0.071, 0.075, 0.242], + [0.085, 0.336, 0.152, 0.427], + [0.417, 0.07, 0.378, 0.135], + [0.629, 0.134, 0.081, 0.156], + [0.682, 0.074, 0.111, 0.133], + [0.115, 0.079, 0.064, 0.742], + [0.12, 0.046, 0.695, 0.138], + [0.13, 0.175, 0.159, 0.536], + ], + RARA: [ + [0.402, 0.114, 0.412, 0.073], + [0.71, 0.029, 0.259, 0.002], + [0.023, 0.014, 0.962, 0.001], + [0.014, 0.002, 0.789, 0.195], + [0.006, 0.001, 0.117, 0.876], + [0.0, 0.979, 0.004, 0.017], + [0.851, 0.001, 0.148, 0.001], + ], + MAFF: [ + [0.501, 0.077, 0.151, 0.27], + [0.494, 0.062, 0.11, 0.334], + [0.48, 0.078, 0.058, 0.384], + [0.292, 0.173, 0.179, 0.356], + [0.086, 0.044, 0.014, 0.856], + [0.0, 0.001, 0.999, 0.0], + [0.118, 0.882, 0.0, 0.0], + [0.002, 0.003, 0.003, 0.992], + [0.0, 0.001, 0.945, 0.054], + [0.99, 0.001, 0.002, 0.007], + [0.056, 0.478, 0.254, 0.212], + [0.183, 0.154, 0.109, 0.554], + ], + ATF2: [ + [0.752, 0.031, 0.208, 0.009], + [0.002, 0.013, 0.0, 0.985], + [0.001, 0.007, 0.846, 0.146], + [0.992, 0.001, 0.002, 0.005], + [0.005, 0.502, 0.123, 0.37], + [0.231, 0.127, 0.642, 0.0], + [0.036, 0.031, 0.001, 0.933], + [0.235, 0.748, 0.011, 0.005], + [0.979, 0.0, 0.011, 0.009], + [0.009, 0.193, 0.031, 0.767], + ], + FOXH1: [ + [0.169, 0.038, 0.06, 0.733], + [0.016, 0.0, 0.984, 0.0], + [0.022, 0.078, 0.028, 0.873], + [0.02, 0.001, 0.749, 0.229], + [0.03, 0.0, 0.683, 0.287], + [0.96, 0.007, 0.002, 0.031], + [0.09, 0.043, 0.044, 0.823], + [0.025, 0.092, 0.005, 0.878], + ], + ESR1: [ + [0.795, 0.017, 0.185, 0.003], + [0.007, 0.013, 0.768, 0.211], + [0.004, 0.0, 0.991, 0.004], + [0.01, 0.027, 0.089, 0.874], + [0.0, 0.969, 0.018, 0.013], + [0.961, 0.001, 0.034, 0.003], + ], + MAZ: [ + [0.052, 0.704, 0.016, 0.228], + [0.002, 0.998, 0.0, 0.0], + [0.0, 0.993, 0.007, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.031, 0.0, 0.465, 0.504], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.993, 0.007, 0.0], + [0.007, 0.819, 0.023, 0.152], + ], + NR3C1: [ + [0.421, 0.064, 0.364, 0.151], + [0.185, 0.024, 0.671, 0.12], + [0.426, 0.146, 0.239, 0.189], + [0.835, 0.02, 0.093, 0.053], + [0.005, 0.913, 0.033, 0.05], + [0.635, 0.011, 0.177, 0.178], + [0.162, 0.243, 0.303, 0.292], + [0.326, 0.16, 0.213, 0.302], + [0.342, 0.28, 0.23, 0.147], + [0.194, 0.137, 0.005, 0.664], + [0.011, 0.01, 0.979, 0.0], + [0.054, 0.066, 0.048, 0.832], + [0.27, 0.2, 0.19, 0.34], + [0.119, 0.735, 0.023, 0.123], + [0.172, 0.236, 0.093, 0.5], + ], + ZNF281: [ + [0.048, 0.856, 0.043, 0.054], + [0.043, 0.876, 0.015, 0.066], + [0.005, 0.985, 0.008, 0.002], + [0.091, 0.795, 0.004, 0.11], + [0.184, 0.012, 0.121, 0.684], + [0.0, 0.994, 0.002, 0.003], + [0.001, 0.995, 0.001, 0.002], + [0.001, 0.97, 0.002, 0.028], + [0.002, 0.984, 0.002, 0.012], + [0.003, 0.977, 0.01, 0.011], + [0.459, 0.218, 0.13, 0.192], + [0.187, 0.569, 0.084, 0.159], + [0.11, 0.613, 0.1, 0.177], + [0.134, 0.568, 0.127, 0.171], + [0.138, 0.526, 0.125, 0.212], + ], + TBX3: [ + [0.061, 0.202, 0.023, 0.713], + [0.284, 0.302, 0.404, 0.01], + [0.736, 0.081, 0.092, 0.091], + [0.0, 1.0, 0.0, 0.0], + [0.927, 0.005, 0.046, 0.022], + [0.006, 0.973, 0.02, 0.001], + [0.135, 0.686, 0.004, 0.175], + [0.083, 0.129, 0.061, 0.726], + ], + USF1: [ + [0.243, 0.048, 0.708, 0.001], + [0.037, 0.155, 0.065, 0.743], + [0.0, 1.0, 0.0, 0.0], + [0.994, 0.001, 0.0, 0.005], + [0.001, 0.672, 0.101, 0.227], + [0.327, 0.085, 0.588, 0.0], + [0.015, 0.012, 0.011, 0.962], + [0.0, 0.0, 0.997, 0.003], + [0.454, 0.134, 0.331, 0.08], + [0.06, 0.498, 0.137, 0.305], + ], + MXI1: [ + [0.023, 0.907, 0.065, 0.005], + [0.792, 0.0, 0.184, 0.024], + [0.002, 0.915, 0.0, 0.083], + [0.146, 0.0, 0.853, 0.001], + [0.044, 0.1, 0.008, 0.847], + [0.0, 0.01, 0.952, 0.038], + ], + OTX2: [ + [0.225, 0.331, 0.014, 0.43], + [0.189, 0.022, 0.002, 0.787], + [0.923, 0.005, 0.056, 0.017], + [0.991, 0.007, 0.001, 0.0], + [0.006, 0.004, 0.08, 0.91], + [0.022, 0.957, 0.015, 0.005], + [0.014, 0.762, 0.002, 0.223], + [0.118, 0.423, 0.08, 0.379], + ], + ZIC5: [ + [0.123, 0.75, 0.12, 0.006], + [0.314, 0.262, 0.215, 0.208], + [0.003, 0.981, 0.002, 0.014], + [0.503, 0.296, 0.102, 0.099], + [0.069, 0.162, 0.766, 0.003], + [0.005, 0.878, 0.005, 0.112], + [0.598, 0.002, 0.391, 0.009], + [0.005, 0.002, 0.968, 0.024], + [0.0, 0.0, 1.0, 0.0], + [0.19, 0.034, 0.674, 0.101], + [0.078, 0.045, 0.833, 0.044], + [0.04, 0.033, 0.845, 0.083], + [0.005, 0.469, 0.153, 0.373], + [0.143, 0.583, 0.221, 0.053], + ], + ZFP42: [ + [0.231, 0.1, 0.587, 0.082], + [0.154, 0.05, 0.731, 0.066], + [0.106, 0.605, 0.242, 0.048], + [0.581, 0.309, 0.082, 0.028], + [0.017, 0.017, 0.882, 0.084], + [0.099, 0.861, 0.016, 0.025], + [0.0, 1.0, 0.0, 0.0], + [0.999, 0.0, 0.001, 0.0], + [0.0, 0.0, 0.0, 1.0], + [0.058, 0.233, 0.113, 0.596], + [0.079, 0.047, 0.069, 0.805], + [0.049, 0.14, 0.008, 0.803], + ], + FOXP1: [ + [0.453, 0.054, 0.089, 0.405], + [0.513, 0.173, 0.197, 0.118], + [0.289, 0.024, 0.411, 0.276], + [0.215, 0.087, 0.686, 0.011], + [0.105, 0.007, 0.117, 0.771], + [0.863, 0.122, 0.011, 0.005], + [0.901, 0.084, 0.015, 0.0], + [0.927, 0.019, 0.054, 0.0], + [0.0, 0.839, 0.033, 0.128], + [0.865, 0.044, 0.087, 0.004], + ], + MEIS1: [ + [0.228, 0.029, 0.102, 0.641], + [0.186, 0.0, 0.752, 0.062], + [0.864, 0.001, 0.088, 0.047], + [0.022, 0.038, 0.146, 0.794], + [0.075, 0.011, 0.11, 0.803], + [0.129, 0.055, 0.196, 0.62], + [0.905, 0.009, 0.067, 0.019], + [0.091, 0.146, 0.033, 0.73], + [0.182, 0.046, 0.461, 0.311], + ], + CLOCK: [ + [0.019, 0.98, 0.0, 0.0], + [0.99, 0.009, 0.0, 0.001], + [0.0, 0.973, 0.018, 0.009], + [0.162, 0.061, 0.772, 0.005], + [0.009, 0.031, 0.002, 0.958], + [0.0, 0.002, 0.941, 0.057], + [0.026, 0.316, 0.274, 0.384], + ], + PBX3: [ + [0.138, 0.019, 0.06, 0.783], + [0.019, 0.0, 0.98, 0.001], + [0.993, 0.001, 0.001, 0.004], + [0.05, 0.218, 0.287, 0.445], + [0.07, 0.023, 0.106, 0.801], + [0.036, 0.0, 0.943, 0.021], + [0.736, 0.001, 0.263, 0.0], + [0.01, 0.779, 0.003, 0.208], + [0.595, 0.013, 0.239, 0.153], + [0.093, 0.138, 0.622, 0.148], + ], + ZNF586: [ + [0.117, 0.064, 0.499, 0.32], + [0.077, 0.096, 0.099, 0.728], + [0.102, 0.663, 0.077, 0.158], + [0.716, 0.103, 0.1, 0.081], + [0.176, 0.067, 0.689, 0.068], + [0.727, 0.054, 0.146, 0.072], + [0.197, 0.06, 0.68, 0.063], + [0.584, 0.067, 0.279, 0.07], + [0.136, 0.426, 0.088, 0.35], + [0.083, 0.704, 0.071, 0.142], + [0.081, 0.11, 0.055, 0.755], + [0.076, 0.086, 0.058, 0.78], + [0.097, 0.512, 0.078, 0.313], + [0.512, 0.121, 0.271, 0.097], + [0.195, 0.347, 0.102, 0.356], + [0.34, 0.065, 0.511, 0.085], + [0.13, 0.077, 0.73, 0.063], + [0.112, 0.69, 0.098, 0.1], + [0.763, 0.086, 0.089, 0.061], + [0.143, 0.072, 0.724, 0.06], + [0.068, 0.719, 0.112, 0.101], + [0.07, 0.751, 0.053, 0.126], + [0.074, 0.754, 0.05, 0.122], + [0.064, 0.757, 0.057, 0.123], + [0.068, 0.102, 0.045, 0.785], + [0.067, 0.743, 0.058, 0.132], + [0.057, 0.766, 0.046, 0.132], + [0.074, 0.758, 0.055, 0.113], + [0.795, 0.074, 0.069, 0.063], + [0.079, 0.075, 0.044, 0.802], + [0.079, 0.757, 0.051, 0.113], + [0.837, 0.077, 0.048, 0.037], + [0.108, 0.759, 0.043, 0.09], + [0.839, 0.056, 0.065, 0.04], + [0.112, 0.03, 0.811, 0.047], + [0.097, 0.044, 0.81, 0.049], + [0.053, 0.799, 0.065, 0.083], + [0.044, 0.823, 0.034, 0.099], + [0.077, 0.468, 0.048, 0.408], + [0.464, 0.038, 0.429, 0.07], + [0.097, 0.033, 0.826, 0.044], + [0.848, 0.026, 0.095, 0.03], + [0.078, 0.013, 0.874, 0.035], + [0.051, 0.026, 0.892, 0.032], + [0.07, 0.738, 0.073, 0.119], + [0.061, 0.776, 0.027, 0.136], + [0.051, 0.166, 0.016, 0.767], + [0.842, 0.035, 0.069, 0.054], + [0.098, 0.014, 0.878, 0.01], + [0.067, 0.003, 0.922, 0.008], + [0.9, 0.004, 0.087, 0.01], + [0.053, 0.003, 0.906, 0.039], + [0.057, 0.005, 0.907, 0.031], + [0.685, 0.056, 0.248, 0.011], + [0.771, 0.16, 0.019, 0.05], + [0.926, 0.022, 0.012, 0.04], + [0.794, 0.022, 0.157, 0.027], + [0.99, 0.003, 0.005, 0.003], + [0.828, 0.009, 0.141, 0.021], + [0.008, 0.052, 0.022, 0.918], + [0.03, 0.0, 0.957, 0.013], + [0.103, 0.022, 0.763, 0.112], + [0.013, 0.043, 0.058, 0.886], + [0.063, 0.04, 0.046, 0.851], + ], + GRHL1: [ + [0.596, 0.071, 0.174, 0.158], + [0.583, 0.055, 0.164, 0.198], + [0.014, 0.703, 0.27, 0.013], + [0.128, 0.391, 0.02, 0.461], + [0.231, 0.093, 0.358, 0.318], + [0.098, 0.028, 0.873, 0.001], + [0.281, 0.318, 0.063, 0.337], + [0.342, 0.348, 0.092, 0.217], + [0.464, 0.117, 0.233, 0.187], + [0.652, 0.011, 0.257, 0.081], + [0.801, 0.001, 0.138, 0.061], + [0.0, 1.0, 0.0, 0.0], + [0.259, 0.456, 0.016, 0.269], + [0.276, 0.009, 0.524, 0.191], + [0.0, 0.032, 0.968, 0.0], + [0.185, 0.127, 0.012, 0.677], + [0.146, 0.183, 0.023, 0.649], + [0.17, 0.226, 0.137, 0.468], + [0.217, 0.176, 0.278, 0.33], + [0.236, 0.17, 0.331, 0.263], + [0.107, 0.542, 0.139, 0.212], + ], + ZSCAN29: [ + [0.164, 0.078, 0.554, 0.204], + [0.27, 0.26, 0.199, 0.27], + [0.096, 0.623, 0.078, 0.203], + [0.258, 0.276, 0.125, 0.341], + [0.068, 0.079, 0.781, 0.073], + [0.003, 0.285, 0.006, 0.706], + [0.347, 0.017, 0.6, 0.036], + [0.023, 0.001, 0.103, 0.874], + [0.875, 0.003, 0.122, 0.0], + [0.035, 0.063, 0.893, 0.01], + [0.895, 0.066, 0.02, 0.019], + [0.009, 0.957, 0.002, 0.032], + ], + TFAP4: [ + [0.461, 0.211, 0.294, 0.034], + [0.257, 0.418, 0.081, 0.244], + [0.0, 1.0, 0.0, 0.0], + [0.913, 0.0, 0.087, 0.0], + [0.0, 0.127, 0.693, 0.18], + [0.166, 0.767, 0.066, 0.0], + [0.0, 0.079, 0.0, 0.921], + [0.0, 0.0, 1.0, 0.0], + ], + TCF3: [ + [0.298, 0.353, 0.341, 0.008], + [0.0, 1.0, 0.0, 0.0], + [0.999, 0.0, 0.001, 0.0], + [0.0, 0.295, 0.498, 0.207], + [0.002, 0.998, 0.0, 0.0], + [0.0, 0.001, 0.001, 0.998], + [0.0, 0.0, 1.0, 0.0], + [0.015, 0.367, 0.351, 0.267], + ], + MAFB: [ + [0.102, 0.172, 0.571, 0.156], + [0.184, 0.562, 0.092, 0.162], + [0.215, 0.224, 0.085, 0.476], + [0.173, 0.128, 0.486, 0.213], + [0.612, 0.097, 0.098, 0.193], + [0.123, 0.33, 0.499, 0.048], + [0.022, 0.018, 0.0, 0.96], + [0.085, 0.903, 0.011, 0.0], + [0.935, 0.01, 0.004, 0.051], + [0.038, 0.02, 0.834, 0.108], + [0.009, 0.934, 0.047, 0.011], + [0.81, 0.042, 0.028, 0.121], + ], + AHRR: [ + [0.126, 0.173, 0.134, 0.566], + [0.035, 0.091, 0.739, 0.136], + [0.001, 0.989, 0.0, 0.01], + [0.061, 0.006, 0.933, 0.0], + [0.002, 0.0, 0.0, 0.998], + [0.002, 0.001, 0.993, 0.003], + [0.219, 0.599, 0.016, 0.166], + ], + CEBPD: [ + [0.528, 0.1, 0.36, 0.013], + [0.001, 0.0, 0.0, 0.999], + [0.001, 0.0, 0.343, 0.656], + [0.36, 0.002, 0.397, 0.241], + [0.105, 0.455, 0.082, 0.359], + [0.144, 0.022, 0.831, 0.003], + [0.023, 0.927, 0.0, 0.049], + [1.0, 0.0, 0.0, 0.0], + [1.0, 0.0, 0.0, 0.0], + [0.018, 0.29, 0.086, 0.606], + ], + BCL6B: [ + [0.189, 0.201, 0.1, 0.51], + [0.145, 0.189, 0.33, 0.336], + [0.25, 0.221, 0.141, 0.389], + [0.195, 0.246, 0.182, 0.377], + [0.308, 0.126, 0.131, 0.434], + [0.244, 0.223, 0.15, 0.383], + [0.335, 0.148, 0.197, 0.32], + [0.21, 0.188, 0.259, 0.343], + [0.18, 0.301, 0.137, 0.382], + [0.219, 0.184, 0.146, 0.452], + [0.145, 0.063, 0.613, 0.179], + [0.069, 0.884, 0.046, 0.0], + [0.096, 0.064, 0.001, 0.839], + [0.012, 0.2, 0.086, 0.702], + [0.005, 0.003, 0.031, 0.96], + [0.003, 0.852, 0.035, 0.11], + [0.052, 0.122, 0.077, 0.749], + [0.896, 0.087, 0.014, 0.002], + [0.156, 0.024, 0.598, 0.222], + [0.096, 0.019, 0.625, 0.261], + ], + ZFP82: [ + [0.792, 0.032, 0.107, 0.069], + [0.773, 0.008, 0.187, 0.032], + [0.158, 0.013, 0.763, 0.067], + [0.836, 0.015, 0.143, 0.006], + [0.336, 0.015, 0.517, 0.132], + [0.824, 0.057, 0.103, 0.017], + [0.204, 0.067, 0.7, 0.029], + [0.752, 0.034, 0.162, 0.053], + [0.882, 0.019, 0.059, 0.04], + [0.038, 0.023, 0.013, 0.926], + [0.069, 0.218, 0.063, 0.649], + [0.7, 0.103, 0.109, 0.088], + [0.248, 0.103, 0.626, 0.023], + [0.113, 0.088, 0.132, 0.666], + [0.284, 0.074, 0.597, 0.046], + [0.897, 0.055, 0.013, 0.036], + [0.774, 0.015, 0.113, 0.099], + [0.18, 0.501, 0.044, 0.275], + [0.09, 0.052, 0.036, 0.822], + [0.065, 0.002, 0.786, 0.147], + [0.124, 0.0, 0.876, 0.0], + [0.937, 0.0, 0.046, 0.017], + [0.757, 0.021, 0.143, 0.08], + [0.308, 0.013, 0.603, 0.077], + ], + SP1: [ + [0.15, 0.079, 0.746, 0.024], + [0.101, 0.021, 0.785, 0.093], + [0.106, 0.0, 0.893, 0.001], + [0.025, 0.0, 0.973, 0.002], + [0.009, 0.005, 0.987, 0.0], + [0.393, 0.506, 0.0, 0.101], + [0.082, 0.002, 0.863, 0.053], + [0.023, 0.068, 0.834, 0.076], + [0.068, 0.028, 0.797, 0.107], + [0.101, 0.091, 0.737, 0.071], + [0.213, 0.531, 0.107, 0.149], + ], + ZSCAN31: [ + [0.017, 0.004, 0.972, 0.008], + [0.082, 0.841, 0.001, 0.076], + [0.082, 0.767, 0.008, 0.143], + [0.002, 0.981, 0.012, 0.004], + [0.019, 0.311, 0.009, 0.66], + [0.021, 0.0, 0.974, 0.005], + [0.03, 0.933, 0.012, 0.025], + [0.208, 0.033, 0.271, 0.488], + [0.049, 0.053, 0.762, 0.135], + [0.099, 0.751, 0.067, 0.083], + [0.176, 0.505, 0.102, 0.217], + ], + RUNX1: [ + [0.524, 0.124, 0.234, 0.118], + [0.63, 0.1, 0.269, 0.001], + [0.003, 0.982, 0.004, 0.011], + [0.001, 0.963, 0.001, 0.035], + [0.819, 0.003, 0.136, 0.042], + [0.0, 0.997, 0.003, 0.0], + [0.721, 0.077, 0.109, 0.092], + ], + SIX1: [ + [0.228, 0.025, 0.691, 0.056], + [0.059, 0.037, 0.393, 0.511], + [0.527, 0.179, 0.196, 0.098], + [0.0, 0.002, 0.0, 0.998], + [0.088, 0.7, 0.01, 0.202], + [0.648, 0.084, 0.164, 0.105], + [0.337, 0.064, 0.363, 0.235], + [0.41, 0.054, 0.517, 0.019], + [0.001, 0.001, 0.001, 0.998], + [0.031, 0.002, 0.061, 0.906], + [0.408, 0.026, 0.04, 0.526], + [0.0, 0.995, 0.001, 0.004], + [0.587, 0.208, 0.013, 0.191], + ], + ZNF143: [ + [0.333, 0.086, 0.458, 0.124], + [0.268, 0.041, 0.486, 0.205], + [0.017, 0.01, 0.946, 0.027], + [0.21, 0.372, 0.38, 0.038], + [0.587, 0.275, 0.061, 0.078], + [0.056, 0.161, 0.112, 0.672], + [0.022, 0.242, 0.301, 0.434], + [0.239, 0.593, 0.12, 0.048], + [0.011, 0.111, 0.004, 0.873], + [0.004, 0.017, 0.977, 0.003], + [0.001, 0.008, 0.989, 0.002], + [0.007, 0.002, 0.985, 0.007], + [0.724, 0.044, 0.054, 0.178], + [0.551, 0.097, 0.27, 0.082], + ], + FOXO3: [ + [0.349, 0.199, 0.412, 0.041], + [0.433, 0.095, 0.196, 0.277], + [0.082, 0.007, 0.888, 0.023], + [0.053, 0.285, 0.096, 0.565], + [0.655, 0.345, 0.0, 0.0], + [0.873, 0.068, 0.058, 0.0], + [0.78, 0.026, 0.165, 0.03], + [0.0, 0.833, 0.015, 0.152], + [0.87, 0.042, 0.072, 0.016], + ], + ETV5: [ + [0.013, 0.72, 0.089, 0.178], + [0.13, 0.042, 0.016, 0.812], + [0.007, 0.006, 0.032, 0.955], + [0.0, 0.994, 0.005, 0.0], + [0.008, 0.989, 0.0, 0.003], + [0.007, 0.029, 0.368, 0.596], + [0.02, 0.188, 0.739, 0.053], + ], + DDIT3: [ + [0.562, 0.138, 0.241, 0.059], + [0.007, 0.004, 0.0, 0.989], + [0.016, 0.001, 0.342, 0.641], + [0.452, 0.005, 0.308, 0.235], + [0.065, 0.83, 0.085, 0.02], + [0.737, 0.099, 0.122, 0.042], + [0.085, 0.004, 0.016, 0.895], + [0.03, 0.967, 0.002, 0.001], + [0.957, 0.002, 0.017, 0.024], + [0.016, 0.209, 0.23, 0.544], + ], + FOXE1: [ + [0.682, 0.031, 0.009, 0.279], + [0.615, 0.074, 0.196, 0.114], + [0.497, 0.095, 0.219, 0.189], + [0.522, 0.109, 0.324, 0.045], + [0.201, 0.214, 0.014, 0.571], + [0.916, 0.078, 0.006, 0.0], + [0.995, 0.0, 0.005, 0.001], + [0.985, 0.009, 0.001, 0.005], + [0.0, 0.891, 0.002, 0.107], + [0.86, 0.048, 0.004, 0.088], + [0.513, 0.141, 0.261, 0.084], + [0.527, 0.114, 0.108, 0.251], + ], + ZNF329: [ + [0.227, 0.057, 0.623, 0.092], + [0.11, 0.623, 0.139, 0.127], + [0.281, 0.236, 0.271, 0.211], + [0.078, 0.629, 0.237, 0.055], + [0.039, 0.94, 0.003, 0.018], + [0.033, 0.145, 0.094, 0.727], + [0.092, 0.043, 0.681, 0.184], + [0.041, 0.012, 0.935, 0.011], + [0.866, 0.036, 0.037, 0.061], + [0.07, 0.047, 0.179, 0.704], + [0.067, 0.818, 0.077, 0.038], + [0.348, 0.485, 0.12, 0.047], + [0.661, 0.138, 0.094, 0.107], + [0.195, 0.103, 0.638, 0.064], + [0.028, 0.882, 0.055, 0.035], + [0.063, 0.49, 0.098, 0.349], + [0.395, 0.131, 0.33, 0.144], + [0.109, 0.157, 0.166, 0.568], + [0.368, 0.107, 0.381, 0.144], + [0.073, 0.863, 0.028, 0.036], + [0.019, 0.817, 0.125, 0.039], + [0.027, 0.073, 0.162, 0.738], + [0.076, 0.027, 0.861, 0.036], + [0.723, 0.149, 0.1, 0.027], + [0.697, 0.13, 0.08, 0.093], + [0.137, 0.165, 0.625, 0.073], + [0.041, 0.576, 0.194, 0.189], + [0.095, 0.555, 0.111, 0.239], + ], + GATA3: [ + [0.037, 0.068, 0.007, 0.888], + [0.047, 0.0, 0.0, 0.953], + [0.987, 0.0, 0.0, 0.013], + [0.001, 0.0, 0.0, 0.999], + [0.0, 0.998, 0.002, 0.0], + [0.268, 0.003, 0.02, 0.709], + ], + TFAP2C: [ + [0.17, 0.077, 0.659, 0.095], + [0.017, 0.615, 0.327, 0.041], + [0.001, 0.999, 0.0, 0.0], + [0.0, 0.921, 0.001, 0.079], + [0.043, 0.276, 0.049, 0.632], + [0.096, 0.311, 0.537, 0.055], + [0.515, 0.075, 0.396, 0.013], + [0.112, 0.0, 0.888, 0.0], + [0.001, 0.0, 0.999, 0.0], + [0.036, 0.656, 0.282, 0.025], + ], + KLF4: [ + [0.174, 0.026, 0.795, 0.005], + [0.0, 0.0, 1.0, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.01, 0.723, 0.0, 0.268], + [0.028, 0.0, 0.966, 0.007], + [0.042, 0.084, 0.466, 0.408], + [0.021, 0.039, 0.898, 0.043], + [0.069, 0.093, 0.727, 0.112], + [0.124, 0.507, 0.102, 0.267], + ], + AR: [ + [0.352, 0.093, 0.078, 0.477], + [0.468, 0.12, 0.278, 0.133], + [0.438, 0.063, 0.163, 0.337], + [0.305, 0.087, 0.506, 0.102], + [0.109, 0.323, 0.027, 0.541], + [0.778, 0.17, 0.007, 0.046], + [0.733, 0.183, 0.021, 0.063], + [0.825, 0.03, 0.072, 0.073], + [0.001, 0.65, 0.07, 0.279], + [0.707, 0.088, 0.053, 0.152], + [0.373, 0.193, 0.2, 0.234], + [0.409, 0.219, 0.158, 0.214], + [0.392, 0.236, 0.16, 0.213], + [0.472, 0.153, 0.175, 0.2], + [0.526, 0.035, 0.314, 0.125], + [0.165, 0.006, 0.721, 0.108], + [0.507, 0.154, 0.101, 0.237], + [0.877, 0.013, 0.058, 0.052], + [0.006, 0.822, 0.047, 0.126], + [0.683, 0.02, 0.136, 0.161], + ], + ZNF331: [ + [0.529, 0.146, 0.207, 0.118], + [0.656, 0.095, 0.146, 0.103], + [0.345, 0.097, 0.486, 0.072], + [0.772, 0.069, 0.12, 0.038], + [0.663, 0.137, 0.163, 0.038], + [0.104, 0.634, 0.125, 0.138], + [0.125, 0.621, 0.109, 0.144], + [0.409, 0.186, 0.255, 0.151], + [0.157, 0.579, 0.097, 0.167], + [0.134, 0.699, 0.044, 0.123], + [0.081, 0.662, 0.043, 0.215], + [0.494, 0.042, 0.078, 0.386], + [0.065, 0.008, 0.909, 0.018], + [0.006, 0.976, 0.003, 0.016], + [0.277, 0.046, 0.025, 0.651], + [0.068, 0.013, 0.904, 0.015], + [0.976, 0.003, 0.013, 0.008], + [0.117, 0.003, 0.858, 0.023], + [0.008, 0.97, 0.004, 0.019], + [0.131, 0.771, 0.002, 0.096], + [0.051, 0.8, 0.031, 0.118], + [0.538, 0.076, 0.041, 0.344], + [0.151, 0.044, 0.625, 0.18], + [0.06, 0.585, 0.076, 0.28], + [0.081, 0.771, 0.034, 0.114], + ], + ZNF563: [ + [0.191, 0.133, 0.528, 0.148], + [0.094, 0.083, 0.707, 0.115], + [0.235, 0.067, 0.517, 0.181], + [0.182, 0.335, 0.299, 0.184], + [0.001, 0.04, 0.018, 0.942], + [0.006, 0.981, 0.005, 0.008], + [0.304, 0.49, 0.048, 0.159], + [0.103, 0.179, 0.178, 0.54], + [0.145, 0.235, 0.359, 0.262], + [0.435, 0.13, 0.245, 0.191], + [0.112, 0.585, 0.214, 0.09], + [0.186, 0.37, 0.041, 0.403], + [0.207, 0.012, 0.728, 0.053], + [0.031, 0.083, 0.738, 0.148], + [0.028, 0.903, 0.048, 0.021], + [0.611, 0.261, 0.043, 0.086], + [0.379, 0.173, 0.393, 0.055], + [0.01, 0.909, 0.009, 0.072], + [0.229, 0.191, 0.233, 0.347], + [0.058, 0.116, 0.612, 0.213], + ], + ZNF528: [ + [0.531, 0.1, 0.253, 0.116], + [0.255, 0.069, 0.539, 0.137], + [0.09, 0.022, 0.863, 0.025], + [0.093, 0.009, 0.888, 0.011], + [0.965, 0.01, 0.018, 0.007], + [0.859, 0.03, 0.087, 0.024], + [0.007, 0.004, 0.974, 0.015], + [0.112, 0.342, 0.129, 0.417], + [0.184, 0.793, 0.009, 0.014], + [0.845, 0.014, 0.137, 0.004], + [0.064, 0.188, 0.032, 0.716], + [0.008, 0.065, 0.022, 0.905], + [0.025, 0.059, 0.21, 0.705], + [0.019, 0.919, 0.004, 0.058], + [0.019, 0.261, 0.014, 0.707], + ], + MECOM: [ + [0.027, 0.071, 0.058, 0.845], + [0.028, 0.006, 0.0, 0.966], + [0.903, 0.027, 0.061, 0.009], + [0.022, 0.017, 0.046, 0.915], + [0.0, 0.964, 0.036, 0.0], + [0.266, 0.018, 0.055, 0.66], + ], + STAT5B: [ + [0.006, 0.054, 0.021, 0.919], + [0.111, 0.012, 0.095, 0.781], + [0.154, 0.788, 0.016, 0.042], + [0.084, 0.64, 0.008, 0.268], + [0.337, 0.012, 0.452, 0.199], + [0.35, 0.087, 0.46, 0.103], + [0.073, 0.011, 0.756, 0.16], + [0.836, 0.04, 0.071, 0.053], + [0.925, 0.018, 0.057, 0.0], + [0.56, 0.159, 0.227, 0.054], + ], + ZNF436: [ + [0.216, 0.128, 0.576, 0.08], + [0.102, 0.462, 0.062, 0.375], + [0.028, 0.77, 0.022, 0.18], + [0.564, 0.1, 0.19, 0.146], + [0.015, 0.935, 0.007, 0.043], + [0.001, 0.818, 0.002, 0.179], + [0.05, 0.017, 0.039, 0.894], + [0.007, 0.976, 0.003, 0.014], + [0.004, 0.853, 0.001, 0.142], + [0.029, 0.033, 0.015, 0.923], + [0.022, 0.921, 0.014, 0.042], + [0.041, 0.874, 0.002, 0.083], + [0.793, 0.019, 0.138, 0.05], + [0.107, 0.008, 0.788, 0.098], + [0.019, 0.003, 0.976, 0.002], + [0.84, 0.093, 0.059, 0.009], + [0.921, 0.007, 0.051, 0.02], + [0.001, 0.001, 0.995, 0.002], + [0.027, 0.753, 0.062, 0.159], + [0.02, 0.935, 0.004, 0.041], + [0.031, 0.411, 0.011, 0.546], + [0.044, 0.101, 0.059, 0.796], + [0.006, 0.938, 0.006, 0.05], + [0.029, 0.837, 0.02, 0.113], + [0.133, 0.454, 0.085, 0.328], + [0.124, 0.039, 0.311, 0.526], + [0.112, 0.059, 0.795, 0.033], + [0.657, 0.16, 0.096, 0.087], + [0.068, 0.343, 0.049, 0.54], + [0.08, 0.262, 0.117, 0.542], + [0.204, 0.285, 0.227, 0.284], + [0.112, 0.622, 0.086, 0.18], + [0.139, 0.519, 0.064, 0.277], + [0.137, 0.541, 0.094, 0.228], + ], + EGR3: [ + [0.233, 0.572, 0.08, 0.115], + [0.029, 0.965, 0.0, 0.006], + [0.402, 0.0, 0.306, 0.292], + [0.0, 1.0, 0.0, 0.0], + [0.0, 1.0, 0.0, 0.0], + [0.0, 0.988, 0.012, 0.001], + [0.654, 0.273, 0.072, 0.0], + [0.0, 1.0, 0.0, 0.0], + ], + NFAT5: [ + [0.112, 0.05, 0.767, 0.071], + [0.117, 0.145, 0.372, 0.366], + [0.351, 0.197, 0.163, 0.289], + [0.368, 0.265, 0.149, 0.218], + [0.284, 0.174, 0.206, 0.336], + [0.186, 0.12, 0.074, 0.62], + [0.027, 0.021, 0.056, 0.896], + [0.039, 0.039, 0.0, 0.922], + [0.056, 0.926, 0.005, 0.013], + [0.074, 0.917, 0.002, 0.006], + [0.479, 0.035, 0.26, 0.226], + [0.058, 0.456, 0.25, 0.237], + ], + ZNF121: [ + [0.156, 0.119, 0.107, 0.619], + [0.185, 0.106, 0.091, 0.619], + [0.187, 0.1, 0.1, 0.613], + [0.199, 0.105, 0.081, 0.615], + [0.195, 0.099, 0.094, 0.612], + [0.12, 0.091, 0.085, 0.705], + [0.106, 0.085, 0.09, 0.72], + [0.101, 0.081, 0.086, 0.732], + [0.079, 0.08, 0.094, 0.746], + [0.085, 0.083, 0.083, 0.75], + [0.079, 0.075, 0.137, 0.709], + [0.114, 0.074, 0.228, 0.584], + [0.147, 0.083, 0.09, 0.68], + [0.403, 0.059, 0.165, 0.372], + [0.151, 0.068, 0.71, 0.071], + [0.74, 0.051, 0.157, 0.052], + [0.156, 0.064, 0.734, 0.046], + [0.729, 0.077, 0.111, 0.083], + [0.083, 0.447, 0.106, 0.364], + [0.485, 0.033, 0.43, 0.052], + [0.042, 0.022, 0.914, 0.021], + [0.179, 0.017, 0.764, 0.04], + [0.133, 0.024, 0.825, 0.018], + [0.023, 0.048, 0.028, 0.901], + [0.019, 0.94, 0.017, 0.024], + [0.023, 0.04, 0.033, 0.904], + [0.022, 0.443, 0.043, 0.492], + [0.437, 0.021, 0.513, 0.028], + [0.02, 0.953, 0.01, 0.017], + [0.044, 0.01, 0.015, 0.932], + [0.385, 0.406, 0.189, 0.02], + [0.036, 0.092, 0.021, 0.851], + [0.114, 0.082, 0.782, 0.023], + [0.011, 0.111, 0.015, 0.863], + [0.017, 0.033, 0.036, 0.915], + [0.0, 0.002, 0.997, 0.001], + [0.003, 0.839, 0.065, 0.094], + [0.008, 0.975, 0.007, 0.011], + [0.001, 0.991, 0.007, 0.001], + [0.85, 0.093, 0.002, 0.054], + [0.018, 0.002, 0.975, 0.005], + [0.027, 0.046, 0.81, 0.116], + [0.025, 0.864, 0.025, 0.085], + [0.036, 0.06, 0.036, 0.868], + [0.109, 0.047, 0.786, 0.059], + [0.123, 0.064, 0.757, 0.055], + [0.507, 0.069, 0.09, 0.333], + [0.077, 0.368, 0.475, 0.08], + [0.056, 0.071, 0.069, 0.804], + [0.102, 0.255, 0.463, 0.18], + [0.216, 0.469, 0.23, 0.085], + [0.801, 0.053, 0.092, 0.054], + [0.414, 0.073, 0.451, 0.062], + [0.058, 0.376, 0.078, 0.489], + [0.076, 0.082, 0.464, 0.379], + [0.091, 0.387, 0.445, 0.078], + [0.063, 0.588, 0.079, 0.27], + [0.225, 0.085, 0.283, 0.407], + [0.116, 0.3, 0.377, 0.207], + [0.269, 0.092, 0.534, 0.105], + [0.439, 0.191, 0.269, 0.1], + [0.076, 0.402, 0.071, 0.452], + [0.086, 0.451, 0.071, 0.393], + ], + NFATC2: [ + [0.535, 0.112, 0.254, 0.098], + [0.113, 0.136, 0.026, 0.725], + [0.002, 0.0, 0.998, 0.0], + [0.0, 0.0, 1.0, 0.0], + [0.998, 0.002, 0.0, 0.0], + [0.988, 0.0, 0.011, 0.0], + [0.793, 0.077, 0.021, 0.11], + [0.471, 0.238, 0.154, 0.137], + [0.443, 0.063, 0.093, 0.401], + ], + RELB: [ + [0.023, 0.035, 0.89, 0.051], + [0.004, 0.024, 0.965, 0.007], + [0.001, 0.014, 0.725, 0.261], + [0.456, 0.031, 0.459, 0.054], + [0.06, 0.506, 0.291, 0.142], + [0.007, 0.011, 0.004, 0.978], + [0.0, 0.031, 0.002, 0.967], + [0.012, 0.266, 0.015, 0.706], + [0.002, 0.868, 0.0, 0.13], + [0.051, 0.76, 0.063, 0.127], + ], + MEF2D: [ + [0.096, 0.079, 0.401, 0.424], + [0.026, 0.757, 0.101, 0.117], + [0.001, 0.026, 0.0, 0.973], + [0.974, 0.001, 0.01, 0.015], + [0.15, 0.004, 0.0, 0.846], + [0.203, 0.006, 0.006, 0.784], + [0.142, 0.048, 0.0, 0.81], + [0.276, 0.074, 0.008, 0.642], + [0.091, 0.019, 0.043, 0.848], + [0.758, 0.002, 0.237, 0.002], + [0.085, 0.033, 0.81, 0.072], + ], + ETV1: [ + [0.063, 0.764, 0.159, 0.014], + [0.512, 0.472, 0.015, 0.001], + [0.0, 0.0, 1.0, 0.0], + [0.003, 0.0, 0.997, 0.0], + [0.999, 0.0, 0.0, 0.001], + [0.827, 0.014, 0.008, 0.152], + [0.239, 0.061, 0.681, 0.018], + [0.091, 0.285, 0.141, 0.483], + ], + ZFP28: [ + [0.132, 0.048, 0.127, 0.693], + [0.067, 0.301, 0.087, 0.545], + [0.012, 0.003, 0.001, 0.984], + [0.0, 0.842, 0.0, 0.158], + [0.228, 0.205, 0.058, 0.508], + [0.615, 0.073, 0.142, 0.17], + [0.003, 0.158, 0.017, 0.822], + [0.025, 0.141, 0.013, 0.821], + [0.0, 0.019, 0.001, 0.98], + [0.0, 0.893, 0.0, 0.107], + [0.115, 0.272, 0.009, 0.605], + [0.025, 0.014, 0.023, 0.939], + [0.007, 0.693, 0.003, 0.297], + [0.188, 0.126, 0.05, 0.636], + [0.228, 0.078, 0.306, 0.389], + [0.231, 0.057, 0.464, 0.248], + [0.324, 0.051, 0.22, 0.405], + [0.191, 0.072, 0.581, 0.156], + [0.134, 0.079, 0.116, 0.671], + [0.141, 0.457, 0.204, 0.198], + [0.677, 0.069, 0.116, 0.138], + ], + ESRRA: [ + [0.518, 0.017, 0.461, 0.004], + [0.762, 0.14, 0.035, 0.062], + [0.001, 0.04, 0.959, 0.001], + [0.0, 0.0, 1.0, 0.0], + [0.039, 0.026, 0.005, 0.929], + [0.001, 0.913, 0.012, 0.075], + [0.91, 0.004, 0.086, 0.001], + ], + PAX5: [ + [0.011, 0.003, 0.86, 0.125], + [0.105, 0.162, 0.008, 0.725], + [0.0, 0.999, 0.0, 0.001], + [0.87, 0.0, 0.052, 0.079], + [0.052, 0.586, 0.029, 0.334], + [0.203, 0.016, 0.777, 0.004], + [0.003, 0.594, 0.379, 0.024], + [0.212, 0.245, 0.068, 0.475], + ], + TCF7L1: [ + [0.0, 0.928, 0.054, 0.018], + [0.003, 0.004, 0.001, 0.993], + [0.0, 0.007, 0.004, 0.989], + [0.018, 0.0, 0.01, 0.972], + [0.022, 0.102, 0.772, 0.104], + [0.898, 0.0, 0.005, 0.097], + [0.412, 0.027, 0.008, 0.552], + ], + ZBTB17: [ + [0.195, 0.22, 0.5, 0.085], + [0.182, 0.175, 0.484, 0.16], + [0.154, 0.124, 0.601, 0.121], + [0.198, 0.179, 0.163, 0.46], + [0.051, 0.107, 0.811, 0.031], + [0.026, 0.025, 0.898, 0.051], + [0.088, 0.08, 0.817, 0.015], + [0.009, 0.014, 0.921, 0.056], + [0.009, 0.009, 0.958, 0.024], + [0.431, 0.491, 0.016, 0.063], + [0.116, 0.021, 0.772, 0.091], + [0.024, 0.039, 0.899, 0.038], + [0.08, 0.033, 0.824, 0.063], + [0.04, 0.049, 0.873, 0.039], + [0.275, 0.513, 0.102, 0.11], + ], + ZNF260: [ + [0.018, 0.298, 0.034, 0.65], + [0.095, 0.785, 0.019, 0.101], + [0.052, 0.336, 0.034, 0.579], + [0.03, 0.029, 0.027, 0.914], + [0.026, 0.024, 0.033, 0.917], + [0.027, 0.026, 0.049, 0.898], + [0.187, 0.042, 0.096, 0.676], + [0.076, 0.197, 0.017, 0.711], + [0.859, 0.053, 0.042, 0.045], + [0.014, 0.18, 0.016, 0.79], + [0.154, 0.022, 0.661, 0.163], + [0.042, 0.002, 0.946, 0.009], + [0.003, 0.779, 0.019, 0.2], + [0.022, 0.032, 0.006, 0.941], + [0.028, 0.057, 0.886, 0.029], + [0.153, 0.697, 0.006, 0.144], + [0.809, 0.012, 0.175, 0.003], + [0.001, 0.004, 0.012, 0.982], + [0.918, 0.008, 0.026, 0.047], + [0.137, 0.101, 0.751, 0.011], + [0.003, 0.007, 0.014, 0.976], + [0.96, 0.005, 0.025, 0.011], + [0.002, 0.104, 0.016, 0.877], + [0.003, 0.004, 0.009, 0.984], + [0.0, 0.954, 0.003, 0.042], + [0.006, 0.945, 0.003, 0.046], + [0.861, 0.036, 0.055, 0.047], + [0.024, 0.148, 0.036, 0.792], + [0.094, 0.064, 0.53, 0.312], + [0.11, 0.068, 0.743, 0.08], + [0.067, 0.099, 0.064, 0.77], + [0.296, 0.048, 0.582, 0.075], + [0.057, 0.08, 0.056, 0.807], + [0.611, 0.049, 0.263, 0.077], + [0.149, 0.081, 0.156, 0.614], + [0.741, 0.076, 0.089, 0.095], + [0.093, 0.091, 0.073, 0.744], + [0.256, 0.049, 0.591, 0.104], + [0.091, 0.087, 0.076, 0.746], + [0.527, 0.086, 0.291, 0.096], + [0.078, 0.706, 0.06, 0.156], + [0.115, 0.702, 0.055, 0.129], + [0.731, 0.085, 0.06, 0.125], + [0.105, 0.623, 0.05, 0.222], + [0.685, 0.086, 0.084, 0.145], + [0.135, 0.094, 0.093, 0.678], + [0.097, 0.073, 0.066, 0.764], + [0.092, 0.073, 0.065, 0.77], + [0.09, 0.078, 0.066, 0.766], + [0.142, 0.545, 0.115, 0.197], + [0.093, 0.113, 0.049, 0.746], + [0.106, 0.092, 0.066, 0.736], + [0.213, 0.109, 0.052, 0.627], + [0.651, 0.084, 0.07, 0.195], + [0.123, 0.14, 0.071, 0.666], + [0.109, 0.618, 0.074, 0.2], + [0.131, 0.593, 0.076, 0.199], + [0.633, 0.108, 0.097, 0.162], + [0.173, 0.116, 0.42, 0.291], + [0.105, 0.15, 0.085, 0.66], + [0.123, 0.591, 0.079, 0.207], + [0.191, 0.18, 0.088, 0.541], + [0.47, 0.151, 0.129, 0.251], + [0.121, 0.293, 0.082, 0.505], + ], + ZNF490: [ + [0.218, 0.128, 0.143, 0.511], + [0.214, 0.123, 0.475, 0.189], + [0.231, 0.116, 0.477, 0.176], + [0.54, 0.111, 0.173, 0.176], + [0.214, 0.117, 0.147, 0.521], + [0.544, 0.12, 0.142, 0.194], + [0.586, 0.127, 0.112, 0.174], + [0.58, 0.122, 0.154, 0.144], + [0.39, 0.118, 0.344, 0.149], + [0.634, 0.119, 0.116, 0.131], + [0.395, 0.134, 0.301, 0.17], + [0.307, 0.159, 0.17, 0.364], + [0.172, 0.563, 0.105, 0.16], + [0.654, 0.142, 0.094, 0.11], + [0.585, 0.141, 0.08, 0.194], + [0.152, 0.101, 0.682, 0.065], + [0.751, 0.026, 0.197, 0.026], + [0.195, 0.599, 0.073, 0.133], + [0.059, 0.767, 0.024, 0.15], + [0.065, 0.735, 0.021, 0.179], + [0.629, 0.129, 0.048, 0.194], + [0.402, 0.087, 0.168, 0.342], + [0.098, 0.374, 0.204, 0.325], + [0.232, 0.043, 0.336, 0.39], + [0.39, 0.016, 0.537, 0.057], + [0.008, 0.046, 0.05, 0.896], + [0.284, 0.236, 0.274, 0.206], + [0.006, 0.002, 0.001, 0.991], + [0.001, 0.001, 0.97, 0.029], + [0.002, 0.811, 0.005, 0.182], + [0.004, 0.035, 0.002, 0.958], + [0.01, 0.001, 0.978, 0.011], + [0.012, 0.487, 0.046, 0.455], + [0.214, 0.506, 0.021, 0.259], + [0.064, 0.048, 0.083, 0.805], + [0.32, 0.134, 0.099, 0.447], + [0.046, 0.859, 0.033, 0.062], + [0.752, 0.136, 0.037, 0.075], + [0.553, 0.057, 0.279, 0.11], + [0.074, 0.09, 0.749, 0.087], + [0.749, 0.065, 0.111, 0.074], + [0.291, 0.082, 0.52, 0.107], + [0.706, 0.131, 0.065, 0.097], + [0.08, 0.71, 0.09, 0.121], + [0.204, 0.407, 0.078, 0.31], + [0.136, 0.583, 0.104, 0.177], + [0.662, 0.098, 0.11, 0.13], + [0.118, 0.33, 0.103, 0.45], + [0.112, 0.481, 0.097, 0.31], + [0.123, 0.109, 0.096, 0.671], + [0.185, 0.488, 0.109, 0.218], + [0.651, 0.114, 0.116, 0.118], + [0.161, 0.461, 0.132, 0.247], + [0.389, 0.217, 0.244, 0.149], + [0.134, 0.173, 0.122, 0.571], + ], + ZBTB26: [ + [0.012, 0.041, 0.141, 0.806], + [0.003, 0.984, 0.01, 0.004], + [0.013, 0.539, 0.08, 0.368], + [0.467, 0.033, 0.485, 0.014], + [0.006, 0.005, 0.985, 0.004], + [0.883, 0.034, 0.052, 0.03], + [0.506, 0.097, 0.264, 0.132], + ], + TAL1: [ + [0.075, 0.5, 0.219, 0.206], + [0.053, 0.048, 0.005, 0.894], + [0.098, 0.0, 0.0, 0.902], + [1.0, 0.0, 0.0, 0.0], + [0.001, 0.0, 0.0, 0.999], + [0.0, 1.0, 0.0, 0.0], + [0.321, 0.013, 0.017, 0.649], + ], + ELF2: [ + [0.514, 0.082, 0.269, 0.134], + [0.011, 0.777, 0.098, 0.114], + [0.036, 0.0, 0.0, 0.964], + [0.001, 0.0, 0.003, 0.996], + [0.0, 0.971, 0.013, 0.016], + [0.009, 0.97, 0.0, 0.022], + [0.026, 0.025, 0.611, 0.338], + [0.032, 0.228, 0.638, 0.102], + ], + NANOG: [ + [0.05, 0.485, 0.191, 0.274], + [0.084, 0.459, 0.107, 0.349], + [0.43, 0.051, 0.06, 0.459], + [0.023, 0.042, 0.033, 0.902], + [0.074, 0.007, 0.035, 0.884], + [0.092, 0.299, 0.553, 0.056], + [0.353, 0.015, 0.062, 0.57], + [0.254, 0.246, 0.141, 0.358], + [0.742, 0.039, 0.083, 0.136], + [0.048, 0.045, 0.05, 0.857], + [0.013, 0.007, 0.754, 0.226], + [0.037, 0.547, 0.127, 0.289], + [0.615, 0.021, 0.084, 0.281], + [0.651, 0.031, 0.191, 0.127], + [0.737, 0.054, 0.089, 0.121], + [0.165, 0.143, 0.167, 0.524], + ], + ONECUT2: [ + [0.145, 0.115, 0.057, 0.683], + [0.994, 0.001, 0.003, 0.002], + [0.148, 0.012, 0.014, 0.826], + [0.228, 0.002, 0.089, 0.68], + [0.0, 0.0, 1.0, 0.0], + [0.961, 0.01, 0.026, 0.003], + [0.017, 0.04, 0.016, 0.927], + [0.019, 0.071, 0.041, 0.869], + [0.23, 0.081, 0.076, 0.614], + ], + GLIS3: [ + [0.409, 0.198, 0.393, 0.0], + [0.023, 0.834, 0.003, 0.14], + [0.002, 0.971, 0.009, 0.018], + [0.102, 0.622, 0.002, 0.274], + [0.0, 0.997, 0.0, 0.002], + [0.103, 0.887, 0.003, 0.006], + [0.158, 0.526, 0.01, 0.306], + [0.393, 0.004, 0.578, 0.025], + [0.01, 0.759, 0.222, 0.009], + [0.356, 0.216, 0.24, 0.189], + [0.218, 0.139, 0.468, 0.176], + [0.405, 0.188, 0.275, 0.132], + [0.011, 0.163, 0.761, 0.065], + ], + ZFX: [ + [0.145, 0.484, 0.07, 0.301], + [0.119, 0.348, 0.325, 0.208], + [0.389, 0.133, 0.41, 0.068], + [0.001, 0.0, 0.985, 0.015], + [0.002, 0.0, 0.992, 0.006], + [0.006, 0.993, 0.0, 0.001], + [0.0, 0.998, 0.0, 0.002], + [0.005, 0.076, 0.0, 0.919], + [0.245, 0.209, 0.365, 0.181], + [0.054, 0.384, 0.454, 0.109], + ], + RBPJ: [ + [0.006, 0.212, 0.015, 0.767], + [0.0, 0.003, 0.0, 0.996], + [0.0, 1.0, 0.0, 0.0], + [0.063, 0.741, 0.0, 0.196], + [0.001, 0.987, 0.011, 0.0], + [0.775, 0.0, 0.188, 0.037], + [0.023, 0.437, 0.375, 0.165], + [0.257, 0.254, 0.407, 0.083], + [0.236, 0.35, 0.372, 0.042], + ], + ZNF680: [ + [0.198, 0.036, 0.711, 0.055], + [0.295, 0.184, 0.259, 0.262], + [0.09, 0.764, 0.03, 0.116], + [0.309, 0.564, 0.026, 0.102], + [0.792, 0.01, 0.166, 0.032], + [0.672, 0.005, 0.253, 0.07], + [0.001, 0.001, 0.998, 0.0], + [0.998, 0.001, 0.001, 0.0], + [0.946, 0.003, 0.035, 0.016], + [0.161, 0.002, 0.828, 0.009], + [0.996, 0.002, 0.002, 0.0], + [0.472, 0.288, 0.039, 0.201], + [0.041, 0.152, 0.03, 0.776], + [0.291, 0.138, 0.258, 0.312], + [0.626, 0.086, 0.077, 0.211], + [0.3, 0.036, 0.598, 0.067], + ], +} diff --git a/screen2.0/src/app/search/gbview/biosampletracks.tsx b/screen2.0/src/app/search/gbview/biosampletracks.tsx index cadc0e35..c03d1c01 100644 --- a/screen2.0/src/app/search/gbview/biosampletracks.tsx +++ b/screen2.0/src/app/search/gbview/biosampletracks.tsx @@ -1,226 +1,176 @@ -import { gql, useQuery } from "@apollo/client"; -import { associateBy } from "queryz"; -import { BigWigData, BigBedData, BigZoomData } from "bigwig-reader"; -import React, { RefObject, useEffect, useMemo, useState } from "react"; -import { DenseBigBed, EmptyTrack, FullBigWig } from "umms-gb"; -import { - BigRequest, - RequestError, -} from "umms-gb/dist/components/tracks/trackset/types"; -import { ValuedPoint } from "umms-gb/dist/utils/types"; -import { client } from "../ccredetails/client" -import CCRETooltip from "./ccretooltip" -import { TitledTrack } from "./defaulttracks"; - -type GenomicRange = { - chromosome?: string; - start: number; - end: number; - }; - -type BiosampleTracksProps = { - tracks: [string, string, string][]; - biosample: string; - domain: GenomicRange; - onHeightChanged?: (i: number) => void; - cCREHighlight?: GenomicRange; - cCREHighlights?: Set; - svgRef?: RefObject; - assembly: string; - oncCREClicked?: (accession: string) => void; - oncCREMousedOver?: (coordinates?: GenomicRange) => void; - oncCREMousedOut?: () => void; - onSettingsClick?: () => void; - }; - - - -export type BigResponseData = - | BigWigData[] - | BigBedData[] - | BigZoomData[] - | ValuedPoint[]; - -export type BigResponse = { - data: BigResponseData; - error: RequestError; -}; - -export type BigQueryResponse = { - bigRequests: BigResponse[]; -}; -export const BIG_QUERY = gql` - query BigRequests($bigRequests: [BigRequest!]!) { - bigRequests(requests: $bigRequests) { - data - error { - errortype - message - } - } - } -`; - -export const COLOR_MAP : Map = - new Map([ - [ - "DNase", - "#06da93" - - ], - [ - "H3K4me3", - "#ff0000" - - ] - , - [ - "H3K27ac", - "#ffcd00" - - ], - [ - "CTCF", - "#00b0d0" - - ] - ]); - - export const BIOSAMPLE_QUERY = gql` - query q ($assembly: String!) { - ccREBiosampleQuery(assembly: $assembly) { - biosamples { - name - dnase: experimentAccession(assay: "DNase") - h3k4me3: experimentAccession(assay: "H3K4me3") - h3k27ac: experimentAccession(assay: "H3K27ac") - ctcf: experimentAccession(assay: "CTCF") - dnase_signal: fileAccession(assay: "DNase") - h3k4me3_signal: fileAccession(assay: "H3K4me3") - h3k27ac_signal: fileAccession(assay: "H3K27ac") - ctcf_signal: fileAccession(assay: "CTCF") - } - } - } - ` -export const BiosampleTracks:React.FC = (props) => { - const [cTracks, setTracks] = useState<[string, string, string][]>(props.tracks) - - useEffect(()=>{ - setTracks(props.tracks) - },[props.tracks]) - const height = useMemo(() => cTracks && cTracks.length * 80, [cTracks]); - const bigRequests = useMemo( - () => - cTracks && cTracks.map((x) => ({ - chr1: props.domain.chromosome!, - start: props.domain.start, - end: props.domain.end, - preRenderedWidth: 1400, - url: x[1], - })), - [cTracks, props] - ); - const { data, loading } = useQuery(BIG_QUERY, { - variables: { bigRequests }, - client, - skip: bigRequests===null - - }); - const { data: biosampleData, loading: biosampleDataLoading } = useQuery(BIOSAMPLE_QUERY, { - variables: { assembly: "grch38" }, - client - }); - const groupedBiosamples = useMemo( - () => - associateBy( - biosampleData && biosampleData.ccREBiosampleQuery ? biosampleData.ccREBiosampleQuery.biosamples : [], - (x: any) => x.name as any, - (x) => x - ), - [biosampleData,biosampleDataLoading] - ) - console.log(groupedBiosamples.get(props.biosample)) - const cCRECoordinateMap = useMemo( - () => - associateBy( - (data && data.bigRequests && data.bigRequests[0].data) || [], - (x) => x.name, - (x) => ({ chromosome: x.chr, start: x.start, end: x.end }) - ), - [data] - ) - useEffect(() => { - height && props.onHeightChanged && props.onHeightChanged(height); - }, [props.onHeightChanged, height, props]); - - const [settingsMousedOver, setSettingsMousedOver] = useState(false); - const [settingsModalShown, setSettingsModalShown] = useState(false); - - return loading || !cTracks || !height || (data?.bigRequests.length || 0) < 2 ? ( - - ) : ( - <> - - - - {(data?.bigRequests || []).map((data, i) => ( - - ))} - - - - {settingsMousedOver && ( - - )} - - setSettingsMousedOver(true)} - onMouseOut={() => setSettingsMousedOver(false)} - strokeWidth={1} - transform="translate(20,0)" - onClick={() => { - props.onSettingsClick && props.onSettingsClick(); - setSettingsModalShown(true); - }} - /> - - Biosample-Specific Tracks - - - ); -} \ No newline at end of file +import { gql, useQuery } from "@apollo/client" +import { associateBy } from "queryz" +import { BigWigData, BigBedData, BigZoomData } from "bigwig-reader" +import React, { RefObject, useEffect, useMemo, useState } from "react" +import { EmptyTrack } from "umms-gb" +import { RequestError } from "umms-gb/dist/components/tracks/trackset/types" +import { ValuedPoint } from "umms-gb/dist/utils/types" +import { client } from "../ccredetails/client" +import { TitledTrack } from "./defaulttracks" + +type GenomicRange = { + chromosome?: string + start: number + end: number +} + +type BiosampleTracksProps = { + tracks: [string, string, string][] + biosample: string + domain: GenomicRange + onHeightChanged?: (i: number) => void + cCREHighlight?: GenomicRange + cCREHighlights?: Set + svgRef?: RefObject + assembly: string + oncCREClicked?: (accession: string) => void + oncCREMousedOver?: (coordinates?: GenomicRange) => void + oncCREMousedOut?: () => void + onSettingsClick?: () => void +} + +export type BigResponseData = BigWigData[] | BigBedData[] | BigZoomData[] | ValuedPoint[] + +export type BigResponse = { + data: BigResponseData + error: RequestError +} + +export type BigQueryResponse = { + bigRequests: BigResponse[] +} +export const BIG_QUERY = gql` + query BigRequests($bigRequests: [BigRequest!]!) { + bigRequests(requests: $bigRequests) { + data + error { + errortype + message + } + } + } +` + +export const COLOR_MAP: Map = new Map([ + ["DNase", "#06da93"], + ["H3K4me3", "#ff0000"], + ["H3K27ac", "#ffcd00"], + ["CTCF", "#00b0d0"], +]) + +export const BIOSAMPLE_QUERY = gql` + query q($assembly: String!) { + ccREBiosampleQuery(assembly: $assembly) { + biosamples { + name + dnase: experimentAccession(assay: "DNase") + h3k4me3: experimentAccession(assay: "H3K4me3") + h3k27ac: experimentAccession(assay: "H3K27ac") + ctcf: experimentAccession(assay: "CTCF") + dnase_signal: fileAccession(assay: "DNase") + h3k4me3_signal: fileAccession(assay: "H3K4me3") + h3k27ac_signal: fileAccession(assay: "H3K27ac") + ctcf_signal: fileAccession(assay: "CTCF") + } + } + } +` +export const BiosampleTracks: React.FC = (props) => { + const [cTracks, setTracks] = useState<[string, string, string][]>(props.tracks) + + useEffect(() => { + setTracks(props.tracks) + }, [props.tracks]) + const height = useMemo(() => cTracks && cTracks.length * 80, [cTracks]) + const bigRequests = useMemo( + () => + cTracks && + cTracks.map((x) => ({ + chr1: props.domain.chromosome!, + start: props.domain.start, + end: props.domain.end, + preRenderedWidth: 1400, + url: x[1], + })), + [cTracks, props] + ) + const { data, loading } = useQuery(BIG_QUERY, { + variables: { bigRequests }, + client, + skip: bigRequests === null, + }) + const { data: biosampleData, loading: biosampleDataLoading } = useQuery(BIOSAMPLE_QUERY, { + variables: { assembly: props.assembly.toLowerCase() }, + client, + }) + const groupedBiosamples = useMemo( + () => + associateBy( + biosampleData && biosampleData.ccREBiosampleQuery ? biosampleData.ccREBiosampleQuery.biosamples : [], + (x: any) => x.name as any, + (x) => x + ), + [biosampleData, biosampleDataLoading] + ) + + const cCRECoordinateMap = useMemo( + () => + associateBy( + (data && data.bigRequests && data.bigRequests[0].data) || [], + (x) => x.name, + (x) => ({ chromosome: x.chr, start: x.start, end: x.end }) + ), + [data] + ) + useEffect(() => { + height && props.onHeightChanged && props.onHeightChanged(height) + }, [props.onHeightChanged, height, props]) + + const [settingsMousedOver, setSettingsMousedOver] = useState(false) + + return loading || !cTracks || !height || (data?.bigRequests.length || 0) < 2 ? ( + + ) : ( + <> + + + + {(data?.bigRequests || []).map((data, i) => ( + + ))} + + + + {settingsMousedOver && } + + setSettingsMousedOver(true)} + onMouseOut={() => setSettingsMousedOver(false)} + strokeWidth={1} + transform="translate(20,0)" + /> + + Biosample-Specific Tracks + + + ) +} diff --git a/screen2.0/src/app/search/gbview/ccretooltip.tsx b/screen2.0/src/app/search/gbview/ccretooltip.tsx index b8475ff1..2450c173 100644 --- a/screen2.0/src/app/search/gbview/ccretooltip.tsx +++ b/screen2.0/src/app/search/gbview/ccretooltip.tsx @@ -1,95 +1,95 @@ -import { gql, useQuery } from "@apollo/client" -import React, { useMemo } from "react" -import { CircularProgress } from "@mui/material" -import { client } from "../ccredetails/client" - -export const COLORS = new Map([ - ["PLS", "#ff0000"], - ["pELS", "#ffa700"], - ["dELS", "#ffcd00"], - ["DNase-H3K4me3", "#ffaaaa"], - ["CTCF-only", "#00b0f0"], -]) - -export const GROUPS = new Map([ - ["PLS", "promoter-like"], - ["pELS", "proximal enhancer-like"], - ["dELS", "distal enhancer-like"], - ["DNase-H3K4me3", "DNase-H3K4me3"], - ["CTCF-only", "CTCF-only"], -]) - -const QUERY = gql` - query cCRE($assembly: String!, $accession: [String!], $experiments: [String!]) { - cCREQuery(assembly: $assembly, accession: $accession) { - group - zScores(experiments: $experiments) { - experiment - score - } - } - } -` - -const MAXZ_QUERY = gql` - query cCRE($assembly: String!, $accession: [String!]) { - cCREQuery(assembly: $assembly, accession: $accession) { - group - dnase: maxZ(assay: "dnase") - h3k4me3: maxZ(assay: "h3k4me3") - h3k27ac: maxZ(assay: "h3k27ac") - ctcf: maxZ(assay: "ctcf") - } - } -` - -const biosampleExperiments = (x) => [x.dnase, x.h3k4me3, x.h3k27ac, x.ctcf].filter((xx) => !!xx) - -const MARKS = ["DNase", "H3K4me3", "H3K27ac", "CTCF"] -const marks = (x) => [x.dnase, x.h3k4me3, x.h3k27ac, x.ctcf].map((x, i) => x && MARKS[i]).filter((xx) => !!xx) - -const CCRETooltip = (props) => { - const experiments = useMemo( - () => (props.biosample ? biosampleExperiments(props.biosample) : ["dnase", "h3k4me3", "h3k27ac", "ctcf"]), - [props] - ) - const { data, loading } = useQuery(props.biosample ? QUERY : MAXZ_QUERY, { - variables: { - assembly: props.assembly, - accession: props.name, - experiments, - }, - client - }) - return ( -
    - {loading || !data.cCREQuery[0] ? ( - - ) : ( - <> - - - - {props.name} ⸱ {GROUPS.get(data.cCREQuery[0].group || "")} - - - Click for details about this cCRE -
    -
    - {props.biosample ? "Z-scores in " + props.biosample.name : "Max Z-scores across all biosamples:"} -
    - {(props.biosample ? marks(props.biosample) : MARKS).map((x, i) => ( - - {x}:{" "} - {props.biosample - ? data.cCREQuery[0].zScores.find((xx) => xx.experiment === experiments[i]).score.toFixed(2) - : data.cCREQuery[0][experiments[i]].toFixed(2)} -
    -
    - ))} - - )} -
    - ) -} -export default CCRETooltip +import { gql, useQuery } from "@apollo/client" +import React, { useMemo } from "react" +import { CircularProgress } from "@mui/material" +import { client } from "../ccredetails/client" + +export const COLORS = new Map([ + ["PLS", "#ff0000"], + ["pELS", "#ffa700"], + ["dELS", "#ffcd00"], + ["DNase-H3K4me3", "#ffaaaa"], + ["CTCF-only", "#00b0f0"], +]) + +export const GROUPS = new Map([ + ["PLS", "promoter-like"], + ["pELS", "proximal enhancer-like"], + ["dELS", "distal enhancer-like"], + ["DNase-H3K4me3", "DNase-H3K4me3"], + ["CTCF-only", "CTCF-only"], +]) + +const QUERY = gql` + query cCRE($assembly: String!, $accession: [String!], $experiments: [String!]) { + cCREQuery(assembly: $assembly, accession: $accession) { + group + zScores(experiments: $experiments) { + experiment + score + } + } + } +` + +const MAXZ_QUERY = gql` + query cCRE($assembly: String!, $accession: [String!]) { + cCREQuery(assembly: $assembly, accession: $accession) { + group + dnase: maxZ(assay: "dnase") + h3k4me3: maxZ(assay: "h3k4me3") + h3k27ac: maxZ(assay: "h3k27ac") + ctcf: maxZ(assay: "ctcf") + } + } +` + +const biosampleExperiments = (x) => [x.dnase, x.h3k4me3, x.h3k27ac, x.ctcf].filter((xx) => !!xx) + +const MARKS = ["DNase", "H3K4me3", "H3K27ac", "CTCF"] +const marks = (x) => [x.dnase, x.h3k4me3, x.h3k27ac, x.ctcf].map((x, i) => x && MARKS[i]).filter((xx) => !!xx) + +const CCRETooltip = (props) => { + const experiments = useMemo( + () => (props.biosample ? biosampleExperiments(props.biosample) : ["dnase", "h3k4me3", "h3k27ac", "ctcf"]), + [props] + ) + const { data, loading } = useQuery(props.biosample ? QUERY : MAXZ_QUERY, { + variables: { + assembly: props.assembly, + accession: props.name, + experiments, + }, + client, + }) + return ( +
    + {loading || !data.cCREQuery[0] ? ( + + ) : ( + <> + + + + {props.name} ⸱ {GROUPS.get(data.cCREQuery[0].group || "")} + + + Click for details about this cCRE +
    +
    + {props.biosample ? "Z-scores in " + props.biosample.name : "Max Z-scores across all biosamples:"} +
    + {(props.biosample ? marks(props.biosample) : MARKS).map((x, i) => ( + + {x}:{" "} + {props.biosample + ? data.cCREQuery[0].zScores.find((xx) => xx.experiment === experiments[i]).score.toFixed(2) + : data.cCREQuery[0][experiments[i]].toFixed(2)} +
    +
    + ))} + + )} +
    + ) +} +export default CCRETooltip diff --git a/screen2.0/src/app/search/gbview/controls.tsx b/screen2.0/src/app/search/gbview/controls.tsx index 144ceb90..c018eb4f 100644 --- a/screen2.0/src/app/search/gbview/controls.tsx +++ b/screen2.0/src/app/search/gbview/controls.tsx @@ -1,39 +1,38 @@ -import React from 'react'; - -import ShiftButton from './shiftbutton'; -import ZoomButton from './zoombutton'; - -export interface Domain { - chromosome?: string; - start: number; - end: number; -}; -export type ControlProps = { - domain: Domain; - onDomainChanged: (domain: Domain) => void; - -}; -const Controls = ({ domain, onDomainChanged }) => { - return( - <> - move  - - - - - -   - zoom in  - - -   - zoom out  - - - - - -
    - -)}; -export default Controls; \ No newline at end of file +import React from "react" + +import ShiftButton from "./shiftbutton" +import ZoomButton from "./zoombutton" + +export interface Domain { + chromosome?: string + start: number + end: number +} +export type ControlProps = { + domain: Domain + onDomainChanged: (domain: Domain) => void +} +const Controls = ({ domain, onDomainChanged }) => { + return ( + <> + move  + + + + + + +   zoom in  + + + +   zoom out  + + + + +
    + + ) +} +export default Controls diff --git a/screen2.0/src/app/search/gbview/cytobandview.tsx b/screen2.0/src/app/search/gbview/cytobandview.tsx index 0bfa6902..c2b633e6 100644 --- a/screen2.0/src/app/search/gbview/cytobandview.tsx +++ b/screen2.0/src/app/search/gbview/cytobandview.tsx @@ -1,91 +1,85 @@ -import React, { useMemo } from "react"; -import { gql, useQuery } from "@apollo/client"; -import { Cytobands } from "umms-gb"; -import { Grid } from "@mui/material"; -import { client } from "../ccredetails/client" -export type GenomicRange = { - chromosome?: string; - start: number; - end: number; - }; - -const CYTOBAND_QUERY = gql` - query cytobands($assembly: String!, $chromosome: String) { - cytoband(assembly: $assembly, chromosome: $chromosome) { - stain - coordinates { - chromosome - start - end - } - } - } -`; - -export type CytobandQueryResponse = { - cytoband: { - stain: string; - coordinates: { - chromosome: string; - start: number; - end: number; - }; - }[]; -}; - -export type CytobandsProps = { - assembly: string; - chromosome: string; - innerWidth: number; - height: number; - position?: GenomicRange; -}; - -const CytobandView: React.FC = (props) => { - const { loading, data } = useQuery(CYTOBAND_QUERY, { - variables: { - assembly: props.assembly, - chromosome: props.chromosome, - }, - fetchPolicy: "cache-and-network", - nextFetchPolicy: "cache-first", - client, - }); - const domain = useMemo( - () => - data && { - start: 0, - end: Math.max( - ...(data.cytoband.length === 0 - ? [1] - : data.cytoband.map((x) => x.coordinates.end)) - ), - }, - [data] - ); - return loading || !data ? null : ( - - - - - - - - - - {props.assembly}:{props.chromosome} - - - - ); -}; -export default CytobandView; +import React, { useMemo } from "react" +import { gql, useQuery } from "@apollo/client" +import { Cytobands } from "umms-gb" +import { Grid } from "@mui/material" +import { client } from "../ccredetails/client" +export type GenomicRange = { + chromosome?: string + start: number + end: number +} + +const CYTOBAND_QUERY = gql` + query cytobands($assembly: String!, $chromosome: String) { + cytoband(assembly: $assembly, chromosome: $chromosome) { + stain + coordinates { + chromosome + start + end + } + } + } +` + +export type CytobandQueryResponse = { + cytoband: { + stain: string + coordinates: { + chromosome: string + start: number + end: number + } + }[] +} + +export type CytobandsProps = { + assembly: string + chromosome: string + innerWidth: number + height: number + position?: GenomicRange +} + +const CytobandView: React.FC = (props) => { + const { loading, data } = useQuery(CYTOBAND_QUERY, { + variables: { + assembly: props.assembly, + chromosome: props.chromosome, + }, + fetchPolicy: "cache-and-network", + nextFetchPolicy: "cache-first", + client, + }) + const domain = useMemo( + () => + data && { + start: 0, + end: Math.max(...(data.cytoband.length === 0 ? [1] : data.cytoband.map((x) => x.coordinates.end))), + }, + [data] + ) + return loading || !data ? null : ( + + + + + + + + + + {props.assembly}:{props.chromosome} + + + + ) +} +export default CytobandView diff --git a/screen2.0/src/app/search/gbview/defaulttracks.tsx b/screen2.0/src/app/search/gbview/defaulttracks.tsx index 1a9827e0..73431831 100644 --- a/screen2.0/src/app/search/gbview/defaulttracks.tsx +++ b/screen2.0/src/app/search/gbview/defaulttracks.tsx @@ -1,366 +1,217 @@ -import { gql, useQuery } from "@apollo/client"; -import { associateBy } from "queryz" -import { BigWigData, BigBedData, BigZoomData } from "bigwig-reader"; -import React, { RefObject, useEffect, useMemo, useState } from "react"; -import { DenseBigBed, EmptyTrack, FullBigWig } from "umms-gb"; -import { - BigRequest, - RequestError, -} from "umms-gb/dist/components/tracks/trackset/types"; -import { ValuedPoint } from "umms-gb/dist/utils/types"; -import { client } from "../ccredetails/client" -import CCRETooltip from "./ccretooltip" -/* -export const DEFAULT_TRACKS = ( - assembly: string -): Map => { - console.log -return assembly.toLowerCase() === "mm10" - ? new Map([ - ["All cCREs colored by group", { url: `gs://gcp.wenglab.org/${assembly}-cCREs.bigBed` }], - ["Aggregated DNase-seq signal, all Registry biosamples", { url: `gs://gcp.wenglab.org/dnase.${assembly}.sum.bigWig` }], - ]) : - new Map([ - [ - "All cCREs colored by group", - { - url: "gs://gcp.wenglab.org/GRCh38-cCREs.bigBed", - }, - ], - [ - "Aggregated DNase-seq signal, all Registry biosamples", - { - url: "gs://gcp.wenglab.org/dnase.GRCh38.sum.bigWig", - }, - ], - [ - "Aggregated H3K4me3 ChIP-seq signal, all Registry biosamples", - { - url: "gs://gcp.wenglab.org/h3k4me3.hg38.sum.bigWig", - }, - ] - , - [ - "Aggregated H3K27ac ChIP-seq signal, all Registry biosamples", - { - url: "gs://gcp.wenglab.org/h3k27ac.hg38.sum.bigWig", - }, - ], - [ - "Aggregated CTCF ChIP-seq signal, all Registry biosamples", - { - url: "gs://gcp.wenglab.org/ctcf.hg38.sum.bigWig", - }, - ] - - ]); -} - -export const TRACK_ORDER = (assembly) => {return assembly.toLowerCase() === "mm10" ? [ "All cCREs colored by group", -"Aggregated DNase-seq signal, all Registry biosamples"] -:[ - "All cCREs colored by group", - "Aggregated DNase-seq signal, all Registry biosamples", - "Aggregated H3K4me3 ChIP-seq signal, all Registry biosamples", - "Aggregated H3K27ac ChIP-seq signal, all Registry biosamples", - "Aggregated CTCF ChIP-seq signal, all Registry biosamples" - -]}; - -export const tracks = (assembly: string, pos: GenomicRange) => - TRACK_ORDER(assembly).map((x) => ({ - chr1: pos.chromosome!, - start: pos.start, - end: pos.end, - ...DEFAULT_TRACKS(assembly).get(x)!, - preRenderedWidth: 1400, - })); -*/ -export const BIG_QUERY = gql` - query BigRequests($bigRequests: [BigRequest!]!) { - bigRequests(requests: $bigRequests) { - data - error { - errortype - message - } - } - } -`; - -export const COLOR_MAP : Map = - new Map([ - [ - "Aggregated DNase-seq signal, all Registry biosamples", - "#06da93" - - ], - [ - "Aggregated H3K4me3 ChIP-seq signal, all Registry biosamples", - "#ff0000" - - ] - , - [ - "Aggregated H3K27ac ChIP-seq signal, all Registry biosamples", - "#ffcd00" - - ], - [ - "Aggregated CTCF ChIP-seq signal, all Registry biosamples", - "#00b0d0" - - ] - ]); - -type GenomicRange = { - chromosome?: string; - start: number; - end: number; -}; - -export type BigResponseData = - | BigWigData[] - | BigBedData[] - | BigZoomData[] - | ValuedPoint[]; - -export type BigResponse = { - data: BigResponseData; - error: RequestError -}; - -export type BigQueryResponse = { - bigRequests: BigResponse[]; -}; - -type DefaultTracksProps = { - //tracks: BigRequest[]; - domain: GenomicRange; - onHeightChanged?: (i: number) => void; - cCREHighlight?: GenomicRange; - cCREHighlights?: Set; - svgRef?: RefObject; - assembly: string; - oncCREClicked?: (accession: string) => void; - oncCREMousedOver?: (coordinates?: GenomicRange) => void; - oncCREMousedOut?: () => void; - onSettingsClick?: () => void; -}; - -export const TitledTrack: React.FC<{ - data: BigResponseData; - assembly: string; - url: string; - title: string; - color?: string; - height: number; - transform?: string; - onHeightChanged?: (height: number) => void; - domain: GenomicRange; - svgRef?: React.RefObject; - oncCREMousedOver?: (coordinates?: GenomicRange) => void; - oncCREMousedOut?: () => void; - cCRECoordinateMap?: any; - biosample?: string -}> = ({ - data, - assembly, - url, - title, - height, - domain, - transform, - onHeightChanged, - svgRef, - color, - oncCREMousedOver, - oncCREMousedOut, - cCRECoordinateMap, - biosample -}) => { - useEffect( - () => onHeightChanged && onHeightChanged(height + 40), - [height, onHeightChanged] - ); - console.log(color,title) - return ( - - - {(url.endsWith(".bigBed") || url.endsWith(".bigbed")) ? ( - } - onMouseOver={(x) => oncCREMousedOver && x.name && oncCREMousedOver(cCRECoordinateMap.get(x.name))} - onMouseOut={oncCREMousedOut} - /> - ) : ( - - )} - - ); -}; - -const DefaultTracks: React.FC = (props) => { - - const [cTracks, setTracks] = useState<[string, string][]>( props.assembly.toLowerCase()==='mm10' ? [ - [ - "All cCREs colored by group", - "gs://gcp.wenglab.org/mm10-cCREs.bigBed", - - ], - [ - "Aggregated DNase-seq signal, all Registry biosamples", - "gs://gcp.wenglab.org/dnase.mm10.sum.bigWig", - - - ], - ] : [ - [ - "All cCREs colored by group", - "gs://gcp.wenglab.org/GRCh38-cCREs.bigBed", - - ], - [ - "Aggregated DNase-seq signal, all Registry biosamples", - "gs://gcp.wenglab.org/dnase.GRCh38.sum.bigWig", - - ], - [ - "Aggregated H3K4me3 ChIP-seq signal, all Registry biosamples", - "gs://gcp.wenglab.org/h3k4me3.hg38.sum.bigWig", - - ] - , - [ - "Aggregated H3K27ac ChIP-seq signal, all Registry biosamples", - "gs://gcp.wenglab.org/h3k27ac.hg38.sum.bigWig", - - ], - [ - "Aggregated CTCF ChIP-seq signal, all Registry biosamples", - "gs://gcp.wenglab.org/ctcf.hg38.sum.bigWig", - - ] - ]); - const height = useMemo(() => cTracks.length * 80, [cTracks]); - const bigRequests = useMemo( - () => - cTracks.map((x) => ({ - chr1: props.domain.chromosome!, - start: props.domain.start, - end: props.domain.end, - preRenderedWidth: 1400, - url: x[1], - })), - [cTracks, props] - ); - const { data, loading } = useQuery(BIG_QUERY, { - variables: { bigRequests }, - client - }); - const cCRECoordinateMap = useMemo( - () => - associateBy( - (data && data.bigRequests && data.bigRequests[0].data) || [], - (x) => x.name, - (x) => ({ chromosome: x.chr, start: x.start, end: x.end }) - ), - [data] - ) - useEffect(() => { - props.onHeightChanged && props.onHeightChanged(height); - }, [props.onHeightChanged, height, props]); - - const [settingsMousedOver, setSettingsMousedOver] = useState(false); - const [settingsModalShown, setSettingsModalShown] = useState(false); - - return loading || (data?.bigRequests.length || 0) < 2 ? ( - - ) : ( - <> - - - - {(data?.bigRequests || []).map((data, i) => ( - - ))} - - - - {settingsMousedOver && ( - - )} - - setSettingsMousedOver(true)} - onMouseOut={() => setSettingsMousedOver(false)} - strokeWidth={1} - transform="translate(20,0)" - onClick={() => { - props.onSettingsClick && props.onSettingsClick(); - setSettingsModalShown(true); - }} - /> - - Aggregated signal Tracks - - - ); -}; -export default DefaultTracks; +import { gql, useQuery } from "@apollo/client" +import { associateBy } from "queryz" +import { BigWigData, BigBedData, BigZoomData } from "bigwig-reader" +import React, { RefObject, useEffect, useMemo, useState } from "react" +import { DenseBigBed, EmptyTrack, FullBigWig } from "umms-gb" +import { RequestError } from "umms-gb/dist/components/tracks/trackset/types" +import { ValuedPoint } from "umms-gb/dist/utils/types" +import { client } from "../ccredetails/client" +import CCRETooltip from "./ccretooltip" + +export const BIG_QUERY = gql` + query BigRequests($bigRequests: [BigRequest!]!) { + bigRequests(requests: $bigRequests) { + data + error { + errortype + message + } + } + } +` + +export const COLOR_MAP: Map = new Map([ + ["Aggregated DNase-seq signal, all Registry biosamples", "#06da93"], + ["Aggregated H3K4me3 ChIP-seq signal, all Registry biosamples", "#ff0000"], + ["Aggregated H3K27ac ChIP-seq signal, all Registry biosamples", "#ffcd00"], + ["Aggregated CTCF ChIP-seq signal, all Registry biosamples", "#00b0d0"], +]) + +type GenomicRange = { + chromosome?: string + start: number + end: number +} + +export type BigResponseData = BigWigData[] | BigBedData[] | BigZoomData[] | ValuedPoint[] + +export type BigResponse = { + data: BigResponseData + error: RequestError +} + +export type BigQueryResponse = { + bigRequests: BigResponse[] +} + +type DefaultTracksProps = { + domain: GenomicRange + onHeightChanged?: (i: number) => void + cCREHighlight?: GenomicRange + cCREHighlights?: Set + svgRef?: RefObject + assembly: string + oncCREClicked?: (accession: string) => void + oncCREMousedOver?: (coordinates?: GenomicRange) => void + oncCREMousedOut?: () => void + onSettingsClick?: () => void +} + +export const TitledTrack: React.FC<{ + data: BigResponseData + assembly: string + url: string + title: string + color?: string + height: number + transform?: string + onHeightChanged?: (height: number) => void + domain: GenomicRange + svgRef?: React.RefObject + oncCREMousedOver?: (coordinates?: GenomicRange) => void + oncCREMousedOut?: () => void + cCRECoordinateMap?: any + biosample?: string +}> = ({ + data, + assembly, + url, + title, + height, + domain, + transform, + onHeightChanged, + svgRef, + color, + oncCREMousedOver, + oncCREMousedOut, + cCRECoordinateMap, + biosample, +}) => { + useEffect(() => onHeightChanged && onHeightChanged(height + 40), [height, onHeightChanged]) + + return ( + + + {url.endsWith(".bigBed") || url.endsWith(".bigbed") ? ( + } + onMouseOver={(x) => oncCREMousedOver && x.name && oncCREMousedOver(cCRECoordinateMap.get(x.name))} + onMouseOut={oncCREMousedOut} + /> + ) : ( + + )} + + ) +} + +const DefaultTracks: React.FC = (props) => { + const [cTracks, setTracks] = useState<[string, string][]>( + props.assembly.toLowerCase() === "mm10" + ? [ + ["All cCREs colored by group", "gs://gcp.wenglab.org/mm10-cCREs.bigBed"], + ["Aggregated DNase-seq signal, all Registry biosamples", "gs://gcp.wenglab.org/dnase.mm10.sum.bigWig"], + ] + : [ + ["All cCREs colored by group", "gs://gcp.wenglab.org/GRCh38-cCREs.bigBed"], + ["Aggregated DNase-seq signal, all Registry biosamples", "gs://gcp.wenglab.org/dnase.GRCh38.sum.bigWig"], + ["Aggregated H3K4me3 ChIP-seq signal, all Registry biosamples", "gs://gcp.wenglab.org/h3k4me3.hg38.sum.bigWig"], + ["Aggregated H3K27ac ChIP-seq signal, all Registry biosamples", "gs://gcp.wenglab.org/h3k27ac.hg38.sum.bigWig"], + ["Aggregated CTCF ChIP-seq signal, all Registry biosamples", "gs://gcp.wenglab.org/ctcf.hg38.sum.bigWig"], + ] + ) + const height = useMemo(() => cTracks.length * 80, [cTracks]) + const bigRequests = useMemo( + () => + cTracks.map((x) => ({ + chr1: props.domain.chromosome!, + start: props.domain.start, + end: props.domain.end, + preRenderedWidth: 1400, + url: x[1], + })), + [cTracks, props] + ) + const { data, loading } = useQuery(BIG_QUERY, { + variables: { bigRequests }, + client, + }) + const cCRECoordinateMap = useMemo( + () => + associateBy( + (data && data.bigRequests && data.bigRequests[0].data) || [], + (x) => x.name, + (x) => ({ chromosome: x.chr, start: x.start, end: x.end }) + ), + [data] + ) + useEffect(() => { + props.onHeightChanged && props.onHeightChanged(height) + }, [props.onHeightChanged, height, props]) + + const [settingsMousedOver, setSettingsMousedOver] = useState(false) + + return loading || (data?.bigRequests.length || 0) < 2 ? ( + + ) : ( + <> + + + + {(data?.bigRequests || []).map((data, i) => ( + + ))} + + + + {settingsMousedOver && } + + setSettingsMousedOver(true)} + onMouseOut={() => setSettingsMousedOver(false)} + strokeWidth={1} + transform="translate(20,0)" + /> + + Aggregated signal Tracks + + + ) +} +export default DefaultTracks diff --git a/screen2.0/src/app/search/gbview/egenetracks.tsx b/screen2.0/src/app/search/gbview/egenetracks.tsx index 1765673c..7e12d12c 100644 --- a/screen2.0/src/app/search/gbview/egenetracks.tsx +++ b/screen2.0/src/app/search/gbview/egenetracks.tsx @@ -1,102 +1,77 @@ - -import React, { useState } from "react"; -import { - EmptyTrack, - PackTranscriptTrack, - SquishTranscriptTrack, -} from "umms-gb"; -import { TranscriptList } from "umms-gb/dist/components/tracks/transcripts/types"; - -export type GenomicRange = { - chromosome?: string; - start: number; - end: number; -}; -export type EGeneTrackProps = { - expandedCoordinates: GenomicRange; - genes: TranscriptList[]; - highlights?: Set; - onSettingsClick?: () => void; - onHeightChanged?: (x: number) => void; - width?: number; - squish?: boolean; -}; - -const EGeneTracks: React.FC = (props) => { - const [settingsMousedOver, setSettingsMousedOver] = useState(false); - const [height, setHeight] = useState(60); - return ( - - - {props.squish ? ( - { - setHeight(x + 40); - props.onHeightChanged && props.onHeightChanged(40 + x); - }} - color="#880000" - /> - ) : ( - { - setHeight(x + 40); - props.onHeightChanged && props.onHeightChanged(40 + x); - }} - color="#880000" - /> - )} - {settingsMousedOver && ( - - )} - - setSettingsMousedOver(true)} - onMouseOut={() => setSettingsMousedOver(false)} - strokeWidth={1} - transform="translate(20,0)" - onClick={props.onSettingsClick} - /> - - Genes - - - ); -}; -export default EGeneTracks; +import React, { useState } from "react" +import { EmptyTrack, PackTranscriptTrack, SquishTranscriptTrack } from "umms-gb" +import { TranscriptList } from "umms-gb/dist/components/tracks/transcripts/types" + +export type GenomicRange = { + chromosome?: string + start: number + end: number +} +export type EGeneTrackProps = { + expandedCoordinates: GenomicRange + genes: TranscriptList[] + highlights?: Set + onSettingsClick?: () => void + onHeightChanged?: (x: number) => void + width?: number + squish?: boolean +} + +const EGeneTracks: React.FC = (props) => { + const [settingsMousedOver, setSettingsMousedOver] = useState(false) + const [height, setHeight] = useState(60) + return ( + + + {props.squish ? ( + { + setHeight(x + 40) + props.onHeightChanged && props.onHeightChanged(40 + x) + }} + color="#880000" + /> + ) : ( + { + setHeight(x + 40) + props.onHeightChanged && props.onHeightChanged(40 + x) + }} + color="#880000" + /> + )} + {settingsMousedOver && ( + + )} + + setSettingsMousedOver(true)} + onMouseOut={() => setSettingsMousedOver(false)} + strokeWidth={1} + transform="translate(20,0)" + onClick={props.onSettingsClick} + /> + + Genes + + + ) +} +export default EGeneTracks diff --git a/screen2.0/src/app/search/gbview/genomebrowserview.tsx b/screen2.0/src/app/search/gbview/genomebrowserview.tsx index 4e433de7..b56d92dd 100644 --- a/screen2.0/src/app/search/gbview/genomebrowserview.tsx +++ b/screen2.0/src/app/search/gbview/genomebrowserview.tsx @@ -1,241 +1,239 @@ -"use client" -import React, { useMemo, useState, useRef, useCallback, useEffect } from "react" -import Grid2 from "../../../common/mui-client-wrappers/Grid2" -import { RulerTrack, GenomeBrowser } from "umms-gb"; -import Controls from "./controls"; -import { gql, useQuery } from "@apollo/client"; -import CytobandView, { GenomicRange } from "./cytobandview" -import EGeneTracks from "./egenetracks"; -import { client } from "../ccredetails/client" -import DefaultTracks from "./defaulttracks"; -import {BiosampleTracks} from "./biosampletracks" -type GenomeBrowserViewProps = { - coordinates : { - start: number, - end: number, - chromosome?: string - }, - biosample?: string - gene?: string - assembly: string -} -const BIOSAMPLE_QUERY = gql` -query biosamples { - human: ccREBiosampleQuery(assembly: "grch38") { - biosamples { - name - dnase: experimentAccession(assay: "DNase") - h3k4me3: experimentAccession(assay: "H3K4me3") - h3k27ac: experimentAccession(assay: "H3K27ac") - ctcf: experimentAccession(assay: "CTCF") - dnase_signal: fileAccession(assay: "DNase") - h3k4me3_signal: fileAccession(assay: "H3K4me3") - h3k27ac_signal: fileAccession(assay: "H3K27ac") - ctcf_signal: fileAccession(assay: "CTCF") - } - } - mouse: ccREBiosampleQuery(assembly: "mm10") { - biosamples { - name - dnase: experimentAccession(assay: "DNase") - h3k4me3: experimentAccession(assay: "H3K4me3") - h3k27ac: experimentAccession(assay: "H3K27ac") - ctcf: experimentAccession(assay: "CTCF") - dnase_signal: fileAccession(assay: "DNase") - h3k4me3_signal: fileAccession(assay: "H3K4me3") - h3k27ac_signal: fileAccession(assay: "H3K27ac") - ctcf_signal: fileAccession(assay: "CTCF") - } - } -} -` -const GENE_QUERY = gql` - query s( - $chromosome: String - $start: Int - $end: Int - $assembly: String! - ) { - - gene( - chromosome: $chromosome - start: $start - end: $end - assembly: $assembly - ) { - name - strand - transcripts { - name - strand - exons { - coordinates { - chromosome - start - end - } - } - coordinates { - chromosome - start - end - } - } - } - } -`; -export type Transcript = { - id: string; - name: string; - strand: string; - coordinates: GenomicRange; -}; -export type SNPQueryResponse = { - gene: { - name: string; - strand: string; - transcripts: Transcript[]; - }[]; -}; -export function expandCoordinates(coordinates, l = 20000) { - return { - chromosome: coordinates.chromosome, - start: coordinates.start - l < 0 ? 0 : coordinates.start - l, - end: coordinates.end + l, - } - } - -export const GenomeBrowserView: React.FC = (props) =>{ - console.log(props.gene) - const svgRef = useRef(null); - const expandedCoordinates = useMemo(() => expandCoordinates(props.coordinates), [props.coordinates]) - const [coordinates, setCoordinates] = useState(expandedCoordinates); - const [highlight, setHighlight] = useState(null) - const [cTracks, setTracks] = useState<[string, string, string][]| null>(null) - const snpResponse = useQuery(GENE_QUERY, { - variables: { ...coordinates, assembly:props.assembly }, - fetchPolicy: "cache-and-network", - nextFetchPolicy: "cache-first", - client, - }); - - const groupedTranscripts = useMemo( - () => - snpResponse.data?.gene.map((x) => ({ - ...x, - transcripts: x.transcripts.map((xx) => ({ - ...xx, - color: props.gene ? (x).name.includes(props.gene) ? "#880000" : "#aaaaaa" : "#aaaaaa" - })), - })), - [snpResponse,props.gene] - ); - const onDomainChanged = useCallback( - (d: GenomicRange) => { - const chr = - d.chromosome === undefined - ? props.coordinates.chromosome - : d.chromosome; - const start = Math.round(d.start); - const end = Math.round(d.end); - if (end - start > 10) { - setCoordinates({ chromosome: chr, start, end }); - } - }, - [props.coordinates] - ); - const l = useCallback((c) => ((c - coordinates.start) * 1400) / (coordinates.end - coordinates.start), [coordinates]) - - const { loading: bloading, data : bdata } = useQuery(BIOSAMPLE_QUERY, { - fetchPolicy: "cache-and-network", - nextFetchPolicy: "cache-first", - client, - }); - useEffect(()=>{ - if(bdata && props.biosample) - { - const humanBiosamples = bdata && bdata.human && bdata.human.biosamples - const mouseBiosamples = bdata && bdata.mouse && bdata.mouse.biosamples - - const result = props.assembly==="mm10" ? mouseBiosamples.find(m=>m.name===props.biosample) : humanBiosamples.find(m=>m.name===props.biosample) - const r = [result.dnase_signal, result.h3k4me3_signal, result.h3k27ac_signal, result.ctcf_signal].filter((x) => !!x) - //copy v4 bed files to google bucket - const bigBedUrl = `https://downloads.wenglab.org/Registry-V4/${r.join("_")}.bigBed` - let tracks:[string, string, string][] = [[`cCREs colored by activity in ${props.biosample}`,bigBedUrl ,""]] - if(result.dnase_signal) tracks.push([`DNase-seq signal in ${props.biosample}`,`https://www.encodeproject.org/files/${result.dnase_signal}/@@download/${result.dnase_signal}.bigWig`,"DNase"]) - if(result.h3k4me3_signal) tracks.push([`H3K4me3 ChIP-seq signal in ${props.biosample}`,`https://www.encodeproject.org/files/${result.h3k4me3_signal}/@@download/${result.h3k4me3_signal}.bigWig`,"H3K4me3"]) - if(result.h3k27ac_signal) tracks.push([`H3K27ac ChIP-seq signal in ${props.biosample}`,`https://www.encodeproject.org/files/${result.h3k27ac_signal}/@@download/${result.h3k27ac_signal}.bigWig`,"H3K27ac"]) - if(result.ctcf_signal) tracks.push([`CTCF ChIP-seq signal in ${props.biosample}`,`https://www.encodeproject.org/files/${result.ctcf_signal}/@@download/${result.ctcf_signal}.bigWig`,"CTCF"]) - setTracks(tracks) - - } - - },[bdata,props.biosample]) - return(<> - -
    - -
    -
    - -
    -
    -
    - { - if (Math.ceil(x.end) - Math.floor(x.start) > 10) { - setCoordinates({ - chromosome: coordinates.chromosome, - start: Math.floor(x.start), - end: Math.ceil(x.end), - }); - } - }} - > - {highlight && ( - - )} - - = 500000 ? true: false } - /> - - x && setHighlight(x)} - oncCREMousedOut={() => setHighlight(null)} - /> - {props.biosample && props.assembly!="mm10" && cTracks && x && setHighlight(x)} - oncCREMousedOut={() => setHighlight(null)} - />} - - -
    -
    ) -} \ No newline at end of file +"use client" +import React, { useMemo, useState, useRef, useCallback, useEffect } from "react" +import Grid2 from "../../../common/mui-client-wrappers/Grid2" +import { RulerTrack, GenomeBrowser } from "umms-gb" +import Controls from "./controls" +import { gql, useQuery } from "@apollo/client" +import CytobandView, { GenomicRange } from "./cytobandview" +import EGeneTracks from "./egenetracks" +import { client } from "../ccredetails/client" +import DefaultTracks from "./defaulttracks" +import { BiosampleTracks } from "./biosampletracks" +type GenomeBrowserViewProps = { + coordinates: { + start: number + end: number + chromosome?: string + } + biosample?: string + gene?: string + assembly: string +} +const BIOSAMPLE_QUERY = gql` + query biosamples { + human: ccREBiosampleQuery(assembly: "grch38") { + biosamples { + name + dnase: experimentAccession(assay: "DNase") + h3k4me3: experimentAccession(assay: "H3K4me3") + h3k27ac: experimentAccession(assay: "H3K27ac") + ctcf: experimentAccession(assay: "CTCF") + dnase_signal: fileAccession(assay: "DNase") + h3k4me3_signal: fileAccession(assay: "H3K4me3") + h3k27ac_signal: fileAccession(assay: "H3K27ac") + ctcf_signal: fileAccession(assay: "CTCF") + } + } + mouse: ccREBiosampleQuery(assembly: "mm10") { + biosamples { + name + dnase: experimentAccession(assay: "DNase") + h3k4me3: experimentAccession(assay: "H3K4me3") + h3k27ac: experimentAccession(assay: "H3K27ac") + ctcf: experimentAccession(assay: "CTCF") + dnase_signal: fileAccession(assay: "DNase") + h3k4me3_signal: fileAccession(assay: "H3K4me3") + h3k27ac_signal: fileAccession(assay: "H3K27ac") + ctcf_signal: fileAccession(assay: "CTCF") + } + } + } +` +const GENE_QUERY = gql` + query s($chromosome: String, $start: Int, $end: Int, $assembly: String!) { + gene(chromosome: $chromosome, start: $start, end: $end, assembly: $assembly) { + name + strand + transcripts { + name + strand + exons { + coordinates { + chromosome + start + end + } + } + coordinates { + chromosome + start + end + } + } + } + } +` +export type Transcript = { + id: string + name: string + strand: string + coordinates: GenomicRange +} +export type SNPQueryResponse = { + gene: { + name: string + strand: string + transcripts: Transcript[] + }[] +} +export function expandCoordinates(coordinates, l = 20000) { + return { + chromosome: coordinates.chromosome, + start: coordinates.start - l < 0 ? 0 : coordinates.start - l, + end: coordinates.end + l, + } +} + +export const GenomeBrowserView: React.FC = (props) => { + console.log(props.gene) + const svgRef = useRef(null) + const expandedCoordinates = useMemo(() => expandCoordinates(props.coordinates), [props.coordinates]) + const [coordinates, setCoordinates] = useState(expandedCoordinates) + const [highlight, setHighlight] = useState(null) + const [cTracks, setTracks] = useState<[string, string, string][] | null>(null) + const snpResponse = useQuery(GENE_QUERY, { + variables: { ...coordinates, assembly: props.assembly }, + fetchPolicy: "cache-and-network", + nextFetchPolicy: "cache-first", + client, + }) + + const groupedTranscripts = useMemo( + () => + snpResponse.data?.gene.map((x) => ({ + ...x, + transcripts: x.transcripts.map((xx) => ({ + ...xx, + color: props.gene ? (x.name.includes(props.gene) ? "#880000" : "#aaaaaa") : "#aaaaaa", + })), + })), + [snpResponse, props.gene] + ) + const onDomainChanged = useCallback( + (d: GenomicRange) => { + const chr = d.chromosome === undefined ? props.coordinates.chromosome : d.chromosome + const start = Math.round(d.start) + const end = Math.round(d.end) + if (end - start > 10) { + setCoordinates({ chromosome: chr, start, end }) + } + }, + [props.coordinates] + ) + const l = useCallback((c) => ((c - coordinates.start) * 1400) / (coordinates.end - coordinates.start), [coordinates]) + + const { loading: bloading, data: bdata } = useQuery(BIOSAMPLE_QUERY, { + fetchPolicy: "cache-and-network", + nextFetchPolicy: "cache-first", + client, + }) + useEffect(() => { + if (bdata && props.biosample) { + const humanBiosamples = bdata && bdata.human && bdata.human.biosamples + const mouseBiosamples = bdata && bdata.mouse && bdata.mouse.biosamples + + const result = + props.assembly === "mm10" + ? mouseBiosamples.find((m) => m.name === props.biosample) + : humanBiosamples.find((m) => m.name === props.biosample) + const r = [result.dnase_signal, result.h3k4me3_signal, result.h3k27ac_signal, result.ctcf_signal].filter((x) => !!x) + //copy v4 bed files to google bucket + const bigBedUrl = `https://downloads.wenglab.org/Registry-V4/${r.join("_")}.bigBed` + let tracks: [string, string, string][] = [[`cCREs colored by activity in ${props.biosample}`, bigBedUrl, ""]] + if (result.dnase_signal) + tracks.push([ + `DNase-seq signal in ${props.biosample}`, + `https://www.encodeproject.org/files/${result.dnase_signal}/@@download/${result.dnase_signal}.bigWig`, + "DNase", + ]) + if (result.h3k4me3_signal) + tracks.push([ + `H3K4me3 ChIP-seq signal in ${props.biosample}`, + `https://www.encodeproject.org/files/${result.h3k4me3_signal}/@@download/${result.h3k4me3_signal}.bigWig`, + "H3K4me3", + ]) + if (result.h3k27ac_signal) + tracks.push([ + `H3K27ac ChIP-seq signal in ${props.biosample}`, + `https://www.encodeproject.org/files/${result.h3k27ac_signal}/@@download/${result.h3k27ac_signal}.bigWig`, + "H3K27ac", + ]) + if (result.ctcf_signal) + tracks.push([ + `CTCF ChIP-seq signal in ${props.biosample}`, + `https://www.encodeproject.org/files/${result.ctcf_signal}/@@download/${result.ctcf_signal}.bigWig`, + "CTCF", + ]) + setTracks(tracks) + } + }, [bdata, props.biosample]) + return ( + <> + + +
    + +
    +
    + +
    +
    +
    + { + if (Math.ceil(x.end) - Math.floor(x.start) > 10) { + setCoordinates({ + chromosome: coordinates.chromosome, + start: Math.floor(x.start), + end: Math.ceil(x.end), + }) + } + }} + > + {highlight && ( + + )} + + = 500000 ? true : false} + /> + + x && setHighlight(x)} + oncCREMousedOut={() => setHighlight(null)} + /> + {props.biosample && props.assembly != "mm10" && cTracks && ( + x && setHighlight(x)} + oncCREMousedOut={() => setHighlight(null)} + /> + )} + +
    +
    + + ) +} diff --git a/screen2.0/src/app/search/gbview/shiftbutton.tsx b/screen2.0/src/app/search/gbview/shiftbutton.tsx index dc20d4b6..45e16ea3 100644 --- a/screen2.0/src/app/search/gbview/shiftbutton.tsx +++ b/screen2.0/src/app/search/gbview/shiftbutton.tsx @@ -1,29 +1,32 @@ -import React from 'react'; -import { - Button - } from "@mui/material" -export interface Domain { - chromosome?: string; - start: number; - end: number; -}; - -export type ShiftButtonProps = { - text: string; - shift: number; - domain: Domain; - onClick: (domain: Domain) => void; -}; - -const ShiftButton= ({ text, shift, domain, onClick }) => { - return ( - <> - - - -)}; -export default ShiftButton; \ No newline at end of file +import React from "react" +import { Button } from "@mui/material" +export interface Domain { + chromosome?: string + start: number + end: number +} + +export type ShiftButtonProps = { + text: string + shift: number + domain: Domain + onClick: (domain: Domain) => void +} + +const ShiftButton = ({ text, shift, domain, onClick }) => { + return ( + <> + + + ) +} +export default ShiftButton diff --git a/screen2.0/src/app/search/gbview/tfmotiftrack.tsx b/screen2.0/src/app/search/gbview/tfmotiftrack.tsx index 48608674..90b3fcec 100644 --- a/screen2.0/src/app/search/gbview/tfmotiftrack.tsx +++ b/screen2.0/src/app/search/gbview/tfmotiftrack.tsx @@ -1,92 +1,75 @@ -import React, { useState, useRef } from "react"; -import { - EmptyTrack, - SquishBigBed -} from "umms-gb"; -import { DNALogo, Y } from "logots-react" -import {MOTIFS} from "./allmotifs" -import { Typography } from "@mui/material"; -export type GenomicRange = { - chromosome?: string; - start: number; - end: number; -}; - -const MotifTooltip = (props) => { - const rc = (x) => [...x].map((xx) => [...xx].reverse()).reverse() - return ( -
    - {props.rectname.split("$")[2]} - -
    - ) - } -export const TfMotifTrack = (props) => { - - const [height, setHeight] = useState(60); - const [settingsMousedOver, setSettingsMousedOver] = useState(false); - - return( - - { - setHeight(x + 40); - props.onHeightChanged && props.onHeightChanged(40 + x); - }} - data={props.data} - transform="translate(0,40)" - tooltipContent={(rect: any) => { console.log(rect,":recg"); return }} - onClick={(x: any) => { - //return window.open(`${x}`) - return window.open(`https://factorbook.org/tf/${props.assembly==="GRCh38" ? "human" : "mouse"}/${x.rectname.split("$")[2]}/motif`, "_blank") - } - } - /> - {settingsMousedOver && ( - - )} - - setSettingsMousedOver(true)} - onMouseOut={() => setSettingsMousedOver(false)} - strokeWidth={1} - transform="translate(20,0)" - onClick={props.onSettingsClick} - /> - - TF Binding sites - - ) -} \ No newline at end of file +import React, { useState, useRef } from "react" +import { EmptyTrack, SquishBigBed } from "umms-gb" +import { DNALogo, Y } from "logots-react" +import { MOTIFS } from "./allmotifs" +import { Typography } from "@mui/material" +export type GenomicRange = { + chromosome?: string + start: number + end: number +} + +const MotifTooltip = (props) => { + const rc = (x) => [...x].map((xx) => [...xx].reverse()).reverse() + return ( +
    + {props.rectname.split("$")[2]} + +
    + ) +} +export const TfMotifTrack = (props) => { + const [height, setHeight] = useState(60) + const [settingsMousedOver, setSettingsMousedOver] = useState(false) + + return ( + + + { + setHeight(x + 40) + props.onHeightChanged && props.onHeightChanged(40 + x) + }} + data={props.data} + transform="translate(0,40)" + tooltipContent={(rect: any) => { + console.log(rect, ":recg") + return + }} + onClick={(x: any) => { + //return window.open(`${x}`) + return window.open( + `https://factorbook.org/tf/${props.assembly === "GRCh38" ? "human" : "mouse"}/${x.rectname.split("$")[2]}/motif`, + "_blank" + ) + }} + /> + {settingsMousedOver && ( + + )} + + setSettingsMousedOver(true)} + onMouseOut={() => setSettingsMousedOver(false)} + strokeWidth={1} + transform="translate(20,0)" + onClick={props.onSettingsClick} + /> + + TF Binding sites + + + ) +} diff --git a/screen2.0/src/app/search/gbview/zoombutton.tsx b/screen2.0/src/app/search/gbview/zoombutton.tsx index fc0fb7f8..a7e09131 100644 --- a/screen2.0/src/app/search/gbview/zoombutton.tsx +++ b/screen2.0/src/app/search/gbview/zoombutton.tsx @@ -1,34 +1,31 @@ -import React from 'react'; -import { - Button - } from "@mui/material" -export interface Domain { - chromosome?: string; - start: number; - end: number; -}; -export type ZoomButtonProps = { - text: string; - factor: number; - domain: Domain; - onClick: (domain: Domain) => void; -}; - -const ZoomButton = ({ text, factor, domain, onClick }) => ( - -); -export default ZoomButton; \ No newline at end of file +import React from "react" +import { Button } from "@mui/material" +export interface Domain { + chromosome?: string + start: number + end: number +} +export type ZoomButtonProps = { + text: string + factor: number + domain: Domain + onClick: (domain: Domain) => void +} + +const ZoomButton = ({ text, factor, domain, onClick }) => ( + +) +export default ZoomButton diff --git a/screen2.0/src/common/components/MainResultsTable.tsx b/screen2.0/src/common/components/MainResultsTable.tsx index d748ac84..ece0c71d 100644 --- a/screen2.0/src/common/components/MainResultsTable.tsx +++ b/screen2.0/src/common/components/MainResultsTable.tsx @@ -3,26 +3,11 @@ import { usePathname, useRouter, useSearchParams } from "next/navigation" import { DataTable, DataTableProps, DataTableColumn } from "@weng-lab/psychscreen-ui-components" import React from "react" -import { Box, Button, Typography } from "@mui/material" -import Link from "next/link" -import { ObjectFlags } from "typescript" +import { Box, Typography } from "@mui/material" let COLUMNS = (rows) => { // can prob just use link instead here - const router = useRouter() - const pathname = usePathname() - const searchParams: any = useSearchParams()! - - const createQueryString = React.useCallback( - (name: string, value: string) => { - const params = new URLSearchParams(searchParams) - params.set(name, value) - - return params.toString() - }, - [searchParams] - ) - + let col: DataTableColumn[] = [ { header: "Accession", @@ -123,8 +108,7 @@ function MainResultsTable(props: Partial>) { }, [searchParams] ) - console.log(props.rows) - + return ( = (props: MainSearchProps) => { - const [value, setValue] = useState("") - const [checked, setChecked] = useState(props.initialChecked || false) - const [selectedSearch, setSelectedSearch] = useState("Genomic Region"); - const assembly = checked ? "mm10" : "GRCh38" - const handleSearchChange = (event: SelectChangeEvent) => { - - setSelectedSearch(event.target.value); - }; - const router = useRouter() - - const handleChange = (event: { target: { value: React.SetStateAction } }) => { - setValue(event.target.value) - } - - function handleSubmit() { - const assembly = checked ? "mm10" : "GRCh38" - //if submitted with empty value, use default search - if (value == "") { - router.push(`/search?assembly=${assembly}&chromosome=chr11&start=5205263&end=5381894`) - return - } - const input = value.split(":") - const chromosome = input[0] - const coordinates = input[1].split("-") - const start = coordinates[0] - const end = coordinates[1] - router.push(`/search?assembly=${assembly}&chromosome=${chromosome}&start=${start}&end=${end}`) - } - - return ( - - - - - - - - - {selectedSearch==="Genomic Region" ? { - if (event.code === "Enter") { - handleSubmit() - } - }} - InputProps={{ - endAdornment: ( - - handleSubmit()}> - - - - ), - }} - sx={{ mr: "1em", ml:"1em" }} - /> : selectedSearch==="Gene Name" ? : selectedSearch==="SNP rsID" ? : selectedSearch==="Cell Type"? : } - - - setChecked(checked)} - /> - - - - ) -} - -export default MainSearch diff --git a/screen2.0/src/common/components/ResponsiveAppBar.tsx b/screen2.0/src/common/components/ResponsiveAppBar.tsx index d655b1e6..c5c88151 100644 --- a/screen2.0/src/common/components/ResponsiveAppBar.tsx +++ b/screen2.0/src/common/components/ResponsiveAppBar.tsx @@ -1,46 +1,18 @@ "use client" import * as React from "react" - import { AppBar, Box, Toolbar, IconButton, Typography, Menu, Container, Button, MenuItem } from "@mui/material" import ArrowDropDownIcon from "@mui/icons-material/ArrowDropDown" import MenuIcon from "@mui/icons-material/Menu" - -import Grid2 from "@mui/material/Unstable_Grid2/Grid2" -import { - Autocomplete, - TextField, - Accordion, - AccordionDetails, - AccordionSummary, - debounce, - ButtonBase, - Checkbox, - FormControlLabel, - FormGroup, - ToggleButton, - ToggleButtonGroup, - Drawer, -} from "@mui/material" +import { Drawer } from "@mui/material" import CloseIcon from "@mui/icons-material/Close" import Divider from "@mui/material/Divider" -import ListItemButton from "@mui/material/ListItemButton" -import ListItemIcon from "@mui/material/ListItemIcon" -import ListItemText from "@mui/material/ListItemText" -import FolderIcon from "@mui/icons-material/Folder" -import ImageIcon from "@mui/icons-material/Image" -import DescriptionIcon from "@mui/icons-material/Description" -import InputBase from "@mui/material/InputBase" -import SearchIcon from "@mui/icons-material/Search" -import { ThemeProvider, createTheme } from "@mui/material/styles" - +import { ThemeProvider } from "@mui/material/styles" import Link from "next/link" import Image from "next/image" - -import HeaderSearch from "./HeaderSearch" - import nextConfig from "../../../next.config" import screenIcon from "../../../public/screenIcon.png" import { defaultTheme } from "../lib/themes" +import MainSearch from "./mainsearch/MainSearch" // CLICKING ON LINKS ONCE THE POPUP IS OPEN IS BROKEN!!! @@ -276,7 +248,7 @@ function ResponsiveAppBar() { {/* TODO onSubmit for search box */} - + {/* Settings */} diff --git a/screen2.0/src/common/components/CcreAutocomplete.tsx b/screen2.0/src/common/components/mainsearch/CcreAutocomplete.tsx similarity index 60% rename from screen2.0/src/common/components/CcreAutocomplete.tsx rename to screen2.0/src/common/components/mainsearch/CcreAutocomplete.tsx index 1898694c..350ef8d2 100644 --- a/screen2.0/src/common/components/CcreAutocomplete.tsx +++ b/screen2.0/src/common/components/mainsearch/CcreAutocomplete.tsx @@ -1,138 +1,154 @@ -"use client" -import * as React from "react"; -import Box from "@mui/material/Box"; -import TextField from "@mui/material/TextField"; -import Autocomplete from "@mui/material/Autocomplete"; -import Grid from "@mui/material/Grid"; -import Typography from "@mui/material/Typography"; -import { debounce } from "@mui/material/utils"; -import { Button } from "@weng-lab/psychscreen-ui-components"; -import { useRouter } from "next/navigation" - - ///search?assembly=GRCh38&chromosome=chr11&start=5205263&end=5381894&accession=EH38E1516972 - -const CCRE_AUTOCOMPLETE_QUERY = ` -query cCREQuery($accession_prefix: [String!], $limit: Int, $assembly: String!) { - cCREQuery(accession_prefix: $accession_prefix, assembly: $assembly, limit: $limit) { - accession - coordinates { - start - end - chromosome - } - } -} -`; -export const CcreAutoComplete = (props) => { - const [value, setValue] = React.useState(null); - const [inputValue, setInputValue] = React.useState(""); - const [options, setOptions] = React.useState([]); - const [ccreAccessions, setCcreAccessions] = React.useState([]); - - const router = useRouter() - const onSearchChange = async (value: any) => { - setOptions([]); - const response = await fetch("https://factorbook.api.wenglab.org/graphql", { - method: "POST", - body: JSON.stringify({ - query: CCRE_AUTOCOMPLETE_QUERY, - variables: { - assembly: props.assembly, - accession_prefix: [value], - limit: 100 - }, - }), - headers: { "Content-Type": "application/json" }, - }); - const ccreSuggestion = (await response.json()).data?.cCREQuery; - if (ccreSuggestion && ccreSuggestion.length > 0) { - const r = ccreSuggestion.map((g: any) => g.accession); - const ccres = ccreSuggestion.map((g: any) => { - return { - chrom: g.coordinates.chromosome, - start: g.coordinates.start, - end: g.coordinates.end, - ccreaccession: g.accession, - }; - }); - setOptions(r); - setCcreAccessions(ccres); - } else if (ccreSuggestion && ccreSuggestion.length === 0) { - setOptions([]); - setCcreAccessions([]); - } - }; - - const debounceFn = React.useCallback(debounce(onSearchChange, 500), []); - - return ( - - - { - if (event.key === "Enter") { - event.defaultPrevented = true; - - if (value) { - let chrom = ccreAccessions.find((g) => g.ccreaccession === value)?.chrom - let start = ccreAccessions.find((g) => g.ccreaccession === value)?.start - let end = ccreAccessions.find((g) => g.ccreaccession === value)?.end - router.push(`search?assembly=${props.assembly}&chromosome=${chrom}&start=${start}&end=${end}&accession=${value}`) - - } - } - }} - value={value} - onChange={(_: any, newValue: string | null) => { - setValue(newValue); - }} - - inputValue={inputValue} - onInputChange={(event, newInputValue) => { - if (newInputValue != "") { - debounceFn(newInputValue); - } - - setInputValue(newInputValue); - }} - noOptionsText="e.g. EH38E0001314" - renderInput={(params) => ( - - )} - renderOption={(props, option) => { - return ( -
  • - - - - {option} - - {ccreAccessions && ccreAccessions.find((g) => g.ccreaccession === option) && ( - - {`${ccreAccessions.find((g) => g.ccreaccession === option)?.chrom}:${ - ccreAccessions.find((g) => g.ccreaccession === option)?.start - }:${ccreAccessions.find((g) => g.ccreaccession === option)?.end}`} - - )} - - -
  • - ); - }} - /> -
    - -
    - ); -}; +"use client" +import * as React from "react" +import Box from "@mui/material/Box" +import TextField from "@mui/material/TextField" +import Autocomplete from "@mui/material/Autocomplete" +import Grid from "@mui/material/Grid" +import Typography from "@mui/material/Typography" +import { debounce } from "@mui/material/utils" +import { Button } from "@weng-lab/psychscreen-ui-components" +import { useRouter } from "next/navigation" + +///search?assembly=GRCh38&chromosome=chr11&start=5205263&end=5381894&accession=EH38E1516972 + +const CCRE_AUTOCOMPLETE_QUERY = ` +query cCREQuery($accession_prefix: [String!], $limit: Int, $assembly: String!) { + cCREQuery(accession_prefix: $accession_prefix, assembly: $assembly, limit: $limit) { + accession + coordinates { + start + end + chromosome + } + } +} +` +export const CcreAutoComplete = (props) => { + const [value, setValue] = React.useState(null) + const [inputValue, setInputValue] = React.useState("") + const [options, setOptions] = React.useState([]) + const [ccreAccessions, setCcreAccessions] = React.useState([]) + + const router = useRouter() + const onSearchChange = async (value: any) => { + setOptions([]) + const response = await fetch("https://factorbook.api.wenglab.org/graphql", { + method: "POST", + body: JSON.stringify({ + query: CCRE_AUTOCOMPLETE_QUERY, + variables: { + assembly: props.assembly, + accession_prefix: [value], + limit: 100, + }, + }), + headers: { "Content-Type": "application/json" }, + }) + const ccreSuggestion = (await response.json()).data?.cCREQuery + if (ccreSuggestion && ccreSuggestion.length > 0) { + const r = ccreSuggestion.map((g: any) => g.accession) + const ccres = ccreSuggestion.map((g: any) => { + return { + chrom: g.coordinates.chromosome, + start: g.coordinates.start, + end: g.coordinates.end, + ccreaccession: g.accession, + } + }) + setOptions(r) + setCcreAccessions(ccres) + } else if (ccreSuggestion && ccreSuggestion.length === 0) { + setOptions([]) + setCcreAccessions([]) + } + } + + const debounceFn = React.useCallback(debounce(onSearchChange, 500), []) + + return ( + + + { + if (event.key === "Enter") { + event.defaultPrevented = true + + if (value) { + let chrom = ccreAccessions.find((g) => g.ccreaccession === value)?.chrom + let start = ccreAccessions.find((g) => g.ccreaccession === value)?.start + let end = ccreAccessions.find((g) => g.ccreaccession === value)?.end + router.push(`search?assembly=${props.assembly}&chromosome=${chrom}&start=${start}&end=${end}&accession=${value}`) + } + } + }} + value={value} + onChange={(_: any, newValue: string | null) => { + setValue(newValue) + }} + inputValue={inputValue} + onInputChange={(event, newInputValue) => { + if (newInputValue != "") { + debounceFn(newInputValue) + } + + setInputValue(newInputValue) + }} + noOptionsText="e.g. EH38E0001314" + renderInput={(params) => ( + + )} + renderOption={(props, option) => { + return ( +
  • + + + + {option} + + {ccreAccessions && ccreAccessions.find((g) => g.ccreaccession === option) && ( + + {`${ccreAccessions.find((g) => g.ccreaccession === option)?.chrom}:${ + ccreAccessions.find((g) => g.ccreaccession === option)?.start + }:${ccreAccessions.find((g) => g.ccreaccession === option)?.end}`} + + )} + + +
  • + ) + }} + /> +
    +
    + ) +} diff --git a/screen2.0/src/common/components/CelltypeAutocomplete.tsx b/screen2.0/src/common/components/mainsearch/CelltypeAutocomplete.tsx similarity index 52% rename from screen2.0/src/common/components/CelltypeAutocomplete.tsx rename to screen2.0/src/common/components/mainsearch/CelltypeAutocomplete.tsx index f94bdda8..ba991f30 100644 --- a/screen2.0/src/common/components/CelltypeAutocomplete.tsx +++ b/screen2.0/src/common/components/mainsearch/CelltypeAutocomplete.tsx @@ -1,117 +1,136 @@ -import React, { useMemo, useState, useRef, useCallback, useEffect } from "react"; -import Box from "@mui/material/Box"; -import TextField from "@mui/material/TextField"; -import Autocomplete from "@mui/material/Autocomplete"; -import Grid from "@mui/material/Grid"; -import Typography from "@mui/material/Typography"; -import { debounce } from "@mui/material/utils"; -import { useRouter } from "next/navigation" -import { gql, useQuery } from "@apollo/client"; - -export const CelltypeAutocomplete = (props) => { - const [value, setValue] = useState(null); - const [inputValue, setInputValue] = useState(""); - const [options, setOptions] = useState([]); - const [cellTypes, setCelltypes] = useState([]); - const [loading, setLoading] = useState(false) - const router = useRouter() - - useEffect(() => { - fetch("https://downloads.wenglab.org/databyct.json") - .then((response) => { - - return response.json() - }) - .then((data) => { - //setCellTypes(data) - let byCt = Object.keys(data.byCellType).map(ct=>{ - return { - value: ct, - tissue: data.byCellType[ct][0].tissue, - biosample_summary: data.byCellType[ct][0].biosample_summary+":chr11:5205263-5381894", - } - }) - setOptions(byCt.map(ct=>ct.biosample_summary)) - setCelltypes(byCt) - setLoading(false) - }) - .catch((error: Error) => { - // logging - // throw error - }) - setLoading(true) - }, [props.assembly]) - - - - return ( - - - { - if (event.key === "Enter") { - event.defaultPrevented = true; - - if (value) { - - let tissue = cellTypes.find((g) => g.biosample_summary === value)?.tissue - let biosample = cellTypes.find((g) => g.biosample_summary === value)?.value - let biosample_summary = value.split(":")[0] - let chromosome = value.split(":")[1] - let start = value.split(":")[2].split("-")[0] - let end = value.split(":")[2].split("-")[1] - router.push(`search?assembly=${props.assembly}&chromosome=${chromosome}&start=${Math.max(0,start)}&end=${end}&BiosampleTissue=${tissue}&BiosampleSummary=${biosample_summary}&Biosample=${biosample}`) - } - } - }} - value={value} - onChange={(_: any, newValue: string | null) => { - setValue(newValue); - }} - inputValue={inputValue} - onInputChange={(event, newInputValue) => { - if (newInputValue != "") { - //debounceFn(newInputValue); - } - - setInputValue(newInputValue); - }} - noOptionsText="e.g. LNCAP" - renderInput={(params) => ( - - )} - renderOption={(props, option) => { - return ( -
  • - - - - {option} - - {cellTypes && cellTypes.find((g) => g.biosample_summary === option) && ( - - {`${cellTypes.find((g) => g.biosample_summary === option)?.tissue}`} - - )} - - -
  • - ); - }} - /> -
    - -
    - ); -}; +import React, { useMemo, useState, useRef, useCallback, useEffect } from "react" +import Box from "@mui/material/Box" +import TextField from "@mui/material/TextField" +import Autocomplete from "@mui/material/Autocomplete" +import Grid from "@mui/material/Grid" +import Typography from "@mui/material/Typography" +import { debounce } from "@mui/material/utils" +import { useRouter } from "next/navigation" +import { gql, useQuery } from "@apollo/client" + +export const CelltypeAutocomplete = (props) => { + const [value, setValue] = useState(null) + const [inputValue, setInputValue] = useState("") + const [options, setOptions] = useState([]) + const [cellTypes, setCelltypes] = useState([]) + const [loading, setLoading] = useState(false) + const router = useRouter() + + useEffect(() => { + fetch("https://downloads.wenglab.org/databyct.json") + .then((response) => { + return response.json() + }) + .then((data) => { + //setCellTypes(data) + let byCt = Object.keys(data.byCellType).map((ct) => { + return { + value: ct, + tissue: data.byCellType[ct][0].tissue, + biosample_summary: data.byCellType[ct][0].biosample_summary + ":chr11:5205263-5381894", + } + }) + setOptions(byCt.map((ct) => ct.biosample_summary)) + setCelltypes(byCt) + setLoading(false) + }) + .catch((error: Error) => { + // logging + // throw error + }) + setLoading(true) + }, [props.assembly]) + + return ( + + + { + if (event.key === "Enter") { + event.defaultPrevented = true + + if (value) { + let tissue = cellTypes.find((g) => g.biosample_summary === value)?.tissue + let biosample = cellTypes.find((g) => g.biosample_summary === value)?.value + let biosample_summary = value.split(":")[0] + let chromosome = value.split(":")[1] + let start = value.split(":")[2].split("-")[0] + let end = value.split(":")[2].split("-")[1] + router.push( + `search?assembly=${props.assembly}&chromosome=${chromosome}&start=${Math.max( + 0, + start + )}&end=${end}&BiosampleTissue=${tissue}&BiosampleSummary=${biosample_summary}&Biosample=${biosample}` + ) + } + } + }} + value={value} + onChange={(_: any, newValue: string | null) => { + setValue(newValue) + }} + inputValue={inputValue} + onInputChange={(event, newInputValue) => { + if (newInputValue != "") { + //debounceFn(newInputValue); + } + + setInputValue(newInputValue) + }} + noOptionsText="e.g. LNCAP" + renderInput={(params) => ( + + )} + renderOption={(props, option) => { + return ( +
  • + + + + {option} + + {cellTypes && cellTypes.find((g) => g.biosample_summary === option) && ( + + {`${cellTypes.find((g) => g.biosample_summary === option)?.tissue}`} + + )} + + +
  • + ) + }} + /> +
    +
    + ) +} diff --git a/screen2.0/src/common/components/GeneAutocomplete.tsx b/screen2.0/src/common/components/mainsearch/GeneAutocomplete.tsx similarity index 55% rename from screen2.0/src/common/components/GeneAutocomplete.tsx rename to screen2.0/src/common/components/mainsearch/GeneAutocomplete.tsx index 91a22f00..b7fe3123 100644 --- a/screen2.0/src/common/components/GeneAutocomplete.tsx +++ b/screen2.0/src/common/components/mainsearch/GeneAutocomplete.tsx @@ -1,198 +1,194 @@ -import * as React from "react"; -import Box from "@mui/material/Box"; -import TextField from "@mui/material/TextField"; -import Autocomplete from "@mui/material/Autocomplete"; -import Grid from "@mui/material/Grid"; -import Typography from "@mui/material/Typography"; -import { debounce } from "@mui/material/utils"; -import { useRouter } from "next/navigation" - -export type QueryResponse = [ - number, - string[], - any, - [string, string, string, string, string, string][], - string[] - ]; - -const GENE_AUTOCOMPLETE_QUERY = ` -query ($assembly: String!, $name_prefix: [String!], $limit: Int) { - gene(assembly: $assembly, name_prefix: $name_prefix, limit: $limit) { - name - id - coordinates { - start - chromosome - end - } - } - } - `; - -export const GeneAutoComplete = (props) => { - const [value, setValue] = React.useState(null); - const [inputValue, setInputValue] = React.useState(""); - const [options, setOptions] = React.useState([]); - const [geneids, setGeneIds] = React.useState< - { chrom: string; start: number; end: number; id: string; name: string }[] - >([]); - - const router = useRouter() - const [geneDesc, setgeneDesc] = - React.useState<{ name: string; desc: string }[]>(); - - React.useEffect(() => { - const fetchData = async () => { - let f = await Promise.all( - options.map((gene) => - fetch( - "https://clinicaltables.nlm.nih.gov/api/ncbi_genes/v3/search?authenticity_token=&terms=" + - gene.toUpperCase() - ) - .then((x) => x && x.json()) - .then((x) => { - const matches = - (x as QueryResponse)[3] && - (x as QueryResponse)[3].filter( - (x) => x[3] === gene.toUpperCase() - ); - return { - desc: - matches && matches.length >= 1 - ? matches[0][4] - : "(no description available)", - name: gene, - }; - }) - .catch(() => { - return { desc: "(no description available)", name: gene }; - }) - ) - ); - setgeneDesc(f); - }; - - options && fetchData(); - }, [options]); - - const onSearchChange = async (value: string) => { - setOptions([]); - const response = await fetch("https://ga.staging.wenglab.org/graphql", { - method: "POST", - body: JSON.stringify({ - query: GENE_AUTOCOMPLETE_QUERY, - variables: { - assembly: "GRCh38", - name_prefix: value, - limit: 1000, - }, - }), - headers: { "Content-Type": "application/json" }, - }); - const genesSuggestion = (await response.json()).data?.gene; - if (genesSuggestion && genesSuggestion.length > 0) { - const r = genesSuggestion.map((g) => g.name); - const g = genesSuggestion.map((g) => { - return { - chrom: g.coordinates.chromosome, - start: g.coordinates.start, - end: g.coordinates.end, - id: g.id, - name: g.name, - }; - }); - setOptions(r); - setGeneIds(g); - } else if (genesSuggestion && genesSuggestion.length === 0) { - setOptions([]); - setGeneIds([]); - } - }; - - const debounceFn = React.useCallback(debounce(onSearchChange, 500), []); - const gridsize = props.gridsize || 5.5; - return ( - - {props.showTitle && ( - - Search gene: -
    -
    - )} - - { - if (event.key === "Enter") { - event.defaultPrevented = true; - console.log("value",value) - value && - props.onSelected && - props.onSelected({ - geneid: geneids - .find((g) => g.name === value) - ?.id.split(".")[0], - chromosome: geneids.find((g) => g.name === value)?.chrom, - start: geneids.find((g) => g.name === value)?.start, - end: geneids.find((g) => g.name === value)?.end, - }); - if (value) - { - let chrom = geneids.find((g) => g.name === value)?.chrom - let start = geneids.find((g) => g.name === value)?.start - let end = geneids.find((g) => g.name === value)?.end - router.push(`search?assembly=${props.assembly}&chromosome=${chrom}&start=${start}&end=${end}&gene=${value}`) - - } - - } - }} - value={value} - onChange={(_: any, newValue: string | null) => { - setValue(newValue); - }} - inputValue={inputValue} - onInputChange={(event, newInputValue) => { - if (newInputValue != "") { - debounceFn(newInputValue); - } - - setInputValue(newInputValue); - }} - noOptionsText="e.g sox4,gapdh" - renderInput={(params) => ( - - )} - renderOption={(props, option) => { - return ( -
  • - - - - {option} - - {geneDesc && geneDesc.find((g) => g.name === option) && ( - - {geneDesc.find((g) => g.name === option)?.desc} - - )} - - -
  • - ); - }} - /> -
    -
    - ); -}; +import * as React from "react" +import Box from "@mui/material/Box" +import TextField from "@mui/material/TextField" +import Autocomplete from "@mui/material/Autocomplete" +import Grid from "@mui/material/Grid" +import Typography from "@mui/material/Typography" +import { debounce } from "@mui/material/utils" +import { useRouter } from "next/navigation" +import SearchIcon from "@mui/icons-material/Search" +import { IconButton, InputAdornment, InputBaseProps, createTheme } from "@mui/material" +export type QueryResponse = [number, string[], any, [string, string, string, string, string, string][], string[]] + +const GENE_AUTOCOMPLETE_QUERY = ` +query ($assembly: String!, $name_prefix: [String!], $limit: Int) { + gene(assembly: $assembly, name_prefix: $name_prefix, limit: $limit) { + name + id + coordinates { + start + chromosome + end + } + } + } + ` + +export const GeneAutoComplete = (props) => { + const [value, setValue] = React.useState(null) + const [inputValue, setInputValue] = React.useState("") + const [options, setOptions] = React.useState([]) + const [geneids, setGeneIds] = React.useState<{ chrom: string; start: number; end: number; id: string; name: string }[]>([]) + + const router = useRouter() + const [geneDesc, setgeneDesc] = React.useState<{ name: string; desc: string }[]>() + + React.useEffect(() => { + const fetchData = async () => { + let f = await Promise.all( + options.map((gene) => + fetch("https://clinicaltables.nlm.nih.gov/api/ncbi_genes/v3/search?authenticity_token=&terms=" + gene.toUpperCase()) + .then((x) => x && x.json()) + .then((x) => { + const matches = (x as QueryResponse)[3] && (x as QueryResponse)[3].filter((x) => x[3] === gene.toUpperCase()) + return { + desc: matches && matches.length >= 1 ? matches[0][4] : "(no description available)", + name: gene, + } + }) + .catch(() => { + return { desc: "(no description available)", name: gene } + }) + ) + ) + setgeneDesc(f) + } + + options && fetchData() + }, [options]) + + const onSearchChange = async (value: string) => { + setOptions([]) + const response = await fetch("https://ga.staging.wenglab.org/graphql", { + method: "POST", + body: JSON.stringify({ + query: GENE_AUTOCOMPLETE_QUERY, + variables: { + assembly: "GRCh38", + name_prefix: value, + limit: 1000, + }, + }), + headers: { "Content-Type": "application/json" }, + }) + const genesSuggestion = (await response.json()).data?.gene + if (genesSuggestion && genesSuggestion.length > 0) { + const r = genesSuggestion.map((g) => g.name) + const g = genesSuggestion.map((g) => { + return { + chrom: g.coordinates.chromosome, + start: g.coordinates.start, + end: g.coordinates.end, + id: g.id, + name: g.name, + } + }) + setOptions(r) + setGeneIds(g) + } else if (genesSuggestion && genesSuggestion.length === 0) { + setOptions([]) + setGeneIds([]) + } + } + + const debounceFn = React.useCallback(debounce(onSearchChange, 500), []) + const gridsize = props.gridsize || 5.5 + return ( + + {props.showTitle && ( + + Search gene: +
    +
    + )} + + { + if (event.key === "Enter") { + event.defaultPrevented = true + + value && + props.onSelected && + props.onSelected({ + geneid: geneids.find((g) => g.name === value)?.id.split(".")[0], + chromosome: geneids.find((g) => g.name === value)?.chrom, + start: geneids.find((g) => g.name === value)?.start, + end: geneids.find((g) => g.name === value)?.end, + }) + if (value) { + let chrom = geneids.find((g) => g.name === value)?.chrom + let start = geneids.find((g) => g.name === value)?.start + let end = geneids.find((g) => g.name === value)?.end + router.push(`search?assembly=${props.assembly}&chromosome=${chrom}&start=${start}&end=${end}&gene=${value}`) + } + } + }} + value={value} + onChange={(_: any, newValue: string | null) => { + setValue(newValue) + }} + inputValue={inputValue} + onInputChange={(event, newInputValue) => { + if (newInputValue != "") { + debounceFn(newInputValue) + } + + setInputValue(newInputValue) + }} + noOptionsText="e.g sox4,gapdh" + renderInput={(params) => ( + + )} + renderOption={(props, option) => { + return ( +
  • + + + + {option} + + {geneDesc && geneDesc.find((g) => g.name === option) && ( + + {geneDesc.find((g) => g.name === option)?.desc} + + )} + + +
  • + ) + }} + /> +
    +
    + ) +} diff --git a/screen2.0/src/common/components/mainsearch/MainSearch.tsx b/screen2.0/src/common/components/mainsearch/MainSearch.tsx new file mode 100644 index 00000000..8c9fc8e1 --- /dev/null +++ b/screen2.0/src/common/components/mainsearch/MainSearch.tsx @@ -0,0 +1,123 @@ +"use client" +import React, { useState } from "react" +import Grid2 from "../../mui-client-wrappers/Grid2" +import { Stack, TextField, IconButton, InputAdornment, InputBaseProps, createTheme } from "@mui/material" +import SearchIcon from "@mui/icons-material/Search" +import GenomeSwitch from "../GenomeSwitch" +import { useRouter } from "next/navigation" +import MenuItem from "@mui/material/MenuItem" +import FormControl from "@mui/material/FormControl" +import Select, { SelectChangeEvent } from "@mui/material/Select" +import { CcreAutoComplete } from "./CcreAutocomplete" +import { GeneAutoComplete } from "./GeneAutocomplete" +import { SnpAutoComplete } from "./SnpAutocomplete" +import { CelltypeAutocomplete } from "./CelltypeAutocomplete" + +export type MainSearchProps = InputBaseProps & { + //false for human, true for mouse + initialChecked?: boolean, + textColor?: string +} +const MainSearch: React.FC = (props: MainSearchProps) => { + const [value, setValue] = useState("") + const [checked, setChecked] = useState(props.initialChecked || false) + const [selectedSearch, setSelectedSearch] = useState("Genomic Region") + const assembly = checked ? "mm10" : "GRCh38" + const handleSearchChange = (event: SelectChangeEvent) => { + setSelectedSearch(event.target.value) + } + const router = useRouter() + + const handleChange = (event: { target: { value: React.SetStateAction } }) => { + setValue(event.target.value) + } + + function handleSubmit() { + const assembly = checked ? "mm10" : "GRCh38" + //if submitted with empty value, use default search + if (value == "") { + router.push(`/search?assembly=${assembly}&chromosome=chr11&start=5205263&end=5381894`) + return + } + const input = value.split(":") + const chromosome = input[0] + const coordinates = input[1].split("-") + const start = coordinates[0] + const end = coordinates[1] + router.push(`/search?assembly=${assembly}&chromosome=${chromosome}&start=${start}&end=${end}`) + } + + return ( + + + + + + + + + {selectedSearch === "Genomic Region" ? ( + { + if (event.code === "Enter") { + handleSubmit() + } + }} + InputProps={{ + endAdornment: ( + + handleSubmit()} sx={{ color: props.textColor || "black" }}> + + + + ), + style: { color: props.textColor || "black" }, + }} + sx={{ mr: "1em", ml: "1em", fieldset: { borderColor: props.textColor || "black" } }} + /> + ) : selectedSearch === "Gene Name" ? ( + + ) : selectedSearch === "SNP rsID" ? ( + + ) : selectedSearch === "Cell Type" ? ( + + ) : ( + + )} + + + setChecked(checked)} + /> + + + + ) +} + +export default MainSearch diff --git a/screen2.0/src/common/components/SnpAutocomplete.tsx b/screen2.0/src/common/components/mainsearch/SnpAutocomplete.tsx similarity index 52% rename from screen2.0/src/common/components/SnpAutocomplete.tsx rename to screen2.0/src/common/components/mainsearch/SnpAutocomplete.tsx index bbb47ded..8a5f715d 100644 --- a/screen2.0/src/common/components/SnpAutocomplete.tsx +++ b/screen2.0/src/common/components/mainsearch/SnpAutocomplete.tsx @@ -1,133 +1,152 @@ -import * as React from "react"; -import Box from "@mui/material/Box"; -import TextField from "@mui/material/TextField"; -import Autocomplete from "@mui/material/Autocomplete"; -import Grid from "@mui/material/Grid"; -import Typography from "@mui/material/Typography"; -import { debounce } from "@mui/material/utils"; -import { useRouter } from "next/navigation" - -const SNP_AUTOCOMPLETE_QUERY = ` -query snpAutocompleteQuery($snpid: String!, $assembly: String!) { - snpAutocompleteQuery(snpid: $snpid, assembly: $assembly) { - id - coordinates { - chromosome - start - end - } - } -} -`; -export const SnpAutoComplete = (props) => { - const [value, setValue] = React.useState(null); - const [inputValue, setInputValue] = React.useState(""); - const [options, setOptions] = React.useState([]); - const [snpids, setSnpIds] = React.useState([]); - const router = useRouter() - - const onSearchChange = async (value: any) => { - setOptions([]); - const response = await fetch("https://ga.staging.wenglab.org/graphql", { - method: "POST", - body: JSON.stringify({ - query: SNP_AUTOCOMPLETE_QUERY, - variables: { - assembly: "grch38", - snpid: value, - }, - }), - headers: { "Content-Type": "application/json" }, - }); - const snpSuggestion = (await response.json()).data?.snpAutocompleteQuery; - if (snpSuggestion && snpSuggestion.length > 0) { - const r = snpSuggestion.map((g: any) => g.id); - const snp = snpSuggestion.map((g: any) => { - return { - chrom: g.coordinates.chromosome, - start: g.coordinates.start, - end: g.coordinates.end, - id: g.id, - }; - }); - setOptions(r); - setSnpIds(snp); - } else if (snpSuggestion && snpSuggestion.length === 0) { - setOptions([]); - setSnpIds([]); - } - //setgeneCards([]); - }; - - const debounceFn = React.useCallback(debounce(onSearchChange, 500), []); - - return ( - - - { - if (event.key === "Enter") { - event.defaultPrevented = true; - - if (value) { - - let chromosome = snpids.find((g) => g.id === value)?.chrom - let start= snpids.find((g) => g.id === value)?.start - 2000 - let end= snpids.find((g) => g.id === value)?.end + 2000 - router.push(`search?assembly=${props.assembly}&chromosome=${chromosome}&start=${Math.max(0,start)}&end=${end}&snpid=${value}`) - } - } - }} - value={value} - onChange={(_: any, newValue: string | null) => { - setValue(newValue); - }} - inputValue={inputValue} - onInputChange={(event, newInputValue) => { - if (newInputValue != "") { - debounceFn(newInputValue); - } - - setInputValue(newInputValue); - }} - noOptionsText="e.g. rs11669173" - renderInput={(params) => ( - - )} - renderOption={(props, option) => { - return ( -
  • - - - - {option} - - {snpids && snpids.find((g) => g.id === option) && ( - - {`${snpids.find((g) => g.id === option)?.chrom}:${ - snpids.find((g) => g.id === option)?.start - }:${snpids.find((g) => g.id === option)?.end}`} - - )} - - -
  • - ); - }} - /> -
    - -
    - ); -}; +import * as React from "react" +import Box from "@mui/material/Box" +import TextField from "@mui/material/TextField" +import Autocomplete from "@mui/material/Autocomplete" +import Grid from "@mui/material/Grid" +import Typography from "@mui/material/Typography" +import { debounce } from "@mui/material/utils" +import { useRouter } from "next/navigation" + +const SNP_AUTOCOMPLETE_QUERY = ` +query snpAutocompleteQuery($snpid: String!, $assembly: String!) { + snpAutocompleteQuery(snpid: $snpid, assembly: $assembly) { + id + coordinates { + chromosome + start + end + } + } +} +` +export const SnpAutoComplete = (props) => { + const [value, setValue] = React.useState(null) + const [inputValue, setInputValue] = React.useState("") + const [options, setOptions] = React.useState([]) + const [snpids, setSnpIds] = React.useState([]) + const router = useRouter() + + const onSearchChange = async (value: any) => { + setOptions([]) + const response = await fetch("https://ga.staging.wenglab.org/graphql", { + method: "POST", + body: JSON.stringify({ + query: SNP_AUTOCOMPLETE_QUERY, + variables: { + assembly: "grch38", + snpid: value, + }, + }), + headers: { "Content-Type": "application/json" }, + }) + const snpSuggestion = (await response.json()).data?.snpAutocompleteQuery + if (snpSuggestion && snpSuggestion.length > 0) { + const r = snpSuggestion.map((g: any) => g.id) + const snp = snpSuggestion.map((g: any) => { + return { + chrom: g.coordinates.chromosome, + start: g.coordinates.start, + end: g.coordinates.end, + id: g.id, + } + }) + setOptions(r) + setSnpIds(snp) + } else if (snpSuggestion && snpSuggestion.length === 0) { + setOptions([]) + setSnpIds([]) + } + //setgeneCards([]); + } + + const debounceFn = React.useCallback(debounce(onSearchChange, 500), []) + + return ( + + + { + if (event.key === "Enter") { + event.defaultPrevented = true + + if (value) { + let chromosome = snpids.find((g) => g.id === value)?.chrom + let start = snpids.find((g) => g.id === value)?.start - 2000 + let end = snpids.find((g) => g.id === value)?.end + 2000 + router.push( + `search?assembly=${props.assembly}&chromosome=${chromosome}&start=${Math.max(0, start)}&end=${end}&snpid=${value}` + ) + } + } + }} + value={value} + onChange={(_: any, newValue: string | null) => { + setValue(newValue) + }} + inputValue={inputValue} + onInputChange={(event, newInputValue) => { + if (newInputValue != "") { + debounceFn(newInputValue) + } + + setInputValue(newInputValue) + }} + noOptionsText="e.g. rs11669173" + renderInput={(params) => ( + + )} + renderOption={(props, option) => { + return ( +
  • + + + + {option} + + {snpids && snpids.find((g) => g.id === option) && ( + + {`${snpids.find((g) => g.id === option)?.chrom}:${snpids.find((g) => g.id === option)?.start}:${ + snpids.find((g) => g.id === option)?.end + }`} + + )} + + +
  • + ) + }} + /> +
    +
    + ) +} diff --git a/screen2.0/yarn.lock b/screen2.0/yarn.lock index 867784be..1358687a 100644 --- a/screen2.0/yarn.lock +++ b/screen2.0/yarn.lock @@ -78,7 +78,7 @@ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.10.tgz#e37634f9a12a1716136c44624ef54283cabd3f55" integrity sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ== -"@babel/runtime@^7.12.5", "@babel/runtime@^7.18.3", "@babel/runtime@^7.20.7", "@babel/runtime@^7.21.0", "@babel/runtime@^7.22.6", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.7": +"@babel/runtime@^7.12.5", "@babel/runtime@^7.18.3", "@babel/runtime@^7.20.7", "@babel/runtime@^7.21.0", "@babel/runtime@^7.22.6", "@babel/runtime@^7.3.1", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.3", "@babel/runtime@^7.8.7": version "7.22.10" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.10.tgz#ae3e9631fd947cb7e3610d3e9d8fef5f76696682" integrity sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ== @@ -360,6 +360,15 @@ "@mui/utils" "^5.14.4" prop-types "^15.8.1" +"@mui/private-theming@^5.14.5": + version "5.14.5" + resolved "https://registry.yarnpkg.com/@mui/private-theming/-/private-theming-5.14.5.tgz#834e1569c31e2644665f98d902def79014053017" + integrity sha512-cC4C5RrpXpDaaZyH9QwmPhRLgz+f2SYbOty3cPkk4qPSOSfif2ZEcDD9HTENKDDd9deB+xkPKzzZhi8cxIx8Ig== + dependencies: + "@babel/runtime" "^7.22.6" + "@mui/utils" "^5.14.5" + prop-types "^15.8.1" + "@mui/styled-engine@^5.13.2": version "5.13.2" resolved "https://registry.yarnpkg.com/@mui/styled-engine/-/styled-engine-5.13.2.tgz#c87bd61c0ab8086d34828b6defe97c02bcd642ef" @@ -370,6 +379,29 @@ csstype "^3.1.2" prop-types "^15.8.1" +"@mui/styles@^5.14.5": + version "5.14.5" + resolved "https://registry.yarnpkg.com/@mui/styles/-/styles-5.14.5.tgz#182759e844045b613a3c86266804642860c2fe53" + integrity sha512-yss4BRGae6ib4gq6YpVLnPyhHiuSIENwlDPWrTEqgc1UhTMmDBGZ7ZCdZ15YGdwviJuNDDf5Bcp3GK4rE5wZNQ== + dependencies: + "@babel/runtime" "^7.22.6" + "@emotion/hash" "^0.9.1" + "@mui/private-theming" "^5.14.5" + "@mui/types" "^7.2.4" + "@mui/utils" "^5.14.5" + clsx "^2.0.0" + csstype "^3.1.2" + hoist-non-react-statics "^3.3.2" + jss "^10.10.0" + jss-plugin-camel-case "^10.10.0" + jss-plugin-default-unit "^10.10.0" + jss-plugin-global "^10.10.0" + jss-plugin-nested "^10.10.0" + jss-plugin-props-sort "^10.10.0" + jss-plugin-rule-value-function "^10.10.0" + jss-plugin-vendor-prefixer "^10.10.0" + prop-types "^15.8.1" + "@mui/system@^5.14.4": version "5.14.4" resolved "https://registry.yarnpkg.com/@mui/system/-/system-5.14.4.tgz#306a2fdd41ab6f4912ea689316f834db8461bb86" @@ -400,6 +432,17 @@ prop-types "^15.8.1" react-is "^18.2.0" +"@mui/utils@^5.14.5": + version "5.14.5" + resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-5.14.5.tgz#98fb6060610b793a8478e70ffe5e4ed5bd922dba" + integrity sha512-6Hzw63VR9C5xYv+CbjndoRLU6Gntal8rJ5W+GUzkyHrGWIyYPWZPa6AevnyGioySNETATe1H9oXS8f/7qgIHJA== + dependencies: + "@babel/runtime" "^7.22.6" + "@types/prop-types" "^15.7.5" + "@types/react-is" "^18.2.1" + prop-types "^15.8.1" + react-is "^18.2.0" + "@next/env@13.4.12": version "13.4.12" resolved "https://registry.yarnpkg.com/@next/env/-/env-13.4.12.tgz#0b88115ab817f178bf9dc0c5e7b367277595b58d" @@ -1595,6 +1638,14 @@ csrf@3.1.0: tsscmp "1.0.6" uid-safe "2.1.5" +css-vendor@^2.0.8: + version "2.0.8" + resolved "https://registry.yarnpkg.com/css-vendor/-/css-vendor-2.0.8.tgz#e47f91d3bd3117d49180a3c935e62e3d9f7f449d" + integrity sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ== + dependencies: + "@babel/runtime" "^7.8.3" + is-in-browser "^1.0.2" + cssesc@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" @@ -2727,6 +2778,11 @@ human-signals@^4.3.0: resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-4.3.1.tgz#ab7f811e851fca97ffbd2c1fe9a958964de321b2" integrity sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ== +hyphenate-style-name@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz#691879af8e220aea5750e8827db4ef62a54e361d" + integrity sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ== + iconv-lite@0.4.24: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" @@ -2922,6 +2978,11 @@ is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: dependencies: is-extglob "^2.1.1" +is-in-browser@^1.0.2, is-in-browser@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/is-in-browser/-/is-in-browser-1.1.3.tgz#56ff4db683a078c6082eb95dad7dc62e1d04f835" + integrity sha512-FeXIBgG/CPGd/WUxuEyvgGTEfwiG9Z4EKGxjNMRqviiIIfsmgrpnHLffEDdwUHqNva1VEW91o3xBT/m8Elgl9g== + is-negative-zero@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" @@ -3082,6 +3143,76 @@ json5@^2.1.2: resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== +jss-plugin-camel-case@^10.10.0: + version "10.10.0" + resolved "https://registry.yarnpkg.com/jss-plugin-camel-case/-/jss-plugin-camel-case-10.10.0.tgz#27ea159bab67eb4837fa0260204eb7925d4daa1c" + integrity sha512-z+HETfj5IYgFxh1wJnUAU8jByI48ED+v0fuTuhKrPR+pRBYS2EDwbusU8aFOpCdYhtRc9zhN+PJ7iNE8pAWyPw== + dependencies: + "@babel/runtime" "^7.3.1" + hyphenate-style-name "^1.0.3" + jss "10.10.0" + +jss-plugin-default-unit@^10.10.0: + version "10.10.0" + resolved "https://registry.yarnpkg.com/jss-plugin-default-unit/-/jss-plugin-default-unit-10.10.0.tgz#db3925cf6a07f8e1dd459549d9c8aadff9804293" + integrity sha512-SvpajxIECi4JDUbGLefvNckmI+c2VWmP43qnEy/0eiwzRUsafg5DVSIWSzZe4d2vFX1u9nRDP46WCFV/PXVBGQ== + dependencies: + "@babel/runtime" "^7.3.1" + jss "10.10.0" + +jss-plugin-global@^10.10.0: + version "10.10.0" + resolved "https://registry.yarnpkg.com/jss-plugin-global/-/jss-plugin-global-10.10.0.tgz#1c55d3c35821fab67a538a38918292fc9c567efd" + integrity sha512-icXEYbMufiNuWfuazLeN+BNJO16Ge88OcXU5ZDC2vLqElmMybA31Wi7lZ3lf+vgufRocvPj8443irhYRgWxP+A== + dependencies: + "@babel/runtime" "^7.3.1" + jss "10.10.0" + +jss-plugin-nested@^10.10.0: + version "10.10.0" + resolved "https://registry.yarnpkg.com/jss-plugin-nested/-/jss-plugin-nested-10.10.0.tgz#db872ed8925688806e77f1fc87f6e62264513219" + integrity sha512-9R4JHxxGgiZhurDo3q7LdIiDEgtA1bTGzAbhSPyIOWb7ZubrjQe8acwhEQ6OEKydzpl8XHMtTnEwHXCARLYqYA== + dependencies: + "@babel/runtime" "^7.3.1" + jss "10.10.0" + tiny-warning "^1.0.2" + +jss-plugin-props-sort@^10.10.0: + version "10.10.0" + resolved "https://registry.yarnpkg.com/jss-plugin-props-sort/-/jss-plugin-props-sort-10.10.0.tgz#67f4dd4c70830c126f4ec49b4b37ccddb680a5d7" + integrity sha512-5VNJvQJbnq/vRfje6uZLe/FyaOpzP/IH1LP+0fr88QamVrGJa0hpRRyAa0ea4U/3LcorJfBFVyC4yN2QC73lJg== + dependencies: + "@babel/runtime" "^7.3.1" + jss "10.10.0" + +jss-plugin-rule-value-function@^10.10.0: + version "10.10.0" + resolved "https://registry.yarnpkg.com/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.10.0.tgz#7d99e3229e78a3712f78ba50ab342e881d26a24b" + integrity sha512-uEFJFgaCtkXeIPgki8ICw3Y7VMkL9GEan6SqmT9tqpwM+/t+hxfMUdU4wQ0MtOiMNWhwnckBV0IebrKcZM9C0g== + dependencies: + "@babel/runtime" "^7.3.1" + jss "10.10.0" + tiny-warning "^1.0.2" + +jss-plugin-vendor-prefixer@^10.10.0: + version "10.10.0" + resolved "https://registry.yarnpkg.com/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.10.0.tgz#c01428ef5a89f2b128ec0af87a314d0c767931c7" + integrity sha512-UY/41WumgjW8r1qMCO8l1ARg7NHnfRVWRhZ2E2m0DMYsr2DD91qIXLyNhiX83hHswR7Wm4D+oDYNC1zWCJWtqg== + dependencies: + "@babel/runtime" "^7.3.1" + css-vendor "^2.0.8" + jss "10.10.0" + +jss@10.10.0, jss@^10.10.0: + version "10.10.0" + resolved "https://registry.yarnpkg.com/jss/-/jss-10.10.0.tgz#a75cc85b0108c7ac8c7b7d296c520a3e4fbc6ccc" + integrity sha512-cqsOTS7jqPsPMjtKYDUpdFC0AbhYFLTcuGRqymgmdJIeQ8cH7+AgX7YSgQy79wXloZq2VvATYxUOUQEvS1V/Zw== + dependencies: + "@babel/runtime" "^7.3.1" + csstype "^3.0.2" + is-in-browser "^1.1.3" + tiny-warning "^1.0.2" + jstransformer@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/jstransformer/-/jstransformer-1.0.0.tgz#ed8bf0921e2f3f1ed4d5c1a44f68709ed24722c3" @@ -4882,6 +5013,11 @@ through@^2.3.8: resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== +tiny-warning@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754" + integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== + to-fast-properties@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" From efe0582ffdffabe57baa95d2c0df1aec7b970d99 Mon Sep 17 00:00:00 2001 From: NishiPhalke Date: Mon, 28 Aug 2023 18:09:36 -0400 Subject: [PATCH 3/8] reverting navbar search --- screen2.0/src/common/components/ResponsiveAppBar.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/screen2.0/src/common/components/ResponsiveAppBar.tsx b/screen2.0/src/common/components/ResponsiveAppBar.tsx index c5c88151..8681ae11 100644 --- a/screen2.0/src/common/components/ResponsiveAppBar.tsx +++ b/screen2.0/src/common/components/ResponsiveAppBar.tsx @@ -13,6 +13,7 @@ import nextConfig from "../../../next.config" import screenIcon from "../../../public/screenIcon.png" import { defaultTheme } from "../lib/themes" import MainSearch from "./mainsearch/MainSearch" +import HeaderSearch from "./HeaderSearch" // CLICKING ON LINKS ONCE THE POPUP IS OPEN IS BROKEN!!! @@ -247,9 +248,11 @@ function ResponsiveAppBar() { ))}
    {/* TODO onSubmit for search box */} + - + + {/* Settings */} Date: Wed, 6 Sep 2023 10:46:13 -0400 Subject: [PATCH 4/8] refactoring --- .../mainsearch/CcreAutocomplete.tsx | 24 +++++++++---------- .../mainsearch/CelltypeAutocomplete.tsx | 21 ++++++---------- .../mainsearch/GeneAutocomplete.tsx | 6 ++--- .../components/mainsearch/SnpAutocomplete.tsx | 21 ++++++++-------- 4 files changed, 31 insertions(+), 41 deletions(-) diff --git a/screen2.0/src/common/components/mainsearch/CcreAutocomplete.tsx b/screen2.0/src/common/components/mainsearch/CcreAutocomplete.tsx index 19e6da50..25dfe285 100644 --- a/screen2.0/src/common/components/mainsearch/CcreAutocomplete.tsx +++ b/screen2.0/src/common/components/mainsearch/CcreAutocomplete.tsx @@ -29,7 +29,7 @@ export const CcreAutoComplete = (props) => { const [ccreAccessions, setCcreAccessions] = React.useState([]) const router = useRouter() - const onSearchChange = async (value: any) => { + const onSearchChange = async (value: string) => { setOptions([]) const response = await fetch("https://factorbook.api.wenglab.org/graphql", { method: "POST", @@ -45,8 +45,8 @@ export const CcreAutoComplete = (props) => { }) const ccreSuggestion = (await response.json()).data?.cCREQuery if (ccreSuggestion && ccreSuggestion.length > 0) { - const r = ccreSuggestion.map((g: any) => g.accession) - const ccres = ccreSuggestion.map((g: any) => { + const r = ccreSuggestion.map((g: { accession: string}) => g.accession) + const ccres = ccreSuggestion.map((g: { accession: string, coordinates: { start: number, end: number, chromosome: string }}) => { return { chrom: g.coordinates.chromosome, start: g.coordinates.start, @@ -81,15 +81,15 @@ export const CcreAutoComplete = (props) => { event.defaultPrevented = true if (value) { - let chrom = (ccreAccessions.find((g: any) => g.ccreaccession === value) as any)?.chrom - let start = (ccreAccessions.find((g: any) => g.ccreaccession === value) as any)?.start - let end = (ccreAccessions.find((g: any) => g.ccreaccession === value) as any)?.end + let chrom = (ccreAccessions.find((g: {ccreaccession: string}) => g.ccreaccession === value))?.chrom + let start = (ccreAccessions.find((g: {ccreaccession: string}) => g.ccreaccession === value))?.start + let end = (ccreAccessions.find((g: {ccreaccession: string}) => g.ccreaccession === value))?.end router.push(`search?assembly=${props.assembly}&chromosome=${chrom}&start=${start}&end=${end}&accession=${value}`) } } }} value={value} - onChange={(_: any, newValue: any) => { + onChange={(_, newValue: string | null) => { setValue(newValue) }} inputValue={inputValue} @@ -106,7 +106,7 @@ export const CcreAutoComplete = (props) => { {...params} label="Enter a cCRE accession" InputLabelProps={{ shrink: true, style: { color: props.textColor || "black" } }} - // InputProps={{ style: { color: props.textColor || "black" } }} + placeholder="e.g. EH38E0001314" fullWidth sx={{ fieldset: { borderColor: props.textColor || "black"}, '& .MuiInput-underline:after': { @@ -134,11 +134,11 @@ export const CcreAutoComplete = (props) => { {option} - {ccreAccessions && ccreAccessions.find((g: any) => g.ccreaccession === option) && ( + {ccreAccessions && ccreAccessions.find((g: {ccreaccession: string }) => g.ccreaccession === option) && ( - {`${(ccreAccessions.find((g: any) => g.ccreaccession === option) as any)?.chrom}:${ - (ccreAccessions.find((g: any) => g.ccreaccession === option) as any)?.start - }:${(ccreAccessions.find((g: any) => g.ccreaccession === option) as any)?.end}`} + {`${(ccreAccessions.find((g: {ccreaccession: string }) => g.ccreaccession === option))?.chrom}:${ + (ccreAccessions.find((g: {ccreaccession: string }) => g.ccreaccession === option))?.start + }:${(ccreAccessions.find((g: {ccreaccession: string }) => g.ccreaccession === option))?.end}`} )}
    diff --git a/screen2.0/src/common/components/mainsearch/CelltypeAutocomplete.tsx b/screen2.0/src/common/components/mainsearch/CelltypeAutocomplete.tsx index ba991f30..c1863f1a 100644 --- a/screen2.0/src/common/components/mainsearch/CelltypeAutocomplete.tsx +++ b/screen2.0/src/common/components/mainsearch/CelltypeAutocomplete.tsx @@ -9,10 +9,10 @@ import { useRouter } from "next/navigation" import { gql, useQuery } from "@apollo/client" export const CelltypeAutocomplete = (props) => { - const [value, setValue] = useState(null) + const [value, setValue] = useState(null) const [inputValue, setInputValue] = useState("") - const [options, setOptions] = useState([]) - const [cellTypes, setCelltypes] = useState([]) + const [options, setOptions] = useState([]) + const [cellTypes, setCelltypes] = useState([]) const [loading, setLoading] = useState(false) const router = useRouter() @@ -22,7 +22,7 @@ export const CelltypeAutocomplete = (props) => { return response.json() }) .then((data) => { - //setCellTypes(data) + let byCt = Object.keys(data.byCellType).map((ct) => { return { value: ct, @@ -35,8 +35,7 @@ export const CelltypeAutocomplete = (props) => { setLoading(false) }) .catch((error: Error) => { - // logging - // throw error + console.log(error) }) setLoading(true) }, [props.assembly]) @@ -56,7 +55,6 @@ export const CelltypeAutocomplete = (props) => { onKeyDown={(event) => { if (event.key === "Enter") { event.defaultPrevented = true - if (value) { let tissue = cellTypes.find((g) => g.biosample_summary === value)?.tissue let biosample = cellTypes.find((g) => g.biosample_summary === value)?.value @@ -74,15 +72,11 @@ export const CelltypeAutocomplete = (props) => { } }} value={value} - onChange={(_: any, newValue: string | null) => { + onChange={(_, newValue: string | null) => { setValue(newValue) }} inputValue={inputValue} onInputChange={(event, newInputValue) => { - if (newInputValue != "") { - //debounceFn(newInputValue); - } - setInputValue(newInputValue) }} noOptionsText="e.g. LNCAP" @@ -90,8 +84,7 @@ export const CelltypeAutocomplete = (props) => { { - const [value, setValue] = React.useState(null) + const [value, setValue] = React.useState(null) const [inputValue, setInputValue] = React.useState("") const [options, setOptions] = React.useState([]) const [geneids, setGeneIds] = React.useState<{ chrom: string; start: number; end: number; id: string; name: string }[]>([]) @@ -132,7 +130,7 @@ export const GeneAutoComplete = (props) => { } }} value={value} - onChange={(_: any, newValue: string | null) => { + onChange={(_, newValue: string | null) => { setValue(newValue) }} inputValue={inputValue} diff --git a/screen2.0/src/common/components/mainsearch/SnpAutocomplete.tsx b/screen2.0/src/common/components/mainsearch/SnpAutocomplete.tsx index 8a5f715d..9c84173a 100644 --- a/screen2.0/src/common/components/mainsearch/SnpAutocomplete.tsx +++ b/screen2.0/src/common/components/mainsearch/SnpAutocomplete.tsx @@ -20,13 +20,13 @@ query snpAutocompleteQuery($snpid: String!, $assembly: String!) { } ` export const SnpAutoComplete = (props) => { - const [value, setValue] = React.useState(null) + const [value, setValue] = React.useState(null) const [inputValue, setInputValue] = React.useState("") - const [options, setOptions] = React.useState([]) - const [snpids, setSnpIds] = React.useState([]) + const [options, setOptions] = React.useState([]) + const [snpids, setSnpIds] = React.useState([]) const router = useRouter() - const onSearchChange = async (value: any) => { + const onSearchChange = async (value: string) => { setOptions([]) const response = await fetch("https://ga.staging.wenglab.org/graphql", { method: "POST", @@ -41,8 +41,8 @@ export const SnpAutoComplete = (props) => { }) const snpSuggestion = (await response.json()).data?.snpAutocompleteQuery if (snpSuggestion && snpSuggestion.length > 0) { - const r = snpSuggestion.map((g: any) => g.id) - const snp = snpSuggestion.map((g: any) => { + const r = snpSuggestion.map((g: {id: string}) => g.id) + const snp = snpSuggestion.map((g: {id: string, coordinates: {chromosome:string, start: number, end: number} }) => { return { chrom: g.coordinates.chromosome, start: g.coordinates.start, @@ -56,7 +56,7 @@ export const SnpAutoComplete = (props) => { setOptions([]) setSnpIds([]) } - //setgeneCards([]); + } const debounceFn = React.useCallback(debounce(onSearchChange, 500), []) @@ -88,11 +88,11 @@ export const SnpAutoComplete = (props) => { } }} value={value} - onChange={(_: any, newValue: string | null) => { + onChange={(_, newValue: string | null) => { setValue(newValue) }} inputValue={inputValue} - onInputChange={(event, newInputValue) => { + onInputChange={(_, newInputValue) => { if (newInputValue != "") { debounceFn(newInputValue) } @@ -104,8 +104,7 @@ export const SnpAutoComplete = (props) => { Date: Wed, 6 Sep 2023 10:56:46 -0400 Subject: [PATCH 5/8] refactoring --- .../src/app/search/gbview/defaulttracks.tsx | 2 +- screen2.0/src/app/search/gbview/tfmotiftrack.tsx | 4 ++-- .../src/common/components/MainResultsTable.tsx | 2 +- .../components/mainsearch/CcreAutocomplete.tsx | 12 ++++++------ .../mainsearch/CelltypeAutocomplete.tsx | 2 +- .../components/mainsearch/GeneAutocomplete.tsx | 16 ++++++++-------- 6 files changed, 19 insertions(+), 19 deletions(-) diff --git a/screen2.0/src/app/search/gbview/defaulttracks.tsx b/screen2.0/src/app/search/gbview/defaulttracks.tsx index 184b8b84..45e0a5d9 100644 --- a/screen2.0/src/app/search/gbview/defaulttracks.tsx +++ b/screen2.0/src/app/search/gbview/defaulttracks.tsx @@ -157,7 +157,7 @@ const DefaultTracks: React.FC = (props) => { () => associateBy( (data && data.bigRequests && data.bigRequests[0].data) || [], - (x: any) => x.name, + (x: { name: string}) => x.name, (x: any) => ({ chromosome: x.chr, start: x.start, end: x.end }) ), [data] diff --git a/screen2.0/src/app/search/gbview/tfmotiftrack.tsx b/screen2.0/src/app/search/gbview/tfmotiftrack.tsx index 90b3fcec..f086dacc 100644 --- a/screen2.0/src/app/search/gbview/tfmotiftrack.tsx +++ b/screen2.0/src/app/search/gbview/tfmotiftrack.tsx @@ -40,11 +40,11 @@ export const TfMotifTrack = (props) => { data={props.data} transform="translate(0,40)" tooltipContent={(rect: any) => { - console.log(rect, ":recg") + return }} onClick={(x: any) => { - //return window.open(`${x}`) + return window.open( `https://factorbook.org/tf/${props.assembly === "GRCh38" ? "human" : "mouse"}/${x.rectname.split("$")[2]}/motif`, "_blank" diff --git a/screen2.0/src/common/components/MainResultsTable.tsx b/screen2.0/src/common/components/MainResultsTable.tsx index 80f6234a..cf94e1b4 100644 --- a/screen2.0/src/common/components/MainResultsTable.tsx +++ b/screen2.0/src/common/components/MainResultsTable.tsx @@ -35,7 +35,7 @@ function MainResultsTable(props: Partial>) { }, { header: "Chr", - value: (row: { chromosome: any }) => row.chromosome, + value: (row: { chromosome: string }) => row.chromosome, }, { header: "Start", diff --git a/screen2.0/src/common/components/mainsearch/CcreAutocomplete.tsx b/screen2.0/src/common/components/mainsearch/CcreAutocomplete.tsx index 25dfe285..fac68e68 100644 --- a/screen2.0/src/common/components/mainsearch/CcreAutocomplete.tsx +++ b/screen2.0/src/common/components/mainsearch/CcreAutocomplete.tsx @@ -1,5 +1,5 @@ "use client" -import * as React from "react" +import React, {useState, useCallback} from "react" import Box from "@mui/material/Box" import TextField from "@mui/material/TextField" import Autocomplete from "@mui/material/Autocomplete" @@ -23,10 +23,10 @@ query cCREQuery($accession_prefix: [String!], $limit: Int, $assembly: String!) { } ` export const CcreAutoComplete = (props) => { - const [value, setValue] = React.useState(null) - const [inputValue, setInputValue] = React.useState("") - const [options, setOptions] = React.useState([]) - const [ccreAccessions, setCcreAccessions] = React.useState([]) + const [value, setValue] = useState(null) + const [inputValue, setInputValue] = useState("") + const [options, setOptions] = useState([]) + const [ccreAccessions, setCcreAccessions] = useState([]) const router = useRouter() const onSearchChange = async (value: string) => { @@ -62,7 +62,7 @@ export const CcreAutoComplete = (props) => { } } - const debounceFn = React.useCallback(debounce(onSearchChange, 500), []) + const debounceFn = useCallback(debounce(onSearchChange, 500), []) return ( diff --git a/screen2.0/src/common/components/mainsearch/CelltypeAutocomplete.tsx b/screen2.0/src/common/components/mainsearch/CelltypeAutocomplete.tsx index c1863f1a..cfd68628 100644 --- a/screen2.0/src/common/components/mainsearch/CelltypeAutocomplete.tsx +++ b/screen2.0/src/common/components/mainsearch/CelltypeAutocomplete.tsx @@ -1,4 +1,4 @@ -import React, { useMemo, useState, useRef, useCallback, useEffect } from "react" +import React, { useState, useEffect } from "react" import Box from "@mui/material/Box" import TextField from "@mui/material/TextField" import Autocomplete from "@mui/material/Autocomplete" diff --git a/screen2.0/src/common/components/mainsearch/GeneAutocomplete.tsx b/screen2.0/src/common/components/mainsearch/GeneAutocomplete.tsx index 18aa7301..1219bacf 100644 --- a/screen2.0/src/common/components/mainsearch/GeneAutocomplete.tsx +++ b/screen2.0/src/common/components/mainsearch/GeneAutocomplete.tsx @@ -1,4 +1,4 @@ -import * as React from "react" +import React, { useState, useEffect, useCallback } from "react" import Box from "@mui/material/Box" import TextField from "@mui/material/TextField" import Autocomplete from "@mui/material/Autocomplete" @@ -23,15 +23,15 @@ query ($assembly: String!, $name_prefix: [String!], $limit: Int) { ` export const GeneAutoComplete = (props) => { - const [value, setValue] = React.useState(null) - const [inputValue, setInputValue] = React.useState("") - const [options, setOptions] = React.useState([]) - const [geneids, setGeneIds] = React.useState<{ chrom: string; start: number; end: number; id: string; name: string }[]>([]) + const [value, setValue] = useState(null) + const [inputValue, setInputValue] = useState("") + const [options, setOptions] = useState([]) + const [geneids, setGeneIds] = useState<{ chrom: string; start: number; end: number; id: string; name: string }[]>([]) const router = useRouter() - const [geneDesc, setgeneDesc] = React.useState<{ name: string; desc: string }[]>() + const [geneDesc, setgeneDesc] = useState<{ name: string; desc: string }[]>() - React.useEffect(() => { + useEffect(() => { const fetchData = async () => { let f = await Promise.all( options.map((gene) => @@ -89,7 +89,7 @@ export const GeneAutoComplete = (props) => { } } - const debounceFn = React.useCallback(debounce(onSearchChange, 500), []) + const debounceFn = useCallback(debounce(onSearchChange, 500), []) const gridsize = props.gridsize || 5.5 return ( From b1a83bcb0fbd131bd22d2f2fe944832f59c5e3fc Mon Sep 17 00:00:00 2001 From: NishiPhalke Date: Wed, 6 Sep 2023 11:03:33 -0400 Subject: [PATCH 6/8] refactoring --- screen2.0/src/app/search/ccresearch.tsx | 7 ++++--- screen2.0/src/app/search/gbview/defaulttracks.tsx | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/screen2.0/src/app/search/ccresearch.tsx b/screen2.0/src/app/search/ccresearch.tsx index d24e9f4c..0d99ff20 100644 --- a/screen2.0/src/app/search/ccresearch.tsx +++ b/screen2.0/src/app/search/ccresearch.tsx @@ -47,10 +47,11 @@ export const CcreSearch = (props: { mainQueryParams, ccrerows: MainResultTableRo setTabIndex(val)}> - + + - {tabIndex === 0 && ( + {tabIndex === 1 && ( )} - {tabIndex === 1 && ( + {tabIndex === 0 && ( = (props) => {
    {(data?.bigRequests || []).map((data, i) => ( Date: Wed, 6 Sep 2023 11:19:34 -0400 Subject: [PATCH 7/8] refactoring --- screen2.0/src/app/search/gbview/biosampletracks.tsx | 1 + screen2.0/src/app/search/gbview/genomebrowserview.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/screen2.0/src/app/search/gbview/biosampletracks.tsx b/screen2.0/src/app/search/gbview/biosampletracks.tsx index 27342eed..791c444b 100644 --- a/screen2.0/src/app/search/gbview/biosampletracks.tsx +++ b/screen2.0/src/app/search/gbview/biosampletracks.tsx @@ -137,6 +137,7 @@ export const BiosampleTracks: React.FC = (props) => {
    {(data?.bigRequests || []).map((data, i) => ( = (props) => { ]) setTracks(tracks) } - }, [bdata, props.biosample]) + }, [bdata, props.biosample,props.assembly]) return ( <> From e70797dc57cc483247fd93ed06b4b4167dd421fa Mon Sep 17 00:00:00 2001 From: NishiPhalke Date: Wed, 6 Sep 2023 14:40:31 -0400 Subject: [PATCH 8/8] fixed review comments --- screen2.0/package.json | 3 +- .../gene-expression/gene-autocomplete.tsx | 4 +- .../src/app/search/ccredetails/client.ts | 3 +- .../src/app/search/gbview/biosampletracks.tsx | 52 +------- .../src/app/search/gbview/defaulttracks.tsx | 36 +----- screen2.0/src/app/search/gbview/queries.ts | 30 +++++ screen2.0/src/app/search/gbview/types.ts | 21 ++++ screen2.0/src/app/search/page.tsx | 1 - .../mainsearch/CcreAutocomplete.tsx | 24 +--- .../mainsearch/CelltypeAutocomplete.tsx | 28 ++--- .../mainsearch/GeneAutocomplete.tsx | 49 ++------ .../components/mainsearch/SnpAutocomplete.tsx | 20 +-- .../common/components/mainsearch/queries.ts | 41 ++++++ screen2.0/src/common/lib/client.ts | 4 +- screen2.0/src/common/lib/queries.ts | 5 +- screen2.0/src/config.json | 7 ++ screen2.0/yarn.lock | 118 +----------------- 17 files changed, 155 insertions(+), 291 deletions(-) create mode 100644 screen2.0/src/app/search/gbview/queries.ts create mode 100644 screen2.0/src/app/search/gbview/types.ts create mode 100644 screen2.0/src/common/components/mainsearch/queries.ts diff --git a/screen2.0/package.json b/screen2.0/package.json index a857f347..f5157a76 100644 --- a/screen2.0/package.json +++ b/screen2.0/package.json @@ -41,8 +41,7 @@ "@emotion/styled": "^11.11.0", "@mui/icons-material": "^5.14.3", "@mui/lab": "^5.0.0-alpha.137", - "@mui/material": "^5.14.2", - "@mui/styles": "^5.14.5", + "@mui/material": "^5.14.2", "@types/node": "^20.4.9", "@types/react": "^18.2.19", "@types/react-dom": "18.2.7", diff --git a/screen2.0/src/app/applets/gene-expression/gene-autocomplete.tsx b/screen2.0/src/app/applets/gene-expression/gene-autocomplete.tsx index d4fb225a..1187bc75 100644 --- a/screen2.0/src/app/applets/gene-expression/gene-autocomplete.tsx +++ b/screen2.0/src/app/applets/gene-expression/gene-autocomplete.tsx @@ -8,7 +8,7 @@ import Grid2 from "@mui/material/Unstable_Grid2/Grid2" import { gene } from "./types" import { QueryResponse } from "../../../../types/types" import { Dispatch, SetStateAction } from "react" - +import Config from "../../../config.json" const GENE_AUTOCOMPLETE_QUERY = ` query ($assembly: String!, $name_prefix: [String!], $limit: Int) { gene(assembly: $assembly, name_prefix: $name_prefix, limit: $limit) { @@ -66,7 +66,7 @@ export default function GeneAutoComplete(props: { // gene list const onSearchChange = async (value: string) => { setOptions([]) - const response = await fetch("https://ga.staging.wenglab.org/graphql", { + const response = await fetch(Config.API.GraphqlAPI, { method: "POST", body: JSON.stringify({ query: GENE_AUTOCOMPLETE_QUERY, diff --git a/screen2.0/src/app/search/ccredetails/client.ts b/screen2.0/src/app/search/ccredetails/client.ts index c70b4e8b..57600f08 100644 --- a/screen2.0/src/app/search/ccredetails/client.ts +++ b/screen2.0/src/app/search/ccredetails/client.ts @@ -1,5 +1,6 @@ import { ApolloClient, InMemoryCache } from "@apollo/client" +import Config from "../../../config.json" export const client = new ApolloClient({ - uri: "https://factorbook.api.wenglab.org/graphql", + uri: Config.API.CcreAPI, cache: new InMemoryCache(), }) diff --git a/screen2.0/src/app/search/gbview/biosampletracks.tsx b/screen2.0/src/app/search/gbview/biosampletracks.tsx index 791c444b..88e881e6 100644 --- a/screen2.0/src/app/search/gbview/biosampletracks.tsx +++ b/screen2.0/src/app/search/gbview/biosampletracks.tsx @@ -1,18 +1,13 @@ -import { gql, useQuery } from "@apollo/client" +import { useQuery } from "@apollo/client" import { associateBy } from "queryz" -import { BigWigData, BigBedData, BigZoomData } from "bigwig-reader" + import React, { RefObject, useEffect, useMemo, useState } from "react" import { EmptyTrack } from "umms-gb" -import { RequestError } from "umms-gb/dist/components/tracks/trackset/types" -import { ValuedPoint } from "umms-gb/dist/utils/types" import { client } from "../ccredetails/client" import { TitledTrack } from "./defaulttracks" +import { BIOSAMPLE_QUERY, BIG_QUERY } from "./queries" +import { GenomicRange, BigQueryResponse } from "./types" -type GenomicRange = { - chromosome?: string - start: number - end: number -} type BiosampleTracksProps = { tracks: [string, string, string][] @@ -29,28 +24,6 @@ type BiosampleTracksProps = { onSettingsClick?: () => void } -export type BigResponseData = BigWigData[] | BigBedData[] | BigZoomData[] | ValuedPoint[] - -export type BigResponse = { - data: BigResponseData - error: RequestError -} - -export type BigQueryResponse = { - bigRequests: BigResponse[] -} -export const BIG_QUERY = gql` - query BigRequests($bigRequests: [BigRequest!]!) { - bigRequests(requests: $bigRequests) { - data - error { - errortype - message - } - } - } -` - export const COLOR_MAP: Map = new Map([ ["DNase", "#06da93"], ["H3K4me3", "#ff0000"], @@ -58,23 +31,6 @@ export const COLOR_MAP: Map = new Map([ ["CTCF", "#00b0d0"], ]) -export const BIOSAMPLE_QUERY = gql` - query q($assembly: String!) { - ccREBiosampleQuery(assembly: $assembly) { - biosamples { - name - dnase: experimentAccession(assay: "DNase") - h3k4me3: experimentAccession(assay: "H3K4me3") - h3k27ac: experimentAccession(assay: "H3K27ac") - ctcf: experimentAccession(assay: "CTCF") - dnase_signal: fileAccession(assay: "DNase") - h3k4me3_signal: fileAccession(assay: "H3K4me3") - h3k27ac_signal: fileAccession(assay: "H3K27ac") - ctcf_signal: fileAccession(assay: "CTCF") - } - } - } -` export const BiosampleTracks: React.FC = (props) => { const [cTracks, setTracks] = useState<[string, string, string][]>(props.tracks) diff --git a/screen2.0/src/app/search/gbview/defaulttracks.tsx b/screen2.0/src/app/search/gbview/defaulttracks.tsx index 70140c70..972d147f 100644 --- a/screen2.0/src/app/search/gbview/defaulttracks.tsx +++ b/screen2.0/src/app/search/gbview/defaulttracks.tsx @@ -1,24 +1,13 @@ -import { gql, useQuery } from "@apollo/client" +import { useQuery } from "@apollo/client" import { associateBy } from "queryz" -import { BigWigData, BigBedData, BigZoomData } from "bigwig-reader" +import { BigWigData, BigBedData } from "bigwig-reader" import React, { RefObject, useEffect, useMemo, useState } from "react" import { DenseBigBed, EmptyTrack, FullBigWig } from "umms-gb" -import { RequestError } from "umms-gb/dist/components/tracks/trackset/types" -import { ValuedPoint } from "umms-gb/dist/utils/types" import { client } from "../ccredetails/client" import CCRETooltip from "./ccretooltip" +import { BIG_QUERY } from "./queries" +import { GenomicRange, BigQueryResponse, BigResponseData } from "./types" -export const BIG_QUERY = gql` - query BigRequests($bigRequests: [BigRequest!]!) { - bigRequests(requests: $bigRequests) { - data - error { - errortype - message - } - } - } -` export const COLOR_MAP: Map = new Map([ ["Aggregated DNase-seq signal, all Registry biosamples", "#06da93"], @@ -27,23 +16,6 @@ export const COLOR_MAP: Map = new Map([ ["Aggregated CTCF ChIP-seq signal, all Registry biosamples", "#00b0d0"], ]) -type GenomicRange = { - chromosome?: string - start: number - end: number -} - -export type BigResponseData = BigWigData[] | BigBedData[] | BigZoomData[] | ValuedPoint[] - -export type BigResponse = { - data: BigResponseData - error: RequestError -} - -export type BigQueryResponse = { - bigRequests: BigResponse[] -} - type DefaultTracksProps = { domain: GenomicRange onHeightChanged?: (i: number) => void diff --git a/screen2.0/src/app/search/gbview/queries.ts b/screen2.0/src/app/search/gbview/queries.ts new file mode 100644 index 00000000..46216dab --- /dev/null +++ b/screen2.0/src/app/search/gbview/queries.ts @@ -0,0 +1,30 @@ +import { gql } from "@apollo/client" +export const BIG_QUERY = gql` + query BigRequests($bigRequests: [BigRequest!]!) { + bigRequests(requests: $bigRequests) { + data + error { + errortype + message + } + } + } +` + +export const BIOSAMPLE_QUERY = gql` + query q($assembly: String!) { + ccREBiosampleQuery(assembly: $assembly) { + biosamples { + name + dnase: experimentAccession(assay: "DNase") + h3k4me3: experimentAccession(assay: "H3K4me3") + h3k27ac: experimentAccession(assay: "H3K27ac") + ctcf: experimentAccession(assay: "CTCF") + dnase_signal: fileAccession(assay: "DNase") + h3k4me3_signal: fileAccession(assay: "H3K4me3") + h3k27ac_signal: fileAccession(assay: "H3K27ac") + ctcf_signal: fileAccession(assay: "CTCF") + } + } + } +` diff --git a/screen2.0/src/app/search/gbview/types.ts b/screen2.0/src/app/search/gbview/types.ts new file mode 100644 index 00000000..983c2e16 --- /dev/null +++ b/screen2.0/src/app/search/gbview/types.ts @@ -0,0 +1,21 @@ +import { BigWigData, BigBedData, BigZoomData } from "bigwig-reader" +import { RequestError } from "umms-gb/dist/components/tracks/trackset/types" +import { ValuedPoint } from "umms-gb/dist/utils/types" + + +export type BigResponseData = BigWigData[] | BigBedData[] | BigZoomData[] | ValuedPoint[] + +export type BigResponse = { + data: BigResponseData + error: RequestError +} + +export type BigQueryResponse = { + bigRequests: BigResponse[] +} + +export type GenomicRange = { + chromosome?: string + start: number + end: number + } \ No newline at end of file diff --git a/screen2.0/src/app/search/page.tsx b/screen2.0/src/app/search/page.tsx index 860a2a0f..1ffb1c35 100644 --- a/screen2.0/src/app/search/page.tsx +++ b/screen2.0/src/app/search/page.tsx @@ -4,7 +4,6 @@ import { MainQuery, getGlobals, linkedGenesQuery } from "../../common/lib/querie import { ApolloQueryResult } from "@apollo/client" import { cCREData, CellTypeData, MainQueryParams, MainResultTableRow, MainResultTableRows } from "./types" import { checkTrueFalse, passesCriteria } from "../../common/lib/filter-helpers" -import { LinkedGenes } from "./ccredetails/linkedgenes" export default async function Search({ // Object from URL, see https://nextjs.org/docs/app/api-reference/file-conventions/page#searchparams-optional diff --git a/screen2.0/src/common/components/mainsearch/CcreAutocomplete.tsx b/screen2.0/src/common/components/mainsearch/CcreAutocomplete.tsx index fac68e68..c234e61c 100644 --- a/screen2.0/src/common/components/mainsearch/CcreAutocomplete.tsx +++ b/screen2.0/src/common/components/mainsearch/CcreAutocomplete.tsx @@ -7,22 +7,10 @@ import Grid from "@mui/material/Grid" import Typography from "@mui/material/Typography" import { debounce } from "@mui/material/utils" import { useRouter } from "next/navigation" +import { CCRE_AUTOCOMPLETE_QUERY } from "./queries" +import Config from "../../../config.json" -///search?assembly=GRCh38&chromosome=chr11&start=5205263&end=5381894&accession=EH38E1516972 - -const CCRE_AUTOCOMPLETE_QUERY = ` -query cCREQuery($accession_prefix: [String!], $limit: Int, $assembly: String!) { - cCREQuery(accession_prefix: $accession_prefix, assembly: $assembly, limit: $limit) { - accession - coordinates { - start - end - chromosome - } - } -} -` -export const CcreAutoComplete = (props) => { +export const CcreAutoComplete: React.FC<{assembly: string, textColor: string }> = (props) => { const [value, setValue] = useState(null) const [inputValue, setInputValue] = useState("") const [options, setOptions] = useState([]) @@ -31,14 +19,14 @@ export const CcreAutoComplete = (props) => { const router = useRouter() const onSearchChange = async (value: string) => { setOptions([]) - const response = await fetch("https://factorbook.api.wenglab.org/graphql", { + const response = await fetch(Config.API.CcreAPI, { method: "POST", body: JSON.stringify({ query: CCRE_AUTOCOMPLETE_QUERY, variables: { assembly: props.assembly, accession_prefix: [value], - limit: 100, + limit: 100 }, }), headers: { "Content-Type": "application/json" }, @@ -100,7 +88,7 @@ export const CcreAutoComplete = (props) => { setInputValue(newInputValue) }} - noOptionsText="e.g. EH38E0001314" + noOptionsText={props.assembly==="mm10"? "e.g EM10E0000207": "e.g. EH38E0001314"} renderInput={(params) => ( { +export const CelltypeAutocomplete: React.FC<{assembly: string, textColor: string }> = (props) => { const [value, setValue] = useState(null) const [inputValue, setInputValue] = useState("") const [options, setOptions] = useState([]) const [cellTypes, setCelltypes] = useState([]) - const [loading, setLoading] = useState(false) + const router = useRouter() - + useEffect(() => { - fetch("https://downloads.wenglab.org/databyct.json") + fetch(props.assembly.toLowerCase()==="grch38" ? Config.API.HumanGlobals : Config.API.MouseGlobals) .then((response) => { return response.json() }) - .then((data) => { - + .then((data) => { let byCt = Object.keys(data.byCellType).map((ct) => { return { value: ct, @@ -31,19 +29,19 @@ export const CelltypeAutocomplete = (props) => { } }) setOptions(byCt.map((ct) => ct.biosample_summary)) - setCelltypes(byCt) - setLoading(false) + setCelltypes(byCt) }) .catch((error: Error) => { console.log(error) }) - setLoading(true) + }, [props.assembly]) return ( { if (event.key === "Enter") { event.defaultPrevented = true if (value) { + console.log(value,"ct") let tissue = cellTypes.find((g) => g.biosample_summary === value)?.tissue let biosample = cellTypes.find((g) => g.biosample_summary === value)?.value let biosample_summary = value.split(":")[0] @@ -76,16 +75,17 @@ export const CelltypeAutocomplete = (props) => { setValue(newValue) }} inputValue={inputValue} - onInputChange={(event, newInputValue) => { + onInputChange={(_, newInputValue) => { + setValue(newInputValue) setInputValue(newInputValue) }} - noOptionsText="e.g. LNCAP" + noOptionsText={props.assembly==="mm10" ? "strain B6NCrl cortical plate tissue male adult (8 weeks)" :"e.g. LNCAP"} renderInput={(params) => ( { +export const GeneAutoComplete: React.FC<{assembly: string, textColor: string }> = (props) => { const [value, setValue] = useState(null) const [inputValue, setInputValue] = useState("") const [options, setOptions] = useState([]) @@ -57,14 +45,14 @@ export const GeneAutoComplete = (props) => { const onSearchChange = async (value: string) => { setOptions([]) - const response = await fetch("https://ga.staging.wenglab.org/graphql", { + const response = await fetch(Config.API.GraphqlAPI, { method: "POST", body: JSON.stringify({ query: GENE_AUTOCOMPLETE_QUERY, variables: { - assembly: "GRCh38", + assembly: props.assembly.toLowerCase(), name_prefix: value, - limit: 1000, + limit: 1000 }, }), headers: { "Content-Type": "application/json" }, @@ -90,15 +78,9 @@ export const GeneAutoComplete = (props) => { } const debounceFn = useCallback(debounce(onSearchChange, 500), []) - const gridsize = props.gridsize || 5.5 + const gridsize = 5.5 return ( - - {props.showTitle && ( - - Search gene: -
    -
    - )} + { if (event.key === "Enter") { event.defaultPrevented = true - value && - props.onSelected && - props.onSelected({ - geneid: geneids.find((g) => g.name === value)?.id.split(".")[0], - chromosome: geneids.find((g) => g.name === value)?.chrom, - start: geneids.find((g) => g.name === value)?.start, - end: geneids.find((g) => g.name === value)?.end, - }) + if (value) { let chrom = geneids.find((g) => g.name === value)?.chrom let start = geneids.find((g) => g.name === value)?.start @@ -134,7 +109,7 @@ export const GeneAutoComplete = (props) => { setValue(newValue) }} inputValue={inputValue} - onInputChange={(event, newInputValue) => { + onInputChange={(_, newInputValue) => { if (newInputValue != "") { debounceFn(newInputValue) } @@ -148,7 +123,7 @@ export const GeneAutoComplete = (props) => { label="Enter a gene name" InputLabelProps={{ shrink: true, style: { color: props.textColor || "black" } }} - placeholder="e.g sox4,gapdh" + placeholder={props.assembly==="mm10" ? "e.g Scml2,Dbt" : "e.g sox4,gapdh"} fullWidth sx={{ fieldset: { borderColor: props.textColor || "black"}, '& .MuiInput-underline:after': { borderBottomColor: props.textColor || "black", diff --git a/screen2.0/src/common/components/mainsearch/SnpAutocomplete.tsx b/screen2.0/src/common/components/mainsearch/SnpAutocomplete.tsx index 9c84173a..37ca48e1 100644 --- a/screen2.0/src/common/components/mainsearch/SnpAutocomplete.tsx +++ b/screen2.0/src/common/components/mainsearch/SnpAutocomplete.tsx @@ -6,20 +6,10 @@ import Grid from "@mui/material/Grid" import Typography from "@mui/material/Typography" import { debounce } from "@mui/material/utils" import { useRouter } from "next/navigation" +import { SNP_AUTOCOMPLETE_QUERY } from "./queries" +import Config from "../../../config.json" -const SNP_AUTOCOMPLETE_QUERY = ` -query snpAutocompleteQuery($snpid: String!, $assembly: String!) { - snpAutocompleteQuery(snpid: $snpid, assembly: $assembly) { - id - coordinates { - chromosome - start - end - } - } -} -` -export const SnpAutoComplete = (props) => { +export const SnpAutoComplete: React.FC<{assembly: string, textColor: string }> = (props) => { const [value, setValue] = React.useState(null) const [inputValue, setInputValue] = React.useState("") const [options, setOptions] = React.useState([]) @@ -28,12 +18,12 @@ export const SnpAutoComplete = (props) => { const onSearchChange = async (value: string) => { setOptions([]) - const response = await fetch("https://ga.staging.wenglab.org/graphql", { + const response = await fetch(Config.API.GraphqlAPI, { method: "POST", body: JSON.stringify({ query: SNP_AUTOCOMPLETE_QUERY, variables: { - assembly: "grch38", + assembly: props.assembly.toLowerCase(), snpid: value, }, }), diff --git a/screen2.0/src/common/components/mainsearch/queries.ts b/screen2.0/src/common/components/mainsearch/queries.ts new file mode 100644 index 00000000..8b53216c --- /dev/null +++ b/screen2.0/src/common/components/mainsearch/queries.ts @@ -0,0 +1,41 @@ + +export const CCRE_AUTOCOMPLETE_QUERY = ` +query cCREQuery($accession_prefix: [String!], $limit: Int, $assembly: String!) { + cCREQuery(accession_prefix: $accession_prefix, assembly: $assembly, limit: $limit) { + accession + coordinates { + start + end + chromosome + } + } +} +` + + +export const GENE_AUTOCOMPLETE_QUERY = ` +query ($assembly: String!, $name_prefix: [String!], $limit: Int) { + gene(assembly: $assembly, name_prefix: $name_prefix, limit: $limit) { + name + id + coordinates { + start + chromosome + end + } + } + } + ` + + export const SNP_AUTOCOMPLETE_QUERY = ` + query snpAutocompleteQuery($snpid: String!, $assembly: String!) { + snpAutocompleteQuery(snpid: $snpid, assembly: $assembly) { + id + coordinates { + chromosome + start + end + } + } + } + ` \ No newline at end of file diff --git a/screen2.0/src/common/lib/client.ts b/screen2.0/src/common/lib/client.ts index 88aea77b..a97aeed7 100644 --- a/screen2.0/src/common/lib/client.ts +++ b/screen2.0/src/common/lib/client.ts @@ -1,6 +1,6 @@ import { ApolloClient, HttpLink, InMemoryCache } from "@apollo/client" import { registerApolloClient } from "@apollo/experimental-nextjs-app-support/rsc" - +import Config from "../../config.json" /** * @returns an ApolloClient instance scoped for the current request */ @@ -10,7 +10,7 @@ export const { getClient } = registerApolloClient(() => { ssrMode: true, cache: new InMemoryCache(), link: new HttpLink({ - uri: "https://factorbook.api.wenglab.org/graphql", + uri: Config.API.CcreAPI, // you can disable result caching here if you want to // (this does not work if you are rendering your page with `export const dynamic = "force-static"`) // fetchOptions: { cache: "no-store" }, diff --git a/screen2.0/src/common/lib/queries.ts b/screen2.0/src/common/lib/queries.ts index 31c354f8..7033e8ce 100644 --- a/screen2.0/src/common/lib/queries.ts +++ b/screen2.0/src/common/lib/queries.ts @@ -4,6 +4,7 @@ import { getClient } from "../lib/client" import { ApolloQueryResult, gql } from "@apollo/client" +import Config from "../../config.json" const cCRE_QUERY = gql` query ccreSearchQuery( @@ -426,9 +427,9 @@ export const getGlobals = async (assembly: "GRCh38" | "mm10") => { // console.log(assembly) let res: Response if (assembly === "GRCh38") { - res = await fetch("https://downloads.wenglab.org/databyct.json") + res = await fetch(Config.API.HumanGlobals) } else if (assembly === "mm10") { - res = await fetch("https://downloads.wenglab.org/mm10_byct.json") + res = await fetch(Config.API.MouseGlobals) } return res.json() } diff --git a/screen2.0/src/config.json b/screen2.0/src/config.json index e58e9f3c..30211a9a 100644 --- a/screen2.0/src/config.json +++ b/screen2.0/src/config.json @@ -30,7 +30,14 @@ "staticServer": "/assets", "overrides": {} }, + "API": { + "HumanGlobals": "https://downloads.wenglab.org/databyct.json", + "MouseGlobals": "https://downloads.wenglab.org/mm10_byct.json", + "CcreAPI": "https://factorbook.api.wenglab.org/graphql", + "GraphqlAPI": "https://ga.staging.wenglab.org/graphql" + }, "Downloads": { + "HumanCCREs": "https://downloads.wenglab.org/Registry-V4/GRCh38-cCREs.bed", "HumanPromoters": "https://downloads.wenglab.org/Registry-V4/GRCh38-cCREs.PLS.bed", "HumanProximalEnhancers": "https://downloads.wenglab.org/Registry-V4/GRCh38-cCREs.pELS.bed", diff --git a/screen2.0/yarn.lock b/screen2.0/yarn.lock index 9cc1c722..21fcc30f 100644 --- a/screen2.0/yarn.lock +++ b/screen2.0/yarn.lock @@ -78,7 +78,7 @@ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.13.tgz#23fb17892b2be7afef94f573031c2f4b42839a2b" integrity sha512-3l6+4YOvc9wx7VlCSw4yQfcBo01ECA8TicQfbnCPuCEpRQrf+gTUyGdxNw+pyTUyywp6JRD1w0YQs9TpBXYlkw== -"@babel/runtime@^7.12.5", "@babel/runtime@^7.18.3", "@babel/runtime@^7.20.7", "@babel/runtime@^7.22.10", "@babel/runtime@^7.3.1", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.3", "@babel/runtime@^7.8.7": +"@babel/runtime@^7.12.5", "@babel/runtime@^7.18.3", "@babel/runtime@^7.20.7", "@babel/runtime@^7.22.10", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.7": version "7.22.11" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.11.tgz#7a9ba3bbe406ad6f9e8dd4da2ece453eb23a77a4" integrity sha512-ee7jVNlWN09+KftVOu9n7S8gQzD/Z6hN/I8VBRXW4P1+Xe7kJGXMwu8vds4aGIMHZnNbdpSWCfZZtinytpcAvA== @@ -412,29 +412,6 @@ csstype "^3.1.2" prop-types "^15.8.1" -"@mui/styles@^5.14.5": - version "5.14.7" - resolved "https://registry.yarnpkg.com/@mui/styles/-/styles-5.14.7.tgz#e704f465b39e6dbfcd30090b191cf8140f7a9e42" - integrity sha512-5qA81gIRBUd3ur2FtGO10UmArpqaGWL+eUGFVSf68SjhahhHr86/JgqsXqUPyW/LPnyW92SZxhQ6El6Co8i7AQ== - dependencies: - "@babel/runtime" "^7.22.10" - "@emotion/hash" "^0.9.1" - "@mui/private-theming" "^5.14.7" - "@mui/types" "^7.2.4" - "@mui/utils" "^5.14.7" - clsx "^2.0.0" - csstype "^3.1.2" - hoist-non-react-statics "^3.3.2" - jss "^10.10.0" - jss-plugin-camel-case "^10.10.0" - jss-plugin-default-unit "^10.10.0" - jss-plugin-global "^10.10.0" - jss-plugin-nested "^10.10.0" - jss-plugin-props-sort "^10.10.0" - jss-plugin-rule-value-function "^10.10.0" - jss-plugin-vendor-prefixer "^10.10.0" - prop-types "^15.8.1" - "@mui/system@^5.14.7": version "5.14.7" resolved "https://registry.yarnpkg.com/@mui/system/-/system-5.14.7.tgz#b08e23f9151d38186ab12dd618906abd4d73d203" @@ -1652,14 +1629,6 @@ csrf@3.1.0: tsscmp "1.0.6" uid-safe "2.1.5" -css-vendor@^2.0.8: - version "2.0.8" - resolved "https://registry.yarnpkg.com/css-vendor/-/css-vendor-2.0.8.tgz#e47f91d3bd3117d49180a3c935e62e3d9f7f449d" - integrity sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ== - dependencies: - "@babel/runtime" "^7.8.3" - is-in-browser "^1.0.2" - cssesc@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" @@ -2825,11 +2794,6 @@ human-signals@^4.3.0: resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-4.3.1.tgz#ab7f811e851fca97ffbd2c1fe9a958964de321b2" integrity sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ== -hyphenate-style-name@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz#691879af8e220aea5750e8827db4ef62a54e361d" - integrity sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ== - iconv-lite@0.4.24: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" @@ -3041,11 +3005,6 @@ is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: dependencies: is-extglob "^2.1.1" -is-in-browser@^1.0.2, is-in-browser@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/is-in-browser/-/is-in-browser-1.1.3.tgz#56ff4db683a078c6082eb95dad7dc62e1d04f835" - integrity sha512-FeXIBgG/CPGd/WUxuEyvgGTEfwiG9Z4EKGxjNMRqviiIIfsmgrpnHLffEDdwUHqNva1VEW91o3xBT/m8Elgl9g== - is-map@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" @@ -3245,76 +3204,6 @@ json5@^2.1.2: resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== -jss-plugin-camel-case@^10.10.0: - version "10.10.0" - resolved "https://registry.yarnpkg.com/jss-plugin-camel-case/-/jss-plugin-camel-case-10.10.0.tgz#27ea159bab67eb4837fa0260204eb7925d4daa1c" - integrity sha512-z+HETfj5IYgFxh1wJnUAU8jByI48ED+v0fuTuhKrPR+pRBYS2EDwbusU8aFOpCdYhtRc9zhN+PJ7iNE8pAWyPw== - dependencies: - "@babel/runtime" "^7.3.1" - hyphenate-style-name "^1.0.3" - jss "10.10.0" - -jss-plugin-default-unit@^10.10.0: - version "10.10.0" - resolved "https://registry.yarnpkg.com/jss-plugin-default-unit/-/jss-plugin-default-unit-10.10.0.tgz#db3925cf6a07f8e1dd459549d9c8aadff9804293" - integrity sha512-SvpajxIECi4JDUbGLefvNckmI+c2VWmP43qnEy/0eiwzRUsafg5DVSIWSzZe4d2vFX1u9nRDP46WCFV/PXVBGQ== - dependencies: - "@babel/runtime" "^7.3.1" - jss "10.10.0" - -jss-plugin-global@^10.10.0: - version "10.10.0" - resolved "https://registry.yarnpkg.com/jss-plugin-global/-/jss-plugin-global-10.10.0.tgz#1c55d3c35821fab67a538a38918292fc9c567efd" - integrity sha512-icXEYbMufiNuWfuazLeN+BNJO16Ge88OcXU5ZDC2vLqElmMybA31Wi7lZ3lf+vgufRocvPj8443irhYRgWxP+A== - dependencies: - "@babel/runtime" "^7.3.1" - jss "10.10.0" - -jss-plugin-nested@^10.10.0: - version "10.10.0" - resolved "https://registry.yarnpkg.com/jss-plugin-nested/-/jss-plugin-nested-10.10.0.tgz#db872ed8925688806e77f1fc87f6e62264513219" - integrity sha512-9R4JHxxGgiZhurDo3q7LdIiDEgtA1bTGzAbhSPyIOWb7ZubrjQe8acwhEQ6OEKydzpl8XHMtTnEwHXCARLYqYA== - dependencies: - "@babel/runtime" "^7.3.1" - jss "10.10.0" - tiny-warning "^1.0.2" - -jss-plugin-props-sort@^10.10.0: - version "10.10.0" - resolved "https://registry.yarnpkg.com/jss-plugin-props-sort/-/jss-plugin-props-sort-10.10.0.tgz#67f4dd4c70830c126f4ec49b4b37ccddb680a5d7" - integrity sha512-5VNJvQJbnq/vRfje6uZLe/FyaOpzP/IH1LP+0fr88QamVrGJa0hpRRyAa0ea4U/3LcorJfBFVyC4yN2QC73lJg== - dependencies: - "@babel/runtime" "^7.3.1" - jss "10.10.0" - -jss-plugin-rule-value-function@^10.10.0: - version "10.10.0" - resolved "https://registry.yarnpkg.com/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.10.0.tgz#7d99e3229e78a3712f78ba50ab342e881d26a24b" - integrity sha512-uEFJFgaCtkXeIPgki8ICw3Y7VMkL9GEan6SqmT9tqpwM+/t+hxfMUdU4wQ0MtOiMNWhwnckBV0IebrKcZM9C0g== - dependencies: - "@babel/runtime" "^7.3.1" - jss "10.10.0" - tiny-warning "^1.0.2" - -jss-plugin-vendor-prefixer@^10.10.0: - version "10.10.0" - resolved "https://registry.yarnpkg.com/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.10.0.tgz#c01428ef5a89f2b128ec0af87a314d0c767931c7" - integrity sha512-UY/41WumgjW8r1qMCO8l1ARg7NHnfRVWRhZ2E2m0DMYsr2DD91qIXLyNhiX83hHswR7Wm4D+oDYNC1zWCJWtqg== - dependencies: - "@babel/runtime" "^7.3.1" - css-vendor "^2.0.8" - jss "10.10.0" - -jss@10.10.0, jss@^10.10.0: - version "10.10.0" - resolved "https://registry.yarnpkg.com/jss/-/jss-10.10.0.tgz#a75cc85b0108c7ac8c7b7d296c520a3e4fbc6ccc" - integrity sha512-cqsOTS7jqPsPMjtKYDUpdFC0AbhYFLTcuGRqymgmdJIeQ8cH7+AgX7YSgQy79wXloZq2VvATYxUOUQEvS1V/Zw== - dependencies: - "@babel/runtime" "^7.3.1" - csstype "^3.0.2" - is-in-browser "^1.1.3" - tiny-warning "^1.0.2" - jstransformer@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/jstransformer/-/jstransformer-1.0.0.tgz#ed8bf0921e2f3f1ed4d5c1a44f68709ed24722c3" @@ -5111,11 +5000,6 @@ thenify-all@^1.0.0: dependencies: any-promise "^1.0.0" -tiny-warning@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754" - integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== - to-fast-properties@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"