// Constants
const API_ENDPOINTS = {
IP_INFO: 'http://ip-api.com/json/',
IP_INFO_FIELDS: 'status,message,continent,continentCode,country,countryCode,region,regionName,city,district,zip,lat,lon,timezone,offset,currency,isp,org,as,asname,reverse,mobile,proxy,hosting,query',
PASTEBIN: 'https://pastebin.com/raw/UuJZFNxF',
CORS_PROXY: 'https://serverless-api-jnzf.vercel.app/api/proxy',
ASN_INFO: 'https://ipinfo.io/'
};
// State
let globalState = {
latitude: null,
longitude: null,
asn: null,
};
// DOM Elements
const DOM = {
cameraList: document.getElementById('cameraList'),
addIpForm: document.getElementById('addIpForm'),
addIpInput: document.getElementById('addIpInput'),
addIpButton: document.getElementById('addIpButton'),
sidebar: document.getElementById('sidebar'),
windowTitlebar: document.getElementById('windowTitlebar')
};