{"id":200,"date":"2026-08-24T09:33:09","date_gmt":"2026-08-24T09:33:09","guid":{"rendered":"https:\/\/satellite.foundation\/?page_id=200"},"modified":"2026-08-24T09:33:13","modified_gmt":"2026-08-24T09:33:13","slug":"files","status":"publish","type":"page","link":"https:\/\/satellite.foundation\/?page_id=200","title":{"rendered":"FILES"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">WORKING WITH FILES IN SATELLITE IS VERY EASY&#8230;<\/p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\" data-code-block-pro-font-family=\"Code-Pro-JetBrains-Mono\" style=\"font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)\"><span style=\"display:block;padding:16px 0 0 16px;margin-bottom:-1px;width:100%;text-align:left;background-color:#FDF6E3\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"54\" height=\"14\" viewBox=\"0 0 54 14\"><g fill=\"none\" fill-rule=\"evenodd\" transform=\"translate(1 1)\"><circle cx=\"6\" cy=\"6\" r=\"6\" fill=\"#FF5F56\" stroke=\"#E0443E\" stroke-width=\".5\"><\/circle><circle cx=\"26\" cy=\"6\" r=\"6\" fill=\"#FFBD2E\" stroke=\"#DEA123\" stroke-width=\".5\"><\/circle><circle cx=\"46\" cy=\"6\" r=\"6\" fill=\"#27C93F\" stroke=\"#1AAB29\" stroke-width=\".5\"><\/circle><\/g><\/svg><\/span><span role=\"button\" tabindex=\"0\" style=\"color:#657B83;display:none\" aria-label=\"Copy\" class=\"code-block-pro-copy-button\"><pre class=\"code-block-pro-copy-button-pre\" aria-hidden=\"true\"><textarea class=\"code-block-pro-copy-button-textarea\" tabindex=\"-1\" aria-hidden=\"true\" readonly>satellite.include(satellite)\n\nsatellite.capsule satellite.main(satellite.container.list&lt;satellite.variable.string> arguments)\n{\n  satellite.variable.file my_binary_file = satellite.file.new(\"my_file.bin\", binary)\n  \n  my_binary_file.write(x238974547644873FCADFACBDF) \/\/ for hex\n  my_binary_file.write(b1110101010000000101110001) \/\/ for binary\n  \n  my_binary_file.close()\n  \n  satellite.variable.file my_text_file = satellite.file.open(\"document.txt\", text)\n  \n  my_text_file.write(\"some string\")\n  \n  \/\/ clear the file\n  \n  my_text_file.clear()\n  \n  \/\/ insert at line 4\n  \n  my_text_file.write(\"some_string\", 4) \/\/ so \"some_string\" becomes line 5, and line 4 is left alone...\n  \n  my_text_file.close()\n  \n  satellite.return(satellite)\n}<\/textarea><\/pre><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" style=\"width:24px;height:24px\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\" stroke-width=\"2\"><path class=\"with-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\"><\/path><path class=\"without-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\"><\/path><\/svg><\/span><pre class=\"shiki solarized-light\" style=\"background-color: #FDF6E3\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #268BD2\">satellite<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">include<\/span><span style=\"color: #657B83\">(satellite)<\/span><\/span>\n<span class=\"line\"><\/span>\n<span class=\"line\"><span style=\"color: #268BD2\">satellite<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">capsule<\/span><span style=\"color: #657B83\"> <\/span><span style=\"color: #268BD2\">satellite<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">main<\/span><span style=\"color: #657B83\">(<\/span><span style=\"color: #268BD2\">satellite<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">container<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">list<\/span><span style=\"color: #859900\">&lt;<\/span><span style=\"color: #268BD2\">satellite<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">variable<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">string<\/span><span style=\"color: #859900\">&gt;<\/span><span style=\"color: #657B83\"> arguments)<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">{<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><span style=\"color: #268BD2\">satellite<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">variable<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">file<\/span><span style=\"color: #657B83\"> my_binary_file <\/span><span style=\"color: #859900\">=<\/span><span style=\"color: #657B83\"> <\/span><span style=\"color: #268BD2\">satellite<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">file<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">new<\/span><span style=\"color: #657B83\">(<\/span><span style=\"color: #2AA198\">&quot;my_file.bin&quot;<\/span><span style=\"color: #657B83\">, binary)<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><span style=\"color: #268BD2\">my_binary_file<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">write<\/span><span style=\"color: #657B83\">(x238974547644873FCADFACBDF)<\/span><span style=\"color: #93A1A1; font-style: italic\"> \/\/ for hex<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><span style=\"color: #268BD2\">my_binary_file<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">write<\/span><span style=\"color: #657B83\">(b1110101010000000101110001)<\/span><span style=\"color: #93A1A1; font-style: italic\"> \/\/ for binary<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><span style=\"color: #268BD2\">my_binary_file<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">close<\/span><span style=\"color: #657B83\">()<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><span style=\"color: #268BD2\">satellite<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">variable<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">file<\/span><span style=\"color: #657B83\"> my_text_file <\/span><span style=\"color: #859900\">=<\/span><span style=\"color: #657B83\"> <\/span><span style=\"color: #268BD2\">satellite<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">file<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">open<\/span><span style=\"color: #657B83\">(<\/span><span style=\"color: #2AA198\">&quot;document.txt&quot;<\/span><span style=\"color: #657B83\">, text)<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><span style=\"color: #268BD2\">my_text_file<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">write<\/span><span style=\"color: #657B83\">(<\/span><span style=\"color: #2AA198\">&quot;some string&quot;<\/span><span style=\"color: #657B83\">)<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><\/span>\n<span class=\"line\"><span style=\"color: #93A1A1; font-style: italic\">  \/\/ clear the file<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><span style=\"color: #268BD2\">my_text_file<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">clear<\/span><span style=\"color: #657B83\">()<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><\/span>\n<span class=\"line\"><span style=\"color: #93A1A1; font-style: italic\">  \/\/ insert at line 4<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><span style=\"color: #268BD2\">my_text_file<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">write<\/span><span style=\"color: #657B83\">(<\/span><span style=\"color: #2AA198\">&quot;some_string&quot;<\/span><span style=\"color: #657B83\">, <\/span><span style=\"color: #D33682\">4<\/span><span style=\"color: #657B83\">)<\/span><span style=\"color: #93A1A1; font-style: italic\"> \/\/ so &quot;some_string&quot; becomes line 5, and line 4 is left alone...<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><span style=\"color: #268BD2\">my_text_file<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">close<\/span><span style=\"color: #657B83\">()<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><span style=\"color: #268BD2\">satellite<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">return<\/span><span style=\"color: #657B83\">(satellite)<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">}<\/span><\/span><\/code><\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">searching a file for something is simple, in satellite the motto is everything is done for you, NO CRYPTIC INTERFACES<\/p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\" data-code-block-pro-font-family=\"Code-Pro-JetBrains-Mono\" style=\"font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)\"><span style=\"display:block;padding:16px 0 0 16px;margin-bottom:-1px;width:100%;text-align:left;background-color:#FDF6E3\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"54\" height=\"14\" viewBox=\"0 0 54 14\"><g fill=\"none\" fill-rule=\"evenodd\" transform=\"translate(1 1)\"><circle cx=\"6\" cy=\"6\" r=\"6\" fill=\"#FF5F56\" stroke=\"#E0443E\" stroke-width=\".5\"><\/circle><circle cx=\"26\" cy=\"6\" r=\"6\" fill=\"#FFBD2E\" stroke=\"#DEA123\" stroke-width=\".5\"><\/circle><circle cx=\"46\" cy=\"6\" r=\"6\" fill=\"#27C93F\" stroke=\"#1AAB29\" stroke-width=\".5\"><\/circle><\/g><\/svg><\/span><span role=\"button\" tabindex=\"0\" style=\"color:#657B83;display:none\" aria-label=\"Copy\" class=\"code-block-pro-copy-button\"><pre class=\"code-block-pro-copy-button-pre\" aria-hidden=\"true\"><textarea class=\"code-block-pro-copy-button-textarea\" tabindex=\"-1\" aria-hidden=\"true\" readonly>satellite.include(satellite)\n\nsatellite.capsule satellite.main(satellite.container.list&lt;satellite.variable.string> arguments)\n{\n  satellite.variable.file my_binary_file = satellite.file.new(\"my_bin.bin\", binary)\n  \n  my_binary_file.write(x03218C)\n  \n  satellite.variable.number my_number = my_binary_file.find(x218) \/\/ finds the position of the hexadecimal value 218\n  \n  my_binary_file.write(x9C) \/\/ write 9C as a hex code\n  \n  my_binary_file.return() \/\/ returns the binary or hex for 032189CC\n  \n  satellite.return(satellite)\n}<\/textarea><\/pre><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" style=\"width:24px;height:24px\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\" stroke-width=\"2\"><path class=\"with-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\"><\/path><path class=\"without-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\"><\/path><\/svg><\/span><pre class=\"shiki solarized-light\" style=\"background-color: #FDF6E3\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #268BD2\">satellite<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">include<\/span><span style=\"color: #657B83\">(satellite)<\/span><\/span>\n<span class=\"line\"><\/span>\n<span class=\"line\"><span style=\"color: #268BD2\">satellite<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">capsule<\/span><span style=\"color: #657B83\"> <\/span><span style=\"color: #268BD2\">satellite<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">main<\/span><span style=\"color: #657B83\">(<\/span><span style=\"color: #268BD2\">satellite<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">container<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">list<\/span><span style=\"color: #859900\">&lt;<\/span><span style=\"color: #268BD2\">satellite<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">variable<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">string<\/span><span style=\"color: #859900\">&gt;<\/span><span style=\"color: #657B83\"> arguments)<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">{<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><span style=\"color: #268BD2\">satellite<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">variable<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">file<\/span><span style=\"color: #657B83\"> my_binary_file <\/span><span style=\"color: #859900\">=<\/span><span style=\"color: #657B83\"> <\/span><span style=\"color: #268BD2\">satellite<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">file<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">new<\/span><span style=\"color: #657B83\">(<\/span><span style=\"color: #2AA198\">&quot;my_bin.bin&quot;<\/span><span style=\"color: #657B83\">, binary)<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><span style=\"color: #268BD2\">my_binary_file<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">write<\/span><span style=\"color: #657B83\">(x03218C)<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><span style=\"color: #268BD2\">satellite<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">variable<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">number<\/span><span style=\"color: #657B83\"> my_number <\/span><span style=\"color: #859900\">=<\/span><span style=\"color: #657B83\"> <\/span><span style=\"color: #268BD2\">my_binary_file<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">find<\/span><span style=\"color: #657B83\">(x218)<\/span><span style=\"color: #93A1A1; font-style: italic\"> \/\/ finds the position of the hexadecimal value 218<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><span style=\"color: #268BD2\">my_binary_file<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">write<\/span><span style=\"color: #657B83\">(x9C)<\/span><span style=\"color: #93A1A1; font-style: italic\"> \/\/ write 9C as a hex code<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><span style=\"color: #268BD2\">my_binary_file<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">return<\/span><span style=\"color: #657B83\">()<\/span><span style=\"color: #93A1A1; font-style: italic\"> \/\/ returns the binary or hex for 032189CC<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">  <\/span><span style=\"color: #268BD2\">satellite<\/span><span style=\"color: #657B83\">.<\/span><span style=\"color: #268BD2\">return<\/span><span style=\"color: #657B83\">(satellite)<\/span><\/span>\n<span class=\"line\"><span style=\"color: #657B83\">}<\/span><\/span><\/code><\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<p>WORKING WITH FILES IN SATELLITE IS VERY EASY&#8230; searching a file for something is simple, in satellite the motto is everything is done for you, NO CRYPTIC INTERFACES<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-200","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>FILES &#187; The Satellite Corporation<\/title>\n<meta name=\"description\" content=\"FILES &#187; The Satellite Corporation &#187;\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/satellite.foundation\/?page_id=200\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"FILES &#187; The Satellite Corporation\" \/>\n<meta property=\"og:description\" content=\"FILES &#187; The Satellite Corporation &#187;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/satellite.foundation\/?page_id=200\" \/>\n<meta property=\"og:site_name\" content=\"The Satellite Corporation\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-24T09:33:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/satellite.foundation\/wp-content\/uploads\/2026\/08\/overwatch_elite_soldier_half_life_2_by_pino44io_d5lw0u3-fullview.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"1024\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\\\/\\\/satellite.foundation\\\/?page_id=200#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/satellite.foundation\\\/?page_id=200\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/satellite.foundation\\\/#\\\/schema\\\/person\\\/bc720ad560e4878b6baad4ff52cba4a2\"},\"headline\":\"FILES\",\"datePublished\":\"2026-08-24T09:33:09+00:00\",\"dateModified\":\"2026-08-24T09:33:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/satellite.foundation\\\/?page_id=200\"},\"wordCount\":29,\"publisher\":{\"@id\":\"https:\\\/\\\/satellite.foundation\\\/#organization\"},\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/satellite.foundation\\\/?page_id=200\",\"url\":\"https:\\\/\\\/satellite.foundation\\\/?page_id=200\",\"name\":\"FILES &#187; The Satellite Corporation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/satellite.foundation\\\/#website\"},\"datePublished\":\"2026-08-24T09:33:09+00:00\",\"dateModified\":\"2026-08-24T09:33:13+00:00\",\"description\":\"FILES &#187; The Satellite Corporation &#187;\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/satellite.foundation\\\/?page_id=200#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/satellite.foundation\\\/?page_id=200\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/satellite.foundation\\\/?page_id=200#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/satellite.foundation\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"FILES\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/satellite.foundation\\\/#website\",\"url\":\"https:\\\/\\\/satellite.foundation\\\/\",\"name\":\"The Satellite Corporation\",\"description\":\"Broadcasting Another World!\",\"publisher\":{\"@id\":\"https:\\\/\\\/satellite.foundation\\\/#organization\"},\"alternateName\":\"TheSatellite.org\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/satellite.foundation\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/satellite.foundation\\\/#organization\",\"name\":\"The Satellite Corporation\",\"alternateName\":\"TheSatellite.org\",\"url\":\"https:\\\/\\\/satellite.foundation\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/satellite.foundation\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/satellite.foundation\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/overwatch_elite_soldier_half_life_2_by_pino44io_d5lw0u3-fullview.jpg\",\"contentUrl\":\"https:\\\/\\\/satellite.foundation\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/overwatch_elite_soldier_half_life_2_by_pino44io_d5lw0u3-fullview.jpg\",\"width\":1024,\"height\":1024,\"caption\":\"The Satellite Corporation\"},\"image\":{\"@id\":\"https:\\\/\\\/satellite.foundation\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/satellite.foundation\\\/#\\\/schema\\\/person\\\/bc720ad560e4878b6baad4ff52cba4a2\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/82bdfd1e639500423635206856d7ac70ed6efb910d91334e9100ddccba2d744a?s=96&d=mm&r=x\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/82bdfd1e639500423635206856d7ac70ed6efb910d91334e9100ddccba2d744a?s=96&d=mm&r=x\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/82bdfd1e639500423635206856d7ac70ed6efb910d91334e9100ddccba2d744a?s=96&d=mm&r=x\",\"caption\":\"admin\"},\"sameAs\":[\"https:\\\/\\\/satellite.foundation\"],\"url\":\"https:\\\/\\\/satellite.foundation\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"FILES &#187; The Satellite Corporation","description":"FILES &#187; The Satellite Corporation &#187;","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/satellite.foundation\/?page_id=200","og_locale":"en_US","og_type":"article","og_title":"FILES &#187; The Satellite Corporation","og_description":"FILES &#187; The Satellite Corporation &#187;","og_url":"https:\/\/satellite.foundation\/?page_id=200","og_site_name":"The Satellite Corporation","article_modified_time":"2026-08-24T09:33:13+00:00","og_image":[{"width":1024,"height":1024,"url":"https:\/\/satellite.foundation\/wp-content\/uploads\/2026\/08\/overwatch_elite_soldier_half_life_2_by_pino44io_d5lw0u3-fullview.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/satellite.foundation\/?page_id=200#article","isPartOf":{"@id":"https:\/\/satellite.foundation\/?page_id=200"},"author":{"name":"admin","@id":"https:\/\/satellite.foundation\/#\/schema\/person\/bc720ad560e4878b6baad4ff52cba4a2"},"headline":"FILES","datePublished":"2026-08-24T09:33:09+00:00","dateModified":"2026-08-24T09:33:13+00:00","mainEntityOfPage":{"@id":"https:\/\/satellite.foundation\/?page_id=200"},"wordCount":29,"publisher":{"@id":"https:\/\/satellite.foundation\/#organization"},"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/satellite.foundation\/?page_id=200","url":"https:\/\/satellite.foundation\/?page_id=200","name":"FILES &#187; The Satellite Corporation","isPartOf":{"@id":"https:\/\/satellite.foundation\/#website"},"datePublished":"2026-08-24T09:33:09+00:00","dateModified":"2026-08-24T09:33:13+00:00","description":"FILES &#187; The Satellite Corporation &#187;","breadcrumb":{"@id":"https:\/\/satellite.foundation\/?page_id=200#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/satellite.foundation\/?page_id=200"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/satellite.foundation\/?page_id=200#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/satellite.foundation\/"},{"@type":"ListItem","position":2,"name":"FILES"}]},{"@type":"WebSite","@id":"https:\/\/satellite.foundation\/#website","url":"https:\/\/satellite.foundation\/","name":"The Satellite Corporation","description":"Broadcasting Another World!","publisher":{"@id":"https:\/\/satellite.foundation\/#organization"},"alternateName":"TheSatellite.org","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/satellite.foundation\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/satellite.foundation\/#organization","name":"The Satellite Corporation","alternateName":"TheSatellite.org","url":"https:\/\/satellite.foundation\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/satellite.foundation\/#\/schema\/logo\/image\/","url":"https:\/\/satellite.foundation\/wp-content\/uploads\/2026\/08\/overwatch_elite_soldier_half_life_2_by_pino44io_d5lw0u3-fullview.jpg","contentUrl":"https:\/\/satellite.foundation\/wp-content\/uploads\/2026\/08\/overwatch_elite_soldier_half_life_2_by_pino44io_d5lw0u3-fullview.jpg","width":1024,"height":1024,"caption":"The Satellite Corporation"},"image":{"@id":"https:\/\/satellite.foundation\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/satellite.foundation\/#\/schema\/person\/bc720ad560e4878b6baad4ff52cba4a2","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/82bdfd1e639500423635206856d7ac70ed6efb910d91334e9100ddccba2d744a?s=96&d=mm&r=x","url":"https:\/\/secure.gravatar.com\/avatar\/82bdfd1e639500423635206856d7ac70ed6efb910d91334e9100ddccba2d744a?s=96&d=mm&r=x","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/82bdfd1e639500423635206856d7ac70ed6efb910d91334e9100ddccba2d744a?s=96&d=mm&r=x","caption":"admin"},"sameAs":["https:\/\/satellite.foundation"],"url":"https:\/\/satellite.foundation\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/satellite.foundation\/index.php?rest_route=\/wp\/v2\/pages\/200","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/satellite.foundation\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/satellite.foundation\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/satellite.foundation\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/satellite.foundation\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=200"}],"version-history":[{"count":1,"href":"https:\/\/satellite.foundation\/index.php?rest_route=\/wp\/v2\/pages\/200\/revisions"}],"predecessor-version":[{"id":201,"href":"https:\/\/satellite.foundation\/index.php?rest_route=\/wp\/v2\/pages\/200\/revisions\/201"}],"wp:attachment":[{"href":"https:\/\/satellite.foundation\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=200"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}