mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-16 06:46:37 +00:00
Update year
This commit is contained in:
@@ -6,7 +6,7 @@ import sys
|
|||||||
HEADER_TEXT = """/*
|
HEADER_TEXT = """/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
@@ -17,87 +17,109 @@ HEADER_TEXT = """/*
|
|||||||
*/
|
*/
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
HEADER_NORMALIZED = HEADER_TEXT.strip()
|
||||||
|
|
||||||
|
|
||||||
|
def extract_leading_block_comment(content):
|
||||||
|
"""
|
||||||
|
If the file content begins with a /* ... */ block comment, return the
|
||||||
|
full text of that comment (including the delimiters) and the index at
|
||||||
|
which the rest of the file starts (after any trailing newlines).
|
||||||
|
Returns (None, 0) when no such comment is found.
|
||||||
|
"""
|
||||||
|
stripped = content.lstrip()
|
||||||
|
if not stripped.startswith('/*'):
|
||||||
|
return None, 0
|
||||||
|
|
||||||
|
# Account for any leading whitespace before the comment
|
||||||
|
comment_start = content.index('/*')
|
||||||
|
end_marker = content.find('*/', comment_start + 2)
|
||||||
|
if end_marker == -1:
|
||||||
|
return None, 0
|
||||||
|
|
||||||
|
comment_end = end_marker + 2 # position just after '*/'
|
||||||
|
comment_text = content[comment_start:comment_end].strip()
|
||||||
|
|
||||||
|
# Advance past any whitespace / newlines that follow the closing */
|
||||||
|
rest_start = comment_end
|
||||||
|
while rest_start < len(content) and content[rest_start] in '\n\r':
|
||||||
|
rest_start += 1
|
||||||
|
|
||||||
|
return comment_text, rest_start
|
||||||
|
|
||||||
|
|
||||||
def should_add_header(file_path):
|
def should_add_header(file_path):
|
||||||
"""
|
"""
|
||||||
Checks if a file should receive the commercial license header.
|
Checks if a file should receive the commercial license header.
|
||||||
Returns True if 'private' is in the path or file content.
|
Returns True if 'server/private' is in the path.
|
||||||
"""
|
"""
|
||||||
# Check if 'private' is in the file path (case-insensitive)
|
|
||||||
if 'server/private' in file_path.lower():
|
if 'server/private' in file_path.lower():
|
||||||
return True
|
return True
|
||||||
|
|
||||||
# Check if 'private' is in the file content (case-insensitive)
|
|
||||||
# try:
|
|
||||||
# with open(file_path, 'r', encoding='utf-8', errors='ignore') as f:
|
|
||||||
# content = f.read()
|
|
||||||
# if 'private' in content.lower():
|
|
||||||
# return True
|
|
||||||
# except Exception as e:
|
|
||||||
# print(f"Could not read file {file_path}: {e}")
|
|
||||||
|
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
def process_directory(root_dir):
|
def process_directory(root_dir):
|
||||||
"""
|
"""
|
||||||
Recursively scans a directory and adds headers to qualifying .ts or .tsx files,
|
Recursively scans a directory and adds/replaces/removes headers in
|
||||||
skipping any 'node_modules' directories.
|
qualifying .ts or .tsx files, skipping any 'node_modules' directories.
|
||||||
"""
|
"""
|
||||||
print(f"Scanning directory: {root_dir}")
|
print(f"Scanning directory: {root_dir}")
|
||||||
files_processed = 0
|
files_processed = 0
|
||||||
headers_added = 0
|
files_modified = 0
|
||||||
|
|
||||||
for root, dirs, files in os.walk(root_dir):
|
for root, dirs, files in os.walk(root_dir):
|
||||||
# --- MODIFICATION ---
|
# Exclude 'node_modules' directories from the scan.
|
||||||
# Exclude 'node_modules' directories from the scan to improve performance.
|
|
||||||
if 'node_modules' in dirs:
|
if 'node_modules' in dirs:
|
||||||
dirs.remove('node_modules')
|
dirs.remove('node_modules')
|
||||||
|
|
||||||
for file in files:
|
for file in files:
|
||||||
if file.endswith('.ts') or file.endswith('.tsx'):
|
if not (file.endswith('.ts') or file.endswith('.tsx')):
|
||||||
file_path = os.path.join(root, file)
|
continue
|
||||||
files_processed += 1
|
|
||||||
|
|
||||||
try:
|
file_path = os.path.join(root, file)
|
||||||
with open(file_path, 'r+', encoding='utf-8') as f:
|
files_processed += 1
|
||||||
original_content = f.read()
|
|
||||||
has_header = original_content.startswith(HEADER_TEXT.strip())
|
|
||||||
|
|
||||||
if should_add_header(file_path):
|
try:
|
||||||
# Add header only if it's not already there
|
with open(file_path, 'r', encoding='utf-8') as f:
|
||||||
if not has_header:
|
original_content = f.read()
|
||||||
f.seek(0, 0) # Go to the beginning of the file
|
|
||||||
f.write(HEADER_TEXT.strip() + '\n\n' + original_content)
|
|
||||||
print(f"Added header to: {file_path}")
|
|
||||||
headers_added += 1
|
|
||||||
else:
|
|
||||||
print(f"Header already exists in: {file_path}")
|
|
||||||
else:
|
|
||||||
# Remove header if it exists but shouldn't be there
|
|
||||||
if has_header:
|
|
||||||
# Find the end of the header and remove it (including following newlines)
|
|
||||||
header_with_newlines = HEADER_TEXT.strip() + '\n\n'
|
|
||||||
if original_content.startswith(header_with_newlines):
|
|
||||||
content_without_header = original_content[len(header_with_newlines):]
|
|
||||||
else:
|
|
||||||
# Handle case where there might be different newline patterns
|
|
||||||
header_end = len(HEADER_TEXT.strip())
|
|
||||||
# Skip any newlines after the header
|
|
||||||
while header_end < len(original_content) and original_content[header_end] in '\n\r':
|
|
||||||
header_end += 1
|
|
||||||
content_without_header = original_content[header_end:]
|
|
||||||
|
|
||||||
f.seek(0)
|
existing_comment, body_start = extract_leading_block_comment(
|
||||||
f.write(content_without_header)
|
original_content
|
||||||
f.truncate()
|
)
|
||||||
print(f"Removed header from: {file_path}")
|
has_any_header = existing_comment is not None
|
||||||
headers_added += 1 # Reusing counter for modifications
|
has_correct_header = existing_comment == HEADER_NORMALIZED
|
||||||
|
|
||||||
except Exception as e:
|
body = original_content[body_start:] if has_any_header else original_content
|
||||||
print(f"Error processing file {file_path}: {e}")
|
|
||||||
|
if should_add_header(file_path):
|
||||||
|
if has_correct_header:
|
||||||
|
print(f"Header up-to-date: {file_path}")
|
||||||
|
else:
|
||||||
|
# Either no header exists or the header is outdated — write
|
||||||
|
# the correct one.
|
||||||
|
action = "Replaced header in" if has_any_header else "Added header to"
|
||||||
|
new_content = HEADER_NORMALIZED + '\n\n' + body
|
||||||
|
with open(file_path, 'w', encoding='utf-8') as f:
|
||||||
|
f.write(new_content)
|
||||||
|
print(f"{action}: {file_path}")
|
||||||
|
files_modified += 1
|
||||||
|
else:
|
||||||
|
if has_any_header:
|
||||||
|
# Remove the header — it shouldn't be here.
|
||||||
|
with open(file_path, 'w', encoding='utf-8') as f:
|
||||||
|
f.write(body)
|
||||||
|
print(f"Removed header from: {file_path}")
|
||||||
|
files_modified += 1
|
||||||
|
else:
|
||||||
|
print(f"No header needed: {file_path}")
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
print(f"Error processing file {file_path}: {e}")
|
||||||
|
|
||||||
print("\n--- Scan Complete ---")
|
print("\n--- Scan Complete ---")
|
||||||
print(f"Total .ts or .tsx files found: {files_processed}")
|
print(f"Total .ts or .tsx files found: {files_processed}")
|
||||||
print(f"Files modified (headers added/removed): {headers_added}")
|
print(f"Files modified (added/replaced/removed): {files_modified}")
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
@@ -106,7 +128,7 @@ if __name__ == "__main__":
|
|||||||
if len(sys.argv) > 1:
|
if len(sys.argv) > 1:
|
||||||
target_directory = sys.argv[1]
|
target_directory = sys.argv[1]
|
||||||
else:
|
else:
|
||||||
target_directory = '.' # Default to current directory
|
target_directory = '.' # Default to current directory
|
||||||
|
|
||||||
if not os.path.isdir(target_directory):
|
if not os.path.isdir(target_directory):
|
||||||
print(f"Error: Directory '{target_directory}' not found.")
|
print(f"Error: Directory '{target_directory}' not found.")
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
// Normalizes
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Normalizes a post-authentication path for safe use when building redirect URLs.
|
* Normalizes a post-authentication path for safe use when building redirect URLs.
|
||||||
* Returns a path that starts with / and does not allow open redirects (no //, no :).
|
* Returns a path that starts with / and does not allow open redirects (no //, no :).
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
// Sanitizes
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sanitize a string field before inserting into a database TEXT column.
|
* Sanitize a string field before inserting into a database TEXT column.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
// tokenCache
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a cached plaintext token from Redis if one exists and decrypts
|
* Returns a cached plaintext token from Redis if one exists and decrypts
|
||||||
* cleanly, otherwise calls `createSession` to mint a fresh token, stores the
|
* cleanly, otherwise calls `createSession` to mint a fresh token, stores the
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* This file is part of a proprietary work.
|
* This file is part of a proprietary work.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2025 Fossorial, Inc.
|
* Copyright (c) 2025-2026 Fossorial, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is licensed under the Fossorial Commercial License.
|
* This file is licensed under the Fossorial Commercial License.
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user