<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:html="http://www.w3.org/1999/xhtml" xmlns:atom="http://www.w3.org/2005/Atom" type="Posts" intent="Informational" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1"><html:style><![CDATA[urlset, sitemapindex { display: block; margin: 0; padding: 0; background: #f0f0f0; }
#sitemap-ui { font-family: "Helvetica Neue", Arial, sans-serif; background: #f0f0f0; color: #000; padding: 40px; min-height: 100vh; box-sizing: border-box; display: block; }
.sitemap-header { border-top: 12px solid #000; padding-top: 10px; margin-bottom: 20px; }
.sitemap-header h1 { font-size: 32px; font-weight: 900; letter-spacing: -1px; margin: 0; text-transform: uppercase; }
.sitemap-intro { font-size: 14px; margin-bottom: 30px; line-height: 1.4; }
.sitemap-intro a { color: #ff3e00; font-weight: bold; text-decoration: underline; }
.sitemap-table-header { display: grid; grid-template-columns: 1fr 120px 80px 80px; gap: 10px; font-weight: 900; text-transform: uppercase; font-size: 12px; border-bottom: 4px solid #000; padding-bottom: 5px; margin-bottom: 15px; }
.sitemap-row { display: grid; grid-template-columns: 1fr 120px 80px 80px; gap: 10px; font-size: 14px; border-bottom: 1px solid #ccc; padding: 10px 0; }
.sitemap-row .loc { font-weight: bold; }
.sitemap-row a { color: inherit; text-decoration: none; }
.sitemap-row a:hover { text-decoration: underline; }
.sitemap-footer { margin-top: 40px; padding-top: 20px; border-top: 4px solid #000; font-size: 12px; font-weight: 900; }
.sitemap-footer a { color: #ff3e00; text-decoration: none; }

			.sitemap-js-active sitemap,
			.sitemap-js-active url { display: none !important; }
			sitemapindex:not(.sitemap-js-active) sitemap,
			urlset:not(.sitemap-js-active) url {
				display: block;
				margin: 12px 0;
				padding: 12px 14px;
				border: 1px solid #d7ccc8;
				border-radius: 4px;
				font-family: system-ui, sans-serif;
				font-size: 13px;
			}
			sitemap loc, url loc { display: block; font-weight: 600; word-break: break-all; }
			sitemap lastmod, url lastmod { display: block; margin-top: 6px; color: #64748b; font-size: 12px; }
			#sitemap-ui { display: block !important; }
		]]></html:style><html:script type="text/javascript"><![CDATA[
			(function() {
				function cybermapsInitSitemapUi() {
				const root = document.documentElement;
				const rootLocal = root.localName || root.nodeName;
				const isIndex = rootLocal === 'sitemapindex';
				const type = isIndex ? 'Index' : 'Sitemap';
				const path = window.location.pathname;
				const tag = isIndex ? 'sitemap' : 'url';
				const nodes = Array.from(root.getElementsByTagName('*')).filter(
					(el) => (el.localName || el.nodeName) === tag
				);
				if (!nodes.length) {
					return;
				}

				root.setAttribute('class', (root.getAttribute('class') || '') + ' sitemap-js-active');

				const container = document.createElementNS('http://www.w3.org/1999/xhtml', 'div');
				container.setAttribute('id', 'sitemap-ui');
				
				const header = document.createElementNS('http://www.w3.org/1999/xhtml', 'div');
				header.setAttribute('class', 'sitemap-header');
				const title = document.createElementNS('http://www.w3.org/1999/xhtml', 'h1');
				title.textContent = `XML ${type} - ${path}`;
				header.appendChild(title);
				container.appendChild(header);
				
				const intro = document.createElementNS('http://www.w3.org/1999/xhtml', 'p');
				intro.setAttribute('class', 'sitemap-intro');
				intro.innerHTML = 'This sitemap was generated to help search engines index your website. <a href="https://www.sitemaps.org/" target="_blank" rel="noopener nofollow">Learn more about XML Sitemaps</a>';
				container.appendChild(intro);
				
				const table = document.createElementNS('http://www.w3.org/1999/xhtml', 'div');
				table.setAttribute('class', 'sitemap-table');
				
				const tableHeader = document.createElementNS('http://www.w3.org/1999/xhtml', 'div');
				tableHeader.setAttribute('class', 'sitemap-table-header');
				tableHeader.innerHTML = `<div>Location</div><div>Date</div><div>Priority</div><div style="text-align: right;">Media</div>`;
				table.appendChild(tableHeader);
				
				nodes.forEach(node => {
					const childByLocal = (name) => Array.from(node.getElementsByTagName('*')).find(
						(el) => (el.localName || el.nodeName) === name
					);
					const locNode = childByLocal('loc');
					const lastmodNode = childByLocal('lastmod');
					const priorityNode = childByLocal('priority');

					const loc = locNode ? locNode.textContent : '';
					const lastmod = lastmodNode ? lastmodNode.textContent : '-';
					const priority = priorityNode ? priorityNode.textContent : '-';
					
					// Count media
					let mediaCount = 0;
					const images = Array.from(node.getElementsByTagName('image:image'));
					const imageLocs = Array.from(node.getElementsByTagName('image:loc'));
					const videos = Array.from(node.getElementsByTagName('video:video'));
					mediaCount += images.length || imageLocs.length;
					mediaCount += videos.length;
					
					const row = document.createElementNS('http://www.w3.org/1999/xhtml', 'div');
					row.setAttribute('class', 'sitemap-row');
					
					const locDiv = document.createElementNS('http://www.w3.org/1999/xhtml', 'div');
					locDiv.setAttribute('class', 'loc');
					const a = document.createElementNS('http://www.w3.org/1999/xhtml', 'a');
					a.setAttribute('href', loc);
					a.textContent = loc;
					locDiv.appendChild(a);
					row.appendChild(locDiv);
					
					const dateDiv = document.createElementNS('http://www.w3.org/1999/xhtml', 'div');
					dateDiv.textContent = lastmod.split('T')[0];
					row.appendChild(dateDiv);
					
					const prioDiv = document.createElementNS('http://www.w3.org/1999/xhtml', 'div');
					prioDiv.textContent = priority;
					row.appendChild(prioDiv);
					
					const mediaDiv = document.createElementNS('http://www.w3.org/1999/xhtml', 'div');
					mediaDiv.style.textAlign = 'right';
					mediaDiv.textContent = mediaCount || '-';
					row.appendChild(mediaDiv);
					
					table.appendChild(row);
				});
				
				container.appendChild(table);
				
				const footer = document.createElementNS('http://www.w3.org/1999/xhtml', 'div');
				footer.setAttribute('class', 'sitemap-footer');
				footer.innerHTML = 'Generated by <a href="https://cybermaps.dev" target="_blank" rel="noopener">CYBERMAPS: LLM &amp; XML Sitemap SEO</a>';
				container.appendChild(footer);
				
				root.insertBefore(container, root.firstChild);
				}

				if (document.readyState === 'loading') {
					document.addEventListener('DOMContentLoaded', cybermapsInitSitemapUi);
				} else {
					cybermapsInitSitemapUi();
				}
			})();
		]]></html:script><atom:link rel="hub" href="https://pubsubhubbub.appspot.com/"/><atom:link rel="hub" href="https://pubsubhubbub.superfeedr.com/"/><url><loc>https://sacvalit.com/custom-cctv-audio-512kb-8khz/</loc><lastmod>2025-07-01T01:22:34+00:00</lastmod><changefreq>weekly</changefreq><priority>0.4</priority></url><url><loc>https://sacvalit.com/slash-internet-costs/</loc><lastmod>2025-06-29T22:56:15+00:00</lastmod><changefreq>weekly</changefreq><priority>0.4</priority></url></urlset>
