diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 3fd6e1a80801e0b9b905f9cbb02dba1312010192..0000000000000000000000000000000000000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..1897a03383ca43a0f673ec004f510e8fb4d96441 --- /dev/null +++ b/.gitignore @@ -0,0 +1,119 @@ +# Environment variables and secrets (CRITICAL - NEVER COMMIT) +.env +.env.* +*.env +.env.local +.env.development +.env.production + +# API Keys and credentials (CRITICAL) +secrets.json +credentials.json +config.json +.secrets + +# Python Virtual Environments (Regenerable) +venv/ +.venv/ +env/ +.env/ +ENV/ +env.bak/ +venv.bak/ + +# Python cache and compiled files (Regenerable) +__pycache__/ +*.py[cod] +*$py.class +*.so +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# IDE and Editor files (Personal preference) +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# Operating System files (System artifacts) +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db +Desktop.ini + +# Logs and temporary files (Regenerable) +*.log +logs/ +pip-log.txt +pip-delete-this-directory.txt + +# Testing and coverage (Regenerable) +.pytest_cache/ +.coverage +.coverage.* +htmlcov/ +.tox/ +.nox/ +coverage.xml +*.cover +.hypothesis/ + +# Documentation builds (Regenerable) +docs/_build/ +site/ + +# Build and distribution (Regenerable) +build/ +dist/ +*.egg-info/ +.eggs/ +*.whl + +# Application-specific folders (May contain sensitive data) +local_trajectories/ +screenshots/ +gifs/ +uploads/ +downloads/ + +# Backup files +*.bak +*.backup +*.old +*.orig + +# Temporary files +tmp/ +temp/ +.tmp/ + +# Node modules (if any Node.js is used) +node_modules/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Jupyter Notebook checkpoints +.ipynb_checkpoints + +# macOS specific +.AppleDouble +.LSOverride + +# Windows specific +$RECYCLE.BIN/ +*.cab +*.msi +*.msix +*.msm +*.msp + +# Linux specific +*~ \ No newline at end of file diff --git a/README.md b/README.md index 676382120b7cb8cd88520043d091bf5d8ab59ea1..7a751d1972edfabd375089fbede5b752ddb324fa 100644 --- a/README.md +++ b/README.md @@ -7,4 +7,73 @@ sdk: docker pinned: false --- -Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference +# Proxy-lite Salesforce Automation with Single-Browser Login + +This is a modernized proxy-lite Salesforce automation system that uses a streamlined single-browser login approach. + +## Key Features + +✅ **Single-Browser Login**: No more cookie injection complexity +✅ **Dual API Support**: Works with both Gemini and Convergence AI +✅ **Automatic Authentication**: Handles Salesforce login seamlessly +✅ **Efficient Architecture**: One browser instance for login and task execution + +## Quick Start + +### Environment Setup + +1. Install dependencies: +```bash +pip install -r requirements.txt +``` + +2. Set environment variables: +```bash +# API Keys (set at least one) +export GEMINI_API_KEY=your_gemini_api_key +export HF_API_TOKEN=your_hf_token + +# Salesforce Credentials +export SALESFORCE_USERNAME=your_salesforce_username +export SALESFORCE_PASSWORD=your_salesforce_password +``` + +3. Run the Flask app: +```bash +python app.py +``` + +### Usage + +Send a POST request to `/run_proxy_task`: + +```json +{ + "task": "Navigate to the permission set and assign it to the user", + "url": "https://your-org.salesforce.com/lightning/setup/AccountForecastSettings/home" +} +``` + +## Architecture + +The system automatically: +1. Initializes a browser session +2. Performs Salesforce login using provided credentials +3. Navigates to the target URL +4. Executes the requested task +5. Returns structured results + +## API Priority + +- **Gemini API** (preferred if `GEMINI_API_KEY` is set) +- **Convergence AI** (fallback if only `HF_API_TOKEN` is set) + +## Benefits over Cookie Injection + +- Eliminates cookie extraction/injection complexity +- More efficient (no separate browser instance) +- Better session management +- More reliable navigation +- Easier to maintain and debug + +See `SINGLE_BROWSER_LOGIN_GUIDE.md` for detailed documentation. diff --git a/app.py b/app.py index 821421667e768130e307e1fd7bdcc690fe8116c9..ce72d4916b2ff2fa2ce1f904258253b352741cae 100644 --- a/app.py +++ b/app.py @@ -7,89 +7,67 @@ from proxy_lite import Runner, RunnerConfig import os import logging from datetime import datetime -from playwright.async_api import async_playwright, TimeoutError as PlaywrightTimeoutError + +# Load environment variables from .env file +try: + from dotenv import load_dotenv + load_dotenv() # This loads .env from current directory + # Also try loading from subdirectory if it exists + if os.path.exists('proxy-lite-demo-v2/.env'): + load_dotenv('proxy-lite-demo-v2/.env') + print("✅ Environment variables loaded from .env file") +except ImportError: + print("⚠️ python-dotenv not installed. Install with: pip install python-dotenv") +except Exception as e: + print(f"⚠️ Could not load .env file: {e}") logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s') logger = logging.getLogger(__name__) app = Flask(__name__) -_runner = None - -async def perform_hardcoded_salesforce_login_and_get_cookies(username, password, login_url, target_url): - logger.info("Attempting hardcoded Salesforce login with Playwright to obtain cookies...") - async with async_playwright() as p: - browser = await p.chromium.launch(headless=True, args=["--no-sandbox", "--disable-setuid-sandbox"]) - context = await browser.new_context() - page = await context.new_page() - - try: - await page.goto(login_url, wait_until="domcontentloaded", timeout=60000) - logger.info(f"Playwright: Navigated to Salesforce login page: {page.url}") - - await page.fill("#username", username) - await page.fill("#password", password) - await page.click("#Login") - logger.info("Playwright: Filled credentials and clicked Login. Waiting for post-login state...") - - try: - await page.wait_for_url(lambda url: "login.salesforce.com" not in url and "unauthorized" not in url.lower(), timeout=60000) - logger.info(f"Playwright: Successfully redirected from login page. Current URL: {page.url}") - await page.wait_for_selector('button[title="App Launcher"]', timeout=30000) - logger.info("Playwright: Main Salesforce Lightning UI (e.g., App Launcher) detected after login.") - - except PlaywrightTimeoutError: - logger.error(f"Playwright: Did not detect main UI or expected URL change within timeout after login. Current URL: {page.url}. Login might have failed or stuck on a redirect loop.") - raise Exception("Salesforce login redirection failed or main UI not detected.") - - logger.info(f"Playwright: Navigating to target URL: {target_url} to ensure all relevant cookies are captured.") - await page.goto(target_url, wait_until="domcontentloaded", timeout=60000) - - try: - # Wait for generic Salesforce setup page elements to load - await page.wait_for_selector('.setupPage, .slds-page-header, .slds-card, [data-aura-class*="setup"], .forcePageBlockSectionView', timeout=30000) - logger.info("Playwright: Detected Salesforce setup page elements loaded successfully.") - except PlaywrightTimeoutError: - logger.warning("Playwright: Specific setup page elements not found. Trying generic page load check...") - try: - # Fallback: wait for page to reach network idle state - await page.wait_for_load_state("networkidle", timeout=10000) - logger.info("Playwright: Page reached network idle state - proceeding with task.") - except PlaywrightTimeoutError: - logger.info("Playwright: Page load validation timed out, but continuing as page may still be functional.") - - await asyncio.sleep(2) - logger.info(f"Playwright: Successfully navigated to and confirmed content on {page.url}") - - cookies = await context.cookies() - logger.info(f"Playwright: Extracted {len(cookies)} cookies after successful login and navigation.") - return cookies - - except PlaywrightTimeoutError as e: - logger.error(f"Playwright login/navigation failed (Timeout): {e}. Current URL: {page.url}") - raise - except Exception as e: - logger.error(f"Playwright login/navigation failed (General Error): {e}. Current URL: {page.url}") - raise - finally: - if browser: - await browser.close() - - -async def initialize_runner_with_cookies(cookies: list, target_url: str): +_runner: Runner | None = None + +async def initialize_runner_with_single_browser_login(username: str, password: str, target_url: str): + """Initialize Proxy-lite Runner with single-browser login approach.""" global _runner - logger.info("Initializing Proxy-lite Runner with provided cookies...") + logger.info("Initializing Proxy-lite Runner with single-browser login approach...") + # Check for required API keys with debugging gemini_api_key = os.environ.get("GEMINI_API_KEY") - if not gemini_api_key: - logger.error("GEMINI_API_KEY environment variable not set. Cannot initialize Runner.") - raise ValueError("GEMINI_API_KEY environment variable not set. Please set it as a Space secret.") + hf_api_token = os.environ.get("HF_API_TOKEN") + + logger.info(f"🔍 Environment check: GEMINI_API_KEY={'SET' if gemini_api_key else 'NOT SET'}") + logger.info(f"🔍 Environment check: HF_API_TOKEN={'SET' if hf_api_token else 'NOT SET'}") + + if not gemini_api_key and not hf_api_token: + logger.error("Neither GEMINI_API_KEY nor HF_API_TOKEN environment variable is set") + raise ValueError("Either GEMINI_API_KEY or HF_API_TOKEN must be set") + + # Prefer Gemini if both are available + if gemini_api_key: + client_config = { + "name": "gemini", + "model_id": "gemini-2.0-flash-001", + "api_key": gemini_api_key, + } + logger.info("🤖 Using Gemini API for inference") + else: + client_config = { + "name": "convergence", + "model_id": "convergence-ai/proxy-lite-3b", + "api_base": "https://convergence-ai-demo-api.hf.space/v1", + "api_key": hf_api_token, + "http_timeout": 50.0, + "http_concurrent_connections": 50, + } + logger.info("🤖 Using Convergence AI for inference") config_dict = { "environment": { "name": "webbrowser", - "homepage": "about:blank", # Safe startup, we'll open new tab programmatically - "headless": True, + "homepage": "about:blank", # Will be skipped due to login + "headless": False, "launch_args": ["--no-sandbox", "--disable-setuid-sandbox"], "screenshot_delay": 0.5, "include_html": True, @@ -100,19 +78,19 @@ async def initialize_runner_with_cookies(cookies: list, target_url: str): "browserbase_timeout": 7200, "keep_original_image": False, "no_pois_in_image": False, - "initial_cookies": cookies + # --- SINGLE-BROWSER LOGIN CONFIG --- + "perform_login": True, + "salesforce_login_url": "https://login.salesforce.com/", + "salesforce_username": username, + "salesforce_password": password, + "target_url": target_url + # --- END SINGLE-BROWSER LOGIN CONFIG --- }, "solver": { "name": "simple", "agent": { "name": "proxy_lite", - "client": { - "name": "gemini", - "model_id": "gemini-2.0-flash-001", - "api_key": gemini_api_key, - "http_timeout": 50.0, - "http_concurrent_connections": 50, - }, + "client": client_config, "history_messages_limit": { "screenshot": 1 }, @@ -129,15 +107,18 @@ async def initialize_runner_with_cookies(cookies: list, target_url: str): } config = RunnerConfig.from_dict(config_dict) - logger.info(f"DEBUG: app.py - Initializing Proxy-lite Runner with Gemini Flash 2.0 configuration.") + logger.info(f"DEBUG: app.py - Initializing Proxy-lite Runner with single-browser login approach") _runner = Runner(config=config) - logger.info("Proxy-lite Runner initialized successfully with Gemini Flash 2.0 and injected cookies.") + logger.info("Proxy-lite Runner initialized successfully with single-browser login") return _runner @app.route('/run_proxy_task', methods=['POST']) async def run_proxy_task_endpoint(): data = request.json + if not data: + return jsonify({"error": "No JSON data provided"}), 400 + request_task_instruction = data.get('task') target_url = data.get('url') @@ -165,24 +146,90 @@ async def run_proxy_task_endpoint(): logger.error("Salesforce credentials (SALESFORCE_USERNAME, SALESFORCE_PASSWORD) environment variables not set.") return jsonify({"error": "Salesforce credentials not configured. Please set SALESFORCE_USERNAME and SALESFORCE_PASSWORD as Space secrets."}), 500 - salesforce_login_url = "https://login.salesforce.com/" - logger.info("Executing hardcoded login via Playwright to get session cookies...") - session_cookies = await perform_hardcoded_salesforce_login_and_get_cookies( - salesforce_username, salesforce_password, salesforce_login_url, target_url - ) - logger.info(f"Successfully obtained {len(session_cookies)} cookies. These will be injected into the agent's browser.") + runner = await initialize_runner_with_single_browser_login(salesforce_username, salesforce_password, target_url) + logger.info("Proxy-lite Runner initialized with cookies." if salesforce_username and salesforce_password else "Proxy-lite Runner initialized for general web browsing.") + + logger.info("Agent will use mandatory new tab tool to bypass loading issues.") + + # MANDATORY new tab navigation task - this is critical to avoid loading issues + agent_task = f""" +CRITICAL FIRST STEP - MANDATORY: +Your VERY FIRST action must be to use the open_new_tab_and_go_to tool to navigate to {target_url} + +DO NOT skip this step. DO NOT use goto. You MUST use: open_new_tab_and_go_to(url='{target_url}') + +This is necessary because direct navigation to this URL gets stuck loading. The new tab approach bypasses this issue. + +STEP 1: Use open_new_tab_and_go_to(url='{target_url}') +STEP 2: Wait for the page to be fully loaded (no loading spinners visible) +STEP 3: {request_task_instruction} + +CRITICAL WORKFLOW - FOLLOW THESE EXACT STEPS IN SEQUENCE: + +STEP A: Select Permission Set +- Use select_option_by_text tool to find and select the target permission set from Available list +- Wait for "[ACTION COMPLETED]" response before proceeding + +STEP B: Click Add Button +- After successful selection, immediately click the "Add" button to move permission set to Enabled list +- Do NOT repeat the selection - proceed directly to Add button + +STEP C: Click Save Button +- After clicking Add, immediately click "Save" to persist the changes +- After Save, Salesforce redirects to User page indicating SUCCESS + +CRITICAL: Do NOT repeat actions. Each step should happen exactly once in sequence. + +GENERAL INSTRUCTIONS: +- You must EXECUTE all actions immediately - do NOT just describe what you plan to do +- Do NOT wait for user input or ask "what should I do next?" +- Complete the entire task autonomously using the available tools +- After completing all steps, use the return_value tool to provide your final response +- If you make a plan, IMMEDIATELY execute it step by step using the appropriate tools + """ + + logger.info("Executing agent task with mandatory new tab navigation...") + result = await runner.run(task=agent_task) + + # Extract the actual result value from the Run object + task_result = str(getattr(result, "value", None) or getattr(result, "result", None) or result) + + logger.info(f"Proxy-lite task completed. Output (truncated for log): {task_result[:500]}...") + + # Structure response for LWC integration + response = { + "status": "success", + "message": "Task completed successfully", + "data": { + "task_result": task_result, + "steps_completed": [ + "Hardcoded Salesforce login completed", + "Browser session initialized with cookies", + "New tab navigation executed", + "Target Salesforce setup page accessed", + "Task execution completed successfully" + ], + "environment": { + "target_url": target_url, + "cookies_count": 0, # No explicit cookie count for single-browser login + "navigation_method": "new_tab_bypass" + } + }, + "timestamp": datetime.now().isoformat(), + "task_request": request_task_instruction + } + + return jsonify(response) else: # General web browsing - no login required logger.info("Non-Salesforce URL detected. Skipping Salesforce login.") - session_cookies = [] - - runner = await initialize_runner_with_cookies(session_cookies, target_url) - logger.info("Proxy-lite Runner initialized with cookies." if session_cookies else "Proxy-lite Runner initialized for general web browsing.") + runner = await initialize_runner_with_single_browser_login("", "", target_url) + logger.info("Proxy-lite Runner initialized for general web browsing.") - logger.info("Agent will use mandatory new tab tool to bypass loading issues.") - - # MANDATORY new tab navigation task - this is critical to avoid loading issues - agent_task = f""" + logger.info("Agent will use mandatory new tab tool to bypass loading issues.") + + # MANDATORY new tab navigation task - this is critical to avoid loading issues + agent_task = f""" CRITICAL FIRST STEP - MANDATORY: Your VERY FIRST action must be to use the open_new_tab_and_go_to tool to navigate to {target_url} @@ -216,61 +263,39 @@ GENERAL INSTRUCTIONS: - Complete the entire task autonomously using the available tools - After completing all steps, use the return_value tool to provide your final response - If you make a plan, IMMEDIATELY execute it step by step using the appropriate tools - """ - - logger.info("Executing agent task with mandatory new tab navigation...") - result = await runner.run(task=agent_task) - - # Extract the actual result value from the Run object - if hasattr(result, 'value') and result.value: - task_result = str(result.value) - elif hasattr(result, 'result') and result.result: - task_result = str(result.result) - else: - task_result = str(result) + """ - logger.info(f"Proxy-lite task completed. Output (truncated for log): {task_result[:500]}...") - - # Structure response for LWC integration - response = { - "status": "success", - "message": "Task completed successfully", - "data": { - "task_result": task_result, - "steps_completed": [ - "Hardcoded Salesforce login completed", - "Browser session initialized with cookies", - "New tab navigation executed", - "Target Salesforce setup page accessed", - "Task execution completed successfully" - ], - "environment": { - "target_url": target_url, - "cookies_count": len(session_cookies), - "navigation_method": "new_tab_bypass" - } - }, - "timestamp": datetime.now().isoformat(), - "task_request": request_task_instruction - } - - return jsonify(response) - - except PlaywrightTimeoutError as e: - logger.exception(f"Playwright timeout during login/navigation: {e}") - error_response = { - "status": "error", - "error_type": "navigation_timeout", - "message": "Page loading timed out during login or navigation", - "data": { - "error_details": str(e), - "suggested_action": "Retry the request - network issues may be temporary", - "steps_completed": ["Login attempted", "Navigation failed due to timeout"] - }, - "timestamp": datetime.now().isoformat(), - "task_request": request_task_instruction - } - return jsonify(error_response), 500 + logger.info("Executing agent task with mandatory new tab navigation...") + result = await runner.run(task=agent_task) + + # Extract the actual result value from the Run object + task_result = str(getattr(result, "value", None) or getattr(result, "result", None) or result) + + logger.info(f"Proxy-lite task completed. Output (truncated for log): {task_result[:500]}...") + + # Structure response for LWC integration + response = { + "status": "success", + "message": "Task completed successfully", + "data": { + "task_result": task_result, + "steps_completed": [ + "Browser session initialized with cookies", + "New tab navigation executed", + "Target Salesforce setup page accessed", + "Task execution completed successfully" + ], + "environment": { + "target_url": target_url, + "cookies_count": 0, # No explicit cookie count for single-browser login + "navigation_method": "new_tab_bypass" + } + }, + "timestamp": datetime.now().isoformat(), + "task_request": request_task_instruction + } + + return jsonify(response) except ValueError as e: logger.exception(f"Configuration error: {e}") @@ -318,6 +343,7 @@ def health_check(): # Check environment variables env_status = { "GEMINI_API_KEY": "✓" if os.environ.get("GEMINI_API_KEY") else "✗", + "HF_API_TOKEN": "✓" if os.environ.get("HF_API_TOKEN") else "✗", "SALESFORCE_USERNAME": "✓" if os.environ.get("SALESFORCE_USERNAME") else "✗", "SALESFORCE_PASSWORD": "✓" if os.environ.get("SALESFORCE_PASSWORD") else "✗" } @@ -342,9 +368,8 @@ def health_check(): } return jsonify(health_response) - if __name__ == '__main__': - if not os.environ.get("GEMINI_API_KEY"): - logger.error("GEMINI_API_KEY environment variable is not set. Please set it for local testing.") + if not os.environ.get("GEMINI_API_KEY") and not os.environ.get("HF_API_TOKEN"): + logger.error("Neither GEMINI_API_KEY nor HF_API_TOKEN environment variable is set. Please set at least one for local testing.") logger.info("Starting Flask development server on 0.0.0.0:6101...") - app.run(host='0.0.0.0', port=6101, debug=True) \ No newline at end of file + app.run(host='0.0.0.0', port=6101, debug=True) diff --git a/env.example b/env.example new file mode 100644 index 0000000000000000000000000000000000000000..f190e152bd854f60d4a70517db7a6fe97fbf8958 --- /dev/null +++ b/env.example @@ -0,0 +1,17 @@ +# Copy this file to .env and fill in your actual values +# DO NOT commit the .env file with real values! + +# API Token for Hugging Face (for Convergence AI model) +HF_API_TOKEN=your_huggingface_token_here + +# Salesforce credentials for automation +SALESFORCE_USERNAME=your_salesforce_username@company.com +SALESFORCE_PASSWORD=your_salesforce_password + +# Google Gemini API Key (alternative to HF_API_TOKEN) +GEMINI_API_KEY=your_gemini_api_key_here + +# Usage Instructions: +# 1. Copy this file: cp env.example .env +# 2. Replace the placeholder values with your actual credentials +# 3. The .env file is automatically ignored by git for security diff --git a/proxy-lite-demo-v2/.gitattributes b/proxy-lite-demo-v2/.gitattributes deleted file mode 100644 index a6344aac8c09253b3b630fb776ae94478aa0275b..0000000000000000000000000000000000000000 --- a/proxy-lite-demo-v2/.gitattributes +++ /dev/null @@ -1,35 +0,0 @@ -*.7z filter=lfs diff=lfs merge=lfs -text -*.arrow filter=lfs diff=lfs merge=lfs -text -*.bin filter=lfs diff=lfs merge=lfs -text -*.bz2 filter=lfs diff=lfs merge=lfs -text -*.ckpt filter=lfs diff=lfs merge=lfs -text -*.ftz filter=lfs diff=lfs merge=lfs -text -*.gz filter=lfs diff=lfs merge=lfs -text -*.h5 filter=lfs diff=lfs merge=lfs -text -*.joblib filter=lfs diff=lfs merge=lfs -text -*.lfs.* filter=lfs diff=lfs merge=lfs -text -*.mlmodel filter=lfs diff=lfs merge=lfs -text -*.model filter=lfs diff=lfs merge=lfs -text -*.msgpack filter=lfs diff=lfs merge=lfs -text -*.npy filter=lfs diff=lfs merge=lfs -text -*.npz filter=lfs diff=lfs merge=lfs -text -*.onnx filter=lfs diff=lfs merge=lfs -text -*.ot filter=lfs diff=lfs merge=lfs -text -*.parquet filter=lfs diff=lfs merge=lfs -text -*.pb filter=lfs diff=lfs merge=lfs -text -*.pickle filter=lfs diff=lfs merge=lfs -text -*.pkl filter=lfs diff=lfs merge=lfs -text -*.pt filter=lfs diff=lfs merge=lfs -text -*.pth filter=lfs diff=lfs merge=lfs -text -*.rar filter=lfs diff=lfs merge=lfs -text -*.safetensors filter=lfs diff=lfs merge=lfs -text -saved_model/**/* filter=lfs diff=lfs merge=lfs -text -*.tar.* filter=lfs diff=lfs merge=lfs -text -*.tar filter=lfs diff=lfs merge=lfs -text -*.tflite filter=lfs diff=lfs merge=lfs -text -*.tgz filter=lfs diff=lfs merge=lfs -text -*.wasm filter=lfs diff=lfs merge=lfs -text -*.xz filter=lfs diff=lfs merge=lfs -text -*.zip filter=lfs diff=lfs merge=lfs -text -*.zst filter=lfs diff=lfs merge=lfs -text -*tfevents* filter=lfs diff=lfs merge=lfs -text diff --git a/proxy-lite-demo-v2/.gitignore b/proxy-lite-demo-v2/.gitignore deleted file mode 100644 index fa40ca0b0c1d2d315a3000c99ad5a07a6e54d020..0000000000000000000000000000000000000000 --- a/proxy-lite-demo-v2/.gitignore +++ /dev/null @@ -1,177 +0,0 @@ -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class - -# C extensions -*.so - -# Distribution / packaging -.Python -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -share/python-wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.nox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -*.py,cover -.hypothesis/ -.pytest_cache/ -cover/ - -# Translations -*.mo -*.pot - -# Django stuff: -*.log -local_settings.py -db.sqlite3 -db.sqlite3-journal - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# Sphinx documentation -docs/_build/ - -# PyBuilder -.pybuilder/ -target/ - -# Jupyter Notebook -.ipynb_checkpoints - -# IPython -profile_default/ -ipython_config.py - -# pyenv -# For a library or package, you might want to ignore these files since the code is -# intended to run in multiple environments; otherwise, check them in: -# .python-version - -# pipenv -# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. -# However, in case of collaboration, if having platform-specific dependencies or dependencies -# having no cross-platform support, pipenv may install dependencies that don't work, or not -# install all needed dependencies. -#Pipfile.lock - -# UV -# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control. -# This is especially recommended for binary packages to ensure reproducibility, and is more -# commonly ignored for libraries. -#uv.lock - -# poetry -# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. -# This is especially recommended for binary packages to ensure reproducibility, and is more -# commonly ignored for libraries. -# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control -#poetry.lock - -# pdm -# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. -#pdm.lock -# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it -# in version control. -# https://pdm.fming.dev/latest/usage/project/#working-with-version-control -.pdm.toml -.pdm-python -.pdm-build/ - -# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm -__pypackages__/ - -# Celery stuff -celerybeat-schedule -celerybeat.pid - -# SageMath parsed files -*.sage.py - -# Environments -.env -.venv -env/ -venv/ -ENV/ -env.bak/ -venv.bak/ - -# Spyder project settings -.spyderproject -.spyproject - -# Rope project settings -.ropeproject - -# mkdocs documentation -/site - -# mypy -.mypy_cache/ -.dmypy.json -dmypy.json - -# Pyre type checker -.pyre/ - -# pytype static type analyzer -.pytype/ - -# Cython debug symbols -cython_debug/ - -# PyCharm -# JetBrains specific template is maintained in a separate JetBrains.gitignore that can -# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore -# and can be added to the global gitignore or merged into this file. For a more nuclear -# option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ - -# PyPI configuration file -.pypirc - -logs/ -local_trajectories/ -screenshots/ -gifs/ -.DS_Store diff --git a/proxy-lite-demo-v2/.idea/.gitignore b/proxy-lite-demo-v2/.idea/.gitignore deleted file mode 100644 index 01700225ee5014fa8c9f414d40d7d2158510aab7..0000000000000000000000000000000000000000 --- a/proxy-lite-demo-v2/.idea/.gitignore +++ /dev/null @@ -1,14 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Environment-dependent path to Maven home directory -/mavenHomeManager.xml -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml -# Core Dev Booster ignored files -/compile.flag -/coreModuleDependants.csv -/.mavenCleaned diff --git a/proxy-lite-demo-v2/src/proxy_lite/agents/agent_base.py b/proxy-lite-demo-v2/src/proxy_lite/agents/agent_base.py index b66a8782f771b51f92e9e496bf6c70d3fa9ed338..7d6ac60272493626d2f4d471f91d9e0b00918a6c 100644 --- a/proxy-lite-demo-v2/src/proxy_lite/agents/agent_base.py +++ b/proxy-lite-demo-v2/src/proxy_lite/agents/agent_base.py @@ -96,7 +96,11 @@ class BaseAgent(BaseModel, ABC): use_tool: bool = False, response_format: Optional[type[BaseModel]] = None, append_assistant_message: bool = True, + label: Optional[MessageLabel] = None, ) -> AssistantMessage: + if self.client is None: + raise RuntimeError("Client not initialized") + messages: MessageHistory = await self.get_history_view() response_content = ( await self.client.create_completion( @@ -109,45 +113,44 @@ class BaseAgent(BaseModel, ABC): ).model_dump() response_content = response_content["choices"][0]["message"] assistant_message = AssistantMessage( - role=response_content["role"], content=[Text(text=response_content["content"])] if response_content["content"] else [], - tool_calls=response_content["tool_calls"], + tool_calls=response_content["tool_calls"] or [], ) if append_assistant_message: - self.history.append(message=assistant_message, label=self.message_label) + self.history.append(message=assistant_message, label=label) return assistant_message def receive_user_message( self, text: Optional[str] = None, - image: list[bytes] = None, - label: MessageLabel = None, + image: Optional[list[bytes]] = None, + label: Optional[MessageLabel] = None, is_base64: bool = False, ) -> None: message = UserMessage.from_media( text=text, - image=image, + image=image[0] if image else None, is_base64=is_base64, ) - self.history.append(message=message, label=label) + self.history.append(message=cast(UserMessage, message), label=label) def receive_system_message( self, text: Optional[str] = None, - label: MessageLabel = None, + label: Optional[MessageLabel] = None, ) -> None: message = SystemMessage.from_media(text=text) - self.history.append(message=message, label=label) + self.history.append(message=cast(SystemMessage, message), label=label) def receive_assistant_message( self, content: Optional[str] = None, tool_calls: Optional[list[ToolCall]] = None, - label: MessageLabel = None, + label: Optional[MessageLabel] = None, ) -> None: message = AssistantMessage( content=[Text(text=content)] if content else [], - tool_calls=tool_calls, + tool_calls=tool_calls or [], ) self.history.append(message=message, label=label) @@ -165,7 +168,7 @@ class BaseAgent(BaseModel, ABC): self, text: str, tool_id: str, - label: MessageLabel = None, + label: Optional[MessageLabel] = None, ) -> None: self.history.append( message=ToolMessage(content=[Text(text=text)], tool_call_id=tool_id), diff --git a/proxy-lite-demo-v2/src/proxy_lite/app.py b/proxy-lite-demo-v2/src/proxy_lite/app.py index cec8c5b4185efc26a41c85685b9d68785a083fe4..1489a1208a1b40dfe9f410646bfb4f82cf5aba60 100644 --- a/proxy-lite-demo-v2/src/proxy_lite/app.py +++ b/proxy-lite-demo-v2/src/proxy_lite/app.py @@ -115,12 +115,12 @@ async def run_task_async( config: dict, ): try: - config = RunnerConfig.from_dict(config) + runner_config = RunnerConfig.from_dict(config) except Exception as e: st.error(f"Error loading RunnerConfig: {e!s}") return - print(config) - runner = Runner(config=config) + print(runner_config) + runner = Runner(config=runner_config) # Add the spinning animation using HTML status_placeholder.markdown( @@ -150,13 +150,14 @@ async def run_task_async( async for run in runner.run_generator(task): # Update status with latest step if run.actions: - latest_step = run.actions[-1].text - latest_step += "".join( - [ - f'{{"name": {tool_call.function["name"]}, "arguments": {tool_call.function["arguments"]}}}' # noqa: E501 - for tool_call in run.actions[-1].tool_calls - ] - ) + latest_step = run.actions[-1].text or "" + if run.actions[-1].tool_calls: + latest_step += "".join( + [ + f'{{"name": {tool_call.function["name"]}, "arguments": {tool_call.function["arguments"]}}}' # noqa: E501 + for tool_call in run.actions[-1].tool_calls + ] + ) action_placeholder.write(f"⚡ **Latest Step:** {latest_step}") all_steps.append(latest_step) diff --git a/proxy-lite-demo-v2/src/proxy_lite/browser/__init__.py b/proxy-lite-demo-v2/src/proxy_lite/browser/__init__.py index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..d0ef4c2594b8df549dac414b4a49fc34f4b1694b 100644 --- a/proxy-lite-demo-v2/src/proxy_lite/browser/__init__.py +++ b/proxy-lite-demo-v2/src/proxy_lite/browser/__init__.py @@ -0,0 +1,5 @@ +from .browser import BrowserSession +from .bounding_boxes import BoundingBox, POI, Point + +__all__ = ["BrowserSession", "BoundingBox", "POI", "Point"] + diff --git a/proxy-lite-demo-v2/src/proxy_lite/browser/bounding_boxes.py b/proxy-lite-demo-v2/src/proxy_lite/browser/bounding_boxes.py index 31ee9e36fe6bb1cb0665f597951d4087d363cb8c..5cc763939f0a41f238c02cb95e0b74026a0c9bba 100644 --- a/proxy-lite-demo-v2/src/proxy_lite/browser/bounding_boxes.py +++ b/proxy-lite-demo-v2/src/proxy_lite/browser/bounding_boxes.py @@ -114,12 +114,12 @@ def draw_dashed_rectangle( # Draw all lines at once if all_points: - all_points = np.array(all_points).reshape((-1, 2, 2)) - cv2.polylines(img, all_points, False, color, thickness) + all_points = np.array(all_points, dtype=np.int32).reshape((-1, 2, 2)) + cv2.polylines(img, [all_points[i] for i in range(len(all_points))], False, color, thickness) # @time_it(name='Annotate bounding box') -def annotate_bounding_box(image: bytes, bbox: BoundingBox) -> None: +def annotate_bounding_box(image: np.ndarray, bbox: BoundingBox) -> None: # Draw dashed bounding box draw_dashed_rectangle( image, @@ -194,6 +194,8 @@ def annotate_bounding_boxes(image: bytes, bounding_boxes: list[BoundingBox]) -> nparr = np.frombuffer(image, np.uint8) # Decode the image img = cv2.imdecode(nparr, cv2.IMREAD_COLOR) + if img is None: + raise ValueError("Failed to decode image") padded_img = cv2.copyMakeBorder( img, top=25, # Value chosen based on label size diff --git a/proxy-lite-demo-v2/src/proxy_lite/browser/browser.py b/proxy-lite-demo-v2/src/proxy_lite/browser/browser.py index 455f65d0029f579bdf96e9193f5309ac6670fe08..c9b3c3737f8afb4b53d4c6a9a7a5f8cd7e86cf67 100644 --- a/proxy-lite-demo-v2/src/proxy_lite/browser/browser.py +++ b/proxy-lite-demo-v2/src/proxy_lite/browser/browser.py @@ -15,7 +15,6 @@ from tenacity import before_sleep_log, retry, stop_after_delay, wait_exponential from proxy_lite.browser.bounding_boxes import POI, BoundingBox, Point, annotate_bounding_boxes from proxy_lite.logger import logger -import base64 SELF_CONTAINED_TAGS = [ # many of these are non-interactive but keeping them anyway @@ -58,7 +57,7 @@ def element_as_text( attributes.append(f'{k}="{v}"') attributes = " ".join(attributes) attributes = (" " + attributes).rstrip() - tag = tag.lower() + tag = tag.lower() if tag else "" if text is None: text = "" if len(text) > 2500: @@ -111,8 +110,11 @@ class BrowserSession: await self.context.new_page() self.context.set_default_timeout(60_000) - self.current_page.set_default_timeout(60_000) - await stealth_async(self.current_page, StealthConfig(navigator_user_agent=False)) + if self.current_page: + self.current_page.set_default_timeout(60_000) + await stealth_async(self.current_page, StealthConfig(navigator_user_agent=False)) + else: + raise RuntimeError("No page available after browser initialization") await self.context.add_init_script( path=Path(__file__).with_name("add_custom_select.js"), ) @@ -186,6 +188,9 @@ class BrowserSession: before_sleep=before_sleep_log(logger, logging.ERROR), ) async def update_poi(self) -> None: + if self.current_page is None: + raise RuntimeError("No current page available for POI update") + try: # Wait for basic page load states to ensure the DOM is ready. # This is a fundamental wait that should always apply. @@ -251,8 +256,10 @@ class BrowserSession: logger.info(f"INFO: Detected intermediate Salesforce Lightning app loading page: {current_url}. Waiting for network idle and app spinner.") # This is the /one/one.app page or similar. Don't wait for specific content, just general load. try: - await self.current_page.wait_for_load_state("networkidle", timeout=30000) # Give it more time for network to settle - logger.debug(f"DEBUG: Network idle detected on intermediate app page: {current_url}.") + # Give it more time for network to settle + await self.current_page.wait_for_load_state("networkidle", timeout=30000) + logger.debug( + f"DEBUG: Network idle detected on intermediate app page: {current_url}.") except PlaywrightTimeoutError: logger.warning(f"DEBUGGING: Network idle timeout on intermediate app page: {current_url}. Proceeding anyway.") @@ -350,9 +357,12 @@ class BrowserSession: self, delay: float = 0.0, quality: int = 70, - type: str = "jpeg", - scale: str = "css", + type: Literal["jpeg", "png"] = "jpeg", + scale: Literal["css", "device"] = "css", ) -> tuple[bytes, bytes]: + if self.current_page is None: + raise RuntimeError("No current page available for screenshot") + if delay > 0.0: await asyncio.sleep(delay) await self.update_poi() @@ -365,22 +375,32 @@ class BrowserSession: return img, annotated_img async def goto(self, url: str) -> None: + if self.current_page is None: + raise RuntimeError("No current page available for goto") await self.current_page.goto(url, wait_until="domcontentloaded") async def reload(self) -> None: + if self.current_page is None: + raise RuntimeError("No current page available for reload") await self.current_page.reload(wait_until="domcontentloaded") async def click_tab(self, mark_id: int) -> None: + if self.current_page is None: + raise RuntimeError("No current page available for click_tab") point: Point = self.poi_centroids[mark_id] await self.hover(point) await self.current_page.mouse.click(*point, button="middle") async def click(self, mark_id: int) -> None: + if self.current_page is None: + raise RuntimeError("No current page available for click") point: Point = self.poi_centroids[mark_id] await self.hover(point) await self.current_page.mouse.click(*point) async def enter_text(self, mark_id: int, text: str, submit: bool = False) -> None: + if self.current_page is None: + raise RuntimeError("No current page available for enter_text") await self.clear_text_field(mark_id) await self.click(mark_id) await self.current_page.keyboard.type(text) @@ -393,6 +413,9 @@ class BrowserSession: direction: Literal["up", "down", "left", "right"], mark_id: Optional[int] = None, ) -> None: + if self.current_page is None: + raise RuntimeError("No current page available for scroll") + if mark_id is None: point = Point(x=-1, y=-1) max_scroll_x = self.viewport_width @@ -418,6 +441,9 @@ class BrowserSession: if not self.current_page: return + if self.context is None: + raise RuntimeError("No browser context available for go_back") + await self.current_page.go_back(wait_until="domcontentloaded") if self.current_page.url == "about:blank": if not len(self.context.pages) > 1: @@ -426,9 +452,13 @@ class BrowserSession: await self.current_page.close() async def hover(self, point: Point) -> None: + if self.current_page is None: + raise RuntimeError("No current page available for hover") await self.current_page.mouse.move(*point) async def focus(self, point: Point) -> None: + if self.current_page is None: + raise RuntimeError("No current page available for focus") # Focus on the element on the page at point (x, y) await self.current_page.evaluate( """ @@ -442,6 +472,8 @@ class BrowserSession: ) async def get_text(self, mark_id: int) -> str: + if self.current_page is None: + raise RuntimeError("No current page available for get_text") return await self.current_page.evaluate( """ (mark_id) => { @@ -456,6 +488,9 @@ class BrowserSession: ) async def clear_text_field(self, mark_id: int) -> None: + if self.current_page is None: + raise RuntimeError("No current page available for clear_text_field") + existing_text = await self.get_text(mark_id) if existing_text.strip(): # Clear existing text only if it exists @@ -474,6 +509,9 @@ class BrowserSession: Opens a new browser tab/page and navigates to the specified URL. Closes the old page if it's not the last one remaining. """ + if self.context is None: + raise RuntimeError("No browser context available for open_new_tab_and_go_to") + logger.info(f"Attempting to open a new tab and navigate to: {url}") new_page = await self.context.new_page() @@ -496,6 +534,8 @@ if __name__ == "__main__": async def dummy_test(): async with BrowserSession(headless=False) as s: + if s.context is None: + raise RuntimeError("No browser context available in dummy_test") page = await s.context.new_page() await page.goto("http://google.co.uk") await asyncio.sleep(5) diff --git a/proxy-lite-demo-v2/src/proxy_lite/cli.py b/proxy-lite-demo-v2/src/proxy_lite/cli.py index 22af28e927bf4ae5e4359babc87f4e5d295ffa8a..1d2f28b730d771d820e353a920b93a6002fdab64 100644 --- a/proxy-lite-demo-v2/src/proxy_lite/cli.py +++ b/proxy-lite-demo-v2/src/proxy_lite/cli.py @@ -14,10 +14,12 @@ def update_config_from_env(config: RunnerConfig) -> RunnerConfig: config.solver.agent.client.api_base = os.getenv("PROXY_LITE_API_BASE") if os.getenv("PROXY_LITE_MODEL"): config.solver.agent.client.model_id = os.getenv("PROXY_LITE_MODEL") - if os.getenv("PROXY_LITE_VIEWPORT_WIDTH"): - config.environment.viewport_width = int(os.getenv("PROXY_LITE_VIEWPORT_WIDTH")) - if os.getenv("PROXY_LITE_VIEWPORT_HEIGHT"): - config.environment.viewport_height = int(os.getenv("PROXY_LITE_VIEWPORT_HEIGHT")) + viewport_width = os.getenv("PROXY_LITE_VIEWPORT_WIDTH") + if viewport_width: + config.environment.viewport_width = int(viewport_width) + viewport_height = os.getenv("PROXY_LITE_VIEWPORT_HEIGHT") + if viewport_height: + config.environment.viewport_height = int(viewport_height) return config @@ -42,18 +44,20 @@ def do_command(args): o = Runner(config=config) result = asyncio.run(o.run(do_text)) - final_screenshot = result.observations[-1].info["original_image"] - folder_path = Path(__file__).parent.parent.parent / "screenshots" - folder_path.mkdir(parents=True, exist_ok=True) - path = folder_path / f"{result.run_id}.png" - with open(path, "wb") as f: - f.write(base64.b64decode(final_screenshot)) - logger.info(f"🤖 Final screenshot saved to {path}") + # Check if we have observations and info data + if result.observations and result.observations[-1].info: + final_screenshot = result.observations[-1].info["original_image"] + folder_path = Path(__file__).parent.parent.parent / "screenshots" + folder_path.mkdir(parents=True, exist_ok=True) + path = folder_path / f"{result.run_id}.png" + with open(path, "wb") as f: + f.write(base64.b64decode(final_screenshot)) + logger.info(f"🤖 Final screenshot saved to {path}") gif_folder_path = Path(__file__).parent.parent.parent / "gifs" gif_folder_path.mkdir(parents=True, exist_ok=True) gif_path = gif_folder_path / f"{result.run_id}.gif" - create_run_gif(result, gif_path, duration=1500) + create_run_gif(result, str(gif_path), duration=1500) logger.info(f"🤖 GIF saved to {gif_path}") diff --git a/proxy-lite-demo-v2/src/proxy_lite/client.py b/proxy-lite-demo-v2/src/proxy_lite/client.py index a8a1b34c8fee79b8770c812db90489344ede2c67..f2f28c4e486e3e5d25fa77a6ff45c700fe39af92 100644 --- a/proxy-lite-demo-v2/src/proxy_lite/client.py +++ b/proxy-lite-demo-v2/src/proxy_lite/client.py @@ -38,7 +38,6 @@ class BaseClient(BaseModel, ABC): tools: Optional[list[Tool]] = None, response_format: Optional[type[BaseModel]] = None, ) -> ChatCompletion: ... - """ Create completion from model. Expect subclasses to adapt from various endpoints that will handle @@ -56,10 +55,12 @@ class BaseClient(BaseModel, ABC): "convergence": ConvergenceClient, "gemini": GeminiClient, } - if config.name not in supported_clients: - error_message = f"Unsupported model: {config.name}." + # Type assertion - we know the config will have a name attribute from subclasses + config_name = getattr(config, 'name', None) + if config_name not in supported_clients: + error_message = f"Unsupported model: {config_name}." raise ValueError(error_message) - return supported_clients[config.name](config=config) + return supported_clients[config_name](config=config) @property def http_client(self) -> httpx.AsyncClient: @@ -75,7 +76,7 @@ class BaseClient(BaseModel, ABC): class OpenAIClientConfig(BaseClientConfig): name: Literal["openai"] = "openai" model_id: str = "gpt-4o" - api_key: str = os.environ.get("OPENAI_API_KEY") + api_key: str = os.environ.get("OPENAI_API_KEY", "") api_base: Optional[str] = None @@ -112,7 +113,8 @@ class OpenAIClient(BaseClient): "tool_choice": "required" if tools else None, "response_format": {"type": "json_object"} if response_format else {"type": "text"}, } - base_params.update({k: v for k, v in optional_params.items() if v is not None}) + base_params.update( + {k: v for k, v in optional_params.items() if v is not None}) return await self.external_client.chat.completions.create(**base_params) @@ -259,7 +261,7 @@ class GeminiClient(BaseClient): from openai.types.chat.chat_completion import ChatCompletion, Choice from openai.types.chat.chat_completion_message import ChatCompletionMessage from openai.types.completion_usage import CompletionUsage - from openai.types.chat.chat_completion_message_tool_call import ChatCompletionMessageToolCall + from openai.types.chat.chat_completion_message_tool_call import ChatCompletionMessageToolCall, Function # Convert messages to format expected by Gemini serialized_messages = self.serializer.serialize_messages(messages) @@ -365,10 +367,10 @@ class GeminiClient(BaseClient): tool_call = ChatCompletionMessageToolCall( id=f"call_{hash(str(func_call))}"[:16], type="function", - function={ - "name": func_call["name"], - "arguments": json.dumps(func_call.get("args", {})) - } + function=Function( + name=func_call["name"], + arguments=json.dumps(func_call.get("args", {})) + ) ) tool_calls.append(tool_call) diff --git a/proxy-lite-demo-v2/src/proxy_lite/environments/webbrowser.py b/proxy-lite-demo-v2/src/proxy_lite/environments/webbrowser.py index 69b5df087e9775cb3dfb5a8f8dc12f5edf72fffd..ad840375f42840a18b9fb3a96e26075bf233a274 100644 --- a/proxy-lite-demo-v2/src/proxy_lite/environments/webbrowser.py +++ b/proxy-lite-demo-v2/src/proxy_lite/environments/webbrowser.py @@ -32,6 +32,12 @@ class WebBrowserEnvironmentConfig(BaseEnvironmentConfig): # --- MODIFICATION START --- # Added to accept initial cookies from the RunnerConfig initial_cookies: Optional[List[dict]] = None + # Added for automatic login functionality + perform_login: bool = False + salesforce_login_url: Optional[str] = None + salesforce_username: Optional[str] = None + salesforce_password: Optional[str] = None + target_url: Optional[str] = None # --- MODIFICATION END --- @@ -46,25 +52,31 @@ class WebBrowserEnvironment(BaseEnvironment): async def __aenter__(self) -> Self: # Initialize the BrowserSession + # Type cast to access WebBrowserEnvironmentConfig attributes + config = self.config # type: WebBrowserEnvironmentConfig self.browser = self.browser_session( - viewport_width=self.config.viewport_width, - viewport_height=self.config.viewport_height, - headless=self.config.headless, + viewport_width=config.viewport_width, # type: ignore + viewport_height=config.viewport_height, # type: ignore + headless=config.headless, # type: ignore ) await self.browser.__aenter__() # Initialize other resources if necessary # --- MODIFICATION START --- # Changed to use self.config.initial_cookies - if self.config.initial_cookies: - self.logger.info(f"🌐 [bold blue]Adding {len(self.config.initial_cookies)} initial cookies to browser context.[/]") - await self.browser.context.add_cookies(self.config.initial_cookies) + if config.initial_cookies: # type: ignore + if self.logger: + self.logger.info(f"🌐 [bold blue]Adding {len(config.initial_cookies)} initial cookies to browser context.[/]") # type: ignore + if self.browser.context: + await self.browser.context.add_cookies(config.initial_cookies) # type: ignore # --- MODIFICATION END --- - self.logger.info("🌐 [bold blue]Browser session started.[/]") + if self.logger: + self.logger.info("🌐 [bold blue]Browser session started.[/]") return self async def __aexit__(self, exc_type, exc_value, traceback): # Clean up the BrowserSession - await self.browser.__aexit__(exc_type, exc_value, traceback) + if self.browser: + await self.browser.__aexit__(exc_type, exc_value, traceback) @property def info_for_user(self) -> str: @@ -72,7 +84,9 @@ class WebBrowserEnvironment(BaseEnvironment): @cached_property def tools(self) -> list[Tool]: - return [BrowserTool(session=self.browser)] + if self.browser is None: + raise RuntimeError("Browser session not initialized") + return [BrowserTool(session=self.browser)] # type: ignore @cached_property def browser_session(self) -> type[BrowserSession]: @@ -83,39 +97,118 @@ class WebBrowserEnvironment(BaseEnvironment): # It was previously hardcoded to return an empty list. @property def cookies(self) -> list[dict]: - return self.config.initial_cookies if self.config.initial_cookies is not None else [] + config = self.config # type: WebBrowserEnvironmentConfig + return config.initial_cookies if config.initial_cookies is not None else [] # type: ignore # --- MODIFICATION END --- async def initialise(self) -> Observation: - self.logger.debug(f"DEBUG: Initialising WebBrowserEnvironment. Homepage: {self.config.homepage}") - try: - await self.browser.goto(self.config.homepage) - self.logger.debug(f"DEBUG: Browser navigated to homepage. Current URL: {self.browser.current_url}") - except Exception as e: - self.logger.error(f"ERROR: Failed to navigate to homepage {self.config.homepage}: {e}") - raise # Re-raise to propagate the error + if self.browser is None: + raise RuntimeError("Browser session not initialized") + + config = self.config # type: WebBrowserEnvironmentConfig + + if self.logger: + self.logger.debug(f"DEBUG: Initialising WebBrowserEnvironment. Homepage: {config.homepage}") # type: ignore + + # Check if automatic login is required + if config.perform_login and config.salesforce_login_url and config.salesforce_username and config.salesforce_password: # type: ignore + if self.logger: + self.logger.info(f"🔑 Performing automatic Salesforce login to {config.salesforce_login_url}") # type: ignore + + try: + # Navigate to login page + await self.browser.goto(config.salesforce_login_url) # type: ignore + if self.logger: + self.logger.debug(f"🔑 Navigated to login page: {self.browser.current_url}") + + # Wait for login elements to be available + if self.browser.current_page: + # Use more robust selectors that match actual Salesforce login page structure + # Try primary selectors first, with fallbacks + try: + await self.browser.current_page.wait_for_selector('#username', timeout=10000) + username_selector = '#username' + except: + # Fallback selectors for username + await self.browser.current_page.wait_for_selector('input[name="username"], input[type="email"]', timeout=10000) + username_selector = 'input[name="username"], input[type="email"]' + + try: + await self.browser.current_page.wait_for_selector('#password', timeout=10000) + password_selector = '#password' + except: + # Fallback selectors for password + await self.browser.current_page.wait_for_selector('input[name="password"], input[type="password"]', timeout=10000) + password_selector = 'input[name="password"], input[type="password"]' + + # Fill in credentials + await self.browser.current_page.fill(username_selector, config.salesforce_username) # type: ignore + await self.browser.current_page.fill(password_selector, config.salesforce_password) # type: ignore + + if self.logger: + self.logger.debug("🔑 Credentials filled, submitting login form") + + # Submit login form - use more robust selector for login button + try: + await self.browser.current_page.click('#Login') + except: + # Fallback selectors for login button + await self.browser.current_page.click('input[type="submit"], button[type="submit"], .btn-primary') + + # Wait for login to complete (check for successful redirect) + await self.browser.current_page.wait_for_load_state('networkidle', timeout=30000) + + if self.logger: + self.logger.info(f"🔑 Login completed successfully. Current URL: {self.browser.current_url}") + + # Navigate to target URL if specified + if config.target_url: # type: ignore + if self.logger: + self.logger.debug(f"🔑 Navigating to target URL: {config.target_url}") # type: ignore + await self.browser.goto(config.target_url) # type: ignore + if self.browser.current_page: + await self.browser.current_page.wait_for_load_state('networkidle', timeout=30000) + if self.logger: + self.logger.info(f"🔑 Successfully navigated to target URL: {self.browser.current_url}") + + except Exception as e: + if self.logger: + self.logger.error(f"ERROR: Automatic login failed: {e}") + raise # Re-raise to propagate the error + + else: + # No automatic login, navigate to homepage normally + try: + await self.browser.goto(config.homepage) # type: ignore + if self.logger: + self.logger.debug(f"DEBUG: Browser navigated to homepage. Current URL: {self.browser.current_url}") + except Exception as e: + if self.logger: + self.logger.error(f"ERROR: Failed to navigate to homepage {config.homepage}: {e}") # type: ignore + raise # Re-raise to propagate the error original_img, annotated_img = await self.browser.screenshot( - delay=self.config.screenshot_delay, + delay=config.screenshot_delay, # type: ignore ) - if self.config.no_pois_in_image: + if config.no_pois_in_image: # type: ignore base64_image = base64.b64encode(original_img).decode("utf-8") else: base64_image = base64.b64encode(annotated_img).decode("utf-8") - html_content = await self.browser.current_page.content() if self.config.include_html else None + html_content = await self.browser.current_page.content() if config.include_html else None # type: ignore - info = {"url": self.browser.current_url} - if self.config.record_pois: + info: dict[str, Any] = {"url": self.browser.current_url} + if config.record_pois: # type: ignore info["pois"] = self.browser.pois - if self.config.keep_original_image: + if config.keep_original_image: # type: ignore info["original_image"] = base64.b64encode(original_img).decode("utf-8") - self.logger.debug(f"DEBUG: Initial observation captured. URL: {self.browser.current_url}") + if self.logger: + self.logger.debug(f"DEBUG: Initial observation captured. URL: {self.browser.current_url}") return Observation( state=State( text=f"URL: {self.browser.current_url}" - + (f"\n{self.browser.poi_text}" if self.config.include_poi_text else ""), + + (f"\n{self.browser.poi_text}" if config.include_poi_text else ""), # type: ignore image=base64_image, html=html_content, ), @@ -131,6 +224,9 @@ class WebBrowserEnvironment(BaseEnvironment): return True # check for page changes + if self.browser is None: + return False + old_points = [tuple(point) for point in self.browser.poi_centroids] await self.browser.update_poi() new_points = [tuple(point) for point in self.browser.poi_centroids] @@ -143,48 +239,59 @@ class WebBrowserEnvironment(BaseEnvironment): return True async def execute_action(self, action: Action) -> Observation: + if self.browser is None: + raise RuntimeError("Browser session not initialized") + + config = self.config # type: WebBrowserEnvironmentConfig responses = [] cancelled_tools_flag = False + if await self.should_perform_action(): - for tool_call in action.tool_calls: + tool_calls = action.tool_calls or [] + for tool_call in tool_calls: # Perform the chosen action try: - tool_response: ToolExecutionResponse = await self.execute_tool( - tool_call, - ) - tool_response.id = tool_call.id + tool_response = await self.execute_tool(tool_call) + if tool_response is None: + tool_response = ToolExecutionResponse(content="Tool execution returned None", id=tool_call.id) + else: + tool_response.id = tool_call.id responses.append(tool_response) except Exception as e: # noqa: PERF203 - self.logger.warning("🌐 An error occurred taking action: %s", str(e), exc_info=False) + if self.logger: + self.logger.warning("🌐 An error occurred taking action: %s", str(e), exc_info=False) tool_response = ToolExecutionResponse(content=str(e), id=tool_call.id) responses.append(tool_response) else: - self.logger.warning("🌐 Page changed since last observation, cancelling action.") + if self.logger: + self.logger.warning("🌐 Page changed since last observation, cancelling action.") self.cancelled_last_action = True - for tool_call in action.tool_calls: + tool_calls = action.tool_calls or [] + for tool_call in tool_calls: tool_response = ToolExecutionResponse( content="The page changed before the action could be executed, instead of being ran it was cancelled.", # noqa: E501 id=tool_call.id, ) responses.append(tool_response) cancelled_tools_flag = True + original_img, annotated_img = await self.browser.screenshot( - delay=self.config.screenshot_delay, + delay=config.screenshot_delay, # type: ignore ) base64_image = base64.b64encode(annotated_img).decode("utf-8") - info = {"url": self.browser.current_url, "cancelled_tools": cancelled_tools_flag} - if self.config.record_pois: + info: dict[str, Any] = {"url": self.browser.current_url, "cancelled_tools": cancelled_tools_flag} + if config.record_pois: # type: ignore info["pois"] = self.browser.pois - if self.config.keep_original_image: + if config.keep_original_image: # type: ignore info["original_image"] = base64.b64encode(original_img).decode("utf-8") - html_content = await self.browser.current_page.content() if self.config.include_html else None + html_content = await self.browser.current_page.content() if config.include_html else None # type: ignore return Observation( state=State( text=f"URL: {self.browser.current_url}" - + (f"\n{self.browser.poi_text}" if self.config.include_poi_text else ""), + + (f"\n{self.browser.poi_text}" if config.include_poi_text else ""), # type: ignore image=base64_image, html=html_content, tool_responses=responses, @@ -195,7 +302,11 @@ class WebBrowserEnvironment(BaseEnvironment): ) async def observe(self) -> Observation: - return await self.browser.observe() + if self.browser is None: + raise RuntimeError("Browser session not initialized") + # Note: observe method may not exist on BrowserSession - implement basic observation + # return await self.browser.observe() # type: ignore + raise NotImplementedError("Observe method not implemented") async def evaluate(self, **kwargs: dict[str, Any]) -> dict[str, Any]: return {} diff --git a/proxy-lite-demo-v2/src/proxy_lite/gif_maker.py b/proxy-lite-demo-v2/src/proxy_lite/gif_maker.py index f5dbaa1a9417cff9ee3c42e004e7d36283229d0e..8e598611a8d6801fab01a7a95c8d519b0a961ed1 100644 --- a/proxy-lite-demo-v2/src/proxy_lite/gif_maker.py +++ b/proxy-lite-demo-v2/src/proxy_lite/gif_maker.py @@ -33,8 +33,9 @@ def create_run_gif( history = run.history i = 0 while i < len(history): - if isinstance(history[i], Observation): - observation = history[i] + current_record = history[i] + if isinstance(current_record, Observation): + observation = current_record image_data = observation.state.image if not image_data: i += 1 @@ -48,10 +49,12 @@ def create_run_gif( # Check if the next record is an Action and extract its text if available action_text = "" - if i + 1 < len(history) and isinstance(history[i + 1], Action): - action = history[i + 1] - if action.text: - action_text = action.text + if i + 1 < len(history): + next_record = history[i + 1] + if isinstance(next_record, Action): + action = next_record + if hasattr(action, 'text') and action.text: + action_text = action.text # extract observation and thinking from tags in the action text observation_match = re.search(r"(.*?)", action_text, re.DOTALL) @@ -81,9 +84,17 @@ def create_run_gif( except AttributeError: # Fallback for older Pillow versions: compute size for each line lines = wrapped_text.splitlines() or [wrapped_text] - line_sizes = [draw.textsize(line, font=font) for line in lines] - text_width = max(width for width, _ in line_sizes) - text_height = sum(height for _, height in line_sizes) + try: + # Try textbbox first (newer method) + line_sizes = [draw.textbbox((0, 0), line, font=font) for line in lines] + text_width = max(bbox[2] - bbox[0] for bbox in line_sizes) + text_height = sum(bbox[3] - bbox[1] for bbox in line_sizes) + except AttributeError: + # Final fallback: estimate based on font size + estimated_char_width = 8 # Rough estimate + estimated_line_height = 16 # Rough estimate + text_width = max(len(line) * estimated_char_width for line in lines) + text_height = len(lines) * estimated_line_height text_x = (white_panel_width - text_width) // 2 text_y = (obs_img.height - text_height) // 2 draw.multiline_text((text_x, text_y), wrapped_text, fill="black", font=font, align="center") diff --git a/proxy-lite-demo-v2/src/proxy_lite/history.py b/proxy-lite-demo-v2/src/proxy_lite/history.py index 13e2d98b27233177e9be17a672037f05382bb03d..b75e45a38c383e7f6fd2d1d6aa5b4d400acdcbff 100644 --- a/proxy-lite-demo-v2/src/proxy_lite/history.py +++ b/proxy-lite-demo-v2/src/proxy_lite/history.py @@ -71,15 +71,30 @@ class Message(BaseModel): image: Optional[bytes | str] = None, is_base64: bool = False, ) -> Message: + content: list[Union[Text, Image]] = [] + if text is not None: - text = Text(text=text) + text_content = Text(text=text) + content.append(text_content) + if image is not None: - base64_image = image if is_base64 else base64.b64encode(image).decode("utf-8") + if is_base64: + if isinstance(image, str): + base64_image = image + else: + # If image is bytes, convert to base64 + base64_image = base64.b64encode(image).decode("utf-8") + else: + if isinstance(image, str): + image_bytes = image.encode("utf-8") + else: + image_bytes = image + base64_image = base64.b64encode(image_bytes).decode("utf-8") + data_url = f"data:image/jpeg;base64,{base64_image}" - image = Image(image_url=ImageUrl(url=data_url)) - content = [text, image] if text is not None else [image] - else: - content = [text] + image_content = Image(image_url=ImageUrl(url=data_url)) + content.append(image_content) + return cls(content=content) @@ -127,7 +142,12 @@ class MessageHistory(BaseModel): def append(self, message: MessageTypes, label: Optional[str] = None): if label is not None: - message.label = label + # Convert string to MessageLabel if it's a valid enum value + try: + message.label = MessageLabel(label) + except ValueError: + # If not a valid MessageLabel, keep as None + message.label = None self.messages.append(message) def pop(self) -> MessageTypes: @@ -170,7 +190,7 @@ class MessageHistory(BaseModel): label_counts[message.label] += 1 else: filtered_messages.append(message) - return MessageHistory(messages=reversed(filtered_messages)) + return MessageHistory(messages=list(reversed(filtered_messages))) def __add__(self, other: MessageHistory) -> MessageHistory: new_history = MessageHistory() diff --git a/proxy-lite-demo-v2/src/proxy_lite/logger.py b/proxy-lite-demo-v2/src/proxy_lite/logger.py index 075768d5e36f6c361e0c5962849ec6c15ea9f53f..370bcdc9520cb9b87e823aeb137d6b0d86ef823f 100644 --- a/proxy-lite-demo-v2/src/proxy_lite/logger.py +++ b/proxy-lite-demo-v2/src/proxy_lite/logger.py @@ -22,8 +22,8 @@ class StructuredLogger(logging.Logger): def _log( self, - level, - msg, + level: int, + msg: str, args, exc_info=None, extra=None, @@ -33,9 +33,15 @@ class StructuredLogger(logging.Logger): if extra is None: extra = {} - json_fields = { + # Safe string formatting + try: + formatted_msg = msg % args if args else msg + except (TypeError, ValueError): + formatted_msg = str(msg) + + json_fields: dict[str, str] = { "logger_name": self.name, - "message": msg % args if args else msg, + "message": formatted_msg, } exc_type, exc_value, exc_traceback = sys.exc_info() @@ -43,7 +49,10 @@ class StructuredLogger(logging.Logger): json_fields["exception_class"] = exc_type.__name__ json_fields["exception_message"] = str(exc_value) - json_fields.update(extra) + # Ensure extra is a dict and merge with json_fields + if isinstance(extra, dict): + for key, value in extra.items(): + json_fields[key] = str(value) super()._log( level, diff --git a/proxy-lite-demo-v2/src/proxy_lite/recorder.py b/proxy-lite-demo-v2/src/proxy_lite/recorder.py index 11bb34644b81d53b133be78b56ed92a175927535..03a54d3b2bfc3b864637f5c479a8018f946256dd 100644 --- a/proxy-lite-demo-v2/src/proxy_lite/recorder.py +++ b/proxy-lite-demo-v2/src/proxy_lite/recorder.py @@ -40,7 +40,8 @@ class Run(BaseModel): @classmethod def load(cls, run_id: str) -> Self: - with open(Path(__file__).parent.parent.parent / "local_trajectories" / f"{run_id}.json", "r") as f: + trajectories_path = Path(__file__).parent.parent.parent / "local_trajectories" + with open(trajectories_path / f"{run_id}.json", "r") as f: return cls(**json.load(f)) @property @@ -80,8 +81,8 @@ class Run(BaseModel): class DataRecorder: - def __init__(self, local_folder: str | None = None): - self.local_folder = local_folder + def __init__(self, local_folder: str | Path | None = None): + self.local_folder = Path(local_folder) if local_folder else None def initialise_run(self, task: str) -> Run: self.local_folder = Path(__file__).parent.parent.parent / "local_trajectories" @@ -99,5 +100,7 @@ class DataRecorder: async def save(self, run: Run) -> None: json_payload = run.model_dump() + if self.local_folder is None: + raise ValueError("local_folder is not set. Call initialise_run first.") with open(self.local_folder / f"{run.run_id}.json", "w") as f: json.dump(json_payload, f) diff --git a/proxy-lite-demo-v2/src/proxy_lite/runner.py b/proxy-lite-demo-v2/src/proxy_lite/runner.py index 3430567c34b29676c670ab9dbe80fa5872ed35db..0bfc19cc10451fe14e7a73bb76a951034be9714c 100644 --- a/proxy-lite-demo-v2/src/proxy_lite/runner.py +++ b/proxy-lite-demo-v2/src/proxy_lite/runner.py @@ -65,14 +65,16 @@ class RunnerConfig(BaseModel): @classmethod def from_dict(cls, config_dict: dict) -> Self: conf = OmegaConf.create(config_dict) - config_dict = OmegaConf.to_container(conf, resolve=True) - return cls(**config_dict) + resolved_config = OmegaConf.to_container(conf, resolve=True) + # Type cast to satisfy linter - OmegaConf.to_container with resolve=True returns dict for dict inputs + return cls(**dict(resolved_config)) # type: ignore @classmethod def from_yaml(cls, yaml_path: str) -> Self: conf = OmegaConf.load(yaml_path) - config_dict = OmegaConf.to_container(conf, resolve=True) - return cls(**config_dict) + resolved_config = OmegaConf.to_container(conf, resolve=True) + # Type cast to satisfy linter - OmegaConf.to_container with resolve=True returns dict for dict inputs + return cls(**dict(resolved_config)) # type: ignore class Runner(BaseModel): @@ -98,9 +100,13 @@ class Runner(BaseModel): ) async def run_generator(self, task: str) -> AsyncIterator[Run]: - async with ( - async_timeout(self.config.task_timeout, "Task"), - ): + # Assert that attributes are initialized (they are set in model_post_init) + assert self.logger is not None, "Logger not initialized" + assert self.recorder is not None, "Recorder not initialized" + assert self.environment is not None, "Environment not initialized" + assert self.solver is not None, "Solver not initialized" + + async with async_timeout(self.config.task_timeout, "Task"): if self.config.logger_level is not None: self.logger.setLevel(self.config.logger_level) run = self.recorder.initialise_run(task) @@ -122,9 +128,9 @@ class Runner(BaseModel): environment.info_for_user, ) self.logger.debug("Solver initialised.") - run.solver_history = solver.history - observation: Observation = await environment.initialise() - await event_queue.put(observation) + run.solver_history = solver.history # type: ignore + initial_observation: Observation = await environment.initialise() + await event_queue.put(initial_observation) self.logger.debug("Environment initialised.") step_count = 0 while step_count < self.config.max_steps: @@ -132,26 +138,26 @@ class Runner(BaseModel): self.logger.debug(f"🤖 [bold purple]Processing event:[/] {event.type}") match event.type: case EventType.OBSERVATION: - observation: Observation = event + current_observation: Observation = event run.record( - observation=observation, - solver_history=solver.history, + observation=current_observation, + solver_history=solver.history, #type: ignore ) async with async_timeout( self.config.action_timeout, "Action decision", ): - action: Action = await solver.act(observation) - await event_queue.put(action) + action_result: Action = await solver.act(current_observation) + await event_queue.put(action_result) case EventType.ACTION: - action: Action = event - self.logger.debug(f"Tool calls: {action.tool_calls}") - run.record(action=action, solver_history=solver.history) - run.complete = await solver.is_complete(observation) + current_action: Action = event + self.logger.debug(f"Tool calls: {current_action.tool_calls}") + run.record(action=current_action, solver_history=solver.history) # type: ignore + run.complete = await solver.is_complete(current_observation) if self.config.save_every_step: await self.recorder.save(run) if run.complete: - run.result = action.text + run.result = current_action.text self.logger.info(f"🤖 [bold purple]Task complete.[/] ✨ \n{run.result}") break self.logger.debug(f"DEBUG: Using environment_timeout: {self.config.environment_timeout} seconds") @@ -159,9 +165,9 @@ class Runner(BaseModel): self.config.environment_timeout, "Environment response", ): - observation: Observation = await environment.execute_action(action) + next_observation: Observation = await environment.execute_action(current_action) step_count += 1 - await event_queue.put(observation) + await event_queue.put(next_observation) yield run if not run.complete: self.logger.warning("🤖 [bold purple]Ran out of steps!") @@ -173,7 +179,7 @@ class Runner(BaseModel): self._run = run return run - def run_concurrent(self, tasks: list[str]) -> list[Run]: + def run_concurrent(self, tasks: list[str]) -> list[Run | BaseException]: async def gather_runs(): return await asyncio.gather( *[self.run(task) for task in tasks], @@ -198,7 +204,7 @@ class Runner(BaseModel): def run_result(self) -> str: if self._run is None: raise RuntimeError("Run not initialised") - return self._run.result + return self._run.result or "" if __name__ == "__main__": diff --git a/proxy-lite-demo-v2/src/proxy_lite/solvers/simple_solver.py b/proxy-lite-demo-v2/src/proxy_lite/solvers/simple_solver.py index c1b67f42fb3a5e59c7be9a77f815dc3bdc15109c..da668df111f6928f3dcf5174d32a8445137d6382 100644 --- a/proxy-lite-demo-v2/src/proxy_lite/solvers/simple_solver.py +++ b/proxy-lite-demo-v2/src/proxy_lite/solvers/simple_solver.py @@ -27,6 +27,7 @@ class SimpleSolverConfig(BaseSolverConfig): class SimpleSolver(BaseSolver): task: Optional[str] = None complete: bool = False + config: SimpleSolverConfig # Proper typing @cached_property def tools(self) -> list[Tool]: @@ -36,15 +37,16 @@ class SimpleSolver(BaseSolver): def agent(self) -> BaseAgent: if self.logger: self.logger.debug(f"Tools: {self.tools}") - return Agents.get(self.config.agent.name)( - config=self.config.agent, + # Type ignore: config is actually SimpleSolverConfig at runtime + return Agents.get(self.config.agent.name)( # type: ignore + config=self.config.agent, # type: ignore env_tools=self.tools, ) @property def history(self) -> MessageHistory: return MessageHistory( - messages=[SystemMessage.from_media(text=self.agent.system_prompt)] + self.agent.history.messages, + messages=[SystemMessage.from_media(text=self.agent.system_prompt)] + self.agent.history.messages, # type: ignore ) async def initialise(self, task: str, env_tools: list[Tool], env_info: str) -> None: @@ -54,7 +56,8 @@ class SimpleSolver(BaseSolver): text=f"Task: {task}", label=MessageLabel.USER_INPUT, ) - self.logger.debug(f"Initialised with task: {task}") + if self.logger: + self.logger.debug(f"Initialised with task: {task}") async def act(self, observation: Observation) -> Action: # Send tool responses to agent as tool messages if they exist @@ -70,8 +73,18 @@ class SimpleSolver(BaseSolver): else: print("🔧 DEBUG: No tool responses to process") + # Handle image parameter - convert to list of bytes if needed + image_data = None + if observation.state.image: + if isinstance(observation.state.image, str): + # If it's a base64 string, convert it to bytes + import base64 + image_data = [base64.b64decode(observation.state.image)] + else: + image_data = observation.state.image + self.agent.receive_user_message( - image=observation.state.image, + image=image_data or [], text=observation.state.text, label=MessageLabel.SCREENSHOT, is_base64=True, @@ -79,7 +92,8 @@ class SimpleSolver(BaseSolver): message = await self.agent.generate_output(use_tool=True) - self.logger.debug(f"Assistant message generated: {message}") + if self.logger: + self.logger.debug(f"Assistant message generated: {message}") # check tool calls for return_value if any(tool_call.function["name"] == "return_value" for tool_call in message.tool_calls): @@ -92,23 +106,28 @@ class SimpleSolver(BaseSolver): # Handle empty content array from API response if not message.content or len(message.content) == 0: - self.logger.warning("Message content is empty, using empty string as fallback") + if self.logger: + self.logger.warning("Message content is empty, using empty string as fallback") text_content = "" else: - text_content = message.content[0].text + # Handle both text and image content types + first_content = message.content[0] + text_content = getattr(first_content, 'text', str(first_content)) observation_match = re.search(r"(.*?)", text_content, re.DOTALL) observation_content = observation_match.group(1).strip() if observation_match else "" - self.logger.info("🌐 [bold blue]Observation:[/]") - await self.logger.stream_message(observation_content) + if self.logger: + self.logger.info("🌐 [bold blue]Observation:[/]") + self.logger.info(observation_content) # Extract text between thinking tags if present thinking_match = re.search(r"(.*?)", text_content, re.DOTALL) thinking_content = thinking_match.group(1).strip() if thinking_match else text_content - self.logger.info("🧠 [bold purple]Thinking:[/]") - await self.logger.stream_message(thinking_content) + if self.logger: + self.logger.info("🧠 [bold purple]Thinking:[/]") + self.logger.info(thinking_content) return Action(tool_calls=message.tool_calls, text=text_content) diff --git a/proxy-lite-demo-v2/src/proxy_lite/tools/browser_tool.py b/proxy-lite-demo-v2/src/proxy_lite/tools/browser_tool.py index da27f6afe737d186fc2b47acccfee7e005b5606c..c0bee3ccaa27a7052fd88759283bffaf48a71f35 100644 --- a/proxy-lite-demo-v2/src/proxy_lite/tools/browser_tool.py +++ b/proxy-lite-demo-v2/src/proxy_lite/tools/browser_tool.py @@ -50,7 +50,7 @@ def element_as_text( attributes.append(f'{k}="{v}"') attributes = " ".join(attributes) attributes = (" " + attributes).rstrip() - tag = tag.lower() + tag = tag.lower() if tag else "" if text is None: text = "" if len(text) > 2500: @@ -58,8 +58,7 @@ def element_as_text( if tag in SELF_CONTAINED_TAGS: if text: logger.warning( - f"Got self-contained element '{tag}' which contained text '{text}'.", - ) + f"Got self-contained element '{tag}' which contained text '{text}'.", ) else: return f"<{tag} id={mark_id}{attributes}/>" return f"<{tag} id={mark_id}{attributes}>{text}" @@ -220,7 +219,7 @@ class BrowserTool(Tool): ) @attach_param_schema(ScrollParams) - async def scroll(self, direction: str, mark_id: int) -> ToolExecutionResponse: + async def scroll(self, direction: Literal["up", "down", "left", "right"], mark_id: int) -> ToolExecutionResponse: """Scroll the page (or a scrollable element) up, down, left or right.""" try: if mark_id == -1: @@ -247,7 +246,6 @@ class BrowserTool(Tool): logger.error(f"Go back failed: {e}") return ToolExecutionResponse(content=f"Failed to go back: {e}") - @attach_param_schema(WaitParams) async def wait(self) -> ToolExecutionResponse: """Wait three seconds. Useful when the page appears to still be loading, or if there are any unfinished webpage processes.""" # noqa: E501 @@ -306,6 +304,9 @@ class BrowserTool(Tool): # This bypasses CORS restrictions that prevent JavaScript access # Find all frames on the page + if not self.browser.current_page: + return ToolExecutionResponse(content=f"No active page found. Cannot select option '{option_text}'.") + main_frame = self.browser.current_page.main_frame all_frames = [main_frame] + main_frame.child_frames diff --git a/proxy-lite-demo-v2/src/proxy_lite/tools/tool_base.py b/proxy-lite-demo-v2/src/proxy_lite/tools/tool_base.py index a6c37bd9f6b39306a5e814bd41b33fa42ba3f552..bfeccc4562545a6a83523c561a9c21c4013e6ddb 100644 --- a/proxy-lite-demo-v2/src/proxy_lite/tools/tool_base.py +++ b/proxy-lite-demo-v2/src/proxy_lite/tools/tool_base.py @@ -43,7 +43,8 @@ def attach_param_schema(param_model: type[BaseModel]): validated_params = param_model(**kwargs) return func(self, **validated_params.model_dump()) - wrapper.param_model = param_model + # Use setattr to avoid linter errors about unknown attributes + setattr(wrapper, 'param_model', param_model) return wrapper return decorator diff --git a/proxy-lite-demo-v2/test_tool_calling.py b/proxy-lite-demo-v2/test_tool_calling.py deleted file mode 100644 index 29723d964a5ae3d5f144db02fbc798e82d63baf6..0000000000000000000000000000000000000000 --- a/proxy-lite-demo-v2/test_tool_calling.py +++ /dev/null @@ -1,65 +0,0 @@ -#!/usr/bin/env python3 -import asyncio -import os -import sys -sys.path.insert(0, 'src') - -from proxy_lite.client import GeminiClient, GeminiClientConfig -from proxy_lite.history import MessageHistory, UserMessage, Text -from proxy_lite.tools.browser_tool import BrowserTool -from proxy_lite.browser.browser import BrowserSession - -async def test_tool_calling(): - # Setup client - api_key = os.environ.get("GEMINI_API_KEY") - if not api_key: - print("❌ GEMINI_API_KEY not set") - return - - config = GeminiClientConfig(api_key=api_key) - client = GeminiClient(config=config) - - # Create a dummy browser tool - class DummyBrowserSession: - async def __aenter__(self): - return self - async def __aexit__(self, *args): - pass - async def open_new_tab_and_go_to(self, url): - print(f"✅ Would open new tab and go to: {url}") - return True - - browser_tool = BrowserTool(DummyBrowserSession()) - - # Create message history - messages = MessageHistory() - messages.append(UserMessage(content=[Text(text="Please use the open_new_tab_and_go_to tool to navigate to https://google.com")])) - - print("🚀 Testing Gemini tool calling...") - - try: - # Test tool calling - response = await client.create_completion( - messages=messages, - tools=[browser_tool], - temperature=0.7 - ) - - print(f"✅ Response received: {response}") - - if response.choices[0].message.tool_calls: - print(f"✅ Tool calls found: {len(response.choices[0].message.tool_calls)}") - for tool_call in response.choices[0].message.tool_calls: - print(f" - Tool: {tool_call.function.name}") - print(f" - Args: {tool_call.function.arguments}") - else: - print("❌ No tool calls found") - print(f"Content: {response.choices[0].message.content}") - - except Exception as e: - print(f"❌ Error: {e}") - import traceback - traceback.print_exc() - -if __name__ == "__main__": - asyncio.run(test_tool_calling()) \ No newline at end of file diff --git a/proxy-lite-work/.gitignore b/proxy-lite-work/.gitignore deleted file mode 100644 index f5f33ebd8cc353b189b301ddc03c94fd41cc3640..0000000000000000000000000000000000000000 --- a/proxy-lite-work/.gitignore +++ /dev/null @@ -1,45 +0,0 @@ -# This file is used for Git repositories to specify intentionally untracked files that Git should ignore. -# If you are not using git, you can delete this file. For more information see: https://git-scm.com/docs/gitignore -# For useful gitignore templates see: https://github.com/github/gitignore - -# Salesforce cache -.sf/ -.sfdx/ -.localdevserver/ -deploy-options.json - -# LWC VSCode autocomplete -**/lwc/jsconfig.json - -# LWC Jest coverage reports -coverage/ - -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* - -# Dependency directories -node_modules/ - -# Eslint cache -.eslintcache - -# MacOS system files -.DS_Store - -# Windows system files -Thumbs.db -ehthumbs.db -[Dd]esktop.ini -$RECYCLE.BIN/ - -# Local environment variables -.env - -# Python Salesforce Functions -**/__pycache__/ -**/.venv/ -**/venv/ diff --git a/proxy-lite-work/.sf/orgs/00DWd000006jIa1MAE/localSourceTracking/HEAD b/proxy-lite-work/.sf/orgs/00DWd000006jIa1MAE/localSourceTracking/HEAD new file mode 100644 index 0000000000000000000000000000000000000000..b870d82622c1a9ca6bcaf5df639680424a1904b0 --- /dev/null +++ b/proxy-lite-work/.sf/orgs/00DWd000006jIa1MAE/localSourceTracking/HEAD @@ -0,0 +1 @@ +ref: refs/heads/main diff --git a/proxy-lite-work/.sf/orgs/00DWd000006jIa1MAE/localSourceTracking/config b/proxy-lite-work/.sf/orgs/00DWd000006jIa1MAE/localSourceTracking/config new file mode 100644 index 0000000000000000000000000000000000000000..d545cdabdbddafca3501d2114506fc86e50e9824 --- /dev/null +++ b/proxy-lite-work/.sf/orgs/00DWd000006jIa1MAE/localSourceTracking/config @@ -0,0 +1,7 @@ +[core] + repositoryformatversion = 0 + filemode = false + bare = false + logallrefupdates = true + symlinks = false + ignorecase = true diff --git a/proxy-lite-work/.sfdx/indexes/lwc/custom-components.json b/proxy-lite-work/.sfdx/indexes/lwc/custom-components.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/proxy-lite-work/.sfdx/indexes/lwc/custom-components.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/sfdx-config.json b/proxy-lite-work/.sfdx/sfdx-config.json new file mode 100644 index 0000000000000000000000000000000000000000..2b72b019a9251871116a6ab077c9632886f8a6f5 --- /dev/null +++ b/proxy-lite-work/.sfdx/sfdx-config.json @@ -0,0 +1,3 @@ +{ + "defaultusername": "vscodeOrg" +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Account.cls b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Account.cls new file mode 100644 index 0000000000000000000000000000000000000000..8b0e3e474ecf00652aff54dd016cec639622ab03 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Account.cls @@ -0,0 +1,196 @@ +// This file is generated as an Apex representation of the +// corresponding sObject and its fields. +// This read-only file is used by the Apex Language Server to +// provide code smartness, and is deleted each time you +// refresh your sObject definitions. +// To edit your sObjects and their fields, edit the corresponding +// .object-meta.xml and .field-meta.xml files. + +global class Account { + global Id Id; + global Boolean IsDeleted; + global Account MasterRecord; + global Id MasterRecordId; + global String Name; + global String Type; + global Account Parent; + global Id ParentId; + global String BillingStreet; + global String BillingCity; + global String BillingState; + global String BillingPostalCode; + global String BillingCountry; + global Double BillingLatitude; + global Double BillingLongitude; + global String BillingGeocodeAccuracy; + global Address BillingAddress; + global String ShippingStreet; + global String ShippingCity; + global String ShippingState; + global String ShippingPostalCode; + global String ShippingCountry; + global Double ShippingLatitude; + global Double ShippingLongitude; + global String ShippingGeocodeAccuracy; + global Address ShippingAddress; + global String Phone; + global String Fax; + global String AccountNumber; + global String Website; + global String PhotoUrl; + global String Sic; + global String Industry; + global Decimal AnnualRevenue; + global Integer NumberOfEmployees; + global String Ownership; + global String TickerSymbol; + global String Description; + global String Rating; + global String Site; + global User Owner; + global Id OwnerId; + global Datetime CreatedDate; + global User CreatedBy; + global Id CreatedById; + global Datetime LastModifiedDate; + global User LastModifiedBy; + global Id LastModifiedById; + global Datetime SystemModstamp; + global Date LastActivityDate; + global Datetime LastViewedDate; + global Datetime LastReferencedDate; + global String Jigsaw; + global String JigsawCompanyId; + global String CleanStatus; + global String AccountSource; + global String DunsNumber; + global String Tradestyle; + global String NaicsCode; + global String NaicsDesc; + global String YearStarted; + global String SicDesc; + global DandBCompany DandbCompany; + global Id DandbCompanyId; + global OperatingHours OperatingHours; + global Id OperatingHoursId; + global List ChildAccounts; + global List AccountCleanInfos; + global List AccountContactRoles; + global List Feeds; + global List Histories; + global List AccountPartnersFrom; + global List AccountPartnersTo; + global List Shares; + global List ActivityHistories; + global List AlternativePaymentMethods; + global List Assets; + global List ProvidedAssets; + global List ServicedAssets; + global List AssociatedLocations; + global List AttachedContentDocuments; + global List Attachments; + global List AuthorizationFormConsents; + global List RelatedAuthorizationFormConsents; + global List CardPaymentMethods; + global List Cases; + global List RecordAssociatedGroups; + global List CombinedAttachments; + global List CommSubscriptionConsents; + global List Contacts; + global List ContactPointAddresses; + global List ContactPointEmails; + global List ContactPointPhones; + global List ContactRequests; + global List ContentDocumentLinks; + global List Contracts; + global List CreditMemos; + global List DigitalWallets; + global List DuplicateRecordItems; + global List Emails; + global List Entitlements; + global List FeedSubscriptionsForEntity; + global List Events; + global List Expenses; + global List FinanceBalanceSnapshots; + global List FinanceTransactions; + global List Invoices; + global List MaintenancePlans; + global List MessagingEndUsers; + global List MessagingSessions; + global List Notes; + global List NotesAndAttachments; + global List OpenActivities; + global List Opportunities; + global List OpportunityPartnersTo; + global List Orders; + global List PartnersFrom; + global List PartnersTo; + global List Payments; + global List PaymentAuthAdjustments; + global List PaymentAuthorizations; + global List PaymentLinesInvoice; + global List ProcessInstances; + global List ProcessSteps; + global List ProductRequests; + global List ProductRequestLineItems; + global List RecordActions; + global List RecordActionHistories; + global List Refunds; + global List RefundLinePayments; + global List ResourcePreferences; + global List ReturnOrders; + global List ScorecardAssociations; + global List ServiceAppointmentAccount; + global List ServiceAppointments; + global List ServiceContracts; + global List ServiceResources; + global List Swarms; + global List SwarmMembers; + global List Tasks; + global List TopicAssignments; + global List Users; + global List WorkOrders; + global List WorkPlanSelectionRules; + global List SobjectLookupValue; + global List Target; + global List Parent; + global List Account; + global List AssetProvidedBy; + global List AssetServicedBy; + global List ConsentGiver; + global List RelatedRecord; + global List LeadOrContact; + global List Account; + global List ConsentGiver; + global List Account; + global List Parent; + global List RelatedRecord; + global List LinkedEntity; + global List FirstPublishLocation; + global List Account; + global List RelatedTo; + global List Account; + global List What; + global List Relation; + global List Account; + global List Parent; + global List Account; + global List ContextRecord; + global List RelatedRecord; + global List ConvertedAccount; + global List Account; + global List RelatedTo; + global List Account; + global List RelatedRecord; + global List Account; + global List ParentRecord; + global List Account; + global List What; + global List Account; + global List PortalAccount; + global List Account; + + global Account () + { + } +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/AccountHistory.cls b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/AccountHistory.cls new file mode 100644 index 0000000000000000000000000000000000000000..c5539edfd4c0e24d9c612ab7f070557fbeb12e2a --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/AccountHistory.cls @@ -0,0 +1,25 @@ +// This file is generated as an Apex representation of the +// corresponding sObject and its fields. +// This read-only file is used by the Apex Language Server to +// provide code smartness, and is deleted each time you +// refresh your sObject definitions. +// To edit your sObjects and their fields, edit the corresponding +// .object-meta.xml and .field-meta.xml files. + +global class AccountHistory { + global Id Id; + global Boolean IsDeleted; + global Account Account; + global Id AccountId; + global User CreatedBy; + global Id CreatedById; + global Datetime CreatedDate; + global String Field; + global String DataType; + global Object OldValue; + global Object NewValue; + + global AccountHistory () + { + } +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Asset.cls b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Asset.cls new file mode 100644 index 0000000000000000000000000000000000000000..4942adc390141f6983ff44cff3fd6a28ba43345c --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Asset.cls @@ -0,0 +1,138 @@ +// This file is generated as an Apex representation of the +// corresponding sObject and its fields. +// This read-only file is used by the Apex Language Server to +// provide code smartness, and is deleted each time you +// refresh your sObject definitions. +// To edit your sObjects and their fields, edit the corresponding +// .object-meta.xml and .field-meta.xml files. + +global class Asset { + global Id Id; + global Contact Contact; + global Id ContactId; + global Account Account; + global Id AccountId; + global Asset Parent; + global Id ParentId; + global Asset RootAsset; + global Id RootAssetId; + global Product2 Product2; + global Id Product2Id; + global String ProductCode; + global Boolean IsCompetitorProduct; + global Datetime CreatedDate; + global User CreatedBy; + global Id CreatedById; + global Datetime LastModifiedDate; + global User LastModifiedBy; + global Id LastModifiedById; + global Datetime SystemModstamp; + global Boolean IsDeleted; + global String Name; + global String SerialNumber; + global Date InstallDate; + global Date PurchaseDate; + global Date UsageEndDate; + global Datetime LifecycleStartDate; + global Datetime LifecycleEndDate; + global String Status; + global Decimal Price; + global Double Quantity; + global String Description; + global User Owner; + global Id OwnerId; + global Location Location; + global Id LocationId; + global Account AssetProvidedBy; + global Id AssetProvidedById; + global Account AssetServicedBy; + global Id AssetServicedById; + global Boolean IsInternal; + global Integer AssetLevel; + global String StockKeepingUnit; + global Boolean HasLifecycleManagement; + global Decimal CurrentMrr; + global Datetime CurrentLifecycleEndDate; + global Double CurrentQuantity; + global Decimal CurrentAmount; + global Decimal TotalLifecycleAmount; + global String Street; + global String City; + global String State; + global String PostalCode; + global String Country; + global Double Latitude; + global Double Longitude; + global String GeocodeAccuracy; + global Address Address; + global Datetime LastViewedDate; + global Datetime LastReferencedDate; + global List ActivityHistories; + global List ChildAssets; + global List AssetActions; + global List AssetAttributes; + global List AssetDowntimePeriods; + global List Feeds; + global List Histories; + global List PrimaryAssets; + global List RelatedAssets; + global List Shares; + global List AssetStatePeriods; + global List WarrantyAssets; + global List AttachedContentDocuments; + global List Attachments; + global List Cases; + global List CombinedAttachments; + global List ContentDocumentLinks; + global List ContractLineItems; + global List Emails; + global List Entitlements; + global List FeedSubscriptionsForEntity; + global List Events; + global List MaintenanceAssets; + global List Notes; + global List NotesAndAttachments; + global List OpenActivities; + global List ProcessInstances; + global List ProcessSteps; + global List ProductServiceCampaignItems; + global List RecordActions; + global List RecordActionHistories; + global List RecordsetFltrCritMonitors; + global List ResourcePreferences; + global List ReturnOrderLineItems; + global List SerializedProducts; + global List ServiceAppointments; + global List Tasks; + global List TopicAssignments; + global List WorkOrders; + global List WorkOrderLineItems; + global List WorkPlanSelectionRules; + global List SobjectLookupValue; + global List Target; + global List RootAsset; + global List Asset; + global List Parent; + global List RootAsset; + global List Asset; + global List LinkedEntity; + global List FirstPublishLocation; + global List Asset; + global List RelatedTo; + global List Asset; + global List What; + global List Relation; + global List Parent; + global List ContextRecord; + global List RelatedRecord; + global List Asset; + global List RelatedTo; + global List Asset; + global List ParentRecord; + global List What; + global List Asset; + + global Asset () + { + } +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Attachment.cls b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Attachment.cls new file mode 100644 index 0000000000000000000000000000000000000000..5d1468a7b314e7b3c82bb9db5e3947da81badba8 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Attachment.cls @@ -0,0 +1,35 @@ +// This file is generated as an Apex representation of the +// corresponding sObject and its fields. +// This read-only file is used by the Apex Language Server to +// provide code smartness, and is deleted each time you +// refresh your sObject definitions. +// To edit your sObjects and their fields, edit the corresponding +// .object-meta.xml and .field-meta.xml files. + +global class Attachment { + global Id Id; + global Boolean IsDeleted; + global SObject Parent; + global Id ParentId; + global String Name; + global Boolean IsPrivate; + global String ContentType; + global Integer BodyLength; + global Blob Body; + global SObject Owner; + global Id OwnerId; + global Datetime CreatedDate; + global User CreatedBy; + global Id CreatedById; + global Datetime LastModifiedDate; + global User LastModifiedBy; + global Id LastModifiedById; + global Datetime SystemModstamp; + global String Description; + global List ContextRecord; + global List RelatedRecord; + + global Attachment () + { + } +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Case.cls b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Case.cls new file mode 100644 index 0000000000000000000000000000000000000000..c24c8b966305336874ab7b480d8eba46f9d44366 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Case.cls @@ -0,0 +1,111 @@ +// This file is generated as an Apex representation of the +// corresponding sObject and its fields. +// This read-only file is used by the Apex Language Server to +// provide code smartness, and is deleted each time you +// refresh your sObject definitions. +// To edit your sObjects and their fields, edit the corresponding +// .object-meta.xml and .field-meta.xml files. + +global class Case { + global Id Id; + global Boolean IsDeleted; + global Case MasterRecord; + global Id MasterRecordId; + global String CaseNumber; + global Contact Contact; + global Id ContactId; + global Account Account; + global Id AccountId; + global Asset Asset; + global Id AssetId; + global Case Parent; + global Id ParentId; + global String SuppliedName; + global String SuppliedEmail; + global String SuppliedPhone; + global String SuppliedCompany; + global String Type; + global String Status; + global String Reason; + global String Origin; + global String Subject; + global String Priority; + global String Description; + global Boolean IsClosed; + global Datetime ClosedDate; + global Boolean IsEscalated; + global SObject Owner; + global Id OwnerId; + global Datetime CreatedDate; + global User CreatedBy; + global Id CreatedById; + global Datetime LastModifiedDate; + global User LastModifiedBy; + global Id LastModifiedById; + global Datetime SystemModstamp; + global String ContactPhone; + global String ContactMobile; + global String ContactEmail; + global String ContactFax; + global String Comments; + global Datetime LastViewedDate; + global Datetime LastReferencedDate; + global List ActivityHistories; + global List AttachedContentDocuments; + global List Attachments; + global List Cases; + global List CaseComments; + global List CaseContactRoles; + global List Feeds; + global List Histories; + global List CaseMilestones; + global List Shares; + global List CaseSolutions; + global List TeamMembers; + global List TeamTemplateRecords; + global List RecordAssociatedGroups; + global List CombinedAttachments; + global List ContactRequests; + global List ContentDocumentLinks; + global List EmailMessages; + global List Emails; + global List FeedSubscriptionsForEntity; + global List Events; + global List MessagingSessions; + global List OpenActivities; + global List ProcessExceptions; + global List ProcessInstances; + global List ProcessSteps; + global List ProductRequests; + global List ProductRequestLineItems; + global List RecordActions; + global List RecordActionHistories; + global List ReturnOrders; + global List ServiceAppointments; + global List Swarms; + global List SwarmMembers; + global List Tasks; + global List TopicAssignments; + global List WorkOrders; + global List SobjectLookupValue; + global List Target; + global List Parent; + global List RelatedRecord; + global List LinkedEntity; + global List FirstPublishLocation; + global List Parent; + global List RelatedTo; + global List What; + global List Relation; + global List Parent; + global List ContextRecord; + global List RelatedRecord; + global List Case; + global List ParentRecord; + global List What; + global List Case; + + global Case () + { + } +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Contact.cls b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Contact.cls new file mode 100644 index 0000000000000000000000000000000000000000..5d8964fb61fda6d413f28bd5ead3f30d9ea86850 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Contact.cls @@ -0,0 +1,167 @@ +// This file is generated as an Apex representation of the +// corresponding sObject and its fields. +// This read-only file is used by the Apex Language Server to +// provide code smartness, and is deleted each time you +// refresh your sObject definitions. +// To edit your sObjects and their fields, edit the corresponding +// .object-meta.xml and .field-meta.xml files. + +global class Contact { + global Id Id; + global Boolean IsDeleted; + global Contact MasterRecord; + global Id MasterRecordId; + global Account Account; + global Id AccountId; + global String LastName; + global String FirstName; + global String Salutation; + global String Name; + global String OtherStreet; + global String OtherCity; + global String OtherState; + global String OtherPostalCode; + global String OtherCountry; + global Double OtherLatitude; + global Double OtherLongitude; + global String OtherGeocodeAccuracy; + global Address OtherAddress; + global String MailingStreet; + global String MailingCity; + global String MailingState; + global String MailingPostalCode; + global String MailingCountry; + global Double MailingLatitude; + global Double MailingLongitude; + global String MailingGeocodeAccuracy; + global Address MailingAddress; + global String Phone; + global String Fax; + global String MobilePhone; + global String HomePhone; + global String OtherPhone; + global String AssistantPhone; + global Contact ReportsTo; + global Id ReportsToId; + global String Email; + global String Title; + global String Department; + global String AssistantName; + global String LeadSource; + global Date Birthdate; + global String Description; + global User Owner; + global Id OwnerId; + global Datetime CreatedDate; + global User CreatedBy; + global Id CreatedById; + global Datetime LastModifiedDate; + global User LastModifiedBy; + global Id LastModifiedById; + global Datetime SystemModstamp; + global Date LastActivityDate; + global Datetime LastCURequestDate; + global Datetime LastCUUpdateDate; + global Datetime LastViewedDate; + global Datetime LastReferencedDate; + global String EmailBouncedReason; + global Datetime EmailBouncedDate; + global Boolean IsEmailBounced; + global String PhotoUrl; + global String Jigsaw; + global String JigsawContactId; + global String CleanStatus; + global Individual Individual; + global Id IndividualId; + global List AcceptedEventRelations; + global List AccountContactRoles; + global List ActivityHistories; + global List Assets; + global List AttachedContentDocuments; + global List Attachments; + global List AuthorizationFormConsents; + global List CampaignMembers; + global List Cases; + global List CaseContactRoles; + global List RecordAssociatedGroups; + global List CombinedAttachments; + global List CommSubscriptionConsents; + global List ContactCleanInfos; + global List Feeds; + global List Histories; + global List ContactRequests; + global List Shares; + global List ContentDocumentLinks; + global List ContractsSigned; + global List ContractContactRoles; + global List ConversationParticipants; + global List CreditMemos; + global List DeclinedEventRelations; + global List DuplicateRecordItems; + global List EmailMessageRelations; + global List EmailStatuses; + global List EntitlementContacts; + global List FeedSubscriptionsForEntity; + global List Events; + global List EventRelations; + global List Invoices; + global List ListEmailIndividualRecipients; + global List MaintenancePlans; + global List MessagingEndUsers; + global List MessagingSessions; + global List Notes; + global List NotesAndAttachments; + global List OpenActivities; + global List Opportunities; + global List OpportunityContactRoles; + global List OutgoingEmailRelations; + global List ProcessInstances; + global List ProcessSteps; + global List RecordActions; + global List RecordActionHistories; + global List ReturnOrders; + global List ServiceAppointments; + global List ServiceContracts; + global List Tasks; + global List TopicAssignments; + global List UndecidedEventRelations; + global List Users; + global List PersonRecord; + global List WorkOrders; + global List SobjectLookupValue; + global List Target; + global List Contact; + global List ConsentGiver; + global List LeadOrContact; + global List Contact; + global List Member; + global List ConsentGiver; + global List ReportsTo; + global List RelatedRecord; + global List LinkedEntity; + global List FirstPublishLocation; + global List CustomerSigned; + global List Who; + global List Relation; + global List Parent; + global List ContextRecord; + global List RelatedRecord; + global List ConvertedContact; + global List Contact; + global List SFDCId; + global List Contact; + global List BillToContact; + global List CustomerAuthorizedBy; + global List ShipToContact; + global List BillToContact; + global List CustomerAuthorizedBy; + global List ShipToContact; + global List Who; + global List Contact; + global List Who; + global List Contact; + + global Contact () + { + } +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Contract.cls b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Contract.cls new file mode 100644 index 0000000000000000000000000000000000000000..b1cab24147dea637cd5527ab305945ba7e4666e8 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Contract.cls @@ -0,0 +1,96 @@ +// This file is generated as an Apex representation of the +// corresponding sObject and its fields. +// This read-only file is used by the Apex Language Server to +// provide code smartness, and is deleted each time you +// refresh your sObject definitions. +// To edit your sObjects and their fields, edit the corresponding +// .object-meta.xml and .field-meta.xml files. + +global class Contract { + global Id Id; + global Account Account; + global Id AccountId; + global Pricebook2 Pricebook2; + global Id Pricebook2Id; + global String OwnerExpirationNotice; + global Date StartDate; + global Date EndDate; + global String BillingStreet; + global String BillingCity; + global String BillingState; + global String BillingPostalCode; + global String BillingCountry; + global Double BillingLatitude; + global Double BillingLongitude; + global String BillingGeocodeAccuracy; + global Address BillingAddress; + global Integer ContractTerm; + global User Owner; + global Id OwnerId; + global String Status; + global User CompanySigned; + global Id CompanySignedId; + global Date CompanySignedDate; + global Contact CustomerSigned; + global Id CustomerSignedId; + global String CustomerSignedTitle; + global Date CustomerSignedDate; + global String SpecialTerms; + global User ActivatedBy; + global Id ActivatedById; + global Datetime ActivatedDate; + global String StatusCode; + global String Description; + global Boolean IsDeleted; + global String ContractNumber; + global Datetime LastApprovedDate; + global Datetime CreatedDate; + global User CreatedBy; + global Id CreatedById; + global Datetime LastModifiedDate; + global User LastModifiedBy; + global Id LastModifiedById; + global Datetime SystemModstamp; + global Date LastActivityDate; + global Datetime LastViewedDate; + global Datetime LastReferencedDate; + global List ActivityHistories; + global List AttachedContentDocuments; + global List Attachments; + global List RecordAssociatedGroups; + global List CombinedAttachments; + global List ContentDocumentLinks; + global List ContractContactRoles; + global List Feeds; + global List Histories; + global List Emails; + global List FeedSubscriptionsForEntity; + global List Events; + global List Notes; + global List NotesAndAttachments; + global List OpenActivities; + global List Orders; + global List ProcessInstances; + global List ProcessSteps; + global List RecordActions; + global List RecordActionHistories; + global List Tasks; + global List TopicAssignments; + global List SobjectLookupValue; + global List Target; + global List LinkedEntity; + global List FirstPublishLocation; + global List RelatedTo; + global List What; + global List Relation; + global List Parent; + global List ContextRecord; + global List RelatedRecord; + global List Contract; + global List RelatedTo; + global List What; + + global Contract () + { + } +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Domain.cls b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Domain.cls new file mode 100644 index 0000000000000000000000000000000000000000..db068f7667e9c5ad7549cdcb7063a91a82f28953 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Domain.cls @@ -0,0 +1,29 @@ +// This file is generated as an Apex representation of the +// corresponding sObject and its fields. +// This read-only file is used by the Apex Language Server to +// provide code smartness, and is deleted each time you +// refresh your sObject definitions. +// To edit your sObjects and their fields, edit the corresponding +// .object-meta.xml and .field-meta.xml files. + +global class Domain { + global Id Id; + global String DomainType; + global String Domain; + global Boolean OptionsHstsPreload; + global String CnameTarget; + global String HttpsOption; + global Datetime CreatedDate; + global User CreatedBy; + global Id CreatedById; + global Datetime LastModifiedDate; + global User LastModifiedBy; + global Id LastModifiedById; + global Datetime SystemModstamp; + global List DomainSites; + global List Domain; + + global Domain () + { + } +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Lead.cls b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Lead.cls new file mode 100644 index 0000000000000000000000000000000000000000..212e2939dbec5314eef47d8f8fb4b8bce3858993 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Lead.cls @@ -0,0 +1,128 @@ +// This file is generated as an Apex representation of the +// corresponding sObject and its fields. +// This read-only file is used by the Apex Language Server to +// provide code smartness, and is deleted each time you +// refresh your sObject definitions. +// To edit your sObjects and their fields, edit the corresponding +// .object-meta.xml and .field-meta.xml files. + +global class Lead { + global Id Id; + global Boolean IsDeleted; + global Lead MasterRecord; + global Id MasterRecordId; + global String LastName; + global String FirstName; + global String Salutation; + global String Name; + global String Title; + global String Company; + global String Street; + global String City; + global String State; + global String PostalCode; + global String Country; + global Double Latitude; + global Double Longitude; + global String GeocodeAccuracy; + global Address Address; + global String Phone; + global String MobilePhone; + global String Fax; + global String Email; + global String Website; + global String PhotoUrl; + global String Description; + global String LeadSource; + global String Status; + global String Industry; + global String Rating; + global Decimal AnnualRevenue; + global Integer NumberOfEmployees; + global SObject Owner; + global Id OwnerId; + global Boolean IsConverted; + global Date ConvertedDate; + global Account ConvertedAccount; + global Id ConvertedAccountId; + global Contact ConvertedContact; + global Id ConvertedContactId; + global Opportunity ConvertedOpportunity; + global Id ConvertedOpportunityId; + global Boolean IsUnreadByOwner; + global Datetime CreatedDate; + global User CreatedBy; + global Id CreatedById; + global Datetime LastModifiedDate; + global User LastModifiedBy; + global Id LastModifiedById; + global Datetime SystemModstamp; + global Date LastActivityDate; + global Datetime LastViewedDate; + global Datetime LastReferencedDate; + global String Jigsaw; + global String JigsawContactId; + global String CleanStatus; + global String CompanyDunsNumber; + global DandBCompany DandbCompany; + global Id DandbCompanyId; + global String EmailBouncedReason; + global Datetime EmailBouncedDate; + global Individual Individual; + global Id IndividualId; + global List AcceptedEventRelations; + global List ActivityHistories; + global List AttachedContentDocuments; + global List Attachments; + global List CampaignMembers; + global List RecordAssociatedGroups; + global List CombinedAttachments; + global List ContactRequests; + global List ContentDocumentLinks; + global List DeclinedEventRelations; + global List DuplicateRecordItems; + global List EmailMessageRelations; + global List EmailStatuses; + global List FeedSubscriptionsForEntity; + global List Events; + global List EventRelations; + global List LeadCleanInfos; + global List Feeds; + global List Histories; + global List Shares; + global List ListEmailIndividualRecipients; + global List MessagingEndUsers; + global List MessagingSessions; + global List Notes; + global List NotesAndAttachments; + global List OpenActivities; + global List OutgoingEmailRelations; + global List ProcessInstances; + global List ProcessSteps; + global List RecordActions; + global List RecordActionHistories; + global List ServiceAppointments; + global List Tasks; + global List TopicAssignments; + global List UndecidedEventRelations; + global List PersonRecord; + global List SobjectLookupValue; + global List Target; + global List LeadOrContact; + global List Lead; + global List RelatedRecord; + global List LinkedEntity; + global List FirstPublishLocation; + global List Who; + global List Relation; + global List Parent; + global List ContextRecord; + global List RelatedRecord; + global List Who; + global List ParentRecord; + global List Who; + + global Lead () + { + } +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Note.cls b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Note.cls new file mode 100644 index 0000000000000000000000000000000000000000..6a9ebda5c83f6f00656a507cd3c8869d0dd63118 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Note.cls @@ -0,0 +1,32 @@ +// This file is generated as an Apex representation of the +// corresponding sObject and its fields. +// This read-only file is used by the Apex Language Server to +// provide code smartness, and is deleted each time you +// refresh your sObject definitions. +// To edit your sObjects and their fields, edit the corresponding +// .object-meta.xml and .field-meta.xml files. + +global class Note { + global Id Id; + global Boolean IsDeleted; + global SObject Parent; + global Id ParentId; + global String Title; + global Boolean IsPrivate; + global String Body; + global User Owner; + global Id OwnerId; + global Datetime CreatedDate; + global User CreatedBy; + global Id CreatedById; + global Datetime LastModifiedDate; + global User LastModifiedBy; + global Id LastModifiedById; + global Datetime SystemModstamp; + global List ContextRecord; + global List RelatedRecord; + + global Note () + { + } +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Opportunity.cls b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Opportunity.cls new file mode 100644 index 0000000000000000000000000000000000000000..648e34e2a4d731e6edd9d2dce1e01ae1d9572398 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Opportunity.cls @@ -0,0 +1,113 @@ +// This file is generated as an Apex representation of the +// corresponding sObject and its fields. +// This read-only file is used by the Apex Language Server to +// provide code smartness, and is deleted each time you +// refresh your sObject definitions. +// To edit your sObjects and their fields, edit the corresponding +// .object-meta.xml and .field-meta.xml files. + +global class Opportunity { + global Id Id; + global Boolean IsDeleted; + global Account Account; + global Id AccountId; + global Boolean IsPrivate; + global String Name; + global String Description; + global String StageName; + global Decimal Amount; + global Double Probability; + global Decimal ExpectedRevenue; + global Double TotalOpportunityQuantity; + global Date CloseDate; + global String Type; + global String NextStep; + global String LeadSource; + global Boolean IsClosed; + global Boolean IsWon; + global String ForecastCategory; + global String ForecastCategoryName; + global Campaign Campaign; + global Id CampaignId; + global Boolean HasOpportunityLineItem; + global Pricebook2 Pricebook2; + global Id Pricebook2Id; + global User Owner; + global Id OwnerId; + global Datetime CreatedDate; + global User CreatedBy; + global Id CreatedById; + global Datetime LastModifiedDate; + global User LastModifiedBy; + global Id LastModifiedById; + global Datetime SystemModstamp; + global Date LastActivityDate; + global Integer PushCount; + global Datetime LastStageChangeDate; + global Integer FiscalQuarter; + global Integer FiscalYear; + global String Fiscal; + global Contact Contact; + global Id ContactId; + global Datetime LastViewedDate; + global Datetime LastReferencedDate; + global Boolean HasOpenActivity; + global Boolean HasOverdueTask; + global OpportunityHistory LastAmountChangedHistory; + global Id LastAmountChangedHistoryId; + global OpportunityHistory LastCloseDateChangedHistory; + global Id LastCloseDateChangedHistoryId; + global List AccountPartners; + global List ActivityHistories; + global List AttachedContentDocuments; + global List Attachments; + global List RecordAssociatedGroups; + global List CombinedAttachments; + global List ContactRequests; + global List ContentDocumentLinks; + global List Emails; + global List FeedSubscriptionsForEntity; + global List Events; + global List MessagingSessions; + global List Notes; + global List NotesAndAttachments; + global List OpenActivities; + global List OpportunityCompetitors; + global List OpportunityContactRoles; + global List Feeds; + global List Histories; + global List OpportunityHistories; + global List OpportunityLineItems; + global List OpportunityPartnersFrom; + global List Shares; + global List Partners; + global List ProcessInstances; + global List ProcessSteps; + global List RecordActions; + global List RecordActionHistories; + global List ServiceAppointments; + global List Swarms; + global List SwarmMembers; + global List Tasks; + global List TopicAssignments; + global List SobjectLookupValue; + global List Target; + global List RelatedRecord; + global List LinkedEntity; + global List FirstPublishLocation; + global List RelatedTo; + global List What; + global List Relation; + global List Parent; + global List ContextRecord; + global List RelatedRecord; + global List ConvertedOpportunity; + global List Opportunity; + global List RelatedTo; + global List ParentRecord; + global List What; + + global Opportunity () + { + } +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Order.cls b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Order.cls new file mode 100644 index 0000000000000000000000000000000000000000..2597afa31fdbe41e40b036c2389a7c0835744b36 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Order.cls @@ -0,0 +1,127 @@ +// This file is generated as an Apex representation of the +// corresponding sObject and its fields. +// This read-only file is used by the Apex Language Server to +// provide code smartness, and is deleted each time you +// refresh your sObject definitions. +// To edit your sObjects and their fields, edit the corresponding +// .object-meta.xml and .field-meta.xml files. + +global class Order { + global Id Id; + global SObject Owner; + global Id OwnerId; + global Contract Contract; + global Id ContractId; + global Account Account; + global Id AccountId; + global Pricebook2 Pricebook2; + global Id Pricebook2Id; + global Order OriginalOrder; + global Id OriginalOrderId; + global Date EffectiveDate; + global Date EndDate; + global Boolean IsReductionOrder; + global String Status; + global String Description; + global Contact CustomerAuthorizedBy; + global Id CustomerAuthorizedById; + global Date CustomerAuthorizedDate; + global User CompanyAuthorizedBy; + global Id CompanyAuthorizedById; + global Date CompanyAuthorizedDate; + global String Type; + global String BillingStreet; + global String BillingCity; + global String BillingState; + global String BillingPostalCode; + global String BillingCountry; + global Double BillingLatitude; + global Double BillingLongitude; + global String BillingGeocodeAccuracy; + global Address BillingAddress; + global String ShippingStreet; + global String ShippingCity; + global String ShippingState; + global String ShippingPostalCode; + global String ShippingCountry; + global Double ShippingLatitude; + global Double ShippingLongitude; + global String ShippingGeocodeAccuracy; + global Address ShippingAddress; + global String Name; + global Date PoDate; + global String PoNumber; + global String OrderReferenceNumber; + global Contact BillToContact; + global Id BillToContactId; + global Contact ShipToContact; + global Id ShipToContactId; + global Datetime ActivatedDate; + global User ActivatedBy; + global Id ActivatedById; + global String StatusCode; + global String OrderNumber; + global Decimal TotalAmount; + global Datetime CreatedDate; + global User CreatedBy; + global Id CreatedById; + global Datetime LastModifiedDate; + global User LastModifiedBy; + global Id LastModifiedById; + global Boolean IsDeleted; + global Datetime SystemModstamp; + global Datetime LastViewedDate; + global Datetime LastReferencedDate; + global List ActivityHistories; + global List AppUsageAssignments; + global List AttachedContentDocuments; + global List Attachments; + global List CombinedAttachments; + global List ContentDocumentLinks; + global List CreditMemos; + global List DigitalSignatures; + global List Emails; + global List FeedSubscriptionsForEntity; + global List Events; + global List Invoices; + global List Notes; + global List NotesAndAttachments; + global List OpenActivities; + global List Orders; + global List Feeds; + global List Histories; + global List OrderItems; + global List Shares; + global List PaymentGroups; + global List ProcessExceptions; + global List ProcessInstances; + global List ProcessSteps; + global List RecordActions; + global List RecordActionHistories; + global List ReturnOrders; + global List Tasks; + global List TopicAssignments; + global List WorkOrderLineItems; + global List SobjectLookupValue; + global List Target; + global List LinkedEntity; + global List FirstPublishLocation; + global List Parent; + global List RelatedTo; + global List What; + global List Relation; + global List Parent; + global List ContextRecord; + global List RelatedRecord; + global List OriginalOrder; + global List Order; + global List RelatedTo; + global List AttachedTo; + global List Order; + global List What; + global List Order; + + global Order () + { + } +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Pricebook2.cls b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Pricebook2.cls new file mode 100644 index 0000000000000000000000000000000000000000..cf21cec8bc61bc8eded8c3fdb73c3e30a6c115b0 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Pricebook2.cls @@ -0,0 +1,47 @@ +// This file is generated as an Apex representation of the +// corresponding sObject and its fields. +// This read-only file is used by the Apex Language Server to +// provide code smartness, and is deleted each time you +// refresh your sObject definitions. +// To edit your sObjects and their fields, edit the corresponding +// .object-meta.xml and .field-meta.xml files. + +global class Pricebook2 { + global Id Id; + global Boolean IsDeleted; + global String Name; + global Datetime CreatedDate; + global User CreatedBy; + global Id CreatedById; + global Datetime LastModifiedDate; + global User LastModifiedBy; + global Id LastModifiedById; + global Datetime SystemModstamp; + global Datetime LastViewedDate; + global Datetime LastReferencedDate; + global Boolean IsActive; + global Boolean IsArchived; + global String Description; + global Boolean IsStandard; + global List AssetWarrantyPricebooks; + global List Contracts; + global List Opportunities; + global List Orders; + global List Histories; + global List PricebookEntries; + global List RecordActions; + global List RecordActionHistories; + global List ServiceContracts; + global List Pricebook2; + global List WorkOrders; + global List SobjectLookupValue; + global List Target; + global List Pricebook2; + global List ContextRecord; + global List RelatedRecord; + global List Pricebook2; + + global Pricebook2 () + { + } +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/PricebookEntry.cls b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/PricebookEntry.cls new file mode 100644 index 0000000000000000000000000000000000000000..d4217bff87394cf515e46209fc8715681633aab1 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/PricebookEntry.cls @@ -0,0 +1,47 @@ +// This file is generated as an Apex representation of the +// corresponding sObject and its fields. +// This read-only file is used by the Apex Language Server to +// provide code smartness, and is deleted each time you +// refresh your sObject definitions. +// To edit your sObjects and their fields, edit the corresponding +// .object-meta.xml and .field-meta.xml files. + +global class PricebookEntry { + global Id Id; + global String Name; + global Pricebook2 Pricebook2; + global Id Pricebook2Id; + global Product2 Product2; + global Id Product2Id; + global Decimal UnitPrice; + global Boolean IsActive; + global Boolean UseStandardPrice; + global Datetime CreatedDate; + global User CreatedBy; + global Id CreatedById; + global Datetime LastModifiedDate; + global User LastModifiedBy; + global Id LastModifiedById; + global Datetime SystemModstamp; + global String ProductCode; + global Boolean IsDeleted; + global Boolean IsArchived; + global List ContractLineItems; + global List OpportunityLineItems; + global List OrderItems; + global List Histories; + global List ProductsConsumed; + global List RecordActions; + global List RecordActionHistories; + global List WorkOrderLineItems; + global List SobjectLookupValue; + global List Target; + global List PricebookEntry; + global List ContextRecord; + global List RelatedRecord; + global List PricebookEntry; + + global PricebookEntry () + { + } +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Product2.cls b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Product2.cls new file mode 100644 index 0000000000000000000000000000000000000000..8cd474343a7019a45df404224099d1ea3cf8e8e1 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Product2.cls @@ -0,0 +1,91 @@ +// This file is generated as an Apex representation of the +// corresponding sObject and its fields. +// This read-only file is used by the Apex Language Server to +// provide code smartness, and is deleted each time you +// refresh your sObject definitions. +// To edit your sObjects and their fields, edit the corresponding +// .object-meta.xml and .field-meta.xml files. + +global class Product2 { + global Id Id; + global String Name; + global String ProductCode; + global String Description; + global Boolean IsActive; + global Datetime CreatedDate; + global User CreatedBy; + global Id CreatedById; + global Datetime LastModifiedDate; + global User LastModifiedBy; + global Id LastModifiedById; + global Datetime SystemModstamp; + global String Family; + global Boolean IsSerialized; + global ExternalDataSource ExternalDataSource; + global Id ExternalDataSourceId; + global String ExternalId; + global String DisplayUrl; + global String QuantityUnitOfMeasure; + global Boolean IsDeleted; + global Boolean IsArchived; + global Datetime LastViewedDate; + global Datetime LastReferencedDate; + global String StockKeepingUnit; + global List ActivityHistories; + global List Assets; + global List AttachedContentDocuments; + global List Attachments; + global List CombinedAttachments; + global List ContentDocumentLinks; + global List ContractLineItems; + global List CreditMemoLines; + global List Emails; + global List FeedSubscriptionsForEntity; + global List Events; + global List InvoiceLines; + global List Notes; + global List NotesAndAttachments; + global List OpenActivities; + global List PricebookEntries; + global List ProcessInstances; + global List ProcessSteps; + global List Feeds; + global List Histories; + global List ProductsConsumed; + global List ProductConsumptionSchedules; + global List ProductItems; + global List ProductRequestLineItems; + global List ProductsRequired; + global List ProductServiceCampaignProducts; + global List ProductServiceCampaignItems; + global List ProductTransfers; + global List ProductWarrantyTermProducts; + global List RecordActions; + global List RecordActionHistories; + global List ReturnOrderLineItems; + global List SerializedProducts; + global List ShipmentItems; + global List Tasks; + global List WorkOrderLineItems; + global List WorkPlanSelectionRules; + global List SobjectLookupValue; + global List Target; + global List Product2; + global List LinkedEntity; + global List FirstPublishLocation; + global List RelatedTo; + global List What; + global List Relation; + global List Parent; + global List ContextRecord; + global List RelatedRecord; + global List Product2; + global List RelatedTo; + global List Product2; + global List What; + global List Product2; + + global Product2 () + { + } +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/RecordType.cls b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/RecordType.cls new file mode 100644 index 0000000000000000000000000000000000000000..a5003b7569e6ecb4bd5c83f0eafbb79aa3e30383 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/RecordType.cls @@ -0,0 +1,35 @@ +// This file is generated as an Apex representation of the +// corresponding sObject and its fields. +// This read-only file is used by the Apex Language Server to +// provide code smartness, and is deleted each time you +// refresh your sObject definitions. +// To edit your sObjects and their fields, edit the corresponding +// .object-meta.xml and .field-meta.xml files. + +global class RecordType { + global Id Id; + global String Name; + global String DeveloperName; + global String NamespacePrefix; + global String Description; + global BusinessProcess BusinessProcess; + global Id BusinessProcessId; + global String SobjectType; + global Boolean IsActive; + global User CreatedBy; + global Id CreatedById; + global Datetime CreatedDate; + global User LastModifiedBy; + global Id LastModifiedById; + global Datetime LastModifiedDate; + global Datetime SystemModstamp; + global List CampaignMemberRecordType; + global List DefaultRecordType; + global List RecordType; + global List TargetRecordType; + global List RecordType; + + global RecordType () + { + } +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Report.cls b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Report.cls new file mode 100644 index 0000000000000000000000000000000000000000..ddead3ee0adc5c73d7f2ebcede056db2224a2ee7 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Report.cls @@ -0,0 +1,47 @@ +// This file is generated as an Apex representation of the +// corresponding sObject and its fields. +// This read-only file is used by the Apex Language Server to +// provide code smartness, and is deleted each time you +// refresh your sObject definitions. +// To edit your sObjects and their fields, edit the corresponding +// .object-meta.xml and .field-meta.xml files. + +global class Report { + global Id Id; + global SObject Owner; + global Id OwnerId; + global String FolderName; + global Datetime CreatedDate; + global User CreatedBy; + global Id CreatedById; + global Datetime LastModifiedDate; + global User LastModifiedBy; + global Id LastModifiedById; + global Boolean IsDeleted; + global String Name; + global String Description; + global String DeveloperName; + global String NamespacePrefix; + global Datetime LastRunDate; + global Datetime SystemModstamp; + global String Format; + global Datetime LastViewedDate; + global Datetime LastReferencedDate; + global List AttachedContentDocuments; + global List CombinedAttachments; + global List ContentDocumentLinks; + global List FeedSubscriptionsForEntity; + global List Feeds; + global List ScorecardMetrics; + global List LinkedEntity; + global List FirstPublishLocation; + global List CustomReport; + global List Parent; + global List ContextRecord; + global List RelatedRecord; + global List Report; + + global Report () + { + } +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Task.cls b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Task.cls new file mode 100644 index 0000000000000000000000000000000000000000..99e30976d46566eed852510219dc0c27220f9a37 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/Task.cls @@ -0,0 +1,79 @@ +// This file is generated as an Apex representation of the +// corresponding sObject and its fields. +// This read-only file is used by the Apex Language Server to +// provide code smartness, and is deleted each time you +// refresh your sObject definitions. +// To edit your sObjects and their fields, edit the corresponding +// .object-meta.xml and .field-meta.xml files. + +global class Task { + global Id Id; + global SObject Who; + global Id WhoId; + global SObject What; + global Id WhatId; + global String Subject; + global Date ActivityDate; + global String Status; + global String Priority; + global Boolean IsHighPriority; + global SObject Owner; + global Id OwnerId; + global String Description; + global Boolean IsDeleted; + global Account Account; + global Id AccountId; + global Boolean IsClosed; + global Datetime CreatedDate; + global User CreatedBy; + global Id CreatedById; + global Datetime LastModifiedDate; + global User LastModifiedBy; + global Id LastModifiedById; + global Datetime SystemModstamp; + global Boolean IsArchived; + global Integer CallDurationInSeconds; + global String CallType; + global String CallDisposition; + global String CallObject; + global Datetime ReminderDateTime; + global Boolean IsReminderSet; + global Task RecurrenceActivity; + global Id RecurrenceActivityId; + global Boolean IsRecurrence; + global Date RecurrenceStartDateOnly; + global Date RecurrenceEndDateOnly; + global String RecurrenceTimeZoneSidKey; + global String RecurrenceType; + global Integer RecurrenceInterval; + global Integer RecurrenceDayOfWeekMask; + global Integer RecurrenceDayOfMonth; + global String RecurrenceInstance; + global String RecurrenceMonthOfYear; + global String RecurrenceRegeneratedType; + global String TaskSubtype; + global Datetime CompletedDateTime; + global List ActivityFieldHistories; + global List AttachedContentDocuments; + global List Attachments; + global List CombinedAttachments; + global List ContentDocumentLinks; + global List FeedSubscriptionsForEntity; + global List RecurringTasks; + global List Feeds; + global List TopicAssignments; + global List SobjectLookupValue; + global List Target; + global List LinkedEntity; + global List FirstPublishLocation; + global List Activity; + global List Task; + global List Parent; + global List ContextRecord; + global List RelatedRecord; + global List RecurrenceActivity; + + global Task () + { + } +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/User.cls b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/User.cls new file mode 100644 index 0000000000000000000000000000000000000000..2babf86dc758ab9939e13f767cf3777c072e3e5e --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/sobjects/standardObjects/User.cls @@ -0,0 +1,2318 @@ +// This file is generated as an Apex representation of the +// corresponding sObject and its fields. +// This read-only file is used by the Apex Language Server to +// provide code smartness, and is deleted each time you +// refresh your sObject definitions. +// To edit your sObjects and their fields, edit the corresponding +// .object-meta.xml and .field-meta.xml files. + +global class User { + global Id Id; + global String Username; + global String LastName; + global String FirstName; + global String Name; + global String CompanyName; + global String Division; + global String Department; + global String Title; + global String Street; + global String City; + global String State; + global String PostalCode; + global String Country; + global Double Latitude; + global Double Longitude; + global String GeocodeAccuracy; + global Address Address; + global String Email; + global Boolean EmailPreferencesAutoBcc; + global Boolean EmailPreferencesAutoBccStayInTouch; + global Boolean EmailPreferencesStayInTouchReminder; + global String SenderEmail; + global String SenderName; + global String Signature; + global String StayInTouchSubject; + global String StayInTouchSignature; + global String StayInTouchNote; + global String Phone; + global String Fax; + global String MobilePhone; + global String Alias; + global String CommunityNickname; + global String BadgeText; + global Boolean IsActive; + global String TimeZoneSidKey; + global UserRole UserRole; + global Id UserRoleId; + global String LocaleSidKey; + global Boolean ReceivesInfoEmails; + global Boolean ReceivesAdminInfoEmails; + global String EmailEncodingKey; + global Profile Profile; + global Id ProfileId; + global String UserType; + global String LanguageLocaleKey; + global String EmployeeNumber; + global SObject DelegatedApprover; + global Id DelegatedApproverId; + global User Manager; + global Id ManagerId; + global Datetime LastLoginDate; + global Datetime LastPasswordChangeDate; + global Datetime CreatedDate; + global User CreatedBy; + global Id CreatedById; + global Datetime LastModifiedDate; + global User LastModifiedBy; + global Id LastModifiedById; + global Datetime SystemModstamp; + global Integer NumberOfFailedLogins; + global Datetime OfflineTrialExpirationDate; + global Datetime OfflinePdaTrialExpirationDate; + global Boolean UserPermissionsMarketingUser; + global Boolean UserPermissionsOfflineUser; + global Boolean UserPermissionsCallCenterAutoLogin; + global Boolean UserPermissionsSFContentUser; + global Boolean UserPermissionsKnowledgeUser; + global Boolean UserPermissionsInteractionUser; + global Boolean UserPermissionsSupportUser; + global Boolean UserPermissionsJigsawProspectingUser; + global Boolean UserPermissionsSiteforceContributorUser; + global Boolean UserPermissionsSiteforcePublisherUser; + global Boolean UserPermissionsWorkDotComUserFeature; + global Boolean ForecastEnabled; + global Boolean UserPreferencesActivityRemindersPopup; + global Boolean UserPreferencesEventRemindersCheckboxDefault; + global Boolean UserPreferencesTaskRemindersCheckboxDefault; + global Boolean UserPreferencesReminderSoundOff; + global Boolean UserPreferencesDisableAllFeedsEmail; + global Boolean UserPreferencesDisableFollowersEmail; + global Boolean UserPreferencesDisableProfilePostEmail; + global Boolean UserPreferencesDisableChangeCommentEmail; + global Boolean UserPreferencesDisableLaterCommentEmail; + global Boolean UserPreferencesDisProfPostCommentEmail; + global Boolean UserPreferencesContentNoEmail; + global Boolean UserPreferencesContentEmailAsAndWhen; + global Boolean UserPreferencesApexPagesDeveloperMode; + global Boolean UserPreferencesReceiveNoNotificationsAsApprover; + global Boolean UserPreferencesReceiveNotificationsAsDelegatedApprover; + global Boolean UserPreferencesHideCSNGetChatterMobileTask; + global Boolean UserPreferencesDisableMentionsPostEmail; + global Boolean UserPreferencesDisMentionsCommentEmail; + global Boolean UserPreferencesHideCSNDesktopTask; + global Boolean UserPreferencesHideChatterOnboardingSplash; + global Boolean UserPreferencesHideSecondChatterOnboardingSplash; + global Boolean UserPreferencesDisCommentAfterLikeEmail; + global Boolean UserPreferencesDisableLikeEmail; + global Boolean UserPreferencesSortFeedByComment; + global Boolean UserPreferencesDisableMessageEmail; + global Boolean UserPreferencesJigsawListUser; + global Boolean UserPreferencesDisableBookmarkEmail; + global Boolean UserPreferencesDisableSharePostEmail; + global Boolean UserPreferencesEnableAutoSubForFeeds; + global Boolean UserPreferencesDisableFileShareNotificationsForApi; + global Boolean UserPreferencesShowTitleToExternalUsers; + global Boolean UserPreferencesShowManagerToExternalUsers; + global Boolean UserPreferencesShowEmailToExternalUsers; + global Boolean UserPreferencesShowWorkPhoneToExternalUsers; + global Boolean UserPreferencesShowMobilePhoneToExternalUsers; + global Boolean UserPreferencesShowFaxToExternalUsers; + global Boolean UserPreferencesShowStreetAddressToExternalUsers; + global Boolean UserPreferencesShowCityToExternalUsers; + global Boolean UserPreferencesShowStateToExternalUsers; + global Boolean UserPreferencesShowPostalCodeToExternalUsers; + global Boolean UserPreferencesShowCountryToExternalUsers; + global Boolean UserPreferencesShowProfilePicToGuestUsers; + global Boolean UserPreferencesShowTitleToGuestUsers; + global Boolean UserPreferencesShowCityToGuestUsers; + global Boolean UserPreferencesShowStateToGuestUsers; + global Boolean UserPreferencesShowPostalCodeToGuestUsers; + global Boolean UserPreferencesShowCountryToGuestUsers; + global Boolean UserPreferencesDisableFeedbackEmail; + global Boolean UserPreferencesDisableWorkEmail; + global Boolean UserPreferencesShowForecastingChangeSignals; + global Boolean UserPreferencesHideS1BrowserUI; + global Boolean UserPreferencesDisableEndorsementEmail; + global Boolean UserPreferencesPathAssistantCollapsed; + global Boolean UserPreferencesCacheDiagnostics; + global Boolean UserPreferencesShowEmailToGuestUsers; + global Boolean UserPreferencesShowManagerToGuestUsers; + global Boolean UserPreferencesShowWorkPhoneToGuestUsers; + global Boolean UserPreferencesShowMobilePhoneToGuestUsers; + global Boolean UserPreferencesShowFaxToGuestUsers; + global Boolean UserPreferencesShowStreetAddressToGuestUsers; + global Boolean UserPreferencesLightningExperiencePreferred; + global Boolean UserPreferencesPreviewLightning; + global Boolean UserPreferencesHideEndUserOnboardingAssistantModal; + global Boolean UserPreferencesHideLightningMigrationModal; + global Boolean UserPreferencesHideSfxWelcomeMat; + global Boolean UserPreferencesHideBiggerPhotoCallout; + global Boolean UserPreferencesGlobalNavBarWTShown; + global Boolean UserPreferencesGlobalNavGridMenuWTShown; + global Boolean UserPreferencesCreateLEXAppsWTShown; + global Boolean UserPreferencesFavoritesWTShown; + global Boolean UserPreferencesRecordHomeSectionCollapseWTShown; + global Boolean UserPreferencesRecordHomeReservedWTShown; + global Boolean UserPreferencesFavoritesShowTopFavorites; + global Boolean UserPreferencesExcludeMailAppAttachments; + global Boolean UserPreferencesSuppressTaskSFXReminders; + global Boolean UserPreferencesSuppressEventSFXReminders; + global Boolean UserPreferencesPreviewCustomTheme; + global Boolean UserPreferencesHasCelebrationBadge; + global Boolean UserPreferencesUserDebugModePref; + global Boolean UserPreferencesSRHOverrideActivities; + global Boolean UserPreferencesNewLightningReportRunPageEnabled; + global Boolean UserPreferencesReverseOpenActivitiesView; + global Boolean UserPreferencesShowTerritoryTimeZoneShifts; + global Boolean UserPreferencesHasSentWarningEmail; + global Boolean UserPreferencesHasSentWarningEmail238; + global Boolean UserPreferencesHasSentWarningEmail240; + global Boolean UserPreferencesNativeEmailClient; + global Boolean UserPreferencesSendListEmailThroughExternalService; + global Contact Contact; + global Id ContactId; + global Account Account; + global Id AccountId; + global CallCenter CallCenter; + global Id CallCenterId; + global String Extension; + global String FederationIdentifier; + global String AboutMe; + global String FullPhotoUrl; + global String SmallPhotoUrl; + global Boolean IsExtIndicatorVisible; + global String OutOfOfficeMessage; + global String MediumPhotoUrl; + global String DigestFrequency; + global String DefaultGroupNotificationFrequency; + global Integer JigsawImportLimitOverride; + global Datetime LastViewedDate; + global Datetime LastReferencedDate; + global String BannerPhotoUrl; + global String SmallBannerPhotoUrl; + global String MediumBannerPhotoUrl; + global Boolean IsProfilePhotoActive; + global Individual Individual; + global Id IndividualId; + global List AcceptedEventRelations; + global List AccountCleanInfoReviewers; + global List AttachedContentDocuments; + global List AuthorizationFormConsents; + global List GroupMemberships; + global List GroupMembershipRequests; + global List CombinedAttachments; + global List CommSubscriptionConsents; + global List ContactCleanInfoReviewers; + global List ContactRequests; + global List ContentDocumentLinks; + global List ContractsSigned; + global List ConversationEntries; + global List ConversationParticipants; + global List DeclinedEventRelations; + global List EmailMessageRelations; + global List FeedSubscriptionsForEntity; + global List FeedSubscriptions; + global List EventRelations; + global List ExternalDataUserAuths; + global List InstalledMobileApps; + global List LeadCleanInfoReviewers; + global List OutgoingEmailRelations; + global List OwnedContentDocuments; + global List PermissionSetAssignments; + global List PermissionSetLicenseAssignments; + global List ReceivedByProductTransfers; + global List UserProfileSkillUserEndorsements; + global List UserProfileSkillChildren; + global List RecordActions; + global List RecordActionHistories; + global List ServiceResources; + global List SessionPermSetActivations; + global List DeliveredToShipments; + global List UserSites; + global List Swarms; + global List SwarmMembers; + global List UndecidedEventRelations; + global List DelegatedUsers; + global List ManagedUsers; + global List PersonRecord; + global List UserEntityAccessRights; + global List Feeds; + global List UserFieldAccessRights; + global List UserPreferences; + global List Shares; + global List Badges; + global List GivenThanks; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List ChangedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List
CreatedBy; + global List
LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List LogUser; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List InsertedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List ExecutionUser; + global List Users; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List ConsentGiver; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List Publisher; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List LeadOrContactOwner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Member; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Member; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Parent; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Users; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List Inviter; + global List LastModifiedBy; + global List SharedEntity; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List ConsentGiver; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List LastModifiedBy; + global List UserOrGroup; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List ArchivedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List ArchivedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LinkedEntity; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List EntityIdentifier; + global List Users; + global List User; + global List SubscribedToUser; + global List SubscriberUser; + global List ContentModifiedBy; + global List CreatedBy; + global List FirstPublishLocation; + global List LastModifiedBy; + global List Owner; + global List ContentModifiedBy; + global List CreatedBy; + global List FirstPublishLocation; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List Member; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List ActivatedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List ActivatedBy; + global List CompanySigned; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List Folder; + global List LastModifiedBy; + global List RunningUser; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List DeletedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Author; + global List CreatedBy; + global List Folder; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List RunAsUser; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List Folder; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List Folder; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Relation; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List InsertedBy; + global List LastEditBy; + global List Parent; + global List CreatedBy; + global List InsertedBy; + global List LastEditBy; + global List Parent; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List InsertedBy; + global List BusinessOwner; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List InterviewStartedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List LastModifiedBy; + global List UserOrGroup; + global List Assignee; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List RelatedRecord; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List Related; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List Users; + global List User; + global List CreatedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List User; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List TargetUser; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List ExecuteApexHandlerAs; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List ActivatedBy; + global List CompanyAuthorizedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List ActivatedBy; + global List CompanyAuthorizedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List InvokedByUser; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastActor; + global List LastModifiedBy; + global List SubmittedBy; + global List Actor; + global List CreatedBy; + global List OriginalActor; + global List CreatedBy; + global List LastActor; + global List LastModifiedBy; + global List Actor; + global List CreatedBy; + global List OriginalActor; + global List Actor; + global List CreatedBy; + global List OriginalActor; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List ReceivedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List User; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List PublishedByUser; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List User; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List User; + global List CreatedBy; + global List InsertedBy; + global List Owner; + global List User; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List ReturnedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List ReturnedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List ExecutionUser; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List RelatedRecord; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List User; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List DeliveredTo; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List GuestRecordDefaultOwner; + global List GuestUser; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Subject; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List User; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List InsertedBy; + global List User; + global List CreatedBy; + global List ExecutionUser; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List LastModifiedBy; + global List UserOrGroup; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List DelegatedApprover; + global List LastModifiedBy; + global List Manager; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List SalesforceUser; + global List CreatedBy; + global List LastModifiedBy; + global List SalesforceUser; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List Manager; + global List Owner; + global List SalesforceUser; + global List LastModifiedBy; + global List UserOrGroup; + global List User; + global List ForecastUser; + global List LastModifiedBy; + global List PortalAccountOwner; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List User; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List Giver; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List Owner; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List CreatedBy; + global List InsertedBy; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + global List CreatedBy; + global List LastModifiedBy; + global List UserOrGroup; + + global User () + { + } +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Account.json b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Account.json new file mode 100644 index 0000000000000000000000000000000000000000..8dad044887ff31c058ece7dd83c2fd514441af87 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Account.json @@ -0,0 +1,2952 @@ +{ + "fields": [ + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Account ID", + "name": "Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "id" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Deleted", + "name": "IsDeleted", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Master Record ID", + "name": "MasterRecordId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Account" + ], + "relationshipName": "MasterRecord", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "switchablepersonname", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Account Name", + "name": "Name", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Account Type", + "name": "Type", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Prospect", + "validFor": null, + "value": "Prospect" + }, + { + "active": true, + "defaultValue": false, + "label": "Customer - Direct", + "validFor": null, + "value": "Customer - Direct" + }, + { + "active": true, + "defaultValue": false, + "label": "Customer - Channel", + "validFor": null, + "value": "Customer - Channel" + }, + { + "active": true, + "defaultValue": false, + "label": "Channel Partner / Reseller", + "validFor": null, + "value": "Channel Partner / Reseller" + }, + { + "active": true, + "defaultValue": false, + "label": "Installation Partner", + "validFor": null, + "value": "Installation Partner" + }, + { + "active": true, + "defaultValue": false, + "label": "Technology Partner", + "validFor": null, + "value": "Technology Partner" + }, + { + "active": true, + "defaultValue": false, + "label": "Other", + "validFor": null, + "value": "Other" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Parent Account ID", + "name": "ParentId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Account" + ], + "relationshipName": "Parent", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Billing Street", + "name": "BillingStreet", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Billing City", + "name": "BillingCity", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Billing State/Province", + "name": "BillingState", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Billing Zip/Postal Code", + "name": "BillingPostalCode", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Billing Country", + "name": "BillingCountry", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Billing Latitude", + "name": "BillingLatitude", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Billing Longitude", + "name": "BillingLongitude", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Billing Geocode Accuracy", + "name": "BillingGeocodeAccuracy", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Address", + "validFor": null, + "value": "Address" + }, + { + "active": true, + "defaultValue": false, + "label": "NearAddress", + "validFor": null, + "value": "NearAddress" + }, + { + "active": true, + "defaultValue": false, + "label": "Block", + "validFor": null, + "value": "Block" + }, + { + "active": true, + "defaultValue": false, + "label": "Street", + "validFor": null, + "value": "Street" + }, + { + "active": true, + "defaultValue": false, + "label": "ExtendedZip", + "validFor": null, + "value": "ExtendedZip" + }, + { + "active": true, + "defaultValue": false, + "label": "Zip", + "validFor": null, + "value": "Zip" + }, + { + "active": true, + "defaultValue": false, + "label": "Neighborhood", + "validFor": null, + "value": "Neighborhood" + }, + { + "active": true, + "defaultValue": false, + "label": "City", + "validFor": null, + "value": "City" + }, + { + "active": true, + "defaultValue": false, + "label": "County", + "validFor": null, + "value": "County" + }, + { + "active": true, + "defaultValue": false, + "label": "State", + "validFor": null, + "value": "State" + }, + { + "active": true, + "defaultValue": false, + "label": "Unknown", + "validFor": null, + "value": "Unknown" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Billing Address", + "name": "BillingAddress", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "address" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Shipping Street", + "name": "ShippingStreet", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Shipping City", + "name": "ShippingCity", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Shipping State/Province", + "name": "ShippingState", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Shipping Zip/Postal Code", + "name": "ShippingPostalCode", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Shipping Country", + "name": "ShippingCountry", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Shipping Latitude", + "name": "ShippingLatitude", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Shipping Longitude", + "name": "ShippingLongitude", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Shipping Geocode Accuracy", + "name": "ShippingGeocodeAccuracy", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Address", + "validFor": null, + "value": "Address" + }, + { + "active": true, + "defaultValue": false, + "label": "NearAddress", + "validFor": null, + "value": "NearAddress" + }, + { + "active": true, + "defaultValue": false, + "label": "Block", + "validFor": null, + "value": "Block" + }, + { + "active": true, + "defaultValue": false, + "label": "Street", + "validFor": null, + "value": "Street" + }, + { + "active": true, + "defaultValue": false, + "label": "ExtendedZip", + "validFor": null, + "value": "ExtendedZip" + }, + { + "active": true, + "defaultValue": false, + "label": "Zip", + "validFor": null, + "value": "Zip" + }, + { + "active": true, + "defaultValue": false, + "label": "Neighborhood", + "validFor": null, + "value": "Neighborhood" + }, + { + "active": true, + "defaultValue": false, + "label": "City", + "validFor": null, + "value": "City" + }, + { + "active": true, + "defaultValue": false, + "label": "County", + "validFor": null, + "value": "County" + }, + { + "active": true, + "defaultValue": false, + "label": "State", + "validFor": null, + "value": "State" + }, + { + "active": true, + "defaultValue": false, + "label": "Unknown", + "validFor": null, + "value": "Unknown" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Shipping Address", + "name": "ShippingAddress", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "address" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Account Phone", + "name": "Phone", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "phone" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Account Fax", + "name": "Fax", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "phone" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Account Number", + "name": "AccountNumber", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Website", + "name": "Website", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "url" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "imageurl", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Photo URL", + "name": "PhotoUrl", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "url" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "SIC Code", + "name": "Sic", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Industry", + "name": "Industry", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Agriculture", + "validFor": null, + "value": "Agriculture" + }, + { + "active": true, + "defaultValue": false, + "label": "Apparel", + "validFor": null, + "value": "Apparel" + }, + { + "active": true, + "defaultValue": false, + "label": "Banking", + "validFor": null, + "value": "Banking" + }, + { + "active": true, + "defaultValue": false, + "label": "Biotechnology", + "validFor": null, + "value": "Biotechnology" + }, + { + "active": true, + "defaultValue": false, + "label": "Chemicals", + "validFor": null, + "value": "Chemicals" + }, + { + "active": true, + "defaultValue": false, + "label": "Communications", + "validFor": null, + "value": "Communications" + }, + { + "active": true, + "defaultValue": false, + "label": "Construction", + "validFor": null, + "value": "Construction" + }, + { + "active": true, + "defaultValue": false, + "label": "Consulting", + "validFor": null, + "value": "Consulting" + }, + { + "active": true, + "defaultValue": false, + "label": "Education", + "validFor": null, + "value": "Education" + }, + { + "active": true, + "defaultValue": false, + "label": "Electronics", + "validFor": null, + "value": "Electronics" + }, + { + "active": true, + "defaultValue": false, + "label": "Energy", + "validFor": null, + "value": "Energy" + }, + { + "active": true, + "defaultValue": false, + "label": "Engineering", + "validFor": null, + "value": "Engineering" + }, + { + "active": true, + "defaultValue": false, + "label": "Entertainment", + "validFor": null, + "value": "Entertainment" + }, + { + "active": true, + "defaultValue": false, + "label": "Environmental", + "validFor": null, + "value": "Environmental" + }, + { + "active": true, + "defaultValue": false, + "label": "Finance", + "validFor": null, + "value": "Finance" + }, + { + "active": true, + "defaultValue": false, + "label": "Food & Beverage", + "validFor": null, + "value": "Food & Beverage" + }, + { + "active": true, + "defaultValue": false, + "label": "Government", + "validFor": null, + "value": "Government" + }, + { + "active": true, + "defaultValue": false, + "label": "Healthcare", + "validFor": null, + "value": "Healthcare" + }, + { + "active": true, + "defaultValue": false, + "label": "Hospitality", + "validFor": null, + "value": "Hospitality" + }, + { + "active": true, + "defaultValue": false, + "label": "Insurance", + "validFor": null, + "value": "Insurance" + }, + { + "active": true, + "defaultValue": false, + "label": "Machinery", + "validFor": null, + "value": "Machinery" + }, + { + "active": true, + "defaultValue": false, + "label": "Manufacturing", + "validFor": null, + "value": "Manufacturing" + }, + { + "active": true, + "defaultValue": false, + "label": "Media", + "validFor": null, + "value": "Media" + }, + { + "active": true, + "defaultValue": false, + "label": "Not For Profit", + "validFor": null, + "value": "Not For Profit" + }, + { + "active": true, + "defaultValue": false, + "label": "Recreation", + "validFor": null, + "value": "Recreation" + }, + { + "active": true, + "defaultValue": false, + "label": "Retail", + "validFor": null, + "value": "Retail" + }, + { + "active": true, + "defaultValue": false, + "label": "Shipping", + "validFor": null, + "value": "Shipping" + }, + { + "active": true, + "defaultValue": false, + "label": "Technology", + "validFor": null, + "value": "Technology" + }, + { + "active": true, + "defaultValue": false, + "label": "Telecommunications", + "validFor": null, + "value": "Telecommunications" + }, + { + "active": true, + "defaultValue": false, + "label": "Transportation", + "validFor": null, + "value": "Transportation" + }, + { + "active": true, + "defaultValue": false, + "label": "Utilities", + "validFor": null, + "value": "Utilities" + }, + { + "active": true, + "defaultValue": false, + "label": "Other", + "validFor": null, + "value": "Other" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Annual Revenue", + "name": "AnnualRevenue", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "currency" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Employees", + "name": "NumberOfEmployees", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "int" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Ownership", + "name": "Ownership", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Public", + "validFor": null, + "value": "Public" + }, + { + "active": true, + "defaultValue": false, + "label": "Private", + "validFor": null, + "value": "Private" + }, + { + "active": true, + "defaultValue": false, + "label": "Subsidiary", + "validFor": null, + "value": "Subsidiary" + }, + { + "active": true, + "defaultValue": false, + "label": "Other", + "validFor": null, + "value": "Other" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Ticker Symbol", + "name": "TickerSymbol", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": false, + "groupable": false, + "inlineHelpText": null, + "label": "Account Description", + "name": "Description", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Account Rating", + "name": "Rating", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Hot", + "validFor": null, + "value": "Hot" + }, + { + "active": true, + "defaultValue": false, + "label": "Warm", + "validFor": null, + "value": "Warm" + }, + { + "active": true, + "defaultValue": false, + "label": "Cold", + "validFor": null, + "value": "Cold" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Account Site", + "name": "Site", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Owner ID", + "name": "OwnerId", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "Owner", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Created Date", + "name": "CreatedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Created By ID", + "name": "CreatedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CreatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Modified Date", + "name": "LastModifiedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Modified By ID", + "name": "LastModifiedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "LastModifiedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "System Modstamp", + "name": "SystemModstamp", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Activity", + "name": "LastActivityDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Viewed Date", + "name": "LastViewedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Referenced Date", + "name": "LastReferencedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Data.com Key", + "name": "Jigsaw", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Jigsaw Company ID", + "name": "JigsawCompanyId", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": "JigsawCompany", + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Clean Status", + "name": "CleanStatus", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "In Sync", + "validFor": null, + "value": "Matched" + }, + { + "active": true, + "defaultValue": false, + "label": "Different", + "validFor": null, + "value": "Different" + }, + { + "active": true, + "defaultValue": false, + "label": "Reviewed", + "validFor": null, + "value": "Acknowledged" + }, + { + "active": true, + "defaultValue": false, + "label": "Not Found", + "validFor": null, + "value": "NotFound" + }, + { + "active": true, + "defaultValue": false, + "label": "Inactive", + "validFor": null, + "value": "Inactive" + }, + { + "active": true, + "defaultValue": false, + "label": "Not Compared", + "validFor": null, + "value": "Pending" + }, + { + "active": true, + "defaultValue": false, + "label": "Select Match", + "validFor": null, + "value": "SelectMatch" + }, + { + "active": true, + "defaultValue": false, + "label": "Skipped", + "validFor": null, + "value": "Skipped" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Account Source", + "name": "AccountSource", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Web", + "validFor": null, + "value": "Web" + }, + { + "active": true, + "defaultValue": false, + "label": "Phone Inquiry", + "validFor": null, + "value": "Phone Inquiry" + }, + { + "active": true, + "defaultValue": false, + "label": "Partner Referral", + "validFor": null, + "value": "Partner Referral" + }, + { + "active": true, + "defaultValue": false, + "label": "Purchased List", + "validFor": null, + "value": "Purchased List" + }, + { + "active": true, + "defaultValue": false, + "label": "Other", + "validFor": null, + "value": "Other" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "D-U-N-S Number", + "name": "DunsNumber", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Tradestyle", + "name": "Tradestyle", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "NAICS Code", + "name": "NaicsCode", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "NAICS Description", + "name": "NaicsDesc", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Year Started", + "name": "YearStarted", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "SIC Description", + "name": "SicDesc", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "D&B Company ID", + "name": "DandbCompanyId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "DandBCompany" + ], + "relationshipName": "DandbCompany", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Operating Hour ID", + "name": "OperatingHoursId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "OperatingHours" + ], + "relationshipName": "OperatingHours", + "sortable": true, + "type": "reference" + } + ], + "label": "Account", + "childRelationships": [ + { + "cascadeDelete": true, + "childSObject": "AIInsightValue", + "deprecatedAndHidden": false, + "field": "SobjectLookupValueId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AIRecordInsight", + "deprecatedAndHidden": false, + "field": "TargetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Account", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ChildAccounts", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AccountChangeEvent", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AccountCleanInfo", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AccountCleanInfos", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AccountContactRole", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AccountContactRoles", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AccountContactRoleChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AccountFeed", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Feeds", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AccountHistory", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Histories", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AccountPartner", + "deprecatedAndHidden": false, + "field": "AccountFromId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AccountPartnersFrom", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AccountPartner", + "deprecatedAndHidden": false, + "field": "AccountToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AccountPartnersTo", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AccountShare", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Shares", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ActivityHistory", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ActivityHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AlternativePaymentMethod", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AlternativePaymentMethods", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Asset", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Assets", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Asset", + "deprecatedAndHidden": false, + "field": "AssetProvidedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProvidedAssets", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Asset", + "deprecatedAndHidden": false, + "field": "AssetServicedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ServicedAssets", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetChangeEvent", + "deprecatedAndHidden": false, + "field": "AssetProvidedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetChangeEvent", + "deprecatedAndHidden": false, + "field": "AssetServicedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AssociatedLocation", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AssociatedLocations", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AttachedContentDocument", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AttachedContentDocuments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Attachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Attachments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormConsent", + "deprecatedAndHidden": false, + "field": "ConsentGiverId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AuthorizationFormConsents", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormConsent", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RelatedAuthorizationFormConsents", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "ConsentGiverId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignMember", + "deprecatedAndHidden": false, + "field": "LeadOrContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CardPaymentMethod", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CardPaymentMethods", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Case", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Cases", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "CaseChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CollaborationGroupRecord", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordAssociatedGroups", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CombinedAttachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CombinedAttachments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionConsent", + "deprecatedAndHidden": false, + "field": "ConsentGiverId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CommSubscriptionConsents", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "ConsentGiverId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Contact", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Contacts", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContactPointAddress", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContactPointAddresses", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointAddressChangeEvent", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContactPointEmail", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContactPointEmails", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointEmailChangeEvent", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContactPointPhone", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContactPointPhones", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointPhoneChangeEvent", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactRequest", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContactRequests", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentDistribution", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentDocumentLink", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContentDocumentLinks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocumentLinkChangeEvent", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersion", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersionChangeEvent", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Contract", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Contracts", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "ContractChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CreditMemo", + "deprecatedAndHidden": false, + "field": "BillingAccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CreditMemos", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DigitalWallet", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "DigitalWallets", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "DuplicateRecordItem", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "DuplicateRecordItems", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessage", + "deprecatedAndHidden": false, + "field": "RelatedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Emails", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessageChangeEvent", + "deprecatedAndHidden": false, + "field": "RelatedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Entitlement", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Entitlements", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "EntitlementChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EntitySubscription", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "FeedSubscriptionsForEntity", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Event", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Event", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Events", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventChangeEvent", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventRelationChangeEvent", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Expense", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Expenses", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpenseChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FeedComment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FeedItem", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FinanceBalanceSnapshot", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "FinanceBalanceSnapshots", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FinanceBalanceSnapshotChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FinanceTransaction", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "FinanceTransactions", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FinanceTransactionChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowExecutionErrorEvent", + "deprecatedAndHidden": false, + "field": "ContextRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationWorkItem", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowRecordRelation", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Invoice", + "deprecatedAndHidden": false, + "field": "BillingAccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Invoices", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Lead", + "deprecatedAndHidden": false, + "field": "ConvertedAccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LeadChangeEvent", + "deprecatedAndHidden": false, + "field": "ConvertedAccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenancePlan", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "MaintenancePlans", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenancePlanChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingEndUser", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "MessagingEndUsers", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingSession", + "deprecatedAndHidden": false, + "field": "EndUserAccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "MessagingSessions", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Note", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Notes", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "NoteAndAttachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "NotesAndAttachments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OpenActivity", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OpenActivities", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Opportunity", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Opportunities", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OpportunityPartner", + "deprecatedAndHidden": false, + "field": "AccountToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OpportunityPartnersTo", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Order", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Orders", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "OrderChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OutgoingEmail", + "deprecatedAndHidden": false, + "field": "RelatedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Partner", + "deprecatedAndHidden": false, + "field": "AccountFromId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "PartnersFrom", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Partner", + "deprecatedAndHidden": false, + "field": "AccountToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "PartnersTo", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Payment", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Payments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentAuthAdjustment", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "PaymentAuthAdjustments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentAuthorization", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "PaymentAuthorizations", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentLineInvoice", + "deprecatedAndHidden": false, + "field": "AssociatedAccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "PaymentLinesInvoice", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentMethod", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProcessInstance", + "deprecatedAndHidden": false, + "field": "TargetObjectId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProcessInstances", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessInstanceHistory", + "deprecatedAndHidden": false, + "field": "TargetObjectId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProcessSteps", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequest", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProductRequests", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestLineItem", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProductRequestLineItems", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestLineItemChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "RecordAction", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActions", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordActionHistory", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActionHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Refund", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Refunds", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RefundLinePayment", + "deprecatedAndHidden": false, + "field": "AssociatedAccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RefundLinePayments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ResourcePreference", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ResourcePreferences", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ResourcePreferenceChangeEvent", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrder", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ReturnOrders", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ScorecardAssociation", + "deprecatedAndHidden": false, + "field": "TargetEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ScorecardAssociations", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointment", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ServiceAppointmentAccount", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ServiceAppointment", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ServiceAppointments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointmentChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointmentChangeEvent", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceContract", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ServiceContracts", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "ServiceContractChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResource", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ServiceResources", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Swarm", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Swarms", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "SwarmMember", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "SwarmMembers", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Task", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Task", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Tasks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TaskChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TaskChangeEvent", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "TopicAssignment", + "deprecatedAndHidden": false, + "field": "EntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "TopicAssignments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "User", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Users", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserRole", + "deprecatedAndHidden": false, + "field": "PortalAccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrder", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "WorkOrders", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "WorkPlanSelectionRule", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "WorkPlanSelectionRules", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanSelectionRuleChangeEvent", + "deprecatedAndHidden": false, + "field": "AccountId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + } + ], + "custom": false, + "name": "Account", + "queryable": true +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/AccountHistory.json b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/AccountHistory.json new file mode 100644 index 0000000000000000000000000000000000000000..8a50bf84a9deabca4ccc05e532a05cc8c95c01a8 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/AccountHistory.json @@ -0,0 +1,875 @@ +{ + "fields": [ + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Account History ID", + "name": "Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "id" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Deleted", + "name": "IsDeleted", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Account ID", + "name": "AccountId", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "Account" + ], + "relationshipName": "Account", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Created By ID", + "name": "CreatedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CreatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Created Date", + "name": "CreatedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Changed Field", + "name": "Field", + "nillable": false, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Account Merged", + "validFor": null, + "value": "accountMerged" + }, + { + "active": true, + "defaultValue": false, + "label": "Account Name", + "validFor": null, + "value": "Name" + }, + { + "active": true, + "defaultValue": false, + "label": "Account Name", + "validFor": null, + "value": "TextName" + }, + { + "active": true, + "defaultValue": false, + "label": "Account Number", + "validFor": null, + "value": "AccountNumber" + }, + { + "active": true, + "defaultValue": false, + "label": "Account Owner", + "validFor": null, + "value": "Owner" + }, + { + "active": true, + "defaultValue": false, + "label": "Account Site", + "validFor": null, + "value": "Site" + }, + { + "active": true, + "defaultValue": false, + "label": "Account Source", + "validFor": null, + "value": "AccountSource" + }, + { + "active": true, + "defaultValue": false, + "label": "Annual Revenue", + "validFor": null, + "value": "AnnualRevenue" + }, + { + "active": true, + "defaultValue": false, + "label": "Billing Address", + "validFor": null, + "value": "BillingAddress" + }, + { + "active": true, + "defaultValue": false, + "label": "Billing City", + "validFor": null, + "value": "BillingCity" + }, + { + "active": true, + "defaultValue": false, + "label": "Billing Country", + "validFor": null, + "value": "BillingCountry" + }, + { + "active": true, + "defaultValue": false, + "label": "Billing Geocode Accuracy", + "validFor": null, + "value": "BillingGeocodeAccuracy" + }, + { + "active": true, + "defaultValue": false, + "label": "Billing Latitude", + "validFor": null, + "value": "BillingLatitude" + }, + { + "active": true, + "defaultValue": false, + "label": "Billing Longitude", + "validFor": null, + "value": "BillingLongitude" + }, + { + "active": true, + "defaultValue": false, + "label": "Billing State/Province", + "validFor": null, + "value": "BillingState" + }, + { + "active": true, + "defaultValue": false, + "label": "Billing Street", + "validFor": null, + "value": "BillingStreet" + }, + { + "active": true, + "defaultValue": false, + "label": "Billing Zip/Postal Code", + "validFor": null, + "value": "BillingPostalCode" + }, + { + "active": true, + "defaultValue": false, + "label": "Clean Status", + "validFor": null, + "value": "CleanStatus" + }, + { + "active": true, + "defaultValue": false, + "label": "Created.", + "validFor": null, + "value": "created" + }, + { + "active": true, + "defaultValue": false, + "label": "Created by lead convert", + "validFor": null, + "value": "accountCreatedFromLead" + }, + { + "active": true, + "defaultValue": false, + "label": "D&B Company", + "validFor": null, + "value": "DandbCompany" + }, + { + "active": true, + "defaultValue": false, + "label": "Data.com Key", + "validFor": null, + "value": "Jigsaw" + }, + { + "active": true, + "defaultValue": false, + "label": "Description", + "validFor": null, + "value": "Description" + }, + { + "active": true, + "defaultValue": false, + "label": "D-U-N-S Number", + "validFor": null, + "value": "DunsNumber" + }, + { + "active": true, + "defaultValue": false, + "label": "Employees", + "validFor": null, + "value": "NumberOfEmployees" + }, + { + "active": true, + "defaultValue": false, + "label": "Fax", + "validFor": null, + "value": "Fax" + }, + { + "active": true, + "defaultValue": false, + "label": "Feed event", + "validFor": null, + "value": "feedEvent" + }, + { + "active": true, + "defaultValue": false, + "label": "Individual Merged", + "validFor": null, + "value": "individualMerged" + }, + { + "active": true, + "defaultValue": false, + "label": "Industry", + "validFor": null, + "value": "Industry" + }, + { + "active": true, + "defaultValue": false, + "label": "Lead converted to Account", + "validFor": null, + "value": "accountUpdatedByLead" + }, + { + "active": true, + "defaultValue": false, + "label": "Lead converted to Person Account", + "validFor": null, + "value": "personAccountUpdatedByLead" + }, + { + "active": true, + "defaultValue": false, + "label": "NAICS Code", + "validFor": null, + "value": "NaicsCode" + }, + { + "active": true, + "defaultValue": false, + "label": "NAICS Description", + "validFor": null, + "value": "NaicsDesc" + }, + { + "active": true, + "defaultValue": false, + "label": "Operating Hours", + "validFor": null, + "value": "OperatingHours" + }, + { + "active": true, + "defaultValue": false, + "label": "Owner (Accepted)", + "validFor": null, + "value": "ownerAccepted" + }, + { + "active": true, + "defaultValue": false, + "label": "Owner (Assignment)", + "validFor": null, + "value": "ownerAssignment" + }, + { + "active": true, + "defaultValue": false, + "label": "Ownership", + "validFor": null, + "value": "Ownership" + }, + { + "active": true, + "defaultValue": false, + "label": "Parent Account", + "validFor": null, + "value": "Parent" + }, + { + "active": true, + "defaultValue": false, + "label": "Phone", + "validFor": null, + "value": "Phone" + }, + { + "active": true, + "defaultValue": false, + "label": "Rating", + "validFor": null, + "value": "Rating" + }, + { + "active": true, + "defaultValue": false, + "label": "Record locked.", + "validFor": null, + "value": "locked" + }, + { + "active": true, + "defaultValue": false, + "label": "Record unlocked.", + "validFor": null, + "value": "unlocked" + }, + { + "active": true, + "defaultValue": false, + "label": "Shipping Address", + "validFor": null, + "value": "ShippingAddress" + }, + { + "active": true, + "defaultValue": false, + "label": "Shipping City", + "validFor": null, + "value": "ShippingCity" + }, + { + "active": true, + "defaultValue": false, + "label": "Shipping Country", + "validFor": null, + "value": "ShippingCountry" + }, + { + "active": true, + "defaultValue": false, + "label": "Shipping Geocode Accuracy", + "validFor": null, + "value": "ShippingGeocodeAccuracy" + }, + { + "active": true, + "defaultValue": false, + "label": "Shipping Latitude", + "validFor": null, + "value": "ShippingLatitude" + }, + { + "active": true, + "defaultValue": false, + "label": "Shipping Longitude", + "validFor": null, + "value": "ShippingLongitude" + }, + { + "active": true, + "defaultValue": false, + "label": "Shipping State/Province", + "validFor": null, + "value": "ShippingState" + }, + { + "active": true, + "defaultValue": false, + "label": "Shipping Street", + "validFor": null, + "value": "ShippingStreet" + }, + { + "active": true, + "defaultValue": false, + "label": "Shipping Zip/Postal Code", + "validFor": null, + "value": "ShippingPostalCode" + }, + { + "active": true, + "defaultValue": false, + "label": "SIC Code", + "validFor": null, + "value": "Sic" + }, + { + "active": true, + "defaultValue": false, + "label": "SIC Description", + "validFor": null, + "value": "SicDesc" + }, + { + "active": true, + "defaultValue": false, + "label": "Ticker Symbol", + "validFor": null, + "value": "TickerSymbol" + }, + { + "active": true, + "defaultValue": false, + "label": "Tradestyle", + "validFor": null, + "value": "Tradestyle" + }, + { + "active": true, + "defaultValue": false, + "label": "Type", + "validFor": null, + "value": "Type" + }, + { + "active": true, + "defaultValue": false, + "label": "Website", + "validFor": null, + "value": "Website" + }, + { + "active": true, + "defaultValue": false, + "label": "Year Started", + "validFor": null, + "value": "YearStarted" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Datatype", + "name": "DataType", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Address" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AnyType" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AutoNumber" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Base64" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "BitVector" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Boolean" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Content" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Currency" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "DataCategoryGroupReference" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "DateOnly" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "DateTime" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Division" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Double" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "DynamicEnum" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Email" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "EncryptedBase64" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "EncryptedText" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "EntityId" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "EnumOrId" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ExternalId" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Fax" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "File" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "HtmlMultiLineText" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "HtmlStringPlusClob" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "InetAddress" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Json" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Location" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "MultiEnum" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "MultiLineText" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Namespace" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Percent" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "PersonName" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Phone" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Raw" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "RecordType" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "SfdcEncryptedText" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "SimpleNamespace" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "StringPlusClob" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Switchable_PersonName" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Text" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TimeOnly" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Url" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "YearQuarter" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": false, + "groupable": false, + "inlineHelpText": null, + "label": "Old Value", + "name": "OldValue", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "anyType" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": false, + "groupable": false, + "inlineHelpText": null, + "label": "New Value", + "name": "NewValue", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "anyType" + } + ], + "label": "Account History", + "childRelationships": [], + "custom": false, + "name": "AccountHistory", + "queryable": true +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Asset.json b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Asset.json new file mode 100644 index 0000000000000000000000000000000000000000..3ea49485540955a59515779127ca2a906eb89331 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Asset.json @@ -0,0 +1,1699 @@ +{ + "fields": [ + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Asset ID", + "name": "Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "id" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Contact ID", + "name": "ContactId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Contact" + ], + "relationshipName": "Contact", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Account ID", + "name": "AccountId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Account" + ], + "relationshipName": "Account", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Parent Asset ID", + "name": "ParentId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Asset" + ], + "relationshipName": "Parent", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Root Asset ID", + "name": "RootAssetId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Asset" + ], + "relationshipName": "RootAsset", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Product ID", + "name": "Product2Id", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Product2" + ], + "relationshipName": "Product2", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Product Code", + "name": "ProductCode", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Competitor Asset", + "name": "IsCompetitorProduct", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Created Date", + "name": "CreatedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Created By ID", + "name": "CreatedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CreatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Modified Date", + "name": "LastModifiedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Modified By ID", + "name": "LastModifiedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "LastModifiedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "System Modstamp", + "name": "SystemModstamp", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Deleted", + "name": "IsDeleted", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Asset Name", + "name": "Name", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Serial Number", + "name": "SerialNumber", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Install Date", + "name": "InstallDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Purchase Date", + "name": "PurchaseDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Usage End Date", + "name": "UsageEndDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Lifecycle Start Date", + "name": "LifecycleStartDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Lifecycle End Date", + "name": "LifecycleEndDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Status", + "name": "Status", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Shipped", + "validFor": null, + "value": "Shipped" + }, + { + "active": true, + "defaultValue": false, + "label": "Installed", + "validFor": null, + "value": "Installed" + }, + { + "active": true, + "defaultValue": false, + "label": "Registered", + "validFor": null, + "value": "Registered" + }, + { + "active": true, + "defaultValue": false, + "label": "Obsolete", + "validFor": null, + "value": "Obsolete" + }, + { + "active": true, + "defaultValue": false, + "label": "Purchased", + "validFor": null, + "value": "Purchased" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Price", + "name": "Price", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "currency" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Quantity", + "name": "Quantity", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": false, + "groupable": false, + "inlineHelpText": null, + "label": "Description", + "name": "Description", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Owner ID", + "name": "OwnerId", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "Owner", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Location ID", + "name": "LocationId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Location" + ], + "relationshipName": "Location", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Asset Provided By ID", + "name": "AssetProvidedById", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Account" + ], + "relationshipName": "AssetProvidedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Asset Serviced By ID", + "name": "AssetServicedById", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Account" + ], + "relationshipName": "AssetServicedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Internal Asset", + "name": "IsInternal", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Asset Level", + "name": "AssetLevel", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "int" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Product SKU", + "name": "StockKeepingUnit", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Lifecycle-managed asset", + "name": "HasLifecycleManagement", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Current Monthly Recurring Revenue", + "name": "CurrentMrr", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "currency" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Current Lifecycle End Date", + "name": "CurrentLifecycleEndDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Current Quantity", + "name": "CurrentQuantity", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Current Amount", + "name": "CurrentAmount", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "currency" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Total Lifecycle Amount", + "name": "TotalLifecycleAmount", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "currency" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Street", + "name": "Street", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "City", + "name": "City", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "State", + "name": "State", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Postal Code", + "name": "PostalCode", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Country", + "name": "Country", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Latitude", + "name": "Latitude", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Longitude", + "name": "Longitude", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Geocode Accuracy", + "name": "GeocodeAccuracy", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Address", + "validFor": null, + "value": "Address" + }, + { + "active": true, + "defaultValue": false, + "label": "NearAddress", + "validFor": null, + "value": "NearAddress" + }, + { + "active": true, + "defaultValue": false, + "label": "Block", + "validFor": null, + "value": "Block" + }, + { + "active": true, + "defaultValue": false, + "label": "Street", + "validFor": null, + "value": "Street" + }, + { + "active": true, + "defaultValue": false, + "label": "ExtendedZip", + "validFor": null, + "value": "ExtendedZip" + }, + { + "active": true, + "defaultValue": false, + "label": "Zip", + "validFor": null, + "value": "Zip" + }, + { + "active": true, + "defaultValue": false, + "label": "Neighborhood", + "validFor": null, + "value": "Neighborhood" + }, + { + "active": true, + "defaultValue": false, + "label": "City", + "validFor": null, + "value": "City" + }, + { + "active": true, + "defaultValue": false, + "label": "County", + "validFor": null, + "value": "County" + }, + { + "active": true, + "defaultValue": false, + "label": "State", + "validFor": null, + "value": "State" + }, + { + "active": true, + "defaultValue": false, + "label": "Unknown", + "validFor": null, + "value": "Unknown" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Address", + "name": "Address", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "address" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Viewed Date", + "name": "LastViewedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Referenced Date", + "name": "LastReferencedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + } + ], + "label": "Asset", + "childRelationships": [ + { + "cascadeDelete": true, + "childSObject": "AIInsightValue", + "deprecatedAndHidden": false, + "field": "SobjectLookupValueId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AIRecordInsight", + "deprecatedAndHidden": false, + "field": "TargetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ActivityHistory", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ActivityHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Asset", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ChildAssets", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Asset", + "deprecatedAndHidden": false, + "field": "RootAssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AssetAction", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AssetActions", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetAttribute", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AssetAttributes", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetAttributeChangeEvent", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetChangeEvent", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetChangeEvent", + "deprecatedAndHidden": false, + "field": "RootAssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AssetDowntimePeriod", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AssetDowntimePeriods", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AssetFeed", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Feeds", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AssetHistory", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Histories", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AssetRelationship", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "PrimaryAssets", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetRelationship", + "deprecatedAndHidden": false, + "field": "RelatedAssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RelatedAssets", + "restrictedDelete": true + }, + { + "cascadeDelete": true, + "childSObject": "AssetShare", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Shares", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AssetStatePeriod", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AssetStatePeriods", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetTokenEvent", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AssetWarranty", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "WarrantyAssets", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetWarrantyChangeEvent", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AttachedContentDocument", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AttachedContentDocuments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Attachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Attachments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Case", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Cases", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "CaseChangeEvent", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CombinedAttachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CombinedAttachments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentDocumentLink", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContentDocumentLinks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocumentLinkChangeEvent", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersion", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersionChangeEvent", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineItem", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContractLineItems", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineItemChangeEvent", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessage", + "deprecatedAndHidden": false, + "field": "RelatedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Emails", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessageChangeEvent", + "deprecatedAndHidden": false, + "field": "RelatedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Entitlement", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Entitlements", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EntitlementChangeEvent", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EntitySubscription", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "FeedSubscriptionsForEntity", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Event", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Events", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventChangeEvent", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventRelationChangeEvent", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FeedComment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FeedItem", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowExecutionErrorEvent", + "deprecatedAndHidden": false, + "field": "ContextRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationWorkItem", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowRecordRelation", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "MaintenanceAsset", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "MaintenanceAssets", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenanceAssetChangeEvent", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Note", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Notes", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "NoteAndAttachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "NotesAndAttachments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OpenActivity", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OpenActivities", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OutgoingEmail", + "deprecatedAndHidden": false, + "field": "RelatedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProcessInstance", + "deprecatedAndHidden": false, + "field": "TargetObjectId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProcessInstances", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessInstanceHistory", + "deprecatedAndHidden": false, + "field": "TargetObjectId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProcessSteps", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductServiceCampaignItem", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProductServiceCampaignItems", + "restrictedDelete": true + }, + { + "cascadeDelete": true, + "childSObject": "RecordAction", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActions", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordActionHistory", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActionHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "RecordsetFltrCritMonitor", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordsetFltrCritMonitors", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFltrCritMonitorChangeEvent", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ResourcePreference", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ResourcePreferences", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderLineItem", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ReturnOrderLineItems", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderLineItemChangeEvent", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SerializedProduct", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "SerializedProducts", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ServiceAppointment", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ServiceAppointments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointmentChangeEvent", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Task", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Tasks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TaskChangeEvent", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "TopicAssignment", + "deprecatedAndHidden": false, + "field": "EntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "TopicAssignments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrder", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "WorkOrders", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderChangeEvent", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderLineItem", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "WorkOrderLineItems", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderLineItemChangeEvent", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanSelectionRule", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "WorkPlanSelectionRules", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanSelectionRuleChangeEvent", + "deprecatedAndHidden": false, + "field": "AssetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + } + ], + "custom": false, + "name": "Asset", + "queryable": true +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Attachment.json b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Attachment.json new file mode 100644 index 0000000000000000000000000000000000000000..57315d1f5591fc2163f00e13b35fe4efcdc63a8c --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Attachment.json @@ -0,0 +1,362 @@ +{ + "fields": [ + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Attachment ID", + "name": "Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "id" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Deleted", + "name": "IsDeleted", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Parent ID", + "name": "ParentId", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "Account", + "ApptBundleAggrDurDnscale", + "ApptBundleAggrPolicy", + "ApptBundleConfig", + "ApptBundlePolicy", + "ApptBundlePolicySvcTerr", + "ApptBundlePropagatePolicy", + "ApptBundleRestrictPolicy", + "ApptBundleSortPolicy", + "Asset", + "AssetDowntimePeriod", + "AssetWarranty", + "AttributeDefinition", + "Broker__c", + "Campaign", + "Case", + "CommSubscription", + "CommSubscriptionChannelType", + "CommSubscriptionConsent", + "CommSubscriptionTiming", + "Contact", + "Contract", + "ContractLineItem", + "ContractLineOutcome", + "CreditMemo", + "EmailMessage", + "EmailTemplate", + "EngagementChannelType", + "Entitlement", + "Event", + "Image", + "Invoice", + "JobProfile", + "Lead", + "LegalEntity", + "Location", + "MaintenancePlan", + "Opportunity", + "Order", + "Product2", + "ProductConsumed", + "ProductItem", + "ProductRequest", + "ProductRequestLineItem", + "ProductRequired", + "ProductServiceCampaign", + "ProductServiceCampaignItem", + "ProductTransfer", + "ProductWarrantyTerm", + "Property__c", + "ReturnOrder", + "ReturnOrderLineItem", + "SerializedProduct", + "SerializedProductTransaction", + "ServiceAppointment", + "ServiceContract", + "ServiceResource", + "Shift", + "Solution", + "Task", + "TravelMode", + "WarrantyTerm", + "WorkOrder", + "WorkOrderLineItem", + "WorkPlan", + "WorkPlanSelectionRule", + "WorkPlanTemplate", + "WorkStep", + "WorkStepTemplate" + ], + "relationshipName": "Parent", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "File Name", + "name": "Name", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Private", + "name": "IsPrivate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Content Type", + "name": "ContentType", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Body Length", + "name": "BodyLength", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "int" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": false, + "groupable": false, + "inlineHelpText": null, + "label": "Body", + "name": "Body", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "base64" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Owner ID", + "name": "OwnerId", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "Calendar", + "User" + ], + "relationshipName": "Owner", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Created Date", + "name": "CreatedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Created By ID", + "name": "CreatedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CreatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Modified Date", + "name": "LastModifiedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Modified By ID", + "name": "LastModifiedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "LastModifiedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "System Modstamp", + "name": "SystemModstamp", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Description", + "name": "Description", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "textarea" + } + ], + "label": "Attachment", + "childRelationships": [ + { + "cascadeDelete": false, + "childSObject": "FlowExecutionErrorEvent", + "deprecatedAndHidden": false, + "field": "ContextRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowRecordRelation", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + } + ], + "custom": false, + "name": "Attachment", + "queryable": true +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Case.json b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Case.json new file mode 100644 index 0000000000000000000000000000000000000000..e98ceb8c457c57c202b28b4ea0d9c61b9516ceaf --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Case.json @@ -0,0 +1,1371 @@ +{ + "fields": [ + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Case ID", + "name": "Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "id" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Deleted", + "name": "IsDeleted", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Master Record ID", + "name": "MasterRecordId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Case" + ], + "relationshipName": "MasterRecord", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Case Number", + "name": "CaseNumber", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Contact ID", + "name": "ContactId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Contact" + ], + "relationshipName": "Contact", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Account ID", + "name": "AccountId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Account" + ], + "relationshipName": "Account", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Asset ID", + "name": "AssetId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Asset" + ], + "relationshipName": "Asset", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Parent Case ID", + "name": "ParentId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Case" + ], + "relationshipName": "Parent", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Name", + "name": "SuppliedName", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Email Address", + "name": "SuppliedEmail", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "email" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Phone", + "name": "SuppliedPhone", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Company", + "name": "SuppliedCompany", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Case Type", + "name": "Type", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Mechanical", + "validFor": null, + "value": "Mechanical" + }, + { + "active": true, + "defaultValue": false, + "label": "Electrical", + "validFor": null, + "value": "Electrical" + }, + { + "active": true, + "defaultValue": false, + "label": "Electronic", + "validFor": null, + "value": "Electronic" + }, + { + "active": true, + "defaultValue": false, + "label": "Structural", + "validFor": null, + "value": "Structural" + }, + { + "active": true, + "defaultValue": false, + "label": "Other", + "validFor": null, + "value": "Other" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": "New", + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Status", + "name": "Status", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": true, + "label": "New", + "validFor": null, + "value": "New" + }, + { + "active": true, + "defaultValue": false, + "label": "Working", + "validFor": null, + "value": "Working" + }, + { + "active": true, + "defaultValue": false, + "label": "Escalated", + "validFor": null, + "value": "Escalated" + }, + { + "active": true, + "defaultValue": false, + "label": "Closed", + "validFor": null, + "value": "Closed" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Case Reason", + "name": "Reason", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Installation", + "validFor": null, + "value": "Installation" + }, + { + "active": true, + "defaultValue": false, + "label": "Equipment Complexity", + "validFor": null, + "value": "Equipment Complexity" + }, + { + "active": true, + "defaultValue": false, + "label": "Performance", + "validFor": null, + "value": "Performance" + }, + { + "active": true, + "defaultValue": false, + "label": "Breakdown", + "validFor": null, + "value": "Breakdown" + }, + { + "active": true, + "defaultValue": false, + "label": "Equipment Design", + "validFor": null, + "value": "Equipment Design" + }, + { + "active": true, + "defaultValue": false, + "label": "Feedback", + "validFor": null, + "value": "Feedback" + }, + { + "active": true, + "defaultValue": false, + "label": "Other", + "validFor": null, + "value": "Other" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Case Origin", + "name": "Origin", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Phone", + "validFor": null, + "value": "Phone" + }, + { + "active": true, + "defaultValue": false, + "label": "Email", + "validFor": null, + "value": "Email" + }, + { + "active": true, + "defaultValue": false, + "label": "Web", + "validFor": null, + "value": "Web" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Subject", + "name": "Subject", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": "Medium", + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Priority", + "name": "Priority", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "High", + "validFor": null, + "value": "High" + }, + { + "active": true, + "defaultValue": true, + "label": "Medium", + "validFor": null, + "value": "Medium" + }, + { + "active": true, + "defaultValue": false, + "label": "Low", + "validFor": null, + "value": "Low" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": false, + "groupable": false, + "inlineHelpText": null, + "label": "Description", + "name": "Description", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "textarea" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Closed", + "name": "IsClosed", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Closed Date", + "name": "ClosedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Escalated", + "name": "IsEscalated", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Owner ID", + "name": "OwnerId", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "Group", + "User" + ], + "relationshipName": "Owner", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Created Date", + "name": "CreatedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Created By ID", + "name": "CreatedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CreatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Modified Date", + "name": "LastModifiedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Modified By ID", + "name": "LastModifiedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "LastModifiedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "System Modstamp", + "name": "SystemModstamp", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Contact Phone", + "name": "ContactPhone", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "phone" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Contact Mobile", + "name": "ContactMobile", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "phone" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Contact Email", + "name": "ContactEmail", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "email" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Contact Fax", + "name": "ContactFax", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "phone" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": false, + "groupable": false, + "inlineHelpText": null, + "label": "Internal Comments", + "name": "Comments", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Viewed Date", + "name": "LastViewedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Referenced Date", + "name": "LastReferencedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + } + ], + "label": "Case", + "childRelationships": [ + { + "cascadeDelete": true, + "childSObject": "AIInsightValue", + "deprecatedAndHidden": false, + "field": "SobjectLookupValueId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AIRecordInsight", + "deprecatedAndHidden": false, + "field": "TargetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ActivityHistory", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ActivityHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AttachedContentDocument", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AttachedContentDocuments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Attachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Attachments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Case", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Cases", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseChangeEvent", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CaseComment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CaseComments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CaseContactRole", + "deprecatedAndHidden": false, + "field": "CasesId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CaseContactRoles", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CaseFeed", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Feeds", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CaseHistory", + "deprecatedAndHidden": false, + "field": "CaseId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Histories", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CaseMilestone", + "deprecatedAndHidden": false, + "field": "CaseId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CaseMilestones", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CaseShare", + "deprecatedAndHidden": false, + "field": "CaseId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Shares", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CaseSolution", + "deprecatedAndHidden": false, + "field": "CaseId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CaseSolutions", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CaseTeamMember", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "TeamMembers", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CaseTeamTemplateRecord", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "TeamTemplateRecords", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CollaborationGroupRecord", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordAssociatedGroups", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CombinedAttachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CombinedAttachments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactRequest", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContactRequests", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentDistribution", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentDocumentLink", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContentDocumentLinks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocumentLinkChangeEvent", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersion", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersionChangeEvent", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EmailMessage", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "EmailMessages", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessage", + "deprecatedAndHidden": false, + "field": "RelatedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Emails", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessageChangeEvent", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessageChangeEvent", + "deprecatedAndHidden": false, + "field": "RelatedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EntitySubscription", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "FeedSubscriptionsForEntity", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Event", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Events", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventChangeEvent", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventRelationChangeEvent", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FeedComment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FeedItem", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowExecutionErrorEvent", + "deprecatedAndHidden": false, + "field": "ContextRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationWorkItem", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowRecordRelation", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingSession", + "deprecatedAndHidden": false, + "field": "CaseId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "MessagingSessions", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OpenActivity", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OpenActivities", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessException", + "deprecatedAndHidden": false, + "field": "CaseId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProcessExceptions", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProcessInstance", + "deprecatedAndHidden": false, + "field": "TargetObjectId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProcessInstances", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessInstanceHistory", + "deprecatedAndHidden": false, + "field": "TargetObjectId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProcessSteps", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequest", + "deprecatedAndHidden": false, + "field": "CaseId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProductRequests", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestChangeEvent", + "deprecatedAndHidden": false, + "field": "CaseId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestLineItem", + "deprecatedAndHidden": false, + "field": "CaseId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProductRequestLineItems", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestLineItemChangeEvent", + "deprecatedAndHidden": false, + "field": "CaseId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "RecordAction", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActions", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordActionHistory", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActionHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrder", + "deprecatedAndHidden": false, + "field": "CaseId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ReturnOrders", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderChangeEvent", + "deprecatedAndHidden": false, + "field": "CaseId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ServiceAppointment", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ServiceAppointments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointmentChangeEvent", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Swarm", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Swarms", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "SwarmMember", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "SwarmMembers", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Task", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Tasks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TaskChangeEvent", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "TopicAssignment", + "deprecatedAndHidden": false, + "field": "EntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "TopicAssignments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrder", + "deprecatedAndHidden": false, + "field": "CaseId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "WorkOrders", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderChangeEvent", + "deprecatedAndHidden": false, + "field": "CaseId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + } + ], + "custom": false, + "name": "Case", + "queryable": true +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Contact.json b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Contact.json new file mode 100644 index 0000000000000000000000000000000000000000..8743d9b8566dbc0759c1932ca4e28a2cd351a0fd --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Contact.json @@ -0,0 +1,2309 @@ +{ + "fields": [ + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Contact ID", + "name": "Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "id" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Deleted", + "name": "IsDeleted", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Master Record ID", + "name": "MasterRecordId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Contact" + ], + "relationshipName": "MasterRecord", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Account ID", + "name": "AccountId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Account" + ], + "relationshipName": "Account", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "personname", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Name", + "name": "LastName", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "personname", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "First Name", + "name": "FirstName", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "personname", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Salutation", + "name": "Salutation", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Mr.", + "validFor": null, + "value": "Mr." + }, + { + "active": true, + "defaultValue": false, + "label": "Ms.", + "validFor": null, + "value": "Ms." + }, + { + "active": true, + "defaultValue": false, + "label": "Mrs.", + "validFor": null, + "value": "Mrs." + }, + { + "active": true, + "defaultValue": false, + "label": "Dr.", + "validFor": null, + "value": "Dr." + }, + { + "active": true, + "defaultValue": false, + "label": "Prof.", + "validFor": null, + "value": "Prof." + }, + { + "active": true, + "defaultValue": false, + "label": "Mx.", + "validFor": null, + "value": "Mx." + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "personname", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Full Name", + "name": "Name", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Other Street", + "name": "OtherStreet", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Other City", + "name": "OtherCity", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Other State/Province", + "name": "OtherState", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Other Zip/Postal Code", + "name": "OtherPostalCode", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Other Country", + "name": "OtherCountry", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Other Latitude", + "name": "OtherLatitude", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Other Longitude", + "name": "OtherLongitude", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Other Geocode Accuracy", + "name": "OtherGeocodeAccuracy", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Address", + "validFor": null, + "value": "Address" + }, + { + "active": true, + "defaultValue": false, + "label": "NearAddress", + "validFor": null, + "value": "NearAddress" + }, + { + "active": true, + "defaultValue": false, + "label": "Block", + "validFor": null, + "value": "Block" + }, + { + "active": true, + "defaultValue": false, + "label": "Street", + "validFor": null, + "value": "Street" + }, + { + "active": true, + "defaultValue": false, + "label": "ExtendedZip", + "validFor": null, + "value": "ExtendedZip" + }, + { + "active": true, + "defaultValue": false, + "label": "Zip", + "validFor": null, + "value": "Zip" + }, + { + "active": true, + "defaultValue": false, + "label": "Neighborhood", + "validFor": null, + "value": "Neighborhood" + }, + { + "active": true, + "defaultValue": false, + "label": "City", + "validFor": null, + "value": "City" + }, + { + "active": true, + "defaultValue": false, + "label": "County", + "validFor": null, + "value": "County" + }, + { + "active": true, + "defaultValue": false, + "label": "State", + "validFor": null, + "value": "State" + }, + { + "active": true, + "defaultValue": false, + "label": "Unknown", + "validFor": null, + "value": "Unknown" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Other Address", + "name": "OtherAddress", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "address" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Mailing Street", + "name": "MailingStreet", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Mailing City", + "name": "MailingCity", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Mailing State/Province", + "name": "MailingState", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Mailing Zip/Postal Code", + "name": "MailingPostalCode", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Mailing Country", + "name": "MailingCountry", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Mailing Latitude", + "name": "MailingLatitude", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Mailing Longitude", + "name": "MailingLongitude", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Mailing Geocode Accuracy", + "name": "MailingGeocodeAccuracy", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Address", + "validFor": null, + "value": "Address" + }, + { + "active": true, + "defaultValue": false, + "label": "NearAddress", + "validFor": null, + "value": "NearAddress" + }, + { + "active": true, + "defaultValue": false, + "label": "Block", + "validFor": null, + "value": "Block" + }, + { + "active": true, + "defaultValue": false, + "label": "Street", + "validFor": null, + "value": "Street" + }, + { + "active": true, + "defaultValue": false, + "label": "ExtendedZip", + "validFor": null, + "value": "ExtendedZip" + }, + { + "active": true, + "defaultValue": false, + "label": "Zip", + "validFor": null, + "value": "Zip" + }, + { + "active": true, + "defaultValue": false, + "label": "Neighborhood", + "validFor": null, + "value": "Neighborhood" + }, + { + "active": true, + "defaultValue": false, + "label": "City", + "validFor": null, + "value": "City" + }, + { + "active": true, + "defaultValue": false, + "label": "County", + "validFor": null, + "value": "County" + }, + { + "active": true, + "defaultValue": false, + "label": "State", + "validFor": null, + "value": "State" + }, + { + "active": true, + "defaultValue": false, + "label": "Unknown", + "validFor": null, + "value": "Unknown" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Mailing Address", + "name": "MailingAddress", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "address" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Business Phone", + "name": "Phone", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "phone" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Business Fax", + "name": "Fax", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "phone" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Mobile Phone", + "name": "MobilePhone", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "phone" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Home Phone", + "name": "HomePhone", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "phone" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Other Phone", + "name": "OtherPhone", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "phone" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Asst. Phone", + "name": "AssistantPhone", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "phone" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Reports To ID", + "name": "ReportsToId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Contact" + ], + "relationshipName": "ReportsTo", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Email", + "name": "Email", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "email" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Title", + "name": "Title", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Department", + "name": "Department", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Assistant's Name", + "name": "AssistantName", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Lead Source", + "name": "LeadSource", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Web", + "validFor": null, + "value": "Web" + }, + { + "active": true, + "defaultValue": false, + "label": "Phone Inquiry", + "validFor": null, + "value": "Phone Inquiry" + }, + { + "active": true, + "defaultValue": false, + "label": "Partner Referral", + "validFor": null, + "value": "Partner Referral" + }, + { + "active": true, + "defaultValue": false, + "label": "Purchased List", + "validFor": null, + "value": "Purchased List" + }, + { + "active": true, + "defaultValue": false, + "label": "Other", + "validFor": null, + "value": "Other" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Birthdate", + "name": "Birthdate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": false, + "groupable": false, + "inlineHelpText": null, + "label": "Contact Description", + "name": "Description", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Owner ID", + "name": "OwnerId", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "Owner", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Created Date", + "name": "CreatedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Created By ID", + "name": "CreatedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CreatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Modified Date", + "name": "LastModifiedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Modified By ID", + "name": "LastModifiedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "LastModifiedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "System Modstamp", + "name": "SystemModstamp", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Activity", + "name": "LastActivityDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Stay-in-Touch Request Date", + "name": "LastCURequestDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Stay-in-Touch Save Date", + "name": "LastCUUpdateDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Viewed Date", + "name": "LastViewedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Referenced Date", + "name": "LastReferencedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Email Bounced Reason", + "name": "EmailBouncedReason", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Email Bounced Date", + "name": "EmailBouncedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Is Email Bounced", + "name": "IsEmailBounced", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "imageurl", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Photo URL", + "name": "PhotoUrl", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "url" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Data.com Key", + "name": "Jigsaw", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Jigsaw Contact ID", + "name": "JigsawContactId", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": "JigsawContact", + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Clean Status", + "name": "CleanStatus", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "In Sync", + "validFor": null, + "value": "Matched" + }, + { + "active": true, + "defaultValue": false, + "label": "Different", + "validFor": null, + "value": "Different" + }, + { + "active": true, + "defaultValue": false, + "label": "Reviewed", + "validFor": null, + "value": "Acknowledged" + }, + { + "active": true, + "defaultValue": false, + "label": "Not Found", + "validFor": null, + "value": "NotFound" + }, + { + "active": true, + "defaultValue": false, + "label": "Inactive", + "validFor": null, + "value": "Inactive" + }, + { + "active": true, + "defaultValue": false, + "label": "Not Compared", + "validFor": null, + "value": "Pending" + }, + { + "active": true, + "defaultValue": false, + "label": "Select Match", + "validFor": null, + "value": "SelectMatch" + }, + { + "active": true, + "defaultValue": false, + "label": "Skipped", + "validFor": null, + "value": "Skipped" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Individual ID", + "name": "IndividualId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Individual" + ], + "relationshipName": "Individual", + "sortable": true, + "type": "reference" + } + ], + "label": "Contact", + "childRelationships": [ + { + "cascadeDelete": true, + "childSObject": "AIInsightValue", + "deprecatedAndHidden": false, + "field": "SobjectLookupValueId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AIRecordInsight", + "deprecatedAndHidden": false, + "field": "TargetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AcceptedEventRelation", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AcceptedEventRelations", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AccountContactRole", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AccountContactRoles", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AccountContactRoleChangeEvent", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ActivityHistory", + "deprecatedAndHidden": false, + "field": "WhoId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ActivityHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Asset", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Assets", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetChangeEvent", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AttachedContentDocument", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AttachedContentDocuments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Attachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Attachments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormConsent", + "deprecatedAndHidden": false, + "field": "ConsentGiverId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AuthorizationFormConsents", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "ConsentGiverId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CampaignMember", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CampaignMembers", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignMember", + "deprecatedAndHidden": false, + "field": "LeadOrContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignMemberChangeEvent", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Case", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Cases", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "CaseChangeEvent", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CaseContactRole", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CaseContactRoles", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CaseTeamMember", + "deprecatedAndHidden": false, + "field": "MemberId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CaseTeamTemplateMember", + "deprecatedAndHidden": false, + "field": "MemberId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CollaborationGroupRecord", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordAssociatedGroups", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CombinedAttachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CombinedAttachments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionConsent", + "deprecatedAndHidden": false, + "field": "ConsentGiverId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CommSubscriptionConsents", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "ConsentGiverId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Contact", + "deprecatedAndHidden": false, + "field": "ReportsToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactChangeEvent", + "deprecatedAndHidden": false, + "field": "ReportsToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContactCleanInfo", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContactCleanInfos", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContactFeed", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Feeds", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContactHistory", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Histories", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactRequest", + "deprecatedAndHidden": false, + "field": "WhoId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContactRequests", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContactShare", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Shares", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentDistribution", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentDocumentLink", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContentDocumentLinks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocumentLinkChangeEvent", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersion", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersionChangeEvent", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Contract", + "deprecatedAndHidden": false, + "field": "CustomerSignedId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContractsSigned", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "ContractChangeEvent", + "deprecatedAndHidden": false, + "field": "CustomerSignedId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContractContactRole", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContractContactRoles", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConversationParticipant", + "deprecatedAndHidden": false, + "field": "ParticipantEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ConversationParticipants", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CreditMemo", + "deprecatedAndHidden": false, + "field": "BillToContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CreditMemos", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DeclinedEventRelation", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "DeclinedEventRelations", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "DuplicateRecordItem", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "DuplicateRecordItems", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EmailMessageRelation", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "EmailMessageRelations", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EmailStatus", + "deprecatedAndHidden": false, + "field": "WhoId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "EmailStatuses", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EntitlementContact", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "EntitlementContacts", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EntitySubscription", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "FeedSubscriptionsForEntity", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Event", + "deprecatedAndHidden": false, + "field": "WhoId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Events", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventChangeEvent", + "deprecatedAndHidden": false, + "field": "WhoId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EventRelation", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "EventRelations", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventRelationChangeEvent", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FeedComment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FeedItem", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowExecutionErrorEvent", + "deprecatedAndHidden": false, + "field": "ContextRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationWorkItem", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowRecordRelation", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Invoice", + "deprecatedAndHidden": false, + "field": "BillToContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Invoices", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Lead", + "deprecatedAndHidden": false, + "field": "ConvertedContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LeadChangeEvent", + "deprecatedAndHidden": false, + "field": "ConvertedContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ListEmailIndividualRecipient", + "deprecatedAndHidden": false, + "field": "RecipientId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ListEmailIndividualRecipients", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenancePlan", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "MaintenancePlans", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenancePlanChangeEvent", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "MatchingInformation", + "deprecatedAndHidden": false, + "field": "SFDCIdId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingEndUser", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "MessagingEndUsers", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingSession", + "deprecatedAndHidden": false, + "field": "EndUserContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "MessagingSessions", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Note", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Notes", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "NoteAndAttachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "NotesAndAttachments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OpenActivity", + "deprecatedAndHidden": false, + "field": "WhoId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OpenActivities", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Opportunity", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Opportunities", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityChangeEvent", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OpportunityContactRole", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OpportunityContactRoles", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityContactRoleChangeEvent", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Order", + "deprecatedAndHidden": false, + "field": "BillToContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "Order", + "deprecatedAndHidden": false, + "field": "CustomerAuthorizedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "Order", + "deprecatedAndHidden": false, + "field": "ShipToContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "OrderChangeEvent", + "deprecatedAndHidden": false, + "field": "BillToContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderChangeEvent", + "deprecatedAndHidden": false, + "field": "CustomerAuthorizedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderChangeEvent", + "deprecatedAndHidden": false, + "field": "ShipToContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OutgoingEmail", + "deprecatedAndHidden": false, + "field": "WhoId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OutgoingEmailRelation", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OutgoingEmailRelations", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProcessInstance", + "deprecatedAndHidden": false, + "field": "TargetObjectId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProcessInstances", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessInstanceHistory", + "deprecatedAndHidden": false, + "field": "TargetObjectId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProcessSteps", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "RecordAction", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActions", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordActionHistory", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActionHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrder", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ReturnOrders", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderChangeEvent", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointment", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ServiceAppointments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointmentChangeEvent", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceContract", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ServiceContracts", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "ServiceContractChangeEvent", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Task", + "deprecatedAndHidden": false, + "field": "WhoId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Tasks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TaskChangeEvent", + "deprecatedAndHidden": false, + "field": "WhoId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "TopicAssignment", + "deprecatedAndHidden": false, + "field": "EntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "TopicAssignments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UndecidedEventRelation", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "UndecidedEventRelations", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "User", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Users", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "UserChangeEvent", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "UserEmailPreferredPerson", + "deprecatedAndHidden": false, + "field": "PersonRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "PersonRecord", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrder", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "WorkOrders", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderChangeEvent", + "deprecatedAndHidden": false, + "field": "ContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + } + ], + "custom": false, + "name": "Contact", + "queryable": true +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Contract.json b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Contract.json new file mode 100644 index 0000000000000000000000000000000000000000..72f0b60393781f820b7d2d3387a50cd807b278e1 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Contract.json @@ -0,0 +1,1304 @@ +{ + "fields": [ + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Contract ID", + "name": "Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "id" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Account ID", + "name": "AccountId", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "Account" + ], + "relationshipName": "Account", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Price Book ID", + "name": "Pricebook2Id", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Pricebook2" + ], + "relationshipName": "Pricebook2", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Owner Expiration Notice", + "name": "OwnerExpirationNotice", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "15 Days", + "validFor": null, + "value": "15" + }, + { + "active": true, + "defaultValue": false, + "label": "30 Days", + "validFor": null, + "value": "30" + }, + { + "active": true, + "defaultValue": false, + "label": "45 Days", + "validFor": null, + "value": "45" + }, + { + "active": true, + "defaultValue": false, + "label": "60 Days", + "validFor": null, + "value": "60" + }, + { + "active": true, + "defaultValue": false, + "label": "90 Days", + "validFor": null, + "value": "90" + }, + { + "active": true, + "defaultValue": false, + "label": "120 Days", + "validFor": null, + "value": "120" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Contract Start Date", + "name": "StartDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Contract End Date", + "name": "EndDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Billing Street", + "name": "BillingStreet", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Billing City", + "name": "BillingCity", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Billing State/Province", + "name": "BillingState", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Billing Zip/Postal Code", + "name": "BillingPostalCode", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Billing Country", + "name": "BillingCountry", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Billing Latitude", + "name": "BillingLatitude", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Billing Longitude", + "name": "BillingLongitude", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Billing Geocode Accuracy", + "name": "BillingGeocodeAccuracy", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Address", + "validFor": null, + "value": "Address" + }, + { + "active": true, + "defaultValue": false, + "label": "NearAddress", + "validFor": null, + "value": "NearAddress" + }, + { + "active": true, + "defaultValue": false, + "label": "Block", + "validFor": null, + "value": "Block" + }, + { + "active": true, + "defaultValue": false, + "label": "Street", + "validFor": null, + "value": "Street" + }, + { + "active": true, + "defaultValue": false, + "label": "ExtendedZip", + "validFor": null, + "value": "ExtendedZip" + }, + { + "active": true, + "defaultValue": false, + "label": "Zip", + "validFor": null, + "value": "Zip" + }, + { + "active": true, + "defaultValue": false, + "label": "Neighborhood", + "validFor": null, + "value": "Neighborhood" + }, + { + "active": true, + "defaultValue": false, + "label": "City", + "validFor": null, + "value": "City" + }, + { + "active": true, + "defaultValue": false, + "label": "County", + "validFor": null, + "value": "County" + }, + { + "active": true, + "defaultValue": false, + "label": "State", + "validFor": null, + "value": "State" + }, + { + "active": true, + "defaultValue": false, + "label": "Unknown", + "validFor": null, + "value": "Unknown" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Billing Address", + "name": "BillingAddress", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "address" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Contract Term", + "name": "ContractTerm", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "int" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Owner ID", + "name": "OwnerId", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "Owner", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Status", + "name": "Status", + "nillable": false, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "In Approval Process", + "validFor": null, + "value": "In Approval Process" + }, + { + "active": true, + "defaultValue": false, + "label": "Activated", + "validFor": null, + "value": "Activated" + }, + { + "active": true, + "defaultValue": false, + "label": "Draft", + "validFor": null, + "value": "Draft" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Company Signed By ID", + "name": "CompanySignedId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CompanySigned", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Company Signed Date", + "name": "CompanySignedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Customer Signed By ID", + "name": "CustomerSignedId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Contact" + ], + "relationshipName": "CustomerSigned", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Customer Signed Title", + "name": "CustomerSignedTitle", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Customer Signed Date", + "name": "CustomerSignedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Special Terms", + "name": "SpecialTerms", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Activated By ID", + "name": "ActivatedById", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "ActivatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Activated Date", + "name": "ActivatedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Status Category", + "name": "StatusCode", + "nillable": false, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Draft", + "validFor": null, + "value": "Draft" + }, + { + "active": true, + "defaultValue": false, + "label": "In Approval Process", + "validFor": null, + "value": "InApproval" + }, + { + "active": true, + "defaultValue": false, + "label": "Activated", + "validFor": null, + "value": "Activated" + }, + { + "active": true, + "defaultValue": false, + "label": "Terminated", + "validFor": null, + "value": "Terminated" + }, + { + "active": true, + "defaultValue": false, + "label": "Expired", + "validFor": null, + "value": "Expired" + }, + { + "active": true, + "defaultValue": false, + "label": "Rejected", + "validFor": null, + "value": "Rejected" + }, + { + "active": true, + "defaultValue": false, + "label": "Negotiating", + "validFor": null, + "value": "Negotiating" + }, + { + "active": true, + "defaultValue": false, + "label": "Awaiting Signature", + "validFor": null, + "value": "AwaitingSignature" + }, + { + "active": true, + "defaultValue": false, + "label": "Signature Declined", + "validFor": null, + "value": "SignatureDeclined" + }, + { + "active": true, + "defaultValue": false, + "label": "Signed", + "validFor": null, + "value": "Signed" + }, + { + "active": true, + "defaultValue": false, + "label": "Canceled", + "validFor": null, + "value": "Cancelled" + }, + { + "active": true, + "defaultValue": false, + "label": "Contract Expired", + "validFor": null, + "value": "Expired2" + }, + { + "active": true, + "defaultValue": false, + "label": "Contract Terminated", + "validFor": null, + "value": "Terminated2" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": false, + "groupable": false, + "inlineHelpText": null, + "label": "Description", + "name": "Description", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "textarea" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Deleted", + "name": "IsDeleted", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Contract Number", + "name": "ContractNumber", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Approved Date", + "name": "LastApprovedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Created Date", + "name": "CreatedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Created By ID", + "name": "CreatedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CreatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Modified Date", + "name": "LastModifiedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Modified By ID", + "name": "LastModifiedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "LastModifiedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "System Modstamp", + "name": "SystemModstamp", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Activity", + "name": "LastActivityDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Viewed Date", + "name": "LastViewedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Referenced Date", + "name": "LastReferencedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + } + ], + "label": "Contract", + "childRelationships": [ + { + "cascadeDelete": true, + "childSObject": "AIInsightValue", + "deprecatedAndHidden": false, + "field": "SobjectLookupValueId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AIRecordInsight", + "deprecatedAndHidden": false, + "field": "TargetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ActivityHistory", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ActivityHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AttachedContentDocument", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AttachedContentDocuments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Attachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Attachments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CollaborationGroupRecord", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordAssociatedGroups", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CombinedAttachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CombinedAttachments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentDocumentLink", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContentDocumentLinks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocumentLinkChangeEvent", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersion", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersionChangeEvent", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContractContactRole", + "deprecatedAndHidden": false, + "field": "ContractId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContractContactRoles", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContractFeed", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Feeds", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContractHistory", + "deprecatedAndHidden": false, + "field": "ContractId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Histories", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessage", + "deprecatedAndHidden": false, + "field": "RelatedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Emails", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessageChangeEvent", + "deprecatedAndHidden": false, + "field": "RelatedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EntitySubscription", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "FeedSubscriptionsForEntity", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Event", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Events", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventChangeEvent", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventRelationChangeEvent", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FeedComment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FeedItem", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowExecutionErrorEvent", + "deprecatedAndHidden": false, + "field": "ContextRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationWorkItem", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowRecordRelation", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Note", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Notes", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "NoteAndAttachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "NotesAndAttachments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OpenActivity", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OpenActivities", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Order", + "deprecatedAndHidden": false, + "field": "ContractId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Orders", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderChangeEvent", + "deprecatedAndHidden": false, + "field": "ContractId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OutgoingEmail", + "deprecatedAndHidden": false, + "field": "RelatedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProcessInstance", + "deprecatedAndHidden": false, + "field": "TargetObjectId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProcessInstances", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessInstanceHistory", + "deprecatedAndHidden": false, + "field": "TargetObjectId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProcessSteps", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "RecordAction", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActions", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordActionHistory", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActionHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Task", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Tasks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TaskChangeEvent", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "TopicAssignment", + "deprecatedAndHidden": false, + "field": "EntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "TopicAssignments", + "restrictedDelete": false + } + ], + "custom": false, + "name": "Contract", + "queryable": true +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Domain.json b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Domain.json new file mode 100644 index 0000000000000000000000000000000000000000..61dcd4e6a002d946a75307793adac04f7a7bf5ac --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Domain.json @@ -0,0 +1,293 @@ +{ + "fields": [ + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Domain ID", + "name": "Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "id" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Domain Type", + "name": "DomainType", + "nillable": false, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Domain Name System (DNS)", + "validFor": null, + "value": "DNS" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Domain Name", + "name": "Domain", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Allow Strict Transport Security preloading", + "name": "OptionsHstsPreload", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "CNAME Target", + "name": "CnameTarget", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Current HTTPS Option", + "name": "HttpsOption", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Content Delivery Network (CDN) partner of Salesforce", + "validFor": null, + "value": "CdnPartner" + }, + { + "active": true, + "defaultValue": false, + "label": "Salesforce Cloud", + "validFor": null, + "value": "SitesRuntime" + }, + { + "active": true, + "defaultValue": false, + "label": "Domain is served by an external host", + "validFor": null, + "value": "ExternalHttps" + }, + { + "active": true, + "defaultValue": false, + "label": "No HTTPS (Temporary)", + "validFor": null, + "value": "NoHttps" + }, + { + "active": true, + "defaultValue": false, + "label": "Experience Cloud Sites Force.com Domain", + "validFor": null, + "value": "Community" + }, + { + "active": true, + "defaultValue": false, + "label": "Experience Cloud Sites Domain", + "validFor": null, + "value": "CommunityAlt" + }, + { + "active": true, + "defaultValue": false, + "label": "Salesforce Sites Domain", + "validFor": null, + "value": "SitesAlt" + }, + { + "active": true, + "defaultValue": false, + "label": "Salesforce Sites Force.com Domain", + "validFor": null, + "value": "Sites" + }, + { + "active": true, + "defaultValue": false, + "label": "My Domain", + "validFor": null, + "value": "OrgDomain" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Created Date", + "name": "CreatedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Created By ID", + "name": "CreatedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CreatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Modified Date", + "name": "LastModifiedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Modified By ID", + "name": "LastModifiedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "LastModifiedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "System Modstamp", + "name": "SystemModstamp", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + } + ], + "label": "Domain", + "childRelationships": [ + { + "cascadeDelete": true, + "childSObject": "DomainSite", + "deprecatedAndHidden": false, + "field": "DomainId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "DomainSites", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ManagedContentChannel", + "deprecatedAndHidden": false, + "field": "Domain", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": true + } + ], + "custom": false, + "name": "Domain", + "queryable": true +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Lead.json b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Lead.json new file mode 100644 index 0000000000000000000000000000000000000000..4bc1ef3c56b2ff36d26111e007e55b16154d635d --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Lead.json @@ -0,0 +1,1977 @@ +{ + "fields": [ + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Lead ID", + "name": "Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "id" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Deleted", + "name": "IsDeleted", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Master Record ID", + "name": "MasterRecordId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Lead" + ], + "relationshipName": "MasterRecord", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "personname", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Name", + "name": "LastName", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "personname", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "First Name", + "name": "FirstName", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "personname", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Salutation", + "name": "Salutation", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Mr.", + "validFor": null, + "value": "Mr." + }, + { + "active": true, + "defaultValue": false, + "label": "Ms.", + "validFor": null, + "value": "Ms." + }, + { + "active": true, + "defaultValue": false, + "label": "Mrs.", + "validFor": null, + "value": "Mrs." + }, + { + "active": true, + "defaultValue": false, + "label": "Dr.", + "validFor": null, + "value": "Dr." + }, + { + "active": true, + "defaultValue": false, + "label": "Prof.", + "validFor": null, + "value": "Prof." + }, + { + "active": true, + "defaultValue": false, + "label": "Mx.", + "validFor": null, + "value": "Mx." + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "personname", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Full Name", + "name": "Name", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Title", + "name": "Title", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Company", + "name": "Company", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Street", + "name": "Street", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "City", + "name": "City", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "State/Province", + "name": "State", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Zip/Postal Code", + "name": "PostalCode", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Country", + "name": "Country", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Latitude", + "name": "Latitude", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Longitude", + "name": "Longitude", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Geocode Accuracy", + "name": "GeocodeAccuracy", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Address", + "validFor": null, + "value": "Address" + }, + { + "active": true, + "defaultValue": false, + "label": "NearAddress", + "validFor": null, + "value": "NearAddress" + }, + { + "active": true, + "defaultValue": false, + "label": "Block", + "validFor": null, + "value": "Block" + }, + { + "active": true, + "defaultValue": false, + "label": "Street", + "validFor": null, + "value": "Street" + }, + { + "active": true, + "defaultValue": false, + "label": "ExtendedZip", + "validFor": null, + "value": "ExtendedZip" + }, + { + "active": true, + "defaultValue": false, + "label": "Zip", + "validFor": null, + "value": "Zip" + }, + { + "active": true, + "defaultValue": false, + "label": "Neighborhood", + "validFor": null, + "value": "Neighborhood" + }, + { + "active": true, + "defaultValue": false, + "label": "City", + "validFor": null, + "value": "City" + }, + { + "active": true, + "defaultValue": false, + "label": "County", + "validFor": null, + "value": "County" + }, + { + "active": true, + "defaultValue": false, + "label": "State", + "validFor": null, + "value": "State" + }, + { + "active": true, + "defaultValue": false, + "label": "Unknown", + "validFor": null, + "value": "Unknown" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Address", + "name": "Address", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "address" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Phone", + "name": "Phone", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "phone" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Mobile Phone", + "name": "MobilePhone", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "phone" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Fax", + "name": "Fax", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "phone" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Email", + "name": "Email", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "email" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Website", + "name": "Website", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "url" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "imageurl", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Photo URL", + "name": "PhotoUrl", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "url" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": false, + "groupable": false, + "inlineHelpText": null, + "label": "Description", + "name": "Description", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Lead Source", + "name": "LeadSource", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Web", + "validFor": null, + "value": "Web" + }, + { + "active": true, + "defaultValue": false, + "label": "Phone Inquiry", + "validFor": null, + "value": "Phone Inquiry" + }, + { + "active": true, + "defaultValue": false, + "label": "Partner Referral", + "validFor": null, + "value": "Partner Referral" + }, + { + "active": true, + "defaultValue": false, + "label": "Purchased List", + "validFor": null, + "value": "Purchased List" + }, + { + "active": true, + "defaultValue": false, + "label": "Other", + "validFor": null, + "value": "Other" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": "Open - Not Contacted", + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Status", + "name": "Status", + "nillable": false, + "picklistValues": [ + { + "active": true, + "defaultValue": true, + "label": "Open - Not Contacted", + "validFor": null, + "value": "Open - Not Contacted" + }, + { + "active": true, + "defaultValue": false, + "label": "Working - Contacted", + "validFor": null, + "value": "Working - Contacted" + }, + { + "active": true, + "defaultValue": false, + "label": "Closed - Converted", + "validFor": null, + "value": "Closed - Converted" + }, + { + "active": true, + "defaultValue": false, + "label": "Closed - Not Converted", + "validFor": null, + "value": "Closed - Not Converted" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Industry", + "name": "Industry", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Agriculture", + "validFor": null, + "value": "Agriculture" + }, + { + "active": true, + "defaultValue": false, + "label": "Apparel", + "validFor": null, + "value": "Apparel" + }, + { + "active": true, + "defaultValue": false, + "label": "Banking", + "validFor": null, + "value": "Banking" + }, + { + "active": true, + "defaultValue": false, + "label": "Biotechnology", + "validFor": null, + "value": "Biotechnology" + }, + { + "active": true, + "defaultValue": false, + "label": "Chemicals", + "validFor": null, + "value": "Chemicals" + }, + { + "active": true, + "defaultValue": false, + "label": "Communications", + "validFor": null, + "value": "Communications" + }, + { + "active": true, + "defaultValue": false, + "label": "Construction", + "validFor": null, + "value": "Construction" + }, + { + "active": true, + "defaultValue": false, + "label": "Consulting", + "validFor": null, + "value": "Consulting" + }, + { + "active": true, + "defaultValue": false, + "label": "Education", + "validFor": null, + "value": "Education" + }, + { + "active": true, + "defaultValue": false, + "label": "Electronics", + "validFor": null, + "value": "Electronics" + }, + { + "active": true, + "defaultValue": false, + "label": "Energy", + "validFor": null, + "value": "Energy" + }, + { + "active": true, + "defaultValue": false, + "label": "Engineering", + "validFor": null, + "value": "Engineering" + }, + { + "active": true, + "defaultValue": false, + "label": "Entertainment", + "validFor": null, + "value": "Entertainment" + }, + { + "active": true, + "defaultValue": false, + "label": "Environmental", + "validFor": null, + "value": "Environmental" + }, + { + "active": true, + "defaultValue": false, + "label": "Finance", + "validFor": null, + "value": "Finance" + }, + { + "active": true, + "defaultValue": false, + "label": "Food & Beverage", + "validFor": null, + "value": "Food & Beverage" + }, + { + "active": true, + "defaultValue": false, + "label": "Government", + "validFor": null, + "value": "Government" + }, + { + "active": true, + "defaultValue": false, + "label": "Healthcare", + "validFor": null, + "value": "Healthcare" + }, + { + "active": true, + "defaultValue": false, + "label": "Hospitality", + "validFor": null, + "value": "Hospitality" + }, + { + "active": true, + "defaultValue": false, + "label": "Insurance", + "validFor": null, + "value": "Insurance" + }, + { + "active": true, + "defaultValue": false, + "label": "Machinery", + "validFor": null, + "value": "Machinery" + }, + { + "active": true, + "defaultValue": false, + "label": "Manufacturing", + "validFor": null, + "value": "Manufacturing" + }, + { + "active": true, + "defaultValue": false, + "label": "Media", + "validFor": null, + "value": "Media" + }, + { + "active": true, + "defaultValue": false, + "label": "Not For Profit", + "validFor": null, + "value": "Not For Profit" + }, + { + "active": true, + "defaultValue": false, + "label": "Recreation", + "validFor": null, + "value": "Recreation" + }, + { + "active": true, + "defaultValue": false, + "label": "Retail", + "validFor": null, + "value": "Retail" + }, + { + "active": true, + "defaultValue": false, + "label": "Shipping", + "validFor": null, + "value": "Shipping" + }, + { + "active": true, + "defaultValue": false, + "label": "Technology", + "validFor": null, + "value": "Technology" + }, + { + "active": true, + "defaultValue": false, + "label": "Telecommunications", + "validFor": null, + "value": "Telecommunications" + }, + { + "active": true, + "defaultValue": false, + "label": "Transportation", + "validFor": null, + "value": "Transportation" + }, + { + "active": true, + "defaultValue": false, + "label": "Utilities", + "validFor": null, + "value": "Utilities" + }, + { + "active": true, + "defaultValue": false, + "label": "Other", + "validFor": null, + "value": "Other" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Rating", + "name": "Rating", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Hot", + "validFor": null, + "value": "Hot" + }, + { + "active": true, + "defaultValue": false, + "label": "Warm", + "validFor": null, + "value": "Warm" + }, + { + "active": true, + "defaultValue": false, + "label": "Cold", + "validFor": null, + "value": "Cold" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Annual Revenue", + "name": "AnnualRevenue", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "currency" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Employees", + "name": "NumberOfEmployees", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "int" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Owner ID", + "name": "OwnerId", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "Group", + "User" + ], + "relationshipName": "Owner", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Converted", + "name": "IsConverted", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Converted Date", + "name": "ConvertedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Converted Account ID", + "name": "ConvertedAccountId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Account" + ], + "relationshipName": "ConvertedAccount", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Converted Contact ID", + "name": "ConvertedContactId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Contact" + ], + "relationshipName": "ConvertedContact", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Converted Opportunity ID", + "name": "ConvertedOpportunityId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Opportunity" + ], + "relationshipName": "ConvertedOpportunity", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Unread By Owner", + "name": "IsUnreadByOwner", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Created Date", + "name": "CreatedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Created By ID", + "name": "CreatedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CreatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Modified Date", + "name": "LastModifiedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Modified By ID", + "name": "LastModifiedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "LastModifiedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "System Modstamp", + "name": "SystemModstamp", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Activity", + "name": "LastActivityDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Viewed Date", + "name": "LastViewedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Referenced Date", + "name": "LastReferencedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Data.com Key", + "name": "Jigsaw", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Jigsaw Contact ID", + "name": "JigsawContactId", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": "JigsawContact", + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Clean Status", + "name": "CleanStatus", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "In Sync", + "validFor": null, + "value": "Matched" + }, + { + "active": true, + "defaultValue": false, + "label": "Different", + "validFor": null, + "value": "Different" + }, + { + "active": true, + "defaultValue": false, + "label": "Reviewed", + "validFor": null, + "value": "Acknowledged" + }, + { + "active": true, + "defaultValue": false, + "label": "Not Found", + "validFor": null, + "value": "NotFound" + }, + { + "active": true, + "defaultValue": false, + "label": "Inactive", + "validFor": null, + "value": "Inactive" + }, + { + "active": true, + "defaultValue": false, + "label": "Not Compared", + "validFor": null, + "value": "Pending" + }, + { + "active": true, + "defaultValue": false, + "label": "Select Match", + "validFor": null, + "value": "SelectMatch" + }, + { + "active": true, + "defaultValue": false, + "label": "Skipped", + "validFor": null, + "value": "Skipped" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Company D-U-N-S Number", + "name": "CompanyDunsNumber", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "D&B Company ID", + "name": "DandbCompanyId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "DandBCompany" + ], + "relationshipName": "DandbCompany", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Email Bounced Reason", + "name": "EmailBouncedReason", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Email Bounced Date", + "name": "EmailBouncedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Individual ID", + "name": "IndividualId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Individual" + ], + "relationshipName": "Individual", + "sortable": true, + "type": "reference" + } + ], + "label": "Lead", + "childRelationships": [ + { + "cascadeDelete": true, + "childSObject": "AIInsightValue", + "deprecatedAndHidden": false, + "field": "SobjectLookupValueId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AIRecordInsight", + "deprecatedAndHidden": false, + "field": "TargetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AcceptedEventRelation", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AcceptedEventRelations", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ActivityHistory", + "deprecatedAndHidden": false, + "field": "WhoId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ActivityHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AttachedContentDocument", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AttachedContentDocuments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Attachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Attachments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CampaignMember", + "deprecatedAndHidden": false, + "field": "LeadId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CampaignMembers", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignMember", + "deprecatedAndHidden": false, + "field": "LeadOrContactId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignMemberChangeEvent", + "deprecatedAndHidden": false, + "field": "LeadId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CollaborationGroupRecord", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordAssociatedGroups", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CombinedAttachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CombinedAttachments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactRequest", + "deprecatedAndHidden": false, + "field": "WhoId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContactRequests", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentDistribution", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentDocumentLink", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContentDocumentLinks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocumentLinkChangeEvent", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersion", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersionChangeEvent", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DeclinedEventRelation", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "DeclinedEventRelations", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "DuplicateRecordItem", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "DuplicateRecordItems", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EmailMessageRelation", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "EmailMessageRelations", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EmailStatus", + "deprecatedAndHidden": false, + "field": "WhoId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "EmailStatuses", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EntitySubscription", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "FeedSubscriptionsForEntity", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Event", + "deprecatedAndHidden": false, + "field": "WhoId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Events", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventChangeEvent", + "deprecatedAndHidden": false, + "field": "WhoId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EventRelation", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "EventRelations", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventRelationChangeEvent", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FeedComment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FeedItem", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowExecutionErrorEvent", + "deprecatedAndHidden": false, + "field": "ContextRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationWorkItem", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowRecordRelation", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "LeadCleanInfo", + "deprecatedAndHidden": false, + "field": "LeadId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "LeadCleanInfos", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "LeadFeed", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Feeds", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "LeadHistory", + "deprecatedAndHidden": false, + "field": "LeadId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Histories", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "LeadShare", + "deprecatedAndHidden": false, + "field": "LeadId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Shares", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ListEmailIndividualRecipient", + "deprecatedAndHidden": false, + "field": "RecipientId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ListEmailIndividualRecipients", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingEndUser", + "deprecatedAndHidden": false, + "field": "LeadId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "MessagingEndUsers", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingSession", + "deprecatedAndHidden": false, + "field": "LeadId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "MessagingSessions", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Note", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Notes", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "NoteAndAttachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "NotesAndAttachments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OpenActivity", + "deprecatedAndHidden": false, + "field": "WhoId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OpenActivities", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OutgoingEmail", + "deprecatedAndHidden": false, + "field": "WhoId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OutgoingEmailRelation", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OutgoingEmailRelations", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProcessInstance", + "deprecatedAndHidden": false, + "field": "TargetObjectId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProcessInstances", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessInstanceHistory", + "deprecatedAndHidden": false, + "field": "TargetObjectId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProcessSteps", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "RecordAction", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActions", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordActionHistory", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActionHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ServiceAppointment", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ServiceAppointments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointmentChangeEvent", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Task", + "deprecatedAndHidden": false, + "field": "WhoId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Tasks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TaskChangeEvent", + "deprecatedAndHidden": false, + "field": "WhoId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "TopicAssignment", + "deprecatedAndHidden": false, + "field": "EntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "TopicAssignments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UndecidedEventRelation", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "UndecidedEventRelations", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "UserEmailPreferredPerson", + "deprecatedAndHidden": false, + "field": "PersonRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "PersonRecord", + "restrictedDelete": false + } + ], + "custom": false, + "name": "Lead", + "queryable": true +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Note.json b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Note.json new file mode 100644 index 0000000000000000000000000000000000000000..883f23116bc8b105b48b5d0a951a77ff6f040e8b --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Note.json @@ -0,0 +1,303 @@ +{ + "fields": [ + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Note Id", + "name": "Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "id" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Deleted", + "name": "IsDeleted", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Parent ID", + "name": "ParentId", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "Account", + "ApptBundleAggrDurDnscale", + "ApptBundleAggrPolicy", + "ApptBundleConfig", + "ApptBundlePolicy", + "ApptBundlePolicySvcTerr", + "ApptBundlePropagatePolicy", + "ApptBundleRestrictPolicy", + "ApptBundleSortPolicy", + "Asset", + "AssetDowntimePeriod", + "AssetWarranty", + "AttributeDefinition", + "Broker__c", + "CommSubscription", + "CommSubscriptionChannelType", + "CommSubscriptionConsent", + "CommSubscriptionTiming", + "Contact", + "Contract", + "ContractLineItem", + "ContractLineOutcome", + "CreditMemo", + "EngagementChannelType", + "Entitlement", + "Image", + "Invoice", + "JobProfile", + "Lead", + "LegalEntity", + "Location", + "MaintenancePlan", + "Opportunity", + "Order", + "Product2", + "ProductConsumed", + "ProductItem", + "ProductRequest", + "ProductRequestLineItem", + "ProductRequired", + "ProductServiceCampaign", + "ProductServiceCampaignItem", + "ProductTransfer", + "ProductWarrantyTerm", + "Property__c", + "ReturnOrder", + "ReturnOrderLineItem", + "SerializedProduct", + "SerializedProductTransaction", + "ServiceAppointment", + "ServiceContract", + "ServiceResource", + "Shift", + "TravelMode", + "WarrantyTerm", + "WorkOrder", + "WorkOrderLineItem", + "WorkPlan", + "WorkPlanSelectionRule", + "WorkPlanTemplate", + "WorkStep", + "WorkStepTemplate" + ], + "relationshipName": "Parent", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Title", + "name": "Title", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Private", + "name": "IsPrivate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": false, + "groupable": false, + "inlineHelpText": null, + "label": "Body", + "name": "Body", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Owner ID", + "name": "OwnerId", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "Owner", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Created Date", + "name": "CreatedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Created By ID", + "name": "CreatedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CreatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Modified Date", + "name": "LastModifiedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Modified By ID", + "name": "LastModifiedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "LastModifiedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "System Modstamp", + "name": "SystemModstamp", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + } + ], + "label": "Note", + "childRelationships": [ + { + "cascadeDelete": false, + "childSObject": "FlowExecutionErrorEvent", + "deprecatedAndHidden": false, + "field": "ContextRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowRecordRelation", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + } + ], + "custom": false, + "name": "Note", + "queryable": true +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Opportunity.json b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Opportunity.json new file mode 100644 index 0000000000000000000000000000000000000000..daee2c261f85638a6be442fa36e362c2783c2d25 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Opportunity.json @@ -0,0 +1,1470 @@ +{ + "fields": [ + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Opportunity ID", + "name": "Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "id" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Deleted", + "name": "IsDeleted", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Account ID", + "name": "AccountId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Account" + ], + "relationshipName": "Account", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Private", + "name": "IsPrivate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Name", + "name": "Name", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": false, + "groupable": false, + "inlineHelpText": null, + "label": "Description", + "name": "Description", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Stage", + "name": "StageName", + "nillable": false, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Prospecting", + "validFor": null, + "value": "Prospecting" + }, + { + "active": true, + "defaultValue": false, + "label": "Qualification", + "validFor": null, + "value": "Qualification" + }, + { + "active": true, + "defaultValue": false, + "label": "Needs Analysis", + "validFor": null, + "value": "Needs Analysis" + }, + { + "active": true, + "defaultValue": false, + "label": "Value Proposition", + "validFor": null, + "value": "Value Proposition" + }, + { + "active": true, + "defaultValue": false, + "label": "Id. Decision Makers", + "validFor": null, + "value": "Id. Decision Makers" + }, + { + "active": true, + "defaultValue": false, + "label": "Perception Analysis", + "validFor": null, + "value": "Perception Analysis" + }, + { + "active": true, + "defaultValue": false, + "label": "Proposal/Price Quote", + "validFor": null, + "value": "Proposal/Price Quote" + }, + { + "active": true, + "defaultValue": false, + "label": "Negotiation/Review", + "validFor": null, + "value": "Negotiation/Review" + }, + { + "active": true, + "defaultValue": false, + "label": "Closed Won", + "validFor": null, + "value": "Closed Won" + }, + { + "active": true, + "defaultValue": false, + "label": "Closed Lost", + "validFor": null, + "value": "Closed Lost" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Amount", + "name": "Amount", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "currency" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Probability (%)", + "name": "Probability", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "percent" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Expected Amount", + "name": "ExpectedRevenue", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "currency" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Quantity", + "name": "TotalOpportunityQuantity", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Close Date", + "name": "CloseDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Opportunity Type", + "name": "Type", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Existing Customer - Upgrade", + "validFor": null, + "value": "Existing Customer - Upgrade" + }, + { + "active": true, + "defaultValue": false, + "label": "Existing Customer - Replacement", + "validFor": null, + "value": "Existing Customer - Replacement" + }, + { + "active": true, + "defaultValue": false, + "label": "Existing Customer - Downgrade", + "validFor": null, + "value": "Existing Customer - Downgrade" + }, + { + "active": true, + "defaultValue": false, + "label": "New Customer", + "validFor": null, + "value": "New Customer" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Next Step", + "name": "NextStep", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Lead Source", + "name": "LeadSource", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Web", + "validFor": null, + "value": "Web" + }, + { + "active": true, + "defaultValue": false, + "label": "Phone Inquiry", + "validFor": null, + "value": "Phone Inquiry" + }, + { + "active": true, + "defaultValue": false, + "label": "Partner Referral", + "validFor": null, + "value": "Partner Referral" + }, + { + "active": true, + "defaultValue": false, + "label": "Purchased List", + "validFor": null, + "value": "Purchased List" + }, + { + "active": true, + "defaultValue": false, + "label": "Other", + "validFor": null, + "value": "Other" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Closed", + "name": "IsClosed", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Won", + "name": "IsWon", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Forecast Category", + "name": "ForecastCategory", + "nillable": false, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Omitted", + "validFor": null, + "value": "Omitted" + }, + { + "active": true, + "defaultValue": false, + "label": "Pipeline", + "validFor": null, + "value": "Pipeline" + }, + { + "active": true, + "defaultValue": false, + "label": "Best Case", + "validFor": null, + "value": "BestCase" + }, + { + "active": true, + "defaultValue": false, + "label": "Most Likely", + "validFor": null, + "value": "MostLikely" + }, + { + "active": true, + "defaultValue": false, + "label": "Commit", + "validFor": null, + "value": "Forecast" + }, + { + "active": true, + "defaultValue": false, + "label": "Closed", + "validFor": null, + "value": "Closed" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Forecast Category", + "name": "ForecastCategoryName", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Omitted", + "validFor": null, + "value": "Omitted" + }, + { + "active": true, + "defaultValue": false, + "label": "Pipeline", + "validFor": null, + "value": "Pipeline" + }, + { + "active": true, + "defaultValue": false, + "label": "Best Case", + "validFor": null, + "value": "Best Case" + }, + { + "active": true, + "defaultValue": false, + "label": "Commit", + "validFor": null, + "value": "Commit" + }, + { + "active": true, + "defaultValue": false, + "label": "Closed", + "validFor": null, + "value": "Closed" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Campaign ID", + "name": "CampaignId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Campaign" + ], + "relationshipName": "Campaign", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Has Line Item", + "name": "HasOpportunityLineItem", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Price Book ID", + "name": "Pricebook2Id", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Pricebook2" + ], + "relationshipName": "Pricebook2", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Owner ID", + "name": "OwnerId", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "Owner", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Created Date", + "name": "CreatedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Created By ID", + "name": "CreatedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CreatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Modified Date", + "name": "LastModifiedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Modified By ID", + "name": "LastModifiedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "LastModifiedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "System Modstamp", + "name": "SystemModstamp", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Activity", + "name": "LastActivityDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Push Count", + "name": "PushCount", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "int" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Stage Change Date", + "name": "LastStageChangeDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Fiscal Quarter", + "name": "FiscalQuarter", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "int" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Fiscal Year", + "name": "FiscalYear", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "int" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Fiscal Period", + "name": "Fiscal", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Contact ID", + "name": "ContactId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Contact" + ], + "relationshipName": null, + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Viewed Date", + "name": "LastViewedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Referenced Date", + "name": "LastReferencedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": false, + "groupable": true, + "inlineHelpText": null, + "label": "Has Open Activity", + "name": "HasOpenActivity", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": false, + "groupable": true, + "inlineHelpText": null, + "label": "Has Overdue Task", + "name": "HasOverdueTask", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Opportunity History ID", + "name": "LastAmountChangedHistoryId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "OpportunityHistory" + ], + "relationshipName": "LastAmountChangedHistory", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Opportunity History ID", + "name": "LastCloseDateChangedHistoryId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "OpportunityHistory" + ], + "relationshipName": "LastCloseDateChangedHistory", + "sortable": true, + "type": "reference" + } + ], + "label": "Opportunity", + "childRelationships": [ + { + "cascadeDelete": true, + "childSObject": "AIInsightValue", + "deprecatedAndHidden": false, + "field": "SobjectLookupValueId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AIRecordInsight", + "deprecatedAndHidden": false, + "field": "TargetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AccountPartner", + "deprecatedAndHidden": false, + "field": "OpportunityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AccountPartners", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ActivityHistory", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ActivityHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AttachedContentDocument", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AttachedContentDocuments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Attachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Attachments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CollaborationGroupRecord", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordAssociatedGroups", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CombinedAttachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CombinedAttachments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactRequest", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContactRequests", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentDistribution", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentDocumentLink", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContentDocumentLinks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocumentLinkChangeEvent", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersion", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersionChangeEvent", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessage", + "deprecatedAndHidden": false, + "field": "RelatedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Emails", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessageChangeEvent", + "deprecatedAndHidden": false, + "field": "RelatedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EntitySubscription", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "FeedSubscriptionsForEntity", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Event", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Events", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventChangeEvent", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventRelationChangeEvent", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FeedComment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FeedItem", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowExecutionErrorEvent", + "deprecatedAndHidden": false, + "field": "ContextRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationWorkItem", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowRecordRelation", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Lead", + "deprecatedAndHidden": false, + "field": "ConvertedOpportunityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LeadChangeEvent", + "deprecatedAndHidden": false, + "field": "ConvertedOpportunityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingSession", + "deprecatedAndHidden": false, + "field": "OpportunityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "MessagingSessions", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Note", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Notes", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "NoteAndAttachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "NotesAndAttachments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OpenActivity", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OpenActivities", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OpportunityCompetitor", + "deprecatedAndHidden": false, + "field": "OpportunityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OpportunityCompetitors", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OpportunityContactRole", + "deprecatedAndHidden": false, + "field": "OpportunityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OpportunityContactRoles", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityContactRoleChangeEvent", + "deprecatedAndHidden": false, + "field": "OpportunityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OpportunityFeed", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Feeds", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OpportunityFieldHistory", + "deprecatedAndHidden": false, + "field": "OpportunityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Histories", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OpportunityHistory", + "deprecatedAndHidden": false, + "field": "OpportunityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OpportunityHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OpportunityLineItem", + "deprecatedAndHidden": false, + "field": "OpportunityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OpportunityLineItems", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OpportunityPartner", + "deprecatedAndHidden": false, + "field": "OpportunityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OpportunityPartnersFrom", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OpportunityShare", + "deprecatedAndHidden": false, + "field": "OpportunityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Shares", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OutgoingEmail", + "deprecatedAndHidden": false, + "field": "RelatedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Partner", + "deprecatedAndHidden": false, + "field": "OpportunityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Partners", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProcessInstance", + "deprecatedAndHidden": false, + "field": "TargetObjectId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProcessInstances", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessInstanceHistory", + "deprecatedAndHidden": false, + "field": "TargetObjectId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProcessSteps", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "RecordAction", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActions", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordActionHistory", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActionHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ServiceAppointment", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ServiceAppointments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointmentChangeEvent", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Swarm", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Swarms", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "SwarmMember", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "SwarmMembers", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Task", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Tasks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TaskChangeEvent", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "TopicAssignment", + "deprecatedAndHidden": false, + "field": "EntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "TopicAssignments", + "restrictedDelete": false + } + ], + "custom": false, + "name": "Opportunity", + "queryable": true +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Order.json b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Order.json new file mode 100644 index 0000000000000000000000000000000000000000..8b97e1df394953db56f401b256bcf749ae81edbb --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Order.json @@ -0,0 +1,1646 @@ +{ + "fields": [ + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Order ID", + "name": "Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "id" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Owner ID", + "name": "OwnerId", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "Group", + "User" + ], + "relationshipName": "Owner", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Contract ID", + "name": "ContractId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Contract" + ], + "relationshipName": "Contract", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Account ID", + "name": "AccountId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Account" + ], + "relationshipName": "Account", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Price Book ID", + "name": "Pricebook2Id", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Pricebook2" + ], + "relationshipName": "Pricebook2", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Order ID", + "name": "OriginalOrderId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Order" + ], + "relationshipName": "OriginalOrder", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Order Start Date", + "name": "EffectiveDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Order End Date", + "name": "EndDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Reduction Order", + "name": "IsReductionOrder", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Status", + "name": "Status", + "nillable": false, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Draft", + "validFor": null, + "value": "Draft" + }, + { + "active": true, + "defaultValue": false, + "label": "Activated", + "validFor": null, + "value": "Activated" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": false, + "groupable": false, + "inlineHelpText": null, + "label": "Description", + "name": "Description", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Customer Authorized By ID", + "name": "CustomerAuthorizedById", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Contact" + ], + "relationshipName": "CustomerAuthorizedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Customer Authorized Date", + "name": "CustomerAuthorizedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Company Authorized By ID", + "name": "CompanyAuthorizedById", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CompanyAuthorizedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Company Authorized Date", + "name": "CompanyAuthorizedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Order Type", + "name": "Type", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Billing Street", + "name": "BillingStreet", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Billing City", + "name": "BillingCity", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Billing State/Province", + "name": "BillingState", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Billing Zip/Postal Code", + "name": "BillingPostalCode", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Billing Country", + "name": "BillingCountry", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Billing Latitude", + "name": "BillingLatitude", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Billing Longitude", + "name": "BillingLongitude", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Billing Geocode Accuracy", + "name": "BillingGeocodeAccuracy", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Address", + "validFor": null, + "value": "Address" + }, + { + "active": true, + "defaultValue": false, + "label": "NearAddress", + "validFor": null, + "value": "NearAddress" + }, + { + "active": true, + "defaultValue": false, + "label": "Block", + "validFor": null, + "value": "Block" + }, + { + "active": true, + "defaultValue": false, + "label": "Street", + "validFor": null, + "value": "Street" + }, + { + "active": true, + "defaultValue": false, + "label": "ExtendedZip", + "validFor": null, + "value": "ExtendedZip" + }, + { + "active": true, + "defaultValue": false, + "label": "Zip", + "validFor": null, + "value": "Zip" + }, + { + "active": true, + "defaultValue": false, + "label": "Neighborhood", + "validFor": null, + "value": "Neighborhood" + }, + { + "active": true, + "defaultValue": false, + "label": "City", + "validFor": null, + "value": "City" + }, + { + "active": true, + "defaultValue": false, + "label": "County", + "validFor": null, + "value": "County" + }, + { + "active": true, + "defaultValue": false, + "label": "State", + "validFor": null, + "value": "State" + }, + { + "active": true, + "defaultValue": false, + "label": "Unknown", + "validFor": null, + "value": "Unknown" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Billing Address", + "name": "BillingAddress", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "address" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Shipping Street", + "name": "ShippingStreet", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Shipping City", + "name": "ShippingCity", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Shipping State/Province", + "name": "ShippingState", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Shipping Zip/Postal Code", + "name": "ShippingPostalCode", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Shipping Country", + "name": "ShippingCountry", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Shipping Latitude", + "name": "ShippingLatitude", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Shipping Longitude", + "name": "ShippingLongitude", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Shipping Geocode Accuracy", + "name": "ShippingGeocodeAccuracy", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Address", + "validFor": null, + "value": "Address" + }, + { + "active": true, + "defaultValue": false, + "label": "NearAddress", + "validFor": null, + "value": "NearAddress" + }, + { + "active": true, + "defaultValue": false, + "label": "Block", + "validFor": null, + "value": "Block" + }, + { + "active": true, + "defaultValue": false, + "label": "Street", + "validFor": null, + "value": "Street" + }, + { + "active": true, + "defaultValue": false, + "label": "ExtendedZip", + "validFor": null, + "value": "ExtendedZip" + }, + { + "active": true, + "defaultValue": false, + "label": "Zip", + "validFor": null, + "value": "Zip" + }, + { + "active": true, + "defaultValue": false, + "label": "Neighborhood", + "validFor": null, + "value": "Neighborhood" + }, + { + "active": true, + "defaultValue": false, + "label": "City", + "validFor": null, + "value": "City" + }, + { + "active": true, + "defaultValue": false, + "label": "County", + "validFor": null, + "value": "County" + }, + { + "active": true, + "defaultValue": false, + "label": "State", + "validFor": null, + "value": "State" + }, + { + "active": true, + "defaultValue": false, + "label": "Unknown", + "validFor": null, + "value": "Unknown" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Shipping Address", + "name": "ShippingAddress", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "address" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Order Name", + "name": "Name", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "PO Date", + "name": "PoDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "PO Number", + "name": "PoNumber", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Order Reference Number", + "name": "OrderReferenceNumber", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Bill To Contact ID", + "name": "BillToContactId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Contact" + ], + "relationshipName": "BillToContact", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Ship To Contact ID", + "name": "ShipToContactId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Contact" + ], + "relationshipName": "ShipToContact", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Activated Date", + "name": "ActivatedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Activated By ID", + "name": "ActivatedById", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "ActivatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Status Category", + "name": "StatusCode", + "nillable": false, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Draft", + "validFor": null, + "value": "Draft" + }, + { + "active": true, + "defaultValue": false, + "label": "Activated", + "validFor": null, + "value": "Activated" + }, + { + "active": true, + "defaultValue": false, + "label": "Cancelled", + "validFor": null, + "value": "Canceled" + }, + { + "active": true, + "defaultValue": false, + "label": "Expired", + "validFor": null, + "value": "Expired" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Order Number", + "name": "OrderNumber", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Order Amount", + "name": "TotalAmount", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "currency" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Created Date", + "name": "CreatedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Created By ID", + "name": "CreatedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CreatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Modified Date", + "name": "LastModifiedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Modified By ID", + "name": "LastModifiedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "LastModifiedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Deleted", + "name": "IsDeleted", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "System Modstamp", + "name": "SystemModstamp", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Viewed Date", + "name": "LastViewedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Referenced Date", + "name": "LastReferencedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + } + ], + "label": "Order", + "childRelationships": [ + { + "cascadeDelete": true, + "childSObject": "AIInsightValue", + "deprecatedAndHidden": false, + "field": "SobjectLookupValueId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AIRecordInsight", + "deprecatedAndHidden": false, + "field": "TargetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ActivityHistory", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ActivityHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AppUsageAssignment", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AppUsageAssignments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AttachedContentDocument", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AttachedContentDocuments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Attachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Attachments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CombinedAttachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CombinedAttachments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentDocumentLink", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContentDocumentLinks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocumentLinkChangeEvent", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersion", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersionChangeEvent", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CreditMemo", + "deprecatedAndHidden": false, + "field": "ReferenceEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CreditMemos", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "DigitalSignature", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "DigitalSignatures", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DigitalSignatureChangeEvent", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessage", + "deprecatedAndHidden": false, + "field": "RelatedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Emails", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessageChangeEvent", + "deprecatedAndHidden": false, + "field": "RelatedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EntitySubscription", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "FeedSubscriptionsForEntity", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Event", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Events", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventChangeEvent", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventRelationChangeEvent", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FeedComment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FeedItem", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowExecutionErrorEvent", + "deprecatedAndHidden": false, + "field": "ContextRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationWorkItem", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowRecordRelation", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Invoice", + "deprecatedAndHidden": false, + "field": "ReferenceEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Invoices", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Note", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Notes", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "NoteAndAttachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "NotesAndAttachments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OpenActivity", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OpenActivities", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Order", + "deprecatedAndHidden": false, + "field": "OriginalOrderId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Orders", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "OrderChangeEvent", + "deprecatedAndHidden": false, + "field": "OriginalOrderId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OrderFeed", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Feeds", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OrderHistory", + "deprecatedAndHidden": false, + "field": "OrderId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Histories", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OrderItem", + "deprecatedAndHidden": false, + "field": "OrderId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OrderItems", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderItemChangeEvent", + "deprecatedAndHidden": false, + "field": "OrderId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OrderShare", + "deprecatedAndHidden": false, + "field": "OrderId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Shares", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OutgoingEmail", + "deprecatedAndHidden": false, + "field": "RelatedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentGroup", + "deprecatedAndHidden": false, + "field": "SourceObjectId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "PaymentGroups", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProcessException", + "deprecatedAndHidden": false, + "field": "AttachedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProcessExceptions", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessExceptionEvent", + "deprecatedAndHidden": false, + "field": "AttachedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProcessInstance", + "deprecatedAndHidden": false, + "field": "TargetObjectId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProcessInstances", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessInstanceHistory", + "deprecatedAndHidden": false, + "field": "TargetObjectId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProcessSteps", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "RecordAction", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActions", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordActionHistory", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActionHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrder", + "deprecatedAndHidden": false, + "field": "OrderId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ReturnOrders", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderChangeEvent", + "deprecatedAndHidden": false, + "field": "OrderId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Task", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Tasks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TaskChangeEvent", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "TopicAssignment", + "deprecatedAndHidden": false, + "field": "EntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "TopicAssignments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderLineItem", + "deprecatedAndHidden": false, + "field": "OrderId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "WorkOrderLineItems", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderLineItemChangeEvent", + "deprecatedAndHidden": false, + "field": "OrderId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + } + ], + "custom": false, + "name": "Order", + "queryable": true +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Pricebook2.json b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Pricebook2.json new file mode 100644 index 0000000000000000000000000000000000000000..aa6e1f5949e5a94a39bf3673f3042c0afe2f6437 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Pricebook2.json @@ -0,0 +1,482 @@ +{ + "fields": [ + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Price Book ID", + "name": "Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "id" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Deleted", + "name": "IsDeleted", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Price Book Name", + "name": "Name", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Created Date", + "name": "CreatedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Created By ID", + "name": "CreatedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CreatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Modified Date", + "name": "LastModifiedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Modified By ID", + "name": "LastModifiedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "LastModifiedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "System Modstamp", + "name": "SystemModstamp", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Viewed Date", + "name": "LastViewedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Referenced Date", + "name": "LastReferencedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Active", + "name": "IsActive", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Archived", + "name": "IsArchived", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Description", + "name": "Description", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Is Standard Price Book", + "name": "IsStandard", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + } + ], + "label": "Price Book", + "childRelationships": [ + { + "cascadeDelete": true, + "childSObject": "AIInsightValue", + "deprecatedAndHidden": false, + "field": "SobjectLookupValueId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AIRecordInsight", + "deprecatedAndHidden": false, + "field": "TargetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetWarranty", + "deprecatedAndHidden": false, + "field": "Pricebook2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AssetWarrantyPricebooks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetWarrantyChangeEvent", + "deprecatedAndHidden": false, + "field": "Pricebook2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Contract", + "deprecatedAndHidden": false, + "field": "Pricebook2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Contracts", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "ContractChangeEvent", + "deprecatedAndHidden": false, + "field": "Pricebook2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowExecutionErrorEvent", + "deprecatedAndHidden": false, + "field": "ContextRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowRecordRelation", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Opportunity", + "deprecatedAndHidden": false, + "field": "Pricebook2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Opportunities", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityChangeEvent", + "deprecatedAndHidden": false, + "field": "Pricebook2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Order", + "deprecatedAndHidden": false, + "field": "Pricebook2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Orders", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "OrderChangeEvent", + "deprecatedAndHidden": false, + "field": "Pricebook2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Pricebook2History", + "deprecatedAndHidden": false, + "field": "Pricebook2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Histories", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "PricebookEntry", + "deprecatedAndHidden": false, + "field": "Pricebook2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "PricebookEntries", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PricebookEntryChangeEvent", + "deprecatedAndHidden": false, + "field": "Pricebook2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "RecordAction", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActions", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordActionHistory", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActionHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceContract", + "deprecatedAndHidden": false, + "field": "Pricebook2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ServiceContracts", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "ServiceContractChangeEvent", + "deprecatedAndHidden": false, + "field": "Pricebook2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WarrantyTerm", + "deprecatedAndHidden": false, + "field": "Pricebook2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Pricebook2", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WarrantyTermChangeEvent", + "deprecatedAndHidden": false, + "field": "Pricebook2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrder", + "deprecatedAndHidden": false, + "field": "Pricebook2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "WorkOrders", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderChangeEvent", + "deprecatedAndHidden": false, + "field": "Pricebook2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + } + ], + "custom": false, + "name": "Pricebook2", + "queryable": true +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/PricebookEntry.json b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/PricebookEntry.json new file mode 100644 index 0000000000000000000000000000000000000000..4d8059592f2de80491baca05870e814dea570bfa --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/PricebookEntry.json @@ -0,0 +1,433 @@ +{ + "fields": [ + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Price Book Entry ID", + "name": "Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "id" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Product Name", + "name": "Name", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Price Book ID", + "name": "Pricebook2Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "Pricebook2" + ], + "relationshipName": "Pricebook2", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Product ID", + "name": "Product2Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "Product2" + ], + "relationshipName": "Product2", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "List Price", + "name": "UnitPrice", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "currency" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Active", + "name": "IsActive", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Use Standard Price", + "name": "UseStandardPrice", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Created Date", + "name": "CreatedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Created By ID", + "name": "CreatedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CreatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Modified Date", + "name": "LastModifiedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Modified By ID", + "name": "LastModifiedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "LastModifiedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "System Modstamp", + "name": "SystemModstamp", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Product Code", + "name": "ProductCode", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Deleted", + "name": "IsDeleted", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Archived", + "name": "IsArchived", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + } + ], + "label": "Price Book Entry", + "childRelationships": [ + { + "cascadeDelete": true, + "childSObject": "AIInsightValue", + "deprecatedAndHidden": false, + "field": "SobjectLookupValueId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AIRecordInsight", + "deprecatedAndHidden": false, + "field": "TargetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineItem", + "deprecatedAndHidden": false, + "field": "PricebookEntryId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContractLineItems", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineItemChangeEvent", + "deprecatedAndHidden": false, + "field": "PricebookEntryId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowExecutionErrorEvent", + "deprecatedAndHidden": false, + "field": "ContextRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowRecordRelation", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityLineItem", + "deprecatedAndHidden": false, + "field": "PricebookEntryId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OpportunityLineItems", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "OrderItem", + "deprecatedAndHidden": false, + "field": "PricebookEntryId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OrderItems", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "OrderItemChangeEvent", + "deprecatedAndHidden": false, + "field": "PricebookEntryId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "PricebookEntryHistory", + "deprecatedAndHidden": false, + "field": "PricebookEntryId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Histories", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductConsumed", + "deprecatedAndHidden": false, + "field": "PricebookEntryId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProductsConsumed", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "ProductConsumedChangeEvent", + "deprecatedAndHidden": false, + "field": "PricebookEntryId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "RecordAction", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActions", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordActionHistory", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActionHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderLineItem", + "deprecatedAndHidden": false, + "field": "PricebookEntryId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "WorkOrderLineItems", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderLineItemChangeEvent", + "deprecatedAndHidden": false, + "field": "PricebookEntryId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + } + ], + "custom": false, + "name": "PricebookEntry", + "queryable": true +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Product2.json b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Product2.json new file mode 100644 index 0000000000000000000000000000000000000000..356a6bd4fbed4a3c61a7cb9ab2d4b8b4e9703302 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Product2.json @@ -0,0 +1,1039 @@ +{ + "fields": [ + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Product ID", + "name": "Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "id" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Product Name", + "name": "Name", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Product Code", + "name": "ProductCode", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Product Description", + "name": "Description", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "textarea" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Active", + "name": "IsActive", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Created Date", + "name": "CreatedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Created By ID", + "name": "CreatedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CreatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Modified Date", + "name": "LastModifiedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Modified By ID", + "name": "LastModifiedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "LastModifiedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "System Modstamp", + "name": "SystemModstamp", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Product Family", + "name": "Family", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "None", + "validFor": null, + "value": "None" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Serialized", + "name": "IsSerialized", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "External Data Source ID", + "name": "ExternalDataSourceId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "ExternalDataSource" + ], + "relationshipName": null, + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "External ID", + "name": "ExternalId", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Display URL", + "name": "DisplayUrl", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "url" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Quantity Unit Of Measure", + "name": "QuantityUnitOfMeasure", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Each", + "validFor": null, + "value": "Each" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Deleted", + "name": "IsDeleted", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Archived", + "name": "IsArchived", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Viewed Date", + "name": "LastViewedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Referenced Date", + "name": "LastReferencedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Product SKU", + "name": "StockKeepingUnit", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + } + ], + "label": "Product", + "childRelationships": [ + { + "cascadeDelete": true, + "childSObject": "AIInsightValue", + "deprecatedAndHidden": false, + "field": "SobjectLookupValueId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AIRecordInsight", + "deprecatedAndHidden": false, + "field": "TargetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ActivityHistory", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ActivityHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Asset", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Assets", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "AssetChangeEvent", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AttachedContentDocument", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AttachedContentDocuments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Attachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Attachments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CombinedAttachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CombinedAttachments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentDocumentLink", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContentDocumentLinks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocumentLinkChangeEvent", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersion", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersionChangeEvent", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineItem", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContractLineItems", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CreditMemoLine", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CreditMemoLines", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessage", + "deprecatedAndHidden": false, + "field": "RelatedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Emails", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessageChangeEvent", + "deprecatedAndHidden": false, + "field": "RelatedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EntitySubscription", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "FeedSubscriptionsForEntity", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Event", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Events", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventChangeEvent", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventRelationChangeEvent", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FeedComment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FeedItem", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowExecutionErrorEvent", + "deprecatedAndHidden": false, + "field": "ContextRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationWorkItem", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowRecordRelation", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "InvoiceLine", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "InvoiceLines", + "restrictedDelete": true + }, + { + "cascadeDelete": true, + "childSObject": "Note", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Notes", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "NoteAndAttachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "NotesAndAttachments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OpenActivity", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OpenActivities", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityLineItem", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderItem", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "OrderItemChangeEvent", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OutgoingEmail", + "deprecatedAndHidden": false, + "field": "RelatedToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "PricebookEntry", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "PricebookEntries", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "PricebookEntryChangeEvent", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProcessInstance", + "deprecatedAndHidden": false, + "field": "TargetObjectId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProcessInstances", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessInstanceHistory", + "deprecatedAndHidden": false, + "field": "TargetObjectId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProcessSteps", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Product2Feed", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Feeds", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Product2History", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Histories", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductConsumed", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProductsConsumed", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProductConsumptionSchedule", + "deprecatedAndHidden": false, + "field": "ProductId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProductConsumptionSchedules", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductEntitlementTemplate", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProductItem", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProductItems", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductItemChangeEvent", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProductRequestLineItem", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProductRequestLineItems", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestLineItemChangeEvent", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProductRequired", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProductsRequired", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequiredChangeEvent", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductServiceCampaign", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProductServiceCampaignProducts", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductServiceCampaignItem", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProductServiceCampaignItems", + "restrictedDelete": true + }, + { + "cascadeDelete": true, + "childSObject": "ProductTransfer", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProductTransfers", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductTransferChangeEvent", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductWarrantyTerm", + "deprecatedAndHidden": false, + "field": "CoveredProductId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ProductWarrantyTermProducts", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "RecordAction", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActions", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordActionHistory", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActionHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ReturnOrderLineItem", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ReturnOrderLineItems", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderLineItemChangeEvent", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "SerializedProduct", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "SerializedProducts", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShipmentItem", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ShipmentItems", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Task", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Tasks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TaskChangeEvent", + "deprecatedAndHidden": false, + "field": "WhatId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderLineItem", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "WorkOrderLineItems", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderLineItemChangeEvent", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanSelectionRule", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "WorkPlanSelectionRules", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanSelectionRuleChangeEvent", + "deprecatedAndHidden": false, + "field": "Product2Id", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + } + ], + "custom": false, + "name": "Product2", + "queryable": true +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/RecordType.json b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/RecordType.json new file mode 100644 index 0000000000000000000000000000000000000000..8ffc4bfdee5eb315308be07a1b060bd8e84db907 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/RecordType.json @@ -0,0 +1,2576 @@ +{ + "fields": [ + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Record Type ID", + "name": "Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "id" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Name", + "name": "Name", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Record Type Name", + "name": "DeveloperName", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Namespace Prefix", + "name": "NamespacePrefix", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Description", + "name": "Description", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Business Process ID", + "name": "BusinessProcessId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "BusinessProcess" + ], + "relationshipName": null, + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "SObject Type Name", + "name": "SobjectType", + "nillable": false, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Account" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ActionCadenceAsyncJob" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Address" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AIError" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AIInsightAction" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AIInsightFeedback" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AIInsightReason" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AIInsightReasonMLModelFactor" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AIInsightSource" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AIInsightValue" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AIMetric" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AIRecordInsight" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AIState" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AlternativePaymentMethod" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Announcement" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ApiAnomalyEventStore" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AppAnalyticsQueryRequest" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AppointmentTopicTimeSlot" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ApptBundleAggrDurDnscale" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ApptBundleAggrPolicy" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ApptBundleConfig" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ApptBundlePolicy" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ApptBundlePolicySvcTerr" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ApptBundlePropagatePolicy" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ApptBundleRestrictPolicy" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ApptBundleSortPolicy" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Asset" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AssetAction" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AssetActionSource" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AssetDowntimePeriod" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AssetRelationship" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AssetStatePeriod" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AssetWarranty" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AssistantProgress" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AssistantStepProgress" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AssociatedLocation" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AsyncOperationLog" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AttributeDefinition" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AttributePicklist" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AttributePicklistValue" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AuthorizationForm" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AuthorizationFormConsent" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AuthorizationFormDataUse" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "AuthorizationFormText" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Broker__c" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "BusinessBrand" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CalendarModel" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CalendarView" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Campaign" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CampaignMember" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CardPaymentMethod" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Case" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CollabDocumentMetric" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CollabDocumentMetricRecord" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CollaborationGroup" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CollaborationGroupRank" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CollaborationGroupRecord" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CollabTemplateMetric" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CollabTemplateMetricRecord" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CollabUserEngagementMetric" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CollabUserEngmtRecordLink" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CommerceSearchDocChangelist" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CommerceSearchIndexInfo" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CommerceSearchIndexLog" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CommerceSearchIndexPayload" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CommerceSearchResultsRule" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CommSubscription" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CommSubscriptionChannelType" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CommSubscriptionConsent" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CommSubscriptionTiming" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ComponentResponseCache" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ConsumptionRate" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ConsumptionSchedule" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Contact" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ContactPointAddress" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ContactPointConsent" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ContactPointEmail" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ContactPointPhone" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ContactPointTypeConsent" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ContactRequest" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ContentBuilderChannel" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ContentDocumentListViewMapping" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ContentFolderDistribution" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ContentVersion" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Contract" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ContractLineItem" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ContractLineOutcome" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ContractLineOutcomeData" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ConvCoachingRecommendation" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ConvMsgSessionAuthResult" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CredentialStuffingEventStore" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CreditMemo" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CreditMemoInvApplication" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "CreditMemoLine" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Customer" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "DataAssetUsageTrackingInfo" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "DataUseLegalBasis" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "DataUsePurpose" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "DigitalWallet" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "DuplicateErrorLog" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "DuplicateRecordItem" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "DuplicateRecordSet" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "EmailThreadingToken" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "EngagementChannelType" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Entitlement" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "EntitlementContact" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "EntityMilestone" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Event" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "EventRelayFeedback" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Expense" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ExpenseReport" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ExpenseReportEntry" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ExpressionFilter" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ExpressionFilterCriteria" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "FileInspectionResult" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "FileSearchActivity" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "FinanceBalanceSnapshot" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "FinanceTransaction" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "FlowExecutionEventMetric" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "FlowRecordRelation" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "FlowStageRelation" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "FlowTestResult" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Goal" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "GoalLink" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "HawkingTenantProvStatus" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Idea" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Image" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Individual" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Invoice" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "InvoiceLine" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "IotActivityLog" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "JobProfile" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Lead" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "LearningAssignment" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "LearningAssignmentProgress" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "LearningItem" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "LearningLink" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "LearningLinkProgress" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "LegalEntity" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ListEmail" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ListEmailIndividualRecipient" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ListEmailRecipientSource" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ListEmailSentResult" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Location" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "LocationGroup" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "LocationGroupAssignment" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "LogLicenseUpdates" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Macro" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "MacroAction" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "MacroInstruction" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "MacroUsage" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "MaintenanceAsset" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "MaintenancePlan" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "MaintenanceWorkRule" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "MalformedTemplateTracker" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "MessagingEndUser" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "MessagingSession" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Metric" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "MetricDataLink" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "MlAppMigrationStatus" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "MlFeatureValueMetric" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "MLMigration" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "MLModel" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "MLModelFactor" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "MLModelFactorComponent" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "MLModelMetric" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "MobileHomeConfiguration" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Opportunity" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "OrchestrationContextRuntimeEvent" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Order" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "OrgDeleteRequest" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "OrgMetric" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "OrgMetricScanResult" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "OrgMetricScanSummary" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "PageContentAssignment" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "PartyConsent" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Payment" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "PaymentAuthAdjustment" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "PaymentAuthorization" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "PaymentGateway" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "PaymentGatewayLog" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "PaymentGroup" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "PaymentLineInvoice" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "PersonalizationResource" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Pricebook2" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ProcessException" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Product2" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ProductConsumed" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ProductConsumptionSchedule" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ProductItem" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ProductRequest" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ProductRequestLineItem" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ProductRequired" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ProductServiceCampaign" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ProductServiceCampaignItem" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ProductTransfer" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ProductWarrantyTerm" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ProfileSkill" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ProfileSkillEndorsement" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ProfileSkillUser" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "PromptAction" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "PromptError" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Property__c" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "QuickText" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "QuickTextUsage" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Recommendation" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "RecommendationReaction" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "RecommendationResponse" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "RecordAction" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "RecordMergeHistory" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "RecordOrigin" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "RecordsetFltrCritMonitor" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Refund" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "RefundLinePayment" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ReleaseUpdateStep" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ReleaseUpdateStepLog" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ReportAnomalyEventStore" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ReportResultBlob" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ResourceAbsence" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ReturnOrder" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ReturnOrderLineItem" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "SchedulingConstraint" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Scorecard" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ScorecardAssociation" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ScorecardMetric" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "SearchActivity" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "SearchPromotionRule" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Seller" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "SerializedProduct" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "SerializedProductTransaction" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ServiceAppointment" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ServiceContract" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ServiceCrew" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ServiceCrewMember" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ServiceResource" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ServiceResourcePreference" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ServiceSetupProvisioning" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ServiceTerritory" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ServiceTerritoryLocation" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "SessionHijackingEventStore" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "SetupAssistantAnswer" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "SetupAssistantProgress" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "SetupAssistantStep" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "SetupFlowProgress" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Shift" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ShiftSchedulingOperation" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ShiftTemplate" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Shipment" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "ShipmentItem" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "SiteUserViewMode" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "SoftwareProduct" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Solution" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "StrategyMonthlyStats" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "SyncTransactionLog" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "Task" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityAlertRuleSelectedTenant" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityApiAnomaly" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityConnectedApp" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityCredentialStuffing" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityEncryptionPolicy" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityFeature" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityHealthCheckBaselineTrend" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityHealthCheckDetail" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityHealthCheckTrend" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityLogin" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityMetricDetail" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityMetricDetailLink" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityMobilePolicyTrend" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityMonitorMetric" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityNotification" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityNotificationRule" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityPackage" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityPolicy" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityPolicyChangeLog" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityPolicyDeployment" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityPolicySelectedTenant" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityReportAnomaly" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecuritySessionHijacking" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityTenantChangeLog" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityTenantInfo" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityTransactionPolicyTrend" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityTrustedIpRangeTrend" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityUserActivity" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityUserPerm" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TenantSecurityWebsite" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TimeSheet" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TimeSheetEntry" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TransactionSecurityAction" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TransactionSecurityActionEvent" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "TravelMode" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "UnitOfMeasure" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "UserAssistantSummary" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "UserEmailPreferredPerson" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "UserMetrics" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "UserNavItem" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "UserQuestionnaireAnswer" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "UserQuestionnaireSummary" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WarrantyTerm" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WebCartDocument" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkAccess" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkBadge" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkBadgeDefinition" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkCoaching" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkFeedback" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkFeedbackQuestion" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkFeedbackQuestionSet" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkFeedbackRequest" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkFeedbackTemplate" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkOrder" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkOrderLineItem" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkPerformanceCycle" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkPlan" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkPlanSelectionRule" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkPlanTemplate" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkPlanTemplateEntry" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkReward" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkRewardFund" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkRewardFundType" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkStep" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkStepTemplate" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkThanks" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkType" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkTypeGroup" + }, + { + "active": true, + "defaultValue": false, + "label": null, + "validFor": null, + "value": "WorkTypeGroupMember" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Active", + "name": "IsActive", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Created By ID", + "name": "CreatedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CreatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Created Date", + "name": "CreatedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Modified By ID", + "name": "LastModifiedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "LastModifiedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Modified Date", + "name": "LastModifiedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "System Modstamp", + "name": "SystemModstamp", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + } + ], + "label": "Record Type", + "childRelationships": [ + { + "cascadeDelete": false, + "childSObject": "Campaign", + "deprecatedAndHidden": false, + "field": "CampaignMemberRecordTypeId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignChangeEvent", + "deprecatedAndHidden": false, + "field": "CampaignMemberRecordTypeId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentWorkspace", + "deprecatedAndHidden": false, + "field": "DefaultRecordTypeId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "GtwyProvPaymentMethodType", + "deprecatedAndHidden": false, + "field": "RecordTypeId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Name", + "deprecatedAndHidden": false, + "field": "RecordTypeId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PromptVersion", + "deprecatedAndHidden": false, + "field": "TargetRecordTypeId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "RecentlyViewed", + "deprecatedAndHidden": false, + "field": "RecordTypeId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + } + ], + "custom": false, + "name": "RecordType", + "queryable": true +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Report.json b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Report.json new file mode 100644 index 0000000000000000000000000000000000000000..131b3e0388270fb1a2f478d4ed2140d088ed7e1e --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Report.json @@ -0,0 +1,486 @@ +{ + "fields": [ + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Report ID", + "name": "Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "id" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Owner ID", + "name": "OwnerId", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "Folder", + "Organization", + "User" + ], + "relationshipName": "Owner", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Folder Name", + "name": "FolderName", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Created Date", + "name": "CreatedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Created By ID", + "name": "CreatedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CreatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Modified Date", + "name": "LastModifiedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Modified By ID", + "name": "LastModifiedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "LastModifiedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Deleted", + "name": "IsDeleted", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Report Name", + "name": "Name", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Description", + "name": "Description", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Report Unique Name", + "name": "DeveloperName", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Namespace Prefix", + "name": "NamespacePrefix", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Run", + "name": "LastRunDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "System Modstamp", + "name": "SystemModstamp", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": "Tabular", + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Format", + "name": "Format", + "nillable": false, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Joined", + "validFor": null, + "value": "MultiBlock" + }, + { + "active": true, + "defaultValue": false, + "label": "Matrix", + "validFor": null, + "value": "Matrix" + }, + { + "active": true, + "defaultValue": false, + "label": "Summary", + "validFor": null, + "value": "Summary" + }, + { + "active": true, + "defaultValue": true, + "label": "Tabular", + "validFor": null, + "value": "Tabular" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Viewed Date", + "name": "LastViewedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Referenced Date", + "name": "LastReferencedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + } + ], + "label": "Report", + "childRelationships": [ + { + "cascadeDelete": true, + "childSObject": "AttachedContentDocument", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AttachedContentDocuments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CombinedAttachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CombinedAttachments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentDocumentLink", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContentDocumentLinks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocumentLinkChangeEvent", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersion", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersionChangeEvent", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DashboardComponent", + "deprecatedAndHidden": false, + "field": "CustomReportId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EntitySubscription", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "FeedSubscriptionsForEntity", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FeedComment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FeedItem", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowExecutionErrorEvent", + "deprecatedAndHidden": false, + "field": "ContextRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowRecordRelation", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReportEvent", + "deprecatedAndHidden": false, + "field": "ReportId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ReportFeed", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Feeds", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ScorecardMetric", + "deprecatedAndHidden": false, + "field": "ReportId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ScorecardMetrics", + "restrictedDelete": false + } + ], + "custom": false, + "name": "Report", + "queryable": true +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Task.json b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Task.json new file mode 100644 index 0000000000000000000000000000000000000000..88f50927a26fea157a02762d104cf3bf0039933e --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/Task.json @@ -0,0 +1,4296 @@ +{ + "fields": [ + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Activity ID", + "name": "Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "id" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Name ID", + "name": "WhoId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Contact", + "Lead" + ], + "relationshipName": "Who", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Related To ID", + "name": "WhatId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Account", + "ApptBundleAggrDurDnscale", + "ApptBundleAggrPolicy", + "ApptBundleConfig", + "ApptBundlePolicy", + "ApptBundlePolicySvcTerr", + "ApptBundlePropagatePolicy", + "ApptBundleRestrictPolicy", + "ApptBundleSortPolicy", + "Asset", + "AssetRelationship", + "AssetWarranty", + "AssignedResource", + "AttributeDefinition", + "AttributePicklist", + "AttributePicklistValue", + "Campaign", + "Case", + "CommSubscriptionConsent", + "ContactRequest", + "Contract", + "ContractLineItem", + "CreditMemo", + "Entitlement", + "Expense", + "ExpenseReport", + "ExpenseReportEntry", + "Image", + "Invoice", + "LegalEntity", + "ListEmail", + "Location", + "MaintenanceAsset", + "MaintenancePlan", + "OperatingHoursHoliday", + "Opportunity", + "Order", + "PartyConsent", + "ProcessException", + "Product2", + "ProductConsumed", + "ProductItem", + "ProductRequest", + "ProductRequestLineItem", + "ProductServiceCampaign", + "ProductServiceCampaignItem", + "ProductTransfer", + "Property__c", + "ResourceAbsence", + "ReturnOrder", + "ReturnOrderLineItem", + "ServiceAppointment", + "ServiceContract", + "ServiceCrew", + "ServiceCrewMember", + "ServiceResource", + "Shift", + "ShiftPattern", + "ShiftPatternEntry", + "Shipment", + "ShipmentItem", + "Solution", + "TimeSheet", + "TimeSheetEntry", + "TravelMode", + "WarrantyTerm", + "WorkOrder", + "WorkOrderLineItem", + "WorkPlan", + "WorkPlanSelectionRule", + "WorkPlanTemplate", + "WorkPlanTemplateEntry", + "WorkStep", + "WorkStepTemplate" + ], + "relationshipName": "What", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Subject", + "name": "Subject", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Call", + "validFor": null, + "value": "Call" + }, + { + "active": true, + "defaultValue": false, + "label": "Email", + "validFor": null, + "value": "Email" + }, + { + "active": true, + "defaultValue": false, + "label": "Send Letter", + "validFor": null, + "value": "Send Letter" + }, + { + "active": true, + "defaultValue": false, + "label": "Send Quote", + "validFor": null, + "value": "Send Quote" + }, + { + "active": true, + "defaultValue": false, + "label": "Other", + "validFor": null, + "value": "Other" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "combobox" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Due Date Only", + "name": "ActivityDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": "Not Started", + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Status", + "name": "Status", + "nillable": false, + "picklistValues": [ + { + "active": true, + "defaultValue": true, + "label": "Not Started", + "validFor": null, + "value": "Not Started" + }, + { + "active": true, + "defaultValue": false, + "label": "In Progress", + "validFor": null, + "value": "In Progress" + }, + { + "active": true, + "defaultValue": false, + "label": "Completed", + "validFor": null, + "value": "Completed" + }, + { + "active": true, + "defaultValue": false, + "label": "Waiting on someone else", + "validFor": null, + "value": "Waiting on someone else" + }, + { + "active": true, + "defaultValue": false, + "label": "Deferred", + "validFor": null, + "value": "Deferred" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": "Normal", + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Priority", + "name": "Priority", + "nillable": false, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "High", + "validFor": null, + "value": "High" + }, + { + "active": true, + "defaultValue": true, + "label": "Normal", + "validFor": null, + "value": "Normal" + }, + { + "active": true, + "defaultValue": false, + "label": "Low", + "validFor": null, + "value": "Low" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "High Priority", + "name": "IsHighPriority", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Assigned To ID", + "name": "OwnerId", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "Group", + "User" + ], + "relationshipName": "Owner", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": false, + "groupable": false, + "inlineHelpText": null, + "label": "Description", + "name": "Description", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "textarea" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Deleted", + "name": "IsDeleted", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Account ID", + "name": "AccountId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Account" + ], + "relationshipName": "Account", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Closed", + "name": "IsClosed", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Created Date", + "name": "CreatedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Created By ID", + "name": "CreatedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CreatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Modified Date", + "name": "LastModifiedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Modified By ID", + "name": "LastModifiedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "LastModifiedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "System Modstamp", + "name": "SystemModstamp", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Archived", + "name": "IsArchived", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Call Duration", + "name": "CallDurationInSeconds", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "int" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Call Type", + "name": "CallType", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Internal", + "validFor": null, + "value": "Internal" + }, + { + "active": true, + "defaultValue": false, + "label": "Inbound", + "validFor": null, + "value": "Inbound" + }, + { + "active": true, + "defaultValue": false, + "label": "Outbound", + "validFor": null, + "value": "Outbound" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Call Result", + "name": "CallDisposition", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Call Object Identifier", + "name": "CallObject", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Reminder Date/Time", + "name": "ReminderDateTime", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Reminder Set", + "name": "IsReminderSet", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Recurrence Activity ID", + "name": "RecurrenceActivityId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Task" + ], + "relationshipName": null, + "sortable": true, + "type": "reference" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Create Recurring Series of Tasks", + "name": "IsRecurrence", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Recurrence Start", + "name": "RecurrenceStartDateOnly", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Recurrence End", + "name": "RecurrenceEndDateOnly", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "date" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Recurrence Time Zone", + "name": "RecurrenceTimeZoneSidKey", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "(GMT+14:00) Line Islands Time (Pacific/Kiritimati)", + "validFor": null, + "value": "Pacific/Kiritimati" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+13:45) Chatham Daylight Time (Pacific/Chatham)", + "validFor": null, + "value": "Pacific/Chatham" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+13:00) New Zealand Daylight Time (Antarctica/McMurdo)", + "validFor": null, + "value": "Antarctica/McMurdo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+13:00) Apia Standard Time (Pacific/Apia)", + "validFor": null, + "value": "Pacific/Apia" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+13:00) New Zealand Daylight Time (Pacific/Auckland)", + "validFor": null, + "value": "Pacific/Auckland" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+13:00) Phoenix Islands Time (Pacific/Enderbury)", + "validFor": null, + "value": "Pacific/Enderbury" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+13:00) Tokelau Time (Pacific/Fakaofo)", + "validFor": null, + "value": "Pacific/Fakaofo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+13:00) Tonga Standard Time (Pacific/Tongatapu)", + "validFor": null, + "value": "Pacific/Tongatapu" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+12:00) Anadyr Standard Time (Asia/Anadyr)", + "validFor": null, + "value": "Asia/Anadyr" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+12:00) Petropavlovsk-Kamchatski Standard Time (Asia/Kamchatka)", + "validFor": null, + "value": "Asia/Kamchatka" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+12:00) Fiji Standard Time (Pacific/Fiji)", + "validFor": null, + "value": "Pacific/Fiji" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+12:00) Tuvalu Time (Pacific/Funafuti)", + "validFor": null, + "value": "Pacific/Funafuti" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+12:00) Marshall Islands Time (Pacific/Kwajalein)", + "validFor": null, + "value": "Pacific/Kwajalein" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+12:00) Marshall Islands Time (Pacific/Majuro)", + "validFor": null, + "value": "Pacific/Majuro" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+12:00) Nauru Time (Pacific/Nauru)", + "validFor": null, + "value": "Pacific/Nauru" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+12:00) Gilbert Islands Time (Pacific/Tarawa)", + "validFor": null, + "value": "Pacific/Tarawa" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+12:00) Wake Island Time (Pacific/Wake)", + "validFor": null, + "value": "Pacific/Wake" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+12:00) Wallis & Futuna Time (Pacific/Wallis)", + "validFor": null, + "value": "Pacific/Wallis" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) Casey Time (Antarctica/Casey)", + "validFor": null, + "value": "Antarctica/Casey" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) Magadan Standard Time (Asia/Magadan)", + "validFor": null, + "value": "Asia/Magadan" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) Sakhalin Standard Time (Asia/Sakhalin)", + "validFor": null, + "value": "Asia/Sakhalin" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) Magadan Standard Time (Asia/Srednekolymsk)", + "validFor": null, + "value": "Asia/Srednekolymsk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) Bougainville Standard Time (Pacific/Bougainville)", + "validFor": null, + "value": "Pacific/Bougainville" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) Vanuatu Standard Time (Pacific/Efate)", + "validFor": null, + "value": "Pacific/Efate" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) Solomon Islands Time (Pacific/Guadalcanal)", + "validFor": null, + "value": "Pacific/Guadalcanal" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) Kosrae Time (Pacific/Kosrae)", + "validFor": null, + "value": "Pacific/Kosrae" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) Norfolk Island Standard Time (Pacific/Norfolk)", + "validFor": null, + "value": "Pacific/Norfolk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) New Caledonia Standard Time (Pacific/Noumea)", + "validFor": null, + "value": "Pacific/Noumea" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) Ponape Time (Pacific/Ponape)", + "validFor": null, + "value": "Pacific/Ponape" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:30) Lord Howe Standard Time (Australia/Lord_Howe)", + "validFor": null, + "value": "Australia/Lord_Howe" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Dumont-d’Urville Time (Antarctica/DumontDUrville)", + "validFor": null, + "value": "Antarctica/DumontDUrville" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Australian Eastern Standard Time (Antarctica/Macquarie)", + "validFor": null, + "value": "Antarctica/Macquarie" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Vladivostok Standard Time (Asia/Ust-Nera)", + "validFor": null, + "value": "Asia/Ust-Nera" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Vladivostok Standard Time (Asia/Vladivostok)", + "validFor": null, + "value": "Asia/Vladivostok" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Australian Eastern Standard Time (Australia/Brisbane)", + "validFor": null, + "value": "Australia/Brisbane" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Australian Eastern Standard Time (Australia/Currie)", + "validFor": null, + "value": "Australia/Currie" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Australian Eastern Standard Time (Australia/Hobart)", + "validFor": null, + "value": "Australia/Hobart" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Australian Eastern Standard Time (Australia/Lindeman)", + "validFor": null, + "value": "Australia/Lindeman" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Australian Eastern Standard Time (Australia/Melbourne)", + "validFor": null, + "value": "Australia/Melbourne" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Australian Eastern Standard Time (Australia/Sydney)", + "validFor": null, + "value": "Australia/Sydney" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Chamorro Standard Time (Pacific/Guam)", + "validFor": null, + "value": "Pacific/Guam" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Papua New Guinea Time (Pacific/Port_Moresby)", + "validFor": null, + "value": "Pacific/Port_Moresby" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Chamorro Standard Time (Pacific/Saipan)", + "validFor": null, + "value": "Pacific/Saipan" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Chuuk Time (Pacific/Truk)", + "validFor": null, + "value": "Pacific/Truk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:30) Australian Central Standard Time (Australia/Adelaide)", + "validFor": null, + "value": "Australia/Adelaide" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:30) Australian Central Standard Time (Australia/Broken_Hill)", + "validFor": null, + "value": "Australia/Broken_Hill" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:30) Australian Central Standard Time (Australia/Darwin)", + "validFor": null, + "value": "Australia/Darwin" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:00) Yakutsk Standard Time (Asia/Chita)", + "validFor": null, + "value": "Asia/Chita" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:00) East Timor Time (Asia/Dili)", + "validFor": null, + "value": "Asia/Dili" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:00) Eastern Indonesia Time (Asia/Jayapura)", + "validFor": null, + "value": "Asia/Jayapura" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:00) Yakutsk Standard Time (Asia/Khandyga)", + "validFor": null, + "value": "Asia/Khandyga" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:00) Korean Standard Time (Asia/Seoul)", + "validFor": null, + "value": "Asia/Seoul" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:00) Japan Standard Time (Asia/Tokyo)", + "validFor": null, + "value": "Asia/Tokyo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:00) Yakutsk Standard Time (Asia/Yakutsk)", + "validFor": null, + "value": "Asia/Yakutsk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:00) Palau Time (Pacific/Palau)", + "validFor": null, + "value": "Pacific/Palau" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:45) Australian Central Western Standard Time (Australia/Eucla)", + "validFor": null, + "value": "Australia/Eucla" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Brunei Darussalam Time (Asia/Brunei)", + "validFor": null, + "value": "Asia/Brunei" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Ulaanbaatar Standard Time (Asia/Choibalsan)", + "validFor": null, + "value": "Asia/Choibalsan" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Hong Kong Standard Time (Asia/Hong_Kong)", + "validFor": null, + "value": "Asia/Hong_Kong" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Irkutsk Standard Time (Asia/Irkutsk)", + "validFor": null, + "value": "Asia/Irkutsk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Malaysia Time (Asia/Kuala_Lumpur)", + "validFor": null, + "value": "Asia/Kuala_Lumpur" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Malaysia Time (Asia/Kuching)", + "validFor": null, + "value": "Asia/Kuching" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) China Standard Time (Asia/Macau)", + "validFor": null, + "value": "Asia/Macau" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Central Indonesia Time (Asia/Makassar)", + "validFor": null, + "value": "Asia/Makassar" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Philippine Standard Time (Asia/Manila)", + "validFor": null, + "value": "Asia/Manila" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) China Standard Time (Asia/Shanghai)", + "validFor": null, + "value": "Asia/Shanghai" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Singapore Standard Time (Asia/Singapore)", + "validFor": null, + "value": "Asia/Singapore" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Taipei Standard Time (Asia/Taipei)", + "validFor": null, + "value": "Asia/Taipei" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Ulaanbaatar Standard Time (Asia/Ulaanbaatar)", + "validFor": null, + "value": "Asia/Ulaanbaatar" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Australian Western Standard Time (Australia/Perth)", + "validFor": null, + "value": "Australia/Perth" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Davis Time (Antarctica/Davis)", + "validFor": null, + "value": "Antarctica/Davis" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Indochina Time (Asia/Bangkok)", + "validFor": null, + "value": "Asia/Bangkok" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Moscow Standard Time + 4 (Asia/Barnaul)", + "validFor": null, + "value": "Asia/Barnaul" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Indochina Time (Asia/Ho_Chi_Minh)", + "validFor": null, + "value": "Asia/Ho_Chi_Minh" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Hovd Standard Time (Asia/Hovd)", + "validFor": null, + "value": "Asia/Hovd" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Western Indonesia Time (Asia/Jakarta)", + "validFor": null, + "value": "Asia/Jakarta" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Krasnoyarsk Standard Time (Asia/Krasnoyarsk)", + "validFor": null, + "value": "Asia/Krasnoyarsk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Krasnoyarsk Standard Time (Asia/Novokuznetsk)", + "validFor": null, + "value": "Asia/Novokuznetsk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Novosibirsk Standard Time (Asia/Novosibirsk)", + "validFor": null, + "value": "Asia/Novosibirsk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Indochina Time (Asia/Phnom_Penh)", + "validFor": null, + "value": "Asia/Phnom_Penh" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Western Indonesia Time (Asia/Pontianak)", + "validFor": null, + "value": "Asia/Pontianak" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Moscow Standard Time + 4 (Asia/Tomsk)", + "validFor": null, + "value": "Asia/Tomsk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Indochina Time (Asia/Vientiane)", + "validFor": null, + "value": "Asia/Vientiane" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Christmas Island Time (Indian/Christmas)", + "validFor": null, + "value": "Indian/Christmas" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:30) Myanmar Time (Asia/Rangoon)", + "validFor": null, + "value": "Asia/Rangoon" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:30) Cocos Islands Time (Indian/Cocos)", + "validFor": null, + "value": "Indian/Cocos" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:00) Vostok Time (Antarctica/Vostok)", + "validFor": null, + "value": "Antarctica/Vostok" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:00) East Kazakhstan Time (Asia/Almaty)", + "validFor": null, + "value": "Asia/Almaty" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:00) Kyrgyzstan Time (Asia/Bishkek)", + "validFor": null, + "value": "Asia/Bishkek" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:00) Bangladesh Standard Time (Asia/Dhaka)", + "validFor": null, + "value": "Asia/Dhaka" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:00) Omsk Standard Time (Asia/Omsk)", + "validFor": null, + "value": "Asia/Omsk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:00) East Kazakhstan Time (Asia/Qostanay)", + "validFor": null, + "value": "Asia/Qostanay" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:00) Bhutan Time (Asia/Thimphu)", + "validFor": null, + "value": "Asia/Thimphu" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:00) China Standard Time (Asia/Urumqi)", + "validFor": null, + "value": "Asia/Urumqi" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:00) Indian Ocean Time (Indian/Chagos)", + "validFor": null, + "value": "Indian/Chagos" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:45) Nepal Time (Asia/Kathmandu)", + "validFor": null, + "value": "Asia/Kathmandu" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:30) India Standard Time (Asia/Colombo)", + "validFor": null, + "value": "Asia/Colombo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:30) India Standard Time (Asia/Kolkata)", + "validFor": null, + "value": "Asia/Kolkata" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) Mawson Time (Antarctica/Mawson)", + "validFor": null, + "value": "Antarctica/Mawson" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) West Kazakhstan Time (Asia/Aqtau)", + "validFor": null, + "value": "Asia/Aqtau" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) West Kazakhstan Time (Asia/Aqtobe)", + "validFor": null, + "value": "Asia/Aqtobe" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) Turkmenistan Standard Time (Asia/Ashgabat)", + "validFor": null, + "value": "Asia/Ashgabat" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) West Kazakhstan Time (Asia/Atyrau)", + "validFor": null, + "value": "Asia/Atyrau" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) Tajikistan Time (Asia/Dushanbe)", + "validFor": null, + "value": "Asia/Dushanbe" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) Pakistan Standard Time (Asia/Karachi)", + "validFor": null, + "value": "Asia/Karachi" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) West Kazakhstan Time (Asia/Oral)", + "validFor": null, + "value": "Asia/Oral" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) West Kazakhstan Time (Asia/Qyzylorda)", + "validFor": null, + "value": "Asia/Qyzylorda" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) Uzbekistan Standard Time (Asia/Samarkand)", + "validFor": null, + "value": "Asia/Samarkand" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) Uzbekistan Standard Time (Asia/Tashkent)", + "validFor": null, + "value": "Asia/Tashkent" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) Yekaterinburg Standard Time (Asia/Yekaterinburg)", + "validFor": null, + "value": "Asia/Yekaterinburg" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) French Southern & Antarctic Time (Indian/Kerguelen)", + "validFor": null, + "value": "Indian/Kerguelen" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) Maldives Time (Indian/Maldives)", + "validFor": null, + "value": "Indian/Maldives" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:30) Afghanistan Time (Asia/Kabul)", + "validFor": null, + "value": "Asia/Kabul" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Azerbaijan Standard Time (Asia/Baku)", + "validFor": null, + "value": "Asia/Baku" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Gulf Standard Time (Asia/Dubai)", + "validFor": null, + "value": "Asia/Dubai" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Gulf Standard Time (Asia/Muscat)", + "validFor": null, + "value": "Asia/Muscat" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Georgia Standard Time (Asia/Tbilisi)", + "validFor": null, + "value": "Asia/Tbilisi" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Armenia Standard Time (Asia/Yerevan)", + "validFor": null, + "value": "Asia/Yerevan" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Samara Standard Time (Europe/Astrakhan)", + "validFor": null, + "value": "Europe/Astrakhan" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Samara Standard Time (Europe/Samara)", + "validFor": null, + "value": "Europe/Samara" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Moscow Standard Time + 1 (Europe/Saratov)", + "validFor": null, + "value": "Europe/Saratov" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Moscow Standard Time + 1 (Europe/Ulyanovsk)", + "validFor": null, + "value": "Europe/Ulyanovsk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Seychelles Time (Indian/Mahe)", + "validFor": null, + "value": "Indian/Mahe" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Mauritius Standard Time (Indian/Mauritius)", + "validFor": null, + "value": "Indian/Mauritius" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Réunion Time (Indian/Reunion)", + "validFor": null, + "value": "Indian/Reunion" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) East Africa Time (Africa/Addis_Ababa)", + "validFor": null, + "value": "Africa/Addis_Ababa" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) East Africa Time (Africa/Asmera)", + "validFor": null, + "value": "Africa/Asmera" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Standard Time (Africa/Cairo)", + "validFor": null, + "value": "Africa/Cairo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) East Africa Time (Africa/Dar_es_Salaam)", + "validFor": null, + "value": "Africa/Dar_es_Salaam" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) East Africa Time (Africa/Djibouti)", + "validFor": null, + "value": "Africa/Djibouti" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) East Africa Time (Africa/Kampala)", + "validFor": null, + "value": "Africa/Kampala" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) East Africa Time (Africa/Mogadishu)", + "validFor": null, + "value": "Africa/Mogadishu" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) East Africa Time (Africa/Nairobi)", + "validFor": null, + "value": "Africa/Nairobi" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Syowa Time (Antarctica/Syowa)", + "validFor": null, + "value": "Antarctica/Syowa" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Arabian Standard Time (Asia/Aden)", + "validFor": null, + "value": "Asia/Aden" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Standard Time (Asia/Amman)", + "validFor": null, + "value": "Asia/Amman" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Arabian Standard Time (Asia/Baghdad)", + "validFor": null, + "value": "Asia/Baghdad" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Arabian Standard Time (Asia/Bahrain)", + "validFor": null, + "value": "Asia/Bahrain" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Asia/Beirut)", + "validFor": null, + "value": "Asia/Beirut" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Asia/Famagusta)", + "validFor": null, + "value": "Asia/Famagusta" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Asia/Gaza)", + "validFor": null, + "value": "Asia/Gaza" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Asia/Hebron)", + "validFor": null, + "value": "Asia/Hebron" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Israel Daylight Time (Asia/Jerusalem)", + "validFor": null, + "value": "Asia/Jerusalem" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Arabian Standard Time (Asia/Kuwait)", + "validFor": null, + "value": "Asia/Kuwait" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Asia/Nicosia)", + "validFor": null, + "value": "Asia/Nicosia" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Arabian Standard Time (Asia/Qatar)", + "validFor": null, + "value": "Asia/Qatar" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Arabian Standard Time (Asia/Riyadh)", + "validFor": null, + "value": "Asia/Riyadh" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Athens)", + "validFor": null, + "value": "Europe/Athens" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Bucharest)", + "validFor": null, + "value": "Europe/Bucharest" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Chisinau)", + "validFor": null, + "value": "Europe/Chisinau" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Helsinki)", + "validFor": null, + "value": "Europe/Helsinki" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Standard Time (Europe/Istanbul)", + "validFor": null, + "value": "Europe/Istanbul" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Kyiv)", + "validFor": null, + "value": "Europe/Kiev" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Moscow Standard Time (Europe/Kirov)", + "validFor": null, + "value": "Europe/Kirov" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Mariehamn)", + "validFor": null, + "value": "Europe/Mariehamn" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Moscow Standard Time (Europe/Minsk)", + "validFor": null, + "value": "Europe/Minsk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Moscow Standard Time (Europe/Moscow)", + "validFor": null, + "value": "Europe/Moscow" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Riga)", + "validFor": null, + "value": "Europe/Riga" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Sofia)", + "validFor": null, + "value": "Europe/Sofia" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Tallinn)", + "validFor": null, + "value": "Europe/Tallinn" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Uzhgorod)", + "validFor": null, + "value": "Europe/Uzhgorod" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Vilnius)", + "validFor": null, + "value": "Europe/Vilnius" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Volgograd Standard Time (Europe/Volgograd)", + "validFor": null, + "value": "Europe/Volgograd" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Zaporozhye)", + "validFor": null, + "value": "Europe/Zaporozhye" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) East Africa Time (Indian/Antananarivo)", + "validFor": null, + "value": "Indian/Antananarivo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) East Africa Time (Indian/Comoro)", + "validFor": null, + "value": "Indian/Comoro" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) East Africa Time (Indian/Mayotte)", + "validFor": null, + "value": "Indian/Mayotte" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central Africa Time (Africa/Blantyre)", + "validFor": null, + "value": "Africa/Blantyre" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central Africa Time (Africa/Bujumbura)", + "validFor": null, + "value": "Africa/Bujumbura" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Africa/Ceuta)", + "validFor": null, + "value": "Africa/Ceuta" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central Africa Time (Africa/Gaborone)", + "validFor": null, + "value": "Africa/Gaborone" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central Africa Time (Africa/Harare)", + "validFor": null, + "value": "Africa/Harare" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) South Africa Standard Time (Africa/Johannesburg)", + "validFor": null, + "value": "Africa/Johannesburg" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central Africa Time (Africa/Juba)", + "validFor": null, + "value": "Africa/Juba" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central Africa Time (Africa/Kigali)", + "validFor": null, + "value": "Africa/Kigali" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central Africa Time (Africa/Lubumbashi)", + "validFor": null, + "value": "Africa/Lubumbashi" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central Africa Time (Africa/Lusaka)", + "validFor": null, + "value": "Africa/Lusaka" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central Africa Time (Africa/Maputo)", + "validFor": null, + "value": "Africa/Maputo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) South Africa Standard Time (Africa/Maseru)", + "validFor": null, + "value": "Africa/Maseru" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) South Africa Standard Time (Africa/Mbabane)", + "validFor": null, + "value": "Africa/Mbabane" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Eastern European Standard Time (Africa/Tripoli)", + "validFor": null, + "value": "Africa/Tripoli" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central Africa Time (Africa/Windhoek)", + "validFor": null, + "value": "Africa/Windhoek" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Antarctica/Troll)", + "validFor": null, + "value": "Antarctica/Troll" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Arctic/Longyearbyen)", + "validFor": null, + "value": "Arctic/Longyearbyen" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Amsterdam)", + "validFor": null, + "value": "Europe/Amsterdam" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Andorra)", + "validFor": null, + "value": "Europe/Andorra" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Belgrade)", + "validFor": null, + "value": "Europe/Belgrade" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Berlin)", + "validFor": null, + "value": "Europe/Berlin" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Bratislava)", + "validFor": null, + "value": "Europe/Bratislava" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Brussels)", + "validFor": null, + "value": "Europe/Brussels" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Budapest)", + "validFor": null, + "value": "Europe/Budapest" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Busingen)", + "validFor": null, + "value": "Europe/Busingen" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Copenhagen)", + "validFor": null, + "value": "Europe/Copenhagen" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Gibraltar)", + "validFor": null, + "value": "Europe/Gibraltar" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Eastern European Standard Time (Europe/Kaliningrad)", + "validFor": null, + "value": "Europe/Kaliningrad" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Ljubljana)", + "validFor": null, + "value": "Europe/Ljubljana" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Luxembourg)", + "validFor": null, + "value": "Europe/Luxembourg" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Madrid)", + "validFor": null, + "value": "Europe/Madrid" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Malta)", + "validFor": null, + "value": "Europe/Malta" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Monaco)", + "validFor": null, + "value": "Europe/Monaco" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Oslo)", + "validFor": null, + "value": "Europe/Oslo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Paris)", + "validFor": null, + "value": "Europe/Paris" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Podgorica)", + "validFor": null, + "value": "Europe/Podgorica" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Prague)", + "validFor": null, + "value": "Europe/Prague" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Rome)", + "validFor": null, + "value": "Europe/Rome" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/San_Marino)", + "validFor": null, + "value": "Europe/San_Marino" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Sarajevo)", + "validFor": null, + "value": "Europe/Sarajevo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Skopje)", + "validFor": null, + "value": "Europe/Skopje" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Stockholm)", + "validFor": null, + "value": "Europe/Stockholm" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Tirane)", + "validFor": null, + "value": "Europe/Tirane" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Vaduz)", + "validFor": null, + "value": "Europe/Vaduz" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Vatican)", + "validFor": null, + "value": "Europe/Vatican" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Vienna)", + "validFor": null, + "value": "Europe/Vienna" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Warsaw)", + "validFor": null, + "value": "Europe/Warsaw" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Zagreb)", + "validFor": null, + "value": "Europe/Zagreb" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Zurich)", + "validFor": null, + "value": "Europe/Zurich" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) Central European Standard Time (Africa/Algiers)", + "validFor": null, + "value": "Africa/Algiers" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Bangui)", + "validFor": null, + "value": "Africa/Bangui" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Brazzaville)", + "validFor": null, + "value": "Africa/Brazzaville" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) Western European Summer Time (Africa/Casablanca)", + "validFor": null, + "value": "Africa/Casablanca" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Douala)", + "validFor": null, + "value": "Africa/Douala" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) Western European Summer Time (Africa/El_Aaiun)", + "validFor": null, + "value": "Africa/El_Aaiun" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Kinshasa)", + "validFor": null, + "value": "Africa/Kinshasa" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Lagos)", + "validFor": null, + "value": "Africa/Lagos" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Libreville)", + "validFor": null, + "value": "Africa/Libreville" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Luanda)", + "validFor": null, + "value": "Africa/Luanda" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Malabo)", + "validFor": null, + "value": "Africa/Malabo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Ndjamena)", + "validFor": null, + "value": "Africa/Ndjamena" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Niamey)", + "validFor": null, + "value": "Africa/Niamey" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Porto-Novo)", + "validFor": null, + "value": "Africa/Porto-Novo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) Central European Standard Time (Africa/Tunis)", + "validFor": null, + "value": "Africa/Tunis" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) Western European Summer Time (Atlantic/Canary)", + "validFor": null, + "value": "Atlantic/Canary" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) Western European Summer Time (Atlantic/Faeroe)", + "validFor": null, + "value": "Atlantic/Faeroe" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) Western European Summer Time (Atlantic/Madeira)", + "validFor": null, + "value": "Atlantic/Madeira" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) Irish Standard Time (Europe/Dublin)", + "validFor": null, + "value": "Europe/Dublin" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) British Summer Time (Europe/Guernsey)", + "validFor": null, + "value": "Europe/Guernsey" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) British Summer Time (Europe/Isle_of_Man)", + "validFor": null, + "value": "Europe/Isle_of_Man" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) British Summer Time (Europe/Jersey)", + "validFor": null, + "value": "Europe/Jersey" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) Western European Summer Time (Europe/Lisbon)", + "validFor": null, + "value": "Europe/Lisbon" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) British Summer Time (Europe/London)", + "validFor": null, + "value": "Europe/London" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Abidjan)", + "validFor": null, + "value": "Africa/Abidjan" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Accra)", + "validFor": null, + "value": "Africa/Accra" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Bamako)", + "validFor": null, + "value": "Africa/Bamako" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Banjul)", + "validFor": null, + "value": "Africa/Banjul" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Bissau)", + "validFor": null, + "value": "Africa/Bissau" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Conakry)", + "validFor": null, + "value": "Africa/Conakry" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Dakar)", + "validFor": null, + "value": "Africa/Dakar" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Freetown)", + "validFor": null, + "value": "Africa/Freetown" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Lome)", + "validFor": null, + "value": "Africa/Lome" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Monrovia)", + "validFor": null, + "value": "Africa/Monrovia" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Nouakchott)", + "validFor": null, + "value": "Africa/Nouakchott" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Ouagadougou)", + "validFor": null, + "value": "Africa/Ouagadougou" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Sao_Tome)", + "validFor": null, + "value": "Africa/Sao_Tome" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (America/Danmarkshavn)", + "validFor": null, + "value": "America/Danmarkshavn" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) East Greenland Summer Time (America/Scoresbysund)", + "validFor": null, + "value": "America/Scoresbysund" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Azores Summer Time (Atlantic/Azores)", + "validFor": null, + "value": "Atlantic/Azores" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Atlantic/Reykjavik)", + "validFor": null, + "value": "Atlantic/Reykjavik" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Atlantic/St_Helena)", + "validFor": null, + "value": "Atlantic/St_Helena" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (GMT)", + "validFor": null, + "value": "GMT" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-01:00) Cape Verde Standard Time (Atlantic/Cape_Verde)", + "validFor": null, + "value": "Atlantic/Cape_Verde" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-02:00) West Greenland Summer Time (America/Godthab)", + "validFor": null, + "value": "America/Godthab" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-02:00) St Pierre & Miquelon Daylight Time (America/Miquelon)", + "validFor": null, + "value": "America/Miquelon" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-02:00) Fernando de Noronha Standard Time (America/Noronha)", + "validFor": null, + "value": "America/Noronha" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-02:00) South Georgia Time (Atlantic/South_Georgia)", + "validFor": null, + "value": "Atlantic/South_Georgia" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-02:30) Newfoundland Daylight Time (America/St_Johns)", + "validFor": null, + "value": "America/St_Johns" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Brasilia Standard Time (America/Araguaina)", + "validFor": null, + "value": "America/Araguaina" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Argentina/Buenos_Aires)", + "validFor": null, + "value": "America/Argentina/Buenos_Aires" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Argentina/La_Rioja)", + "validFor": null, + "value": "America/Argentina/La_Rioja" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Argentina/Rio_Gallegos)", + "validFor": null, + "value": "America/Argentina/Rio_Gallegos" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Argentina/Salta)", + "validFor": null, + "value": "America/Argentina/Salta" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Argentina/San_Juan)", + "validFor": null, + "value": "America/Argentina/San_Juan" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Argentina/San_Luis)", + "validFor": null, + "value": "America/Argentina/San_Luis" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Argentina/Tucuman)", + "validFor": null, + "value": "America/Argentina/Tucuman" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Argentina/Ushuaia)", + "validFor": null, + "value": "America/Argentina/Ushuaia" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Brasilia Standard Time (America/Bahia)", + "validFor": null, + "value": "America/Bahia" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Brasilia Standard Time (America/Belem)", + "validFor": null, + "value": "America/Belem" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Catamarca)", + "validFor": null, + "value": "America/Catamarca" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) French Guiana Time (America/Cayenne)", + "validFor": null, + "value": "America/Cayenne" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Cordoba)", + "validFor": null, + "value": "America/Cordoba" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Brasilia Standard Time (America/Fortaleza)", + "validFor": null, + "value": "America/Fortaleza" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Atlantic Daylight Time (America/Glace_Bay)", + "validFor": null, + "value": "America/Glace_Bay" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Atlantic Daylight Time (America/Goose_Bay)", + "validFor": null, + "value": "America/Goose_Bay" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Atlantic Daylight Time (America/Halifax)", + "validFor": null, + "value": "America/Halifax" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Jujuy)", + "validFor": null, + "value": "America/Jujuy" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Brasilia Standard Time (America/Maceio)", + "validFor": null, + "value": "America/Maceio" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Mendoza)", + "validFor": null, + "value": "America/Mendoza" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Atlantic Daylight Time (America/Moncton)", + "validFor": null, + "value": "America/Moncton" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Uruguay Standard Time (America/Montevideo)", + "validFor": null, + "value": "America/Montevideo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Suriname Time (America/Paramaribo)", + "validFor": null, + "value": "America/Paramaribo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Chile Standard Time (America/Punta_Arenas)", + "validFor": null, + "value": "America/Punta_Arenas" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Brasilia Standard Time (America/Recife)", + "validFor": null, + "value": "America/Recife" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Brasilia Standard Time (America/Santarem)", + "validFor": null, + "value": "America/Santarem" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Chile Summer Time (America/Santiago)", + "validFor": null, + "value": "America/Santiago" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Brasilia Standard Time (America/Sao_Paulo)", + "validFor": null, + "value": "America/Sao_Paulo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Atlantic Daylight Time (America/Thule)", + "validFor": null, + "value": "America/Thule" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Chile Standard Time (Antarctica/Palmer)", + "validFor": null, + "value": "Antarctica/Palmer" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Rothera Time (Antarctica/Rothera)", + "validFor": null, + "value": "Antarctica/Rothera" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Atlantic Daylight Time (Atlantic/Bermuda)", + "validFor": null, + "value": "Atlantic/Bermuda" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Falkland Islands Standard Time (Atlantic/Stanley)", + "validFor": null, + "value": "Atlantic/Stanley" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Anguilla)", + "validFor": null, + "value": "America/Anguilla" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Antigua)", + "validFor": null, + "value": "America/Antigua" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Aruba)", + "validFor": null, + "value": "America/Aruba" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Paraguay Standard Time (America/Asuncion)", + "validFor": null, + "value": "America/Asuncion" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Barbados)", + "validFor": null, + "value": "America/Barbados" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Blanc-Sablon)", + "validFor": null, + "value": "America/Blanc-Sablon" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Amazon Standard Time (America/Boa_Vista)", + "validFor": null, + "value": "America/Boa_Vista" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Amazon Standard Time (America/Campo_Grande)", + "validFor": null, + "value": "America/Campo_Grande" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Venezuela Time (America/Caracas)", + "validFor": null, + "value": "America/Caracas" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Amazon Standard Time (America/Cuiaba)", + "validFor": null, + "value": "America/Cuiaba" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Curacao)", + "validFor": null, + "value": "America/Curacao" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Detroit)", + "validFor": null, + "value": "America/Detroit" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Dominica)", + "validFor": null, + "value": "America/Dominica" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Grand_Turk)", + "validFor": null, + "value": "America/Grand_Turk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Grenada)", + "validFor": null, + "value": "America/Grenada" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Guadeloupe)", + "validFor": null, + "value": "America/Guadeloupe" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Guyana Time (America/Guyana)", + "validFor": null, + "value": "America/Guyana" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Indiana/Indianapolis)", + "validFor": null, + "value": "America/Indiana/Indianapolis" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Indiana/Marengo)", + "validFor": null, + "value": "America/Indiana/Marengo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Indiana/Petersburg)", + "validFor": null, + "value": "America/Indiana/Petersburg" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Indiana/Vevay)", + "validFor": null, + "value": "America/Indiana/Vevay" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Indiana/Vincennes)", + "validFor": null, + "value": "America/Indiana/Vincennes" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Indiana/Winamac)", + "validFor": null, + "value": "America/Indiana/Winamac" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Iqaluit)", + "validFor": null, + "value": "America/Iqaluit" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Kentucky/Monticello)", + "validFor": null, + "value": "America/Kentucky/Monticello" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Kralendijk)", + "validFor": null, + "value": "America/Kralendijk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Bolivia Time (America/La_Paz)", + "validFor": null, + "value": "America/La_Paz" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Louisville)", + "validFor": null, + "value": "America/Louisville" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Lower_Princes)", + "validFor": null, + "value": "America/Lower_Princes" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Amazon Standard Time (America/Manaus)", + "validFor": null, + "value": "America/Manaus" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Marigot)", + "validFor": null, + "value": "America/Marigot" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Martinique)", + "validFor": null, + "value": "America/Martinique" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Montreal)", + "validFor": null, + "value": "America/Montreal" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Montserrat)", + "validFor": null, + "value": "America/Montserrat" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Nassau)", + "validFor": null, + "value": "America/Nassau" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/New_York)", + "validFor": null, + "value": "America/New_York" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Nipigon)", + "validFor": null, + "value": "America/Nipigon" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Pangnirtung)", + "validFor": null, + "value": "America/Pangnirtung" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Port-au-Prince)", + "validFor": null, + "value": "America/Port-au-Prince" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Port_of_Spain)", + "validFor": null, + "value": "America/Port_of_Spain" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Amazon Standard Time (America/Porto_Velho)", + "validFor": null, + "value": "America/Porto_Velho" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Puerto_Rico)", + "validFor": null, + "value": "America/Puerto_Rico" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Santo_Domingo)", + "validFor": null, + "value": "America/Santo_Domingo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/St_Barthelemy)", + "validFor": null, + "value": "America/St_Barthelemy" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/St_Kitts)", + "validFor": null, + "value": "America/St_Kitts" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/St_Lucia)", + "validFor": null, + "value": "America/St_Lucia" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/St_Thomas)", + "validFor": null, + "value": "America/St_Thomas" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/St_Vincent)", + "validFor": null, + "value": "America/St_Vincent" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Thunder_Bay)", + "validFor": null, + "value": "America/Thunder_Bay" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Toronto)", + "validFor": null, + "value": "America/Toronto" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Tortola)", + "validFor": null, + "value": "America/Tortola" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Colombia Standard Time (America/Bogota)", + "validFor": null, + "value": "America/Bogota" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Eastern Standard Time (America/Cancun)", + "validFor": null, + "value": "America/Cancun" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Eastern Standard Time (America/Cayman)", + "validFor": null, + "value": "America/Cayman" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/Chicago)", + "validFor": null, + "value": "America/Chicago" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Eastern Standard Time (America/Coral_Harbour)", + "validFor": null, + "value": "America/Coral_Harbour" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Acre Standard Time (America/Eirunepe)", + "validFor": null, + "value": "America/Eirunepe" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Ecuador Time (America/Guayaquil)", + "validFor": null, + "value": "America/Guayaquil" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/Indiana/Knox)", + "validFor": null, + "value": "America/Indiana/Knox" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/Indiana/Tell_City)", + "validFor": null, + "value": "America/Indiana/Tell_City" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Eastern Standard Time (America/Jamaica)", + "validFor": null, + "value": "America/Jamaica" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Peru Standard Time (America/Lima)", + "validFor": null, + "value": "America/Lima" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/Matamoros)", + "validFor": null, + "value": "America/Matamoros" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/Menominee)", + "validFor": null, + "value": "America/Menominee" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/North_Dakota/Beulah)", + "validFor": null, + "value": "America/North_Dakota/Beulah" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/North_Dakota/Center)", + "validFor": null, + "value": "America/North_Dakota/Center" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/North_Dakota/New_Salem)", + "validFor": null, + "value": "America/North_Dakota/New_Salem" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Mountain Daylight Time (America/Ojinaga)", + "validFor": null, + "value": "America/Ojinaga" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Eastern Standard Time (America/Panama)", + "validFor": null, + "value": "America/Panama" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/Rainy_River)", + "validFor": null, + "value": "America/Rainy_River" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/Rankin_Inlet)", + "validFor": null, + "value": "America/Rankin_Inlet" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/Resolute)", + "validFor": null, + "value": "America/Resolute" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Acre Standard Time (America/Rio_Branco)", + "validFor": null, + "value": "America/Rio_Branco" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/Winnipeg)", + "validFor": null, + "value": "America/Winnipeg" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Easter Island Summer Time (Pacific/Easter)", + "validFor": null, + "value": "Pacific/Easter" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Bahia_Banderas)", + "validFor": null, + "value": "America/Bahia_Banderas" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Belize)", + "validFor": null, + "value": "America/Belize" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Mountain Daylight Time (America/Boise)", + "validFor": null, + "value": "America/Boise" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Mountain Daylight Time (America/Cambridge_Bay)", + "validFor": null, + "value": "America/Cambridge_Bay" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Mexican Pacific Standard Time (America/Chihuahua)", + "validFor": null, + "value": "America/Chihuahua" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Costa_Rica)", + "validFor": null, + "value": "America/Costa_Rica" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Mountain Daylight Time (America/Denver)", + "validFor": null, + "value": "America/Denver" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Mountain Daylight Time (America/Edmonton)", + "validFor": null, + "value": "America/Edmonton" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/El_Salvador)", + "validFor": null, + "value": "America/El_Salvador" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Guatemala)", + "validFor": null, + "value": "America/Guatemala" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Mountain Daylight Time (America/Inuvik)", + "validFor": null, + "value": "America/Inuvik" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Managua)", + "validFor": null, + "value": "America/Managua" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Merida)", + "validFor": null, + "value": "America/Merida" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Mexico_City)", + "validFor": null, + "value": "America/Mexico_City" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Monterrey)", + "validFor": null, + "value": "America/Monterrey" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Regina)", + "validFor": null, + "value": "America/Regina" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Swift_Current)", + "validFor": null, + "value": "America/Swift_Current" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Tegucigalpa)", + "validFor": null, + "value": "America/Tegucigalpa" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Mountain Daylight Time (America/Yellowknife)", + "validFor": null, + "value": "America/Yellowknife" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Galapagos Time (Pacific/Galapagos)", + "validFor": null, + "value": "Pacific/Galapagos" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Mountain Standard Time (America/Creston)", + "validFor": null, + "value": "America/Creston" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Yukon Time (America/Dawson)", + "validFor": null, + "value": "America/Dawson" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Mountain Standard Time (America/Dawson_Creek)", + "validFor": null, + "value": "America/Dawson_Creek" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Mountain Standard Time (America/Fort_Nelson)", + "validFor": null, + "value": "America/Fort_Nelson" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Mexican Pacific Standard Time (America/Hermosillo)", + "validFor": null, + "value": "America/Hermosillo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Pacific Daylight Time (America/Los_Angeles)", + "validFor": null, + "value": "America/Los_Angeles" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Mexican Pacific Standard Time (America/Mazatlan)", + "validFor": null, + "value": "America/Mazatlan" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Mountain Standard Time (America/Phoenix)", + "validFor": null, + "value": "America/Phoenix" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Northwest Mexico Daylight Time (America/Santa_Isabel)", + "validFor": null, + "value": "America/Santa_Isabel" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Pacific Daylight Time (America/Tijuana)", + "validFor": null, + "value": "America/Tijuana" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Pacific Daylight Time (America/Vancouver)", + "validFor": null, + "value": "America/Vancouver" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Yukon Time (America/Whitehorse)", + "validFor": null, + "value": "America/Whitehorse" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-08:00) Alaska Daylight Time (America/Anchorage)", + "validFor": null, + "value": "America/Anchorage" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-08:00) Alaska Daylight Time (America/Juneau)", + "validFor": null, + "value": "America/Juneau" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-08:00) Alaska Daylight Time (America/Metlakatla)", + "validFor": null, + "value": "America/Metlakatla" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-08:00) Alaska Daylight Time (America/Nome)", + "validFor": null, + "value": "America/Nome" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-08:00) Alaska Daylight Time (America/Sitka)", + "validFor": null, + "value": "America/Sitka" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-08:00) Alaska Daylight Time (America/Yakutat)", + "validFor": null, + "value": "America/Yakutat" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-08:00) Pitcairn Time (Pacific/Pitcairn)", + "validFor": null, + "value": "Pacific/Pitcairn" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-09:00) Hawaii-Aleutian Daylight Time (America/Adak)", + "validFor": null, + "value": "America/Adak" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-09:00) Gambier Time (Pacific/Gambier)", + "validFor": null, + "value": "Pacific/Gambier" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-09:30) Marquesas Time (Pacific/Marquesas)", + "validFor": null, + "value": "Pacific/Marquesas" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-10:00) Hawaii-Aleutian Standard Time (Pacific/Honolulu)", + "validFor": null, + "value": "Pacific/Honolulu" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-10:00) Hawaii-Aleutian Standard Time (Pacific/Johnston)", + "validFor": null, + "value": "Pacific/Johnston" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-10:00) Cook Islands Standard Time (Pacific/Rarotonga)", + "validFor": null, + "value": "Pacific/Rarotonga" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-10:00) Tahiti Time (Pacific/Tahiti)", + "validFor": null, + "value": "Pacific/Tahiti" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-11:00) Samoa Standard Time (Pacific/Midway)", + "validFor": null, + "value": "Pacific/Midway" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-11:00) Niue Time (Pacific/Niue)", + "validFor": null, + "value": "Pacific/Niue" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-11:00) Samoa Standard Time (Pacific/Pago_Pago)", + "validFor": null, + "value": "Pacific/Pago_Pago" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Recurrence Type", + "name": "RecurrenceType", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Recurs Daily", + "validFor": null, + "value": "RecursDaily" + }, + { + "active": true, + "defaultValue": false, + "label": "Recurs Every Weekday", + "validFor": null, + "value": "RecursEveryWeekday" + }, + { + "active": true, + "defaultValue": false, + "label": "Recurs Monthly", + "validFor": null, + "value": "RecursMonthly" + }, + { + "active": true, + "defaultValue": false, + "label": "Recurs Monthly Nth", + "validFor": null, + "value": "RecursMonthlyNth" + }, + { + "active": true, + "defaultValue": false, + "label": "Recurs Weekly", + "validFor": null, + "value": "RecursWeekly" + }, + { + "active": true, + "defaultValue": false, + "label": "Recurs Yearly", + "validFor": null, + "value": "RecursYearly" + }, + { + "active": true, + "defaultValue": false, + "label": "Recurs Yearly Nth", + "validFor": null, + "value": "RecursYearlyNth" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Recurrence Interval", + "name": "RecurrenceInterval", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "int" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Recurrence Day of Week Mask", + "name": "RecurrenceDayOfWeekMask", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "int" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Recurrence Day of Month", + "name": "RecurrenceDayOfMonth", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "int" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Recurrence Instance", + "name": "RecurrenceInstance", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "1st", + "validFor": null, + "value": "First" + }, + { + "active": true, + "defaultValue": false, + "label": "2nd", + "validFor": null, + "value": "Second" + }, + { + "active": true, + "defaultValue": false, + "label": "3rd", + "validFor": null, + "value": "Third" + }, + { + "active": true, + "defaultValue": false, + "label": "4th", + "validFor": null, + "value": "Fourth" + }, + { + "active": true, + "defaultValue": false, + "label": "last", + "validFor": null, + "value": "Last" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Recurrence Month of Year", + "name": "RecurrenceMonthOfYear", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "January", + "validFor": null, + "value": "January" + }, + { + "active": true, + "defaultValue": false, + "label": "February", + "validFor": null, + "value": "February" + }, + { + "active": true, + "defaultValue": false, + "label": "March", + "validFor": null, + "value": "March" + }, + { + "active": true, + "defaultValue": false, + "label": "April", + "validFor": null, + "value": "April" + }, + { + "active": true, + "defaultValue": false, + "label": "May", + "validFor": null, + "value": "May" + }, + { + "active": true, + "defaultValue": false, + "label": "June", + "validFor": null, + "value": "June" + }, + { + "active": true, + "defaultValue": false, + "label": "July", + "validFor": null, + "value": "July" + }, + { + "active": true, + "defaultValue": false, + "label": "August", + "validFor": null, + "value": "August" + }, + { + "active": true, + "defaultValue": false, + "label": "September", + "validFor": null, + "value": "September" + }, + { + "active": true, + "defaultValue": false, + "label": "October", + "validFor": null, + "value": "October" + }, + { + "active": true, + "defaultValue": false, + "label": "November", + "validFor": null, + "value": "November" + }, + { + "active": true, + "defaultValue": false, + "label": "December", + "validFor": null, + "value": "December" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Repeat This Task", + "name": "RecurrenceRegeneratedType", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "After due date", + "validFor": null, + "value": "RecurrenceRegenerateAfterDueDate" + }, + { + "active": true, + "defaultValue": false, + "label": "After date completed", + "validFor": null, + "value": "RecurrenceRegenerateAfterToday" + }, + { + "active": true, + "defaultValue": false, + "label": "(Task Closed)", + "validFor": null, + "value": "RecurrenceRegenerated" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Task Subtype", + "name": "TaskSubtype", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Task", + "validFor": null, + "value": "Task" + }, + { + "active": true, + "defaultValue": false, + "label": "Email", + "validFor": null, + "value": "Email" + }, + { + "active": true, + "defaultValue": false, + "label": "List Email", + "validFor": null, + "value": "ListEmail" + }, + { + "active": true, + "defaultValue": false, + "label": "Cadence", + "validFor": null, + "value": "Cadence" + }, + { + "active": true, + "defaultValue": false, + "label": "Call", + "validFor": null, + "value": "Call" + }, + { + "active": true, + "defaultValue": false, + "label": "LinkedIn", + "validFor": null, + "value": "LinkedIn" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Completed Date/Time", + "name": "CompletedDateTime", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + } + ], + "label": "Task", + "childRelationships": [ + { + "cascadeDelete": true, + "childSObject": "AIInsightValue", + "deprecatedAndHidden": false, + "field": "SobjectLookupValueId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AIRecordInsight", + "deprecatedAndHidden": false, + "field": "TargetId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ActivityFieldHistory", + "deprecatedAndHidden": false, + "field": "ActivityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ActivityFieldHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AttachedContentDocument", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AttachedContentDocuments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Attachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Attachments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CombinedAttachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CombinedAttachments", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentDocumentLink", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContentDocumentLinks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocumentLinkChangeEvent", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersion", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersionChangeEvent", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessage", + "deprecatedAndHidden": false, + "field": "ActivityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessageChangeEvent", + "deprecatedAndHidden": false, + "field": "ActivityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailStatus", + "deprecatedAndHidden": false, + "field": "TaskId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EntitySubscription", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "FeedSubscriptionsForEntity", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FeedComment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FeedItem", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowExecutionErrorEvent", + "deprecatedAndHidden": false, + "field": "ContextRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowRecordRelation", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Task", + "deprecatedAndHidden": false, + "field": "RecurrenceActivityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecurringTasks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TaskChangeEvent", + "deprecatedAndHidden": false, + "field": "RecurrenceActivityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "TaskFeed", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Feeds", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "TopicAssignment", + "deprecatedAndHidden": false, + "field": "EntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "TopicAssignments", + "restrictedDelete": false + } + ], + "custom": false, + "name": "Task", + "queryable": true +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/User.json b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/User.json new file mode 100644 index 0000000000000000000000000000000000000000..6db034316b36a41b475da1b50708b6ba50609396 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/soqlMetadata/standardObjects/User.json @@ -0,0 +1,30415 @@ +{ + "fields": [ + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "User ID", + "name": "Id", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "id" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Username", + "name": "Username", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "personname", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Name", + "name": "LastName", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "personname", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "First Name", + "name": "FirstName", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "personname", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Full Name", + "name": "Name", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Company Name", + "name": "CompanyName", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Division", + "name": "Division", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Department", + "name": "Department", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Title", + "name": "Title", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Street", + "name": "Street", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "City", + "name": "City", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "State/Province", + "name": "State", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Zip/Postal Code", + "name": "PostalCode", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Country", + "name": "Country", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Latitude", + "name": "Latitude", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Longitude", + "name": "Longitude", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "double" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Geocode Accuracy", + "name": "GeocodeAccuracy", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Address", + "validFor": null, + "value": "Address" + }, + { + "active": true, + "defaultValue": false, + "label": "NearAddress", + "validFor": null, + "value": "NearAddress" + }, + { + "active": true, + "defaultValue": false, + "label": "Block", + "validFor": null, + "value": "Block" + }, + { + "active": true, + "defaultValue": false, + "label": "Street", + "validFor": null, + "value": "Street" + }, + { + "active": true, + "defaultValue": false, + "label": "ExtendedZip", + "validFor": null, + "value": "ExtendedZip" + }, + { + "active": true, + "defaultValue": false, + "label": "Zip", + "validFor": null, + "value": "Zip" + }, + { + "active": true, + "defaultValue": false, + "label": "Neighborhood", + "validFor": null, + "value": "Neighborhood" + }, + { + "active": true, + "defaultValue": false, + "label": "City", + "validFor": null, + "value": "City" + }, + { + "active": true, + "defaultValue": false, + "label": "County", + "validFor": null, + "value": "County" + }, + { + "active": true, + "defaultValue": false, + "label": "State", + "validFor": null, + "value": "State" + }, + { + "active": true, + "defaultValue": false, + "label": "Unknown", + "validFor": null, + "value": "Unknown" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Address", + "name": "Address", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "address" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Email", + "name": "Email", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "email" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "AutoBcc", + "name": "EmailPreferencesAutoBcc", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "AutoBccStayInTouch", + "name": "EmailPreferencesAutoBccStayInTouch", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "StayInTouchReminder", + "name": "EmailPreferencesStayInTouchReminder", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Email Sender Address", + "name": "SenderEmail", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "email" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Email Sender Name", + "name": "SenderName", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Email Signature", + "name": "Signature", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Stay-in-Touch Email Subject", + "name": "StayInTouchSubject", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Stay-in-Touch Email Signature", + "name": "StayInTouchSignature", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Stay-in-Touch Email Note", + "name": "StayInTouchNote", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Phone", + "name": "Phone", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "phone" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Fax", + "name": "Fax", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "phone" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Mobile", + "name": "MobilePhone", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "phone" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Alias", + "name": "Alias", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Nickname", + "name": "CommunityNickname", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "User Photo badge text overlay", + "name": "BadgeText", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Active", + "name": "IsActive", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Time Zone", + "name": "TimeZoneSidKey", + "nillable": false, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "(GMT+14:00) Line Islands Time (Pacific/Kiritimati)", + "validFor": null, + "value": "Pacific/Kiritimati" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+13:45) Chatham Daylight Time (Pacific/Chatham)", + "validFor": null, + "value": "Pacific/Chatham" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+13:00) New Zealand Daylight Time (Antarctica/McMurdo)", + "validFor": null, + "value": "Antarctica/McMurdo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+13:00) Apia Standard Time (Pacific/Apia)", + "validFor": null, + "value": "Pacific/Apia" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+13:00) New Zealand Daylight Time (Pacific/Auckland)", + "validFor": null, + "value": "Pacific/Auckland" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+13:00) Phoenix Islands Time (Pacific/Enderbury)", + "validFor": null, + "value": "Pacific/Enderbury" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+13:00) Tokelau Time (Pacific/Fakaofo)", + "validFor": null, + "value": "Pacific/Fakaofo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+13:00) Tonga Standard Time (Pacific/Tongatapu)", + "validFor": null, + "value": "Pacific/Tongatapu" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+12:00) Anadyr Standard Time (Asia/Anadyr)", + "validFor": null, + "value": "Asia/Anadyr" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+12:00) Petropavlovsk-Kamchatski Standard Time (Asia/Kamchatka)", + "validFor": null, + "value": "Asia/Kamchatka" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+12:00) Fiji Standard Time (Pacific/Fiji)", + "validFor": null, + "value": "Pacific/Fiji" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+12:00) Tuvalu Time (Pacific/Funafuti)", + "validFor": null, + "value": "Pacific/Funafuti" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+12:00) Marshall Islands Time (Pacific/Kwajalein)", + "validFor": null, + "value": "Pacific/Kwajalein" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+12:00) Marshall Islands Time (Pacific/Majuro)", + "validFor": null, + "value": "Pacific/Majuro" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+12:00) Nauru Time (Pacific/Nauru)", + "validFor": null, + "value": "Pacific/Nauru" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+12:00) Gilbert Islands Time (Pacific/Tarawa)", + "validFor": null, + "value": "Pacific/Tarawa" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+12:00) Wake Island Time (Pacific/Wake)", + "validFor": null, + "value": "Pacific/Wake" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+12:00) Wallis & Futuna Time (Pacific/Wallis)", + "validFor": null, + "value": "Pacific/Wallis" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) Casey Time (Antarctica/Casey)", + "validFor": null, + "value": "Antarctica/Casey" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) Magadan Standard Time (Asia/Magadan)", + "validFor": null, + "value": "Asia/Magadan" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) Sakhalin Standard Time (Asia/Sakhalin)", + "validFor": null, + "value": "Asia/Sakhalin" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) Magadan Standard Time (Asia/Srednekolymsk)", + "validFor": null, + "value": "Asia/Srednekolymsk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) Bougainville Standard Time (Pacific/Bougainville)", + "validFor": null, + "value": "Pacific/Bougainville" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) Vanuatu Standard Time (Pacific/Efate)", + "validFor": null, + "value": "Pacific/Efate" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) Solomon Islands Time (Pacific/Guadalcanal)", + "validFor": null, + "value": "Pacific/Guadalcanal" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) Kosrae Time (Pacific/Kosrae)", + "validFor": null, + "value": "Pacific/Kosrae" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) Norfolk Island Standard Time (Pacific/Norfolk)", + "validFor": null, + "value": "Pacific/Norfolk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) New Caledonia Standard Time (Pacific/Noumea)", + "validFor": null, + "value": "Pacific/Noumea" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+11:00) Ponape Time (Pacific/Ponape)", + "validFor": null, + "value": "Pacific/Ponape" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:30) Lord Howe Standard Time (Australia/Lord_Howe)", + "validFor": null, + "value": "Australia/Lord_Howe" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Dumont-d’Urville Time (Antarctica/DumontDUrville)", + "validFor": null, + "value": "Antarctica/DumontDUrville" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Australian Eastern Standard Time (Antarctica/Macquarie)", + "validFor": null, + "value": "Antarctica/Macquarie" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Vladivostok Standard Time (Asia/Ust-Nera)", + "validFor": null, + "value": "Asia/Ust-Nera" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Vladivostok Standard Time (Asia/Vladivostok)", + "validFor": null, + "value": "Asia/Vladivostok" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Australian Eastern Standard Time (Australia/Brisbane)", + "validFor": null, + "value": "Australia/Brisbane" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Australian Eastern Standard Time (Australia/Currie)", + "validFor": null, + "value": "Australia/Currie" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Australian Eastern Standard Time (Australia/Hobart)", + "validFor": null, + "value": "Australia/Hobart" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Australian Eastern Standard Time (Australia/Lindeman)", + "validFor": null, + "value": "Australia/Lindeman" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Australian Eastern Standard Time (Australia/Melbourne)", + "validFor": null, + "value": "Australia/Melbourne" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Australian Eastern Standard Time (Australia/Sydney)", + "validFor": null, + "value": "Australia/Sydney" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Chamorro Standard Time (Pacific/Guam)", + "validFor": null, + "value": "Pacific/Guam" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Papua New Guinea Time (Pacific/Port_Moresby)", + "validFor": null, + "value": "Pacific/Port_Moresby" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Chamorro Standard Time (Pacific/Saipan)", + "validFor": null, + "value": "Pacific/Saipan" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+10:00) Chuuk Time (Pacific/Truk)", + "validFor": null, + "value": "Pacific/Truk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:30) Australian Central Standard Time (Australia/Adelaide)", + "validFor": null, + "value": "Australia/Adelaide" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:30) Australian Central Standard Time (Australia/Broken_Hill)", + "validFor": null, + "value": "Australia/Broken_Hill" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:30) Australian Central Standard Time (Australia/Darwin)", + "validFor": null, + "value": "Australia/Darwin" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:00) Yakutsk Standard Time (Asia/Chita)", + "validFor": null, + "value": "Asia/Chita" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:00) East Timor Time (Asia/Dili)", + "validFor": null, + "value": "Asia/Dili" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:00) Eastern Indonesia Time (Asia/Jayapura)", + "validFor": null, + "value": "Asia/Jayapura" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:00) Yakutsk Standard Time (Asia/Khandyga)", + "validFor": null, + "value": "Asia/Khandyga" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:00) Korean Standard Time (Asia/Seoul)", + "validFor": null, + "value": "Asia/Seoul" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:00) Japan Standard Time (Asia/Tokyo)", + "validFor": null, + "value": "Asia/Tokyo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:00) Yakutsk Standard Time (Asia/Yakutsk)", + "validFor": null, + "value": "Asia/Yakutsk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+09:00) Palau Time (Pacific/Palau)", + "validFor": null, + "value": "Pacific/Palau" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:45) Australian Central Western Standard Time (Australia/Eucla)", + "validFor": null, + "value": "Australia/Eucla" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Brunei Darussalam Time (Asia/Brunei)", + "validFor": null, + "value": "Asia/Brunei" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Ulaanbaatar Standard Time (Asia/Choibalsan)", + "validFor": null, + "value": "Asia/Choibalsan" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Hong Kong Standard Time (Asia/Hong_Kong)", + "validFor": null, + "value": "Asia/Hong_Kong" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Irkutsk Standard Time (Asia/Irkutsk)", + "validFor": null, + "value": "Asia/Irkutsk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Malaysia Time (Asia/Kuala_Lumpur)", + "validFor": null, + "value": "Asia/Kuala_Lumpur" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Malaysia Time (Asia/Kuching)", + "validFor": null, + "value": "Asia/Kuching" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) China Standard Time (Asia/Macau)", + "validFor": null, + "value": "Asia/Macau" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Central Indonesia Time (Asia/Makassar)", + "validFor": null, + "value": "Asia/Makassar" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Philippine Standard Time (Asia/Manila)", + "validFor": null, + "value": "Asia/Manila" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) China Standard Time (Asia/Shanghai)", + "validFor": null, + "value": "Asia/Shanghai" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Singapore Standard Time (Asia/Singapore)", + "validFor": null, + "value": "Asia/Singapore" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Taipei Standard Time (Asia/Taipei)", + "validFor": null, + "value": "Asia/Taipei" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Ulaanbaatar Standard Time (Asia/Ulaanbaatar)", + "validFor": null, + "value": "Asia/Ulaanbaatar" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+08:00) Australian Western Standard Time (Australia/Perth)", + "validFor": null, + "value": "Australia/Perth" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Davis Time (Antarctica/Davis)", + "validFor": null, + "value": "Antarctica/Davis" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Indochina Time (Asia/Bangkok)", + "validFor": null, + "value": "Asia/Bangkok" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Moscow Standard Time + 4 (Asia/Barnaul)", + "validFor": null, + "value": "Asia/Barnaul" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Indochina Time (Asia/Ho_Chi_Minh)", + "validFor": null, + "value": "Asia/Ho_Chi_Minh" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Hovd Standard Time (Asia/Hovd)", + "validFor": null, + "value": "Asia/Hovd" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Western Indonesia Time (Asia/Jakarta)", + "validFor": null, + "value": "Asia/Jakarta" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Krasnoyarsk Standard Time (Asia/Krasnoyarsk)", + "validFor": null, + "value": "Asia/Krasnoyarsk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Krasnoyarsk Standard Time (Asia/Novokuznetsk)", + "validFor": null, + "value": "Asia/Novokuznetsk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Novosibirsk Standard Time (Asia/Novosibirsk)", + "validFor": null, + "value": "Asia/Novosibirsk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Indochina Time (Asia/Phnom_Penh)", + "validFor": null, + "value": "Asia/Phnom_Penh" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Western Indonesia Time (Asia/Pontianak)", + "validFor": null, + "value": "Asia/Pontianak" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Moscow Standard Time + 4 (Asia/Tomsk)", + "validFor": null, + "value": "Asia/Tomsk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Indochina Time (Asia/Vientiane)", + "validFor": null, + "value": "Asia/Vientiane" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+07:00) Christmas Island Time (Indian/Christmas)", + "validFor": null, + "value": "Indian/Christmas" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:30) Myanmar Time (Asia/Rangoon)", + "validFor": null, + "value": "Asia/Rangoon" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:30) Cocos Islands Time (Indian/Cocos)", + "validFor": null, + "value": "Indian/Cocos" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:00) Vostok Time (Antarctica/Vostok)", + "validFor": null, + "value": "Antarctica/Vostok" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:00) East Kazakhstan Time (Asia/Almaty)", + "validFor": null, + "value": "Asia/Almaty" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:00) Kyrgyzstan Time (Asia/Bishkek)", + "validFor": null, + "value": "Asia/Bishkek" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:00) Bangladesh Standard Time (Asia/Dhaka)", + "validFor": null, + "value": "Asia/Dhaka" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:00) Omsk Standard Time (Asia/Omsk)", + "validFor": null, + "value": "Asia/Omsk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:00) East Kazakhstan Time (Asia/Qostanay)", + "validFor": null, + "value": "Asia/Qostanay" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:00) Bhutan Time (Asia/Thimphu)", + "validFor": null, + "value": "Asia/Thimphu" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:00) China Standard Time (Asia/Urumqi)", + "validFor": null, + "value": "Asia/Urumqi" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+06:00) Indian Ocean Time (Indian/Chagos)", + "validFor": null, + "value": "Indian/Chagos" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:45) Nepal Time (Asia/Kathmandu)", + "validFor": null, + "value": "Asia/Kathmandu" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:30) India Standard Time (Asia/Colombo)", + "validFor": null, + "value": "Asia/Colombo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:30) India Standard Time (Asia/Kolkata)", + "validFor": null, + "value": "Asia/Kolkata" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) Mawson Time (Antarctica/Mawson)", + "validFor": null, + "value": "Antarctica/Mawson" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) West Kazakhstan Time (Asia/Aqtau)", + "validFor": null, + "value": "Asia/Aqtau" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) West Kazakhstan Time (Asia/Aqtobe)", + "validFor": null, + "value": "Asia/Aqtobe" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) Turkmenistan Standard Time (Asia/Ashgabat)", + "validFor": null, + "value": "Asia/Ashgabat" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) West Kazakhstan Time (Asia/Atyrau)", + "validFor": null, + "value": "Asia/Atyrau" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) Tajikistan Time (Asia/Dushanbe)", + "validFor": null, + "value": "Asia/Dushanbe" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) Pakistan Standard Time (Asia/Karachi)", + "validFor": null, + "value": "Asia/Karachi" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) West Kazakhstan Time (Asia/Oral)", + "validFor": null, + "value": "Asia/Oral" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) West Kazakhstan Time (Asia/Qyzylorda)", + "validFor": null, + "value": "Asia/Qyzylorda" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) Uzbekistan Standard Time (Asia/Samarkand)", + "validFor": null, + "value": "Asia/Samarkand" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) Uzbekistan Standard Time (Asia/Tashkent)", + "validFor": null, + "value": "Asia/Tashkent" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) Yekaterinburg Standard Time (Asia/Yekaterinburg)", + "validFor": null, + "value": "Asia/Yekaterinburg" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) French Southern & Antarctic Time (Indian/Kerguelen)", + "validFor": null, + "value": "Indian/Kerguelen" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+05:00) Maldives Time (Indian/Maldives)", + "validFor": null, + "value": "Indian/Maldives" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:30) Afghanistan Time (Asia/Kabul)", + "validFor": null, + "value": "Asia/Kabul" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Azerbaijan Standard Time (Asia/Baku)", + "validFor": null, + "value": "Asia/Baku" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Gulf Standard Time (Asia/Dubai)", + "validFor": null, + "value": "Asia/Dubai" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Gulf Standard Time (Asia/Muscat)", + "validFor": null, + "value": "Asia/Muscat" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Georgia Standard Time (Asia/Tbilisi)", + "validFor": null, + "value": "Asia/Tbilisi" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Armenia Standard Time (Asia/Yerevan)", + "validFor": null, + "value": "Asia/Yerevan" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Samara Standard Time (Europe/Astrakhan)", + "validFor": null, + "value": "Europe/Astrakhan" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Samara Standard Time (Europe/Samara)", + "validFor": null, + "value": "Europe/Samara" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Moscow Standard Time + 1 (Europe/Saratov)", + "validFor": null, + "value": "Europe/Saratov" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Moscow Standard Time + 1 (Europe/Ulyanovsk)", + "validFor": null, + "value": "Europe/Ulyanovsk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Seychelles Time (Indian/Mahe)", + "validFor": null, + "value": "Indian/Mahe" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Mauritius Standard Time (Indian/Mauritius)", + "validFor": null, + "value": "Indian/Mauritius" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+04:00) Réunion Time (Indian/Reunion)", + "validFor": null, + "value": "Indian/Reunion" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) East Africa Time (Africa/Addis_Ababa)", + "validFor": null, + "value": "Africa/Addis_Ababa" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) East Africa Time (Africa/Asmera)", + "validFor": null, + "value": "Africa/Asmera" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Standard Time (Africa/Cairo)", + "validFor": null, + "value": "Africa/Cairo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) East Africa Time (Africa/Dar_es_Salaam)", + "validFor": null, + "value": "Africa/Dar_es_Salaam" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) East Africa Time (Africa/Djibouti)", + "validFor": null, + "value": "Africa/Djibouti" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) East Africa Time (Africa/Kampala)", + "validFor": null, + "value": "Africa/Kampala" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) East Africa Time (Africa/Mogadishu)", + "validFor": null, + "value": "Africa/Mogadishu" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) East Africa Time (Africa/Nairobi)", + "validFor": null, + "value": "Africa/Nairobi" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Syowa Time (Antarctica/Syowa)", + "validFor": null, + "value": "Antarctica/Syowa" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Arabian Standard Time (Asia/Aden)", + "validFor": null, + "value": "Asia/Aden" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Standard Time (Asia/Amman)", + "validFor": null, + "value": "Asia/Amman" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Arabian Standard Time (Asia/Baghdad)", + "validFor": null, + "value": "Asia/Baghdad" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Arabian Standard Time (Asia/Bahrain)", + "validFor": null, + "value": "Asia/Bahrain" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Asia/Beirut)", + "validFor": null, + "value": "Asia/Beirut" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Asia/Famagusta)", + "validFor": null, + "value": "Asia/Famagusta" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Asia/Gaza)", + "validFor": null, + "value": "Asia/Gaza" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Asia/Hebron)", + "validFor": null, + "value": "Asia/Hebron" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Israel Daylight Time (Asia/Jerusalem)", + "validFor": null, + "value": "Asia/Jerusalem" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Arabian Standard Time (Asia/Kuwait)", + "validFor": null, + "value": "Asia/Kuwait" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Asia/Nicosia)", + "validFor": null, + "value": "Asia/Nicosia" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Arabian Standard Time (Asia/Qatar)", + "validFor": null, + "value": "Asia/Qatar" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Arabian Standard Time (Asia/Riyadh)", + "validFor": null, + "value": "Asia/Riyadh" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Athens)", + "validFor": null, + "value": "Europe/Athens" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Bucharest)", + "validFor": null, + "value": "Europe/Bucharest" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Chisinau)", + "validFor": null, + "value": "Europe/Chisinau" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Helsinki)", + "validFor": null, + "value": "Europe/Helsinki" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Standard Time (Europe/Istanbul)", + "validFor": null, + "value": "Europe/Istanbul" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Kyiv)", + "validFor": null, + "value": "Europe/Kiev" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Moscow Standard Time (Europe/Kirov)", + "validFor": null, + "value": "Europe/Kirov" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Mariehamn)", + "validFor": null, + "value": "Europe/Mariehamn" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Moscow Standard Time (Europe/Minsk)", + "validFor": null, + "value": "Europe/Minsk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Moscow Standard Time (Europe/Moscow)", + "validFor": null, + "value": "Europe/Moscow" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Riga)", + "validFor": null, + "value": "Europe/Riga" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Sofia)", + "validFor": null, + "value": "Europe/Sofia" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Tallinn)", + "validFor": null, + "value": "Europe/Tallinn" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Uzhgorod)", + "validFor": null, + "value": "Europe/Uzhgorod" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Vilnius)", + "validFor": null, + "value": "Europe/Vilnius" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Volgograd Standard Time (Europe/Volgograd)", + "validFor": null, + "value": "Europe/Volgograd" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) Eastern European Summer Time (Europe/Zaporozhye)", + "validFor": null, + "value": "Europe/Zaporozhye" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) East Africa Time (Indian/Antananarivo)", + "validFor": null, + "value": "Indian/Antananarivo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) East Africa Time (Indian/Comoro)", + "validFor": null, + "value": "Indian/Comoro" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+03:00) East Africa Time (Indian/Mayotte)", + "validFor": null, + "value": "Indian/Mayotte" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central Africa Time (Africa/Blantyre)", + "validFor": null, + "value": "Africa/Blantyre" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central Africa Time (Africa/Bujumbura)", + "validFor": null, + "value": "Africa/Bujumbura" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Africa/Ceuta)", + "validFor": null, + "value": "Africa/Ceuta" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central Africa Time (Africa/Gaborone)", + "validFor": null, + "value": "Africa/Gaborone" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central Africa Time (Africa/Harare)", + "validFor": null, + "value": "Africa/Harare" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) South Africa Standard Time (Africa/Johannesburg)", + "validFor": null, + "value": "Africa/Johannesburg" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central Africa Time (Africa/Juba)", + "validFor": null, + "value": "Africa/Juba" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central Africa Time (Africa/Kigali)", + "validFor": null, + "value": "Africa/Kigali" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central Africa Time (Africa/Lubumbashi)", + "validFor": null, + "value": "Africa/Lubumbashi" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central Africa Time (Africa/Lusaka)", + "validFor": null, + "value": "Africa/Lusaka" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central Africa Time (Africa/Maputo)", + "validFor": null, + "value": "Africa/Maputo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) South Africa Standard Time (Africa/Maseru)", + "validFor": null, + "value": "Africa/Maseru" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) South Africa Standard Time (Africa/Mbabane)", + "validFor": null, + "value": "Africa/Mbabane" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Eastern European Standard Time (Africa/Tripoli)", + "validFor": null, + "value": "Africa/Tripoli" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central Africa Time (Africa/Windhoek)", + "validFor": null, + "value": "Africa/Windhoek" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Antarctica/Troll)", + "validFor": null, + "value": "Antarctica/Troll" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Arctic/Longyearbyen)", + "validFor": null, + "value": "Arctic/Longyearbyen" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Amsterdam)", + "validFor": null, + "value": "Europe/Amsterdam" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Andorra)", + "validFor": null, + "value": "Europe/Andorra" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Belgrade)", + "validFor": null, + "value": "Europe/Belgrade" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Berlin)", + "validFor": null, + "value": "Europe/Berlin" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Bratislava)", + "validFor": null, + "value": "Europe/Bratislava" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Brussels)", + "validFor": null, + "value": "Europe/Brussels" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Budapest)", + "validFor": null, + "value": "Europe/Budapest" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Busingen)", + "validFor": null, + "value": "Europe/Busingen" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Copenhagen)", + "validFor": null, + "value": "Europe/Copenhagen" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Gibraltar)", + "validFor": null, + "value": "Europe/Gibraltar" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Eastern European Standard Time (Europe/Kaliningrad)", + "validFor": null, + "value": "Europe/Kaliningrad" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Ljubljana)", + "validFor": null, + "value": "Europe/Ljubljana" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Luxembourg)", + "validFor": null, + "value": "Europe/Luxembourg" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Madrid)", + "validFor": null, + "value": "Europe/Madrid" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Malta)", + "validFor": null, + "value": "Europe/Malta" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Monaco)", + "validFor": null, + "value": "Europe/Monaco" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Oslo)", + "validFor": null, + "value": "Europe/Oslo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Paris)", + "validFor": null, + "value": "Europe/Paris" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Podgorica)", + "validFor": null, + "value": "Europe/Podgorica" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Prague)", + "validFor": null, + "value": "Europe/Prague" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Rome)", + "validFor": null, + "value": "Europe/Rome" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/San_Marino)", + "validFor": null, + "value": "Europe/San_Marino" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Sarajevo)", + "validFor": null, + "value": "Europe/Sarajevo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Skopje)", + "validFor": null, + "value": "Europe/Skopje" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Stockholm)", + "validFor": null, + "value": "Europe/Stockholm" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Tirane)", + "validFor": null, + "value": "Europe/Tirane" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Vaduz)", + "validFor": null, + "value": "Europe/Vaduz" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Vatican)", + "validFor": null, + "value": "Europe/Vatican" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Vienna)", + "validFor": null, + "value": "Europe/Vienna" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Warsaw)", + "validFor": null, + "value": "Europe/Warsaw" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Zagreb)", + "validFor": null, + "value": "Europe/Zagreb" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+02:00) Central European Summer Time (Europe/Zurich)", + "validFor": null, + "value": "Europe/Zurich" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) Central European Standard Time (Africa/Algiers)", + "validFor": null, + "value": "Africa/Algiers" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Bangui)", + "validFor": null, + "value": "Africa/Bangui" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Brazzaville)", + "validFor": null, + "value": "Africa/Brazzaville" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) Western European Summer Time (Africa/Casablanca)", + "validFor": null, + "value": "Africa/Casablanca" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Douala)", + "validFor": null, + "value": "Africa/Douala" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) Western European Summer Time (Africa/El_Aaiun)", + "validFor": null, + "value": "Africa/El_Aaiun" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Kinshasa)", + "validFor": null, + "value": "Africa/Kinshasa" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Lagos)", + "validFor": null, + "value": "Africa/Lagos" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Libreville)", + "validFor": null, + "value": "Africa/Libreville" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Luanda)", + "validFor": null, + "value": "Africa/Luanda" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Malabo)", + "validFor": null, + "value": "Africa/Malabo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Ndjamena)", + "validFor": null, + "value": "Africa/Ndjamena" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Niamey)", + "validFor": null, + "value": "Africa/Niamey" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) West Africa Standard Time (Africa/Porto-Novo)", + "validFor": null, + "value": "Africa/Porto-Novo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) Central European Standard Time (Africa/Tunis)", + "validFor": null, + "value": "Africa/Tunis" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) Western European Summer Time (Atlantic/Canary)", + "validFor": null, + "value": "Atlantic/Canary" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) Western European Summer Time (Atlantic/Faeroe)", + "validFor": null, + "value": "Atlantic/Faeroe" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) Western European Summer Time (Atlantic/Madeira)", + "validFor": null, + "value": "Atlantic/Madeira" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) Irish Standard Time (Europe/Dublin)", + "validFor": null, + "value": "Europe/Dublin" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) British Summer Time (Europe/Guernsey)", + "validFor": null, + "value": "Europe/Guernsey" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) British Summer Time (Europe/Isle_of_Man)", + "validFor": null, + "value": "Europe/Isle_of_Man" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) British Summer Time (Europe/Jersey)", + "validFor": null, + "value": "Europe/Jersey" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) Western European Summer Time (Europe/Lisbon)", + "validFor": null, + "value": "Europe/Lisbon" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+01:00) British Summer Time (Europe/London)", + "validFor": null, + "value": "Europe/London" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Abidjan)", + "validFor": null, + "value": "Africa/Abidjan" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Accra)", + "validFor": null, + "value": "Africa/Accra" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Bamako)", + "validFor": null, + "value": "Africa/Bamako" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Banjul)", + "validFor": null, + "value": "Africa/Banjul" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Bissau)", + "validFor": null, + "value": "Africa/Bissau" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Conakry)", + "validFor": null, + "value": "Africa/Conakry" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Dakar)", + "validFor": null, + "value": "Africa/Dakar" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Freetown)", + "validFor": null, + "value": "Africa/Freetown" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Lome)", + "validFor": null, + "value": "Africa/Lome" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Monrovia)", + "validFor": null, + "value": "Africa/Monrovia" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Nouakchott)", + "validFor": null, + "value": "Africa/Nouakchott" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Ouagadougou)", + "validFor": null, + "value": "Africa/Ouagadougou" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Africa/Sao_Tome)", + "validFor": null, + "value": "Africa/Sao_Tome" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (America/Danmarkshavn)", + "validFor": null, + "value": "America/Danmarkshavn" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) East Greenland Summer Time (America/Scoresbysund)", + "validFor": null, + "value": "America/Scoresbysund" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Azores Summer Time (Atlantic/Azores)", + "validFor": null, + "value": "Atlantic/Azores" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Atlantic/Reykjavik)", + "validFor": null, + "value": "Atlantic/Reykjavik" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (Atlantic/St_Helena)", + "validFor": null, + "value": "Atlantic/St_Helena" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT+00:00) Greenwich Mean Time (GMT)", + "validFor": null, + "value": "GMT" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-01:00) Cape Verde Standard Time (Atlantic/Cape_Verde)", + "validFor": null, + "value": "Atlantic/Cape_Verde" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-02:00) West Greenland Summer Time (America/Godthab)", + "validFor": null, + "value": "America/Godthab" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-02:00) St Pierre & Miquelon Daylight Time (America/Miquelon)", + "validFor": null, + "value": "America/Miquelon" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-02:00) Fernando de Noronha Standard Time (America/Noronha)", + "validFor": null, + "value": "America/Noronha" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-02:00) South Georgia Time (Atlantic/South_Georgia)", + "validFor": null, + "value": "Atlantic/South_Georgia" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-02:30) Newfoundland Daylight Time (America/St_Johns)", + "validFor": null, + "value": "America/St_Johns" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Brasilia Standard Time (America/Araguaina)", + "validFor": null, + "value": "America/Araguaina" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Argentina/Buenos_Aires)", + "validFor": null, + "value": "America/Argentina/Buenos_Aires" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Argentina/La_Rioja)", + "validFor": null, + "value": "America/Argentina/La_Rioja" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Argentina/Rio_Gallegos)", + "validFor": null, + "value": "America/Argentina/Rio_Gallegos" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Argentina/Salta)", + "validFor": null, + "value": "America/Argentina/Salta" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Argentina/San_Juan)", + "validFor": null, + "value": "America/Argentina/San_Juan" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Argentina/San_Luis)", + "validFor": null, + "value": "America/Argentina/San_Luis" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Argentina/Tucuman)", + "validFor": null, + "value": "America/Argentina/Tucuman" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Argentina/Ushuaia)", + "validFor": null, + "value": "America/Argentina/Ushuaia" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Brasilia Standard Time (America/Bahia)", + "validFor": null, + "value": "America/Bahia" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Brasilia Standard Time (America/Belem)", + "validFor": null, + "value": "America/Belem" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Catamarca)", + "validFor": null, + "value": "America/Catamarca" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) French Guiana Time (America/Cayenne)", + "validFor": null, + "value": "America/Cayenne" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Cordoba)", + "validFor": null, + "value": "America/Cordoba" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Brasilia Standard Time (America/Fortaleza)", + "validFor": null, + "value": "America/Fortaleza" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Atlantic Daylight Time (America/Glace_Bay)", + "validFor": null, + "value": "America/Glace_Bay" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Atlantic Daylight Time (America/Goose_Bay)", + "validFor": null, + "value": "America/Goose_Bay" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Atlantic Daylight Time (America/Halifax)", + "validFor": null, + "value": "America/Halifax" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Jujuy)", + "validFor": null, + "value": "America/Jujuy" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Brasilia Standard Time (America/Maceio)", + "validFor": null, + "value": "America/Maceio" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Argentina Standard Time (America/Mendoza)", + "validFor": null, + "value": "America/Mendoza" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Atlantic Daylight Time (America/Moncton)", + "validFor": null, + "value": "America/Moncton" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Uruguay Standard Time (America/Montevideo)", + "validFor": null, + "value": "America/Montevideo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Suriname Time (America/Paramaribo)", + "validFor": null, + "value": "America/Paramaribo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Chile Standard Time (America/Punta_Arenas)", + "validFor": null, + "value": "America/Punta_Arenas" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Brasilia Standard Time (America/Recife)", + "validFor": null, + "value": "America/Recife" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Brasilia Standard Time (America/Santarem)", + "validFor": null, + "value": "America/Santarem" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Chile Summer Time (America/Santiago)", + "validFor": null, + "value": "America/Santiago" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Brasilia Standard Time (America/Sao_Paulo)", + "validFor": null, + "value": "America/Sao_Paulo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Atlantic Daylight Time (America/Thule)", + "validFor": null, + "value": "America/Thule" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Chile Standard Time (Antarctica/Palmer)", + "validFor": null, + "value": "Antarctica/Palmer" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Rothera Time (Antarctica/Rothera)", + "validFor": null, + "value": "Antarctica/Rothera" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Atlantic Daylight Time (Atlantic/Bermuda)", + "validFor": null, + "value": "Atlantic/Bermuda" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-03:00) Falkland Islands Standard Time (Atlantic/Stanley)", + "validFor": null, + "value": "Atlantic/Stanley" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Anguilla)", + "validFor": null, + "value": "America/Anguilla" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Antigua)", + "validFor": null, + "value": "America/Antigua" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Aruba)", + "validFor": null, + "value": "America/Aruba" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Paraguay Standard Time (America/Asuncion)", + "validFor": null, + "value": "America/Asuncion" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Barbados)", + "validFor": null, + "value": "America/Barbados" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Blanc-Sablon)", + "validFor": null, + "value": "America/Blanc-Sablon" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Amazon Standard Time (America/Boa_Vista)", + "validFor": null, + "value": "America/Boa_Vista" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Amazon Standard Time (America/Campo_Grande)", + "validFor": null, + "value": "America/Campo_Grande" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Venezuela Time (America/Caracas)", + "validFor": null, + "value": "America/Caracas" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Amazon Standard Time (America/Cuiaba)", + "validFor": null, + "value": "America/Cuiaba" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Curacao)", + "validFor": null, + "value": "America/Curacao" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Detroit)", + "validFor": null, + "value": "America/Detroit" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Dominica)", + "validFor": null, + "value": "America/Dominica" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Grand_Turk)", + "validFor": null, + "value": "America/Grand_Turk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Grenada)", + "validFor": null, + "value": "America/Grenada" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Guadeloupe)", + "validFor": null, + "value": "America/Guadeloupe" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Guyana Time (America/Guyana)", + "validFor": null, + "value": "America/Guyana" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Indiana/Indianapolis)", + "validFor": null, + "value": "America/Indiana/Indianapolis" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Indiana/Marengo)", + "validFor": null, + "value": "America/Indiana/Marengo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Indiana/Petersburg)", + "validFor": null, + "value": "America/Indiana/Petersburg" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Indiana/Vevay)", + "validFor": null, + "value": "America/Indiana/Vevay" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Indiana/Vincennes)", + "validFor": null, + "value": "America/Indiana/Vincennes" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Indiana/Winamac)", + "validFor": null, + "value": "America/Indiana/Winamac" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Iqaluit)", + "validFor": null, + "value": "America/Iqaluit" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Kentucky/Monticello)", + "validFor": null, + "value": "America/Kentucky/Monticello" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Kralendijk)", + "validFor": null, + "value": "America/Kralendijk" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Bolivia Time (America/La_Paz)", + "validFor": null, + "value": "America/La_Paz" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Louisville)", + "validFor": null, + "value": "America/Louisville" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Lower_Princes)", + "validFor": null, + "value": "America/Lower_Princes" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Amazon Standard Time (America/Manaus)", + "validFor": null, + "value": "America/Manaus" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Marigot)", + "validFor": null, + "value": "America/Marigot" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Martinique)", + "validFor": null, + "value": "America/Martinique" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Montreal)", + "validFor": null, + "value": "America/Montreal" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Montserrat)", + "validFor": null, + "value": "America/Montserrat" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Nassau)", + "validFor": null, + "value": "America/Nassau" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/New_York)", + "validFor": null, + "value": "America/New_York" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Nipigon)", + "validFor": null, + "value": "America/Nipigon" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Pangnirtung)", + "validFor": null, + "value": "America/Pangnirtung" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Port-au-Prince)", + "validFor": null, + "value": "America/Port-au-Prince" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Port_of_Spain)", + "validFor": null, + "value": "America/Port_of_Spain" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Amazon Standard Time (America/Porto_Velho)", + "validFor": null, + "value": "America/Porto_Velho" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Puerto_Rico)", + "validFor": null, + "value": "America/Puerto_Rico" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Santo_Domingo)", + "validFor": null, + "value": "America/Santo_Domingo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/St_Barthelemy)", + "validFor": null, + "value": "America/St_Barthelemy" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/St_Kitts)", + "validFor": null, + "value": "America/St_Kitts" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/St_Lucia)", + "validFor": null, + "value": "America/St_Lucia" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/St_Thomas)", + "validFor": null, + "value": "America/St_Thomas" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/St_Vincent)", + "validFor": null, + "value": "America/St_Vincent" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Thunder_Bay)", + "validFor": null, + "value": "America/Thunder_Bay" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Eastern Daylight Time (America/Toronto)", + "validFor": null, + "value": "America/Toronto" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-04:00) Atlantic Standard Time (America/Tortola)", + "validFor": null, + "value": "America/Tortola" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Colombia Standard Time (America/Bogota)", + "validFor": null, + "value": "America/Bogota" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Eastern Standard Time (America/Cancun)", + "validFor": null, + "value": "America/Cancun" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Eastern Standard Time (America/Cayman)", + "validFor": null, + "value": "America/Cayman" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/Chicago)", + "validFor": null, + "value": "America/Chicago" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Eastern Standard Time (America/Coral_Harbour)", + "validFor": null, + "value": "America/Coral_Harbour" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Acre Standard Time (America/Eirunepe)", + "validFor": null, + "value": "America/Eirunepe" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Ecuador Time (America/Guayaquil)", + "validFor": null, + "value": "America/Guayaquil" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/Indiana/Knox)", + "validFor": null, + "value": "America/Indiana/Knox" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/Indiana/Tell_City)", + "validFor": null, + "value": "America/Indiana/Tell_City" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Eastern Standard Time (America/Jamaica)", + "validFor": null, + "value": "America/Jamaica" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Peru Standard Time (America/Lima)", + "validFor": null, + "value": "America/Lima" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/Matamoros)", + "validFor": null, + "value": "America/Matamoros" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/Menominee)", + "validFor": null, + "value": "America/Menominee" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/North_Dakota/Beulah)", + "validFor": null, + "value": "America/North_Dakota/Beulah" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/North_Dakota/Center)", + "validFor": null, + "value": "America/North_Dakota/Center" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/North_Dakota/New_Salem)", + "validFor": null, + "value": "America/North_Dakota/New_Salem" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Mountain Daylight Time (America/Ojinaga)", + "validFor": null, + "value": "America/Ojinaga" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Eastern Standard Time (America/Panama)", + "validFor": null, + "value": "America/Panama" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/Rainy_River)", + "validFor": null, + "value": "America/Rainy_River" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/Rankin_Inlet)", + "validFor": null, + "value": "America/Rankin_Inlet" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/Resolute)", + "validFor": null, + "value": "America/Resolute" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Acre Standard Time (America/Rio_Branco)", + "validFor": null, + "value": "America/Rio_Branco" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Central Daylight Time (America/Winnipeg)", + "validFor": null, + "value": "America/Winnipeg" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-05:00) Easter Island Summer Time (Pacific/Easter)", + "validFor": null, + "value": "Pacific/Easter" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Bahia_Banderas)", + "validFor": null, + "value": "America/Bahia_Banderas" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Belize)", + "validFor": null, + "value": "America/Belize" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Mountain Daylight Time (America/Boise)", + "validFor": null, + "value": "America/Boise" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Mountain Daylight Time (America/Cambridge_Bay)", + "validFor": null, + "value": "America/Cambridge_Bay" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Mexican Pacific Standard Time (America/Chihuahua)", + "validFor": null, + "value": "America/Chihuahua" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Costa_Rica)", + "validFor": null, + "value": "America/Costa_Rica" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Mountain Daylight Time (America/Denver)", + "validFor": null, + "value": "America/Denver" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Mountain Daylight Time (America/Edmonton)", + "validFor": null, + "value": "America/Edmonton" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/El_Salvador)", + "validFor": null, + "value": "America/El_Salvador" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Guatemala)", + "validFor": null, + "value": "America/Guatemala" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Mountain Daylight Time (America/Inuvik)", + "validFor": null, + "value": "America/Inuvik" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Managua)", + "validFor": null, + "value": "America/Managua" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Merida)", + "validFor": null, + "value": "America/Merida" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Mexico_City)", + "validFor": null, + "value": "America/Mexico_City" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Monterrey)", + "validFor": null, + "value": "America/Monterrey" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Regina)", + "validFor": null, + "value": "America/Regina" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Swift_Current)", + "validFor": null, + "value": "America/Swift_Current" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Central Standard Time (America/Tegucigalpa)", + "validFor": null, + "value": "America/Tegucigalpa" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Mountain Daylight Time (America/Yellowknife)", + "validFor": null, + "value": "America/Yellowknife" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-06:00) Galapagos Time (Pacific/Galapagos)", + "validFor": null, + "value": "Pacific/Galapagos" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Mountain Standard Time (America/Creston)", + "validFor": null, + "value": "America/Creston" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Yukon Time (America/Dawson)", + "validFor": null, + "value": "America/Dawson" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Mountain Standard Time (America/Dawson_Creek)", + "validFor": null, + "value": "America/Dawson_Creek" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Mountain Standard Time (America/Fort_Nelson)", + "validFor": null, + "value": "America/Fort_Nelson" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Mexican Pacific Standard Time (America/Hermosillo)", + "validFor": null, + "value": "America/Hermosillo" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Pacific Daylight Time (America/Los_Angeles)", + "validFor": null, + "value": "America/Los_Angeles" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Mexican Pacific Standard Time (America/Mazatlan)", + "validFor": null, + "value": "America/Mazatlan" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Mountain Standard Time (America/Phoenix)", + "validFor": null, + "value": "America/Phoenix" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Northwest Mexico Daylight Time (America/Santa_Isabel)", + "validFor": null, + "value": "America/Santa_Isabel" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Pacific Daylight Time (America/Tijuana)", + "validFor": null, + "value": "America/Tijuana" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Pacific Daylight Time (America/Vancouver)", + "validFor": null, + "value": "America/Vancouver" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-07:00) Yukon Time (America/Whitehorse)", + "validFor": null, + "value": "America/Whitehorse" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-08:00) Alaska Daylight Time (America/Anchorage)", + "validFor": null, + "value": "America/Anchorage" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-08:00) Alaska Daylight Time (America/Juneau)", + "validFor": null, + "value": "America/Juneau" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-08:00) Alaska Daylight Time (America/Metlakatla)", + "validFor": null, + "value": "America/Metlakatla" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-08:00) Alaska Daylight Time (America/Nome)", + "validFor": null, + "value": "America/Nome" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-08:00) Alaska Daylight Time (America/Sitka)", + "validFor": null, + "value": "America/Sitka" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-08:00) Alaska Daylight Time (America/Yakutat)", + "validFor": null, + "value": "America/Yakutat" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-08:00) Pitcairn Time (Pacific/Pitcairn)", + "validFor": null, + "value": "Pacific/Pitcairn" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-09:00) Hawaii-Aleutian Daylight Time (America/Adak)", + "validFor": null, + "value": "America/Adak" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-09:00) Gambier Time (Pacific/Gambier)", + "validFor": null, + "value": "Pacific/Gambier" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-09:30) Marquesas Time (Pacific/Marquesas)", + "validFor": null, + "value": "Pacific/Marquesas" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-10:00) Hawaii-Aleutian Standard Time (Pacific/Honolulu)", + "validFor": null, + "value": "Pacific/Honolulu" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-10:00) Hawaii-Aleutian Standard Time (Pacific/Johnston)", + "validFor": null, + "value": "Pacific/Johnston" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-10:00) Cook Islands Standard Time (Pacific/Rarotonga)", + "validFor": null, + "value": "Pacific/Rarotonga" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-10:00) Tahiti Time (Pacific/Tahiti)", + "validFor": null, + "value": "Pacific/Tahiti" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-11:00) Samoa Standard Time (Pacific/Midway)", + "validFor": null, + "value": "Pacific/Midway" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-11:00) Niue Time (Pacific/Niue)", + "validFor": null, + "value": "Pacific/Niue" + }, + { + "active": true, + "defaultValue": false, + "label": "(GMT-11:00) Samoa Standard Time (Pacific/Pago_Pago)", + "validFor": null, + "value": "Pacific/Pago_Pago" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Role ID", + "name": "UserRoleId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "UserRole" + ], + "relationshipName": "UserRole", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Locale", + "name": "LocaleSidKey", + "nillable": false, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Afrikaans (South Africa)", + "validFor": null, + "value": "af_ZA" + }, + { + "active": true, + "defaultValue": false, + "label": "Albanian (Albania)", + "validFor": null, + "value": "sq_AL" + }, + { + "active": true, + "defaultValue": false, + "label": "Amharic (Ethiopia)", + "validFor": null, + "value": "am_ET" + }, + { + "active": true, + "defaultValue": false, + "label": "Arabic (Algeria)", + "validFor": null, + "value": "ar_DZ" + }, + { + "active": true, + "defaultValue": false, + "label": "Arabic (Bahrain)", + "validFor": null, + "value": "ar_BH" + }, + { + "active": true, + "defaultValue": false, + "label": "Arabic (Egypt)", + "validFor": null, + "value": "ar_EG" + }, + { + "active": true, + "defaultValue": false, + "label": "Arabic (Iraq)", + "validFor": null, + "value": "ar_IQ" + }, + { + "active": true, + "defaultValue": false, + "label": "Arabic (Jordan)", + "validFor": null, + "value": "ar_JO" + }, + { + "active": true, + "defaultValue": false, + "label": "Arabic (Kuwait)", + "validFor": null, + "value": "ar_KW" + }, + { + "active": true, + "defaultValue": false, + "label": "Arabic (Lebanon)", + "validFor": null, + "value": "ar_LB" + }, + { + "active": true, + "defaultValue": false, + "label": "Arabic (Libya)", + "validFor": null, + "value": "ar_LY" + }, + { + "active": true, + "defaultValue": false, + "label": "Arabic (Morocco)", + "validFor": null, + "value": "ar_MA" + }, + { + "active": true, + "defaultValue": false, + "label": "Arabic (Oman)", + "validFor": null, + "value": "ar_OM" + }, + { + "active": true, + "defaultValue": false, + "label": "Arabic (Qatar)", + "validFor": null, + "value": "ar_QA" + }, + { + "active": true, + "defaultValue": false, + "label": "Arabic (Saudi Arabia)", + "validFor": null, + "value": "ar_SA" + }, + { + "active": true, + "defaultValue": false, + "label": "Arabic (Tunisia)", + "validFor": null, + "value": "ar_TN" + }, + { + "active": true, + "defaultValue": false, + "label": "Arabic (United Arab Emirates)", + "validFor": null, + "value": "ar_AE" + }, + { + "active": true, + "defaultValue": false, + "label": "Arabic (Yemen)", + "validFor": null, + "value": "ar_YE" + }, + { + "active": true, + "defaultValue": false, + "label": "Armenian (Armenia)", + "validFor": null, + "value": "hy_AM" + }, + { + "active": true, + "defaultValue": false, + "label": "Azerbaijani (Azerbaijan)", + "validFor": null, + "value": "az_AZ" + }, + { + "active": true, + "defaultValue": false, + "label": "Bangla (Bangladesh)", + "validFor": null, + "value": "bn_BD" + }, + { + "active": true, + "defaultValue": false, + "label": "Bangla (India)", + "validFor": null, + "value": "bn_IN" + }, + { + "active": true, + "defaultValue": false, + "label": "Basque (Spain)", + "validFor": null, + "value": "eu_ES" + }, + { + "active": true, + "defaultValue": false, + "label": "Belarusian (Belarus)", + "validFor": null, + "value": "be_BY" + }, + { + "active": true, + "defaultValue": false, + "label": "Bosnian (Bosnia & Herzegovina)", + "validFor": null, + "value": "bs_BA" + }, + { + "active": true, + "defaultValue": false, + "label": "Bulgarian (Bulgaria)", + "validFor": null, + "value": "bg_BG" + }, + { + "active": true, + "defaultValue": false, + "label": "Burmese (Myanmar [Burma])", + "validFor": null, + "value": "my_MM" + }, + { + "active": true, + "defaultValue": false, + "label": "Catalan (Spain)", + "validFor": null, + "value": "ca_ES" + }, + { + "active": true, + "defaultValue": false, + "label": "Chinese (China, Pinyin Ordering)", + "validFor": null, + "value": "zh_CN_PINYIN" + }, + { + "active": true, + "defaultValue": false, + "label": "Chinese (China, Stroke Ordering)", + "validFor": null, + "value": "zh_CN_STROKE" + }, + { + "active": true, + "defaultValue": false, + "label": "Chinese (China)", + "validFor": null, + "value": "zh_CN" + }, + { + "active": true, + "defaultValue": false, + "label": "Chinese (Hong Kong SAR China, Stroke Ordering)", + "validFor": null, + "value": "zh_HK_STROKE" + }, + { + "active": true, + "defaultValue": false, + "label": "Chinese (Hong Kong SAR China)", + "validFor": null, + "value": "zh_HK" + }, + { + "active": true, + "defaultValue": false, + "label": "Chinese (Macao SAR China)", + "validFor": null, + "value": "zh_MO" + }, + { + "active": true, + "defaultValue": false, + "label": "Chinese (Malaysia)", + "validFor": null, + "value": "zh_MY" + }, + { + "active": true, + "defaultValue": false, + "label": "Chinese (Singapore)", + "validFor": null, + "value": "zh_SG" + }, + { + "active": true, + "defaultValue": false, + "label": "Chinese (Taiwan, Stroke Ordering)", + "validFor": null, + "value": "zh_TW_STROKE" + }, + { + "active": true, + "defaultValue": false, + "label": "Chinese (Taiwan)", + "validFor": null, + "value": "zh_TW" + }, + { + "active": true, + "defaultValue": false, + "label": "Croatian (Croatia)", + "validFor": null, + "value": "hr_HR" + }, + { + "active": true, + "defaultValue": false, + "label": "Czech (Czechia)", + "validFor": null, + "value": "cs_CZ" + }, + { + "active": true, + "defaultValue": false, + "label": "Danish (Denmark)", + "validFor": null, + "value": "da_DK" + }, + { + "active": true, + "defaultValue": false, + "label": "Dutch (Aruba)", + "validFor": null, + "value": "nl_AW" + }, + { + "active": true, + "defaultValue": false, + "label": "Dutch (Belgium)", + "validFor": null, + "value": "nl_BE" + }, + { + "active": true, + "defaultValue": false, + "label": "Dutch (Netherlands)", + "validFor": null, + "value": "nl_NL" + }, + { + "active": true, + "defaultValue": false, + "label": "Dutch (Suriname)", + "validFor": null, + "value": "nl_SR" + }, + { + "active": true, + "defaultValue": false, + "label": "Dzongkha (Bhutan)", + "validFor": null, + "value": "dz_BT" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Antigua & Barbuda)", + "validFor": null, + "value": "en_AG" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Australia)", + "validFor": null, + "value": "en_AU" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Bahamas)", + "validFor": null, + "value": "en_BS" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Barbados)", + "validFor": null, + "value": "en_BB" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Belgium)", + "validFor": null, + "value": "en_BE" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Belize)", + "validFor": null, + "value": "en_BZ" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Bermuda)", + "validFor": null, + "value": "en_BM" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Botswana)", + "validFor": null, + "value": "en_BW" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Cameroon)", + "validFor": null, + "value": "en_CM" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Canada)", + "validFor": null, + "value": "en_CA" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Cayman Islands)", + "validFor": null, + "value": "en_KY" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Cyprus)", + "validFor": null, + "value": "en_CY" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Eritrea)", + "validFor": null, + "value": "en_ER" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Eswatini)", + "validFor": null, + "value": "en_SZ" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Falkland Islands)", + "validFor": null, + "value": "en_FK" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Fiji)", + "validFor": null, + "value": "en_FJ" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Gambia)", + "validFor": null, + "value": "en_GM" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Germany)", + "validFor": null, + "value": "en_DE" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Ghana)", + "validFor": null, + "value": "en_GH" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Gibraltar)", + "validFor": null, + "value": "en_GI" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Guyana)", + "validFor": null, + "value": "en_GY" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Hong Kong SAR China)", + "validFor": null, + "value": "en_HK" + }, + { + "active": true, + "defaultValue": false, + "label": "English (India)", + "validFor": null, + "value": "en_IN" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Indonesia)", + "validFor": null, + "value": "en_ID" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Ireland)", + "validFor": null, + "value": "en_IE" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Israel)", + "validFor": null, + "value": "en_IL" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Jamaica)", + "validFor": null, + "value": "en_JM" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Kenya)", + "validFor": null, + "value": "en_KE" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Liberia)", + "validFor": null, + "value": "en_LR" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Madagascar)", + "validFor": null, + "value": "en_MG" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Malawi)", + "validFor": null, + "value": "en_MW" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Malaysia)", + "validFor": null, + "value": "en_MY" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Malta)", + "validFor": null, + "value": "en_MT" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Mauritius)", + "validFor": null, + "value": "en_MU" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Namibia)", + "validFor": null, + "value": "en_NA" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Netherlands)", + "validFor": null, + "value": "en_NL" + }, + { + "active": true, + "defaultValue": false, + "label": "English (New Zealand)", + "validFor": null, + "value": "en_NZ" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Nigeria)", + "validFor": null, + "value": "en_NG" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Pakistan)", + "validFor": null, + "value": "en_PK" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Papua New Guinea)", + "validFor": null, + "value": "en_PG" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Philippines)", + "validFor": null, + "value": "en_PH" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Rwanda)", + "validFor": null, + "value": "en_RW" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Samoa)", + "validFor": null, + "value": "en_WS" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Seychelles)", + "validFor": null, + "value": "en_SC" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Sierra Leone)", + "validFor": null, + "value": "en_SL" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Singapore)", + "validFor": null, + "value": "en_SG" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Sint Maarten)", + "validFor": null, + "value": "en_SX" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Solomon Islands)", + "validFor": null, + "value": "en_SB" + }, + { + "active": true, + "defaultValue": false, + "label": "English (South Africa)", + "validFor": null, + "value": "en_ZA" + }, + { + "active": true, + "defaultValue": false, + "label": "English (St. Helena)", + "validFor": null, + "value": "en_SH" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Tanzania)", + "validFor": null, + "value": "en_TZ" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Tonga)", + "validFor": null, + "value": "en_TO" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Trinidad & Tobago)", + "validFor": null, + "value": "en_TT" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Uganda)", + "validFor": null, + "value": "en_UG" + }, + { + "active": true, + "defaultValue": false, + "label": "English (United Arab Emirates)", + "validFor": null, + "value": "en_AE" + }, + { + "active": true, + "defaultValue": false, + "label": "English (United Kingdom)", + "validFor": null, + "value": "en_GB" + }, + { + "active": true, + "defaultValue": false, + "label": "English (United States)", + "validFor": null, + "value": "en_US" + }, + { + "active": true, + "defaultValue": false, + "label": "English (Vanuatu)", + "validFor": null, + "value": "en_VU" + }, + { + "active": true, + "defaultValue": false, + "label": "Estonian (Estonia)", + "validFor": null, + "value": "et_EE" + }, + { + "active": true, + "defaultValue": false, + "label": "Finnish (Finland)", + "validFor": null, + "value": "fi_FI" + }, + { + "active": true, + "defaultValue": false, + "label": "French (Belgium)", + "validFor": null, + "value": "fr_BE" + }, + { + "active": true, + "defaultValue": false, + "label": "French (Canada)", + "validFor": null, + "value": "fr_CA" + }, + { + "active": true, + "defaultValue": false, + "label": "French (Comoros)", + "validFor": null, + "value": "fr_KM" + }, + { + "active": true, + "defaultValue": false, + "label": "French (France)", + "validFor": null, + "value": "fr_FR" + }, + { + "active": true, + "defaultValue": false, + "label": "French (Guinea)", + "validFor": null, + "value": "fr_GN" + }, + { + "active": true, + "defaultValue": false, + "label": "French (Haiti)", + "validFor": null, + "value": "fr_HT" + }, + { + "active": true, + "defaultValue": false, + "label": "French (Luxembourg)", + "validFor": null, + "value": "fr_LU" + }, + { + "active": true, + "defaultValue": false, + "label": "French (Mauritania)", + "validFor": null, + "value": "fr_MR" + }, + { + "active": true, + "defaultValue": false, + "label": "French (Monaco)", + "validFor": null, + "value": "fr_MC" + }, + { + "active": true, + "defaultValue": false, + "label": "French (Morocco)", + "validFor": null, + "value": "fr_MA" + }, + { + "active": true, + "defaultValue": false, + "label": "French (Switzerland)", + "validFor": null, + "value": "fr_CH" + }, + { + "active": true, + "defaultValue": false, + "label": "French (Wallis & Futuna)", + "validFor": null, + "value": "fr_WF" + }, + { + "active": true, + "defaultValue": false, + "label": "Georgian (Georgia)", + "validFor": null, + "value": "ka_GE" + }, + { + "active": true, + "defaultValue": false, + "label": "German (Austria)", + "validFor": null, + "value": "de_AT" + }, + { + "active": true, + "defaultValue": false, + "label": "German (Belgium)", + "validFor": null, + "value": "de_BE" + }, + { + "active": true, + "defaultValue": false, + "label": "German (Germany)", + "validFor": null, + "value": "de_DE" + }, + { + "active": true, + "defaultValue": false, + "label": "German (Luxembourg)", + "validFor": null, + "value": "de_LU" + }, + { + "active": true, + "defaultValue": false, + "label": "German (Switzerland)", + "validFor": null, + "value": "de_CH" + }, + { + "active": true, + "defaultValue": false, + "label": "Greek (Cyprus)", + "validFor": null, + "value": "el_CY" + }, + { + "active": true, + "defaultValue": false, + "label": "Greek (Greece)", + "validFor": null, + "value": "el_GR" + }, + { + "active": true, + "defaultValue": false, + "label": "Gujarati (India)", + "validFor": null, + "value": "gu_IN" + }, + { + "active": true, + "defaultValue": false, + "label": "Haitian Creole (Haiti)", + "validFor": null, + "value": "ht_HT" + }, + { + "active": true, + "defaultValue": false, + "label": "Haitian Creole (United States)", + "validFor": null, + "value": "ht_US" + }, + { + "active": true, + "defaultValue": false, + "label": "Hawaiian (United States)", + "validFor": null, + "value": "haw_US" + }, + { + "active": true, + "defaultValue": false, + "label": "Hebrew (Israel)", + "validFor": null, + "value": "iw_IL" + }, + { + "active": true, + "defaultValue": false, + "label": "Hindi (India)", + "validFor": null, + "value": "hi_IN" + }, + { + "active": true, + "defaultValue": false, + "label": "Hmong (United States)", + "validFor": null, + "value": "hmn_US" + }, + { + "active": true, + "defaultValue": false, + "label": "Hungarian (Hungary)", + "validFor": null, + "value": "hu_HU" + }, + { + "active": true, + "defaultValue": false, + "label": "Icelandic (Iceland)", + "validFor": null, + "value": "is_IS" + }, + { + "active": true, + "defaultValue": false, + "label": "Indonesian (Indonesia)", + "validFor": null, + "value": "in_ID" + }, + { + "active": true, + "defaultValue": false, + "label": "Irish (Ireland)", + "validFor": null, + "value": "ga_IE" + }, + { + "active": true, + "defaultValue": false, + "label": "Italian (Italy)", + "validFor": null, + "value": "it_IT" + }, + { + "active": true, + "defaultValue": false, + "label": "Italian (Switzerland)", + "validFor": null, + "value": "it_CH" + }, + { + "active": true, + "defaultValue": false, + "label": "Japanese (Japan)", + "validFor": null, + "value": "ja_JP" + }, + { + "active": true, + "defaultValue": false, + "label": "Kalaallisut (Greenland)", + "validFor": null, + "value": "kl_GL" + }, + { + "active": true, + "defaultValue": false, + "label": "Kannada (India)", + "validFor": null, + "value": "kn_IN" + }, + { + "active": true, + "defaultValue": false, + "label": "Kazakh (Kazakhstan)", + "validFor": null, + "value": "kk_KZ" + }, + { + "active": true, + "defaultValue": false, + "label": "Khmer (Cambodia)", + "validFor": null, + "value": "km_KH" + }, + { + "active": true, + "defaultValue": false, + "label": "Korean (South Korea)", + "validFor": null, + "value": "ko_KR" + }, + { + "active": true, + "defaultValue": false, + "label": "Kyrgyz (Kyrgyzstan)", + "validFor": null, + "value": "ky_KG" + }, + { + "active": true, + "defaultValue": false, + "label": "Lao (Laos)", + "validFor": null, + "value": "lo_LA" + }, + { + "active": true, + "defaultValue": false, + "label": "Latvian (Latvia)", + "validFor": null, + "value": "lv_LV" + }, + { + "active": true, + "defaultValue": false, + "label": "Lithuanian (Lithuania)", + "validFor": null, + "value": "lt_LT" + }, + { + "active": true, + "defaultValue": false, + "label": "Luba-Katanga (Congo - Kinshasa)", + "validFor": null, + "value": "lu_CD" + }, + { + "active": true, + "defaultValue": false, + "label": "Luxembourgish (Luxembourg)", + "validFor": null, + "value": "lb_LU" + }, + { + "active": true, + "defaultValue": false, + "label": "Macedonian (North Macedonia)", + "validFor": null, + "value": "mk_MK" + }, + { + "active": true, + "defaultValue": false, + "label": "Malay (Brunei)", + "validFor": null, + "value": "ms_BN" + }, + { + "active": true, + "defaultValue": false, + "label": "Malay (Malaysia)", + "validFor": null, + "value": "ms_MY" + }, + { + "active": true, + "defaultValue": false, + "label": "Malayalam (India)", + "validFor": null, + "value": "ml_IN" + }, + { + "active": true, + "defaultValue": false, + "label": "Maltese (Malta)", + "validFor": null, + "value": "mt_MT" + }, + { + "active": true, + "defaultValue": false, + "label": "Marathi (India)", + "validFor": null, + "value": "mr_IN" + }, + { + "active": true, + "defaultValue": false, + "label": "Montenegrin (Montenegro)", + "validFor": null, + "value": "sh_ME" + }, + { + "active": true, + "defaultValue": false, + "label": "Nepali (Nepal)", + "validFor": null, + "value": "ne_NP" + }, + { + "active": true, + "defaultValue": false, + "label": "Norwegian (Norway)", + "validFor": null, + "value": "no_NO" + }, + { + "active": true, + "defaultValue": false, + "label": "Pashto (Afghanistan)", + "validFor": null, + "value": "ps_AF" + }, + { + "active": true, + "defaultValue": false, + "label": "Polish (Poland)", + "validFor": null, + "value": "pl_PL" + }, + { + "active": true, + "defaultValue": false, + "label": "Portuguese (Angola)", + "validFor": null, + "value": "pt_AO" + }, + { + "active": true, + "defaultValue": false, + "label": "Portuguese (Brazil)", + "validFor": null, + "value": "pt_BR" + }, + { + "active": true, + "defaultValue": false, + "label": "Portuguese (Cape Verde)", + "validFor": null, + "value": "pt_CV" + }, + { + "active": true, + "defaultValue": false, + "label": "Portuguese (Mozambique)", + "validFor": null, + "value": "pt_MZ" + }, + { + "active": true, + "defaultValue": false, + "label": "Portuguese (Portugal)", + "validFor": null, + "value": "pt_PT" + }, + { + "active": true, + "defaultValue": false, + "label": "Portuguese (São Tomé & Príncipe)", + "validFor": null, + "value": "pt_ST" + }, + { + "active": true, + "defaultValue": false, + "label": "Punjabi (India)", + "validFor": null, + "value": "pa_IN" + }, + { + "active": true, + "defaultValue": false, + "label": "Romanian (Moldova)", + "validFor": null, + "value": "ro_MD" + }, + { + "active": true, + "defaultValue": false, + "label": "Romanian (Romania)", + "validFor": null, + "value": "ro_RO" + }, + { + "active": true, + "defaultValue": false, + "label": "Romansh (Switzerland)", + "validFor": null, + "value": "rm_CH" + }, + { + "active": true, + "defaultValue": false, + "label": "Rundi (Burundi)", + "validFor": null, + "value": "rn_BI" + }, + { + "active": true, + "defaultValue": false, + "label": "Russian (Armenia)", + "validFor": null, + "value": "ru_AM" + }, + { + "active": true, + "defaultValue": false, + "label": "Russian (Belarus)", + "validFor": null, + "value": "ru_BY" + }, + { + "active": true, + "defaultValue": false, + "label": "Russian (Kazakhstan)", + "validFor": null, + "value": "ru_KZ" + }, + { + "active": true, + "defaultValue": false, + "label": "Russian (Kyrgyzstan)", + "validFor": null, + "value": "ru_KG" + }, + { + "active": true, + "defaultValue": false, + "label": "Russian (Lithuania)", + "validFor": null, + "value": "ru_LT" + }, + { + "active": true, + "defaultValue": false, + "label": "Russian (Moldova)", + "validFor": null, + "value": "ru_MD" + }, + { + "active": true, + "defaultValue": false, + "label": "Russian (Poland)", + "validFor": null, + "value": "ru_PL" + }, + { + "active": true, + "defaultValue": false, + "label": "Russian (Russia)", + "validFor": null, + "value": "ru_RU" + }, + { + "active": true, + "defaultValue": false, + "label": "Russian (Ukraine)", + "validFor": null, + "value": "ru_UA" + }, + { + "active": true, + "defaultValue": false, + "label": "Samoan (Samoa)", + "validFor": null, + "value": "sm_WS" + }, + { + "active": true, + "defaultValue": false, + "label": "Samoan (United States)", + "validFor": null, + "value": "sm_US" + }, + { + "active": true, + "defaultValue": false, + "label": "Serbian (Cyrillic) (Bosnia and Herzegovina)", + "validFor": null, + "value": "sr_BA" + }, + { + "active": true, + "defaultValue": false, + "label": "Serbian (Cyrillic) (Serbia)", + "validFor": null, + "value": "sr_CS" + }, + { + "active": true, + "defaultValue": false, + "label": "Serbian (Latin) (Bosnia and Herzegovina)", + "validFor": null, + "value": "sh_BA" + }, + { + "active": true, + "defaultValue": false, + "label": "Serbian (Latin) (Serbia)", + "validFor": null, + "value": "sh_CS" + }, + { + "active": true, + "defaultValue": false, + "label": "Serbian (Serbia)", + "validFor": null, + "value": "sr_RS" + }, + { + "active": true, + "defaultValue": false, + "label": "Slovak (Slovakia)", + "validFor": null, + "value": "sk_SK" + }, + { + "active": true, + "defaultValue": false, + "label": "Slovenian (Slovenia)", + "validFor": null, + "value": "sl_SI" + }, + { + "active": true, + "defaultValue": false, + "label": "Somali (Djibouti)", + "validFor": null, + "value": "so_DJ" + }, + { + "active": true, + "defaultValue": false, + "label": "Somali (Somalia)", + "validFor": null, + "value": "so_SO" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (Argentina)", + "validFor": null, + "value": "es_AR" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (Bolivia)", + "validFor": null, + "value": "es_BO" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (Chile)", + "validFor": null, + "value": "es_CL" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (Colombia)", + "validFor": null, + "value": "es_CO" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (Costa Rica)", + "validFor": null, + "value": "es_CR" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (Dominican Republic)", + "validFor": null, + "value": "es_DO" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (Ecuador)", + "validFor": null, + "value": "es_EC" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (El Salvador)", + "validFor": null, + "value": "es_SV" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (Guatemala)", + "validFor": null, + "value": "es_GT" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (Honduras)", + "validFor": null, + "value": "es_HN" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (Mexico)", + "validFor": null, + "value": "es_MX" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (Nicaragua)", + "validFor": null, + "value": "es_NI" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (Panama)", + "validFor": null, + "value": "es_PA" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (Paraguay)", + "validFor": null, + "value": "es_PY" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (Peru)", + "validFor": null, + "value": "es_PE" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (Puerto Rico)", + "validFor": null, + "value": "es_PR" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (Spain)", + "validFor": null, + "value": "es_ES" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (United States)", + "validFor": null, + "value": "es_US" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (Uruguay)", + "validFor": null, + "value": "es_UY" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (Venezuela)", + "validFor": null, + "value": "es_VE" + }, + { + "active": true, + "defaultValue": false, + "label": "Swahili (Kenya)", + "validFor": null, + "value": "sw_KE" + }, + { + "active": true, + "defaultValue": false, + "label": "Swedish (Sweden)", + "validFor": null, + "value": "sv_SE" + }, + { + "active": true, + "defaultValue": false, + "label": "Tagalog (Philippines)", + "validFor": null, + "value": "tl_PH" + }, + { + "active": true, + "defaultValue": false, + "label": "Tajik (Tajikistan)", + "validFor": null, + "value": "tg_TJ" + }, + { + "active": true, + "defaultValue": false, + "label": "Tamil (India)", + "validFor": null, + "value": "ta_IN" + }, + { + "active": true, + "defaultValue": false, + "label": "Tamil (Sri Lanka)", + "validFor": null, + "value": "ta_LK" + }, + { + "active": true, + "defaultValue": false, + "label": "Telugu (India)", + "validFor": null, + "value": "te_IN" + }, + { + "active": true, + "defaultValue": false, + "label": "Te reo (New Zealand)", + "validFor": null, + "value": "mi_NZ" + }, + { + "active": true, + "defaultValue": false, + "label": "Thai (Thailand)", + "validFor": null, + "value": "th_TH" + }, + { + "active": true, + "defaultValue": false, + "label": "Tigrinya (Ethiopia)", + "validFor": null, + "value": "ti_ET" + }, + { + "active": true, + "defaultValue": false, + "label": "Turkish (Türkiye)", + "validFor": null, + "value": "tr_TR" + }, + { + "active": true, + "defaultValue": false, + "label": "Ukrainian (Ukraine)", + "validFor": null, + "value": "uk_UA" + }, + { + "active": true, + "defaultValue": false, + "label": "Urdu (Pakistan)", + "validFor": null, + "value": "ur_PK" + }, + { + "active": true, + "defaultValue": false, + "label": "Uzbek (Latin, Uzbekistan)", + "validFor": null, + "value": "uz_LATN_UZ" + }, + { + "active": true, + "defaultValue": false, + "label": "Vietnamese (Vietnam)", + "validFor": null, + "value": "vi_VN" + }, + { + "active": true, + "defaultValue": false, + "label": "Welsh (United Kingdom)", + "validFor": null, + "value": "cy_GB" + }, + { + "active": true, + "defaultValue": false, + "label": "Xhosa (South Africa)", + "validFor": null, + "value": "xh_ZA" + }, + { + "active": true, + "defaultValue": false, + "label": "Yiddish (United States)", + "validFor": null, + "value": "ji_US" + }, + { + "active": true, + "defaultValue": false, + "label": "Yoruba (Benin)", + "validFor": null, + "value": "yo_BJ" + }, + { + "active": true, + "defaultValue": false, + "label": "Zulu (South Africa)", + "validFor": null, + "value": "zu_ZA" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Info Emails", + "name": "ReceivesInfoEmails", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Admin Info Emails", + "name": "ReceivesAdminInfoEmails", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Email Encoding", + "name": "EmailEncodingKey", + "nillable": false, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Unicode (UTF-8)", + "validFor": null, + "value": "UTF-8" + }, + { + "active": true, + "defaultValue": false, + "label": "General US & Western Europe (ISO-8859-1, ISO-LATIN-1)", + "validFor": null, + "value": "ISO-8859-1" + }, + { + "active": true, + "defaultValue": false, + "label": "Japanese (Shift-JIS)", + "validFor": null, + "value": "Shift_JIS" + }, + { + "active": true, + "defaultValue": false, + "label": "Japanese (JIS)", + "validFor": null, + "value": "ISO-2022-JP" + }, + { + "active": true, + "defaultValue": false, + "label": "Japanese (EUC)", + "validFor": null, + "value": "EUC-JP" + }, + { + "active": true, + "defaultValue": false, + "label": "Korean (ks_c_5601-1987)", + "validFor": null, + "value": "ks_c_5601-1987" + }, + { + "active": true, + "defaultValue": false, + "label": "Traditional Chinese (Big5)", + "validFor": null, + "value": "Big5" + }, + { + "active": true, + "defaultValue": false, + "label": "Simplified Chinese (GB2312)", + "validFor": null, + "value": "GB2312" + }, + { + "active": true, + "defaultValue": false, + "label": "Traditional Chinese Hong Kong (Big5-HKSCS)", + "validFor": null, + "value": "Big5-HKSCS" + }, + { + "active": true, + "defaultValue": false, + "label": "Japanese (Shift-JIS_2004)", + "validFor": null, + "value": "x-SJIS_0213" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Profile ID", + "name": "ProfileId", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "Profile" + ], + "relationshipName": "Profile", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "User Type", + "name": "UserType", + "nillable": true, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Standard", + "validFor": null, + "value": "Standard" + }, + { + "active": true, + "defaultValue": false, + "label": "Partner", + "validFor": null, + "value": "PowerPartner" + }, + { + "active": true, + "defaultValue": false, + "label": "Customer Portal Manager", + "validFor": null, + "value": "PowerCustomerSuccess" + }, + { + "active": true, + "defaultValue": false, + "label": "Customer Portal User", + "validFor": null, + "value": "CustomerSuccess" + }, + { + "active": true, + "defaultValue": false, + "label": "Guest", + "validFor": null, + "value": "Guest" + }, + { + "active": true, + "defaultValue": false, + "label": "High Volume Portal", + "validFor": null, + "value": "CspLitePortal" + }, + { + "active": true, + "defaultValue": false, + "label": "CSN Only", + "validFor": null, + "value": "CsnOnly" + }, + { + "active": true, + "defaultValue": false, + "label": "Self Service", + "validFor": null, + "value": "SelfService" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Language", + "name": "LanguageLocaleKey", + "nillable": false, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "English", + "validFor": null, + "value": "en_US" + }, + { + "active": true, + "defaultValue": false, + "label": "German", + "validFor": null, + "value": "de" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish", + "validFor": null, + "value": "es" + }, + { + "active": true, + "defaultValue": false, + "label": "French", + "validFor": null, + "value": "fr" + }, + { + "active": true, + "defaultValue": false, + "label": "Italian", + "validFor": null, + "value": "it" + }, + { + "active": true, + "defaultValue": false, + "label": "Japanese", + "validFor": null, + "value": "ja" + }, + { + "active": true, + "defaultValue": false, + "label": "Swedish", + "validFor": null, + "value": "sv" + }, + { + "active": true, + "defaultValue": false, + "label": "Korean", + "validFor": null, + "value": "ko" + }, + { + "active": true, + "defaultValue": false, + "label": "Chinese (Traditional)", + "validFor": null, + "value": "zh_TW" + }, + { + "active": true, + "defaultValue": false, + "label": "Chinese (Simplified)", + "validFor": null, + "value": "zh_CN" + }, + { + "active": true, + "defaultValue": false, + "label": "Portuguese (Brazil)", + "validFor": null, + "value": "pt_BR" + }, + { + "active": true, + "defaultValue": false, + "label": "Dutch", + "validFor": null, + "value": "nl_NL" + }, + { + "active": true, + "defaultValue": false, + "label": "Danish", + "validFor": null, + "value": "da" + }, + { + "active": true, + "defaultValue": false, + "label": "Thai", + "validFor": null, + "value": "th" + }, + { + "active": true, + "defaultValue": false, + "label": "Finnish", + "validFor": null, + "value": "fi" + }, + { + "active": true, + "defaultValue": false, + "label": "Russian", + "validFor": null, + "value": "ru" + }, + { + "active": true, + "defaultValue": false, + "label": "Spanish (Mexico)", + "validFor": null, + "value": "es_MX" + }, + { + "active": true, + "defaultValue": false, + "label": "Norwegian", + "validFor": null, + "value": "no" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Employee Number", + "name": "EmployeeNumber", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Delegated Approver ID", + "name": "DelegatedApproverId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Group", + "User" + ], + "relationshipName": null, + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Manager ID", + "name": "ManagerId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "Manager", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Login", + "name": "LastLoginDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Password Change or Reset", + "name": "LastPasswordChangeDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Created Date", + "name": "CreatedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Created By ID", + "name": "CreatedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "CreatedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Modified Date", + "name": "LastModifiedDate", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Last Modified By ID", + "name": "LastModifiedById", + "nillable": false, + "picklistValues": [], + "referenceTo": [ + "User" + ], + "relationshipName": "LastModifiedBy", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "System Modstamp", + "name": "SystemModstamp", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Failed Login Attempts", + "name": "NumberOfFailedLogins", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "int" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Offline Edition Trial Expiration Date", + "name": "OfflineTrialExpirationDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Sales Anywhere Trial Expiration Date", + "name": "OfflinePdaTrialExpirationDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Marketing User", + "name": "UserPermissionsMarketingUser", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Offline User", + "name": "UserPermissionsOfflineUser", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Auto-login To Call Center", + "name": "UserPermissionsCallCenterAutoLogin", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Salesforce CRM Content User", + "name": "UserPermissionsSFContentUser", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Knowledge User", + "name": "UserPermissionsKnowledgeUser", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Flow User", + "name": "UserPermissionsInteractionUser", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Service Cloud User", + "name": "UserPermissionsSupportUser", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Data.com User", + "name": "UserPermissionsJigsawProspectingUser", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Site.com Contributor User", + "name": "UserPermissionsSiteforceContributorUser", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Site.com Publisher User", + "name": "UserPermissionsSiteforcePublisherUser", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "WDC User", + "name": "UserPermissionsWorkDotComUserFeature", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Allow Forecasting", + "name": "ForecastEnabled", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ActivityRemindersPopup", + "name": "UserPreferencesActivityRemindersPopup", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "EventRemindersCheckboxDefault", + "name": "UserPreferencesEventRemindersCheckboxDefault", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "TaskRemindersCheckboxDefault", + "name": "UserPreferencesTaskRemindersCheckboxDefault", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ReminderSoundOff", + "name": "UserPreferencesReminderSoundOff", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "DisableAllFeedsEmail", + "name": "UserPreferencesDisableAllFeedsEmail", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "DisableFollowersEmail", + "name": "UserPreferencesDisableFollowersEmail", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "DisableProfilePostEmail", + "name": "UserPreferencesDisableProfilePostEmail", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "DisableChangeCommentEmail", + "name": "UserPreferencesDisableChangeCommentEmail", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "DisableLaterCommentEmail", + "name": "UserPreferencesDisableLaterCommentEmail", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "DisProfPostCommentEmail", + "name": "UserPreferencesDisProfPostCommentEmail", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ContentNoEmail", + "name": "UserPreferencesContentNoEmail", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ContentEmailAsAndWhen", + "name": "UserPreferencesContentEmailAsAndWhen", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ApexPagesDeveloperMode", + "name": "UserPreferencesApexPagesDeveloperMode", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ReceiveNoNotificationsAsApprover", + "name": "UserPreferencesReceiveNoNotificationsAsApprover", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ReceiveNotificationsAsDelegatedApprover", + "name": "UserPreferencesReceiveNotificationsAsDelegatedApprover", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "HideCSNGetChatterMobileTask", + "name": "UserPreferencesHideCSNGetChatterMobileTask", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "DisableMentionsPostEmail", + "name": "UserPreferencesDisableMentionsPostEmail", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "DisMentionsCommentEmail", + "name": "UserPreferencesDisMentionsCommentEmail", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "HideCSNDesktopTask", + "name": "UserPreferencesHideCSNDesktopTask", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "HideChatterOnboardingSplash", + "name": "UserPreferencesHideChatterOnboardingSplash", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "HideSecondChatterOnboardingSplash", + "name": "UserPreferencesHideSecondChatterOnboardingSplash", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "DisCommentAfterLikeEmail", + "name": "UserPreferencesDisCommentAfterLikeEmail", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "DisableLikeEmail", + "name": "UserPreferencesDisableLikeEmail", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "SortFeedByComment", + "name": "UserPreferencesSortFeedByComment", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "DisableMessageEmail", + "name": "UserPreferencesDisableMessageEmail", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "JigsawListUser", + "name": "UserPreferencesJigsawListUser", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "DisableBookmarkEmail", + "name": "UserPreferencesDisableBookmarkEmail", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "DisableSharePostEmail", + "name": "UserPreferencesDisableSharePostEmail", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "EnableAutoSubForFeeds", + "name": "UserPreferencesEnableAutoSubForFeeds", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "DisableFileShareNotificationsForApi", + "name": "UserPreferencesDisableFileShareNotificationsForApi", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowTitleToExternalUsers", + "name": "UserPreferencesShowTitleToExternalUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowManagerToExternalUsers", + "name": "UserPreferencesShowManagerToExternalUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowEmailToExternalUsers", + "name": "UserPreferencesShowEmailToExternalUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowWorkPhoneToExternalUsers", + "name": "UserPreferencesShowWorkPhoneToExternalUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowMobilePhoneToExternalUsers", + "name": "UserPreferencesShowMobilePhoneToExternalUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowFaxToExternalUsers", + "name": "UserPreferencesShowFaxToExternalUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowStreetAddressToExternalUsers", + "name": "UserPreferencesShowStreetAddressToExternalUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowCityToExternalUsers", + "name": "UserPreferencesShowCityToExternalUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowStateToExternalUsers", + "name": "UserPreferencesShowStateToExternalUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowPostalCodeToExternalUsers", + "name": "UserPreferencesShowPostalCodeToExternalUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowCountryToExternalUsers", + "name": "UserPreferencesShowCountryToExternalUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowProfilePicToGuestUsers", + "name": "UserPreferencesShowProfilePicToGuestUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowTitleToGuestUsers", + "name": "UserPreferencesShowTitleToGuestUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowCityToGuestUsers", + "name": "UserPreferencesShowCityToGuestUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowStateToGuestUsers", + "name": "UserPreferencesShowStateToGuestUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowPostalCodeToGuestUsers", + "name": "UserPreferencesShowPostalCodeToGuestUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowCountryToGuestUsers", + "name": "UserPreferencesShowCountryToGuestUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "DisableFeedbackEmail", + "name": "UserPreferencesDisableFeedbackEmail", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "DisableWorkEmail", + "name": "UserPreferencesDisableWorkEmail", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowForecastingChangeSignals", + "name": "UserPreferencesShowForecastingChangeSignals", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "HideS1BrowserUI", + "name": "UserPreferencesHideS1BrowserUI", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "DisableEndorsementEmail", + "name": "UserPreferencesDisableEndorsementEmail", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "PathAssistantCollapsed", + "name": "UserPreferencesPathAssistantCollapsed", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "CacheDiagnostics", + "name": "UserPreferencesCacheDiagnostics", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowEmailToGuestUsers", + "name": "UserPreferencesShowEmailToGuestUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowManagerToGuestUsers", + "name": "UserPreferencesShowManagerToGuestUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowWorkPhoneToGuestUsers", + "name": "UserPreferencesShowWorkPhoneToGuestUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowMobilePhoneToGuestUsers", + "name": "UserPreferencesShowMobilePhoneToGuestUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowFaxToGuestUsers", + "name": "UserPreferencesShowFaxToGuestUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowStreetAddressToGuestUsers", + "name": "UserPreferencesShowStreetAddressToGuestUsers", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "LightningExperiencePreferred", + "name": "UserPreferencesLightningExperiencePreferred", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "PreviewLightning", + "name": "UserPreferencesPreviewLightning", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "HideEndUserOnboardingAssistantModal", + "name": "UserPreferencesHideEndUserOnboardingAssistantModal", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "HideLightningMigrationModal", + "name": "UserPreferencesHideLightningMigrationModal", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "HideSfxWelcomeMat", + "name": "UserPreferencesHideSfxWelcomeMat", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "HideBiggerPhotoCallout", + "name": "UserPreferencesHideBiggerPhotoCallout", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "GlobalNavBarWTShown", + "name": "UserPreferencesGlobalNavBarWTShown", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "GlobalNavGridMenuWTShown", + "name": "UserPreferencesGlobalNavGridMenuWTShown", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "CreateLEXAppsWTShown", + "name": "UserPreferencesCreateLEXAppsWTShown", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "FavoritesWTShown", + "name": "UserPreferencesFavoritesWTShown", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "RecordHomeSectionCollapseWTShown", + "name": "UserPreferencesRecordHomeSectionCollapseWTShown", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "RecordHomeReservedWTShown", + "name": "UserPreferencesRecordHomeReservedWTShown", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "FavoritesShowTopFavorites", + "name": "UserPreferencesFavoritesShowTopFavorites", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ExcludeMailAppAttachments", + "name": "UserPreferencesExcludeMailAppAttachments", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "SuppressTaskSFXReminders", + "name": "UserPreferencesSuppressTaskSFXReminders", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "SuppressEventSFXReminders", + "name": "UserPreferencesSuppressEventSFXReminders", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "PreviewCustomTheme", + "name": "UserPreferencesPreviewCustomTheme", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "HasCelebrationBadge", + "name": "UserPreferencesHasCelebrationBadge", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "UserDebugModePref", + "name": "UserPreferencesUserDebugModePref", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "SRHOverrideActivities", + "name": "UserPreferencesSRHOverrideActivities", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "NewLightningReportRunPageEnabled", + "name": "UserPreferencesNewLightningReportRunPageEnabled", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ReverseOpenActivitiesView", + "name": "UserPreferencesReverseOpenActivitiesView", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "ShowTerritoryTimeZoneShifts", + "name": "UserPreferencesShowTerritoryTimeZoneShifts", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "HasSentWarningEmail", + "name": "UserPreferencesHasSentWarningEmail", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "HasSentWarningEmail238", + "name": "UserPreferencesHasSentWarningEmail238", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "HasSentWarningEmail240", + "name": "UserPreferencesHasSentWarningEmail240", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "NativeEmailClient", + "name": "UserPreferencesNativeEmailClient", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "SendListEmailThroughExternalService", + "name": "UserPreferencesSendListEmailThroughExternalService", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": false, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Contact ID", + "name": "ContactId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Contact" + ], + "relationshipName": "Contact", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Account ID", + "name": "AccountId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Account" + ], + "relationshipName": "Account", + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Call Center ID", + "name": "CallCenterId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "CallCenter" + ], + "relationshipName": null, + "sortable": true, + "type": "reference" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Extension", + "name": "Extension", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "phone" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "SAML Federation ID", + "name": "FederationIdentifier", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "plaintextarea", + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "About Me", + "name": "AboutMe", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "textarea" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Url for full-sized Photo", + "name": "FullPhotoUrl", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "url" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "imageurl", + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Photo", + "name": "SmallPhotoUrl", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "url" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Show external indicator", + "name": "IsExtIndicatorVisible", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Out of office message", + "name": "OutOfOfficeMessage", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "string" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": "imageurl", + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Url for medium profile photo", + "name": "MediumPhotoUrl", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "url" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": "N", + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Chatter Email Highlights Frequency", + "name": "DigestFrequency", + "nillable": false, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Daily", + "validFor": null, + "value": "D" + }, + { + "active": true, + "defaultValue": false, + "label": "Weekly", + "validFor": null, + "value": "W" + }, + { + "active": true, + "defaultValue": true, + "label": "Never", + "validFor": null, + "value": "N" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": "N", + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Default Notification Frequency when Joining Groups", + "name": "DefaultGroupNotificationFrequency", + "nillable": false, + "picklistValues": [ + { + "active": true, + "defaultValue": false, + "label": "Email on Each Post", + "validFor": null, + "value": "P" + }, + { + "active": true, + "defaultValue": false, + "label": "Daily Digests", + "validFor": null, + "value": "D" + }, + { + "active": true, + "defaultValue": false, + "label": "Weekly Digests", + "validFor": null, + "value": "W" + }, + { + "active": true, + "defaultValue": true, + "label": "Never", + "validFor": null, + "value": "N" + } + ], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "picklist" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Data.com Monthly Addition Limit", + "name": "JigsawImportLimitOverride", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "int" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Viewed Date", + "name": "LastViewedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Last Referenced Date", + "name": "LastReferencedDate", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "datetime" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Url for banner photo", + "name": "BannerPhotoUrl", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "url" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Url for IOS banner photo", + "name": "SmallBannerPhotoUrl", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "url" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": false, + "inlineHelpText": null, + "label": "Url for Android banner photo", + "name": "MediumBannerPhotoUrl", + "nillable": true, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "url" + }, + { + "aggregatable": false, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Has Profile Photo", + "name": "IsProfilePhotoActive", + "nillable": false, + "picklistValues": [], + "referenceTo": [], + "relationshipName": null, + "sortable": true, + "type": "boolean" + }, + { + "aggregatable": true, + "custom": false, + "defaultValue": null, + "extraTypeInfo": null, + "filterable": true, + "groupable": true, + "inlineHelpText": null, + "label": "Individual ID", + "name": "IndividualId", + "nillable": true, + "picklistValues": [], + "referenceTo": [ + "Individual" + ], + "relationshipName": "Individual", + "sortable": true, + "type": "reference" + } + ], + "label": "User", + "childRelationships": [ + { + "cascadeDelete": false, + "childSObject": "AIApplication", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AIApplication", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AIApplicationConfig", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AIApplicationConfig", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AIInsightAction", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AIInsightAction", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AIInsightFeedback", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AIInsightFeedback", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AIInsightReason", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AIInsightReason", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AIInsightValue", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AIInsightValue", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AIPredictionEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AIRecordInsight", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AIRecordInsight", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AcceptedEventRelation", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AcceptedEventRelation", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AcceptedEventRelation", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AcceptedEventRelations", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Account", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Account", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Account", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AccountChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AccountChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AccountChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AccountCleanInfo", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AccountCleanInfo", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AccountCleanInfo", + "deprecatedAndHidden": false, + "field": "LastStatusChangedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AccountCleanInfoReviewers", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AccountContactRole", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AccountContactRole", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AccountContactRoleChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AccountContactRoleChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AccountFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AccountFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AccountHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AccountPartner", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AccountPartner", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AccountShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AccountShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ActionLinkGroupTemplate", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ActionLinkGroupTemplate", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ActionLinkTemplate", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ActionLinkTemplate", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ActivityFieldHistory", + "deprecatedAndHidden": false, + "field": "ChangedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ActivityFieldHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ActivityFieldHistory", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ActivityHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ActivityHistory", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ActivityHistory", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AdditionalNumber", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AdditionalNumber", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Address", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Address", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AlternativePaymentMethod", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AlternativePaymentMethod", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AlternativePaymentMethod", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AlternativePaymentMethodShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AlternativePaymentMethodShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Announcement", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Announcement", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApexClass", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApexClass", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApexComponent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApexComponent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApexEmailNotification", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApexEmailNotification", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ApexEmailNotification", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ApexLog", + "deprecatedAndHidden": false, + "field": "LogUserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApexPage", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApexPage", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApexTestQueueItem", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApexTestResultLimits", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApexTestResultLimits", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApexTestRunResult", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApexTestRunResult", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApexTestRunResult", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApexTestSuite", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApexTestSuite", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApexTrigger", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApexTrigger", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApiAnomalyEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApiAnomalyEventStore", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApiAnomalyEventStoreFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApiAnomalyEventStoreFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApiEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApiEventStream", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AppAnalyticsQueryRequest", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AppAnalyticsQueryRequest", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AppExtension", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AppExtension", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AppExtensionChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AppExtensionChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AppMenuItem", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AppMenuItem", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AppUsageAssignment", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AppUsageAssignment", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AppointmentTopicTimeSlot", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AppointmentTopicTimeSlot", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AppointmentTopicTimeSlotFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AppointmentTopicTimeSlotFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AppointmentTopicTimeSlotHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleAggrDurDnscale", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleAggrDurDnscale", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleAggrDurDnscaleFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleAggrDurDnscaleFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleAggrPolicy", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleAggrPolicy", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleAggrPolicyFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleAggrPolicyFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleConfig", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleConfig", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleConfig", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleConfigFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleConfigFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleConfigHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleConfigShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ApptBundleConfigShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundlePolicy", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundlePolicy", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundlePolicy", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundlePolicyFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundlePolicyFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundlePolicyShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ApptBundlePolicyShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundlePolicySvcTerr", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundlePolicySvcTerr", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundlePolicySvcTerrFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundlePolicySvcTerrFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundlePropagatePolicy", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundlePropagatePolicy", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundlePropagatePolicyFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundlePropagatePolicyFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleRestrictPolicy", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleRestrictPolicy", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleRestrictPolicyFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleRestrictPolicyFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleSortPolicy", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleSortPolicy", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleSortPolicyFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ApptBundleSortPolicyFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Asset", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Asset", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Asset", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetAction", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetAction", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetActionSource", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetActionSource", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetAttribute", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetAttribute", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetAttributeChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetAttributeChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetDowntimePeriod", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetDowntimePeriod", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetDowntimePeriodFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetDowntimePeriodFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetDowntimePeriodHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetRelationship", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetRelationship", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetRelationshipFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetRelationshipFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetRelationshipHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AssetShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetStatePeriod", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetStatePeriod", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetTokenEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetTokenEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetWarranty", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetWarranty", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetWarrantyChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetWarrantyChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetWarrantyFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetWarrantyFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssetWarrantyHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssignedResource", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssignedResource", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssignedResourceChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssignedResourceChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssignedResourceFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssignedResourceFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssignmentRule", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssignmentRule", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssociatedLocation", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssociatedLocation", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AssociatedLocationHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AsyncApexJob", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AsyncOperationEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AsyncOperationLog", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AsyncOperationLog", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AsyncOperationStatus", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttachedContentDocument", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttachedContentDocument", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AttachedContentDocument", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AttachedContentDocuments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Attachment", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Attachment", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Attachment", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttributeDefinition", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttributeDefinition", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttributeDefinition", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttributeDefinitionFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttributeDefinitionFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttributeDefinitionHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttributeDefinitionShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AttributeDefinitionShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttributePicklist", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttributePicklist", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttributePicklist", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttributePicklistFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttributePicklistFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttributePicklistHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttributePicklistShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AttributePicklistShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttributePicklistValue", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttributePicklistValue", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttributePicklistValueFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttributePicklistValueFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AttributePicklistValueHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuraDefinition", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuraDefinition", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuraDefinitionBundle", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuraDefinitionBundle", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthConfig", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthConfig", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthConfigProviders", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthConfigProviders", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthProvider", + "deprecatedAndHidden": false, + "field": "ExecutionUserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthSession", + "deprecatedAndHidden": false, + "field": "UsersId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationForm", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationForm", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationForm", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormConsent", + "deprecatedAndHidden": false, + "field": "ConsentGiverId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "AuthorizationFormConsents", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormConsent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormConsent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormConsent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "ConsentGiverId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormConsentHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormConsentShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AuthorizationFormConsentShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormDataUse", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormDataUse", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormDataUse", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormDataUseHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormDataUseShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AuthorizationFormDataUseShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "AuthorizationFormShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormText", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormText", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormTextFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormTextFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "AuthorizationFormTextHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BackgroundOperation", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BackgroundOperation", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BatchApexErrorEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BrandTemplate", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BrandTemplate", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BrandingSet", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BrandingSet", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BrandingSetProperty", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BrandingSetProperty", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BriefcaseAssignment", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BriefcaseAssignment", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "BriefcaseAssignment", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BriefcaseAssignmentChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BriefcaseAssignmentChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BriefcaseAssignmentChangeEvent", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BriefcaseDefinition", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BriefcaseDefinition", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BriefcaseDefinitionChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BriefcaseDefinitionChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BriefcaseRule", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BriefcaseRule", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BriefcaseRuleFilter", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BriefcaseRuleFilter", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Broker__Share", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Broker__Share", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Broker__c", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Broker__c", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Broker__c", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BulkApiResultEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BulkApiResultEventStore", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BusinessBrand", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BusinessBrand", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BusinessBrand", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BusinessBrandShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "BusinessBrandShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BusinessHours", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BusinessHours", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BusinessProcess", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "BusinessProcess", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Calendar", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Calendar", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Calendar", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CalendarView", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CalendarView", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CalendarView", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CalendarView", + "deprecatedAndHidden": false, + "field": "PublisherId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CalendarViewShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CalendarViewShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CallCenter", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CallCenter", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CallCoachingMediaProvider", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CallCoachingMediaProvider", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Campaign", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Campaign", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Campaign", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignInfluenceModel", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignInfluenceModel", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignMember", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignMember", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignMember", + "deprecatedAndHidden": false, + "field": "LeadOrContactOwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignMemberChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignMemberChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignMemberStatus", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignMemberStatus", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignMemberStatusChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignMemberStatusChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CampaignShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CampaignShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CardPaymentMethod", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CardPaymentMethod", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Case", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Case", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Case", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseComment", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseComment", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseContactRole", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseContactRole", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseMilestone", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseMilestone", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CaseShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseSolution", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseStatus", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseStatus", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseTeamMember", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseTeamMember", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CaseTeamMember", + "deprecatedAndHidden": false, + "field": "MemberId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseTeamRole", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseTeamRole", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseTeamTemplate", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseTeamTemplate", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseTeamTemplateMember", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseTeamTemplateMember", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CaseTeamTemplateMember", + "deprecatedAndHidden": false, + "field": "MemberId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CaseTeamTemplateRecord", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CategoryData", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CategoryData", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CategoryNode", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CategoryNode", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ChatterActivity", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ChatterExtension", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ChatterExtension", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ChatterExtensionConfig", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ChatterExtensionConfig", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ClientBrowser", + "deprecatedAndHidden": false, + "field": "UsersId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CollaborationGroup", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CollaborationGroup", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CollaborationGroup", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CollaborationGroupFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CollaborationGroupFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CollaborationGroupMember", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CollaborationGroupMember", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CollaborationGroupMember", + "deprecatedAndHidden": false, + "field": "MemberId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "GroupMemberships", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CollaborationGroupMemberRequest", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CollaborationGroupMemberRequest", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CollaborationGroupMemberRequest", + "deprecatedAndHidden": false, + "field": "RequesterId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "GroupMembershipRequests", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CollaborationGroupRecord", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CollaborationGroupRecord", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CollaborationInvitation", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CollaborationInvitation", + "deprecatedAndHidden": false, + "field": "InviterId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CollaborationInvitation", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CollaborationInvitation", + "deprecatedAndHidden": false, + "field": "SharedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CollaborationRoom", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CollaborationRoom", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CombinedAttachment", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CombinedAttachment", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CombinedAttachment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CombinedAttachments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscription", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscription", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscription", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionChannelType", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionChannelType", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionChannelType", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionChannelTypeFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionChannelTypeFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionChannelTypeHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionChannelTypeShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CommSubscriptionChannelTypeShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionConsent", + "deprecatedAndHidden": false, + "field": "ConsentGiverId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "CommSubscriptionConsents", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionConsent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionConsent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionConsent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "ConsentGiverId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionConsentFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionConsentFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionConsentHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionConsentShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CommSubscriptionConsentShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CommSubscriptionShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionTiming", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionTiming", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionTimingFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionTimingFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CommSubscriptionTimingHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Community", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Community", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConcurLongRunApexErrEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConferenceNumber", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConferenceNumber", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConnectedApplication", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConnectedApplication", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConsumptionRate", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConsumptionRate", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConsumptionRateHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConsumptionSchedule", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConsumptionSchedule", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConsumptionSchedule", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConsumptionScheduleFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConsumptionScheduleFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConsumptionScheduleHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConsumptionScheduleShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ConsumptionScheduleShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Contact", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Contact", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Contact", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactCleanInfo", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactCleanInfo", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactCleanInfo", + "deprecatedAndHidden": false, + "field": "LastStatusChangedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContactCleanInfoReviewers", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointAddress", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointAddress", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointAddress", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointAddressChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointAddressChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointAddressChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointAddressHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointAddressShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContactPointAddressShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointConsent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointConsent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointConsent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointConsentHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointConsentShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContactPointConsentShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointEmail", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointEmail", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointEmail", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointEmailChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointEmailChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointEmailChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointEmailHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointEmailShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContactPointEmailShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointPhone", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointPhone", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointPhone", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointPhoneChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointPhoneChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointPhoneChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointPhoneHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointPhoneShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContactPointPhoneShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointTypeConsent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointTypeConsent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointTypeConsent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointTypeConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointTypeConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointTypeConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointTypeConsentHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactPointTypeConsentShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContactPointTypeConsentShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactRequest", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactRequest", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactRequest", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactRequest", + "deprecatedAndHidden": false, + "field": "WhoId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContactRequests", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactRequestShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContactRequestShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContactShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContactShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentAsset", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentAsset", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDistribution", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDistribution", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentDistribution", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDistributionView", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocument", + "deprecatedAndHidden": false, + "field": "ArchivedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocument", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocument", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocument", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocumentChangeEvent", + "deprecatedAndHidden": false, + "field": "ArchivedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocumentChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocumentChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocumentChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocumentFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocumentFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocumentHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentDocumentLink", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContentDocumentLinks", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentDocumentLinkChangeEvent", + "deprecatedAndHidden": false, + "field": "LinkedEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentDocumentSubscription", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentFolder", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentFolder", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentFolderItem", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentFolderItem", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentFolderMember", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentFolderMember", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentNotification", + "deprecatedAndHidden": false, + "field": "EntityIdentifierId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentNotification", + "deprecatedAndHidden": false, + "field": "UsersId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentTagSubscription", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentUserSubscription", + "deprecatedAndHidden": false, + "field": "SubscribedToUserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentUserSubscription", + "deprecatedAndHidden": false, + "field": "SubscriberUserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersion", + "deprecatedAndHidden": false, + "field": "ContentModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersion", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersion", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersion", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersion", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersionChangeEvent", + "deprecatedAndHidden": false, + "field": "ContentModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersionChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersionChangeEvent", + "deprecatedAndHidden": false, + "field": "FirstPublishLocationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersionChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersionChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentVersionHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentVersionRating", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentWorkspace", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentWorkspace", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentWorkspaceMember", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentWorkspaceMember", + "deprecatedAndHidden": false, + "field": "MemberId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentWorkspacePermission", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContentWorkspacePermission", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContentWorkspaceSubscription", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContextParamMap", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContextParamMap", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Contract", + "deprecatedAndHidden": false, + "field": "ActivatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Contract", + "deprecatedAndHidden": false, + "field": "CompanySignedId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ContractsSigned", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Contract", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Contract", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Contract", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractChangeEvent", + "deprecatedAndHidden": false, + "field": "ActivatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractChangeEvent", + "deprecatedAndHidden": false, + "field": "CompanySignedId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractContactRole", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractContactRole", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineItem", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineItem", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineItemChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineItemChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineItemFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineItemFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineItemHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineOutcome", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineOutcome", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineOutcome", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineOutcomeData", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineOutcomeData", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineOutcomeDataChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineOutcomeDataChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineOutcomeFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineOutcomeFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineOutcomeHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractLineOutcomeShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ContractLineOutcomeShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractStatus", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ContractStatus", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Conversation", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Conversation", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConversationEntry", + "deprecatedAndHidden": false, + "field": "ActorId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ConversationEntries", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConversationEntry", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConversationEntry", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConversationParticipant", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConversationParticipant", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ConversationParticipant", + "deprecatedAndHidden": false, + "field": "ParticipantEntityId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ConversationParticipants", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CorsWhitelistEntry", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CorsWhitelistEntry", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CredentialStuffingEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CredentialStuffingEventStore", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CredentialStuffingEventStoreFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CredentialStuffingEventStoreFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CreditMemo", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CreditMemo", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CreditMemo", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CreditMemoFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CreditMemoFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CreditMemoHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CreditMemoInvApplication", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CreditMemoInvApplication", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CreditMemoInvApplicationFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CreditMemoInvApplicationFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CreditMemoInvApplicationHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CreditMemoLine", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CreditMemoLine", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CreditMemoLineFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CreditMemoLineFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CreditMemoLineHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CreditMemoShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CreditMemoShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CronTrigger", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CronTrigger", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CronTrigger", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CspTrustedSite", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CspTrustedSite", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CustomBrand", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CustomBrand", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CustomBrandAsset", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CustomBrandAsset", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CustomHelpMenuItem", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CustomHelpMenuItem", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CustomHelpMenuSection", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CustomHelpMenuSection", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CustomHttpHeader", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CustomHttpHeader", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CustomNotificationType", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CustomNotificationType", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CustomPermission", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CustomPermission", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CustomPermissionDependency", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CustomPermissionDependency", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Customer", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Customer", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Customer", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "CustomerShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "CustomerShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DandBCompany", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DandBCompany", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Dashboard", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Dashboard", + "deprecatedAndHidden": false, + "field": "FolderId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Dashboard", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Dashboard", + "deprecatedAndHidden": false, + "field": "RunningUserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DashboardComponentFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DashboardComponentFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DashboardFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DashboardFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DataAssessmentFieldMetric", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DataAssessmentFieldMetric", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DataAssessmentMetric", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DataAssessmentMetric", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DataAssessmentValueMetric", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DataAssessmentValueMetric", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DataObjectDataChgEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DataStatistics", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DataUseLegalBasis", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DataUseLegalBasis", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DataUseLegalBasis", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DataUseLegalBasisHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DataUseLegalBasisShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "DataUseLegalBasisShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DataUsePurpose", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DataUsePurpose", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DataUsePurpose", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DataUsePurposeHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DataUsePurposeShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "DataUsePurposeShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DatacloudOwnedEntity", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DatacloudOwnedEntity", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "DatacloudOwnedEntity", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DatacloudPurchaseUsage", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DatacloudPurchaseUsage", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "DatacloudPurchaseUsage", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DeclinedEventRelation", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DeclinedEventRelation", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DeclinedEventRelation", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "DeclinedEventRelations", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DeleteEvent", + "deprecatedAndHidden": false, + "field": "DeletedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DigitalSignature", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DigitalSignature", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DigitalSignatureChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DigitalSignatureChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DigitalWallet", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DigitalWallet", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Document", + "deprecatedAndHidden": false, + "field": "AuthorId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Document", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Document", + "deprecatedAndHidden": false, + "field": "FolderId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Document", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DocumentAttachmentMap", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Domain", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Domain", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DomainSite", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DomainSite", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DuplicateRecordItem", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DuplicateRecordItem", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DuplicateRecordSet", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DuplicateRecordSet", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DuplicateRule", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "DuplicateRule", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailCapture", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailCapture", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailDomainFilter", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailDomainFilter", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailDomainKey", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailDomainKey", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessage", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessage", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessageChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessageChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailMessageRelation", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EmailMessageRelation", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "EmailMessageRelations", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailRelay", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailRelay", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailServicesAddress", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailServicesAddress", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailServicesAddress", + "deprecatedAndHidden": false, + "field": "RunAsUserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailServicesFunction", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailServicesFunction", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailStatus", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailStatus", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailTemplate", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailTemplate", + "deprecatedAndHidden": false, + "field": "FolderId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailTemplate", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailTemplate", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailTemplateChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailTemplateChangeEvent", + "deprecatedAndHidden": false, + "field": "FolderId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailTemplateChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EmailTemplateChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EngagementChannelType", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EngagementChannelType", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EngagementChannelType", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EngagementChannelTypeFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EngagementChannelTypeFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EngagementChannelTypeHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EngagementChannelTypeShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EngagementChannelTypeShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EnhancedLetterhead", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EnhancedLetterhead", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EnhancedLetterheadFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EnhancedLetterheadFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Entitlement", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Entitlement", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EntitlementChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EntitlementChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EntitlementContact", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EntitlementContact", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EntitlementFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EntitlementFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EntitlementHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EntitlementTemplate", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EntitlementTemplate", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EntityDefinition", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EntityMilestone", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EntityMilestone", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EntityMilestoneFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EntityMilestoneFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EntityMilestoneHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EntitySubscription", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EntitySubscription", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "FeedSubscriptionsForEntity", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EntitySubscription", + "deprecatedAndHidden": false, + "field": "SubscriberId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "FeedSubscriptions", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Event", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Event", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Event", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventLogFile", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventLogFile", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventRelation", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventRelation", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "EventRelation", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "EventRelations", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventRelationChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventRelationChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventRelationChangeEvent", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventRelayConfig", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventRelayConfig", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventRelayConfigChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventRelayConfigChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventRelayFeedback", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "EventRelayFeedback", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Expense", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Expense", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Expense", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpenseChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpenseChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpenseChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpenseFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpenseFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpenseHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpenseReport", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpenseReport", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpenseReport", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpenseReportEntry", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpenseReportEntry", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpenseReportEntryFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpenseReportEntryFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpenseReportEntryHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpenseReportFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpenseReportFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpenseReportHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpenseReportShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ExpenseReportShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpenseShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ExpenseShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpressionFilter", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpressionFilter", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpressionFilterCriteria", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExpressionFilterCriteria", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExternalDataSource", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExternalDataSource", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExternalDataSrcDescriptor", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExternalDataSrcDescriptor", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExternalDataUserAuth", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExternalDataUserAuth", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExternalDataUserAuth", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ExternalDataUserAuths", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExternalEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExternalEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExternalEventMapping", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExternalEventMapping", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExternalEventMapping", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ExternalEventMappingShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ExternalEventMappingShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FeedComment", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FeedComment", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FeedComment", + "deprecatedAndHidden": false, + "field": "LastEditById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FeedComment", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FeedItem", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FeedItem", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FeedItem", + "deprecatedAndHidden": false, + "field": "LastEditById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FeedItem", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FeedLike", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FeedLike", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FeedPollChoice", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FeedPollVote", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FeedRevision", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FeedSignal", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FeedSignal", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FieldDefinition", + "deprecatedAndHidden": false, + "field": "BusinessOwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FieldDefinition", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FieldSecurityClassification", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FieldSecurityClassification", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FieldServiceMobileSettings", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FieldServiceMobileSettings", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FieldServiceMobileSettingsChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FieldServiceMobileSettingsChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FieldServiceOrgSettings", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FieldServiceOrgSettings", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FileEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FileEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FileEventStore", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FileEventStore", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FileEventStore", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FileSearchActivity", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FileSearchActivity", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FinanceBalanceSnapshot", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FinanceBalanceSnapshot", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FinanceBalanceSnapshot", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FinanceBalanceSnapshotChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FinanceBalanceSnapshotChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FinanceBalanceSnapshotChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FinanceBalanceSnapshotShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FinanceBalanceSnapshotShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FinanceTransaction", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FinanceTransaction", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FinanceTransaction", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FinanceTransactionChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FinanceTransactionChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FinanceTransactionChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FinanceTransactionShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FinanceTransactionShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowExecutionErrorEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowExecutionErrorEvent", + "deprecatedAndHidden": false, + "field": "InterviewStartedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowExecutionErrorEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowInterview", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowInterview", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowInterview", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowInterviewLog", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowInterviewLog", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowInterviewLog", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowInterviewLogEntry", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowInterviewLogEntry", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowInterviewLogShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FlowInterviewLogShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowInterviewShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FlowInterviewShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationInstance", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationInstance", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationInstance", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationInstanceShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FlowOrchestrationInstanceShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationStageInstance", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationStageInstance", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationStageInstance", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationStageInstanceShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FlowOrchestrationStageInstanceShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationStepInstance", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationStepInstance", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationStepInstance", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationStepInstanceShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FlowOrchestrationStepInstanceShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FlowOrchestrationWorkItem", + "deprecatedAndHidden": false, + "field": "AssigneeId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationWorkItem", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationWorkItem", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationWorkItem", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationWorkItem", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowOrchestrationWorkItemShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FlowOrchestrationWorkItemShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowRecordRelation", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowRecordRelation", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowStageRelation", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowStageRelation", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowTestResult", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowTestResult", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowTestResult", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowTestResultShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "FlowTestResultShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowTestView", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FlowTestView", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Folder", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Folder", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FolderedContentDocument", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "FolderedContentDocument", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "GrantedByLicense", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "GrantedByLicense", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Group", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Group", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Group", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Group", + "deprecatedAndHidden": false, + "field": "RelatedId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "GroupMember", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "GtwyProvPaymentMethodType", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "GtwyProvPaymentMethodType", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Holiday", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Holiday", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "IPAddressRange", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "IPAddressRange", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Idea", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Idea", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "IdeaComment", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "IdentityProviderEventStore", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "IdentityVerificationEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "IdpEventLog", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "IframeWhiteListUrl", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "IframeWhiteListUrl", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Image", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Image", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Image", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ImageFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ImageFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ImageHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ImageShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ImageShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Individual", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Individual", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Individual", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "IndividualChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "IndividualChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "IndividualChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "IndividualHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "IndividualShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "IndividualShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "InstalledMobileApp", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "InstalledMobileApp", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "InstalledMobileApp", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "InstalledMobileApps", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Invoice", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Invoice", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Invoice", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "InvoiceFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "InvoiceFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "InvoiceHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "InvoiceLine", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "InvoiceLine", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "InvoiceLineFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "InvoiceLineFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "InvoiceLineHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "InvoiceShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "InvoiceShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "JobProfile", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "JobProfile", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "JobProfile", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "JobProfileFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "JobProfileFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "JobProfileHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "JobProfileShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "JobProfileShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "KnowledgeableUser", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Lead", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Lead", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Lead", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LeadChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LeadChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LeadChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LeadCleanInfo", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LeadCleanInfo", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LeadCleanInfo", + "deprecatedAndHidden": false, + "field": "LastStatusChangedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "LeadCleanInfoReviewers", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LeadFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LeadFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LeadHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LeadShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "LeadShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LeadStatus", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LeadStatus", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LegalEntity", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LegalEntity", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LegalEntity", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LegalEntityFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LegalEntityFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LegalEntityHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LegalEntityShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "LegalEntityShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LightningExperienceTheme", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LightningExperienceTheme", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LightningOnboardingConfig", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LightningOnboardingConfig", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LightningUriEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LightningUriEventStream", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ListEmail", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ListEmail", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ListEmail", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ListEmailChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ListEmailChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ListEmailChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ListEmailIndividualRecipient", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ListEmailIndividualRecipient", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ListEmailRecipientSource", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ListEmailRecipientSource", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ListEmailShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ListEmailShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ListView", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ListView", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ListViewChart", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ListViewChart", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ListViewChart", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ListViewEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ListViewEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ListViewEventStream", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Location", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Location", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Location", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LocationChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LocationChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LocationChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LocationFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LocationFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LocationGroup", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LocationGroup", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LocationGroup", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LocationGroupAssignment", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LocationGroupAssignment", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LocationGroupFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LocationGroupFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LocationGroupHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LocationGroupShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "LocationGroupShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LocationHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LocationShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "LocationShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LoginAsEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LoginAsEventStream", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LoginEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LoginEventStream", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LoginGeo", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LoginGeo", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "LoginHistory", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "LoginIp", + "deprecatedAndHidden": false, + "field": "UsersId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LogoutEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LogoutEventStream", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "LogoutEventStream", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MLModel", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MLModel", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MLModelFactor", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MLModelFactor", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MLModelFactorComponent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MLModelFactorComponent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MLModelMetric", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MLModelMetric", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MLPredictionDefinition", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MLPredictionDefinition", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MLRecommendationDefinition", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MLRecommendationDefinition", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Macro", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Macro", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Macro", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MacroChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MacroChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MacroChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MacroHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MacroInstruction", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MacroInstruction", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MacroInstructionChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MacroInstructionChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MacroShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "MacroShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MacroUsage", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MacroUsage", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MacroUsage", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MacroUsage", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MacroUsageShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "MacroUsageShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MailmergeTemplate", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MailmergeTemplate", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenanceAsset", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenanceAsset", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenanceAssetChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenanceAssetChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenanceAssetFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenanceAssetFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenanceAssetHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenancePlan", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenancePlan", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenancePlan", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenancePlanChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenancePlanChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenancePlanChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenancePlanFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenancePlanFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenancePlanHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenancePlanShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "MaintenancePlanShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenanceWorkRule", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenanceWorkRule", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenanceWorkRule", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenanceWorkRuleChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenanceWorkRuleChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenanceWorkRuleChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenanceWorkRuleFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenanceWorkRuleFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenanceWorkRuleHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MaintenanceWorkRuleShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "MaintenanceWorkRuleShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ManagedContent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ManagedContent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ManagedContentChannel", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ManagedContentChannel", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ManagedContentSpace", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ManagedContentSpace", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ManagedContentVariant", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ManagedContentVariant", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ManagedContentVariantChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ManagedContentVariantChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MatchingInformation", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MatchingInformation", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "MatchingInformation", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MatchingRule", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MatchingRule", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MatchingRuleItem", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MatchingRuleItem", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingChannel", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingChannel", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingEndUser", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingEndUser", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingEndUser", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingEndUserHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingEndUserShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "MessagingEndUserShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingSession", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingSession", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingSession", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingSession", + "deprecatedAndHidden": false, + "field": "TargetUserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingSessionFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingSessionFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingSessionHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MessagingSessionShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "MessagingSessionShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MilestoneType", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MilestoneType", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MobileApplicationDetail", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MobileApplicationDetail", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MobileSettingsAssignment", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MobileSettingsAssignment", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MsgChannelLanguageKeyword", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MsgChannelLanguageKeyword", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MutingPermissionSet", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MutingPermissionSet", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MyDomainDiscoverableLogin", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "MyDomainDiscoverableLogin", + "deprecatedAndHidden": false, + "field": "ExecuteApexHandlerAsId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "MyDomainDiscoverableLogin", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "NamedCredential", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "NamedCredential", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Note", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Note", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Note", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "NoteAndAttachment", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "NoteAndAttachment", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "NoteAndAttachment", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OauthCustomScope", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OauthCustomScope", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OauthCustomScopeApp", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OauthCustomScopeApp", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OauthToken", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ObjectPermissions", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ObjectPermissions", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OnboardingMetrics", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OnboardingMetrics", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OnboardingMetrics", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpenActivity", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpenActivity", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpenActivity", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OperatingHours", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OperatingHours", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OperatingHoursChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OperatingHoursChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OperatingHoursFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OperatingHoursFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OperatingHoursHoliday", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OperatingHoursHoliday", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OperatingHoursHolidayFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OperatingHoursHolidayFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Opportunity", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Opportunity", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Opportunity", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityCompetitor", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityCompetitor", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityContactRole", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityContactRole", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityContactRoleChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityContactRoleChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityFieldHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityLineItem", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityLineItem", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityPartner", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityPartner", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OpportunityShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityStage", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OpportunityStage", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Order", + "deprecatedAndHidden": false, + "field": "ActivatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Order", + "deprecatedAndHidden": false, + "field": "CompanyAuthorizedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Order", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Order", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Order", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderChangeEvent", + "deprecatedAndHidden": false, + "field": "ActivatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderChangeEvent", + "deprecatedAndHidden": false, + "field": "CompanyAuthorizedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderItem", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderItem", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderItemChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderItemChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderItemFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderItemFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderItemHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OrderShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderStatus", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrderStatus", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrgLifecycleNotification", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrgMetric", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrgMetric", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrgMetricScanResult", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrgMetricScanResult", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrgMetricScanSummary", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrgMetricScanSummary", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrgWideEmailAddress", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OrgWideEmailAddress", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Organization", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Organization", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OutgoingEmailRelation", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OutgoingEmailRelations", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OwnedContentDocument", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "OwnedContentDocument", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "OwnedContentDocument", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "OwnedContentDocuments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Participant", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Participant", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Partner", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Partner", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PartnerRole", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PartnerRole", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PartyConsent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PartyConsent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PartyConsent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PartyConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PartyConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PartyConsentChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PartyConsentFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PartyConsentFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PartyConsentHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PartyConsentShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "PartyConsentShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Payment", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Payment", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentAuthAdjustment", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentAuthAdjustment", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentAuthorization", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentAuthorization", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentGateway", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentGateway", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentGatewayLog", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentGatewayLog", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentGatewayProvider", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentGatewayProvider", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentGroup", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentGroup", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentLineInvoice", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentLineInvoice", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentMethod", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PaymentMethod", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PermissionSet", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PermissionSet", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "PermissionSetAssignment", + "deprecatedAndHidden": false, + "field": "AssigneeId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "PermissionSetAssignments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PermissionSetEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PermissionSetEventStore", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PermissionSetGroup", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PermissionSetGroup", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PermissionSetGroupComponent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PermissionSetGroupComponent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PermissionSetLicense", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PermissionSetLicense", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "PermissionSetLicenseAssign", + "deprecatedAndHidden": false, + "field": "AssigneeId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "PermissionSetLicenseAssignments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PermissionSetLicenseAssign", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PermissionSetLicenseAssign", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PlatformAction", + "deprecatedAndHidden": false, + "field": "InvokedByUserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PlatformCachePartition", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PlatformCachePartition", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PlatformCachePartitionType", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PlatformCachePartitionType", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PlatformStatusAlertEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PlatformStatusAlertEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Pricebook2", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Pricebook2", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Pricebook2ChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Pricebook2ChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Pricebook2History", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PricebookEntry", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PricebookEntry", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PricebookEntryChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PricebookEntryChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PricebookEntryHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessDefinition", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessDefinition", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessException", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessException", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessException", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessExceptionEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessExceptionShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProcessExceptionShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessFlowMigration", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessFlowMigration", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessInstance", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProcessInstance", + "deprecatedAndHidden": false, + "field": "LastActorId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessInstance", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProcessInstance", + "deprecatedAndHidden": false, + "field": "SubmittedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessInstanceHistory", + "deprecatedAndHidden": false, + "field": "ActorId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessInstanceHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessInstanceHistory", + "deprecatedAndHidden": false, + "field": "OriginalActorId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessInstanceNode", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProcessInstanceNode", + "deprecatedAndHidden": false, + "field": "LastActorId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessInstanceNode", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProcessInstanceStep", + "deprecatedAndHidden": false, + "field": "ActorId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessInstanceStep", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProcessInstanceStep", + "deprecatedAndHidden": false, + "field": "OriginalActorId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessInstanceWorkitem", + "deprecatedAndHidden": false, + "field": "ActorId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProcessInstanceWorkitem", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProcessInstanceWorkitem", + "deprecatedAndHidden": false, + "field": "OriginalActorId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Product2", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Product2", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Product2ChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Product2ChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Product2Feed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Product2Feed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Product2History", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductConsumed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductConsumed", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductConsumedChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductConsumedChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductConsumedFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductConsumedFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductConsumedHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductConsumedState", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductConsumedState", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductConsumedStateHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductConsumptionSchedule", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductConsumptionSchedule", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductEntitlementTemplate", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductItem", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductItem", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductItem", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductItemChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductItemChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductItemChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductItemFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductItemFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductItemHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductItemShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProductItemShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductItemTransaction", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductItemTransaction", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductItemTransactionFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductItemTransactionFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductItemTransactionHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequest", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequest", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequest", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestLineItem", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestLineItem", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestLineItemChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestLineItemChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestLineItemFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestLineItemFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestLineItemHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequestShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProductRequestShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequired", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequired", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequiredChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequiredChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequiredFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequiredFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductRequiredHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductServiceCampaign", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductServiceCampaign", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductServiceCampaign", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductServiceCampaignFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductServiceCampaignFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductServiceCampaignHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductServiceCampaignItem", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductServiceCampaignItem", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductServiceCampaignItemFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductServiceCampaignItemFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductServiceCampaignItemHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductServiceCampaignItemStatus", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductServiceCampaignItemStatus", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductServiceCampaignShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProductServiceCampaignShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductServiceCampaignStatus", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductServiceCampaignStatus", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductTransfer", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductTransfer", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductTransfer", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductTransfer", + "deprecatedAndHidden": false, + "field": "ReceivedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ReceivedByProductTransfers", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductTransferChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductTransferChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductTransferChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductTransferChangeEvent", + "deprecatedAndHidden": false, + "field": "ReceivedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductTransferFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductTransferFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductTransferHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductTransferShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProductTransferShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductTransferState", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductTransferState", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductTransferStateHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductWarrantyTerm", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductWarrantyTerm", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductWarrantyTermFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductWarrantyTermFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProductWarrantyTermHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Profile", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Profile", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProfileSkill", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProfileSkill", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProfileSkill", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProfileSkillEndorsement", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProfileSkillEndorsement", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProfileSkillEndorsement", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "UserProfileSkillUserEndorsements", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProfileSkillEndorsementFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProfileSkillEndorsementFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProfileSkillEndorsementHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProfileSkillFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProfileSkillFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProfileSkillHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProfileSkillShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProfileSkillShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProfileSkillUser", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProfileSkillUser", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ProfileSkillUser", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "UserProfileSkillChildren", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProfileSkillUserFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProfileSkillUserFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ProfileSkillUserHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Prompt", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Prompt", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PromptAction", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PromptAction", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PromptAction", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "PromptAction", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PromptActionShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "PromptActionShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PromptError", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PromptError", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PromptError", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PromptErrorShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "PromptErrorShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PromptVersion", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PromptVersion", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PromptVersion", + "deprecatedAndHidden": false, + "field": "PublishedByUserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Property__Feed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Property__Feed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Property__History", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Property__Share", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Property__Share", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Property__c", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Property__c", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Property__c", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PushTopic", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "PushTopic", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "QueueSobject", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "QuickText", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "QuickText", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "QuickText", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "QuickTextChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "QuickTextChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "QuickTextChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "QuickTextHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "QuickTextShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "QuickTextShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "QuickTextUsage", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "QuickTextUsage", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "QuickTextUsage", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "QuickTextUsage", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "QuickTextUsageShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "QuickTextUsageShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "QuoteTemplateRichTextData", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "QuoteTemplateRichTextData", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Recommendation", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Recommendation", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecommendationChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecommendationChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecommendationResponse", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecommendationResponse", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordAction", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordAction", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "RecordAction", + "deprecatedAndHidden": false, + "field": "RecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActions", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordActionHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordActionHistory", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordActionHistory", + "deprecatedAndHidden": false, + "field": "ParentRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "RecordActionHistories", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordActionHistory", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordType", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordType", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFilterCriteria", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFilterCriteria", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFilterCriteria", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFilterCriteriaChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFilterCriteriaChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFilterCriteriaChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFilterCriteriaFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFilterCriteriaFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFilterCriteriaHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFilterCriteriaRule", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFilterCriteriaRule", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFilterCriteriaRuleChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFilterCriteriaRuleChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFilterCriteriaShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "RecordsetFilterCriteriaShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFltrCritMonitor", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFltrCritMonitor", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFltrCritMonitorChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFltrCritMonitorChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFltrCritMonitorFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFltrCritMonitorFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RecordsetFltrCritMonitorHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RedirectWhitelistUrl", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RedirectWhitelistUrl", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Refund", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Refund", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RefundLinePayment", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RefundLinePayment", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "RemoteKeyCalloutEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Report", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Report", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Report", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReportAnomalyEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReportAnomalyEventStore", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReportAnomalyEventStoreFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReportAnomalyEventStoreFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReportEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReportEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReportEventStream", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReportFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReportFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ResourceAbsence", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ResourceAbsence", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ResourceAbsenceChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ResourceAbsenceChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ResourceAbsenceFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ResourceAbsenceFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ResourceAbsenceHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ResourcePreference", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ResourcePreference", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ResourcePreferenceChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ResourcePreferenceChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ResourcePreferenceFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ResourcePreferenceFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ResourcePreferenceHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrder", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrder", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrder", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrder", + "deprecatedAndHidden": false, + "field": "ReturnedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderChangeEvent", + "deprecatedAndHidden": false, + "field": "ReturnedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderLineItem", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderLineItem", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderLineItemChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderLineItemChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderLineItemFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderLineItemFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderLineItemHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ReturnOrderShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ReturnOrderShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SPSamlAttributes", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SPSamlAttributes", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SamlSsoConfig", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SamlSsoConfig", + "deprecatedAndHidden": false, + "field": "ExecutionUserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SamlSsoConfig", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SchedulingConstraint", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SchedulingConstraint", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SchedulingConstraint", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SchedulingConstraintShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "SchedulingConstraintShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SchedulingObjective", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SchedulingObjective", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SchedulingObjectiveParameter", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SchedulingObjectiveParameter", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SchedulingRule", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SchedulingRule", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SchedulingRuleParameter", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SchedulingRuleParameter", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Scontrol", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Scontrol", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Scorecard", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Scorecard", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Scorecard", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ScorecardAssociation", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ScorecardAssociation", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ScorecardMetric", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ScorecardMetric", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ScorecardShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ScorecardShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SearchLayout", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SearchPromotionRule", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SearchPromotionRule", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SecurityCustomBaseline", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SecurityCustomBaseline", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Seller", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Seller", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Seller", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SellerHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SellerShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "SellerShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SerializedProduct", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SerializedProduct", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SerializedProduct", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SerializedProductFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SerializedProductFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SerializedProductHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SerializedProductShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "SerializedProductShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SerializedProductTransaction", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SerializedProductTransaction", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SerializedProductTransactionFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SerializedProductTransactionFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SerializedProductTransactionHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointment", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointment", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointment", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointmentChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointmentChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointmentChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointmentFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointmentFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointmentHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointmentShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ServiceAppointmentShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointmentStatus", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceAppointmentStatus", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceContract", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceContract", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceContract", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceContractChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceContractChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceContractChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceContractFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceContractFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceContractHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceContractShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ServiceContractShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceCrew", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceCrew", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceCrew", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceCrewChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceCrewChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceCrewChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceCrewFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceCrewFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceCrewHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceCrewMember", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceCrewMember", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceCrewMemberChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceCrewMemberChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceCrewMemberFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceCrewMemberFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceCrewMemberHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceCrewShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ServiceCrewShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceReport", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceReport", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceReportChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceReportChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceReportHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceReportLayout", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceReportLayout", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceReportLayoutChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceReportLayoutChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResource", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResource", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResource", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResource", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ServiceResources", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceCapacity", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceCapacity", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceCapacityChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceCapacityChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceCapacityFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceCapacityFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceCapacityHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceChangeEvent", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourcePreference", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourcePreference", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourcePreference", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourcePreferenceFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourcePreferenceFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourcePreferenceHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourcePreferenceShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ServiceResourcePreferenceShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ServiceResourceShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceSkill", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceSkill", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceSkillChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceSkillChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceSkillFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceSkillFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceResourceSkillHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceSetupProvisioning", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceSetupProvisioning", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritory", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritory", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryLocation", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryLocation", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryLocationChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryLocationChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryLocationFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryLocationFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryLocationHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryMember", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryMember", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryMemberChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryMemberChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryMemberFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryMemberFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryMemberHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ServiceTerritoryShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ServiceTerritoryShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SessionHijackingEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SessionHijackingEventStore", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SessionHijackingEventStoreFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SessionHijackingEventStoreFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SessionPermSetActivation", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SessionPermSetActivation", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "SessionPermSetActivation", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "SessionPermSetActivations", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SetupAssistantStep", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SetupAssistantStep", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SetupAuditTrail", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Shift", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Shift", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Shift", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftPattern", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftPattern", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftPattern", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftPatternChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftPatternChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftPatternChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftPatternEntry", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftPatternEntry", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftPatternEntryChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftPatternEntryChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftPatternEntryFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftPatternEntryFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftPatternEntryHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftPatternFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftPatternFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftPatternHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftPatternShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ShiftPatternShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ShiftShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftStatus", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftStatus", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftTemplate", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftTemplate", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftTemplate", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftTemplateChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftTemplateChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftTemplateChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShiftTemplateShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ShiftTemplateShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Shipment", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Shipment", + "deprecatedAndHidden": false, + "field": "DeliveredToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "DeliveredToShipments", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Shipment", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Shipment", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShipmentChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShipmentChangeEvent", + "deprecatedAndHidden": false, + "field": "DeliveredToId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShipmentChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShipmentChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShipmentFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShipmentFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShipmentHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShipmentItem", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShipmentItem", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShipmentItemFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShipmentItemFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShipmentItemHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ShipmentShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "ShipmentShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Site", + "deprecatedAndHidden": false, + "field": "AdminId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "UserSites", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Site", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Site", + "deprecatedAndHidden": false, + "field": "GuestRecordDefaultOwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Site", + "deprecatedAndHidden": false, + "field": "GuestUserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Site", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SiteFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SiteFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SiteHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SiteIframeWhiteListUrl", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SiteIframeWhiteListUrl", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SiteRedirectMapping", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SiteRedirectMapping", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Skill", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Skill", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SkillChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SkillChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SkillRequirement", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SkillRequirement", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SkillRequirementChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SkillRequirementChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SkillRequirementFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SkillRequirementFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SkillRequirementHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SkillType", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SkillType", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SlaProcess", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SlaProcess", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Solution", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Solution", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Solution", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SolutionFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SolutionFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SolutionHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SolutionStatus", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SolutionStatus", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SourceChangeNotification", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Stamp", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Stamp", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "StampAssignment", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "StampAssignment", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "StampAssignment", + "deprecatedAndHidden": false, + "field": "SubjectId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "StaticResource", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "StaticResource", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "StreamingChannel", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "StreamingChannel", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "StreamingChannel", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "StreamingChannelShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "StreamingChannelShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Swarm", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Swarm", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Swarm", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Swarm", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Swarms", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SwarmFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SwarmFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SwarmHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SwarmMember", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SwarmMember", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SwarmMember", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "SwarmMember", + "deprecatedAndHidden": false, + "field": "RelatedRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "SwarmMembers", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SwarmMemberFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SwarmMemberFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SwarmMemberHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SwarmMemberShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "SwarmMemberShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "SwarmShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "SwarmShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Task", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Task", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Task", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TaskChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TaskChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TaskChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TaskFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TaskFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TaskPriority", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TaskPriority", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TaskStatus", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TaskStatus", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TenantUsageEntitlement", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TenantUsageEntitlement", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TestSuiteMembership", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TestSuiteMembership", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ThirdPartyAccountLink", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ThreatDetectionFeedback", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ThreatDetectionFeedback", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ThreatDetectionFeedback", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ThreatDetectionFeedbackFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "ThreatDetectionFeedbackFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSheet", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSheet", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSheet", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSheetChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSheetChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSheetChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSheetEntry", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSheetEntry", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSheetEntryChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSheetEntryChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSheetEntryFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSheetEntryFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSheetEntryHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSheetFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSheetFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSheetHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSheetShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "TimeSheetShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSlot", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSlot", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSlotChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TimeSlotChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TodayGoal", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TodayGoal", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TodayGoal", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "TodayGoal", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TodayGoalShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "TodayGoalShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Topic", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TopicAssignment", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TopicFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TopicFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TopicUserEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TransactionSecurityPolicy", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TransactionSecurityPolicy", + "deprecatedAndHidden": false, + "field": "ExecutionUserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TransactionSecurityPolicy", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Translation", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Translation", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TravelMode", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TravelMode", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TravelMode", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TravelModeFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TravelModeFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "TravelModeShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "TravelModeShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UiFormulaCriterion", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UiFormulaCriterion", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UiFormulaRule", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UiFormulaRule", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UndecidedEventRelation", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UndecidedEventRelation", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UndecidedEventRelation", + "deprecatedAndHidden": false, + "field": "RelationId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "UndecidedEventRelations", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UnitOfMeasure", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UnitOfMeasure", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UnitOfMeasure", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UnitOfMeasureShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "UnitOfMeasureShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UriEvent", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UriEventStream", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "User", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "User", + "deprecatedAndHidden": false, + "field": "DelegatedApproverId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "DelegatedUsers", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "User", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "User", + "deprecatedAndHidden": false, + "field": "ManagerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "ManagedUsers", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserAppInfo", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserAppInfo", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "UserAppInfo", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserAppMenuCustomization", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserAppMenuCustomization", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserAppMenuCustomization", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserAppMenuCustomizationShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "UserAppMenuCustomizationShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserChangeEvent", + "deprecatedAndHidden": false, + "field": "DelegatedApproverId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserChangeEvent", + "deprecatedAndHidden": false, + "field": "ManagerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserEmailPreferredPerson", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserEmailPreferredPerson", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserEmailPreferredPerson", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "UserEmailPreferredPerson", + "deprecatedAndHidden": false, + "field": "PersonRecordId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "PersonRecord", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserEmailPreferredPersonShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "UserEmailPreferredPersonShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserEntityAccess", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "UserEntityAccessRights", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "UserFeed", + "deprecatedAndHidden": false, + "field": "ParentId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Feeds", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserFieldAccess", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "UserFieldAccessRights", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserListView", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserListView", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "UserListView", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserListViewCriterion", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserListViewCriterion", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserLogin", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserLogin", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserPackageLicense", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserPackageLicense", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "UserPackageLicense", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "UserPreference", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "UserPreferences", + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserProvAccount", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserProvAccount", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserProvAccount", + "deprecatedAndHidden": false, + "field": "SalesforceUserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserProvAccountStaging", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserProvAccountStaging", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserProvAccountStaging", + "deprecatedAndHidden": false, + "field": "SalesforceUserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserProvMockTarget", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserProvMockTarget", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserProvisioningConfig", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserProvisioningConfig", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserProvisioningLog", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserProvisioningLog", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserProvisioningLog", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserProvisioningRequest", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserProvisioningRequest", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserProvisioningRequest", + "deprecatedAndHidden": false, + "field": "ManagerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserProvisioningRequest", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserProvisioningRequest", + "deprecatedAndHidden": false, + "field": "SalesforceUserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserProvisioningRequestShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "UserProvisioningRequestShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserRecordAccess", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserRole", + "deprecatedAndHidden": false, + "field": "ForecastUserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserRole", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserRole", + "deprecatedAndHidden": false, + "field": "PortalAccountOwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "UserShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "UserShare", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Shares", + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "UserShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "VerificationHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "VerificationHistory", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "VerificationHistory", + "deprecatedAndHidden": false, + "field": "UserId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "Vote", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "Vote", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WarrantyTerm", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WarrantyTerm", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WarrantyTerm", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WarrantyTermChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WarrantyTermChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WarrantyTermChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WarrantyTermFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WarrantyTermFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WarrantyTermHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WarrantyTermShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "WarrantyTermShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WebLink", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WebLink", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkAccess", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkAccess", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkAccess", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkAccessShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "WorkAccessShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkBadge", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkBadge", + "deprecatedAndHidden": false, + "field": "GiverId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkBadge", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkBadge", + "deprecatedAndHidden": false, + "field": "RecipientId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "Badges", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "WorkBadgeDefinition", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkBadgeDefinition", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkBadgeDefinition", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkBadgeDefinitionFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkBadgeDefinitionFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkBadgeDefinitionHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkBadgeDefinitionShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "WorkBadgeDefinitionShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrder", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrder", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrder", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderLineItem", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderLineItem", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderLineItemChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderLineItemChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderLineItemFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderLineItemFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderLineItemHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderLineItemStatus", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderLineItemStatus", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "WorkOrderShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderStatus", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkOrderStatus", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlan", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlan", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlan", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanSelectionRule", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanSelectionRule", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanSelectionRule", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanSelectionRuleChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanSelectionRuleChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanSelectionRuleChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanSelectionRuleFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanSelectionRuleFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanSelectionRuleHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanSelectionRuleShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "WorkPlanSelectionRuleShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "WorkPlanShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanTemplate", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanTemplate", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanTemplate", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanTemplateChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanTemplateChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanTemplateChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanTemplateEntry", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanTemplateEntry", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanTemplateEntryChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanTemplateEntryChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanTemplateEntryFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanTemplateEntryFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanTemplateEntryHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanTemplateFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanTemplateFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanTemplateHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkPlanTemplateShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "WorkPlanTemplateShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkStep", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkStep", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkStepChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkStepChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkStepFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkStepFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkStepHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkStepStatus", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkStepStatus", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkStepTemplate", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkStepTemplate", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkStepTemplate", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkStepTemplateChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkStepTemplateChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkStepTemplateChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkStepTemplateFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkStepTemplateFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkStepTemplateHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkStepTemplateShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "WorkStepTemplateShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkThanks", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkThanks", + "deprecatedAndHidden": false, + "field": "GiverId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": "GivenThanks", + "restrictedDelete": true + }, + { + "cascadeDelete": false, + "childSObject": "WorkThanks", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkThanks", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkThanksShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "WorkThanksShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkType", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkType", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkType", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkTypeChangeEvent", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkTypeChangeEvent", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkTypeChangeEvent", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkTypeFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkTypeFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkTypeGroup", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkTypeGroup", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkTypeGroup", + "deprecatedAndHidden": false, + "field": "OwnerId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkTypeGroupFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkTypeGroupFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkTypeGroupHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkTypeGroupMember", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkTypeGroupMember", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkTypeGroupMemberFeed", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkTypeGroupMemberFeed", + "deprecatedAndHidden": false, + "field": "InsertedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkTypeGroupMemberHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkTypeGroupShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "WorkTypeGroupShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkTypeHistory", + "deprecatedAndHidden": false, + "field": "CreatedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": false, + "childSObject": "WorkTypeShare", + "deprecatedAndHidden": false, + "field": "LastModifiedById", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + }, + { + "cascadeDelete": true, + "childSObject": "WorkTypeShare", + "deprecatedAndHidden": false, + "field": "UserOrGroupId", + "junctionIdListNames": [], + "junctionReferenceTo": [], + "relationshipName": null, + "restrictedDelete": false + } + ], + "custom": false, + "name": "User", + "queryable": true +} \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/soqlMetadata/typeNames.json b/proxy-lite-work/.sfdx/tools/soqlMetadata/typeNames.json new file mode 100644 index 0000000000000000000000000000000000000000..2db0b4d42fa7f316daa9f35da5159f6e69ec9ffa --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/soqlMetadata/typeNames.json @@ -0,0 +1,78 @@ +[ + { + "name": "Account", + "custom": false + }, + { + "name": "AccountHistory", + "custom": false + }, + { + "name": "Asset", + "custom": false + }, + { + "name": "Attachment", + "custom": false + }, + { + "name": "Case", + "custom": false + }, + { + "name": "Contact", + "custom": false + }, + { + "name": "Contract", + "custom": false + }, + { + "name": "Domain", + "custom": false + }, + { + "name": "Lead", + "custom": false + }, + { + "name": "Note", + "custom": false + }, + { + "name": "Opportunity", + "custom": false + }, + { + "name": "Order", + "custom": false + }, + { + "name": "Pricebook2", + "custom": false + }, + { + "name": "PricebookEntry", + "custom": false + }, + { + "name": "Product2", + "custom": false + }, + { + "name": "RecordType", + "custom": false + }, + { + "name": "Report", + "custom": false + }, + { + "name": "Task", + "custom": false + }, + { + "name": "User", + "custom": false + } +] \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/tools/vector-db/schema b/proxy-lite-work/.sfdx/tools/vector-db/schema new file mode 100644 index 0000000000000000000000000000000000000000..55455a94df787acbe1ac0a85b566fc96cc47b193 --- /dev/null +++ b/proxy-lite-work/.sfdx/tools/vector-db/schema @@ -0,0 +1 @@ +85b7696e7465726e616c446f63756d656e74494453746f726581ae696e7465726e616c4964546f4964dc0013aa32393530393133322d31aa32393530393133322d32aa32393530393133322d33aa32393530393133322d34aa32393530393133322d35aa32393530393133322d36aa32393530393133322d37aa32393530393133322d38aa32393530393133322d39ab32393530393133322d3130ab32393530393133322d3131ab32393530393133322d3132ab32393530393133322d3133ab32393530393133322d3134ab32393530393133322d3135ab32393530393133322d3136ab32393530393133322d3137ab32393530393133322d3138ab32393530393133322d3139a5696e64657888a7696e646578657382a46e616d6583a474797065a55261646978a46e6f646586a1638aa16186a16383a16386a16381a16886a16380a1649101a177ae6163636f756e74686973746f7279a16ba168a173a7686973746f7279a165c3a1649111a177a76163636f756e74a16ba163a173a663636f756e74a165c3a17486a16380a1649106a177aa6174746163686d656e74a16ba174a173a974746163686d656e74a165c3a17386a16380a164910ea177a56173736574a16ba173a173a473736574a165c3a16490a177a161a16ba161a173a161a165c2a16486a16380a1649102a177a6646f6d61696ea16ba164a173a6646f6d61696ea165c3a16e86a16380a1649103a177a46e6f7465a16ba16ea173a46e6f7465a165c3a17286a16382a16386a16380a1649104a177aa7265636f726474797065a16ba163a173a8636f726474797065a165c3a17086a16380a1649108a177a67265706f7274a16ba170a173a4706f7274a165c3a16490a177a27265a16ba172a173a27265a165c2a17086a16382a16986a16382a13286a16380a1649105a177aa7072696365626f6f6b32a16ba132a173a132a165c3a16586a16380a1649107a177ae7072696365626f6f6b656e747279a16ba165a173a5656e747279a165c3a16490a177a97072696365626f6f6ba16ba169a173a7696365626f6f6ba165c2a16f86a16380a1649109a177a870726f6475637432a16ba16fa173a66f6475637432a165c3a16490a177a27072a16ba170a173a27072a165c2a16386a16382a16186a16380a164910aa177a463617365a16ba161a173a3617365a165c3a16f86a16382a17286a16380a164910ba177a8636f6e7472616374a16ba172a173a472616374a165c3a16186a16380a1649112a177a7636f6e74616374a16ba161a173a3616374a165c3a16490a177a4636f6e74a16ba16fa173a36f6e74a165c2a16490a177a163a16ba163a173a163a165c2a17486a16380a164910ca177a47461736ba16ba174a173a47461736ba165c3a16f86a16382a17086a16380a164910da177ab6f70706f7274756e697479a16ba170a173aa70706f7274756e697479a165c3a17286a16380a1649110a177a56f72646572a16ba172a173a472646572a165c3a16490a177a16fa16ba16fa173a16fa165c2a16c86a16380a164910fa177a46c656164a16ba16ca173a46c656164a165c3a17586a16380a1649113a177a475736572a16ba175a173a475736572a165c3a16490a177a0a16ba0a173a0a165c2a769734172726179c2a7636f6e7465787483a474797065a55261646978a46e6f646586a16380a16490a177a0a16ba0a173a0a165c2a769734172726179c2ad766563746f72496e646578657381a9656d62656464696e6782a473697a65cd0400a7766563746f7273de0013aa32393530393133322d3192cb40400f8d25607089dc0400cbbfda800000000000cb3fe0200000000000cb3feb000000000000cb3fe5200000000000cbbfe5200000000000cb3fc0c00000000000cb3fc4a00000000000cb3fd2400000000000cbbfa0a00000000000cb3ff1e00000000000cb3ff4c00000000000cb3fb0c00000000000cbbff5400000000000cb3fd3e00000000000cb3feac00000000000cb3ffd600000000000cb3fe2800000000000cb3fe3400000000000cb3ff4000000000000cb3ffb200000000000cbc004200000000000cbbfede00000000000cb3ff8000000000000cb3ffc800000000000cb3ff2800000000000cbbfd0800000000000cbbfe7600000000000cb3ffbe00000000000cbbff0a00000000000cbbfc9600000000000cb3ff4c00000000000cb3ff4200000000000cbbfd1e00000000000cbbfe6800000000000cb3fdac00000000000cbbfe3200000000000ffcb3fed600000000000cb3ffe600000000000cbbff6400000000000cb3fba400000000000cbbfe0400000000000cbbfdbe00000000000cbbff3000000000000cb4001800000000000cbbfe2200000000000cbbffb600000000000cbbfdc200000000000cbbffe400000000000cbbffb800000000000cbbfee000000000000cb3fbbc00000000000cbbfcaa00000000000cb3fb6800000000000cb3fd1400000000000cbbffb800000000000cbbfd9400000000000cb3fd6600000000000cbbfcfc00000000000cb3fe7a00000000000cb3ff3400000000000cbbfd8000000000000cbbfdfa00000000000cbbfdf400000000000cbbfc5c00000000000cb3fd1400000000000cb3fde400000000000cbbfcd600000000000cbbff5200000000000cbbfeba00000000000cbbfd3000000000000cbbff9e00000000000cb3ff5000000000000cb3ff4800000000000cbbff9a00000000000cbbfea200000000000cbbfe0400000000000cb3fea000000000000cbbfd6000000000000cbbfa6000000000000cb3ff0c00000000000cbbf85000000000000cbc004000000000000cb3ff5600000000000cbbfc2200000000000cb3fe8000000000000cbbfbac00000000000cbbfe9600000000000cb3fe2200000000000cb3fd1c00000000000cbbff8800000000000cb3fe9600000000000cbbfea400000000000cbbff4e00000000000cb3ffa600000000000cb3ff6c00000000000cb3fe8400000000000cbbfbf800000000000cbbfede00000000000cb3feb200000000000cb3ff1e00000000000cb3fe1c00000000000cb4000800000000000cb3fb8200000000000cbbfe5800000000000cb3ff2a00000000000cbbff3200000000000cbbfbe800000000000cb3fe1e00000000000cbbffc000000000000cbbfdb200000000000cb3fd2a00000000000cb3ffe600000000000cb3fefc00000000000cbbfcc400000000000cb3ff2600000000000cbbff2800000000000cb3fe0200000000000cb3fa5200000000000cbbff0e00000000000cb3fcba00000000000cb3fd2000000000000cb3fc8e00000000000cb3fcc400000000000cbc004200000000000cb3f8d800000000000cb3fe7e00000000000cb3feba00000000000cb3f94000000000000cbbffee00000000000cbbf28000000000000cb3fec60000000000002cbbfb4400000000000cb3ffc400000000000cbbfba000000000000cbbfe3000000000000cbbfe1200000000000cbbff0c00000000000cb3fe6800000000000cb3fde000000000000cb3fe0200000000000cb3ff7400000000000cbbff1800000000000cbbff4a00000000000cb3ff2200000000000cbbfeca00000000000cbbffd200000000000cbbfbe400000000000cbbfba400000000000cbbff3200000000000cbbfc8600000000000cbbfee200000000000cb3fe6400000000000cb4000c00000000000cb3ff4800000000000cbbfdf600000000000cb3fe4200000000000cbbff8200000000000cbc000200000000000cbbff9000000000000cb3fd6c00000000000cb4003400000000000cbbfdce00000000000cbbf7b000000000000cb3fbe200000000000cb3fbc000000000000cbbfe4a00000000000cbbff2400000000000cb3ff4c00000000000cb3fb5400000000000cb3ff0400000000000cb3fe3200000000000cb3fd6e00000000000cb3fc8600000000000cbbfe8800000000000cbbfff200000000000cb3fdb200000000000cb3fe6c00000000000cbbfeee00000000000cbbfec800000000000cb3f8dc00000000000cb3fedc00000000000cbbff7600000000000cb3fc8c00000000000cb3fe7800000000000cbc000600000000000cbbfe5200000000000cbbfb5a00000000000cbbff0400000000000cbbff3000000000000cb3ffb600000000000cb3fcd000000000000cb3fd3600000000000cbbfb9a00000000000cb3feba00000000000cbbfdcc00000000000cbbff0600000000000cbbfcc800000000000cbbfd6800000000000cb3ff6200000000000cb3fe1000000000000cb3fe6800000000000cb3fe1a00000000000cbbff8600000000000cbbfe4200000000000cbbfbb600000000000cbbff6200000000000cbbfdf200000000000cbbfcd000000000000cb3fffa00000000000cbbfe1000000000000cbbfd2200000000000cb3ff0800000000000cbbfd2a00000000000cb3fe6600000000000cb3fef800000000000cb3ffe000000000000cbbf86c00000000000cb3fe3e00000000000cb3fd9400000000000cbbfd7800000000000cb3fc6800000000000cbbff9400000000000cbbfc7400000000000cbbfc0c00000000000cbbfe0200000000000cb3fcca00000000000cb3ff5a00000000000cbbfeb000000000000cb3ff3800000000000cbbfb6200000000000cb3fa9e00000000000cbbfcca00000000000cb3ffb600000000000cb3fcf600000000000cb3ff4200000000000cb3fef000000000000cb3fe0e00000000000cbbfef200000000000cb3fe8600000000000cbbfeb800000000000cb3fdfc00000000000cbbff6800000000000cbbfd7a00000000000cb3fe1200000000000cbbff2200000000000cb3fc8600000000000cbbff2a00000000000cb3ff1a00000000000cbbfe2800000000000cb4004400000000000cb3feba00000000000cbc004200000000000cbbff9200000000000cb3fd9e00000000000cb3fe5600000000000cbbfdf400000000000cbbfc8800000000000cbbff1e00000000000cbbfd3c00000000000cb3fe1000000000000cbbff8a00000000000cbbfdd000000000000cbbfe3200000000000cbbfefa00000000000cbbfd1400000000000cb3fed200000000000cb3fe7000000000000cbbfe3a00000000000cb3fc7000000000000cbbff2c00000000000cbbfd2800000000000cbbfea400000000000cb3fe0800000000000cb3fec600000000000cb3ff7e00000000000cb3fd5c00000000000cbbffa800000000000cbbff4800000000000cb3ffd200000000000cb3fef600000000000cb3fd4600000000000cb3ffe800000000000cb3fd8c00000000000cb3fb1c00000000000cbbfe8e00000000000ffcbbff6200000000000cb3fd1e00000000000cb3ff4400000000000cb3ff6e00000000000cbbff4000000000000cb3fbda00000000000cbbfb6e00000000000cbc006400000000000cbbfd6e00000000000cbbfe8e00000000000cb3ffc800000000000cbbfdb800000000000cb3ff2600000000000cb3fd1600000000000cb3ffac00000000000cb3fe9200000000000cbbff2400000000000cb3fec000000000000cbbfd5200000000000cb3fc3e00000000000cbbffb600000000000cb3fe1800000000000cbc003000000000000cb3ff3a00000000000cb3feb000000000000cbbfd2e00000000000cb3fc1000000000000cb3fe2800000000000cb3fc2400000000000cb3feb800000000000cbbfd4600000000000cbc006000000000000cb3fc3000000000000cb3fe5000000000000cb3fc0a00000000000cbbff9000000000000cbbfe1e00000000000cb3fdb400000000000cbbff1600000000000cb3ff2200000000000cbbff4400000000000cb4001a00000000000cbbfbc000000000000cbbff6400000000000cbc000e00000000000cb3ff2600000000000cb3fdea00000000000cb3fe6200000000000cbbfca800000000000cb3ff3c00000000000cbbfd0600000000000cb3ffd000000000000cbbff3000000000000cb3fe4200000000000cb3ff1a00000000000cbc003000000000000cb3ff1a00000000000cbbfec200000000000cb3fe2000000000000cb3fdf000000000000cbbf75800000000000cbbff0600000000000cb3fd0200000000000cbbfe4e00000000000cb4005000000000000cb3fd9a00000000000cb3fc4000000000000cbbfe3200000000000cb3ff0c00000000000cb3fece00000000000cb3fec200000000000cbbfc1000000000000cbbff2200000000000cbbfe7a00000000000cbbfd6e00000000000cb3fd2e00000000000cbbff6c00000000000cb3ffc800000000000cbbff3800000000000cbbfea200000000000cbbfe5e00000000000cb3fb0400000000000cb3fec600000000000cbbfd5800000000000cbbfea600000000000cb3ff2c00000000000cb3fd1000000000000cb3fec000000000000cbbfeea00000000000cb3fd3c00000000000cbbff3000000000000cbbffd200000000000cbbffac00000000000cb3feac00000000000cbbfe4000000000000cb3ffec00000000000cbbfee800000000000cbbffb600000000000cbbfe9e00000000000cb3fe8400000000000cb3fde400000000000cb3fe5a00000000000cb3ff8800000000000cb3feda00000000000cbbfe3e00000000000cb3fdcc00000000000cbbfe1600000000000cb3fd4000000000000cbbfd9600000000000cbbff7400000000000cbbfc0800000000000cb3fc3400000000000cb3fe1200000000000cb3ff1200000000000cb3ff3a00000000000cb3fd6200000000000cb3fe6600000000000cbbfcec00000000000cb3fe1800000000000cbbfe4a00000000000cb3fed200000000000cbbfe9e00000000000cb3fe5400000000000cb3fdb000000000000cbbf90800000000000cb3ff0600000000000cb3fe8e00000000000cbbfee000000000000cb3ff4800000000000cb3f8de00000000000cb3fb9800000000000cbbff4400000000000cb3feee00000000000cb3fdd200000000000cb3ff8600000000000cbbfe0000000000000cb3fe1c00000000000cb3f94600000000000cb3fcae00000000000cb3ff5400000000000cbc002600000000000cbbfc6e00000000000cbbffac00000000000cb3fff200000000000cb3ff4e00000000000cb3ff6400000000000cb3ffde00000000000cbbff3a00000000000cb3ff1800000000000cbbfdc400000000000cbbff1a00000000000cbbfd7000000000000cb3fb2000000000000cb3fe9600000000000cb3ff3e00000000000cb3fe0a00000000000cb3fce400000000000cbc004a00000000000cb3ff7c00000000000cb3fd4e00000000000cbbff1400000000000cb3fefc00000000000cb3ff0400000000000cb3fd1400000000000cbc000400000000000cbbfdf600000000000cbbfe0e00000000000cbbfe6800000000000cb3ff6a00000000000cb4000e00000000000cb3ff2a00000000000cbc008200000000000cbbfd7c00000000000cb3ff4a00000000000cbbfe0800000000000cbbff5000000000000cb4000e00000000000cb3fe4e00000000000cbbfafe00000000000cbbfd2400000000000cbbff4c00000000000cbbffa000000000000cbbff1200000000000cb3ff5c00000000000cb3fee200000000000cbbf9a000000000000cb3fe2e00000000000cb3ff0200000000000cbbfe1e00000000000cbbff1200000000000cb3ff1e00000000000cbbfe9400000000000cbbfe7e00000000000cbbfe7000000000000cb3ff5600000000000cbbfc3400000000000cbbfe2a00000000000cb3fc2a00000000000cbbffee00000000000cb3fe7e00000000000cb3fd4400000000000cb3f8d800000000000cb3fe8200000000000cb3fc6400000000000cb3ff4e00000000000cbbff7c00000000000cb3fabc00000000000cb3ff6200000000000cbc000800000000000cb4006000000000000cb3fd0600000000000cb3fcf400000000000cb3fde000000000000cbbff7e00000000000cbbff0800000000000cb3ff4800000000000cbbfb2600000000000cbbff1200000000000cbbfc3c00000000000cb3fe6a00000000000cb3fdb400000000000cb3fad800000000000cbbfeec00000000000cbbfe7600000000000cb3fa6400000000000cbbfeb600000000000cbbfea000000000000cb3fdee00000000000cb3feb200000000000cb3ff5200000000000cb3f89800000000000cb3fdfc00000000000cb3fe4400000000000cbbfedc00000000000cb3fe2c00000000000cb3febc00000000000cbbfef000000000000cbbff6a00000000000cb3fc7400000000000cbbfaa000000000000cbbffa600000000000cb3fd4e00000000000cbbfb9800000000000cb3fc0400000000000cb3fafe00000000000cbbff0e00000000000cb3fb2a00000000000cb3fcf800000000000cb3fd4c00000000000cbbfd2c00000000000cbbfd0e00000000000cb3fd9e00000000000cbbfe0600000000000cbbfe7e00000000000cbbfd2800000000000cb4001800000000000cb4005600000000000cb3ff0600000000000cbbfd0e00000000000cb3fe7c00000000000cbbfbf400000000000cbbfe6800000000000cbbfeda00000000000cb3fe9e00000000000cb3fe1400000000000cb3fdb800000000000cbbfe1000000000000cbbfb7800000000000cbbff1000000000000cbbfeaa00000000000cbbfd5800000000000cbc005400000000000cb3fee400000000000cbbff1e00000000000cb3fb7400000000000cbbfcc200000000000cb3fdb200000000000cb3fe4400000000000cb3fd0600000000000cb3fc2e00000000000cb3fcc400000000000cbbfeec00000000000cb3fe7600000000000cbbfe3000000000000cbbf94200000000000cbbfeb400000000000cbbfe0a00000000000cbbfea200000000000cb3fed200000000000cb3fcb000000000000cbc000600000000000cb3fd6200000000000cbbff1e00000000000cb3feee00000000000cb3ff5e00000000000cbbfd2e00000000000cbbfe7200000000000cbc005000000000000cbbfd3600000000000cb3ff1200000000000cbbff5600000000000cbbfcc400000000000cbbff4200000000000cbbf5c000000000000cbbf92000000000000cb3ff1800000000000cbbfc4600000000000cb3fd4c00000000000cb3fcaa00000000000cb3fc1a00000000000cbbff6800000000000cb3fa6400000000000cb3faec00000000000cbc00ba00000000000cb4000200000000000cbbfe2800000000000cbbfe6000000000000cb3fe1c00000000000cbbff6c00000000000cbbfef600000000000cbbff8000000000000cb3fcd600000000000cbbfd4600000000000cb3feda00000000000cb3ff4000000000000cbbffbc00000000000cb3fe4600000000000cb3fe8000000000000cb3ff2200000000000cbbf96c00000000000cbbfde000000000000cb3ffea00000000000cbbffd600000000000cb3fedc00000000000cbbff1400000000000cbbfda800000000000cbbfcf800000000000cbbfe0200000000000cbbfbf200000000000cb3f5b600000000000cbbff5000000000000cbbfde400000000000cbbfc180000000000001cb3fe6e00000000000cb3fe6800000000000cb3fd6800000000000cb3fe7000000000000cbbffd600000000000cbbfe1a00000000000cbbf90a00000000000cb3fe0000000000000cbbff2e00000000000cb3fbca00000000000cbbfdc600000000000cbbff5e00000000000cb3fddc00000000000cbbfd5400000000000cbc003a00000000000cb3fe0c00000000000cbbfd5400000000000cbbfe2400000000000cbbf9b000000000000cb3fe7a00000000000cbbfe9c00000000000cb3fdae0000000000001cbbff4400000000000cb3fa7e00000000000cb3fd8400000000000cb3ff8400000000000cbbfff800000000000cbbfe7800000000000cb3fe3400000000000cb3ff3000000000000cbbfe2000000000000cbbfe7a00000000000cb3fd8200000000000cbbfa7c00000000000cb3fbc800000000000cb3ffe000000000000cb3ffea00000000000cbbfd1400000000000cbbff7800000000000cb3ff4200000000000cbbfe7400000000000cbbfe4c00000000000cb3fde000000000000cb3fe3e00000000000cbbfd6c00000000000cb3fd1e00000000000cb3fe4600000000000cb3ff2e00000000000cb3f9d000000000000cbbfe1a00000000000cbbfd5a00000000000cbbfe5e00000000000cb3fe9c00000000000cbbfdec00000000000cbbfd3600000000000cb3fc9a00000000000cbbff2c00000000000cbbff2200000000000cb3fda200000000000cb3ff4a00000000000cbbfdcc00000000000cbbf99800000000000cbc001400000000000cb3fe1c00000000000cbbfc1600000000000cbbfd2800000000000cbbffac00000000000cbbfe1c00000000000cb3fdb800000000000cb3ff8c00000000000cb3ffae00000000000cb3ff6c00000000000cb3fef600000000000cb3fcc400000000000cbbf95400000000000cbbfd6c00000000000cbbff3000000000000cbbff0600000000000cbbff2e00000000000cbbff3800000000000cb3fee200000000000cbbff8c00000000000cb3ff1400000000000cb3fe4600000000000cb3fea000000000000cbbfdfe00000000000cb4006a00000000000cb3ff7400000000000cbbfa5800000000000cb3fd2c00000000000cbbfe2600000000000cbbfe7e00000000000cb3ff9400000000000cb3fe0800000000000cb3fcd800000000000cb3fd1200000000000cbbfe4c00000000000cbbfd3c00000000000cbbfe3400000000000cbbfebc00000000000cbbffd000000000000cb3fd5c00000000000cbbfe5e00000000000cb3ffac00000000000cbbfeb000000000000cb3fc4800000000000cb3fad200000000000cbbfeb800000000000cbbfd6e00000000000cbbff3200000000000cb3ffca00000000000cbbfcdc00000000000cb3fdd000000000000cb3ff9200000000000cbbff3a00000000000cb3fde000000000000cbbfec400000000000cbbff1a00000000000cbbffee00000000000cb3fe6000000000000cb3fd3600000000000cbbfedc00000000000cb3fb6400000000000cbbfe9a00000000000cb3fdfe00000000000cbbfe0a00000000000cbbff5200000000000cbbfe6000000000000cbbff0400000000000cbbfea000000000000cb3fd0800000000000cb3feae00000000000cbbfaba00000000000cbbff5e00000000000cbbfebc00000000000cb3ffd200000000000cb3ff1e00000000000cb3fcb400000000000cb3ff6a00000000000cbbfde400000000000cbbff2800000000000cbbfe7800000000000cb3fcfc00000000000cbbffac00000000000cb3fe6a00000000000cb3ffde00000000000cbbff0c00000000000cbbfe6e00000000000cbbfff400000000000cb3fe9000000000000cb3fc6600000000000cb3fef400000000000cbbfdd200000000000cb3fada00000000000cbbfdc200000000000cb3fd1a00000000000cb3fc1a00000000000cb3fea200000000000cb3feb600000000000cbbfed000000000000cb3ff9800000000000cbbffba00000000000cbbfe9c00000000000cb3ff3a00000000000cbbfef200000000000cb3fe3c00000000000cbbfb7600000000000cb3fd2400000000000cbbff4000000000000cbbfade00000000000cb3fe8c00000000000cbbfe3e00000000000cb3feba00000000000cbbfc3800000000000cbbfc3400000000000cb3fee800000000000cb3fc5000000000000cbbfdbe00000000000cbbfe3c00000000000cbbfa1400000000000cb3fbec00000000000cbbfcb400000000000cb3ff2800000000000cb3fdc600000000000cb3ff1200000000000cb3fef800000000000cbbfe0e00000000000cb3fece00000000000cbbfda200000000000cbbfdca00000000000cbbfd2400000000000cbbfaea00000000000cb3fe4a00000000000cb3ff7a00000000000cbbff2a00000000000cbbff8200000000000cbbfc5000000000000cb3fd0600000000000cb3fffc00000000000cbbff0600000000000cbbfe4a00000000000cbbfea800000000000cb3ff6800000000000cb3f82200000000000cbbfadc00000000000cbbff1e00000000000cbbfe9200000000000cb3fd2c00000000000cbbfe6c00000000000cb3ff1000000000000cbbff3600000000000cbbfd8800000000000cbbf9dc00000000000cb3fed800000000000cb3fe2a00000000000cb3fc3200000000000cbbfe1600000000000cbbfee60000000000002cbbfeae00000000000cb3fcb800000000000cbbff6200000000000cbbff0400000000000cbbff0c00000000000cb3fd4600000000000cbbfd6c00000000000cbbfa6c00000000000cbbfcfa00000000000cb3fc9600000000000cb3ff6600000000000cbbfb5e00000000000cb3fd6e00000000000cbbfd3400000000000cb3fc5200000000000cb3ffc800000000000cbbfe2600000000000cbbfe2a00000000000cbbff6400000000000cb3fe1c00000000000cb3fe9000000000000cb4002000000000000cbbfa3000000000000cb3fb1a00000000000cbbfd3800000000000cbbff2000000000000cb3fff200000000000cb3fea000000000000cbbfd2200000000000cbbff7c00000000000cbbfdca00000000000cbbfeb600000000000cbbfe5400000000000cbbfd3800000000000cbbfc7200000000000cb3fe5000000000000cb3fcb000000000000cbbfd6c00000000000cb3fed000000000000cbbfe3400000000000cb3fc3a00000000000cbbffa800000000000cbc001000000000000cb3f58000000000000cb3fe2200000000000cbbfd5a00000000000cb3fe1a00000000000cbbfee600000000000cb3fd4400000000000cb3fe0400000000000cbbfeda00000000000cb3fb0a00000000000cbbfc5e00000000000cbbfc7a00000000000cb3ff4000000000000cbc000c00000000000cb3fb9a00000000000cb3ff3400000000000cb3ff6800000000000cb4002a00000000000cb3fe2400000000000cb3fb6400000000000cb3fc0600000000000cbbfc2600000000000cbbff5200000000000cbbff4e00000000000cbbfff400000000000cbbfe2a00000000000cbbfeb400000000000cb3fe9200000000000cb3fdfa00000000000cb3fcc600000000000cbbfeb200000000000cbbff3e00000000000cb3fe7600000000000cb3fd3e00000000000cbbfd3400000000000cb3fa3800000000000cb3fea200000000000cb3fd1200000000000cbbfe5a00000000000cb3fe9a00000000000cb3ff1800000000000cbbfd7200000000000cb3ffa000000000000cb3fbb800000000000cbbfebc00000000000cb3ff1800000000000cbbfe6400000000000cb3fd9a00000000000cb3fb6c00000000000cbbfea400000000000cbbfcce00000000000cb3fe4800000000000cbc000a00000000000cb3ff8200000000000cb3fe2a00000000000cb3ff7800000000000cbbfe0e00000000000cb3feb800000000000cb3fd0c00000000000cbbffbe00000000000cb3fd3800000000000cb4002e00000000000cbbfec000000000000cb3ff7c00000000000cbbff9e00000000000cbbfcd000000000000cb3fef000000000000cbbfe2400000000000cb3fb8800000000000cbbfea000000000000cbbfed600000000000cbbfc5800000000000cbbfcda00000000000cb3fe7800000000000cbbff3200000000000cbbfdec00000000000cb3ff6200000000000cb3fdf400000000000cbbffc200000000000cbbfd0e00000000000cb3fb0400000000000cbbfeb000000000000cbbffd600000000000cb3fe6600000000000cb3fb7c00000000000cb3fc4400000000000cbbfe5800000000000cb3fec400000000000cb3ff9000000000000cb3fff800000000000cbbfe3400000000000cb3fde000000000000cb3fc7e00000000000cbc002e00000000000cb3fd8600000000000cb3feb000000000000cb3ffd800000000000cbbfbf600000000000cbbfc6e00000000000cb3fe3c00000000000cb3fdbe00000000000cb3f94400000000000cbbff0400000000000cbbfb2000000000000cbbfdd200000000000cb3fe2c00000000000cb3ffc000000000000cb3fe2a00000000000cb3fe2c00000000000cbbfe2800000000000cb3fb3c00000000000cb3fe0a00000000000cbbfeec00000000000cbbfdca00000000000cbbfdf200000000000cb3fe7200000000000cb3fd0e00000000000cb3fecc00000000000cbbffe400000000000cb3fe3e00000000000cbbfdca00000000000cb3fdf600000000000cb3fc8e00000000000cbbfe0400000000000cb3fd3c00000000000cb3ff400000000000001cb3feec00000000000cbbff4e00000000000cb3fe3800000000000aa32393530393133322d3292cb403f6aef39ed126fdc0400cb3fbf800000000000cb3fec400000000000cb3ff1400000000000cb3ff1200000000000cbbff3400000000000cbbfe9e00000000000cbbfe4200000000000cb3feb000000000000cbbfe4c00000000000cb3ff4600000000000cb3ffde00000000000cbbfb2000000000000cbbfef200000000000cb3feec00000000000cb3fa1c00000000000cb3ff6c00000000000cb3fd9800000000000cb3fd9e00000000000cb3ff2600000000000cb3ff0400000000000cbbff4800000000000cb3fcae00000000000cb3ff0200000000000cb3fe4800000000000cb3fd2000000000000cbbfcd800000000000cbbfdd200000000000cb3ffd200000000000cbbff9400000000000cb3ff4200000000000cb3fd5200000000000cb3ff1400000000000cbbfe1e00000000000cbbfe3a00000000000cbbfed800000000000cbbfe7c00000000000cbbfc3e00000000000cb3fe0600000000000cb3ffd800000000000cbbfdb000000000000cb3ffd000000000000cbbfcc800000000000cb3fc3000000000000cbbffa000000000000cb4001000000000000cbbfd6e00000000000cbbfe5400000000000cb3fc5800000000000cbbff3600000000000cbbfcd000000000000cbbfe9600000000000cb3fdd400000000000cbbff0c00000000000cbbfdb600000000000cb3ff1400000000000cbbffd000000000000cb3fb1000000000000cb3ff1600000000000cb3fe5000000000000cbbfd3c00000000000cb3ff1a00000000000cb3fe0800000000000cbbfe8e00000000000cbbfeb000000000000cb3fe4a00000000000cbbfe6a00000000000cb3fc3800000000000cb3faa800000000000cbbfe9c00000000000cbbfce400000000000cbbfa9800000000000cbbff1c00000000000cb3ffe000000000000cb3ff4a00000000000cbc000a00000000000cbbfca000000000000cbbff4400000000000cb3ffb800000000000cbbfe7400000000000cbbfebe00000000000cb3ff7c00000000000cbbfca000000000000cbc008600000000000cb3ff9800000000000cbbff4a00000000000cb3fb8000000000000cbbfe9e00000000000cbbfec000000000000cb3ff7c00000000000cbbfe0c00000000000cbbf85800000000000cb3fdb400000000000cbbff9c00000000000cbbff7c00000000000cb3ff3e00000000000cb3fe8400000000000cbbfdec00000000000cbbfed200000000000cbbfeda00000000000cb3fe1000000000000cb3fe3a00000000000cb3ff3200000000000cb3ffe000000000000cbbfea800000000000cbbfe7400000000000cb3ff6600000000000cbbff2600000000000cbbfeb400000000000cb3ff3c00000000000cbbfecc00000000000cbbfbcc00000000000cb3fe6600000000000cb3ff1600000000000cb3fc4a00000000000cb3fed200000000000cb4000600000000000cbbff4800000000000cb3fdba00000000000cbbfd3c00000000000cbbffc400000000000cb3fe8e00000000000cbbfccc00000000000cb3ff1e00000000000cbbfbd400000000000cbc001c00000000000cb3fbe000000000000cb3ff4600000000000cb3fe1a00000000000cb3fd7c00000000000cbbfeec00000000000cbbfa5000000000000cb3fe5000000000000cb3ffee00000000000cbbff1e00000000000cb4001e00000000000cbbfc6200000000000cbbfc9200000000000cbbff5c00000000000cbc001200000000000cb3fc8c00000000000cb3fe5a00000000000cb3f90e00000000000cb3fe5600000000000cbbfe3800000000000cbbfefa00000000000cb3ff5c00000000000cbbfcdc00000000000cbbfb9800000000000cbbfca200000000000cbbfc0600000000000cbbff0600000000000cbbfc0200000000000cbbff720000000000001cb3ffa000000000000cb3fe7000000000000cbbfe2800000000000cb3fece00000000000cbbfec400000000000cbbfe9e00000000000cb3f78000000000000cb3fd960000000000002cbbfad000000000000cb3fe8000000000000cb3fc9c00000000000cb3ff1600000000000cbbfb9800000000000cbbff0e00000000000cb3ffa200000000000cbbfa7e00000000000cb3ff9e00000000000cb3f97800000000000cb3ff3000000000000cbbf9b400000000000cbbfe8400000000000cbc001200000000000cbbfd5400000000000cb3ff3600000000000cbbff5200000000000cbbfe5000000000000cb3ff9400000000000cbbf9c600000000000cbbff2600000000000cbbfdf200000000000cb3fe2c00000000000cbc001c00000000000cbbfcdc00000000000cb3f7d800000000000cbbffd600000000000cbbff2c00000000000cb3fd8c00000000000cb3fe1e00000000000cb3fd9400000000000cbbfe0c00000000000cbbfe8c00000000000cbbfe4600000000000cbbfc6400000000000cbbffaa00000000000cbbfcba00000000000cbbfb7800000000000cb3ff4800000000000cb3fe4200000000000cb3fe4000000000000cbbfc0600000000000cbbfe0800000000000cb3fd2600000000000cb3fa4c00000000000cbbfe6e00000000000ffcb3ff9800000000000cbbfea200000000000cb3ff6c00000000000cb3fe5600000000000cbbfa2c00000000000cbbfb2800000000000cb3ffa000000000000cb3fc9600000000000cbbfd0400000000000cb3fef800000000000cb3fddc00000000000cbbfe4000000000000cb3fc1a00000000000cbbff8600000000000cbbfe4600000000000cb3fe0400000000000cbbfe2000000000000cb3fe8400000000000cbbfd1000000000000cbbfeb200000000000cb3ff1400000000000cb3fde800000000000cb3fd1e00000000000cb3f82000000000000cb3feb800000000000cb3faa600000000000cb3ff2e00000000000cb3ffe000000000000cb3fb1600000000000cbbfcbc00000000000cb3fe3e00000000000cbbfd9200000000000cb3fd5600000000000cbbff9000000000000cbbff3600000000000cb3fba600000000000cbbffee00000000000cbbfca000000000000cbbfdec00000000000cb3ffcc00000000000cbbfc2e00000000000cb4003200000000000cb3fe9800000000000cbc003c00000000000cbbfe2200000000000cb3fe3200000000000cb3fea800000000000cb3fe5e00000000000cb3fc1e00000000000cbbff4600000000000cbbff4600000000000cbbfb9600000000000cbc001a00000000000cbbfe1200000000000cb3fcaa00000000000cbbff6600000000000cb3fe1000000000000cb3ff1600000000000cb3fe8200000000000cbbffb000000000000cb3fe6200000000000cbbfece00000000000cbbfce200000000000cbbfcb400000000000cb3ffb200000000000cb3fb8c00000000000cb3ff0c00000000000cb3fdac00000000000cbbfff800000000000cbbfba400000000000cb3ff1200000000000cb3fe6c00000000000cb3fba600000000000cb3feca00000000000cbbfc2a00000000000cbbfed800000000000cbbffa200000000000cbbff6400000000000cbbfecc00000000000cb3ffa400000000000cb3fd4800000000000cb3ffbe00000000000cbbff1c00000000000cb3fd6000000000000cbbfd8c00000000000cbc001a00000000000cbbf95c00000000000cbbfec600000000000cb4003800000000000cbbfd420000000000001cbbfb7c00000000000cb3ffc800000000000cb3ff2800000000000cbbff6200000000000cb3fadc00000000000cbbfed800000000000cbbfa4600000000000cbbff9c00000000000cb3fc9c00000000000cbbff9c00000000000cbbfd2c00000000000cb3fc5800000000000cbbfada00000000000cb3fbd400000000000cb3fe3e00000000000cb3ff3000000000000cb3ff6600000000000cb3fa2c00000000000cbbfece00000000000cb3f96400000000000cb3ff3000000000000cb3fe1400000000000cbbfe6000000000000cbbff3400000000000cb3fd3000000000000cbbfdf200000000000cb3ff6600000000000cbbfd1400000000000cb4000c00000000000cbbfdb000000000000cbbfd8e00000000000cbc003c00000000000cb3fec000000000000cb3fe5200000000000cb3fdaa00000000000cb3fd1c00000000000cbbfb9800000000000cbbfd8400000000000cb3fff400000000000cbbffec00000000000cb3fc8c00000000000cb3fee400000000000cbc006200000000000cb3fdb600000000000cb3fd8c00000000000cb3ff3a00000000000cb3fe4800000000000cb3fd5200000000000cbbfd0e00000000000cbbfea800000000000cb3fbf000000000000cb4004e00000000000cbbfad800000000000cb3fe1800000000000cbbfe2c00000000000cb3fd8000000000000cb3fe2600000000000cb3fea000000000000cb3fcdc00000000000cbbff0e00000000000cbbff3200000000000cbbfca000000000000cb3fbc000000000000cbbfebc00000000000cb3feee00000000000cbbffb600000000000cbbfaf000000000000cbbfc5400000000000cb3ff2000000000000cb3faec00000000000cbbfa8000000000000cbbfed400000000000cb3fef800000000000cbbfe4a00000000000cb3ff2600000000000cbbfd3800000000000cb3fe3a00000000000cbbfd0200000000000cbbff3600000000000cbbff3600000000000cb3ff2c00000000000cbbff7c00000000000cb3ffac00000000000cbbfee200000000000cbbff5a00000000000cbbfeb000000000000cbbfb8000000000000cb3fd3e00000000000cb3fd9400000000000cb3ff8a00000000000cb3fff800000000000cbbfcfe00000000000cb3ff0800000000000cb3fdae00000000000cb3ff2600000000000cb3feb400000000000cbbff1a00000000000cb3ff1a00000000000cbbfe1200000000000cb3fad400000000000cb3ff4600000000000cb3fe2800000000000cb3fe2a00000000000cb3ffb000000000000cbbfdb800000000000cb3ffe200000000000cbbfe5600000000000cb3fe8200000000000cbbff5000000000000cb3fe5400000000000cb3fc9600000000000cb3fa5c00000000000cb3fe9a00000000000cb3ff5a00000000000cbbff4e00000000000cb3fffc00000000000cb3fd0000000000000cb3fd4e00000000000cbbff8c00000000000cb3ff2000000000000cb3fdea00000000000cb3ff4a00000000000cbbfeba00000000000cb3fe4800000000000cb3fd7200000000000cbbfe5000000000000cb3f99400000000000cbc005e00000000000cb3ff0e00000000000cbbff5e00000000000cb3ff6800000000000cb3fffe00000000000cb3fff000000000000cb4000c00000000000cbbfd0c00000000000cbbfabe00000000000cb3fd2e00000000000cbbfd3400000000000cb3fcb000000000000cb3fc4800000000000cbbfdd400000000000cb3ff5600000000000cb4000800000000000cbbfd1000000000000cbc000600000000000cb3ff7c00000000000cbbff0200000000000cbbfdc800000000000cb3fece00000000000cb3ff9a00000000000cb3fe3c00000000000cbbff6200000000000cbbfcb000000000000cbbfe1200000000000cb3fba400000000000cb3ffc600000000000cb3ff8800000000000cb3ffd200000000000cbc00b000000000000cbbfb7400000000000cb3fe9e00000000000cb3f9c000000000000cbbfede00000000000cb3ffc800000000000cb3fe3200000000000cb3fdf800000000000cbbfe1a00000000000cbbff2400000000000cbbff4200000000000cbbfefe00000000000cb3fe9000000000000cb3fe3600000000000cb3fe0800000000000cbbfeca00000000000cb3ff2200000000000cbbff9600000000000cbbff8a00000000000cb3ffcc00000000000cb3fb3c00000000000cbbfb6600000000000cb3ff2600000000000cb3fda800000000000cb3fb7400000000000cbbfe1400000000000cbbfd6400000000000cbbfe6c00000000000cb3feb600000000000cbbfc7800000000000cbbfe1e00000000000cb3fbc600000000000cb3fa0000000000000cb3fd8800000000000cbbffaa00000000000cbbf9e400000000000cb3ff9200000000000cbc007000000000000cb4004600000000000cbbfc2400000000000cbbfd5400000000000cb3ff8000000000000cbbffb200000000000cbbff5a00000000000cb3ff5200000000000cb3fcdc00000000000cb3f85a00000000000cb3fc1c00000000000cb3fe6400000000000cb3ff6c00000000000cb3fb2000000000000cbbff2800000000000cbbfe1600000000000cbbfdee00000000000cbbfd7800000000000cbbff0600000000000cb3fd1200000000000cb3fee400000000000cb3fdf200000000000cbbfd9400000000000cb3fdb200000000000cb3febe00000000000cbbfdfe00000000000cb3fea000000000000cb3fec400000000000cbbfea600000000000cbbff8800000000000cb3fde80000000000001cbbfe9c00000000000cbbfc7800000000000cb3fdea00000000000cb3fea000000000000cbbfdaa00000000000cbbfdb200000000000cb3fd1200000000000cb3fe1e00000000000cb3fe8200000000000cbbff2800000000000cb3fdb600000000000cb3fdd800000000000cbbfeb000000000000cb3fea800000000000cb3fb4c0000000000002cb4003800000000000cb3ff6e00000000000cbbfd9e00000000000cb3fd0600000000000cbbfe1e00000000000cbbff0c00000000000cbbfe9200000000000cb3fec200000000000cb3ff8600000000000cb3fea200000000000cbbfdf000000000000cbbfd6200000000000cb3fb2a00000000000cbbfef200000000000cbbfd8000000000000cbbffa200000000000cbbfdc600000000000cb3fd0000000000000cbbfb7200000000000cb3fc7800000000000cb3fda000000000000cb3fed200000000000cb3fec200000000000cbbfca200000000000cbbf9ec00000000000cbbfdda00000000000cb3fef600000000000cbbfe9400000000000cb3fd1000000000000cb3f66000000000000cb3fe8600000000000cb3fe4800000000000cb3ff1600000000000cb3fcf400000000000cbbff1800000000000cb3fed400000000000cbbfed400000000000cbbfce200000000000cb3fd6000000000000cbbfc6e00000000000cb3fdf200000000000cbbffda00000000000cb3fd5000000000000cb3ff0400000000000cbbff9600000000000cb3fd7000000000000cbbff1e00000000000cbbfe3200000000000cbbfd0e00000000000cb3fe9400000000000cbbface00000000000cb3fb3000000000000cbbfe7e00000000000cb3fa6000000000000cbbffd400000000000cb3fce600000000000cb3fd6a00000000000cbc002400000000000cb3ff9400000000000cbbfec000000000000cbbfdce00000000000cbbfed800000000000cbbfe4600000000000cbbff4400000000000cbbff7a00000000000cbbfd7800000000000cb3fe0200000000000cb3feaa00000000000cb3fb7800000000000cbbff4400000000000cbbfc2400000000000cbbfe5000000000000cb3fc5800000000000cb3fed000000000000cb3ff0600000000000cb3fe6400000000000cbbff2c00000000000cb3fd0200000000000cbbfeec00000000000cbbff0400000000000cbbfed200000000000cbbfd4200000000000cbbfd8c00000000000cb3fb8c00000000000cbc000e00000000000cb3fd4c00000000000cb3fdd400000000000cb3fe2e00000000000cbbfb2000000000000cb3ff2c00000000000cb3fdcc00000000000cb3fe2600000000000cbbfb3000000000000cbbfe8200000000000cbbff4600000000000cb3fe1400000000000cbc000c00000000000cbbff1c00000000000cbbfc4400000000000cbbff8600000000000cb3ff2a00000000000cb3f95c00000000000cbbffc400000000000cb3fd6600000000000cbbfa7200000000000cb3fc3400000000000cb3fa8400000000000cb3fb4000000000000cbbff3000000000000cb3feea00000000000cb3ff5600000000000cbbff0800000000000cb3fef600000000000cb3fea200000000000cb3ff1a00000000000cbbfea000000000000cbbfee400000000000cbbfd0a00000000000cb3ffb600000000000cb3fd2600000000000cbbfd960000000000001cbbfd1e00000000000cbbfd8e00000000000cb3fefc00000000000cb3ff4a00000000000cbbfef400000000000cbbff4000000000000cb3ff8c00000000000cb3fc9e00000000000cb3fc6800000000000cb3f78400000000000cb3fe8800000000000cbbfdd600000000000cb3fd7800000000000cbbfeb600000000000cb3fe4800000000000cbbfd1e00000000000cbbfd9a00000000000cb3fe8a00000000000cb3fc3800000000000cb3fdc600000000000cbbff5000000000000cbbfe8a00000000000cb3fe0400000000000cbbfb8000000000000cb3f34000000000000cb3fa9c00000000000cb3fea400000000000cbbfca000000000000cbbfeea00000000000cbc003e00000000000cb3ff6200000000000cbbfd3e00000000000cb3fc0c00000000000cbbffae00000000000cbbfb1c00000000000cb3fde000000000000cb3ff1400000000000cb3ff3600000000000cb3fee800000000000cb3fe3400000000000cb3fe0200000000000cbbff7e00000000000cbbfc0a00000000000cbbfd8800000000000cbbfde000000000000cbbff7600000000000cbbfd3800000000000cb3fed800000000000cbbfdd800000000000cb3ff2000000000000cbbfd7200000000000cb3fc8000000000000cb3fcde00000000000cb3fffa00000000000cb3ff0e00000000000cb3fe6e00000000000cbbff2200000000000cbbffe800000000000cbbff1c00000000000cb3ffd800000000000cb3fcf400000000000cb3fd1000000000000cbbff3400000000000cbbff3200000000000cbbfd4200000000000cb3fa0c00000000000cb3fc3400000000000cbbfe8400000000000cb3f8c000000000000cb3fdae00000000000cb3ff9e00000000000cbbfe7200000000000cbbfdd800000000000cbbfe6a00000000000cbbfd6600000000000cbbfc2400000000000cbbfee200000000000cb3ffa000000000000cbbfd8400000000000cb3fd8c00000000000cb3ff1400000000000cbbff2e00000000000cbbfbf400000000000cbbfda200000000000cbbfe9400000000000cbbff5a00000000000cb3fe5400000000000cbbfd6400000000000cbbfc8c00000000000cb3ff1200000000000cbbfe7c00000000000cb3fea800000000000cbbfefc00000000000cb3fa1c00000000000cbbff0c00000000000cbbfe5c00000000000cbbff9e00000000000cbbfc3c00000000000cbbfb3e00000000000cb3fde800000000000cbbfebc00000000000cbbff4e00000000000cb3fd1c00000000000cb3feb000000000000cb3f95a00000000000cb3fe0a00000000000cbbfdf400000000000cbbfe7600000000000cbbfc2400000000000cbbff2400000000000cbbff7e00000000000cb3ff0600000000000cb4001c00000000000cbbfe9600000000000cbbfdba00000000000cbbff1800000000000cb3ff1e00000000000cbbfcf200000000000cb3fd9a00000000000cbbff2c00000000000cbbfe1c00000000000cb3feee00000000000cbbfcf200000000000cbbf76000000000000cb3fe7400000000000cb3fd6c00000000000cb3fb5800000000000cb3fece00000000000cbc000800000000000cbbfe4c00000000000cb3febc00000000000cb3fb4a00000000000cb3fe6400000000000cb3fd7600000000000cb3f5a000000000000cbbfd2a00000000000cb3fe5600000000000cb3ff1600000000000cbbfe0400000000000cb3fe2e00000000000cb3fe0400000000000cbbfe0400000000000cb3fe9200000000000cb3fc7800000000000cbbffca00000000000cbbfca000000000000cb3fc4800000000000cbbfc1000000000000cbbfd9a00000000000cb3ff2400000000000cbbfd7600000000000cb3fde200000000000cb3fe6c00000000000cbbfbfe00000000000cb3fe1c00000000000cb3fd8c00000000000cbbfe2800000000000cb3ff3600000000000cb3fbd000000000000cb3f90c00000000000cb3ff2400000000000cbbfff800000000000cbbfe740000000000001cbbfda400000000000cb4000400000000000cbbfeec00000000000cbbfd1400000000000cbbfb6600000000000cb3fbfa00000000000cb3fe7800000000000cbbfd3600000000000cb3fa2000000000000cbbfee200000000000cb3f74000000000000cbbff4400000000000cb3ff2200000000000cbbff6a00000000000cbbfe8c00000000000cbbfd9600000000000cb3fe4c00000000000cbbfafa00000000000cbbff7400000000000cbbfc8800000000000cbbff5000000000000cb3ffc400000000000cbbfdc000000000000cbbff1c00000000000cbbfe5c00000000000cbbff6800000000000cbbfcee00000000000cb3fec800000000000cbbfe5000000000000cb3fbaa00000000000cbbfed000000000000cbbfbba00000000000cb3ff8800000000000cb3fe8800000000000cb3fe4800000000000cb3fa5e00000000000cb3fdfa00000000000cb3fefc00000000000cbbfe4a00000000000cb3fe1800000000000cbbffbe00000000000cb3fda600000000000cb3fc5000000000000cb4007800000000000cb3ff2200000000000cb3f8fc00000000000cbbfe2800000000000cbbfe6c00000000000cb3ff6e00000000000cb3fe9800000000000cbbff3000000000000cb3fb3200000000000cbbff3800000000000cbbfe6e00000000000cbbff5200000000000cbbfd7c00000000000cb3f95000000000000cbbfe1c00000000000cb3fde200000000000cb3fd2400000000000cb3fed800000000000cbbff5e00000000000cbbfc0c00000000000cbbfee000000000000cbbff2e00000000000cb3fc4a00000000000cb3fe8600000000000cbbfee800000000000cb3fcbe00000000000cbbfe3600000000000cbbfce400000000000cb3fda600000000000cbbfdb800000000000cbbfd1a00000000000cbbfd1e00000000000cbbfe2a00000000000cb4003000000000000cbbfef400000000000cb3fe7e00000000000cb3ffe200000000000cb3ff0800000000000cb3fff000000000000cb3fc6c00000000000cb3fd5400000000000cbbfb3600000000000cbbfda200000000000cbbffe800000000000cbbff9200000000000cb3fe4a00000000000cbbff6200000000000cbbfe0600000000000cb3fd3c00000000000cbbfd8a00000000000cb3ff9200000000000cbbff3c00000000000cbbfdba00000000000cb3fa5000000000000cb3f93e00000000000cb3fc2400000000000cb3fc5800000000000cb3fe3c00000000000cbbff2400000000000cbbfa8600000000000cbbfcb400000000000cbbfb2c00000000000cbbfe4c00000000000cb3fd4e00000000000cb3fd1000000000000cbbff9200000000000cb3fe4400000000000cbbfec400000000000cb3fe0200000000000cb3ff4a00000000000cbbff6c00000000000cbbfe9400000000000cbbfed400000000000cbc000c00000000000cb3fea400000000000cb3fe1000000000000cb3ff4a00000000000cbbfd5800000000000cb3fe6600000000000cb3fe5e00000000000cbbff2600000000000cbbfda600000000000cb3fde400000000000cbbf9b000000000000cb3ff4400000000000cbbff4400000000000cb3feaa00000000000cb3fecc00000000000cb3fb1e00000000000cbbfa9a00000000000cbbfefa00000000000cbbff2600000000000cb3fc8800000000000cbbfd8a00000000000cb3ff6200000000000cbbfef600000000000cb3fd7200000000000cb3ff3400000000000cbbfc2000000000000cbbffdc00000000000cb3ff1e00000000000cb3fa2000000000000cbbff1600000000000cbbfeba00000000000cbbfc4400000000000cb3fcae00000000000cb3fdb400000000000cbbfe4a00000000000cb3fd2000000000000cb3ffc600000000000cb3ffac00000000000cbbfd0e00000000000cb3ffac00000000000cb3fea600000000000cbbff8200000000000cbbfeca00000000000cb3ff0a00000000000cb3ffa400000000000cbbfde000000000000cb3fb1000000000000cb3ffd000000000000cb3feea00000000000cbbfb2c00000000000cbbff8600000000000cbbfee400000000000cb3faa400000000000cb3fe2a00000000000cb3ff3400000000000cbbfe2e00000000000cb3ff5a00000000000cb3fe9a00000000000cbbfc5e00000000000cb3fadc00000000000cb3fb8400000000000cb3fdc200000000000cbbfeb800000000000cb3fd0c00000000000cbbfe9000000000000cb3ff7000000000000cbbff9e00000000000cb3fea400000000000cbbff0800000000000cb3fe4400000000000cb3fe1600000000000cbbfb9800000000000cb3fee600000000000cb3fed000000000000cb3fe3400000000000cb3fecc00000000000cbbfba000000000000cbbfc1000000000000aa32393530393133322d3392cb403ecc0e7596d791dc0400cb3fdce00000000000cbbfd9200000000000cb3ff8c00000000000cb3fe2000000000000cbbfe9600000000000cbbfe7400000000000cb3fb8800000000000cb3ff3000000000000cb3fcf400000000000cb3ffcc00000000000cb3ff0a00000000000cbbfe6c00000000000cbbff8c00000000000cb3fe1600000000000cb3fe0a00000000000cb3ff3400000000000cb3fd7a00000000000cb3fdb400000000000cb3ffa000000000000cb3fd9e00000000000cbc000800000000000cb3fc6e00000000000cb4000600000000000cb3ff8c00000000000cbbfbda00000000000cbbfd7200000000000cbbff4600000000000cb3ffd800000000000cbbfe7200000000000cb3feea00000000000cb3fe5c00000000000cb3fe5000000000000cb3fcd200000000000cbbfc4e00000000000cbbfe0200000000000cbbfc4200000000000cbbfecc00000000000cb3fb5200000000000cb3fe5e00000000000cbbff1200000000000cb3ff2800000000000cb3fd5e00000000000cbbff0e00000000000cbbfff600000000000cb3ff9c00000000000cbbff1400000000000cbc003a00000000000cb3fcee00000000000cbbfe5800000000000cbbff1800000000000cbbfe0000000000000cbbfe7400000000000cbbfdbc00000000000cb3fd0800000000000cb3fe9600000000000cbbfefc00000000000cbbfc4400000000000cb3fe7000000000000cbbfa8800000000000cbbfdac00000000000cb3fea400000000000cb3fd6a00000000000cbbff2e00000000000cbbfdea00000000000cb3f93c00000000000cbbfe9600000000000cb3fdc200000000000cb3fe1800000000000cbbfef800000000000cbbfd6a00000000000cb3fd7e00000000000cbbff7e00000000000cb3ffce00000000000cbbfc2200000000000cbbffbe00000000000cbbfd7e00000000000cbbff5200000000000cb3ff3c00000000000cbbfee200000000000cb3fc5a00000000000cb3fd8400000000000cb3fdf000000000000cbc002a00000000000cb3fef800000000000cbbfde400000000000cb3fe5000000000000cbbfd1400000000000cbbfebe00000000000cb3ff1400000000000cbbfafa00000000000cb3f9f800000000000cb3fee000000000000cbbfebe00000000000cbc000e00000000000cb3ff6a00000000000cbbfcc600000000000cbbfa0800000000000cb3fc5200000000000cbbff3600000000000cb3fea800000000000cb3fe3e00000000000cb3fc9600000000000cb3ffaa00000000000cbbfc2200000000000cbbfdae00000000000cb3ff7600000000000cbbfe6800000000000cbbfd4000000000000cbbfd1e00000000000cbbff8a00000000000cbbfd0a00000000000cb3ff4600000000000cb3ffc000000000000cb3ff0600000000000cbbfdf800000000000cb3fed200000000000cbbffd000000000000cb3ff5800000000000cbbfe0600000000000cbbfe2000000000000cb3ff8c00000000000cb3fa0400000000000cb3ff0200000000000cbbfeca00000000000cbbff7e00000000000cbbfdec00000000000cb3fe5600000000000cb3feda00000000000cb3fe2800000000000cbbff9800000000000cb3fa5c00000000000cb3fc4c00000000000cb4002e00000000000cb3f99400000000000cb3ffc400000000000cb3fd4400000000000cb3fb6e00000000000cbbfe9200000000000cbbfea600000000000cb3fed400000000000cb3fe2200000000000cb3fe5400000000000cb3ff1400000000000cbbfd1600000000000cbbfe2200000000000cb3fe3e00000000000cbbfe5400000000000cbbff1800000000000cbbfcda00000000000cb3fe1600000000000cbbff6200000000000cbbfd9000000000000cbbfe3c00000000000cb3fe4600000000000cb3ffe200000000000cb3ffa000000000000cbbfe9c00000000000cb3fea800000000000cbc000200000000000cbbff6000000000000cbbff0a00000000000cb3fa8200000000000cb3ff4600000000000cbbfe7a00000000000cb3fd9200000000000cb3fd1800000000000cb3fb2200000000000cbbff8000000000000cbbfe8a00000000000cb3fed800000000000cb3fe0800000000000cb3ffaa00000000000cb3fe1400000000000cb3ff0600000000000cbbfa4e00000000000cbbfcbe00000000000cbc002800000000000cbbfd0600000000000cb3fe3c00000000000cbbfeb400000000000cbbfe0200000000000cb3ff2a00000000000cb3feaa00000000000cbbff9000000000000cb3fe3800000000000cb3fe1a00000000000cbbff7200000000000cbbfc2c00000000000cb3fd0800000000000cbbff2c00000000000cbbfd6c00000000000cb3ff5600000000000cb3fe8000000000000cbbf28000000000000cbbfe3a00000000000cb3fd2000000000000cbbfb9400000000000cb3fba600000000000cbbfd5e00000000000cb3fe4e00000000000cb3fe9a00000000000cb3ff5e00000000000cb3ff0600000000000cb3fdf400000000000ffcbbfe6e00000000000cb3febe00000000000cbbff3a00000000000cb3fddc00000000000cbbfe1e00000000000cb4002200000000000cbbff3400000000000cb3fd9000000000000cb3fdf600000000000cbbfe3a00000000000cb3fe2800000000000cb3ff0600000000000cb3ff9c00000000000cb3fb4a00000000000cb3febe00000000000cb3fe0e00000000000cbbfef800000000000cb3f8a000000000000cbbff2400000000000cbbfdde00000000000cb3f60000000000000cbbfa4000000000000cb3f90800000000000cb3fcd600000000000cbbfe8200000000000cb3ff1c00000000000cbbfdf400000000000cbbfdb400000000000cb3fd2a00000000000cb3ff0c00000000000cb3fbde00000000000cb3ffd200000000000cb3ff6a00000000000cb3ff2a00000000000cbbfd3600000000000cb3fec600000000000cbbfc5600000000000cb3fe7800000000000cbbff4a00000000000cbbff1a00000000000cb3fe1400000000000cbbff4200000000000cbbfe2400000000000cbbfe8000000000000cb3ff5000000000000cbbf97000000000000cb3ff2c00000000000cb3fc3400000000000cbc000600000000000cbbfecc00000000000cb3fda800000000000cb3fe0200000000000cbbfe4400000000000cbbfac400000000000cbbfec400000000000cbbfa4600000000000cbbfc2c00000000000cbbfe5e00000000000cbbfe0600000000000cbbfd7c00000000000cbbff0600000000000cbbfe5200000000000cb3fefa00000000000cb3fe6600000000000cbbfce800000000000cb3fc8400000000000cbbff2400000000000cb3fa5200000000000cbbfe4800000000000cb3fed600000000000cb3ff4e00000000000cb3ffd400000000000cbbf89000000000000cbbffb600000000000cbbff6e00000000000cb3ff2600000000000cb3fe3e00000000000cbbfd6200000000000cb3ffea00000000000cbbfe1000000000000cb3fb1c00000000000cbbfec400000000000cbbfe3400000000000cbbff880000000000001cb3fd7a00000000000cb3ff2600000000000cbbfee400000000000cb3fccc00000000000cbbfce400000000000cbc003800000000000cbbfdf400000000000cbbfba800000000000cb3ff1a00000000000cb3fcca00000000000cb3ff7a00000000000cb3fb1200000000000cb3ff6e00000000000cb3feba00000000000cbbff6c00000000000cb3fed200000000000cbbfa9a00000000000cb3fb6c00000000000cbbff8c00000000000cb3fda200000000000cbc006200000000000cb3fc5c00000000000cb3f61000000000000cbbfc4000000000000cbbfcec00000000000cb3fed400000000000cb3fdce00000000000cb3ffd000000000000cbbfdd400000000000cbbffda00000000000cb3fe1e00000000000cb3fef800000000000cb3fe8600000000000cbbfc5200000000000cb3f84c00000000000cb3fd7c00000000000cbbfe1000000000000cb3fd3a00000000000cbbfec400000000000cb3ffee00000000000cbbfe7600000000000cbbfb7e00000000000cbbff8c00000000000cb4000600000000000cb3fed400000000000cbbfd3200000000000cbbfc1e00000000000cb3fee200000000000cbbff6a00000000000cb3ff2600000000000cbbffd600000000000cb3fcde00000000000cb3fbce00000000000cbc001c00000000000cb3ff3000000000000cbbfd5000000000000cb3fec800000000000cb3fd6c00000000000cb3fc1600000000000cbbff4400000000000cbbfd5400000000000cbbfe8400000000000cb4003600000000000cbbfc1600000000000cbbfe0200000000000cbbfd7400000000000cb3ff0400000000000cb3fd2200000000000cb3ff1800000000000cbbf8cc00000000000cbbfe4000000000000cbbfe3800000000000cb3fd4c00000000000cb3fe2c00000000000cbbff9200000000000cb3ff6200000000000cbbff4800000000000cbbff0e00000000000cbbfc2000000000000cbbfcf000000000000cb3ff9a00000000000cb3f83a00000000000cb3f93000000000000cb3ff3000000000000cb3fde800000000000cb3ff4800000000000cbbf6cc00000000000cb3feca00000000000cbbffea00000000000cbbff3400000000000cbbfd6e00000000000cb4001600000000000cbbff2600000000000cb3ffde00000000000cb3fda600000000000cbbffb200000000000cbbfdba00000000000cb3fc9000000000000cb3fc2600000000000cb3fe2000000000000cb3ff3000000000000cb3ff8000000000000cbbfeb600000000000cb3fdec00000000000cbbf72000000000000cb3fb7600000000000cbbfc3400000000000cbbfe4400000000000cb3fdbe00000000000cbbfe2800000000000cb3fe9e00000000000cb3ff7e00000000000cb3fe2c00000000000cb3fd8000000000000cb3ff1c00000000000cbbff2200000000000cb3feee00000000000cbbff2600000000000cb3ff7e00000000000cbbff6600000000000cb3ff2a00000000000cb3fe4a00000000000cb3fca400000000000cb3fea800000000000cb3ff2800000000000cbbfef000000000000cb3ff0a00000000000cb3fc2000000000000cbbf7f800000000000cbbff5400000000000cb3fe6600000000000cb3fe4800000000000cb3ff0200000000000cbbfe3000000000000cb3fcf600000000000cb3fc5000000000000cb3fcfc00000000000cb3fd2800000000000cbbffc200000000000cb3fe5c00000000000cbbff8000000000000cb3ff3800000000000cb4001400000000000cb4000c00000000000cb3fe8a00000000000cbbfe8600000000000cb3fef000000000000cb3fd8c00000000000cbbfe7e00000000000cbbfe8000000000000cb3fc5400000000000cb3fe0000000000000cb3fed800000000000cb3ff2600000000000cbbfdca00000000000cbbfff800000000000cb3ff3200000000000cbbff1000000000000cbbfe2600000000000cb3fc9800000000000cb3ff7800000000000cb3fb6c00000000000cbbff7c00000000000cbbfd1800000000000cbbfd1400000000000cbbfe7c00000000000cb4001c00000000000cb3ffde00000000000cb3ff0600000000000cbc004600000000000cbbfe6e00000000000cb3fee800000000000cbbfe4200000000000cbbffaa00000000000cb4006e00000000000cbbf40000000000000cbbf92400000000000cbbfda400000000000cbbff0a00000000000cbbfe8a00000000000cbbfe7c00000000000cb3ff4a00000000000cb3fdf000000000000cb3fe5200000000000cb3fcfa00000000000cb3fe6800000000000cbbff8e00000000000cbbff7800000000000cb3fd7200000000000cbbf97400000000000cbbff0e00000000000cbbfe1c00000000000cb3ff5800000000000cbbfd4200000000000cbbfe9600000000000cbbf7f000000000000cbbfe4e00000000000cb3fdc200000000000cb3ff4800000000000cbbfd2200000000000cb3ff1e00000000000cb3fdd200000000000cb4001200000000000cbc002000000000000cbbfd2000000000000cb3ffee00000000000cbbffec00000000000cb4001c00000000000cbbfc1800000000000cbbfd1c00000000000cb3fe1a00000000000cbbff3600000000000cbbfb1400000000000cb3ff6200000000000cbbfe5400000000000cbbfe1600000000000cbbfb6200000000000cb3fe1a00000000000cb3ff0600000000000cb3fde800000000000cbbfb9800000000000cbbfb4e00000000000cbbfc4e00000000000cbbfb9c00000000000cbbfe7e00000000000cb3fec800000000000cb3fe6400000000000cb3ff7800000000000cbbfbf000000000000cb3fef000000000000cb3fecc00000000000cbbfec000000000000cb3feac00000000000cb3ff2400000000000cbbff9200000000000cbbff5c00000000000cb3fe1e00000000000cb3fdd600000000000cbbffda00000000000cb3ff0e00000000000cbbfd1800000000000cb3fd9600000000000cb3fdc800000000000cbbff8800000000000cb3f8ec00000000000cbbfd5600000000000cb3fe1a00000000000cbbfeda00000000000cb3fea200000000000cb3fdda00000000000cbbfea600000000000cbbfd5e00000000000cb3fb0800000000000cb3ffe600000000000cb3ff9e00000000000cb3fe5200000000000cbbfe2a00000000000cb3feae00000000000cbbfd6800000000000cbbfe0600000000000cbbfe8a00000000000cb3ff1000000000000cb3fee000000000000cb3fe2000000000000cb3fb9000000000000cb3fdac00000000000cbbff1c00000000000cbbfe5600000000000cb3fd5000000000000cbc005800000000000cbbfe7600000000000cbbf80000000000000cbbfc1a00000000000cb3fc0200000000000cb3ff7400000000000cb3fee600000000000cb3fd7600000000000cb3fce800000000000cb3fd2800000000000cb3fad800000000000cb3fe7c00000000000cb3fe7e00000000000cb3fd2000000000000cb3fc4000000000000cb3fdda00000000000cbbfe4e00000000000cb3fef200000000000cb3fdd400000000000cbbfeae00000000000cb3fee400000000000cbbfdb400000000000cbbfe7400000000000cb3ff5000000000000cbbfeb200000000000cb3faa000000000000cbbffda00000000000cbbfa6400000000000cb3fe4000000000000cbbfb5400000000000cb3fc4800000000000cbbfdac00000000000cbbfbe800000000000cbbfd0a00000000000cb3ff4000000000000cbbfbb800000000000cb3fc5c00000000000cb3f9a400000000000cb3fefe00000000000cbbffc400000000000cbbfdb000000000000cb3fcc600000000000cbc004e00000000000cb3feb600000000000cbbfe1600000000000cbbfede00000000000cb3fd3e00000000000cbbfebe00000000000cbbfeba00000000000cbbffca00000000000cb3f99000000000000cb3fbc800000000000cb3fdf200000000000cb3ff3a00000000000cbbffd800000000000cb3fb0600000000000cb3fe8a00000000000cb3fe6a00000000000cb3fcc000000000000cb3ff0600000000000cb3ff3200000000000cbbff2e00000000000cb3ff9400000000000cbbff8200000000000cbbfe4c00000000000cbbfe1800000000000cbbfd7200000000000cbbfe1400000000000cbbfd9800000000000cbbff2400000000000cb3fe7000000000000cb3fe2800000000000cb3fdea00000000000cbbfc8200000000000cb3fe4000000000000cbbfe5c00000000000cb3fe7c00000000000cb3faa800000000000cbbfe0400000000000cbbfcc400000000000cb3fce200000000000cbbfff600000000000cb3fe1c00000000000cb3fe2800000000000cbbff2400000000000cb3fe2a00000000000cbbfd8800000000000cbbfff200000000000cb3fd5a00000000000cbbfd9600000000000cbbf97c00000000000cbbf6b000000000000cb3fc2800000000000cbbfa8c00000000000cb3fd9600000000000cb3ff1e00000000000cbbff8e00000000000cb3fe9400000000000cbbfd3a00000000000cb3ff0600000000000ffcbbfcf000000000000cbbfd4000000000000cb3fefa00000000000cbbfc3400000000000cbbfee400000000000cb3fe5e00000000000cbbfe5e00000000000cbbf63800000000000cb3ff1c0000000000001cbbfe4400000000000cbbfdb400000000000cb3ffa000000000000cbbfe5c00000000000cbbfc0e00000000000cb3fcd600000000000cb3fef800000000000cbbfddc00000000000cb3ff0800000000000cbbfc4600000000000cb3fd6000000000000cbbfe8000000000000cbbfe9e00000000000cbbfe0e00000000000cbbfc9600000000000cb3ff1200000000000cbbfec200000000000cbbfaa200000000000cbbfee000000000000cbbfe5600000000000cbbfacc00000000000cb3fd3400000000000cb3fdbe00000000000cb3faf400000000000cbbfee400000000000cbbffd200000000000cb3fd4e00000000000cbbfd0e00000000000cbbfcec00000000000cbbff8600000000000cbbfca000000000000cb3ff0200000000000cb3faf400000000000cb3fd3a00000000000cb3fef000000000000cb3fee000000000000cb3fbb800000000000cbbfec800000000000cb3fc0a00000000000cbbfd7800000000000cbbfbec00000000000cbbff3400000000000cbbff1a00000000000cb3ff5000000000000cbbff0400000000000cb3ff4000000000000cb3f98000000000000cb3fe8e00000000000cbbfd0600000000000cb4008200000000000cb3ff1600000000000cbbfd1400000000000cbbfbde00000000000cbbfea400000000000cbbfdc800000000000cb3fa3000000000000cbbfeec00000000000cb3fa3c00000000000cb3fbbe00000000000cbbfeea00000000000cb3f73000000000000cbbff3200000000000cbbff0a00000000000ffcbbfbf200000000000cbbfe6c00000000000cb3ffa600000000000cbbfeac00000000000cbbfd2e00000000000cbbff1800000000000cbbff2600000000000cb3fe1000000000000cbbfe2800000000000cb3ff7c00000000000cbbff0c00000000000cbbfd2e00000000000cb3ff2000000000000cbbffda00000000000cb3ffb400000000000cb3fb8a00000000000cbbfee400000000000cbc002000000000000cb3fa3200000000000cbbfe2600000000000cbbfdfa00000000000cb3fe2e00000000000cbbfdcc00000000000cbbfd6e00000000000cbbff3a00000000000cbbff3e00000000000cbbfe0c00000000000cbbff3200000000000cbbfeca00000000000cb3fb7600000000000cb3fd9c00000000000cb3fc7a00000000000cbbff8200000000000cbbfdc800000000000cb3feac00000000000cb3fc6400000000000cbbfd1e00000000000cb3fd6800000000000cbbfe9c00000000000cbbffc000000000000cbbff0800000000000cbbff5400000000000cbc006600000000000cb3fef800000000000cb3ff8000000000000cbbff0e00000000000cbbfd7600000000000cbbfef000000000000cb3ff8800000000000cb3fe8400000000000cb3ff3000000000000cbbfb3800000000000cb3fa6600000000000cbbfcb400000000000cbbf6e000000000000cb3faf600000000000cb3fd4000000000000cb3fd3200000000000cbbfbcc00000000000cb3feda00000000000cbbff1000000000000cbbff6e00000000000cb3f95000000000000cbbff4000000000000cb3ff1400000000000cbbfb0000000000000cbbfd0600000000000cbbfd9c00000000000cb3fbcc00000000000cb3ffa800000000000cbbfd9400000000000cb3fe5200000000000cb3fe1600000000000cbbfcbc00000000000cb3ff1800000000000cb3fd2000000000000cbbfeec00000000000cbbff5400000000000cbbfdce00000000000cbbff2800000000000cbbfdb200000000000cb3ffde00000000000cb3fe8200000000000cb3fec400000000000cb3fef400000000000cb3fb0400000000000cb3ff5600000000000cbbfcbc00000000000cbbfc1600000000000cb3fdcc00000000000cb3fb7c00000000000cb3fe5000000000000cb3fe1200000000000cbbff2000000000000cbbff1600000000000cb3fba200000000000cb3fc5000000000000cb3ffc600000000000cbbfe6400000000000cb3f80000000000000cb3fcc000000000000cb3fc4400000000000cbbfcf400000000000cb3fe5200000000000cbbff3200000000000cbbfe2a00000000000cb3fdf000000000000cbbfba200000000000cb3ff3800000000000cbbfee000000000000cb3fe0c00000000000cb3fdd800000000000cb3fee000000000000cbbfcac00000000000cbbfe8c00000000000cbbfd8000000000000cbbfd4e00000000000cb3ffb400000000000cbbfc3600000000000cb3fd2800000000000cbbfd3000000000000cb3faea00000000000cbbfe0800000000000cb3fd7a00000000000cbbf96600000000000cb3fb8200000000000cbbfe6800000000000cb3fe8200000000000cb3ffb800000000000cbbfca200000000000cb3fcf400000000000cbbfcec00000000000cb3fd8e00000000000cb3ff7400000000000cbbff3e00000000000cbbff0c00000000000cbbff3000000000000cb3fcb600000000000cb3fd1800000000000cb4002000000000000cb3fe4600000000000cb3feca00000000000cb3fd4600000000000cbbfe1a00000000000cb4003400000000000cb3ffdc00000000000cbbfdfa00000000000cbbfd4200000000000cbbfcc400000000000cbbfe2200000000000cbbffe800000000000cbbfc3a00000000000cb3fd9a00000000000cb3fc6e00000000000cbbfd4400000000000cbbfc8200000000000cb3ff2800000000000cbbfe4c00000000000cbbfe4e00000000000cbbfeee00000000000cbc002e00000000000cb3fc9a00000000000cb3fe3a00000000000cb3fde000000000000cb3fc0a00000000000cbbfe9200000000000cbbfe6000000000000cb3fd2000000000000cbbff1800000000000cb3fdc200000000000cb3fdfc00000000000cbbfecc00000000000cb4003c00000000000cbbfefa00000000000cb3fc7000000000000cb3ff7c00000000000cb3fe6600000000000cb3ff6000000000000cb3fc0a00000000000cb3fed600000000000cb3fbe200000000000cb3fc3e00000000000cbbffd200000000000cbbffca00000000000cbbfed800000000000cbbff3a00000000000cbbfcb200000000000cb3ff1200000000000cb3fe4200000000000cb3feb400000000000cbbffa000000000000cbbfeca00000000000cb3fcee00000000000cbbfe1800000000000cb3fc3c00000000000cb3feb600000000000cb3ffc800000000000cbbfb4800000000000cbbfe4200000000000cb3ff1800000000000cb3ff0a00000000000cbbfe4c00000000000cb3fe8200000000000cb3fe2600000000000cbbff2e00000000000cb3fd7c00000000000cbbff0c00000000000cb3fe2000000000000cb3fed800000000000cbbfe9a00000000000cbbfc9200000000000cb3fd8800000000000cbbff3200000000000cb3fe8800000000000cb3fe6000000000000cb3fe8600000000000cbbfdfe00000000000cb3feb000000000000cb3fb3000000000000cbbff9e00000000000cb3fbe800000000000cb3ff1e00000000000cb3fdb200000000000cb3ff2600000000000cbbfff400000000000cb3fea600000000000cb3ffd400000000000cb3f84000000000000cbbfda800000000000cbbfe6a00000000000cbbffec00000000000cbbf81000000000000cbbfd6800000000000cb3ff1400000000000cbbffdc00000000000cbbfc9e00000000000cb3fe2c00000000000cb3face00000000000cbbff0e00000000000cbbfddc00000000000cb3ff8400000000000cbbff6a00000000000cbbff5e00000000000cb3fc4800000000000cb3fe7200000000000cb3ff0800000000000cbbfc2c00000000000cb3ff3c00000000000cb3ffec00000000000cb3ffd800000000000cbbfeca00000000000cb3fd3400000000000cb3fb9800000000000cbbffac00000000000cb3fd0800000000000cb3fdb600000000000cb4003c00000000000cbbfe4800000000000cbbfcca00000000000cb3ff5200000000000cb3fbd800000000000cbbfdb800000000000cbbfd7c00000000000cbbfd6400000000000cb3fa4000000000000cb3ff8000000000000cb3ff1800000000000cb3fdfc00000000000cb3ff4800000000000cb3fede00000000000cb3fdbc00000000000cb3fe2600000000000cb3fe1200000000000cbbfb9c00000000000cbbfe7400000000000cb3fe3800000000000cb3fd5600000000000cb3ff7000000000000cbbffe600000000000cb3fee200000000000cbbff5200000000000cb3fe8600000000000cb3fc9000000000000cb3fd6a00000000000cb3fe7a00000000000cb3ff6a00000000000cb3ff3800000000000cb3fe4a00000000000cbbfef800000000000cbbfc1a00000000000aa32393530393133322d3492cb403f77519f6243b4dc0400cbbfd2000000000000cb3fdcc00000000000cb3feaa00000000000cb3fe9800000000000cbbfe9000000000000cbbfc2200000000000cbbfb5e00000000000cb3fe2200000000000cb3ff9a00000000000cb3fd3000000000000cb3ff7000000000000cb3fd0e00000000000cbbff1000000000000cb3fd5000000000000cb3fe1c00000000000cb4000600000000000cb3ff6a00000000000cb3fc6e00000000000cb3fe8600000000000cb3ff5e00000000000cbc003c00000000000cbbfd7c00000000000cb3ff4c00000000000cb3ff0a00000000000cb3fe0000000000000cbbfa1200000000000cbbfc8400000000000cb3ff4200000000000cbbfd7e00000000000cb3feac00000000000cbbfa7c00000000000cb3ff4400000000000cbbfd4800000000000cbbfe9200000000000cbbfe5400000000000cbbfe4000000000000cbbfd3c00000000000cb3fb3400000000000cb3ff0e00000000000cbbfe5a00000000000cb3ff1200000000000cbbfb1600000000000cbbfe2400000000000cbbffde00000000000cb3ffca00000000000cbbf9c200000000000cbbfeb800000000000cb3fe1e00000000000cbbff7600000000000cbbff0600000000000cbbfe3c00000000000cbbfc3000000000000cb3fcec00000000000cbbfc9200000000000cb3fecc00000000000cbbff9a00000000000cb3fe2800000000000cb3fe3000000000000cb3fcca00000000000cbbfb8800000000000cb3fe1600000000000cb3fe5c00000000000cbbfeb800000000000cbbfd5a00000000000cb3fcbe00000000000cbbfe7200000000000cb3fd0000000000000cb3fd0200000000000cbbff8c00000000000cb3fb6e00000000000cb3fd3800000000000cbbffb200000000000cb3fe3800000000000cb3ff2000000000000cbbff8a00000000000cbbfe0800000000000cbbfe7400000000000cb3fe1a00000000000cbbfd6200000000000cbbfc0a00000000000cb3fee000000000000cb3fd3400000000000cbc005400000000000cb3ff6200000000000cbbfdc000000000000cbbfece00000000000cbbff1800000000000cbbf72000000000000cb3ff5a00000000000cb3ff1200000000000cbbfd0800000000000cb3fcf800000000000cbbfedc00000000000cbbff2800000000000cb3ff2800000000000cb3fa5600000000000cbbfd0200000000000cb3fb7c00000000000cbbfe0000000000000cb3fefe00000000000cb3fe7800000000000cbbfc5600000000000cb4001a00000000000cbbfd2000000000000cbbfad800000000000cb3ffc400000000000cbbfebc00000000000cbbfe7600000000000cb3faf000000000000cbbff4200000000000cbbfe3400000000000cbbfa3c00000000000cb3ff6a00000000000cb3ff4c00000000000cb3fef400000000000cb3ffca00000000000cbbff4e00000000000cb3fe7400000000000cbbfe9000000000000cbbff2e00000000000cb3ffd400000000000cb3fc2c00000000000cb3fdba00000000000cb3faa200000000000cbc002600000000000cb3fd9600000000000cb3fe2e00000000000cb3fdca00000000000cb3fe5000000000000cbc001000000000000cb3fe7000000000000cb3fc7400000000000cb4009400000000000cb3fc2000000000000cb3ffda00000000000cbbfc5a00000000000cb3fe2e00000000000cbbfef000000000000cb3fb8800000000000cb3ffaa00000000000cb3fe7200000000000cb3fee000000000000cb3feca00000000000cbbff8c00000000000cbbff1c00000000000cb3ff4200000000000cbbfe6200000000000cbbfe3c00000000000cbbfdf600000000000cbbfc0400000000000cbbff2600000000000cbbfda400000000000cbbff6600000000000cb3fe6a00000000000cb3ffa800000000000cb3fda000000000000cbbfd1400000000000cb3ff7200000000000cbbff2c00000000000cbbff2a00000000000cbbff0e00000000000cb3fe1a00000000000cb4000a00000000000cbbff6000000000000cb3fe1600000000000cb3fe8e00000000000cbbfd7a00000000000cbbfc3800000000000cbbfff000000000000cb3fe9e00000000000cb3fb0600000000000cb3ff7200000000000cb3fece00000000000cb3fe0200000000000cbbfad800000000000cbbfe0c00000000000cbbffbe00000000000cbbfebc00000000000cb3fec800000000000cbbfe8a00000000000cbbfdf400000000000cb3fe1400000000000cb3feac00000000000cbbff0400000000000cbbfda000000000000cb3fe4400000000000cbbfff000000000000cb3fcf000000000000cb3fc2600000000000cbbff4000000000000cb3f97200000000000cb3ffd000000000000cb3fe2400000000000cb3fae800000000000cbbff2e00000000000cbbfe4600000000000cbbfdf800000000000cbbfe8800000000000cbbff7200000000000cb3fc0e00000000000cb3fe5e00000000000cb3fe3800000000000cb3fddc00000000000cbbfe0e00000000000cbbfe0200000000000cbbfe9800000000000cb3fe7a00000000000cbbfdcc00000000000cbbfd9800000000000cbbff2000000000000cb3ff8000000000000cbbfd6000000000000cb3fc1200000000000cb3fdce00000000000cbbfc1600000000000cb3fcbc00000000000cb3fd4000000000000cb3fe9800000000000cbbfc5600000000000cb3fec800000000000cb3ff0400000000000cbbfd2600000000000cbbfb5600000000000cbbff5e00000000000cbbfd0600000000000cbbfd0200000000000cbbfb6600000000000cbbfde400000000000cb3fe5600000000000cbbfe3000000000000cb3fe0200000000000cb3fe8600000000000cb3f8ba00000000000cb3fa6c00000000000cb3feac00000000000cb3fcec00000000000cb3fe3a00000000000cb3fec800000000000cb3fdaa00000000000cbbfe2200000000000cb3ff0800000000000cb3fd6200000000000cb3fcd000000000000cbbff6a00000000000cbbff7800000000000cbbfc3000000000000cbbff3800000000000cbbfd1e00000000000cbbfe6000000000000cb3ff6200000000000cb3fddc00000000000cb4000c00000000000cb3ff1e00000000000cbc003800000000000cbbfe6200000000000cb3fe1600000000000cb3fdd600000000000cbbff5e00000000000cb3fdd200000000000cbbfe8000000000000cb3fc6200000000000cbbfed200000000000cbbff5000000000000cbbfde200000000000cb3fc2e00000000000cbbfffa00000000000cb3fbd400000000000cb3fd8c00000000000cb3ff1200000000000cbbfef600000000000cb3fe1a00000000000cbbfe9a00000000000cbbfbe200000000000cbbfeb200000000000cb3ff0800000000000cb3ff0e00000000000cb3ffc000000000000cb3fe2400000000000cbbfff000000000000cbbfe5400000000000cb3ffa800000000000cb3fe0c00000000000cb3fb9400000000000cb3ff2600000000000cb3fc8600000000000cbbfe4c00000000000cbbff6a00000000000cbbffc400000000000cbbff8400000000000cbbfa4000000000000cb3fe4200000000000cb3ff6200000000000cbbfef600000000000cb3fd5800000000000cb3fdc000000000000cbc003200000000000cbbfe8a00000000000cbbfa6c00000000000cb3fede00000000000cbbfaea00000000000cb3fe9c00000000000cbbfd6c00000000000cb3ffc200000000000cb3ffb600000000000cbbff4400000000000cb3fe1c00000000000ffcbbfca400000000000cbbff7e00000000000cb3fd1c00000000000cbc003c00000000000cb3fe9400000000000cbbfcf200000000000cbbfd9a00000000000cbbfcaa00000000000cb3fdc400000000000cb3ff3a00000000000cb3fe9a00000000000cb3fd8000000000000cbbff7400000000000cbbfd4a00000000000cb3ff3600000000000cb3fd8000000000000cbbfe4a00000000000cbbfdd400000000000cbbfb5e00000000000cbbfebe00000000000cb3fe8c00000000000cbbfd5a00000000000cb3ff8e00000000000cbbfdc200000000000cbbfdb800000000000fecb3feb800000000000cb3fd5400000000000cbbfc0800000000000cbbfa7600000000000cbbfc6800000000000cb3fc5e00000000000cb3ffca00000000000cbbff8800000000000cb3ff0a00000000000cb3ff0800000000000cbc002c00000000000cb3ff6a00000000000cb3ff0a00000000000cb3fc7a00000000000cb3fdf000000000000cbbfdea00000000000cbbfe0800000000000cb3fb6600000000000cb3fd3400000000000cb4004a00000000000cbbfb3c00000000000cbbfcce00000000000cb3fc0e00000000000cb3fe9000000000000cb3fb4400000000000cb3fd2800000000000cb3fdf200000000000cbbfe7400000000000cbbfe7000000000000cbbfcec00000000000cb3fc0c00000000000cbbff9000000000000cb4001e00000000000cbbffe800000000000cbbfc5000000000000cbbfcc200000000000cbbf85600000000000cb3fd4e00000000000cbbfd4c00000000000cbbfe4400000000000cb3ff5c00000000000cb3fe7600000000000cb3fe5e00000000000cbbfdaa00000000000cb3fe1200000000000cbbffc200000000000cbbffa400000000000cbbff3e00000000000cb3ffe800000000000cbbff5200000000000cb4003000000000000cbbfebe00000000000cbbffc800000000000cbbfcd600000000000cbbfe5000000000000cb3fe1a00000000000cb3fae200000000000cb3ffb200000000000cb3ff2600000000000cbbfe8800000000000cb3fdbc00000000000cbbfc6000000000000cb3ff4200000000000cbbfd7200000000000cbbffa400000000000cb3fe7c00000000000cb3f9dc00000000000cbbfe7e00000000000cb3fefc00000000000cb3febc00000000000cb3fe6000000000000cb3ff2400000000000cbbfe1a00000000000cb3feb400000000000cbbfebc00000000000cb3ff3a00000000000cbbfdb200000000000cb3ff1000000000000cb3fd3400000000000cb3fc1c00000000000cb3fe2800000000000cb3fe7800000000000cbbfe8000000000000cb3ffe200000000000cb3fb2400000000000cb3fc9600000000000cbbff9800000000000cb3fd6200000000000cb3fdae00000000000cb3fe5200000000000cbbfe1a00000000000cb3fd8c00000000000cbbfcd000000000000cbbf98000000000000cbbfe3c00000000000cbbffec00000000000cbbf5f000000000000cbbff6400000000000cb3ff9800000000000cb3ff2000000000000cb3ff6800000000000cb4000e00000000000cbbff3000000000000cbbfacc00000000000cbbfd0c00000000000cbbfbc400000000000cbbf8f000000000000cb3fe6a00000000000cb3ff1600000000000cb3ff5a00000000000cb3ff6600000000000cbbfc9c00000000000cbbffb200000000000cb3ffa600000000000cbbffa200000000000cbbfeb400000000000cb3fe0e00000000000cb3fe6e00000000000cb3fedc00000000000cbbff8600000000000cbbfe9e00000000000cb3fc2800000000000cbbff0600000000000cb4005400000000000cb4001000000000000cb3fe6a00000000000cbc001a00000000000cb3f90800000000000cb3ffa400000000000cbbfd0e00000000000cbbfff800000000000cb4009200000000000cbbfbfc00000000000cb3fe5a00000000000cb3fd4200000000000cbbfd2600000000000cbbff6600000000000cb3fd0200000000000cbbfc0000000000000cb3fe9e00000000000cb3fbd200000000000cbbfa4000000000000cb3fe8400000000000cbbff6800000000000cbbffa600000000000cb3fe3e00000000000cbbfd8400000000000cbbfea600000000000cb3fd5000000000000cb3fe6400000000000cb3fe0e00000000000cbbfe2000000000000cbbfdb200000000000cbbffa600000000000cb3fed600000000000cb3fdb400000000000cbbfdf200000000000cb3fe4e00000000000cb3fdc000000000000cb3ff1800000000000cbbffac00000000000cbbfe3000000000000cb3ffd800000000000cbc001200000000000cb4005400000000000cbbfb2800000000000cbbfcb800000000000cb3fdea00000000000cbc000800000000000cbbff5800000000000cb3ff8e00000000000cbbfe4800000000000cbbfe6c00000000000cbbfdec00000000000cbbfc8400000000000cb3ff9c00000000000cb3fdca00000000000cbbfdf400000000000cb3fcda00000000000cbbfe4800000000000cbbfc7000000000000cbbfe3e00000000000cb3fdaa00000000000cbbfcfa00000000000cb3fe7400000000000cb3fd0000000000000cbbfbd600000000000cb3ff6a00000000000cbbff5000000000000cb3fde400000000000cb3fe7c00000000000cbbffdc00000000000cbbff5600000000000cb3fea200000000000cb3fd5200000000000cbbfe7800000000000cbbfd7a00000000000cb3fc5a00000000000cb3fe4000000000000cbbfb6e00000000000cbbff5800000000000cbbfe0600000000000cbbfde800000000000cbbfd4c00000000000cbbfcaa00000000000cb3fd5400000000000cb3fe1200000000000cbbfe0400000000000cb3fa8400000000000cb3fd8e00000000000cb3ffb200000000000cb3ffe400000000000cb3fd5c00000000000cbbfe7c00000000000cb3ff1600000000000cb3fb5c00000000000cbbff2a00000000000cbbfe8600000000000cb3ffa200000000000cb3fe7600000000000cbbfc8400000000000cb3fb2e00000000000cbbfa5400000000000cbbffc600000000000cbbfe4000000000000cbbfae200000000000cbbffb600000000000cb3fc7000000000000cbbf9f200000000000cb3fd9e00000000000cbbfa3800000000000cb3ff6a00000000000cb3ff2600000000000cb3fd7a00000000000cbbfe6800000000000cb3ff0800000000000cbbfdce00000000000cb3fe9e00000000000cb3fadc00000000000cb3ff8e00000000000cbbff6600000000000cb3fb4c00000000000cbbff8200000000000cb3ff6600000000000cb3ff1800000000000cbbff3c00000000000cb3feb000000000000cbbff7800000000000cb3fe2200000000000cb3feea00000000000cbbfa0600000000000cbbfbdc00000000000cbc000600000000000cb3fc5a00000000000cb3feee00000000000cbbff5c00000000000cb3fbba00000000000cbbff0200000000000cbbfe3800000000000cb3fe1400000000000cb3feb200000000000cb3fd4a00000000000cb3fce400000000000cbbfa7a00000000000cb3fc1600000000000cbc000c00000000000cbbfd1600000000000cb3fe3800000000000cbc006600000000000cb3fe7e00000000000cbbfde000000000000cbbfeb000000000000cb3fc8600000000000cbbff4600000000000cbbff9600000000000cbbffe400000000000cb3fae000000000000cb3ff6c00000000000cb3fe1a00000000000cb3ff7400000000000cbbff9800000000000cbbfdc400000000000cb3fe0c00000000000cb3fe9200000000000cb3fed800000000000cb3fe1600000000000cb3ffe400000000000cbbff4c00000000000cb3ff9c00000000000cbbffd400000000000cbbff7200000000000cbbfe6600000000000cb3fb7a00000000000cbbfee000000000000cbbfbdc00000000000cbbff8400000000000cbbfe0c00000000000cb3fda600000000000cb3fdc800000000000cb3fdf400000000000cb3fe9800000000000cb3fc8800000000000cb3feb400000000000cbbff6a00000000000cbbfe0800000000000cbbff1800000000000cb3fc6c00000000000cbc001600000000000cbbfdbc00000000000cb3fcca00000000000cbbffa200000000000cb3fc8a00000000000cbbfd6400000000000cbc000800000000000cb3fd6600000000000cb3f54000000000000cbbfe4e00000000000cb3fd1a00000000000cb3fbcc00000000000cbbfdaa00000000000cb3fcea00000000000cb3ff7000000000000cbc002200000000000cb3fd0a00000000000cb3fe8000000000000cb3ff5a00000000000cbbfca800000000000cbbfb0200000000000cb3fd5a00000000000cb3fe6800000000000cb3fc1400000000000cbbfc9400000000000cb3fef000000000000cb3fc1000000000000cbbff2800000000000cb3ffaa00000000000cb3fe9800000000000cbbfcce00000000000cbbfed200000000000cb3ffac00000000000cbbff0a00000000000cbbfee200000000000cb3fc4400000000000cb3ff6200000000000cbbfe0800000000000cb3ff5600000000000cbbfef800000000000cb3feb000000000000cbbfd2600000000000cbbfe9400000000000cbbfcf400000000000cbbfe3400000000000cb3fda600000000000cbbfcd800000000000cbbfbe400000000000cbbfe6a00000000000cbbfe4400000000000cbbfec600000000000cb3fda000000000000cbbfc8e00000000000cbbfd9e00000000000cbbfee800000000000cbbff7800000000000cb3fb8600000000000cbbfd9000000000000cb3fad600000000000cbc000400000000000cb3fe0a00000000000cb3ffa000000000000cb3fb9200000000000cb3fe9000000000000cb3ff4a00000000000cb3ff3600000000000cb3fd4400000000000cbbff6800000000000cb3fea600000000000cbbfce200000000000cbbfe5400000000000cbbff2200000000000cbbfdae00000000000cb3ff2200000000000cbbff3c00000000000cb4000600000000000cb3fe0200000000000cb3fe1c00000000000cbbfd8c00000000000cb4002e00000000000cb3ff3000000000000cbbfd3e00000000000cbbfeaa00000000000cbbfe0400000000000cbbff3400000000000cb3ff7200000000000cb3fd2800000000000cbbf8ae00000000000cbbfcee00000000000cbbfe6c00000000000cbbff5200000000000cbbfe3e00000000000cbbfda400000000000cbbfeb400000000000cbbff7400000000000cbbfe8200000000000cb3fe0e00000000000cbbffb000000000000cbbfd4a00000000000cbbfec800000000000cbbff3000000000000cbbfc5e00000000000cbbff8e00000000000cb3ff4c00000000000cbbff2e00000000000cb3fd4200000000000cb3ffb600000000000cbbff1000000000000cb3ff3800000000000cbbff2e00000000000cbbfe3c00000000000cbbff4a00000000000cb3fcd400000000000cb3fbfa00000000000cbbfe6a00000000000cb3f79000000000000cbbfe6000000000000cbbfab200000000000cbbfe7400000000000cbbfe4c00000000000cbbfe1c00000000000cbbff0a00000000000cbbfeb600000000000cb3fc3a00000000000cbbff4c00000000000cbbfb1800000000000cbbffb400000000000cbbfda400000000000cb3ff2000000000000cbbfbb400000000000cbbfc9400000000000cb3fe6a00000000000cb3f91600000000000cbbff0e00000000000cbbfe9e00000000000cbbff2400000000000cbbffda00000000000cb3fdcc00000000000cb3ff1e00000000000cbbff9400000000000cbbfe6c00000000000cbbfe0400000000000cb3ff6e00000000000cb3fe8c00000000000cb3fe9000000000000cbbfc4400000000000cb3fcee00000000000cbbfd1200000000000cb3fd4a00000000000cb3fd4800000000000cb3fd6400000000000cb3fe4600000000000cbbfdaa00000000000cb3ff0800000000000cbbfe7a00000000000cbbff2e00000000000cb3fe8400000000000cbbfc4e00000000000cb3fe4400000000000cbbfe3000000000000cb3fbaa00000000000cbbfeee00000000000cb3fe1200000000000cb3ff3400000000000cbbfe4200000000000cb3fec000000000000cb3fcb000000000000cbbff4c00000000000cb3ffee00000000000cb3fe0000000000000cbbfec400000000000cbbf4c000000000000cbbfd6000000000000cbbfeda00000000000cbbfebe00000000000cb3ffde00000000000cb3fe0800000000000cbbfda200000000000cb3ff7200000000000cbbfc4a00000000000cb3ff0800000000000cb3fb4800000000000cbbfd4000000000000cbbff3400000000000cbbfd6c00000000000cb3fd6000000000000cb3fdc000000000000cbbff1600000000000cb3fc4200000000000cb3fed800000000000cbbfdd800000000000cb4000800000000000cbc000a00000000000cbbfdbc00000000000cbbfd2a00000000000cb3fda000000000000cb3fd5e00000000000cb3fdc400000000000cbbff2e00000000000cbbfedc00000000000cb3fde400000000000cbbfe1c00000000000cb3fe9800000000000cbbff2200000000000cbbfd3200000000000cb3fdfc00000000000cb3fe7000000000000cbbfdd600000000000cbbfe0e00000000000cbbfe9800000000000cbbff9000000000000cb3ff8e00000000000cbbffc200000000000cb3fd2a00000000000cbbff0800000000000cbbfe8c00000000000cbbfe9400000000000cb3fdf200000000000cbbfe2400000000000cb3fe0600000000000cbbfe1200000000000cbbfdc600000000000cb3ffac00000000000cbbfd6a00000000000cb3fdaa00000000000cbbfab200000000000cb3fe9800000000000cb3ffd800000000000cbbfe1600000000000cbbfe1800000000000cbbff1800000000000cb3fd4a00000000000cb3fafc00000000000cb3ffb800000000000cb3fee200000000000cb3feaa00000000000cb3fc0400000000000cbbfe9600000000000cb4000800000000000cb3feb400000000000cb3fa3400000000000cbbfe7c00000000000cbbfe3400000000000cbbfe3800000000000cbbff1000000000000cbbfe3a00000000000cbbfe1e00000000000cb3fd2600000000000cbbfe5c00000000000cb3fe2600000000000cb3fe5200000000000cbbfe5200000000000cbbfe4200000000000cbbff2800000000000cbc003600000000000cbbfec800000000000cb3fd0800000000000cbbf9be00000000000cb3fde800000000000cbbfeb400000000000cb3fb6e00000000000cb3fc4e00000000000cbbfe5800000000000cbbfe4a00000000000cb3fdc800000000000cbbfb2200000000000cb3ffe200000000000cbbff6000000000000cb3feac0000000000002cb3ff2e00000000000cb3ffb000000000000cb3fe9000000000000cb3fe7600000000000cb3fcbc00000000000cbbfc4000000000000cbbffe600000000000cbbfff000000000000cbbfdee00000000000cbbfec000000000000cbbfdae00000000000cb3fe5800000000000cb3fd3c00000000000cbbfb7a00000000000cbbffb000000000000cbbfe0400000000000cb3ff7400000000000cbbfe3a00000000000cbbfd9800000000000cb3fe2800000000000cb3fe2c00000000000cbbfc7e00000000000cb3fd3e00000000000cbbfc6200000000000cb3ff0200000000000cbbff5200000000000cb3fee600000000000cb3ff7c00000000000cbbfed800000000000cb3fed200000000000cbbfe5600000000000cb3fdd400000000000cb3ff1200000000000cbbfe4400000000000cb3fd4200000000000cbbfe1200000000000cbbffc600000000000cb3ff0600000000000cb3fef600000000000cb3fef000000000000cbbff2000000000000cb3fe3000000000000cbbfcfe00000000000fecbbfea200000000000cb3fe6c00000000000cbbfce400000000000cb3ffae00000000000cbbff2400000000000cb3fa9200000000000cb3ffb400000000000cbbfd0600000000000cbbfe4400000000000cbbff9e00000000000cbbfee200000000000cbbfeb400000000000cbbfe3600000000000cb3ff5200000000000cbbff5e00000000000cb3fc7000000000000cb3ff0e00000000000cb3fc7c00000000000cbbfeb000000000000cb3fd2600000000000cb3fad200000000000cbbff8400000000000cbbff4000000000000cb3fcd000000000000cb3fc8000000000000cbbfd7c00000000000cbbfb8a00000000000cb3fe4400000000000cb3ff0600000000000cb4004600000000000cbbfe8600000000000cb3fecc00000000000cb3fe7c00000000000cbbffd000000000000cb3fd4c00000000000cb3fe7a00000000000cb4001400000000000cb3f8bc00000000000cbbfe7600000000000cb3ff7200000000000cb3fefc00000000000cbbfe3200000000000cbbfce600000000000cbbfe3800000000000cb3fe6800000000000cb3ff0c00000000000cb3ff0c00000000000cb3fe5800000000000cb3fe7a00000000000cb3fba200000000000cbbfdec00000000000cb3fd8200000000000cbbfb7800000000000cb3fb0c00000000000cbbfe1a00000000000cb3fe1a00000000000cbbfc2e00000000000cb3ff7c00000000000cbbffdc00000000000cb3fe6000000000000cbbfd7600000000000cbbfd8200000000000cb3fa6400000000000cbbfcc600000000000cb3ff4e00000000000cb3febc00000000000cb3ff4200000000000cb3fc8800000000000cbbfe9200000000000cb3fd1e00000000000aa32393530393133322d3592cb403e88f76664c93fdc0400cb3fb5c00000000000cb3fd8e00000000000cb3feac00000000000cb3fe9800000000000cbbfdae00000000000cb3fc6200000000000cb3fe9800000000000cb3ff0e00000000000cbbfc6c00000000000cb3ff3a00000000000cb3ff0c00000000000cb3fca000000000000cbbff3000000000000cbbfbac00000000000cb3fe2c00000000000cb3fe3000000000000cb3fe9000000000000cb3fe3200000000000cb3ff4200000000000cb3fefc00000000000cbc005600000000000cbbfe3000000000000cb3ffb600000000000cb3ff7c00000000000cb3fd9400000000000cbbfc0000000000000cbbfe8000000000000cb3ffa000000000000cbbfe6c00000000000cb3ffb600000000000cb3fea400000000000cb3fda600000000000cbbfe0c00000000000cbbfe5000000000000cbbfde200000000000cb3fcaa00000000000cbbfe3000000000000cb3fec000000000000cb3fe3600000000000cbbff4200000000000cb3fea400000000000cb3f91000000000000cbbfea200000000000cbbff0c00000000000cb3ff1a00000000000cbbfeb000000000000cbbfe8800000000000cb3fd8c00000000000cb3f9a000000000000cbbfd1000000000000cbbff3000000000000cbbfe5400000000000cbbfc8000000000000cb3fb7600000000000cb3ff4000000000000cbbff5a00000000000cbbfd0c00000000000cb3fdf600000000000cb3fcd000000000000cbbff0e00000000000cb3ff9600000000000cb3fd3a00000000000cbbfe3e00000000000cb3fc8c00000000000cb3fed400000000000cbbfdc600000000000cbbfa5800000000000cb3f80000000000000cbbff4000000000000cbbfc7e00000000000cb3fce000000000000cbbff8400000000000cb3fe7200000000000cb3ff5a00000000000cbbffac00000000000cbbfab800000000000cbbfd2400000000000cb3fee000000000000cbbfe7000000000000cb3feb800000000000cb3ff0c00000000000cb3fc6400000000000cbc000400000000000cb3ffa200000000000cbbfec000000000000cb3ff1400000000000cbbfe4400000000000cbbff5a00000000000cb3fe5800000000000cb3fcfc00000000000cb3fbfa00000000000cb3fef800000000000cbbfbd200000000000cbbff3400000000000cb3ff5800000000000cbbfd6c00000000000cb3fd9a00000000000cbbfee800000000000cbbfd2800000000000cb3fee000000000000cb3ff4a00000000000cb3ff2000000000000cb3ffb400000000000cb3fb8800000000000cbbfdb600000000000cb3ff2200000000000cbbfe2800000000000cb3fe0a00000000000cb3ff5800000000000cbbffb600000000000cbbff0800000000000cb3fe1e00000000000cb4000c00000000000cb3feec00000000000cb3fe9a00000000000cb3ff6e00000000000cbbfdc000000000000cb3ff6400000000000cbbfe0800000000000cbbff3e00000000000cb3ff1a00000000000cbbfbcc00000000000cb3ff1800000000000cbbfc3e00000000000cbbff6600000000000cbbfe1600000000000cb3fe2800000000000cb3fe2c00000000000cb3fe5c00000000000cbc002a00000000000cbbfe5600000000000cb3fe2e00000000000cb3fffe00000000000cb3fdb000000000000cb3ff5200000000000cb3fe5a00000000000cbbfbbc00000000000cbbff7200000000000cbbfeb800000000000cb3ff9800000000000cb3fcf400000000000cb3fdd400000000000cb3ff6e00000000000cbbfeee00000000000cbbfe4400000000000cb3fe4e00000000000cbbfd0e00000000000cbbff0800000000000cb3fb0000000000000cb3fdd600000000000cbbfeda00000000000cbbfc8a00000000000cbbfb1c00000000000cb3ff1c00000000000cb3ff0e00000000000cb3ff1200000000000cbbff2200000000000cb3feca00000000000cbbff0800000000000cbbfe6a00000000000cbbff0600000000000cb3fd8800000000000cb3ff1200000000000cbbfe9000000000000cb3fe0e00000000000cb3fda000000000000cb3fc3e00000000000cbbff4000000000000cbbfeac00000000000cb3ff6000000000000cb3feb400000000000cb3ff3600000000000cb3fee600000000000cb3ff3c00000000000cbbfe3c00000000000cbbfe9400000000000cbbffb800000000000cbbfaf200000000000cb3feb600000000000cbbff0a00000000000cbbfeb800000000000cb3fe1200000000000cb3fec800000000000cbbffa800000000000cb3fd5800000000000cb3fe6600000000000cbbff4800000000000cb3fd8a00000000000cbbfd8200000000000cbbff9000000000000cbbff1600000000000cb3feaa00000000000cb3feec00000000000cb3fce200000000000cbbff5a00000000000cb3ff0c00000000000cbbfa7c00000000000cbbfec600000000000cbbfec000000000000cb3fd3e00000000000cb3fe8a00000000000cb3fe7800000000000cb3fe8e00000000000cb3fd3c00000000000cbbff3a00000000000cb3faa800000000000cbbf74c00000000000cbbff0800000000000cb3fe2e00000000000cbbfe1600000000000cb3ffae00000000000cbbff7000000000000cb3fecc00000000000cb3fd3000000000000cbbfd1400000000000cb3fcca00000000000cbbfc0a00000000000cb3ff9600000000000cbbfe4a00000000000cb3ff0e00000000000cb3fe9400000000000cbbfe6a00000000000cbbfec400000000000cbbff4800000000000cbbfe1c00000000000cb3fe5400000000000cbbfd8600000000000cb3fdaa00000000000cbbfb8600000000000cbbfcf000000000000cb3fe3800000000000cbbfdb000000000000cbbfc2000000000000cb3fd6e00000000000cb3ff4000000000000cb3fe3a00000000000cb3fe8400000000000cb3fc2200000000000cb3ff1600000000000cbbfaa800000000000cb3ff3400000000000cbbfd4c00000000000cb3fd9600000000000cbbff6a00000000000cbbfe3000000000000cb3fd6600000000000cbbff2400000000000cbbfefa00000000000cbbff6200000000000cb3ffb400000000000cb3fd0600000000000cb3ff6200000000000cb3fe0400000000000cbbffa000000000000cbbfed000000000000cb3ff2400000000000cbbfcb200000000000cbbfe3800000000000cb3fdbc00000000000cbbff5400000000000cb3fc4600000000000cbbfa8800000000000cbbfe9000000000000cbbfd7200000000000cbbfe3a00000000000cbbff5c00000000000cbbfda400000000000cb3ff4000000000000cb3fefa00000000000cbbfc7c00000000000cbbfd7000000000000cbbfe6c00000000000cb3fdac00000000000cbbff4000000000000cb3feee00000000000cb3ff3000000000000cb3ff4600000000000cb3fe3200000000000cbbff4600000000000cbbfe9000000000000cb3ff7000000000000cb3fe2400000000000cbbfc0e00000000000cb3ff3800000000000cbbfb2c00000000000cbbfcea00000000000cbbfe8400000000000cbbff1200000000000cbbff3e00000000000cb3fd6800000000000cb3ff7600000000000cb4000c00000000000cbbfea600000000000cbbfce600000000000cbbff3800000000000cbc002800000000000cbbfc0600000000000cb3fdd600000000000cb3ffbc00000000000cb3fe4600000000000cb3ff3600000000000cbbfed200000000000cb3ff8a00000000000cb3ff0a00000000000cbbff5200000000000cb3fdca00000000000cbbfec000000000000cbbfe4c00000000000cbbff6400000000000cb3fd1000000000000cbc007200000000000cb3fef000000000000cbbfd1e00000000000cb3fa2e00000000000cbbfc8a00000000000cb3ff5a00000000000cb3fe6c00000000000cb3ff9600000000000cbbff0600000000000cbbffe600000000000cbbfb8600000000000cb3fecc00000000000cb3fde000000000000cbbfe3c00000000000cb3fc4800000000000cb3fc1400000000000cbbfe4800000000000cb3fbee00000000000cbbfe4600000000000cb4005000000000000cbbfd9c00000000000cbbfe0200000000000cbbffb600000000000cb3fefc00000000000cb3fc7e00000000000cb3fe9200000000000cb3fd4000000000000cb3fe3400000000000cb3fdb000000000000cb3ff7600000000000cbc000800000000000cb3fb6800000000000cb3fb5a00000000000cbc005a00000000000cb3fc3c00000000000cbbfc1400000000000cb3fe1000000000000cb3fe0600000000000cbbfde200000000000cbbff3400000000000cb3f72000000000000cb3fcde00000000000cb400a600000000000cb3fd0a00000000000cbbfeb200000000000cbbfac800000000000cb3fed000000000000cb3fe0a00000000000cb3fec400000000000cb3fb5c00000000000cbbfd1400000000000cbbfc0400000000000cb3fd6000000000000cbbfb1c00000000000cbbff9a00000000000cb3fff400000000000cbbff2400000000000cbbfe5e00000000000cbbfd5e00000000000cbbff0800000000000cb3fe0e00000000000cb3fcaa00000000000cbbfe7600000000000cb3ff4e00000000000cb3fd8400000000000cb3ff5a00000000000cbbf64000000000000cb3ff3000000000000cbbffc800000000000cbbff0c00000000000cbbfe6e00000000000cb3ffcc00000000000cbbff8400000000000cb3ffce00000000000cbbfbe400000000000cbbff5200000000000cbbfea800000000000cb3fd4a00000000000cb3fd4e00000000000cbbfa9a00000000000cb3fec400000000000cb3ff5a00000000000cb3fb0600000000000cb3fea000000000000cbbfe6a00000000000cb3fc2000000000000cbbfd9800000000000cbbfe7400000000000cb3fd4c00000000000cbbfd0200000000000cb3fd6200000000000cb3fda000000000000cb3fe8200000000000cb3fe1800000000000cb3ff8600000000000cbbfe2200000000000cb3fe8600000000000cb3fd4200000000000cb3ff2e00000000000cbbfeca00000000000cbbfda400000000000cbbfd7000000000000cb3fde600000000000cbbf97800000000000cbbfba000000000000cbbfb9400000000000cb3ff2c00000000000cb3fed400000000000cbbfb1000000000000cbbff4800000000000cb3fe7200000000000cb3fe4800000000000cb3ff5200000000000cbbfcca00000000000cb3fa2e00000000000cb3f94e00000000000cb3fdf000000000000cbbf8fc00000000000cbc003200000000000cb3fda800000000000cbbffda00000000000cb3ffd400000000000cb3ff3800000000000cb3ff1400000000000cb3ffda00000000000cbbfcf400000000000cb3fdfc00000000000cbbfe0c00000000000cbbfe3a00000000000cbbfd6600000000000cb3fc5000000000000cb3fcf000000000000cb3ff4000000000000cb3feb000000000000cb3fd2800000000000cbbffee00000000000cb3ffa600000000000cbbff9800000000000cbbfd6a00000000000cb3fe0600000000000cb3feaa00000000000cb3fa5a00000000000cbbff7400000000000cbbfe1a00000000000cbbfd5e00000000000cbbff6600000000000cb3ff9800000000000cb3ff8800000000000cb3ff5000000000000cbc002600000000000cb3fe2600000000000cb3fe0c00000000000cbbfd5200000000000cbbffcc00000000000cb4003600000000000cb3ff0600000000000cbbfcc200000000000cbbfb3400000000000cbbffb400000000000cbbff6000000000000cbbfeac00000000000cb3fdbe00000000000cb3fe8200000000000cb3fe1600000000000cbbfcf600000000000cb3fed800000000000cbbff9200000000000cbbff3000000000000cb3fed600000000000cbbfe3400000000000cbbff6800000000000cb3f8a800000000000cb3fe3a00000000000cb3fe5200000000000cbbfe3a00000000000cbbfe4000000000000cbbff0200000000000cb3fda800000000000cb3fbfe00000000000cbbfb8c00000000000cbbfc7e00000000000cb3feb800000000000cb3fe9a00000000000cbbff9000000000000cbbfe0400000000000cb3ffc600000000000cbc001400000000000cb4005800000000000cbbfc3e00000000000cb3fdfa00000000000cb3fe5800000000000cbc000600000000000cbbff0a00000000000cb3ff9600000000000cbbfd8200000000000cb3fc2200000000000cbbfe2c00000000000cb3f9fe00000000000cb3fd8a00000000000cbbfe1a00000000000cbbfdca00000000000cb3f86a00000000000cb3fc5000000000000cbbfd2c00000000000cbbfe2a00000000000cb3ff5000000000000cbbfcb000000000000cb3ff6400000000000cb3fc8e00000000000cb3fe6800000000000cb3fe5400000000000cbbff4a00000000000cb3fe4800000000000cb3feba00000000000cbbfec000000000000cbbff3e00000000000cb3fcf400000000000cbbfc9800000000000cbbffc600000000000cb3fd8600000000000cbbfd2a00000000000cb3fe4c00000000000cbbfd8e00000000000cbbff4a00000000000cbbfcf800000000000cbbfcd000000000000cbbff1000000000000cbbfe2200000000000cb3fe0600000000000cb3fdca00000000000cb3fa9a00000000000cbbfc2000000000000cbbfb1e00000000000cb3ff8000000000000cb4000c00000000000cb3fe6e00000000000cbbff6e00000000000cb3fd4000000000000cbbfeec00000000000cbbfd7c00000000000cbbfe4400000000000cb3fea000000000000cb3ff7200000000000cb3fe2000000000000cbbfe0e00000000000cbbfc8000000000000cbbff3000000000000cbbfe6800000000000cbbfb8800000000000cbbffec00000000000cbbfcb800000000000cb3f89c00000000000cb3fc1a00000000000cb3fc9600000000000cb3ff8800000000000cb3ff9c00000000000cbbfdae00000000000cb3fb4800000000000cb3fbe000000000000cbbfc5e00000000000cb3fe6000000000000cb3fda600000000000cb3fd2400000000000cbbfc2a00000000000cb3f9c600000000000cbbff0800000000000cb3fe6400000000000cb3fb7a00000000000cbbff5c00000000000cb3fde800000000000cbbfe3000000000000cb3fc0200000000000cb3ff1800000000000cbbfe1200000000000cbbfcc400000000000cbbff2600000000000cbbfe0200000000000cb3fc8000000000000cbbff0e00000000000cb3fe4e00000000000cbbfe0600000000000cbbfb6000000000000cb3fd0c00000000000cb3ffaa00000000000cb3fd3600000000000cbbfe1400000000000cb3fdbc00000000000cb3fc9c00000000000cbbffbc00000000000cb3fe2000000000000cb3fe6200000000000cbc002c00000000000cb3fea800000000000cbbfe0400000000000cbbfe3600000000000cb3fe0600000000000cbbff0200000000000cbbfe7800000000000cbbffb400000000000cbbf99000000000000cbbfce600000000000cb3ff1200000000000cb3ffec00000000000cbbffd400000000000cb3fa5a00000000000cb3fda600000000000cb3fef200000000000cbbfc6800000000000cb3fdc800000000000cb3fef000000000000cbbffc800000000000cb3feca00000000000cbbff3c00000000000cbbfe8600000000000cbbffd200000000000cbbfc6800000000000cbbfeb400000000000cbbfeaa00000000000cbbffbe00000000000cbbfe7200000000000cb3fe1200000000000cb3ff1000000000000cbbfc1600000000000cb3ff0600000000000cb3fac000000000000cb3fd6c00000000000cbbff3200000000000cbbfc8a00000000000cbbfa6800000000000cb3ff5a00000000000cbc001600000000000cb3ff0a00000000000cb3f90800000000000cbbffb600000000000cb3fe6c00000000000cbbfd0200000000000cbc003e00000000000cb3fc8600000000000cbbfcc600000000000cbbfb0800000000000cb3fb4c00000000000cb3fdc400000000000cb3face00000000000cb3fbc800000000000cb3ff3200000000000cbc002200000000000cb3fbb200000000000cbbff0800000000000cb3ffbc00000000000cbbfe8400000000000cb3fd7a00000000000cb3fd3400000000000cb3fdbc00000000000cbbfe0e00000000000cbbfdea00000000000cb3fbd400000000000cbbfb4c00000000000cbbfc0400000000000cb3ff2c00000000000cb3fe4800000000000cb3feac00000000000cbbfe2000000000000cb3ff4600000000000cbbfb3800000000000cbbfc8000000000000cb3fcea00000000000cb3febe00000000000cbbfe0600000000000cb3ff4200000000000cbbfc7c00000000000cb3fd7800000000000cb3fd3a00000000000cbbfc0200000000000cbbfd9600000000000cbbff5000000000000cb3ff0800000000000cb3fbca00000000000cb3fd1a00000000000cb3fd6c00000000000cbbff2800000000000cbbfecc00000000000cb3f7e000000000000cb3fed800000000000cbbfb9400000000000cbbff6200000000000cbbff8a00000000000cb3fe1a00000000000cbbfe9200000000000cbbfb6800000000000cbbffcc00000000000cbbfa0000000000000cb3ff8c00000000000cb3fd9800000000000cb3ff0400000000000cb3ff0c00000000000cb3ffa600000000000cb3fc7000000000000cbbfd3c00000000000cb3fe8800000000000cbbfdd400000000000cbbfd9e00000000000cbbfefe00000000000cbbfe6400000000000cb3fe7e00000000000cbbfe9400000000000cb3feee00000000000cbbf7d000000000000cb3feba00000000000cbbfd0200000000000cb4006a00000000000cb3fdf800000000000cbbfe2400000000000cbbfd0a00000000000cbbff4000000000000cbbff1a00000000000cb3ffb000000000000cbbfd6200000000000cb3fc3c00000000000cb3fd0800000000000cbbff1000000000000cbbfec000000000000cbbfdf000000000000cb3fcc800000000000cbbfed400000000000cbbfa4000000000000cbbfd6600000000000cb3fe4400000000000cbbff4a00000000000cbbfd4200000000000cbbfe6600000000000cbbfffc00000000000cbbfdcc00000000000cbbff5600000000000cb3ff9600000000000cbbfd7200000000000cb3fa7800000000000cb3fecc00000000000cbbffe600000000000cb3ff8400000000000cbbfefa00000000000cbbff0200000000000cbbff8600000000000cb3fcce00000000000cb3fc1400000000000cbbfdb800000000000cb3fe0a00000000000cbbff0e00000000000cbbfdb800000000000cbbfeca00000000000cbbfe6200000000000cbbfe8400000000000cbbff4000000000000cbbffc000000000000cb3ff4400000000000cb3fb3e00000000000cb3fe0400000000000cbbff6200000000000cbbfe8400000000000cb3ff3e00000000000cb3fcd600000000000cbbfe3000000000000cb3ff2000000000000cbbff4000000000000cbbff7c00000000000cbbfd8800000000000cbbfe9800000000000cbbff9e00000000000cb3fb5000000000000cb3ff5e00000000000cbbff8e00000000000cbbff2400000000000cbbfed200000000000cb3ff4000000000000cb3fe8a00000000000cb3fe8a00000000000cbbfe8800000000000cbbfe4800000000000cbbfdb000000000000cb3fd4800000000000cb3f9a400000000000cb3fd5200000000000cb3fef200000000000cbbfd9800000000000cb3fee200000000000cbbff1200000000000cbbfd2e00000000000cb3fe9e00000000000cbbfe1800000000000cb3ff0200000000000cbbfc6400000000000cb3fd6400000000000cbbfd0c00000000000cb3fe2800000000000cb3ff7a00000000000cbbfe2600000000000cb3ff0e00000000000cb3ff2000000000000cbbfd8800000000000cb3fff000000000000cb3feaa00000000000cbbff3a00000000000cbbfd3000000000000cbbfea200000000000cbbfed600000000000cbbff0200000000000cb3ff2200000000000cb3ff5000000000000cb3fe2a00000000000cb3ff1800000000000cbbfdfe00000000000cb3ff7c00000000000cbbff2200000000000cbbfcd400000000000cbbfc9c00000000000cbbfe9000000000000cb3fb0e00000000000cb3fec400000000000cbbff5e00000000000cbbfe7a00000000000cb3fe9a00000000000cbbfd9600000000000cb3ffd600000000000cbbff4800000000000cbbfe0800000000000cbbfeee00000000000cb3ff1c00000000000cbbfe6800000000000cb3fe1200000000000cbbff8800000000000cb3fc3a00000000000cb3fe8a00000000000cb3fa5200000000000cb3ff2000000000000cbbfbde00000000000cb3fde200000000000cb3fd8c00000000000cb3fd9600000000000cbbfbbc00000000000cbbfde200000000000cbbfb8600000000000cbbfb1600000000000cb3ff8000000000000cbbfdb800000000000cbbfd0a00000000000cbbfede00000000000cbbfdfa00000000000cbbfe3200000000000cb3fe8c00000000000cbbfe8400000000000cb3febe00000000000cbbfe2c00000000000cb3fe9800000000000cb3ff5000000000000cbbfc1800000000000cbbfd8a00000000000cbbfe5a00000000000cb3fe0800000000000cb3ff3e00000000000cbbfed400000000000cbbfe7400000000000cbbff6c00000000000cb3ff6c00000000000cb3fd3200000000000cb3ff8200000000000cb3feb600000000000cb3f5c400000000000cb3fd8e00000000000cbbff4600000000000cb3fe5000000000000cb3ff7c00000000000cbbfe2000000000000cbbff6800000000000cbbfc2000000000000cbbfe1000000000000cb3fd9000000000000cb3fd2200000000000cbbfd7c00000000000cb3fe7800000000000cb3fc2600000000000cb3fe7c00000000000cb3fd7000000000000cbbfe2400000000000cbbff2400000000000cbbfd4600000000000cbc003400000000000cb3fd4400000000000cb3fd5400000000000cbbfcf800000000000cb3fd2400000000000cbbfda800000000000cbbfd5600000000000cb3fe4600000000000cbbff0400000000000cb3fbac00000000000cb3fd6200000000000cbbfde600000000000cb4002600000000000cbbff2e00000000000cb3fefc00000000000cb3ff5800000000000cb3feb800000000000cb3fee400000000000cb3fe6600000000000cb3fe2e00000000000cbbfe1600000000000cbbfd9600000000000cbbff9c00000000000cbbffd200000000000cbbfef200000000000cbbff7400000000000cbbfdd600000000000cb3fee200000000000cb3fde000000000000cb3fe2400000000000cbbff3c00000000000cbbff1800000000000cb3fd2e00000000000cbbfb4e00000000000cbbfd6400000000000cb3feb400000000000cb3fe9600000000000cb3feaa00000000000cbbfd5c00000000000cb3ff2200000000000cb3ff0600000000000cbbfdba00000000000cb3ff7e00000000000cb3feae00000000000cbbfea400000000000cb3ff8800000000000cb3f92800000000000cb3fd5000000000000cb3fe7c00000000000cbbfee000000000000cbbfbe400000000000cb3ff5000000000000cbbffba00000000000cb3ff1600000000000cbbfd6000000000000cb3fe2000000000000cbbfe0a00000000000cb3fed400000000000cb3fe4200000000000cbbff3a00000000000cbbfd6a00000000000cb3fca800000000000cbbfea000000000000cb3ffe800000000000cbbffc600000000000cb3fc8800000000000cb3fe4e00000000000cbbfb4e00000000000cbbfc6000000000000cbbfff400000000000cbbff2600000000000cbbff0600000000000cbbfde400000000000cb3ff9800000000000cbbff3c00000000000cb3fd5c00000000000cb3ff5200000000000cbbfc6800000000000cbbff9400000000000cbbfb8800000000000cb3fe0a00000000000cbbfee000000000000cbbff7000000000000cbbfec200000000000cb3fd8c00000000000cbbfb3400000000000cbbfd8600000000000cb3ff7200000000000cb3ffde0000000000002cbbfdf800000000000cb3fc4200000000000cbbfe2000000000000cbbfed000000000000cb3fd9600000000000cb3ff4000000000000cb3ff9200000000000cb3fe7c00000000000cbbffe000000000000cb3ff5c00000000000cb3fd4200000000000cb3fd1c00000000000cbbfc5000000000000cbbfdda00000000000cb3feba00000000000cb3ff0600000000000cb3fdb000000000000cb3fd1a00000000000cb3fe5e00000000000cb3fdb800000000000cb3fd3800000000000cb3fde200000000000cbbfe0600000000000cbbf88400000000000cbbff5800000000000cb3fdd000000000000cbbfc4400000000000cb4001a00000000000cbbff6400000000000cbbf8b000000000000cbbff1200000000000cb3fdfe00000000000cb3fd0c00000000000cbbfc0e00000000000cb3ff1c00000000000cb3ff8200000000000cb3fe3200000000000cb3fb8e00000000000cbbfefe00000000000cb3fe5400000000000aa32393530393133322d3692cb403f1632bfea010adc0400cb3feb000000000000cbbfdae00000000000cb3ffbe00000000000cb3fe1c00000000000cbbfe3800000000000cbbfb9600000000000cbbfa3600000000000cb3fe7e00000000000cb3fda000000000000cb3ffb400000000000cb3fe5c00000000000cbbfe4c00000000000cbbff1a00000000000cb3fdbe00000000000cb3fd9e00000000000cb3ffbc00000000000cb3fd6400000000000cb3febc00000000000cb3fe8600000000000cb3fa5c00000000000cbc002000000000000cbbfd9c00000000000cb3ffe600000000000cb3ff6600000000000cbbfcb600000000000cbbfbbe00000000000cbbff2600000000000cb3ffe800000000000cbbfe4000000000000cb3fe9c00000000000cbbfb5e00000000000cb3ff1400000000000cb3fd9600000000000cbbfd3a00000000000cbbfe3c00000000000cbbfdc200000000000cbbfe6800000000000cb3fe6600000000000cb3fe3800000000000cbbfebc00000000000cb3ff6c00000000000cbbfbe800000000000cbbff1000000000000cbbff9c00000000000cb3ff6400000000000cbbff2600000000000cbbffb200000000000cbbfc6000000000000cbbfe5200000000000cbbfeac00000000000cbbfe5200000000000cbbfe9200000000000cbbfc7e00000000000cbbfdce00000000000cb3fe9c00000000000cbbffe400000000000cbbfc8400000000000cb3ff1800000000000cbbfc0200000000000cbbfdf400000000000cb3ff0400000000000cb3feca00000000000cbbfecc00000000000cbbfe4c00000000000cb3fc8800000000000cbbfee600000000000cb3fd7200000000000cb3fd8800000000000cbbfdde00000000000cbbfdf800000000000cb3fea400000000000cbc000200000000000cb3ff8200000000000cbbfaf800000000000cbbff9000000000000cbbf9a000000000000cbbfebe00000000000cb3fef600000000000cbbff4400000000000cbbfc4000000000000cb3fe8200000000000cbbfc5600000000000cbc00ae00000000000cb3ff5400000000000cbbfdae00000000000cb3ff1000000000000cbbfefa00000000000cbbff5a00000000000cb3ff1000000000000cbbfd1400000000000cb3fd7c0000000000001cbbfe2200000000000cbbffdc00000000000cb3ff8e00000000000cb3fc7a00000000000cbbfe2400000000000cb3fd8600000000000cbbff3c00000000000cb3fe6c00000000000cb3ffce00000000000cb3ff9200000000000cb3ffe600000000000cbbfb7c00000000000cbbfeb200000000000cb3ff7200000000000cbbfe5800000000000cbbf9fe00000000000cb3fd4200000000000cbbfe5e00000000000cbbfd1a00000000000cb3fec600000000000cb4001000000000000cb3fde600000000000cbbfba600000000000cb3fe8600000000000cbbff3400000000000cb3fe9200000000000cb3fc9a00000000000cbbfd6000000000000cb3ff8000000000000cb3fd3000000000000cb3fe6c00000000000cbbfdf600000000000cbbffca00000000000cbbfe4000000000000cb3feb200000000000cb3fe9600000000000cb3fe8c00000000000cbbff4e00000000000cbbfc4e00000000000cb3fd2000000000000cb3ffec00000000000cb3fb5a00000000000cb3ffca00000000000cbbfd1000000000000cbbfe4600000000000cbbfe5000000000000cbbfe7400000000000cb3fe8600000000000cb3fefc00000000000cb3fe3400000000000cb3ff2000000000000cb3faac00000000000cbbfde000000000000cb3ff4e00000000000cbbfa7400000000000cbbff3200000000000cbbf72e00000000000cb3fe3000000000000cbbff6400000000000cbbfe7400000000000cbbff3a00000000000cb3ff4800000000000cb4004000000000000cb3fe4000000000000cbbfebe00000000000cb3ff3c00000000000cbbffba00000000000cbbffb800000000000cbbff0200000000000cbbfc3800000000000cb3ffb600000000000cbbff0200000000000cb3fe6200000000000cb3fe2200000000000cb3fdc400000000000cbbfe9a00000000000cbbff9600000000000cb3feca00000000000cbbfe3c00000000000cb3ffd600000000000cb3fe1000000000000cb3fe5a00000000000cbbfb5800000000000cb3fbf000000000000cbbff5a00000000000cbbfca000000000000cb3ff7800000000000cbbfea600000000000cbbfd6000000000000cb3fedc00000000000cb3fd1c00000000000cbbffae00000000000cb3fe3800000000000cb3feb800000000000cbbff8600000000000cbbfb4e0000000000001cbbff4000000000000cbbfe3400000000000cb3ff9200000000000cb3fdcc00000000000cbbfd7800000000000cbbfeea00000000000cb3fcba00000000000cbbfc0a00000000000cbbfc3400000000000cb3fd5e00000000000cb3fd0a00000000000cb3fe0400000000000cb3ff1a0000000000001cbbfb2800000000000cbbfe7400000000000cbbfee800000000000cb3fcd200000000000cbbff2800000000000cb3fb2200000000000cbbfe0800000000000cb4000200000000000cbbff1000000000000cb3fd9600000000000cbbfd6a00000000000cb3fe2a00000000000cb3f97200000000000cb3fe2600000000000cb3ff5800000000000cb3fcdc00000000000cb3fe7c00000000000cb3fe5c00000000000cbbfeae00000000000cbbfd1400000000000cbbff3800000000000cbbfe4600000000000cb3fbd400000000000cbbfca800000000000cb3fc6200000000000cb3fd8c00000000000cbbfe9400000000000cb3ff0a00000000000cbbfd2400000000000cb3fc7c00000000000cb3fe6200000000000cb3ff5400000000000cbbfcea00000000000cb3ff6200000000000cb3fe7400000000000cb3ff1000000000000cbbfdf600000000000cb3fe8c00000000000cbbfc7400000000000cb3fdea00000000000cbbff4800000000000cbbff8400000000000cb3fd6600000000000cbbffb000000000000cbbfe8600000000000cbbfe9800000000000cb3feb800000000000cbbfe7000000000000cb3fff000000000000cb3fea400000000000cbbffb400000000000cbbff4a00000000000cb3fcde00000000000cb3fea800000000000cbbfb3c00000000000cb3fcb600000000000cbbff1c00000000000cbbfcf000000000000cbbfeb200000000000cbbff1e00000000000cbbfd3200000000000cbbfe3400000000000cbbffc000000000000cbbfd2a00000000000cb3feea00000000000cb3fe9600000000000cbbfd2800000000000cbbfd5200000000000cbbff5000000000000cb3fe4200000000000cbbfe2c00000000000cb3fda800000000000cb3ff5200000000000cb3ff1000000000000cbbfc4c00000000000cbbffa800000000000cbbfe1800000000000cb3ffa800000000000cb3fe6400000000000cbbfb9000000000000cb3ff9200000000000cb3feca00000000000cbbf8d800000000000cbbff3200000000000cbbff2000000000000cbbfee400000000000cb3fe2200000000000cb3fe7a00000000000cb3ffae00000000000cbbff3c00000000000cb3fdb600000000000cbbfc8400000000000cbc002a00000000000cb3fda000000000000cbbfd1e00000000000cb3ffa400000000000cb3fd9800000000000cb3feb600000000000cbbfe0400000000000cb3ffb800000000000cb3fe4c00000000000cbbff6000000000000cb3fee000000000000cbbff2000000000000cb3fdd000000000000cbbffa400000000000cb3fcb800000000000fdcb3fcaa00000000000cb3fb4e00000000000cbbfa5e00000000000cb3fd3e00000000000cb3feb800000000000cb3fd2e00000000000cb3ffe800000000000cbbfcfc00000000000cbbff3400000000000cb3fe5400000000000cb3fc4400000000000cb3fd9200000000000cbbfe1a00000000000cbbfc7200000000000cb3fea200000000000cbbfc0e00000000000cb3fea200000000000cbbfe5800000000000cb4001a00000000000cbbfd3800000000000cbbfe0c00000000000cbbff7600000000000cb4001400000000000cbbfe0800000000000cbbfd5e00000000000cb3fd4c00000000000cb3fcba00000000000cbbfaa000000000000cb3ff3000000000000cbc001800000000000cb3fb6200000000000cb3fe6600000000000cbc001600000000000cb3ff8200000000000cbbfe3000000000000cb3feae00000000000cb3fd7a00000000000cb3fe3c00000000000cbbff1e00000000000cb3fd7c00000000000cbbfb6000000000000cb3ffee00000000000cb3fc9600000000000cbbf7a000000000000cbbf65800000000000cb3ff4400000000000cb3fc1400000000000cb3ff5400000000000cbbfa0600000000000cbbfea000000000000cb3f98600000000000cbbfd9800000000000cb3fab800000000000cbbff1400000000000cb3ff5e00000000000cbbff9e00000000000cbbfdae00000000000cbbfe7600000000000cb3fbe000000000000cb3ff4e00000000000cb3fa8400000000000cbbfc8e00000000000cb3ff1200000000000cb3fe6400000000000cb3ff6000000000000cbbfda200000000000cb3fe4e00000000000cbbffb800000000000cbbff4c00000000000cbbfdc000000000000cb3ff4600000000000cbbff4a00000000000cb4002a00000000000cb3fe6000000000000cbbff4c00000000000cbbfedc00000000000cb3fc9800000000000cb3fe2a00000000000cb3fb1000000000000cb3fe8000000000000cb3fef400000000000cbbfe5800000000000cbbfe2800000000000cbbfe0200000000000cb3fd0800000000000cb3fd9a00000000000cbbfef600000000000cbbfbb000000000000cbbfdac00000000000cb3fd5000000000000cb3ff9600000000000cb3feac00000000000cb3fd1a00000000000cb3ff7600000000000cbbff0200000000000cb3ff3400000000000cbbfe6200000000000cb3ff1400000000000cbbff0c00000000000cb3ff6800000000000cb3fd2e00000000000cb3fe2e00000000000cb3fed200000000000cb3ff3000000000000cbbff2c00000000000cb3ff1000000000000cb3fe1000000000000cb3fdb800000000000cbbfef800000000000cb3ff3c00000000000cb3fbcc00000000000cb3ff5200000000000cbbfe9600000000000cb3fdae00000000000cbbfc7200000000000cb3fbac00000000000cb3fc8400000000000cbc000c00000000000cb3fe4c00000000000cbbffea00000000000cb3ffc800000000000cb3fff200000000000cb3ffd800000000000cb3ff5000000000000cbbfe8a00000000000cb3ff0400000000000cb3fc5800000000000cbbff3a00000000000cbbff3000000000000cb3fabe00000000000cb3fdb000000000000cb3fec800000000000cb3ff2200000000000cbbfcd600000000000cbc006000000000000cb3fef800000000000cbbff9000000000000cbbfec200000000000cb3fe1000000000000cb3fedc00000000000cbbfbcc00000000000cbc001000000000000cbbfee600000000000cbbfe4200000000000cbbfe0e00000000000cb4000c00000000000cb3fffe00000000000cb3ff0e00000000000cbc006600000000000cb3f99a00000000000cb3fee400000000000cbbfc6800000000000cbbff6600000000000cb4004e00000000000cb3fdde00000000000cbbfe3600000000000cbbfeae00000000000cbbfd9c00000000000cbbff2c00000000000cbbfe2e00000000000cb3ffa200000000000cb3fb8600000000000cb3ff1600000000000cbbfd3800000000000cb3fe0200000000000cbbff6800000000000cbbff9600000000000cb3fcc600000000000cb3fd3400000000000cbbfe5a00000000000cbbfd5200000000000cb3ff5000000000000cb3fc0000000000000cbbff3800000000000cbbfb3e00000000000cbbff5e00000000000cb3fe8200000000000cb3fe7200000000000cbbfd6200000000000cb3fdb000000000000cb3fd1800000000000cb3ffa400000000000cbc001c00000000000cbbfd3000000000000cb3ff6e00000000000cbbff6200000000000cb4007600000000000cbbfda800000000000cbbfcaa00000000000cb3fb2400000000000cbbff3c00000000000cbbfe4800000000000cb4003400000000000cbbff6000000000000cbbfeb200000000000cbbfeaa00000000000cb3fe6c00000000000cb3fef200000000000cbbfc6400000000000cbbfe7800000000000cbbfc4400000000000cbbfe1200000000000cbbfde800000000000cbbff4600000000000cb3fe4a00000000000cb3ff2a00000000000cb3ff2200000000000cbbfb4600000000000cb3fd8e00000000000cb3ff1600000000000cbbfdfa00000000000cb3ff2000000000000cb3fede00000000000cbbff2200000000000cbbff5800000000000cb3fe6c00000000000cb3fd4200000000000cbbffa000000000000cb3fec000000000000cbbf9bc00000000000cb3feae00000000000cb3fe1000000000000cbbff8e00000000000cb3fd2000000000000cbbfc2600000000000cb3fbd000000000000cbbfe5000000000000cb3feec00000000000cb3fd5c00000000000cbbfefc00000000000cb3fc7e00000000000cb3fbf400000000000cb4001600000000000cb3ff8e00000000000cbbf50800000000000cbbfebc00000000000cb3fe7e00000000000cbbfb9e00000000000cb3fad800000000000cbbfe9400000000000cb3fe8600000000000cb3ff1200000000000cb3fd9000000000000cb3fd2200000000000cbbfd7600000000000cbbff2400000000000cb3fc1a00000000000cb3f87e00000000000cbc002400000000000cb3fcac00000000000cbbfdac00000000000cbbfda600000000000cb3f82000000000000cb3febc00000000000cb3ff3e00000000000cb3fe7e00000000000cbbfdac00000000000cb3fe7400000000000cb3fc9000000000000cb3fe5400000000000cb3fe3c00000000000cbbfe2800000000000cbbfd1c00000000000cb3fa6a00000000000cbbfd9c00000000000cb3ff0800000000000cbbfc4400000000000cbbff5a00000000000cb3ff3200000000000cbbfe5a00000000000cb3fc0200000000000cb3ff5000000000000cbbfee400000000000cbbfd1600000000000cbbfff200000000000cbbfe3400000000000cb3fe0c00000000000cb3f89000000000000cbbfd2400000000000cb3fd3800000000000cbbfdde00000000000cbbfcc200000000000cb3fec400000000000cbbfd1000000000000cbbf8ea00000000000cb3fd8000000000000cb3fe6600000000000cbbffb400000000000cb3fd9000000000000cb3fe1a00000000000cbc004400000000000cb3ff1e00000000000cbbff3e00000000000cbbfd8200000000000cb3fca600000000000cbbfdfe00000000000cbbff3800000000000cbbffe000000000000cb3fe4200000000000cbbfafc00000000000cb3fe4200000000000cb3fe0600000000000cbbffaa00000000000cbbf95000000000000cb3fe2400000000000cb3fdee00000000000cb3fb0c00000000000cb3fe3400000000000cb3fe2000000000000cbbff8a00000000000cb3ff5400000000000cbbff8400000000000cbbfde000000000000cbbf9b200000000000cbbfb1800000000000cbbfed000000000000cbbfde200000000000cbbff3600000000000cb3fd4a00000000000cb3fda800000000000cb3fb3800000000000cb3fd6600000000000cb3ff2c00000000000cbbfec800000000000cbbfb2a00000000000cbbfdee00000000000cbbfcc000000000000cbbfcec00000000000cb3fdf200000000000cbc000c00000000000cb3fba000000000000cb3fda200000000000cbbff5400000000000cb3ff1a00000000000cbbfe7600000000000cbbffea00000000000cb3ff2200000000000cbbfae800000000000cb3fd8000000000000cbbfcaa00000000000cb3fe2e00000000000cbbfcf400000000000cb3fe9600000000000cb3ff3e00000000000cbbffc600000000000cb3ff6e00000000000cbbfd4400000000000cb3ff2e00000000000cbbfe6c00000000000cb3fdc800000000000cbbfc7800000000000cb3fec600000000000cbbfc0400000000000cbbfe9c00000000000cb3ff0200000000000cbbfc4400000000000cb3fc7c00000000000cb3ff3000000000000cb3ff0800000000000cbbfecc00000000000cbbfb1800000000000cb3ff5c00000000000cb3fd1c00000000000cbbfd5200000000000cb3fb5800000000000cb3ff7200000000000cb3fae000000000000cb3fe0400000000000cbbfe7600000000000cb3f92000000000000cb3fc8000000000000cbbfe4200000000000cbbfcb000000000000cbbfce800000000000cb3fedc00000000000cbbfebc00000000000cb3fc0800000000000cbbfea600000000000cbbfdda00000000000cbbfd2800000000000cb3fd3800000000000cbbf8e000000000000cbbfe0200000000000cbbfe9800000000000cbc001600000000000cb3fe3e00000000000cbbfe6400000000000cbbfcd400000000000cbbfec400000000000cb3fce400000000000cb3ff1200000000000cb3fcf200000000000cb3fec600000000000cb3ff4400000000000cb3ff2800000000000cb3fcb400000000000cbbff1600000000000cbbfe0800000000000cb3fbfc00000000000cbbfc0200000000000cbbff6c00000000000cbbfe6600000000000cb3ff4000000000000cbbfdb200000000000cb3fe7e00000000000cb3fd1a00000000000cb3fe3800000000000cbbfc2600000000000cb400a800000000000cb3ff2a00000000000cbbfce800000000000cb3fe3000000000000cbbffb000000000000cbbfde000000000000cb3fdbe00000000000cbbff0800000000000cb3fcc400000000000cbbfb3200000000000cbbfe5e00000000000cb3fd0c00000000000cbbfee400000000000cbbff4400000000000cbbff0600000000000cb3facc00000000000cbbff0800000000000cb3ff0800000000000cbbfe4c00000000000cb3fe5a00000000000cbbf6a000000000000cbbffae00000000000cb3fc2a00000000000cbbffa800000000000cb3ff8800000000000cbbff0e00000000000cb3fa5c00000000000cb3ff4200000000000cbc004400000000000cb3fe1800000000000cbbfd7400000000000cbbfe3e00000000000cbc006400000000000cbbfdc000000000000cb3fc1e00000000000cbbfec800000000000cb3fdc800000000000cbbfd1800000000000cbbfc0000000000000cbbfe8600000000000cbbff2a00000000000cbbfe6600000000000cbbfec000000000000cbbfd7000000000000cb3fe8000000000000cbbfd5a00000000000cb3fd6400000000000cbbffc400000000000cbbfcee00000000000cb3ff6e00000000000cb3fd2000000000000cbbfe2600000000000cbbfc5e00000000000cbbff0800000000000cbbff1200000000000cbbff2800000000000cbbff7000000000000cbc000800000000000cb3fef400000000000cb3ff9c00000000000cbbff6000000000000cbbfd7800000000000cbbfe9c00000000000cb3ff4a00000000000cb3ff0400000000000cb3feec00000000000cb3fba800000000000cbbfe3800000000000cbbfd2c00000000000cb3fd8600000000000cb3fbca00000000000cb3fd4600000000000cb3fb6400000000000cb3fc8a00000000000cb3ff3800000000000cbbff8000000000000cbbff6400000000000cb3fe5800000000000cbbff2a00000000000cb3ff0c00000000000cbbfe0200000000000cbbfd2400000000000cbbfb8e00000000000cb3fb5800000000000cb3ff4e00000000000cbbfeb800000000000cb3ff1c00000000000cb3fde600000000000cbbfdf000000000000cb3ff2a00000000000cb3fdc000000000000cbbfdf800000000000cbbff1000000000000cbbfe2200000000000cbbfec600000000000cb3facc00000000000cb3ff2800000000000cb3fe4000000000000cb3fcac00000000000cb3fe4c00000000000cb3fd1e00000000000cb3ff2000000000000cbbfc2e00000000000cbbfe0a00000000000cb3fe9c00000000000cb3faaa00000000000cb3fe3400000000000cb3ff0600000000000cbbff7600000000000cbbff6000000000000cb3fcec00000000000cb3fd2600000000000cb3ffca00000000000cbbfebc00000000000cbbfe2c00000000000cbbfcc200000000000cb3fdfc00000000000cb3f50000000000000cb3fe7c00000000000cbbff3800000000000cb3fd4c00000000000cb3fddc00000000000cbbfc5e00000000000cb3ff4200000000000cbbfde400000000000cb3fbbc00000000000cbbfd1000000000000cb3fec200000000000cbbfc9400000000000cbbfcf800000000000cbbfeee00000000000cbbf92400000000000cb3ffb000000000000cbbfd6600000000000cb3fdbc00000000000cbbfd3e00000000000cbbfb8e00000000000cbbfd5000000000000cb3feac00000000000cbbfda000000000000cbbfc3400000000000cbbfd8a00000000000cb3fe5600000000000cb3ff5c00000000000cb3fb6a00000000000cb3fe5a00000000000cbbfd6200000000000cb3fd8200000000000cb3ff4c00000000000cbbfed000000000000cbbff8c00000000000cbbff6000000000000cb3fd9a00000000000cb3fc1a00000000000cb3ffb400000000000cb3ff1000000000000cb3fdca00000000000cbbfc3000000000000cbbff2200000000000cb4002c00000000000cb3ff3800000000000cb3fcd400000000000cbbfd8400000000000cbbfc0600000000000cbbfef600000000000cbbff2c00000000000cbbf92000000000000cbbfabc00000000000cb3fd8a00000000000cbbfdc800000000000cbbfad200000000000cb3fefa00000000000cbbfd9800000000000cbbfc2600000000000cbbff3000000000000cbbffb200000000000cbbfd5000000000000cb3ff5c00000000000cb3fcf800000000000cb3fe2000000000000cbbfe1800000000000cbbfe4800000000000cb3feb600000000000cbbfe3200000000000cb3fc5800000000000cb3fc5c00000000000cbbff2c00000000000cb4002e00000000000cbbfecc00000000000cb3fe4000000000000cb3ffda00000000000cb3fe7200000000000cb3ff5800000000000cb3fd5e00000000000cb3fca000000000000cb3fdb200000000000cbbfcb200000000000cbc002a00000000000cbbffb800000000000cbbfe7600000000000cbbff4e00000000000cb3fa3800000000000cb3feba00000000000cb3fdb400000000000cb3fd4c00000000000cbbfeb400000000000cbbff4200000000000cb3ff4400000000000cbbfecc00000000000cbbfc9400000000000cb3fb7800000000000cb3ff3000000000000cbbfd2800000000000cbbfe4a00000000000cb3fe8a00000000000cb3fe4400000000000cbbff3c00000000000cb3fe5200000000000cb3fe3600000000000cbbff4000000000000cb3fe1000000000000cbbfed400000000000cb3fce600000000000cb3ff1200000000000cbbff0c00000000000cbbfcda00000000000cb3fd0600000000000cbbff9e00000000000cb3feec00000000000cb3ff4200000000000cb3fff800000000000cbbfef000000000000cb3ff2600000000000cb3f90800000000000cbc002000000000000cbbfd9800000000000cb3fef000000000000cb3fc4400000000000cb3ffa800000000000cbbfff200000000000cb3fe3400000000000cb3ff9400000000000cb3fb1800000000000cbbfeb400000000000cbbff2400000000000cbbffd600000000000cb3fa3e00000000000cbbfe7a00000000000cb3feca00000000000cbbffa800000000000cbbfc0c00000000000cb3fe4200000000000cbbfdae00000000000cbbfe2200000000000cbbfe2400000000000cb3fed400000000000cbbfea200000000000cbbff7e00000000000cbbfd7a00000000000cb3fe3a00000000000cb3ff1000000000000cbbf95000000000000cb3fef400000000000cb3ffd000000000000cb3ffd000000000000cbbfd4e00000000000cb3fbfa00000000000cb3fdd800000000000cbbff8e00000000000cbbfc7a00000000000cb3fe3400000000000cb3ffd400000000000cbbfc1e00000000000cbbfce000000000000cb3ff3200000000000cb3fe0000000000000cbbfea800000000000cb3fb7e00000000000cbbff1600000000000cbbfd5c00000000000cb3ffb800000000000cb3ff1600000000000cb3fb8800000000000cb3fe0e00000000000cb3ff1600000000000cb3fdd400000000000cbbfd5400000000000cb3fa5800000000000cbbfb2400000000000cbbff2e00000000000cb3fe6000000000000cb3fe1600000000000cb3ff8000000000000cbbff3400000000000cb3fe0c00000000000cbbff3e00000000000cb3fd3200000000000cbbfd0a00000000000cbbfb5800000000000cb3fea000000000000cb3fe7600000000000cb3fdac00000000000cb3feaa00000000000cbbfe6e00000000000cbbfcce00000000000aa32393530393133322d3792cb403ee3a502d548f6dc0400cbbf9f000000000000cb3fb6800000000000cb3feb000000000000cb3fe6a00000000000cbbfc8000000000000cb3fba200000000000cb3fa9a00000000000cb3ff2000000000000cbbfe0c00000000000cb3fe3800000000000cb3ff7c00000000000cb3fdba00000000000cbbfee200000000000cb3fd6400000000000cb3fe7a00000000000cb3fe9000000000000cb3fe6600000000000cb3fde400000000000cb3ff9c00000000000cb3ff4600000000000cbc001e00000000000cbbfe7600000000000cb3ff9e00000000000cb3ff4600000000000cbbfbfe00000000000cb3fdd400000000000cbbfe5600000000000cb3ffba00000000000cbbfe0c00000000000cb3ffba00000000000cb3feb400000000000cb3fede00000000000cbbfe0600000000000cbbfe2e00000000000cbbfd6800000000000cbbfb7000000000000cbbfcb000000000000cb3ff0e00000000000cb3fe1600000000000cbbff6e00000000000cb3fe0a00000000000cbbfd0a00000000000cbbff2200000000000cbbff5c00000000000cb3ff5c00000000000cbbfe9000000000000cbbff5c00000000000cb3fc6c00000000000cbbfc7c00000000000cbbfe0800000000000cbbff1c00000000000cbbfe0e00000000000cbbfc7e00000000000cbbf92200000000000cb3ff4400000000000cbbff3a00000000000cbbfd1a00000000000cb3fe2c00000000000cb3fdcc00000000000cbbfef800000000000cb3ff6600000000000cb3fd1400000000000cbbfde400000000000cb3fc9400000000000cb3feae00000000000cbbfc9c00000000000cbbfd4800000000000cb3fcca00000000000cbbff5a00000000000cbbfb7800000000000cb3fd3400000000000cbbff0c00000000000cb3fe8000000000000cb3ff0800000000000cbbff7000000000000cb3fb8400000000000cbbfe7200000000000cb3ff2c00000000000cbbfe5e00000000000cb3fe5200000000000cb3ff6000000000000cb3fe0c00000000000cbbff7e00000000000cb3ff4a00000000000cbbfee000000000000cb3feb800000000000cbbfda800000000000cbbff8800000000000cb3fe1c00000000000cb3fcf200000000000cb3fae200000000000cb3fef800000000000cbbfd4000000000000cbbff5600000000000cb3ffc200000000000cbbfcba00000000000cb3fd9800000000000cbbfe0400000000000cb3fa1400000000000cb3fe7400000000000cb3fd6e00000000000cb3fe7400000000000cb4001600000000000cb3fbd800000000000cbbfde400000000000cb3ff7000000000000cbbfcee00000000000cb3fe3a00000000000cb3ff5400000000000cbbfffa00000000000cbbff9a00000000000cb3fd7e00000000000cb4001200000000000cb3feb000000000000cb3ff0400000000000cb3fef000000000000cbbfe4600000000000cb3ffa000000000000cbbfe6200000000000cbbff9200000000000cb3fe9200000000000cb3fe1c00000000000cb3ff3a00000000000cb3fd1c00000000000cbbff5600000000000cbbfd4200000000000cb3fe4c00000000000cb3fdd000000000000cb3ff2400000000000cbc001000000000000cb3fb3400000000000cb3fe2800000000000cb4000800000000000cbbfbc000000000000cb3ffa000000000000cb3fe5c00000000000cbbfd5200000000000cbbff7c00000000000cbbfefe00000000000cb3ffa600000000000cb3fd9c00000000000cb3faa000000000000cb3ffa200000000000cbbff0200000000000cbbfe5c00000000000cb3fefa00000000000cbbfc5400000000000cbbff2800000000000cb3fc5200000000000cb3fac000000000000cbbff4200000000000cbbfc4c00000000000cbbfd0e00000000000cb3ffb800000000000cb3ff3400000000000cb3fee600000000000cbbfe9400000000000cb3fee400000000000cbbff3200000000000cbbfe5c00000000000cbbff2e00000000000cb3ff3000000000000cb3feae00000000000cbbff1a00000000000cb3fe2600000000000cb3fde400000000000cb3f8b800000000000cbbfe9c00000000000cbbfe6000000000000cb3fea200000000000cb3fdb200000000000cb3ff2a00000000000cb3fe8200000000000cb3fefc00000000000cbbfe0000000000000cbbff1c00000000000cbbffdc00000000000cbbfe7800000000000cb3fea400000000000cbbff2800000000000cbbfe2200000000000cb3fe0800000000000cb3fede00000000000cbbff3000000000000cb3fc8c00000000000cb3fd2000000000000cbbff9e00000000000cb3fc6a00000000000cbbfe3a00000000000cbbffe000000000000cbbfe5c00000000000cb3ff2600000000000cb3ff0a00000000000cb3fe0200000000000cbbfecc00000000000cb3ff1000000000000cbbfd2c00000000000cbbfe8000000000000cbbff0a00000000000cb3fcbe00000000000cb3fdbc00000000000cb3fe1c00000000000cb3ff1c00000000000cb3feb600000000000cbbff0a00000000000cb3fc3c00000000000cb3fc0000000000000cbbfe7800000000000cb3fc2800000000000cbbff3a00000000000cb3ff5a00000000000cbbff5800000000000cb3ff0c00000000000cb3fe7000000000000cb3fd5800000000000cb3fb6800000000000cbbfa3800000000000cb3ff4200000000000cbbfe0600000000000cb3feae00000000000cb3fe0400000000000cbbfe4200000000000cbbfe7400000000000cbbff7e00000000000cbbfcf000000000000cb3fe5200000000000cbbfebc00000000000cb3fde000000000000cb3fc4c00000000000cbbfb6a00000000000cb3fed200000000000cbbfd6a00000000000cb3fc6a00000000000cb3fdd800000000000cb3ffb000000000000cb3fd5600000000000cb3fecc00000000000cb3f81200000000000cb3fed800000000000cbbfd9000000000000cb3ff1000000000000cbbfcba00000000000cb3fe0e00000000000cbbff7000000000000cbbfed000000000000cbbfdfc00000000000cbbffc600000000000cbbfda800000000000cbbff8e00000000000cb3ff8a00000000000cb3f7dc00000000000cb3ff8600000000000cb3feb600000000000cbbffac00000000000cbbfdc200000000000cb3ff9800000000000cbbf97200000000000cb3fba800000000000cb3fed800000000000cbbff6c00000000000cbbfc8e00000000000cb3fd9200000000000cbbff0800000000000cbbfe2800000000000cb3fbb000000000000cbbfe9600000000000cbbfcd200000000000cb3ff1400000000000cb3fde600000000000cbbfcd800000000000cb3fc2c00000000000cbbfe9c00000000000cb3fcae00000000000cbbff0a00000000000cb3ff2000000000000cb3ff0a00000000000cb3fee600000000000cb3fec000000000000cbbff2200000000000cbbfe8e00000000000cb3ff7a00000000000cb3fe0800000000000cbbfcf800000000000cb3ff0c00000000000cbbf99800000000000cbbfdd200000000000cbbff0a00000000000cbbff2c00000000000cbbff3800000000000cb3fe6000000000000cb3ff4c00000000000cb3ffe200000000000cbbfd8c00000000000cbbfcec00000000000cbbff0400000000000cbbfff600000000000cbbfe3c00000000000cbbfb4e00000000000cb3ff6200000000000cb3fc6600000000000cb3ff5c00000000000cbbfe6800000000000cb3ff6e00000000000cb3fea800000000000cbbff4a00000000000cb3fe3200000000000cbbfc9e00000000000cbbfd8c00000000000cbbffce00000000000cbbfc5c00000000000cbc005200000000000cb3ff0800000000000cbbfd0a00000000000cb3fdf400000000000cb3fa6400000000000cb3fe8400000000000cb3ff2a00000000000cb3ffb200000000000cbbff1c00000000000cbbff6800000000000cb3fd5e00000000000cb3ff0800000000000cb3fc1400000000000cbbfe5e00000000000cbbfc9400000000000cb3fea400000000000cbbfe4400000000000cbbfcdc00000000000cbbfeca00000000000cb4005600000000000cb3fcea00000000000cbbfe0c00000000000cbbff7000000000000cb3fec400000000000cb3fc2800000000000cb3fe9400000000000cb3fc0400000000000cb3fd4e00000000000cb3fe0600000000000cb3fef000000000000cbc000e00000000000cb3f48000000000000cbbfc5600000000000cbc005000000000000cb3fdfc00000000000cb3fd5800000000000cb3fe6e00000000000cb3fdda00000000000cb3fa8e00000000000cbbff2400000000000cbbfcd000000000000cb3fe2a00000000000cb400b200000000000cb3fdb400000000000cbbfed200000000000cbbfc2800000000000cb3fede00000000000cb3fce40000000000001cbbfd1a00000000000cbbfe8c00000000000cbbfd0200000000000cbbf9f800000000000cbbfb8200000000000cbbff5800000000000cb4001600000000000cbbfe3800000000000cbbfdc600000000000cbbfb2e00000000000cbbff3e00000000000cb3fd4a00000000000cb3fb9400000000000cbbfe5c00000000000cb3ff0600000000000cb3fd3200000000000cb3feb600000000000cb3fd9400000000000cb3ff8a00000000000cbbffb000000000000cbbff1c00000000000cbbfece00000000000cb3ffce00000000000cbbfe9200000000000cb4001000000000000cbbfe1a00000000000cbbffb600000000000cbbfe2e00000000000cbbfc9800000000000cb3fc3200000000000cbbfcaa00000000000cb3fea800000000000cb3fecc00000000000cb3fd9c00000000000cb3feb600000000000cbbfe8e00000000000cb3fd7c00000000000cbbfe1600000000000cbbfd5000000000000cb3fd2400000000000cb3fb0600000000000cbbfb0400000000000cb3feca00000000000cb3fe1a00000000000cb3fdb800000000000cb3ff9200000000000cbbfe6e00000000000cb3ff5400000000000cb3fce600000000000cb3ff0c00000000000cbbff4600000000000cbbfcee00000000000cbbfd8800000000000cb3feea00000000000cbbfe0600000000000cbbfc8000000000000cbbfe3a00000000000cb3fede00000000000cb3fef600000000000cbbfc9a00000000000cbbff1200000000000cb3fe5400000000000cb3fdb000000000000cb3fe9800000000000cbbfe3600000000000cbbfa6000000000000cbbfcce00000000000cb3fa9200000000000cbbfb2400000000000cbc004a00000000000cb3fec000000000000cbbffc400000000000cb4000200000000000cb3ffba00000000000cb3ff5c00000000000cb3ff6800000000000cbbfef400000000000cb3fe6000000000000cbbfd0200000000000cbbfbba00000000000cbbfd3c00000000000cb3fd5200000000000cb3fb9000000000000cb3ff0c00000000000cb3f98c00000000000cb3fdc000000000000cbc000800000000000cb3fede00000000000cbbff6e00000000000cbbfcfc00000000000cb3fdd000000000000cb3fe7600000000000cb3fd6c00000000000cbbff7800000000000cbbfe5a00000000000cbbfe2c00000000000cbbff1c00000000000cb3ff4400000000000cb3ff6800000000000cb3ff5e00000000000cbc002200000000000cb3fe8c00000000000cb3fe8400000000000cbbfd8800000000000cbbffba00000000000cb4003000000000000cb3fe9400000000000cb3fa4400000000000cbbfd0800000000000cbbffec00000000000cbbfffa00000000000cbbfe2600000000000cb3fc9a00000000000cb3ff2600000000000cb3fd9e00000000000cbbfdda00000000000cb3ff1000000000000cbbfede00000000000cbbfea600000000000cb3fe9c00000000000cbbff1400000000000cbbff4c00000000000cb3fd4400000000000cb3fe0800000000000cb3fcfc00000000000cbbfed600000000000cbbfd7c00000000000cbbfede00000000000cb3fe3200000000000cb3fdf600000000000cbbfdee00000000000cb3f9e800000000000cb3ff2200000000000cb3fec200000000000cbbffc600000000000cb3fb7000000000000cb3ffa800000000000cbc002a00000000000cb4001400000000000cbbfce600000000000cb3fa0400000000000cb3feca00000000000cbc002a00000000000cbbfece00000000000cb3ffc600000000000cbbfda000000000000cbbfda600000000000cbbfd7000000000000cb3fe9c00000000000cb3feaa00000000000cbbfe0c00000000000cbbfd5c00000000000cbbfe0e00000000000cb3fb4200000000000cbbfe1200000000000cbbfdd200000000000cb3ff8a00000000000cbbfd0800000000000cb3ff6e00000000000cb3fc2c00000000000cb3fe3800000000000cb3fec400000000000cbbff3a00000000000cb3fe3000000000000cb3fe9800000000000cbbfe2400000000000cbbfeca00000000000cb3fe5c00000000000cb3fc0a00000000000cbbffb000000000000cbbfd3c00000000000cb3fd0800000000000cb3fe4800000000000cbbfe8e00000000000cbbff3e00000000000cbbfdd600000000000cbbfab400000000000cbbfefa00000000000cbbfe6400000000000cb3fcae00000000000cb3fcb400000000000cbbfc7400000000000cbbfe2000000000000cbbfcc200000000000cb3ffba00000000000cb4002200000000000cb3fd4800000000000cbbff1c00000000000cb3fd8800000000000cbbfd8800000000000cbbfdb400000000000cbbfe5a00000000000cb3fdda00000000000cb3ffb600000000000cb3ff0a00000000000cbbfe1000000000000cb3fa7e00000000000cbbff7600000000000cbbfe9400000000000cbbfe1a00000000000cbc000200000000000cbbfd2a00000000000cbbfdb600000000000cb3fbc400000000000cb3fdee00000000000cb3ff6400000000000cb3ffb600000000000cb3fbec00000000000cbbfd0a00000000000cbbfc5000000000000cb3fc9a00000000000cb3fec800000000000cb3fc7e00000000000cb3fce000000000000cbbfdc400000000000cbbfc1400000000000cbbfe8600000000000cb3fe4200000000000cbbfc5000000000000cbbff9800000000000cb3fddc00000000000cbbfe2000000000000cbbfabc00000000000cb3ff0e00000000000cbbfcb600000000000cbbfe1400000000000cbbff8400000000000cbbfd5800000000000cb3fd9a00000000000cbbff1400000000000cb3fd9800000000000cbbfcac00000000000cbbfd7e00000000000cb3fe8000000000000cb3ff7400000000000cb3fee000000000000cbbfe0a00000000000cbbfabe00000000000cb3fe1600000000000cbbffae00000000000cb3fd0400000000000cb3ff3200000000000cbc001800000000000cb3ff1800000000000cbbfebc00000000000cbbfe1e00000000000cb3fd4c00000000000cbbff4800000000000cbbff4a00000000000cbbff8000000000000cbbf8f000000000000cb3fd0000000000000cb3fe7c00000000000cb3fff800000000000cbbff5800000000000cb3fd3800000000000cb3fc9400000000000cb3ff4800000000000cbbfdda00000000000cbbf9dc00000000000cb3ff3800000000000cbbff1800000000000cb3fe5600000000000cbbfe3a00000000000cbbfe1c00000000000cbbfffe00000000000cbbfe1a00000000000cbbfd2000000000000cbbff3c00000000000cbbff4000000000000cbbfd9200000000000cb3fe6e00000000000cb3ff4800000000000cbbfc3200000000000cb3feee00000000000cb3fd2400000000000cb3fb5e00000000000cbbff3000000000000cbbfdd600000000000cbbfd0200000000000cb3ff6800000000000cbbffd400000000000cb3fd7800000000000cb3fa3800000000000cbbff9400000000000cb3fe5000000000000cbbfd1400000000000cbc003400000000000cb3fd7e00000000000cbbfa3e00000000000cbbfe9a00000000000cb3fd4000000000000cb3fdfc00000000000cbbfc5e00000000000cb3fdc000000000000cb3ff4200000000000cbc004000000000000cb3fb7000000000000cbbfeae00000000000cb3ffba00000000000cbbff5400000000000cb3fcee00000000000cb3fe2600000000000cb3fe5a00000000000cbbfd6000000000000cbbfd1200000000000cb3fe7400000000000cbbfda800000000000cbbfe4600000000000cb3ff5000000000000cb3fdf000000000000cb3ff0c00000000000cbbfe4400000000000cb3ff4a00000000000cbbfd3200000000000cbbfbec00000000000cb3fe1e00000000000cb3ff1400000000000cbbfe2000000000000cb3fef000000000000cbbfbae00000000000cb3fde200000000000cbbf86400000000000cb3fca800000000000cbbfdca00000000000cbbff7a00000000000cb3fe5200000000000cbbfb9a00000000000cbbfb0000000000000cbbf9dc00000000000cbbfefc00000000000cbbfe9600000000000cb3fdce00000000000cb3ff0e00000000000cbbfe2000000000000cbbffac00000000000cbc001800000000000cb3fd0600000000000cbbfd8c00000000000cb3fdde00000000000cbbffa600000000000cb3fed600000000000cb3ff7400000000000cb3fece00000000000cb3fe5800000000000cb3ff1400000000000cb3ffb200000000000cb3fe2e00000000000cbbfe0a00000000000cb3fed600000000000cbbfe4e00000000000cbbfef400000000000cbbfeee00000000000cbbfddc00000000000cb3fe2e00000000000cbbfe7c00000000000cb3ff0200000000000cbbf95a00000000000cb3ff1e00000000000cbbfb9000000000000cb4008e00000000000cb3fdee00000000000cbbf84800000000000cbbfce200000000000cbbff2c00000000000cbbff8e00000000000cb3fe6c00000000000cbbfb6600000000000cb3fcb400000000000cbbfdc200000000000cbbff3000000000000cbbfeb600000000000cbbfc6400000000000cb3fbe800000000000cbbfee800000000000cbbfd3a00000000000cbbfc8000000000000cb3feca00000000000cbbff3200000000000cb3fc2000000000000cbbfe8400000000000cbbff7000000000000cbbfd9600000000000cbbff8c00000000000cb3ffde00000000000cbbfed200000000000cbbfcbe00000000000cb3ff6200000000000cbbffba0000000000001cbbfee200000000000cbbff4e00000000000cbbfedc00000000000cb3fe3800000000000cb3fc7c00000000000cbbfe4a00000000000cb3fd5200000000000cbbfe6200000000000cbbfd4e00000000000cbbff1400000000000cbbfeea00000000000cbbfd0e00000000000cbbfeb800000000000cbbff8200000000000cb3fec000000000000cbbfe3600000000000cb3fea000000000000cbbff2c00000000000cbbfe7000000000000cb3fe5600000000000cb3fdb600000000000cbbfdea00000000000cb3feba00000000000cbbfefa00000000000cbbffae00000000000cbbfe9e00000000000cbbfd6c00000000000cbbffde00000000000cb3fe1400000000000cb3ff6000000000000cbbffaa00000000000cbbff0400000000000cbbff2400000000000cb3ff1c00000000000cb3fed200000000000cb3fc9000000000000cbbfe4200000000000cbbfee000000000000cbbfbf600000000000cb3fe6200000000000cbbfc5000000000000cb3fdd800000000000cbbfbe200000000000cbbfc6c00000000000cb3ff1200000000000cbbff6000000000000cbbfeee00000000000cb3fd3c00000000000cbbfe2000000000000cb3fec000000000000cbbfc4000000000000cb3fd9200000000000cbbfea800000000000cb3fe4200000000000cb3ff8e00000000000cbbfec000000000000cb3ff3000000000000cb3ff3800000000000cbbfda200000000000cb4002e00000000000cb3fef000000000000cbbff3e00000000000cbbfe5c00000000000cbbfdbc00000000000cbbff6600000000000cbbfe5600000000000cb3ff4400000000000cb3fe7c00000000000cb3fcda00000000000cb3fea000000000000cbbfcd800000000000cb3ff9c00000000000cbbfe5c00000000000cbbfe7000000000000cb3fc2c00000000000cbbfd3800000000000cb3fc8e00000000000cb3fe7a00000000000cbbff7600000000000cbbfec200000000000cb3fe7200000000000cbbfe3a00000000000cb3fff600000000000cbbff9600000000000cbbfe5e00000000000cbbfec000000000000cb3ff3400000000000cbbfd9c00000000000cb3fd4200000000000cbbffaa00000000000cb3fe2000000000000cb3ff1600000000000cbbfd0600000000000cb3ff4400000000000cbbfd0200000000000cb3fd9e00000000000cb3fe7800000000000cb3fc4c00000000000cb3fc3800000000000cbbf88000000000000cbbfb3800000000000cbbfcde00000000000cb3ffb800000000000cbbfd1800000000000cb3fc3a00000000000cbbfe2a00000000000cbbfe2c00000000000cbbfd2800000000000cb3fe6600000000000cbbfeae00000000000cb3febc00000000000cbbfe1800000000000cb3fc3a00000000000cb3ff1c00000000000cb3fc1000000000000cbbfd5c00000000000cbbfd8600000000000cb3ff1a00000000000cb3ff2e00000000000cbbff1a00000000000cbbfe9000000000000cbbfed600000000000cb3ff6200000000000cb3fe0600000000000cb3fff200000000000cb3fe0600000000000cb3fb5600000000000cb3fc4c00000000000cbbfe3800000000000cb3fe7800000000000cb3ff5400000000000cbbfe0000000000000cbbff5800000000000cbbfd8c00000000000cbbfd2000000000000cbbfc5600000000000cbbfc3200000000000cbbfc9800000000000cb3fcd800000000000cb3fd6800000000000cb3fdf400000000000cb3fdf800000000000cbbfe6a00000000000cbbfe7600000000000cbbfe6600000000000cbc000a00000000000cb3fd3400000000000cb3fd3200000000000cbbfd4400000000000cb3fd3400000000000cbbfcc000000000000cbbfc5600000000000cb3fc7000000000000cbbff1800000000000cbbfe5000000000000cb3fc2c00000000000cbbff2200000000000cb3fffc00000000000cbbffc600000000000cb3ff3800000000000cb3ff8200000000000cb3ff2600000000000cb3fe8400000000000cb3fe3400000000000cb3fe7200000000000cbbfdcc00000000000cb3fcf400000000000cbbfffe00000000000cbc000400000000000cbbff0600000000000cbbff3c00000000000cbbfe7400000000000cb3ff0c00000000000cb3fe4800000000000cbbf93e00000000000cbc001400000000000cbbff9200000000000cb3f6c000000000000cbbfbca00000000000cbbfd1400000000000cb3fe6000000000000cb3ff2200000000000cb3fdb800000000000cbbfe6800000000000cb3fec200000000000cb3ff1400000000000cbbfd1200000000000cb3ff1400000000000cb3fe5c00000000000cbbff0400000000000cb3ff8a00000000000cb3fa7e00000000000cb3fd2c00000000000cb3fe8c00000000000cbbfecc00000000000cbbfe1000000000000cb3ff5c00000000000cbc002800000000000cb3ff1e00000000000cbbfd9000000000000cb3fe9000000000000cbbfd7c00000000000cb3ff1600000000000cb3fe3400000000000cbbff4400000000000cbbfec200000000000cb3feb000000000000cbbfe8e00000000000cb3fff800000000000cbbfffc00000000000cb3faa000000000000cb3fdf200000000000cbbfb6600000000000cbbfcb200000000000cbbffa800000000000cbbfe6c00000000000cbbfe8e00000000000cbbff4a00000000000cb4002000000000000cbbff1800000000000cb3fe4e00000000000cb3ff4c00000000000cb3fdda00000000000cbbff9000000000000cbbfc5800000000000cb3fe0600000000000cbbfec000000000000cbbffd200000000000cbbff0e00000000000cb3ff5200000000000cbbfc8200000000000cbbfe5200000000000cb3ff8200000000000cb3ffaa00000000000cb3ff9800000000000cbbfe6600000000000cbbfcde00000000000cbbfdd000000000000cbbff3000000000000cb3fba000000000000cb3ff9000000000000cb3ffde00000000000cb3fe7200000000000cbbffbe00000000000cb3ff8e00000000000cb3fe0e00000000000cbbfc3a00000000000cbbfb1000000000000cbbfda400000000000cb3fe1400000000000cb3fe3c00000000000cb3fdb000000000000cb3fb9a00000000000cb3fd4400000000000cb3fec000000000000cb3fd3c00000000000cb3fb8000000000000cbbfd1800000000000cbbfa5800000000000cbbfe7400000000000cb3fc5200000000000cbbfc1200000000000cb3fff800000000000cbbff8e00000000000cb3fba200000000000cbbff5c00000000000cbbfc8600000000000cb3fe2c00000000000cbbfd3e00000000000cb3ff3800000000000cb3ffbe00000000000cb3fd9600000000000cb3fc2400000000000cbbfe5e00000000000cbbfbb000000000000aa32393530393133322d3892cb40402927917ca680dc0400cb3fe3400000000000cb3fe1400000000000cb3feda00000000000cb3fe1800000000000cbbfe9600000000000cbbfd4200000000000cbbfe3a00000000000cb3fe8000000000000cb3ff0200000000000cb3ff0a00000000000cb3ff9200000000000cb3f90800000000000cbbfdf800000000000cb3fd2c00000000000cb3fe7400000000000cb4000e00000000000cb3fefa00000000000cb3fa8800000000000cb3f7a400000000000cb3fd3400000000000cbc008200000000000cbbfe6200000000000cb3ff7800000000000cb3ffc800000000000cb3fcf000000000000cbbfe0400000000000cbbff0e00000000000cb4000a00000000000cbbfeea00000000000cb3fe5c00000000000cb3fc7600000000000cb3ffac00000000000cb3fef000000000000cbbfd8600000000000cbbfc5c00000000000cbbfe5c00000000000cbbfe0c00000000000cb3fd1e00000000000cb3ff5600000000000cbbfee200000000000cb3fee600000000000cbbfd0a00000000000cbbfe5e00000000000cbbff1c00000000000cb3ff5800000000000cbbfe8600000000000cbbfe6a00000000000cb3fe4a00000000000cbbfde200000000000cbbfe1600000000000cbbfd4800000000000cb3fd8400000000000cb3fc3400000000000cb3fc8800000000000cb3ff4600000000000cbbfee200000000000cb3f70000000000000cb3ff1000000000000cb3fd3800000000000cbbfe8c00000000000cb3ff3600000000000cb3fe5600000000000cbbfee600000000000cbbfd9200000000000cb3fcf400000000000cbbf9e400000000000cb3fd7e00000000000cbbfb2200000000000cbbfea800000000000cbbfea800000000000cb3fc2600000000000cbbfec800000000000cb3fdbc00000000000cb3fe9400000000000cbbfede00000000000cbbf7e000000000000cbbff8400000000000cb3ffd800000000000cbbfdb800000000000cbbfc3c00000000000cb3ff9200000000000cbbfe9600000000000cbc004000000000000cb3fefc00000000000cbbff2200000000000cb3fab800000000000cbbfc9a00000000000cbbfdcc00000000000cb3ff5e00000000000cb3fe4c00000000000cbbfdba00000000000cb3fef000000000000cbbff2600000000000cbbff2400000000000cb3ff4000000000000cb3fe1400000000000cb3fc3000000000000cb3fe7400000000000cbbff2600000000000cb3fe9800000000000cb3ff1c00000000000cb3fe5200000000000cb3ff6400000000000cb3fdce00000000000cbbff5600000000000cb3ff1000000000000cbbffc400000000000cbbfeb400000000000cb3fef800000000000cbbff7400000000000cb3fcf600000000000cb3fefc00000000000cb4004200000000000cb3fdc800000000000cbbf71800000000000cb3ff3600000000000cbbff6e00000000000cb3fd7200000000000cbbfe2e00000000000cb3fba600000000000cb3ff5800000000000cbbfd8800000000000cb3fdca00000000000cbbff1a00000000000cbc000a00000000000cbbfd3800000000000cb3ff3600000000000cb3fe7200000000000cbbfd4e00000000000cbbffa400000000000cb3fb0800000000000cb3fea200000000000cb3fff600000000000cbbfdd200000000000cb3ffb600000000000cb3fe0200000000000cbbfe2a00000000000cbbfee400000000000cbbfdc000000000000cb3ffb200000000000cb3fe3e00000000000cb3feba00000000000cb3ff0800000000000cbbff0a00000000000cbbf88c00000000000cb3fe8600000000000cbbff1400000000000cbbff2800000000000cbbfd9800000000000cb3fa9e00000000000cbbffae00000000000cbbfdbe00000000000cbbffea00000000000cb3fe0400000000000cb3ff6a00000000000cb3ff6200000000000cbbfdb600000000000cb3ff1400000000000cbbfef200000000000cbbfdf400000000000cbbff6c00000000000cb3fe2e00000000000cb3ffc000000000000cbbff3400000000000cb3fe1800000000000cb3feca00000000000cb3fb3400000000000cbbfd2400000000000cbbff1c00000000000cb3ff1600000000000cb3fb1200000000000cb3ff8800000000000cbbf70800000000000cb3fffa00000000000cbbfd4200000000000cbbfd7400000000000cbbffe400000000000cb3fb6400000000000cb3fd0a00000000000cbbfe7200000000000cbbfe4600000000000cb3febe00000000000cb3fc7c00000000000cbc000800000000000cbbfad000000000000cb3fe2000000000000cbbff9600000000000cb3fcc000000000000cb3fd2400000000000cbbff3a00000000000ffcb3feac00000000000cb3fe9600000000000cbbf92a00000000000cbbff2000000000000cb3fe5400000000000cb3fc9000000000000cbbfe6c00000000000cbbff4600000000000cbbfcbc00000000000cbbfb8600000000000cb3ff6600000000000cb3ff4a00000000000cbbfe2200000000000cbbffc200000000000cbbfbce00000000000cb3fe5800000000000cbbff2800000000000cb3fc1c00000000000cbbff3600000000000cb3ffa600000000000cbbfe9200000000000cb3fb6600000000000cbbfb6000000000000cb3fc2e00000000000cbbfc9800000000000cb3fe4400000000000cb3ffde00000000000cbbfc8600000000000cbbfb5c00000000000cb3fe5600000000000cbbfe6000000000000cbbfd9200000000000cbc004a00000000000cbbfd4400000000000cbbfd0000000000000cbbfa6000000000000cbbf91800000000000cb3feda00000000000cbbff5400000000000cb3ff0600000000000cb3fd0c00000000000cbbfdc800000000000cbbfdfc00000000000cb3ffa200000000000cb3fc0400000000000cb3ff1600000000000cb3ff3800000000000cb3ffaa00000000000cb3f90a00000000000cb3fe5e00000000000cbbfdea00000000000cb3fc1000000000000cbbff9000000000000cbbff1c00000000000cb3fdd800000000000cbbffa800000000000cbbfef400000000000cbbfcfe00000000000cb3ffb600000000000cbbfbcc00000000000cb4003000000000000cb3fe2200000000000cbc001800000000000cbbff0200000000000cb3feb800000000000cb3fed800000000000cbbfef200000000000cb3fdb800000000000cbbff7400000000000cb3fe7800000000000cbbfe4e00000000000ffcbbfe0400000000000cbbfe0600000000000cbbff2a00000000000cbbfd9c00000000000cb3ff6800000000000cb3fede00000000000cbbfd5200000000000cbbfb5000000000000cbbff2c00000000000cbbfbc800000000000cbbfec000000000000cb3fee400000000000cb3fe4c00000000000cb3ffd200000000000cb3fd8e00000000000cbbff9000000000000ffcb3ff6c00000000000cbbfaca00000000000cbbfe1200000000000cb3feaa00000000000cb3fb1800000000000cbbfe2400000000000cbbfc2000000000000cbbfefe00000000000cbbff8c00000000000cb3feaa00000000000cb3fe6c00000000000cb3ff6800000000000cbbff6c00000000000cbbfc7a00000000000cb3fc0a00000000000cbc003800000000000cb3fd1c00000000000cbbfdc600000000000cb3ff8200000000000cb3fc1a00000000000cb3ff6600000000000cbbfe2000000000000cb3fff400000000000cb3ff7800000000000cbbffb800000000000cb3ff3e00000000000cbbfdb800000000000cbbfd3400000000000cbbfffc00000000000cb3feba00000000000cbc005400000000000cb3fee400000000000cb3fa7a00000000000cbbfb2c00000000000cb3fdf000000000000cb3fd3400000000000cb3fe5400000000000cb3feca00000000000cbbfdba00000000000cbbffb800000000000cb3fc4e00000000000cb3fed000000000000cbbf40000000000000cbbff9000000000000cb3fd0200000000000cb3fe2600000000000cbbfff000000000000cb3ff6400000000000cbbfe7e00000000000cb3ff0a00000000000cb3fd9c00000000000cbbfc0000000000000cbbff3a00000000000cb3ff3600000000000cb3fcf800000000000cbbfc3e00000000000cbbfc0400000000000cb3fc0a00000000000cb3fd1400000000000cb3ff9000000000000cbbff5e00000000000cb3fea600000000000cb3ffb200000000000cbc007200000000000cb3ff5c00000000000cb3fbdc00000000000cb3fec000000000000cb3ff3400000000000cb3f91800000000000cbbff0800000000000cbbfcb000000000000cbbfe3200000000000cb4003400000000000cb3fd0e00000000000cb3fe5400000000000cbbfe7200000000000cb3ff5600000000000cb3fcbc00000000000cb3fef400000000000cb3fd9600000000000cbbff8000000000000cbbfb3400000000000cbbfe1800000000000cbbfe3000000000000cbbff5200000000000cb3ff3800000000000cbbff9400000000000cbbfd2600000000000cbbfece00000000000cb3fe3600000000000cb3fe5800000000000cbbfb3200000000000cb3f9e400000000000cb3ff1e00000000000cb3feac00000000000cb3fe8200000000000cbbfe3200000000000cb3fb0200000000000cbbffc200000000000cbbfe7000000000000cbbff0c00000000000cb3ffb200000000000cbbff2200000000000cb4005600000000000cbbfa3c00000000000cbbffc400000000000cbbfeae00000000000cbbfd3200000000000cb3fe9a00000000000cb3fcd400000000000cb3ff8a00000000000cb3ff0200000000000cbbfd1c00000000000cb3f4f600000000000cb3fac200000000000cb3ff1000000000000cbbfbee00000000000cbbfd2800000000000cb3ff0800000000000cbbfcfc00000000000cb3fcda00000000000cb3ffaa00000000000cb3fed600000000000cb3ff4c00000000000cb4002400000000000cbbfe3e00000000000cb3ff8e00000000000cbbfba200000000000cb3fe2400000000000cbbfe3c00000000000cb3fe5e00000000000cb3fed000000000000cb3fb5400000000000cb3fe3800000000000cb3fd8800000000000cbbfe1c00000000000cb3ffaa00000000000cbbfd8600000000000cbbfc5000000000000cbbffa000000000000cb3fec800000000000cb3fc8600000000000cb3fe9c00000000000cbbfeea00000000000cb3fe0800000000000cb3fdc800000000000cbbfcda00000000000cbbf8c400000000000cbc005c00000000000cb3f91a00000000000cbbff5200000000000cb3ff8e00000000000cb3ff3000000000000cb3ff6c00000000000cb3ffbc00000000000cbbff1a00000000000cb3fe8600000000000cbbfb0e00000000000cbbfeca00000000000cbbfdd200000000000cbbfc6600000000000cbbfb0000000000000cb4002c00000000000cb3ff2000000000000cbbfe6600000000000cbbff3a00000000000cb3fff800000000000cbbfe7000000000000cbbfea600000000000cb3fdbe00000000000cb3fe0a00000000000cb3fdc400000000000cbbff6200000000000cbbfe0400000000000cb3fb1c00000000000cbbfd1000000000000cb4000c00000000000cb4001200000000000cb3ffd200000000000cbc008800000000000cb3f92400000000000cb3febc00000000000cb3fd0800000000000cbc003800000000000cb4005400000000000cbbfc4800000000000cb3f8b600000000000cb3fc3800000000000cbbff4a00000000000cbbfd1c00000000000cbbfd9400000000000cb3fce400000000000cb3fe6c00000000000cb3fb8e00000000000cb3fe2000000000000cb3fec400000000000cbbff2a00000000000cbc000200000000000cb3fd2a00000000000cbbff0200000000000cbbff0e00000000000cbbfb7200000000000cb3fe8e00000000000cb3fe6400000000000cb3f8ae00000000000cbbfd1000000000000cbbff5e00000000000cb3fec600000000000cb3fe9800000000000cbbfa2000000000000cb3fda800000000000cbbfe0400000000000cb3ff7e00000000000cbc000800000000000cbbfede00000000000cb3ff3400000000000cbbfeea00000000000cb4006400000000000cb3fcb200000000000cb3fe2200000000000cb3fd1200000000000cbbffd400000000000cbbff6000000000000cb3ffdc00000000000cbbfe0a00000000000cbbfdbe00000000000cbbfed000000000000cb3ff4e00000000000cb3feb000000000000cb3fc9400000000000cb3fa2600000000000cbbfd7000000000000cbbfe6400000000000cbbfd1a00000000000cbbfe5600000000000cb3fec800000000000cb3fe8600000000000cb3ff9c00000000000cb3fc6200000000000cb3fa5e00000000000cb3ff6800000000000cbbfea200000000000cb3ff9200000000000cb4000400000000000cbbff9800000000000cbbff4200000000000cb3fd1c00000000000cb3fde800000000000cbbffde00000000000cb3fc9a00000000000cbbfecc00000000000cbbfc4a00000000000cbbfdae00000000000cbbffa600000000000cb3fe9400000000000cb3fd5000000000000cbbf88800000000000cbbfc6e00000000000cb3fe980000000000001cbbff3a00000000000cb3feec00000000000cb3fcac00000000000cb3ffc600000000000cb4001800000000000cb3ff6200000000000cbbfe7e00000000000cb3ff5e00000000000cb3fd0200000000000cbbfef200000000000cbbfed200000000000cb3ff2000000000000cb3fe7000000000000cb3feae00000000000cbbfeb600000000000cbbfd4800000000000cbbff2c00000000000cbbfe0200000000000cb3fdba00000000000cbbff7000000000000cb3fc9600000000000cbbfd1600000000000cbbfe0600000000000cbbfd9a00000000000cb3fdc200000000000cb3ff2e00000000000cb3fbf800000000000cb3fc3600000000000cb3fe4c00000000000cbbff5a00000000000cb3ff3600000000000cb3fe4800000000000cb3fd9000000000000cbbfdb600000000000cb3fcec00000000000cbbfe9c00000000000cb3fe4200000000000cb3ff4400000000000cbbffa000000000000cb3fe3600000000000cbbfe3400000000000cb3fa2800000000000cb3fe6e00000000000cbbfe6600000000000cbbfce400000000000cbbffe200000000000cbbfc6a00000000000cb3ff1c00000000000cbbfe9400000000000cbbfa6c00000000000cbbfec200000000000cb3fcde00000000000cbbfcba00000000000cb3ff1e00000000000cb3fe7c00000000000cb3fe2e00000000000cb3fb4c00000000000cbbfc4c00000000000cbc001200000000000cbbfea400000000000cb3fc0a00000000000cbc008600000000000cb3ff4000000000000cbbfdb600000000000cbbfe1a00000000000cb3fd9c00000000000cbbfed800000000000cbbff9000000000000cbc003000000000000cbbfde800000000000cbbf96600000000000cb3fd1e00000000000cb3fee000000000000cbbff5a00000000000cbbfcd400000000000cb3fcc400000000000cb3fe0a00000000000cb3fdac00000000000cb3fbbc00000000000cb3ff8a00000000000cbbfef000000000000cb3feb000000000000cbc001200000000000cbbfe5000000000000cbbfe3400000000000cb3fc8000000000000cbbfe8200000000000cbbfdf800000000000cbc002000000000000cb3fc0200000000000cbbfb4000000000000cb3fdbe00000000000cb3fefe00000000000cb3fe4400000000000cbbfd6800000000000cb3fc0800000000000cbbfd8e00000000000cbbfbc400000000000cbbfd8200000000000cb3fe7600000000000cbbffd800000000000cbbfdca00000000000cbbfed600000000000cbbff8600000000000cb3febe00000000000cbbfc8600000000000cbc005e00000000000cb3fd9000000000000cbbfb3400000000000cbbfd5400000000000cbbfd2a00000000000cb3feae00000000000cbbfd0c00000000000cbbf8e800000000000cb3fff800000000000cbbff5400000000000cb3fd9a00000000000cb3fe3800000000000cb3ff5a00000000000cbbfda000000000000cbbfe6400000000000cb3fcd800000000000cb3ff4c00000000000cb3fd3400000000000cbbfd9a00000000000cb3fef400000000000cbbfc6c00000000000cbbfdf600000000000cb3ffe400000000000cb3ff3200000000000cbbfed000000000000cbbfe6000000000000cb3ff3800000000000cbbfa3800000000000cb3fbce00000000000cb3fb3000000000000cb3ff1800000000000cbbfd0000000000000cb3fed800000000000cbbfde000000000000cb3ffa800000000000cb3fb4e00000000000cbbff0400000000000cbbfeb800000000000cbbfc1800000000000cbbfa3000000000000cbbfcbc00000000000cbbfa5800000000000cbbfe3000000000000cbbfcd000000000000cbbfe3800000000000cb3fe6400000000000cb3fea000000000000cbbfe8c00000000000cbbfe3e00000000000cbbffd400000000000cb3ff5200000000000cbbff4a00000000000cb3fd3600000000000cbc002800000000000cb3fd7000000000000cb3fe0200000000000cb3fef000000000000cb3ff3c00000000000cb3ff3a00000000000cb3ffa600000000000cb3fdb600000000000cbbfeb600000000000cbbfd2600000000000cbbfe0e00000000000cbbff7c00000000000cbbfec800000000000cbbfb4400000000000cb3ff9c00000000000cbbff2e00000000000cb3ff6800000000000cb3feac00000000000cb3fd5000000000000cbbfd2400000000000cb4004600000000000cb3ff6000000000000cbbff2c00000000000cbbfe0600000000000cbbff0800000000000cbbfe5e00000000000cb3ffcc00000000000cbbfd4600000000000cbbfc8a00000000000cbbfb6c00000000000cbbff0a00000000000cbbfd6000000000000cbbfe1000000000000cbbfcf400000000000cbbfec800000000000cbbfef800000000000cbbfe2400000000000cb3ff4200000000000cbbffc200000000000cbbfda200000000000cbbfe4600000000000cbbff5c00000000000cb3fe1200000000000cbc000400000000000cb4003a00000000000cbbfee800000000000cbbfb4a00000000000cb3feaa00000000000cbbffee00000000000cb3fef600000000000cbbfec600000000000cbbff3600000000000cbbff9800000000000cb3fe2e00000000000cbbfc3a00000000000cbbfc6600000000000cbbf9c200000000000cbbfeaa00000000000cbbfc5000000000000cbbff0c00000000000cbbfefc00000000000cbbfee600000000000cbbfdac00000000000cbbff3200000000000cb3fe0a00000000000cbbfdac00000000000cb3fdd000000000000cbbff9a00000000000cbbff6c00000000000cb3ff5400000000000cbbfd0200000000000cbbfd1200000000000cb3fe5400000000000cbbff0400000000000cbbff1200000000000cbbffbc00000000000cbbfe6400000000000cbbfffc00000000000cb3ff3200000000000cb3ff3a00000000000cbbff4e00000000000cbbfddc00000000000cbbfece00000000000cb3ff5c00000000000cb3fd7e00000000000cb3feee00000000000cbbfbc400000000000cb3fd0400000000000cbbfa4a00000000000cbbfa5600000000000cb3fd2400000000000cb3fdc800000000000cb3ff5000000000000cbbfc5800000000000cb3fe0c00000000000cbbff6400000000000cbbff2600000000000cb3fe3a00000000000cbbfd5800000000000cb3fe7200000000000cb3fb3a00000000000cbbfe6a00000000000cbbfe5200000000000cb3fd2000000000000cb3ff2800000000000cbbfd7400000000000cb3fe4200000000000cb3fd8400000000000cbbfd5200000000000cb3ff2800000000000cb3fb8600000000000cbbff6a00000000000cbbfeae00000000000cb3f95400000000000cb3fb4600000000000cb3fb7200000000000cb3ff1000000000000cb3ff5800000000000cb3fd7e00000000000cb3fd7000000000000cb3fd3800000000000cb3ff6200000000000cbbfd3400000000000cbbfe2400000000000cbbfc8e00000000000cbbfcbe00000000000cb3fe4400000000000cb3feda00000000000cbbff3400000000000cbbfe2400000000000cb3fd2200000000000cbbfdbc00000000000cb3ffaa00000000000cbbffa200000000000cbbfe2800000000000cbbfc4600000000000cb3fe7400000000000cb3f61800000000000cbbfd5a00000000000cbbfe6c00000000000cbbff1400000000000cb3ff5600000000000cbbff6400000000000cb3fef000000000000cbbff0e00000000000cbbfe1600000000000cb3fb3c00000000000cb3ff0800000000000cbbfdac00000000000cbbff5e00000000000cbbfea200000000000cbbfef800000000000cb3fff800000000000cbbfeca00000000000cbbfdd000000000000cbbfca200000000000cbbfde000000000000cbbfdf800000000000cb3fede00000000000cbbfcca00000000000cbbfda000000000000cbbfd6600000000000cb3fe0000000000000cb3ff6800000000000cbbf72000000000000cb3fe4200000000000cbbfb0000000000000cbbfe0a00000000000cb3ffa600000000000cbbfe6000000000000cbbff7a00000000000cbbffe200000000000cb3f71c00000000000cb3fe3600000000000cb4004400000000000cb3fe4200000000000cb3fa7a00000000000cbbfe2400000000000cbbff2600000000000cb4006c00000000000cb3fea800000000000cbbfe1200000000000cbbfe9400000000000cb3fd6200000000000cbbfe8c00000000000cbbff2200000000000cbbff7c00000000000cb3fb7c00000000000cb3fdba00000000000cbbfe8c00000000000cb3fe7c00000000000cb3ff3800000000000cbbfeda00000000000cbbfce600000000000cbbfef000000000000cbbffd200000000000cbbfd8a00000000000cb3fe5000000000000cbbfb8800000000000cbbfd4000000000000cbbfe0000000000000cb3fc6200000000000cb3fdf600000000000cbbfeb200000000000cbbfab800000000000cbbfdbc00000000000cbbfc4400000000000cb3ff6c00000000000cbbff3a00000000000cb3fa2e00000000000cb3ffb400000000000cb3ff5400000000000cb3ff9200000000000cb3fcc600000000000cbbfd8000000000000cbbfd6000000000000cbbfa6400000000000cbbff4c00000000000cbbff0a00000000000cbbfe7e00000000000cbbfd9200000000000cbbfd3400000000000cb3fe6000000000000cbbfac800000000000cb3fd5800000000000cbbffa800000000000cbbff2600000000000cb3fd0200000000000cbbfdac00000000000cb3fb5e00000000000cb3f8c400000000000cbbfc6400000000000cbbfece00000000000cbbfb2000000000000cb3fda800000000000cb3feee00000000000cbbfeb200000000000cb3ff8600000000000cb3fd2200000000000cbbfde400000000000cb3fe5e00000000000cbbff6a00000000000cb3fd2000000000000cb3fe9800000000000cbbff8000000000000cbbfda600000000000cbbfdba00000000000cbbff3000000000000cb3ff4600000000000cb3ff3a00000000000cb3ff1400000000000cbbfe1e00000000000cb3fe8800000000000cb3fa1800000000000cbbffd200000000000cbbfe7800000000000cb3ffba00000000000cb3faf400000000000cb3fe5800000000000cbc003c00000000000cbbfd2c00000000000cb3fed800000000000cbbfd5000000000000cbbfd8000000000000cbbff7c00000000000cbbfeb800000000000cbbfd9600000000000cbbfe7000000000000cb3ff5a00000000000fecb3fee800000000000cb3fe8200000000000cb3fd2000000000000cbbffa800000000000cbbfc4600000000000cb3fdb600000000000cbbff8c00000000000cbc000200000000000cbbfc3400000000000cb3feb400000000000cbbfc6600000000000cbbff4400000000000cb3fec400000000000cb3ffda00000000000cb3ff6800000000000cbbff0a00000000000cbbfc1a00000000000cb3fe4c00000000000cbbffe800000000000cb3fcb200000000000cb3fe5200000000000cb4003000000000000cbbfde600000000000cbbfddc00000000000cb3ff7c00000000000cb3ff5200000000000cbbfd5a00000000000cbbfee600000000000cbbfd7e00000000000cb3fe4a00000000000cb3ff8400000000000cb3ff3c00000000000cbbfc2a00000000000cb3fc7c00000000000cb3fd9400000000000cb3fe5800000000000cb3ff3400000000000cb3fa8c00000000000cbbfb3200000000000cbbfb7400000000000cb3ff2c00000000000cbbfbe400000000000cb3ff3400000000000cbbff4000000000000cb3fcb800000000000cbbfedc00000000000cbbfdd000000000000cb3fae800000000000cb3fba400000000000cb3fe1800000000000cb3fec000000000000cb3ff1800000000000cb3fd8400000000000cbbffa400000000000cbbfbf400000000000aa32393530393133322d3992cb403f31e1abf10035dc0400cb3fe3400000000000cb3fe3e00000000000cb3ff6000000000000cb3fe2400000000000cbbfe8800000000000cbbfcba00000000000cbbfb5c00000000000cb3feca00000000000cbbf8d800000000000cb3fe4400000000000cb3ff2400000000000cb3fe6c00000000000cbbff0a00000000000cbbfcf400000000000cb3ff0400000000000cb3ff3200000000000cb3fd9000000000000cb3fe6600000000000cb3ff6600000000000cb3fcde00000000000cbc001600000000000cbbfe9600000000000cb3ffa800000000000cb3fe5c00000000000cb3feaa00000000000cbbf98800000000000cbbff0e00000000000cb4001600000000000cbbfd2e00000000000cb3fea200000000000cb3fe1e00000000000cb3fef200000000000cbbfdf400000000000cbbfee800000000000cb3fbb600000000000cbbfd2400000000000cbbfda200000000000cb3fd1000000000000cb3fbac00000000000cbbff4200000000000cb3fdc600000000000cb3fe5000000000000cbbfeb400000000000cbbff4e00000000000cb3ffe800000000000cbbfeec00000000000cbc000200000000000cb3fd0a00000000000cbbfe1600000000000cbbfdea00000000000cbbfe9400000000000cbbfcb600000000000cbbfd2200000000000cbbfeb400000000000cb3ffa400000000000cbbff3c00000000000cbbfee200000000000cb3fe5000000000000cb3fe6600000000000cbbfef000000000000cb3ff3a00000000000cb3fe2200000000000cbbff0a00000000000cb3fe6200000000000cbbfd3000000000000cbbfe0600000000000cb3feb800000000000cb3f98a00000000000cbbffb400000000000cb3fd1400000000000cb3fe2800000000000cbbff4000000000000cb3fe7200000000000cb3ff8800000000000cbbff9c00000000000cbbfd6800000000000cbbff0a00000000000cb3ff2600000000000cbbff4a00000000000cb3fdc400000000000cb3ff3400000000000cb3fd6800000000000cbc000800000000000cb3ff8600000000000cbbfeee00000000000cb3fd7000000000000cbbfe8a00000000000cbbff6400000000000cb3fd9600000000000cbbfcfe00000000000cbbfd0e00000000000cb3ff0a00000000000cbbf94200000000000cbbff7a00000000000cb3ffd400000000000cb3fd2400000000000cb3fdea00000000000cbbfde400000000000cbbfd5c00000000000cb3fe1a00000000000cb3fe3a00000000000cb3fe8000000000000cb3ff6600000000000cb3fdb400000000000cbbfdf000000000000cb3ff6c00000000000cbbfde200000000000cbbfeae00000000000cb3ffd800000000000cbbff9800000000000cbbfbb000000000000cb3fe6c00000000000cb4003200000000000cb3ff5200000000000cb3fdb000000000000cb3ffb000000000000cbbff8000000000000cb3ff5a00000000000cbbff3200000000000cbbff1200000000000cb3ff1c00000000000cb3fbfc00000000000cb3fe5000000000000cbbfe0a00000000000cbbff1e00000000000cbbfc2c00000000000cb3fe7e00000000000cb3fde200000000000cb3ff9000000000000cbbffaa00000000000cbbf84000000000000cb3ff0a00000000000cb4005000000000000cb3fb2e00000000000cb3ff4e00000000000cb3fe4c00000000000cbbff0e00000000000cbc004800000000000cbbff1000000000000cb3ff4400000000000cb3ffb400000000000cbbfd1400000000000cb3ff9c00000000000cbbfda000000000000cbbf99400000000000cb3ffa000000000000cbbff3400000000000cbbff2200000000000cb3fd6800000000000cb3fd5c00000000000cbbffe600000000000cb3f40000000000000cbbfe3800000000000cb3ffea00000000000cb3ff4e00000000000cb3ff0e00000000000cbbfec000000000000cb3fd7800000000000cbbff4600000000000cbbfec400000000000cbbfe4000000000000cb3fe8400000000000cb3fef400000000000cbbff4e00000000000cb3fe8a00000000000cb3fa3800000000000cbbfd0e00000000000cbbfd4e00000000000cbbffa400000000000cb3ff8600000000000cb3feb800000000000cb3ffc200000000000cb3fe9c00000000000cb3ff7000000000000cbbfe9600000000000cbbfd7e00000000000cbbff4000000000000cbbfe1e00000000000cb3fd4000000000000cbbff1800000000000cbbf91200000000000cb3fec000000000000cbbfc0a00000000000cbbff3800000000000cbbfc9200000000000cbbfd1e00000000000cbbfe7800000000000cb3fd4400000000000cbbfcd000000000000cbbffb400000000000cbbff1400000000000cb3fd7800000000000cb3feb800000000000cb3fc6200000000000cbbfec400000000000cb3fe1a00000000000cbbfcb400000000000cb3f89000000000000cbbfe0400000000000cb3fde000000000000cb3fc5400000000000cb3ff0200000000000cb3fe7800000000000cb3feb200000000000cbbfe6a00000000000cbbfd2400000000000cb3fe1800000000000cbbfec600000000000cbbfda200000000000cbbff5e00000000000cb3ff0800000000000cbbff2a00000000000cb3fef000000000000cb3fc4e00000000000cb3fe0200000000000cb3fb9000000000000cb3fe8600000000000cb3ffec00000000000cb3fb2e00000000000cb3ff0200000000000cb3fd9600000000000cbbff4800000000000cb3fd2a00000000000cbbff6e00000000000cbbfe6a00000000000cb3fefe00000000000cbbfe9800000000000cb3fda200000000000cb3fc5000000000000cbbfeaa00000000000cb3fe0200000000000cb3fa1c00000000000cbbfd7000000000000cbbfdac00000000000cb3febe00000000000cb3fdca00000000000cb3feee00000000000cb3fd6800000000000cb3fdca00000000000cbbfe2800000000000cb3ff3800000000000cbbfb6c00000000000cb3fee800000000000cbbfff600000000000cbbff1e00000000000cb3fe7200000000000cbbff9000000000000cbbfc4c00000000000cbbff3e00000000000cb3ff2400000000000cb3fdc200000000000cb3ffca00000000000cb3fda600000000000cbbffb000000000000cbbfd1200000000000cb3ff2c00000000000cb3fc7400000000000cbbfd5800000000000cb3fc7400000000000cbbfe8000000000000cb3f87e00000000000cbbfc1400000000000cbbfe5800000000000cbbfe0c00000000000cbbfe0000000000000cbc000c00000000000cbbfb9c00000000000cb3ff2a00000000000cb3fd8800000000000cbbfcba00000000000cb3fc3200000000000cbbfe2e00000000000cb3fd3a00000000000cbbff1000000000000cb3fd5400000000000cb3fe1e00000000000cb3ff8800000000000cb3fe4800000000000cbbff5400000000000cbbff5800000000000cb3fefe00000000000cb3fe6600000000000cbbfc0c00000000000cb3ff4200000000000cbbfd1c00000000000cb3fd7600000000000cbbfeec00000000000cbbfe9200000000000cbbff0c00000000000cb3ff3400000000000cb3ff1800000000000cb3ffde00000000000cbbff2200000000000cb3fd0600000000000cbbfee000000000000cbbfffe00000000000cbbfd4c00000000000cbbfe1c00000000000cb3ffec00000000000cbbfd7200000000000cb3fe2600000000000cbbffa800000000000cb3fe8e00000000000cb3fe8c00000000000cbbff0e00000000000cb3fe8600000000000cbbfcee00000000000cb3fc4600000000000cbc001600000000000cbbfc4600000000000cbbffb400000000000cb3fe2600000000000cbbfd5e00000000000cbbfb7000000000000cbbfe4e00000000000cb3febc00000000000cb3ff8800000000000cb4001e00000000000cb3fb4600000000000cbbff7400000000000cb3ff2800000000000cb3fec600000000000cb3fe7e00000000000cbbff3c00000000000cbbfd7600000000000cb3fe0a00000000000cbbfdb800000000000cb3fe6e00000000000cbbfdca00000000000cb3ff4400000000000cbbfcaa00000000000cbbfdfa00000000000cbbff2600000000000cb3fea200000000000cb3fdd000000000000cbbfb3a00000000000cb3fe9600000000000cbbfd9200000000000cb3fd9600000000000cb3fe9800000000000cbc001600000000000cb3fe3a00000000000cbbfa6600000000000cbc003e00000000000cb3feae00000000000cb3fc0a00000000000cb3fdec00000000000cbbfd0400000000000cbbfc6e00000000000cbbfeda00000000000cbbfe4400000000000cb3feac00000000000cb4009400000000000cbbfe7e00000000000cbbfe1c00000000000cbbfd4c00000000000cb3fe9600000000000cb3fbe600000000000cb3feee00000000000cbbfe0c00000000000cbbfc4e00000000000cbbfe3c00000000000cbbfe1a00000000000cb3fc9600000000000cbbff360000000000002cbbfe6200000000000cbbfdaa00000000000cb3fb4400000000000cbbfd1000000000000cb3fd5200000000000cb3fdaa00000000000cbbff0a00000000000cb3ff4c00000000000cb3fe7400000000000cb3ff4000000000000cb3fb3c00000000000cb3feec00000000000cbbffb000000000000cbbff3a00000000000cbbfe9800000000000cb4001400000000000cbbfe2e00000000000cb4001600000000000cbbfd2000000000000cbc001c00000000000cbbfe8200000000000cbbfe6200000000000cb3fc1e00000000000cbbfde800000000000cb3ff2800000000000cb3ff4c00000000000cbbfc2400000000000cb3ff1400000000000cbbfe4a00000000000cb3fe2200000000000cbbfce000000000000cbbfe9a00000000000cbbfce000000000000cbbfe3a00000000000cbbfd0200000000000cb3fe6600000000000cb3fe7c00000000000cb3febc00000000000cb3ff3a00000000000ffcb3ff5a00000000000cbbfd8800000000000cb3ff1800000000000cbbff0600000000000cbbfd7600000000000cb3f9b800000000000cb3fe2400000000000cb3fb1800000000000cbbfe7c00000000000cbbf81800000000000cb3ff7800000000000cb3ff0c00000000000cbbfdec00000000000cbbff4c00000000000cb3fd580000000000001cb3ff3800000000000cbbfee400000000000cb3f9ce00000000000cb3fc3000000000000cbbfd1800000000000cbbfc9c00000000000cbbffd400000000000cb3fde800000000000cbbff8e00000000000cb3fec800000000000cb3ffd400000000000cb3ff1c00000000000cb3fe8800000000000cbbff1c00000000000cb3fbde00000000000cbbfe1e00000000000cbbfcaa00000000000cbbfe5200000000000cb3fe5800000000000cb3fe9000000000000cb3ff7400000000000cb3ff2400000000000cbbfd3c00000000000cbbff9200000000000cb3fff000000000000cbbff1e00000000000cbbfed600000000000cb3feca00000000000cb3fbcc00000000000cb3fb5800000000000cbbff2800000000000cbbfcb400000000000cbbfd9000000000000cbbffbe00000000000cb3ffaa00000000000cb3fefe00000000000cb3ff2200000000000cbc004c00000000000cb3fc8a00000000000cb3ff3000000000000cbbfc7800000000000fecb4002400000000000cb3fef800000000000cb3fcc800000000000cb3fa9800000000000cbbff7400000000000cbbff6800000000000cbbfd9400000000000cb3fd4c00000000000cbbfc5800000000000cb3fe9400000000000cbbfd1000000000000cb3fecc00000000000cbbff8e00000000000cbbff8600000000000cb3fe8c00000000000cbbff1c00000000000cbbff8200000000000cb3fe3c00000000000cb3fd7000000000000cb3fdbc00000000000cbbfc6a00000000000cb3fd2200000000000cbbfe4e00000000000cb3ff3800000000000cb3fe2c00000000000cbbfc7c00000000000cbbf97c00000000000cb3fc6800000000000cb3febc00000000000cbbff0c00000000000cb3fbc000000000000cb4000c00000000000cbc004a00000000000cb4000400000000000cb3fcf200000000000cb3fd1800000000000cb3fe3600000000000cbbff7600000000000cbbfe5400000000000cb4004400000000000cbbf97000000000000cbbfd2a00000000000cbbfd6c00000000000cb3ff2a00000000000cb3ffd400000000000cbbfc8400000000000cb3fccc00000000000cbbfd1e00000000000cbbfebe00000000000cbbfe2600000000000cbbff2600000000000cb3ff1800000000000cb3f97c00000000000cb3ff0c00000000000cbbfa0e00000000000cb3ff4000000000000cb3ff9200000000000cbbff7c00000000000cb3fe4c00000000000cb3ffb200000000000cbbfdd800000000000cbbff7000000000000cb3ff1200000000000cb3fe0600000000000cbc000600000000000cb3fe0000000000000cb3ff0400000000000cb3fcbe00000000000cbbfe7400000000000cbbff1c00000000000cb3fdb200000000000cbbff1600000000000cbbfe2200000000000cbbfd6200000000000cb3fd6e00000000000cb3fd3e00000000000cb3fb6200000000000cbbfd8000000000000cbbfa3000000000000cb3ff0400000000000cb4005e00000000000cb3fcf000000000000cbbfe9800000000000cb3fe6a00000000000cbbfeba00000000000cbbff2000000000000cbbfd7800000000000cb3fe5600000000000cb3fe5600000000000cb3fe6800000000000cbbfe1e00000000000cbbfb5a00000000000cbbff7600000000000cbbfd3200000000000cbbfba000000000000cbc004a00000000000cbbfe4a00000000000cbbfd8400000000000cbbfd1e00000000000cb3fd5c00000000000cb3ff3600000000000cb3ff5c00000000000cb3fd7600000000000cb3fa3c00000000000cb3fe1600000000000cb3fc9400000000000cb3fd7e00000000000cbbfb3600000000000cb3ff3600000000000cbbfeb800000000000cbbfda400000000000cbbfeaa00000000000cb3fe1000000000000cbbfc2c00000000000cbbfe9e00000000000cb3fd0400000000000cbbfdd600000000000cb3fb3e00000000000cb3fe6c00000000000cbbfe3000000000000cbbfc9200000000000cbbffca00000000000cbbfd4c00000000000cb3fe3c00000000000cbbffaa00000000000cb3fca800000000000cb3fc6400000000000cbbfb0c00000000000cb3fe8200000000000cb3ffac00000000000cb3fc1800000000000cb3fe1200000000000cb3fe2200000000000cb3fe6800000000000cbbff5a00000000000cb3fdb600000000000cb3fe4800000000000cbc002e00000000000cb3fcea00000000000cbbfe6e00000000000cbbfe1e00000000000cb3fe6a00000000000cbbfddc00000000000cbbff0400000000000cbc002a00000000000cbbfb5c00000000000cbbfcda00000000000cb3ff1c00000000000cb3ff6000000000000cbbffce00000000000cb3fc3000000000000cb3ff1a00000000000cb3fe6a00000000000cb3fb2800000000000cb3fccc00000000000cb3feec00000000000cbbff2c00000000000cb3fdee00000000000cbbff8a00000000000cbbfe9a00000000000cbbff3600000000000cbbfd4600000000000cbbfd8e00000000000cbbfd2800000000000cbbff8000000000000cb3fd6a00000000000cb3ff2a00000000000cb3fdb000000000000cbbfd7800000000000cb3fe6600000000000cbbfb9000000000000cbbfc6800000000000cbbfe5400000000000cb3fba400000000000cbbfbcc00000000000cb3fe2800000000000cbbffc000000000000cbbfe3400000000000cb3fcda00000000000cbbff2600000000000cb3febc00000000000cbbfb2400000000000cbc003000000000000cb3fdd400000000000cbbfb7800000000000cb3fd5a00000000000cbbfb9c00000000000cb3feae00000000000cbbfa7200000000000cb3fe6000000000000cb3ff1200000000000cbc000a00000000000cb3fcec00000000000cb3f7d000000000000cb3ff5e00000000000cbbff2a00000000000cbbfdc000000000000cb3fe3600000000000cb3fe9600000000000cbbff2e00000000000cbbfe6400000000000cb3fe8200000000000cb3fe5c00000000000cbbfc1400000000000cb3ff1800000000000cb3ff2200000000000cb3fe7800000000000cbbfc7400000000000cb3ff6c00000000000cb3fc6000000000000cbbfc4800000000000cb3fe7a00000000000cb3ff4800000000000cbbfe8a00000000000cb3ff6a00000000000cb3fb0600000000000cbbfdf800000000000cbbfe2400000000000cbbfd0600000000000cbbfe2400000000000cbbff1800000000000cb3fe8c00000000000cbbfe1a00000000000cbbfc8000000000000cbbf8ac00000000000cbbff6200000000000cbbfe9a00000000000cb3fda000000000000cb3fe9000000000000cbbff2e00000000000cbbffaa00000000000cbbff1a00000000000cb3fdfc00000000000cbbfd0200000000000cb3fcc400000000000cbbffb400000000000cb3fd4200000000000cb3ff7600000000000cb3fe7c00000000000cb3fdee00000000000cb3ff8800000000000cb3ff5c00000000000cb3fe0a00000000000cb3fcd200000000000cb3fe7800000000000cbbfe6a00000000000cbbfe6400000000000cbbfe7000000000000cbbfc4000000000000cb3feac00000000000cbbfeec00000000000cb3ffa600000000000cb3fe5800000000000cb3fea200000000000cbbfd9600000000000cb4005600000000000cb3fef400000000000cb3fcb600000000000cbbfd0e00000000000cbbfefa00000000000cbbfeec00000000000cb3ff0e00000000000cbbfd4800000000000cb3fe9400000000000cbbfe4c00000000000cbbfee200000000000cbbff2600000000000cb3fc4e00000000000cbbfc1e00000000000cbbff1200000000000cb3fd4200000000000cbbfbb800000000000cb3ff1000000000000cbbffc400000000000cb3fd6a00000000000cbbff5200000000000cbbfe2a00000000000cbbfba200000000000cbbff2800000000000cb3fff800000000000cbbff2400000000000cb3fd8400000000000cb3ff3400000000000cbbff7c00000000000cb3ff3600000000000cbbff1200000000000cbbfebc00000000000cbbff4000000000000cb3fdc800000000000cbbfd1800000000000cbbfe2600000000000cbbfd3600000000000cbbfb0e00000000000cb3fd4400000000000cbbff8400000000000cbbfd3400000000000cbbfee800000000000cbbff2800000000000cbbff6600000000000cbbfc5e00000000000cbbfe2000000000000cb3fe0c00000000000cbbffb200000000000cbbfbb200000000000cb3ff0200000000000cbbfe0600000000000cbbfe3400000000000cb3ff4400000000000ffcbbff7600000000000cbbfcf400000000000cbbfe8600000000000cbbffa400000000000cb3feda00000000000cb3ff6000000000000cbbfe9000000000000cbbff9000000000000cbbff5600000000000cb3fe6200000000000cb3fe7a00000000000cb3fe5600000000000cbbfe7600000000000cb3fb7a00000000000cbbfd9400000000000cb3fdc200000000000cbbfe1200000000000cb3fc0a00000000000cb3fe1400000000000cbbfe9e00000000000cb3ff4200000000000cbbfe9800000000000cbbfe9800000000000cb3fde400000000000cbbfb2200000000000cb3ff2800000000000cb3fd6000000000000cb3fe7800000000000cbbfe2400000000000cb3ff5800000000000cb3fefe00000000000cbbff4e00000000000cb3fe6a00000000000cb3fe2e00000000000cbbfc6200000000000cb3feca00000000000cb3fdf200000000000cbc002e00000000000cbbfc4600000000000cbbfc5800000000000cbbff5400000000000cbbff6000000000000cb3ff8c00000000000cb3ff5600000000000cb3ff5000000000000cb3fe0200000000000cbbfe0200000000000cb3fe7a00000000000cbbfeb800000000000cbbfe6800000000000cb3fe1e00000000000cb3fde800000000000cb3fc3600000000000cb3fe9e00000000000cbbff4000000000000cbbfef800000000000cb3ff2a00000000000cbbfe6200000000000cb3ffd600000000000cbbfe2000000000000cb3f91000000000000cb3fcf600000000000cb3feba00000000000cb3fc4c00000000000cb3fbe800000000000cbbff3000000000000cb3fe1a00000000000cb3fe7a00000000000cb3fd4000000000000cb3ff1600000000000cbbff1c00000000000cb3fcc200000000000cb3fea600000000000cb3fe8e00000000000cbbfe6c00000000000cbbfc5c00000000000cbbfe3c00000000000cbbfd6400000000000cb3ffc800000000000cbbfef600000000000cbbfe0c00000000000cbbfdbc00000000000cbbff0200000000000cbbfc8400000000000cb3fdb200000000000cbbff0e00000000000cb3fdd400000000000cb3fcdc00000000000cbbf9de00000000000cb3fdc200000000000cbbfc2200000000000cbbfece00000000000cbbfed200000000000cb3fdc200000000000cb3ff0a00000000000cbbffda00000000000cbbfdc400000000000cbbff4200000000000cb3fdc000000000000cb3fdac00000000000cb4006000000000000cb3fea000000000000cb3fab000000000000cbbfe3400000000000cbbfe0e00000000000cb3ff8400000000000cb3ff1e00000000000cbbfe5200000000000cbbfdcc00000000000cbbfc4200000000000cbbfe2e00000000000cbbfc6800000000000cb3fb7800000000000cbbfe8c00000000000cb3fcf800000000000cbbf86600000000000cb3fd9200000000000cb3fd2600000000000cbbfe2e00000000000cbbfe1400000000000cbbff4000000000000cbbffe200000000000cb3fb3600000000000cb3fdc800000000000cb3fe9800000000000cb3fbe200000000000cb3fd6a00000000000cbbfea800000000000cb3fedc00000000000cbbff0800000000000cbbfdbe00000000000cb3fe0a00000000000cbbfef400000000000cb4002000000000000cbbff4c00000000000cb3fdc800000000000cb3ff1c00000000000cb3fde600000000000cb3ff2000000000000cb3fee400000000000cb3ff3000000000000cbbfe0600000000000cb3fbb400000000000cbbff7200000000000cbbffa400000000000cbbfe4600000000000cbbff2600000000000cbbff1a00000000000cb3fe3800000000000cb3fee600000000000cb3fe5600000000000cbbff6e00000000000cbbff3a00000000000cb3fe1600000000000cbbfc1000000000000cbbfdfe00000000000cb3fd4800000000000cb3ff4400000000000cb3fbac00000000000cbbfe7800000000000cb3fd9e00000000000cb3fbfe00000000000cbbff1400000000000cb3ff2800000000000cb3fe6a00000000000cbbff8600000000000cb3ff3400000000000cbbfd4c00000000000cb3fd1400000000000cb3ff4a00000000000cb3fa4c00000000000cb3fa4600000000000cb3fdac00000000000cbbff4e00000000000cb3fe6800000000000cbbfc6800000000000cb3fd6a00000000000cbbfd4800000000000cb3fef000000000000cbbfbe200000000000cbbffda00000000000cbbfdc600000000000cb3ff2e00000000000cbbff1a00000000000cb3ff7c00000000000cbc001c00000000000cbbfd5000000000000cb3fe4600000000000cb3fe1c00000000000cbbfdd400000000000cbbff0400000000000cbbff2c00000000000cbbfea600000000000cbbfe3200000000000cb3ff7200000000000cbbff2a00000000000cb3fb6400000000000cb3ff9c00000000000cb3feb200000000000cbbff5200000000000cb3fe0e00000000000cb3fd1400000000000cbbff6e00000000000cbc000400000000000cbbfe8400000000000cb3ff4c00000000000cbbfdcc00000000000cbbfe8800000000000cb3ff6600000000000cb4001c00000000000cb3ffda00000000000cbbfe6800000000000cb3fb5600000000000cbbfe7a00000000000cbbff8000000000000cbbfcd000000000000cb3ffc600000000000cb3ffb200000000000cb3ff7c00000000000cbbff6800000000000cb3ffba00000000000cb3fc2c00000000000cbbfdba00000000000cbbfc5e00000000000cbbfe1200000000000cb3fe6400000000000cb3feaa00000000000cb3fe1000000000000cb3fda800000000000cb3ff0e00000000000cb3fe5400000000000cb3ff0800000000000cb3fd0400000000000cbbfcf800000000000cb3fa7a00000000000cbbfef200000000000cb3fa4800000000000cbbfedc00000000000cb3ff6a00000000000cbbffdc00000000000cb3fe8400000000000cbbfeec00000000000cb3fce800000000000cb3fe9c00000000000cbbfde200000000000cb3ff9200000000000cb3ff5200000000000cbbfd1600000000000cb3fe3200000000000cbbff7a00000000000cb3fe1e00000000000ab32393530393133322d313092cb403fc000592c98b5dc0400cb3fab000000000000cb3fc1400000000000cb3ff3c00000000000cb3fd9600000000000cbbfe5000000000000cb3f97600000000000cb3fd3800000000000cb3ff5a00000000000cb3ff6400000000000cb3ff2a00000000000cb3feb800000000000cb3fb8000000000000cbbff3c00000000000cbbfd1400000000000cb3fec800000000000cb3ffc200000000000cb3ff0200000000000cb3fd2a0000000000001cb3ff3e00000000000cbc007a00000000000cbbfa8200000000000cb3ff6600000000000cb3ff8600000000000cb3fd5400000000000cb3fba200000000000cbbfea400000000000cb4002e00000000000cbbfc8e00000000000cb3fdc800000000000cb3fe6000000000000cb3ff0600000000000cb3fdb400000000000cbbff0200000000000cbbfed200000000000cbbfcb200000000000cb3fec800000000000cb3fd9000000000000cb3ff0a00000000000cbbff4c00000000000cb3ff9600000000000cb3fd9c00000000000cbbff1000000000000cbbfe2400000000000cb3ffea00000000000cbbfe1400000000000cbbff4800000000000cbbfd7600000000000cbbfe1800000000000cbbff1c00000000000cbbfd1600000000000cbbfdd400000000000cbbfa1800000000000cb3fcfe00000000000cb3ff6000000000000cbbffa000000000000cbbfc7000000000000cb3ff3000000000000cb3fe0400000000000cbbfec800000000000cb3ff3200000000000cb3fe2600000000000cbbfccc00000000000cbbfde000000000000cbbfcaa00000000000cb3fd1400000000000cb3fece00000000000cb3fc4000000000000cbbfcd000000000000cbbfae800000000000cb3f60000000000000cbbfed000000000000cb4000400000000000cb3ff1e00000000000cbbff2a00000000000cbbfe7000000000000cbbfdfc00000000000cb3fdfa00000000000cbbff0e00000000000cb3fce000000000000cb3fefe00000000000cb3fd4a00000000000cbc005800000000000cb3fe6400000000000cbbfc5400000000000cbbfcdc00000000000cbbfa7a00000000000cbbfea800000000000cb3fe1e00000000000cb3fb5800000000000cb3fb3e00000000000cb3fcd400000000000cbbfe0800000000000cbbff3400000000000cb3ff0800000000000cb3fd0800000000000cb3fbe200000000000cb3faaa00000000000cbbfe7a00000000000cb3fe8000000000000cb3fe7600000000000cb3fe0200000000000cb3ffa000000000000cb3f8b800000000000cbbfe7c00000000000cb3ff6800000000000cbbffe600000000000cbbfe1000000000000cb3ff0a00000000000cbbff4c00000000000cbbfe1e00000000000cb3fed800000000000cb4005200000000000cb3ff5a00000000000cb3fe6800000000000cb3fec400000000000cbbfef400000000000cb3fe7e00000000000cbbfc3400000000000ffcb3ff8600000000000cb3fdea00000000000cb3fd3600000000000cbbfce400000000000cbbff7400000000000cbbfe0600000000000cb3fea200000000000cb3fdc400000000000cb3fe3e00000000000cbbff3600000000000cbbfbb600000000000cb3ff4200000000000cb4005000000000000cb3fe5e00000000000cb4002600000000000cb3fe5200000000000cbbfd3c00000000000cbbff2200000000000cbbfd4600000000000cb3ff6400000000000cb3ff2c00000000000cb3fe9000000000000cb3fdfa00000000000cbbff3600000000000cbbfb8a00000000000cb3ff2c00000000000cbbfd5400000000000cbbfed600000000000cbbfe7800000000000cb3fcb800000000000cbbff4e00000000000cbbfd7000000000000cbbff1000000000000cb3ff2600000000000cb3ff8e00000000000cb3ff3600000000000cbbfe2c00000000000cb3fe8c00000000000cbc000a00000000000cbbfeee00000000000cbbffca00000000000cb3fc2000000000000cb3fffe00000000000cbbfee400000000000cb3fe3800000000000cb3fe2200000000000cbbfe6e00000000000cbbff3800000000000cbbff5600000000000cb3ff3600000000000cb3fda000000000000cb4002600000000000cb3feae00000000000cb3ff5e00000000000cb3fd9400000000000cbbfc2800000000000cbbff4600000000000cbbfac200000000000cb3feae00000000000cbbfe3400000000000cbbfe4e00000000000cb3ff8e00000000000cbbfa9600000000000cbbff7000000000000cbbfe7800000000000cb3fd5800000000000cbbffa600000000000cbbfe1600000000000cb3fdb000000000000cbbff1e00000000000cbbff3c00000000000cb3ff0e00000000000cb3fd9a00000000000cb3fcb200000000000cbbff2800000000000cb3fc1400000000000cb3fc7e00000000000cbbfe7c00000000000cbbfe4e00000000000cb3fe9000000000000cb3feb800000000000cb3fd3400000000000cb3fe9c00000000000cb3fe0000000000000cbbff0e00000000000cb3fd7c00000000000cb3fbe000000000000cbbff1400000000000cb3fe5200000000000cbbff3200000000000cb4004400000000000cbbff3800000000000cb3ff2400000000000cb3fe4e00000000000cb3fa3c00000000000cbbfb2a00000000000cb3fef800000000000cb3ffcc00000000000cbbfdba00000000000cb3fe4a00000000000cb3fe1800000000000cbbfe1200000000000cb3fd0400000000000cbbff5600000000000cbbfe2800000000000cbbfbe400000000000cbbfd9c00000000000cbbfb6c00000000000cb3fd7000000000000cbbff1800000000000cb3fef000000000000cb3fd5400000000000cb3f81800000000000cb3fe7400000000000cb3fe1a00000000000cbbfc7e00000000000cb3ff9600000000000cb3fe9400000000000cb3fe9800000000000cbbfdcc00000000000cb3fe7200000000000cbbfa8e00000000000cb3fd0e00000000000cbbffcc00000000000cbbfeb200000000000cb3fc6a00000000000cbbff9400000000000cbbfbae00000000000cbbfe9200000000000cb3ff9a00000000000cb3fe7c00000000000cb3ff9e00000000000cb3feea00000000000cbc003c00000000000cbbfe2a00000000000cb3fe4200000000000cb3fe2e00000000000cbbfeee00000000000cb3fd2200000000000cbbfec000000000000cb3fd4600000000000cbbfd2000000000000cbbff8600000000000cbbfd5e00000000000cbbfe8200000000000cbbffec00000000000cbbfec200000000000cb3ff9e00000000000cb3fe9400000000000cbbfd3a00000000000cb3fbe800000000000cbbfe2600000000000cb3fe2200000000000cbbff4e00000000000cb3fd9400000000000cb3fd4400000000000cb3fe4600000000000cb3fe1600000000000cbbfe8e00000000000cbbfe3200000000000cb3ffce00000000000cb3fe7e00000000000cbbfb0a00000000000cb3fe9a00000000000cb3fd3a00000000000cb3fbba00000000000cbbfe1600000000000cbbfee400000000000cbbfb1800000000000cb3fecc00000000000cb3ff0800000000000cb3ffe800000000000cbbfeea00000000000cb3fdd600000000000cbbfcd600000000000cbc003400000000000cbbfdc200000000000cbbfe0c00000000000cb3ffbc00000000000cbbfe4c00000000000cb3ff4800000000000cb3f86800000000000cb3fe0400000000000cb3ffaa00000000000cbbfff600000000000cbbf9a000000000000cbbfe4e00000000000cb3fda800000000000cbc001600000000000cb3fec600000000000cbc003a00000000000cb3feb400000000000cbbfd2800000000000cb3fd1e00000000000cb3fd5e00000000000cb3fe6000000000000cbbf97c00000000000cb3ff1800000000000cbbfd3e00000000000cbbff5800000000000cb3ff5600000000000cb3fe4800000000000cbbfc4000000000000cbbfee200000000000cbbfdac00000000000cb3fef000000000000cbbff6200000000000cb3ff4600000000000cbbfe3400000000000cb3ffac00000000000cbbfd2c00000000000cbbfd4c00000000000cbbffdc00000000000cb3ffb800000000000cb3fc9000000000000cbbfdb800000000000cb3fc0e00000000000cb3fd8400000000000cbbfda200000000000cb3fef400000000000cbbff6800000000000cb3fde800000000000cb3ff5800000000000cbc004c00000000000cb3fea200000000000cb3fd4000000000000cb3feda00000000000cb3ff1c00000000000cbbfc7a00000000000cbbfff400000000000cbbfdfc00000000000cbbfd4600000000000cb4005a00000000000cbbfe2e00000000000cb3fd1600000000000cbbfa1e00000000000cb3fe9600000000000cbbf82e00000000000cb3fecc00000000000cb3fc7400000000000cbbfedc00000000000cbbfdb800000000000cbbff2800000000000cb3fd4c00000000000cbbffa600000000000cb3ff8c00000000000cbbffdc00000000000cbbfe4a00000000000cb3fa0400000000000cbbfb9800000000000cb3fd8200000000000cbbfef400000000000cbbfe6000000000000cb3fefa00000000000cb3fda800000000000cb3ff0a00000000000cbbfde600000000000cbbfa6400000000000cbc000200000000000cbbfe9000000000000cbbff5400000000000cb3ffac00000000000cbbfc3000000000000cb3fff600000000000cb3fe0c00000000000cbc001600000000000cbbf5e000000000000cb3fe3200000000000cb3fe0000000000000cb3fd5c00000000000cb3fea000000000000cb3fdd000000000000cb3fd1a00000000000cb3ff0600000000000cbbf97000000000000cb3fe5200000000000cbbfe6600000000000cbbff5000000000000cb3fd5c00000000000cbbfe5400000000000cbbfc9800000000000cb3ff0200000000000cb3ff9600000000000cb3fee400000000000cb3ff3800000000000cbbfe6a00000000000cb3fe8c00000000000cbbfd9000000000000cb3ff0e00000000000cbbfdd600000000000cb3ff0600000000000cb3f9f000000000000cbbfc2e00000000000cb3fe2c00000000000cb3febc00000000000cbbff1800000000000cb3ff2200000000000cb3fc2e00000000000cb3fe0800000000000cbbffa600000000000cb3ff2400000000000cb3fe0800000000000cb3ff6400000000000cbbfe9800000000000cbbf93400000000000cbbfd7800000000000cb3fd8e00000000000cbbfaa400000000000cbc000800000000000cb3fa3400000000000cbbff0a00000000000cb3ff1c00000000000cb3ff5e00000000000cb3ffee00000000000cb3ff9800000000000cbbfc2a00000000000cb3ff0c00000000000cb3fd6000000000000cbbfc2800000000000cbbff2000000000000cbbf9e800000000000cb3fc7600000000000cb3ff6600000000000cb3ff2800000000000cbbfce400000000000cbc006a00000000000cb3ff8a00000000000cbbff1c00000000000cbbfd1200000000000cb3fa7200000000000cb3fd2e00000000000cbbfaf600000000000cbbffde00000000000cbbff2400000000000cbbfe1400000000000cbbfea800000000000cb3ff6400000000000cb3fef000000000000cb3febe00000000000cbbffca00000000000cbbfad80000000000001cbbfe2a00000000000cbbffce00000000000cb3ffd400000000000cb3fc2600000000000cbbf9d000000000000cbbfc3600000000000cbbffb000000000000cbbfe6e00000000000cb3fc1a00000000000cb3fd0e00000000000cb3fd0200000000000cbbfd6600000000000cbbfb1200000000000cb3ff4200000000000cbbff1800000000000cbbfee800000000000cb3fe4a00000000000cb3fda400000000000cbbfe2000000000000cbbf91000000000000cb3ff2800000000000cb3fd3000000000000cbbfd6a00000000000cbbfd4600000000000cbbff9200000000000cb3ff6600000000000cb3feb400000000000cb3fc9400000000000cb3fec200000000000cb3f80000000000000cb3ff4600000000000cbc001000000000000cbbfc0800000000000cb3ffc400000000000cbbffba00000000000cb4006a00000000000cb3f5a000000000000cb3fd4a00000000000cb3f9a200000000000cbbff6a00000000000cbbff0800000000000cb3ffb600000000000cbbfb8400000000000cbbf97000000000000cbbf7c000000000000cbbfd0a00000000000cb3feb800000000000cbbfb1e00000000000cb3fd9c00000000000cbbfea400000000000cbbfea400000000000cbbfc3800000000000cbbfd0e00000000000cb3fe8000000000000cb3f8a800000000000cb3ff6600000000000cb3fb6400000000000cb3fd9c00000000000cb3ff3800000000000cbbffa600000000000cb3fe8c00000000000cb3ff6800000000000cbbff6200000000000cbbfeee00000000000cb3ff7800000000000cbbfc7800000000000cbbff0e00000000000cb3ff2c00000000000cb3fd6000000000000cb3fada00000000000cb3fe0400000000000cbbff5600000000000cbbfe4400000000000cbbfce200000000000cbbfcea00000000000cbbfe4200000000000cb3fd9200000000000cb3fe3c00000000000cbbff1a00000000000cb3fe6600000000000cbbfe7600000000000cb3ff8c00000000000cb4002a00000000000cb3ff3200000000000cbbff3000000000000cb3ff2c00000000000cbbfb3400000000000cbbfe2c00000000000cbbff6200000000000cb3feba00000000000cb3ff2e00000000000cb3fe3600000000000cbbfe6600000000000cbbfb4400000000000cbbfea000000000000cbbfdf200000000000cbbfbda00000000000cbbfff200000000000cb3fb8800000000000cbbfdb800000000000cb3fac200000000000cbbfcd600000000000cb3ff3600000000000cb3ff2e00000000000cbbfd3c00000000000cb3ff3800000000000cb3ff1c00000000000cbbfc3800000000000cb3fe0a00000000000cbbfb5600000000000cbbfd3a00000000000cbbfd0c00000000000cbbfc4a00000000000cbbff0c00000000000cb3ff0800000000000cb3fc7000000000000cbbffcc00000000000cb3ff5800000000000cbbff3c00000000000cbbfe0200000000000cb3ff4400000000000cbbfdf200000000000cbbfa4200000000000cbc001e00000000000cbbfb7400000000000cb3ff4800000000000cbbff2e00000000000cb3ff1e00000000000cbbff2800000000000cbbfd6400000000000cb3fcd400000000000cb3ff0600000000000cb3fe7c00000000000cbbfa1800000000000cbbf91400000000000cb3fef800000000000cbbffb800000000000cbbfc8600000000000cb3fe5000000000000cbc006000000000000cb3fdf000000000000cbbff2400000000000cbbfd0400000000000cb3fdc800000000000cbbfa8c00000000000cbbfd8a00000000000cbc002200000000000cb3fc1400000000000cbbfc8600000000000cb3fdec00000000000cb3fd2200000000000cbbffdc00000000000cbbfc2600000000000cb3febe00000000000cb3fc6c00000000000cbbfd6800000000000cb3ff0800000000000cb3fe9c00000000000cbbff6800000000000cb3ff5e00000000000cbbff4400000000000cbbfe4600000000000cbbff1c00000000000cbbfc0800000000000cbbfe4600000000000cbbfdf200000000000cbbffc400000000000cb3fc4a00000000000cb3fc8c00000000000cb3fca400000000000cb3fe2e00000000000cb3ff7000000000000cbbfe5600000000000cb3fd9e00000000000cbbfef200000000000cbbfe0e00000000000cbbfd9000000000000cb3fcec00000000000cbc006800000000000cbbfe5800000000000cbbfc2800000000000cbbffe800000000000cb3fe2c00000000000cb3fe2a00000000000cbbffc600000000000cb3fa3000000000000cbbfa0200000000000cbbfa5e00000000000cbbfe5e00000000000cb3fda200000000000cbbfe0400000000000cbbfab000000000000cb3ffe800000000000cbbff8000000000000cb3fd9400000000000cb3f84000000000000cb3fe7000000000000cbbffbc00000000000cbbfe6c00000000000cbbfd7400000000000cb3ff0a00000000000cb3fdfa00000000000cbbfec000000000000cb3ff5200000000000cbbfc0c00000000000cbbfabc00000000000cb3fec800000000000cb3feb400000000000cbbfe1800000000000cb3fcc800000000000cb3ffc200000000000cbbffbc00000000000cbbfd7400000000000cbbfc7a00000000000cb3ff6600000000000cbbfe1600000000000cb3ff7600000000000cbbfdf600000000000cb3ff0e00000000000cb3fd7c00000000000cbbff0400000000000cbbff7c00000000000cb3fd8600000000000cbbfcbc00000000000cbbfcc400000000000cbbf93000000000000cbbfd7600000000000cbbff2e00000000000cbbfe2600000000000cb3fdfa00000000000cb3feac00000000000cbbfd7600000000000cbbfdae00000000000cbbffa400000000000cb3fd4000000000000cbbfea200000000000cb3fc4200000000000cbbfebc00000000000cb3fc3e00000000000cbbfc3a00000000000cb3ff1800000000000cb3fe8600000000000cb3ffac00000000000cb3ff5000000000000cb3fdac00000000000cbbff3600000000000cb3fc0c00000000000cbbfe6600000000000cbbfcea00000000000cbbff3c00000000000cbbfdc200000000000cb3fee000000000000cbbfe4000000000000cb3ff2200000000000cb3fd5c00000000000cb3ff5c00000000000cbbfea600000000000cb400a200000000000cb3ffdc00000000000cbbfd7600000000000cbbfd1000000000000cbbffb000000000000cbbfed200000000000cb3ff1c00000000000cbbfe2a00000000000cb3fc2400000000000cb3fb3400000000000cbbfe8200000000000cb3fd5c00000000000cbbfe7800000000000cbbfc9800000000000cbbfe1200000000000cbbfdd400000000000cbbfd1400000000000cb3ff2200000000000cbbff7c00000000000cb3fc0c00000000000cbbfdc000000000000cbbff5c00000000000cbbfbac00000000000cbbff5a00000000000cb3ff0400000000000cbbff1800000000000cb3fc5800000000000cb3fe9a00000000000cbbffe000000000000cb3fe2200000000000cbbfd7000000000000cbbfe5c00000000000cbc000e00000000000cb3ff7e00000000000cb3fd4600000000000cbbfdf800000000000cb3fe2c00000000000cbbfe9800000000000cb3ff2800000000000cbbfdc600000000000cbbfe3800000000000cbbfef400000000000cbbff4c00000000000cbbfe9400000000000cb3fd8200000000000cbbfa8e00000000000cb3fcc600000000000cbbffda00000000000cbbfed800000000000cb3fe2800000000000cb3fd4200000000000cbbfb420000000000001cbbfee800000000000cbbfeb400000000000cbbff1200000000000cbbfe5e00000000000cbc003200000000000cb3ff1000000000000cb4000600000000000cbbff0e00000000000cbbfe6200000000000cbbfdce00000000000cb3ffb400000000000cb3fe3a00000000000cb3fe9800000000000cbbff0a00000000000cbbff1200000000000cb3fc7c00000000000cb3fc7600000000000cb3fd8a00000000000cb3fcb400000000000cb3fd1e00000000000cb3fd2000000000000cb3fef200000000000cbc000800000000000cbbff6400000000000cb3fe4800000000000cbbfe2a00000000000cb3fef000000000000cb3fb7800000000000cb3fbfc00000000000cbbfdec00000000000cb3faa400000000000cb3fec400000000000cbbfe4e00000000000cb3ff2e00000000000cb3fea600000000000cbbfd2000000000000cb3fe8e00000000000cb3fe4e00000000000cbbff2000000000000cbbfdd400000000000cbbfe8400000000000cbbfcc800000000000cbbfe0600000000000cb3ff9c00000000000cb3feec00000000000cb3fe5a00000000000cb3fe3e00000000000cbbfc4600000000000cb3fdee00000000000cbbfc0000000000000cbbfe8200000000000cb3ff0e00000000000cb3febe00000000000cb3fe8800000000000cb3fe4400000000000cbbff8800000000000cbbfeea00000000000cb3febe00000000000cb3fb5200000000000cb3ffba00000000000cbbfea000000000000cbbfee000000000000cbbfcde00000000000cb3ff5c00000000000cb3fc2a00000000000cb3ff2000000000000cbbff3c00000000000cb3fd0400000000000cb3fda600000000000cbbfeba00000000000cb3ff0800000000000cbbffc600000000000cb3fea600000000000cbbfb6400000000000cb3fe3c00000000000cbbfd1400000000000cb3fc5200000000000cbbfe6400000000000cbbff9c00000000000cb4001400000000000cbbfd1000000000000cbbfb3600000000000cbbfebc00000000000cbbfe5000000000000cb3fba200000000000cb3ff3200000000000cb3fe2a00000000000cbbfe0000000000000cbbfe3400000000000cbbfd1a00000000000cb3ffb000000000000cbbfd0000000000000cb3fd1a00000000000cbbfda000000000000cb3ff0c00000000000cb3ff7600000000000cbbff4800000000000cbbfe6000000000000cbbff0c00000000000cbbfd7a00000000000cbbfb5400000000000cb3ff8400000000000cb3fe6400000000000cb3fda400000000000cbbfe6600000000000cbbff7200000000000cb3ff9200000000000cb3ff6400000000000cb3fb1a00000000000cbbfe6800000000000cb3fc5a00000000000cbbfe2e00000000000cbbfe1c00000000000cbbfe6c00000000000cbbfe5200000000000cbbfbac00000000000cbbfd5a00000000000cbbfad000000000000cb3fda200000000000cbbfd6600000000000cbbfd5800000000000cbbff3200000000000cbbff6000000000000cbbfe4800000000000cbbfc7000000000000cb3ff6c00000000000cb3fb4e00000000000cbbfd2600000000000cbbfeb600000000000cb3ffc600000000000cbbff5600000000000cbbff1600000000000cb3ff3a00000000000cbbfd9e00000000000cb3ffc200000000000cbbffe200000000000cb3fd1400000000000cb3fffc00000000000cbbfb8200000000000cb3ff9e00000000000cb3fe2600000000000cb3fdac00000000000cbbfbd200000000000cb3fbf400000000000cbbff9e00000000000cbc002000000000000cbbfed000000000000cbbff7000000000000cbbfe1c00000000000cb3fe3400000000000cbbfe2600000000000cb3fd2200000000000cbbfff600000000000cbbff4a00000000000cb3ff2e00000000000cb3fe6400000000000cbbfd9c00000000000cbbfcbe00000000000cb3fd3000000000000cb3fd3400000000000cbbfe0600000000000cb3fe7000000000000cb3fbf800000000000cbbfef200000000000cb3ff4800000000000cb3feb200000000000cbbff6600000000000cb3feea00000000000cb3fb9000000000000cb3fc8200000000000cb3ff1200000000000cbbff8200000000000cbbfe4a00000000000cb3fb0c00000000000cbc000600000000000cb3ff5a00000000000cb3ff6600000000000cb3ff5c00000000000cbbfd9000000000000cb3fe1400000000000cbbff0c00000000000cbbfe6400000000000cbbfe9e00000000000cb3ff3600000000000cb3f91600000000000cb3ff3800000000000cbbffb200000000000cb3feda00000000000cb3ff2e00000000000cb3fe0600000000000cbbff1800000000000cbbfe2000000000000cbbfe3400000000000cb3f8e000000000000cbbff0e00000000000cb3ff3400000000000cbbffb800000000000cbbfe2000000000000cb3ff5400000000000cb3fe2800000000000cbbffae00000000000cb3fe5c00000000000cbbface00000000000cbbff1400000000000cbbff2c00000000000cb3fdce00000000000cb3fe8400000000000cb3fd6400000000000cbbff1c00000000000cb3fef800000000000cb3ff4000000000000cb4002a00000000000cbbfe4200000000000cb3fc8000000000000cbbfb9800000000000cbc004000000000000cbbfdbe00000000000cb3ff8c00000000000cb4007c00000000000cb3fa1600000000000cbbfde400000000000cb3fe4e00000000000cb3ff6000000000000cbbfe6000000000000cbbfcd800000000000cbbfd9a00000000000cb3fdb000000000000cb3ff4400000000000cb3fe3c00000000000cb3fe4600000000000cb3fe4e00000000000cb3ff0400000000000cbbfb8400000000000cb3fe8e00000000000cbbfea400000000000cbbfde800000000000cbbfdc800000000000cbbfd4000000000000cbbfadc00000000000cb3ff2e00000000000cbbffb600000000000cb3fd4400000000000cbbff9400000000000cbbf84c00000000000cb3fe4c00000000000cbbfbaa00000000000cb3fe9e00000000000cb3feee00000000000cb3fe9c00000000000cb3fbb600000000000cbbfe8200000000000cb3fe8600000000000ab32393530393133322d313192cb403dbfeab376c323dc0400cbbfdaa00000000000cbbfb3800000000000cb3fe3800000000000cb3fea600000000000cbbfdfc00000000000cb3fd4a00000000000cbbfd2c00000000000cb3ff3200000000000cb3fefe00000000000cb3ff4c00000000000cb3fe6800000000000cb3fda400000000000cb3faf200000000000cb3fe8800000000000cb3f94c00000000000cb3fef400000000000cb3ff4400000000000cb3fe0000000000000cb3fde000000000000cbbfd9800000000000cbc001800000000000cbbfd4c00000000000cb3ff7a00000000000cb3ffa400000000000cb3fd2400000000000cb3fb3c00000000000cbbff6200000000000cb400b000000000000cbbfe6c00000000000cbbfbbc00000000000cbbfcf800000000000cb3fe6000000000000cbbfcaa00000000000cbbfe8e00000000000cbbfea400000000000cbbfcec00000000000cbbff1a00000000000cb3fd3a00000000000cb3ff6600000000000cbbfefe00000000000cb3ff5000000000000cbbfd3600000000000cbbff2400000000000cbbfefe00000000000cb3fec000000000000cbbff1200000000000cbbff4c00000000000cb3fc7400000000000cbbfd4c00000000000cbbff0400000000000cb3fe7200000000000cbbfc5800000000000cb3fe9e00000000000cbbfd5800000000000cb3ff0e00000000000cbbfe4000000000000cbbfdde00000000000cb3fe1a00000000000cb3fe9800000000000cb3fb4000000000000cb3ff3000000000000cb3febc00000000000cbbfe6c00000000000cbbfce200000000000cb3fe3800000000000cbbff7c00000000000cb3fd7600000000000cb3fc1200000000000cbbfec600000000000cb3fc6a00000000000cbbfe2a00000000000cbbff2e00000000000cb3fefc00000000000cb3ff7200000000000cbbffa400000000000cb3faaa00000000000cbbfac800000000000cb3fe3400000000000cbbfd4600000000000cb3fe6200000000000cb3ff7600000000000cb3fe2800000000000cbc003800000000000cb3ff1e00000000000cbbfda800000000000cb3fe8600000000000cbbfd4a00000000000cb3fe2800000000000cb3fcbe00000000000cbbfbf000000000000cbbfc1000000000000cb3feb200000000000cbbfdca00000000000cbc000200000000000cb3ffe200000000000cb3fd4800000000000cbbfac400000000000cbbfcd000000000000cbbfcd800000000000cb3ff0a00000000000cb3fec400000000000cb3ff3a00000000000cb4001400000000000cb3fd2000000000000cbbfe2000000000000cbbfc9000000000000cbbfc9200000000000cb3fe6200000000000cb3ff2800000000000cbbffa600000000000cbbfd8400000000000cb3ff6400000000000cb3ff6400000000000cb3fd5800000000000cbbfe0600000000000cb3fe3400000000000cbbff4400000000000cb3fd7000000000000cbbfe8200000000000cbbfc1000000000000cb3fe9c00000000000cb3fe2400000000000cb3fd1800000000000cb3fa1000000000000cbbfffe00000000000cb3fe1a00000000000cb3fed000000000000cb3ff3400000000000cb3fee600000000000cbbfefa00000000000cbbfee000000000000cb3fe3000000000000cb3fff400000000000cb3fd5a00000000000cb3fec800000000000cbbfa3e00000000000cbbfdb000000000000cbbff8a00000000000cbbff5200000000000cb3ff0a00000000000cb3fed800000000000cb3fc7000000000000cb3fee600000000000cbbfe9000000000000cbbfa1600000000000cb3fe1c00000000000cbbfd7c00000000000cbbff1600000000000cbbfe0a00000000000cb3fef800000000000cbbfee800000000000cbbfcea00000000000cbbfe2c00000000000cb3ff8000000000000cb3feaa00000000000cb3ff6800000000000cbbfcae00000000000cb3ff3600000000000cbbff1000000000000cbbfef400000000000cbbff8800000000000cb3fd8800000000000cb3ffec00000000000cbbfe7000000000000cb3fc6400000000000cb3fee000000000000cb3fdde00000000000cbbfeb000000000000cbbff1800000000000cb3fe1400000000000cb3fdb600000000000cb3ff6c00000000000cb3ff1e00000000000cb3ff8000000000000cb3fe5600000000000cbbfde800000000000cbbff7c00000000000cbbfb7400000000000cb3ff6600000000000cbbff4e00000000000cbbff3400000000000cb3ff5c00000000000cb3fd3000000000000cbbfff000000000000cbbfe0600000000000cbbfe9000000000000cbbfff000000000000cb3fe2400000000000cb3fa0600000000000cbbffe400000000000cbbfe8e00000000000cb3ff7c00000000000cb3fe5e00000000000cb3fb8400000000000cbbfee000000000000cb3fdd800000000000cbbfd2400000000000cbbfcd200000000000cbbfe8800000000000cb3fdbe00000000000cb3fdf600000000000cb3ff2a00000000000cb3fd7000000000000cb3fd2200000000000cbbff6000000000000cbbfde000000000000cb3fbc800000000000cb3fdc200000000000cb3fdcc00000000000cbbfe9800000000000cb3ffc600000000000cbbfe9600000000000cbbfb1e00000000000cb3fd7e00000000000cbbfbe400000000000cb3fbd200000000000cb3ff0c00000000000cb4003400000000000cb3fc0800000000000cb3fe3a00000000000cb3fe3000000000000cbbfd8200000000000cbbfdb400000000000cbbff8800000000000cb3fcba00000000000cb3fec600000000000cbbfd0200000000000cbbfe0200000000000cb3fe6400000000000cbbfca600000000000cb3ff3600000000000cb3fe1200000000000cbbfcb800000000000cbbfa8c00000000000cb3ff9e00000000000cbbfab400000000000cb3fea200000000000cb3ff6800000000000cb3ff4800000000000cbbff4200000000000cb3fe4000000000000cbbfcb400000000000cb3fede00000000000cbbff1e00000000000cbbfdc000000000000cbbfea600000000000cbbff5a00000000000cbbfe1200000000000cbbff3800000000000cb3feea00000000000cbbfe4e00000000000cb3ff3400000000000cb3fd3200000000000cbc003400000000000cbbfe5000000000000cb3fe8800000000000cbbfdb800000000000cbbfaca00000000000cb3fc8c00000000000cbbfe2c00000000000cbbfc7200000000000cb3fddc00000000000cbbff2400000000000cbbfec600000000000cbbfe3c00000000000cbbfef800000000000cbbfe1400000000000cb3ff5400000000000cb3fe8e00000000000cbbfd2600000000000cb3f8da00000000000cb3fb0e00000000000cb3fb6c00000000000cbbfe1c00000000000cb3fe0200000000000cb3ff1a00000000000cb3ff9000000000000cb3fce200000000000cbbffd400000000000cbbf9f200000000000cb3ff9800000000000cb3fcec00000000000cbbfe1400000000000cb3fe2c00000000000cb3fd3e00000000000cbbfc3200000000000cbbfdde00000000000cbbff4e00000000000cbbfeda00000000000cb3fc7800000000000cb3fe9400000000000cb3ff8800000000000cb3fd0200000000000cbbfbea00000000000cb3fbde00000000000cbc003800000000000cbbfdaa00000000000cb3fcb600000000000cb3ff0c00000000000cb3fe0400000000000cb3ff1000000000000cbbfd7200000000000cb3ff9000000000000cbbfb1800000000000cbbffee00000000000cb3fe6a00000000000cbbfe7200000000000cb3fbf000000000000cbbfec000000000000cb3fc6800000000000cbc003400000000000cbbfcf200000000000cb3fecc00000000000cb3fe3400000000000cb3fe4600000000000cb3ff9a00000000000cb3fc2200000000000cb3ff5200000000000cb3fd8200000000000cbbff4600000000000cb3fdb800000000000cb3fd5c00000000000cb3fdaa00000000000cbbff9e00000000000cb3fc1a00000000000cb3fc1a00000000000cb3fd5000000000000cb3fd1c00000000000cbbfe2a00000000000cb3fec200000000000cb3fc6000000000000cbbfe3600000000000cbbff8800000000000cb3fcf000000000000cbbfe7c00000000000cbbfc2000000000000cbbfe0a00000000000cb3fb8000000000000cbbfda000000000000cb3ff2a00000000000cbbff3600000000000cbbfb0200000000000cb3fbc200000000000cbc000600000000000cb3fe7c00000000000cb3f71000000000000cb3ff2000000000000cbbfd0800000000000cb3fdac00000000000cbbff9400000000000cbbfcec00000000000cb3fe5000000000000cb4008a00000000000cbbfd2e00000000000cb3fdba00000000000cb3fc8800000000000cb3fc1c00000000000cb3fe1c00000000000cb3fda000000000000cbbfd4000000000000cbbff5400000000000cbbfe1c00000000000cbbfe9000000000000cbbfe1400000000000cbbff6e00000000000cb4000a00000000000cbbff7600000000000cbbff2c00000000000cbbfea600000000000cb3fd1a00000000000cb3ff2000000000000cbbfd7a00000000000cb3fc0e00000000000cb3ff0e00000000000cb3fce200000000000cb3ff8c00000000000cb3fd4600000000000cb3febc00000000000cbbff5e00000000000cbbff1000000000000cbbff1400000000000cb4002200000000000cbbfdd000000000000cb3ff6a00000000000cb3fdc800000000000cbbfe6000000000000cb3f7d000000000000cbbfb2200000000000cbbfe2c00000000000cb3fe1400000000000cb3fe0e00000000000cb3ff3000000000000cb3fd7c00000000000cb3fefa00000000000cbbfc8200000000000cb3fc2c00000000000cb3fafc00000000000cbbfa4000000000000cb3feb200000000000cbbfd0c00000000000cbbfb7600000000000cb3ff9800000000000cb3ff5600000000000cb3fe8800000000000cb3ff5c00000000000cb3fc5000000000000cb3fed000000000000cb3fdb600000000000cb3fefe00000000000cbbfc0e00000000000cb3ff1000000000000cb3fc8c00000000000cb3fc6c00000000000cb3fd4a00000000000cbbfd0400000000000cbbff2600000000000cb3fe5800000000000cb3fb7000000000000cb3fd7000000000000cbbfea400000000000cb3ff1000000000000cbbfa9a0000000000001cbbfe6600000000000cb3fe7400000000000cbbfbb000000000000cbbfd6400000000000cbbfe3c00000000000cbc006e00000000000cb3fe6e00000000000cbbff5a00000000000cb3ff9a00000000000cb4003e00000000000cb3ff3e00000000000cb3ff0c00000000000cbbfcb400000000000cb3ffd800000000000cbbfd4a00000000000cbbfd1200000000000cbbfe4c00000000000cbbfd5400000000000cbbfd5200000000000cb4001a00000000000cb3fe4800000000000cb3fd4000000000000cbc002000000000000cb3fe1000000000000cbbfed400000000000cbbfd2000000000000cb3fe7600000000000cb3fc4800000000000cb3fe2600000000000cbbff8e00000000000cbbff7000000000000cbbfbf400000000000cbbff1e00000000000cb3ff6400000000000cb3fe5c00000000000cbbfd8600000000000cbc008200000000000cbbfd8600000000000cb3fec800000000000cbbfe0a00000000000cbbfddc00000000000cb3ffe000000000000cbbfa3c00000000000cbbfed600000000000cbbfc7600000000000cbbff6e00000000000cbbff8400000000000cb3fe9000000000000cb3fc3800000000000cb3ff3c00000000000cb3fd8400000000000cb3fd5800000000000cb3ff6e00000000000cbbfe7400000000000cbbfe9200000000000cb3fef800000000000cb3fc3e00000000000cbbfecc00000000000cb3fb0200000000000cb3ffa200000000000cb3fd4200000000000cbbff9200000000000cb3fd5c00000000000cbbff7a00000000000cb3fd5e00000000000cb3fa2c00000000000cbbfea400000000000cb3fedc00000000000cbbfe1600000000000cbbfbf600000000000cbbff9000000000000cb3fb3000000000000cb3ff9e00000000000cbbffc200000000000cb4004a00000000000cb3fc6000000000000cbbf70800000000000cb3fbe200000000000cbbff6800000000000cbbfef400000000000cb3fea800000000000cbbff1200000000000cb3fbf600000000000cbbfcee00000000000cb3fba400000000000cb3fe5800000000000cbbfd2e00000000000cbbfeb000000000000cbbfe6400000000000cb3feb400000000000cbbfc8a00000000000cbbfeec00000000000cb3ff2800000000000cb3fe6600000000000cb3fe3a00000000000cb3fa2a00000000000cb3fee000000000000cb3ffd400000000000cbbfe2800000000000cb3fdfe00000000000cb3ff0a00000000000cbbfe7a00000000000cbbff5200000000000cb3fdd800000000000cbbfbd800000000000cbbfffe00000000000cbbfd8200000000000cbbfd3c00000000000cb3fe1e00000000000cbbfe4a00000000000cbbff6c00000000000cbbfef000000000000cb3fcde00000000000cbbfdbe00000000000cbbfd0200000000000cb3fcb800000000000cb3fe7c00000000000cbbfe0800000000000cb3fcb600000000000cbbfe4600000000000cb3ffbe00000000000cb3ff5600000000000cb3ff1a00000000000cbbfe2a00000000000cb3fcb000000000000cbbfedc00000000000cbbff0400000000000cbbfef600000000000cb3ff2a00000000000cb3ff5800000000000cb3fe6c00000000000cbbfd1200000000000cbbfe4400000000000cbbff1200000000000cbbfee200000000000cb3fe3600000000000cbbffb000000000000cbbfd4600000000000cbbfdf000000000000cbbf91600000000000cb3fcf000000000000cb3fe4c00000000000cb3ff8200000000000cbbfe7000000000000cbbfb4e00000000000cb3f9a600000000000cb3fd5600000000000cb3fd8c00000000000cb3fb3000000000000cb3fae000000000000cbbfcac00000000000cb3fb1a00000000000cbbfde400000000000cb3ff9000000000000cb3fd1c00000000000cbbff6400000000000cb3fd1000000000000cbbfcee00000000000cbbfefa00000000000cb4000400000000000cbbfd2800000000000cbbfe2200000000000cbbff4600000000000cb3fb6200000000000cb3fd5000000000000cbbfe6c00000000000cbbfd6200000000000cbbfabe00000000000cbbfc7c00000000000cb3fa2c00000000000cb3ff6800000000000cb3feb400000000000cbbfe0000000000000cb3fb7c00000000000cb3fe7200000000000cbbffb400000000000cbbfb4600000000000cb3fa3200000000000cbbffd400000000000cb3fecc00000000000cbbff4a00000000000cbbfd4800000000000cbbfcb200000000000cbbff2800000000000cbbfe8800000000000cbbffe800000000000cbbfa4c00000000000cbbfdc600000000000cb3fd8c00000000000cb3ff0c00000000000cbbff5800000000000cb3ff1e00000000000cb3faa200000000000cb3fb8800000000000cbbfd0c00000000000cb3fd7c00000000000cb3ff9200000000000cbbfed600000000000cb3fede00000000000cbbfdf600000000000cbbfa9400000000000cbbfe8800000000000cbbfdee00000000000cbbfeba00000000000cbbff5600000000000cbbff9a00000000000cb3fc6800000000000cbbfd3400000000000cb3fed200000000000cb3fdfe00000000000cb3fec400000000000cbbfe2200000000000cb3fe5600000000000cbbfade00000000000cbbfd7800000000000cb3fa7800000000000cb3ff3200000000000cbc002400000000000cb3fb5800000000000cb3f90800000000000cbbff4c00000000000cb3fdde00000000000cbbfd0e00000000000cbc004c00000000000cbbfa2a00000000000cb3f95800000000000cb3fdf800000000000cbbfdde00000000000cb3fde400000000000cbbfa4200000000000cb3fe2200000000000cb3ff8800000000000cbc000600000000000cbbfade00000000000cb3fdec00000000000cb3fee400000000000cbbfe8000000000000cbbfda600000000000cb3fd5800000000000cb3fd8000000000000cb3fbe400000000000cbbff4a00000000000cb3ff7800000000000cbbfc7e00000000000cbbfd5400000000000cb3ffa200000000000cb3ff1000000000000cbbfe5400000000000cb3fc0e00000000000cb3ffda00000000000cbbff2a00000000000cbbfcf800000000000cbbfcc200000000000cb3ff8800000000000cbbfcf200000000000cb3ff5600000000000cbbfe1400000000000cb3feae00000000000cbbfd5600000000000cb3fe4a00000000000cb3fd9000000000000cbbfe2000000000000cb3fc8200000000000cbbfe5000000000000cbbfe3e00000000000cb3fdda00000000000cbbff1000000000000cbbfbfc00000000000cb3f94000000000000cb3ff1800000000000cbbfd6c00000000000cbbfea200000000000cbc002800000000000cb3fe9a00000000000cbbff5800000000000cb3fd9600000000000cbbff6c00000000000cb3fda400000000000cb3ff4000000000000cb3fea600000000000cb3fea000000000000cb3ff2e00000000000cb3ff4000000000000cbbfccc00000000000cbbff8c00000000000cb3fd9400000000000cbbfe1000000000000cbbfc4c00000000000cbbfe3e00000000000cbbff0400000000000cb3ff3400000000000cbbfe4200000000000cb3fdf600000000000cb3febe00000000000cb3fc4400000000000cbbfe2600000000000cb4005a00000000000cb3ffb200000000000cbbfbd600000000000cbbfe2a00000000000cbbfe7e00000000000cbbff4400000000000cbbfac000000000000cbbfd0a00000000000cb3fc3000000000000cbbfcc800000000000cbbfe8600000000000cbbff0400000000000cbbfd2e00000000000cbbff0600000000000cbbfeb200000000000cbbfdfc00000000000cbbfe8800000000000cb3fe4a00000000000cbbfe6400000000000cb3fc7a00000000000cbbfc1e00000000000cbbfef400000000000cbbfeac00000000000ffcb3fe3c00000000000cbbfee400000000000cb3fc3000000000000cb3ff1400000000000cbbff2600000000000cb3fdf600000000000cbbff6800000000000cbbfe4600000000000cbbfeba00000000000cbbfe3c00000000000cbbfc2800000000000cbbfdb800000000000cb3f92000000000000cbbff9800000000000cbbfd4800000000000cbbff0200000000000cbbff2200000000000cbbfc4c00000000000cbbff6a00000000000cbbfede00000000000cb3ff3000000000000cbbfc8600000000000cb3fe3000000000000cbbff7600000000000cbbfe5400000000000cb3fe1600000000000cbbfbf800000000000ffcb3ff1a00000000000cbbfef800000000000cbbffd000000000000cbbfeb200000000000cbbff1600000000000cbc000600000000000cb3fcce00000000000cb3feec00000000000cbbffd200000000000cbbfe8400000000000cbbfdbe00000000000cb3ff8600000000000cb3fd4400000000000cb3feea00000000000cbbfe5600000000000cbbff0200000000000cbbfd8a00000000000cbbfd3000000000000cbbfb6e00000000000cb3fcdc00000000000cb3fd1400000000000cb3fae200000000000cb3fe5000000000000cbbffd000000000000cbbfec200000000000cb3fd8000000000000cbbfd1800000000000cb3ff5000000000000cb3fca800000000000cbbfb2200000000000cbbfdee00000000000cb3fedc00000000000cb3fec400000000000cbbfe7000000000000cb3fdc800000000000cb3fedc00000000000cbbfdea00000000000cb3fed000000000000cb3fd2e00000000000cbbff4a00000000000cbbfc1400000000000cbbfaf800000000000cbbfdca00000000000cbbff0a00000000000cb3ff8400000000000cb3fe5000000000000cb3fee200000000000cb3ff4a00000000000cbbfe7400000000000cb3ffa600000000000cbbfd2c00000000000cbbfe1200000000000cb3fe5600000000000cb3fc2c00000000000cbbfd4400000000000cb3ff3200000000000cbbffb600000000000cbbfe2c00000000000cb3fcb400000000000cb3fbcc00000000000cb4000a00000000000cbbff3200000000000cbbfea600000000000cbbfe6600000000000cb3fe7400000000000cbbfebe00000000000cb3fbcc00000000000cbbff2400000000000cb3fece00000000000cb3fc5400000000000cb3fba800000000000cb3fe6400000000000cbbff0c00000000000cb3fe2000000000000cbbfda000000000000cb3fdf200000000000cb3fd4c00000000000cbbfe3800000000000cbbfe3000000000000cbbfeb200000000000cb3fce400000000000cbbfd7600000000000cbbfd7800000000000cbbfe2000000000000cbbfc3200000000000cbbfe2600000000000cb3fc5e00000000000cbbfdd800000000000cbbfbf400000000000cbbfe7400000000000cbbfe5000000000000cb3ff7000000000000cb3fe0c00000000000cb3fdde00000000000cbbfe0a00000000000cb3fefa00000000000cb3fe6400000000000cbbfe2800000000000cbbfe1a00000000000cbbffea00000000000cb3faac00000000000cb3fd3600000000000cb4000600000000000cb3fe7400000000000cb3ff4c00000000000cbbfc5600000000000cbbfdde00000000000cb3ffd800000000000cb3ff1a00000000000cbbfe1400000000000cbbfddc00000000000cb3fb9e00000000000cbbfdee00000000000cbbfd3400000000000cbbfd7400000000000cbbfcac00000000000cb3fcba00000000000cb3fddc00000000000cb3fc5800000000000cb3fe7800000000000cbbfd9600000000000cb3fdb400000000000cbbfe9400000000000cbbff6600000000000cbbfdbc00000000000cb3fe9600000000000cb3fe5000000000000cb3ff5800000000000cbbfd2000000000000cbbfe3200000000000cb3fe9800000000000cbbfeea00000000000cb3fc1400000000000cb3fe2a00000000000cbbff0400000000000cb3ff6600000000000cbbff6600000000000cb3fe5200000000000cb3ff9000000000000cb3fea000000000000cb3ff6400000000000cb3fe7000000000000cb3fe3600000000000cbbfb8200000000000cb3fa2a00000000000cbc002a00000000000cbbffd000000000000cbbfd8e00000000000cbbfef000000000000cbbfdd400000000000cb3fe5400000000000cb3fb1200000000000cb3fcd000000000000cbc003400000000000cbbff8800000000000cb3ff9600000000000cb3fe4000000000000cb3fd0c00000000000cb3f8a400000000000cb3fda800000000000cbbfc0000000000000cbbfc3a00000000000cb3fcfa00000000000cbbfe3c00000000000cbbfd5400000000000cb3fdfa00000000000cb3fc2400000000000cbbff7400000000000cb3ff4400000000000cbbfb9800000000000cbbfc2c00000000000cb3ff0e00000000000cbbff7a00000000000cbbfda800000000000cbbfe1800000000000cbc001a00000000000cbbfa7600000000000cb3feb000000000000cb3ffc200000000000cbbf87400000000000cb3fdd400000000000cb3fe1200000000000cbbfe4800000000000cbbfe6e00000000000cb3fac400000000000cbbfeae00000000000cb3ff7800000000000cbbff7e00000000000cb3fd8c00000000000cb3ffba00000000000cbbfd4e00000000000cb3fd9c00000000000cbbfee200000000000cbbfde000000000000cb3f4a000000000000cbbfcd000000000000cb3ff4000000000000cbbff3200000000000cb3fb9400000000000cb3ff7600000000000cb3fe1400000000000cbbfda000000000000cb3fdae00000000000cb3ff0200000000000cbbff5400000000000cbbff0200000000000cbbf99200000000000cbbfd3800000000000cb3fc1800000000000cbbfe4000000000000cb3ff5c00000000000cb3ff2000000000000cb3ff9a00000000000cbbfb0400000000000cb3fa6200000000000cb3fc4600000000000cbbfec200000000000cbbfbc800000000000cb3ff4000000000000cb3fede00000000000cbbfc8c00000000000cbbfe5200000000000cb3ff8e00000000000cb3ffc200000000000cbbfe1c00000000000cbbfe0a00000000000cbbfdb400000000000cb3ff1000000000000cb3ff1c00000000000cb3fbe400000000000cb3fe4400000000000cb3fb5400000000000cb3fe7800000000000cb3fe2c00000000000cb3fdb800000000000cbbf80000000000000cbbff1000000000000cb3fc6e00000000000cb3fec800000000000cbbfde800000000000cb4001000000000000cbbff6400000000000cb3fd1400000000000cbbff6600000000000cb3fe2a00000000000cb3fe2400000000000cbbfcb400000000000cb3fd6c00000000000cb3ffa800000000000cb3fd2a00000000000cbbf9ac00000000000cbbfe3a00000000000cbbfd6e00000000000ab32393530393133322d313292cb403f96feb296c7f7dc0400cb3fee000000000000cb3fd4c00000000000cb3ff1400000000000cbbfd1a00000000000cbbfe0600000000000cbbfa5a00000000000cb3fe2a00000000000cb3feb600000000000cb3fe9600000000000cb3ff8c00000000000cb3feba00000000000cbbfb5800000000000cbbffb200000000000cb3ff1200000000000cbbfe4600000000000cb3fe8000000000000cb3fcd800000000000cb3fe2800000000000cb4001800000000000cb3fed800000000000cbbff5800000000000cbbfd0e00000000000cb3ffe600000000000cb3ff0800000000000cb3fcb000000000000cbbfc6600000000000cbbff3200000000000cb3ffe400000000000cbbfe7800000000000cb3ff7800000000000cb3fe6a00000000000cb3ff2e00000000000cb3feb600000000000cbbff1000000000000cbbfc0800000000000cbbfd0800000000000cbbff1e00000000000cb3fe6000000000000cb3fe9000000000000cbc000200000000000cb3ff2e00000000000cbbfcb800000000000cb3fd1c00000000000cbbfeaa00000000000cb3ff3e00000000000cbbfe5800000000000cbbff7800000000000cb3fe7400000000000cbbf9e000000000000cbbff3c00000000000cbbfd7400000000000cbbfeac00000000000cbbfc5800000000000cbbfd7600000000000cb3fe0a00000000000cbbff8a00000000000cbbfde200000000000cb3ff2600000000000cbbfe4c00000000000ffcb3ff0c00000000000cbbfdee00000000000cbbfe7a00000000000cbbfea800000000000cb3fdae00000000000cbbff1c00000000000cb3feae00000000000cbbfd3600000000000cbbff4200000000000cbbfe1a00000000000cb3fd2000000000000cbbfe4a00000000000cb3ff6600000000000cb3ff0c00000000000cbc000e00000000000cb3fb2200000000000cbbfef200000000000cb3ff5000000000000cbbfe2400000000000cb3fcac00000000000cb3fe9600000000000cbbfe6000000000000cbc006a00000000000cb3ff1e00000000000cbbff4000000000000cb3fe2400000000000cbbfe7000000000000cbbfdca00000000000cb3fc0600000000000cb3fec600000000000cbbfbba00000000000cb3fea800000000000cbbfe5800000000000cbbff2a00000000000cb3fe6000000000000cb3fd7000000000000cbbf40000000000000cb3fb6c00000000000cbbff0a00000000000cb3ff7600000000000cb3ff5c00000000000cb3fd9e00000000000cb3fec600000000000cb3ff0c00000000000cbbff6200000000000cb3feb600000000000cbbfe0200000000000cbbfd3a00000000000cb3fd4c00000000000cbbfe8200000000000cb3fc1c00000000000cb3ff6600000000000cb3ff7e00000000000cb3ff8c00000000000cb3fa9000000000000cb3fe4800000000000cbbfefc00000000000cb3ff5200000000000cbbfc8c00000000000cbbfef000000000000cb3ff2e00000000000cb3fc4400000000000cb3f83c00000000000cbbfd5a00000000000cbc001200000000000cbbfcc800000000000cb3ff4200000000000cb3fe3e00000000000cb3fce600000000000cbbffea00000000000cb3fd9a00000000000cb3fe9200000000000cb4006600000000000cb3fc3200000000000cb3ff5c00000000000cb3fe4400000000000cbbfd0800000000000cbbff3800000000000cbbfeb600000000000cb3ffae00000000000cb3fe0200000000000cb3fe8200000000000cb3fe5600000000000cbbfed600000000000cb3fd6000000000000cb3fb8600000000000cbbfe1000000000000cbbfc0e00000000000cbbfdbe00000000000cb3fc4200000000000cbbff0c00000000000cbbfe8e00000000000cbbff1600000000000cb3ff3400000000000cb3ffac00000000000cb3ff7e00000000000cb3fabc00000000000cb3fe5200000000000cbbffd400000000000cbbff4400000000000cbbff7800000000000cb3fe3200000000000cb3fe9200000000000cbbff6c00000000000cb3fcd400000000000cb3ff0800000000000cbbfdc000000000000cbbff9200000000000cbbfd7200000000000cb3fe9400000000000cb3fe3000000000000cb3fd6400000000000cb3fd9400000000000cb3fe9e00000000000cb3f8ac00000000000cb3fc2c00000000000cbbff1a00000000000cb3fe6a00000000000cb3ff6000000000000cbbfefa00000000000cbbfe5600000000000cb3ff6c00000000000cb3ff5a00000000000cbbffe200000000000cb3fb4400000000000cb3fb5c00000000000cbc005400000000000cb3fd0400000000000cb3fe2c00000000000cbbfe9600000000000cb3fe2600000000000cb3ff1a00000000000cb3fdac00000000000cbbfc7400000000000cbbff2000000000000cbbfc6200000000000cbbfe0a00000000000cbbfdf800000000000cbbfee400000000000cbbfd3a00000000000cb3fee000000000000cb3ff3a00000000000cb3fdf200000000000cb3fdee00000000000cbbfef200000000000cbbff1e00000000000cb3fe0200000000000cbbff4e00000000000cbbfc4e00000000000cbbff0a00000000000cb4000a00000000000cbbfd2e00000000000cb3feac00000000000cb3feb800000000000cbbfeee00000000000cb3fe8e00000000000cb3ff3a00000000000cb3ff9a00000000000cb3fe4000000000000cb3fed000000000000cb3fefc00000000000cbbfd6400000000000cb3fcea00000000000cbbffb600000000000cbbfdba00000000000cb3fda200000000000cbbfe8800000000000cb3fe9000000000000cb3fe9400000000000cbbfcdc00000000000cb3ff1a00000000000cb3fb8000000000000cbbfd5c00000000000cb3fdac00000000000cb3ff5400000000000cbbfc5a00000000000cb3ffc400000000000cb3fd7000000000000cb3fef800000000000cbbff7800000000000cb3fecc00000000000cbbfc6000000000000cb3fede00000000000cbbff8c00000000000cbbff6600000000000cbbfca000000000000cbbff2000000000000cbbfea200000000000cbbfe7200000000000cb3fec600000000000cb3fa9a00000000000cb3ff4800000000000cbbfc3000000000000cbbff5c00000000000cbbff1400000000000cb3fefc00000000000cb3fcde00000000000cbbfd8e00000000000cbbfd4200000000000cbbff6000000000000cb3fd7800000000000cbbfc3c00000000000cbbff4e00000000000cbbfe5400000000000cbbfd0c00000000000cbbffb200000000000cbbfdd200000000000cb3feec00000000000cb3fe8c00000000000cbbfe6600000000000cb3fcd000000000000cbbfd5400000000000cb3fc9000000000000cbbfee000000000000cb3fe7e00000000000cb3fae200000000000cb3febe00000000000cb3fd2400000000000cbbff9000000000000cbbfe8e00000000000cb3ff6e00000000000cb3feea00000000000cbbfdd600000000000cb3ff5e00000000000cb3fe8e00000000000cbbfcf800000000000cbbff3800000000000cbbff1a00000000000cbbfef600000000000cb3fe6600000000000cb3febc00000000000cb3ff1000000000000cbbff3400000000000cbbfc5a00000000000cbbfe1c00000000000cbbffd400000000000cb3fa2200000000000ffcb3ff7c00000000000cbbfcb80000000000002cbbfe6e00000000000cb3ff9600000000000cb3ffba00000000000cbbff9a00000000000cb3fe7800000000000cbbfe8000000000000cb3fa3400000000000cbc001400000000000cb3f8c800000000000cbc001e00000000000cb3ff1c00000000000cbbfb7200000000000cbbf5c000000000000cb3f61400000000000cb3fc2800000000000cb3fe1400000000000cb3fe2c00000000000cbbfc8400000000000cbc003a00000000000cb3fe3600000000000cb3ff7800000000000cb3fc8600000000000cbbff3600000000000cbbff5400000000000cbbfa7400000000000cbbfe4a00000000000cb3fe4200000000000cbbff8400000000000cb3ffca00000000000cb3fba800000000000cb3fbc800000000000cbbff6800000000000cb3ff7000000000000cb3fd4800000000000cb3fdf400000000000cbbf78000000000000cb3fef400000000000cbbfcce00000000000cb3ff7600000000000cbc002400000000000cb3ff8400000000000cb3fef200000000000cbc008a00000000000cb3ff3600000000000cbbfd7600000000000cb3ff0c00000000000cb3fd6e00000000000cbbfd6a00000000000cbbff0200000000000cb3fc3600000000000cb3fc0400000000000cb4001600000000000cbbff1200000000000cbbf74000000000000cb3fc5600000000000cb3feaa00000000000cb3fd8800000000000cb3fdf400000000000cbbfb9200000000000cbbfd7800000000000cbbfd3400000000000cbbfc9600000000000cb3fe4000000000000cbbffda00000000000cb3ffa400000000000cbbff2600000000000cbbff3800000000000cbbfe6a00000000000cbbfa6000000000000cb3fd0600000000000cb3fbfe00000000000cbbfd8c00000000000cb3ff0600000000000cbbfcf800000000000cb4004200000000000cbbfb3000000000000cb3fe9000000000000cbc001c00000000000cbbfe9e00000000000cbbfec600000000000cb3ff2800000000000cb3fc0600000000000cb4000e00000000000cbbfd7c00000000000cbbffb400000000000cb3f7c800000000000cb3fcca00000000000cb3fce600000000000cb3f9f400000000000cb3fe4c00000000000cb3fee600000000000cbbfda400000000000cb3fe5a00000000000cb3fcd200000000000cbbfc4000000000000cbbfd7c00000000000cbbff9600000000000cb3fec600000000000cbbfe6400000000000cb3fe5200000000000cb3ff0c00000000000cb3fe8600000000000cb3fd0000000000000cb3ff8e00000000000cbbfe8200000000000cb3fe3e00000000000cbbfd7e00000000000cb3fe8200000000000cbbfd5400000000000cb3ff3a00000000000cbbf84600000000000cb3fc2800000000000cb3fdc000000000000cb3fe2400000000000cbbff4200000000000cb3fec200000000000cbbfb3600000000000cb3fcc600000000000cbbffbe00000000000cb3ff7800000000000cbbfa6000000000000cb3ff2800000000000cbbfe5800000000000cb3feac00000000000cbbfc1800000000000cbbfb7600000000000cbbfd7800000000000cbc000400000000000cb3fef000000000000cbbfdc800000000000cb3ff7600000000000cb3ffa600000000000cb3ffce00000000000cb3fffe00000000000cbbfd0c00000000000cb3fd2400000000000cb3fe9e00000000000cbbfebe00000000000cbbff2800000000000cb3fec800000000000cb3fe0200000000000cb3ff5000000000000cb3ffbe00000000000cbbfd9c00000000000cbc003c00000000000cb4001600000000000cbbfefe00000000000cbbfe8e00000000000cb3fc6c00000000000cb3fd1000000000000cbbf92c00000000000cbbfe8e00000000000cbbfe9400000000000cbbff0400000000000cbbff5400000000000cb3ff3000000000000cb3ff7000000000000cb3fe6200000000000cbc000200000000000cbbfbe600000000000cb3fe2800000000000cbbfe5c00000000000cbbff5e00000000000cb4000800000000000cbbfdaa00000000000cb3fbf600000000000cbbfd3200000000000cbbff8400000000000cbbff1e00000000000cbbfe0400000000000cb3fc4e00000000000cb3ff1a00000000000cbbfd2e00000000000cb3fc9a00000000000cb3ff0200000000000cbbfb5000000000000cbbff8600000000000cbbfb1600000000000cb3fe1200000000000cbbfc8000000000000cbbfeb800000000000cb3fef600000000000cbbfcd200000000000cbbff6200000000000cbbfd1800000000000cbbfef800000000000cb3ff0800000000000cb3fd5200000000000cbbfe1000000000000cb3ff3400000000000cb3fdae00000000000cb3ff4400000000000cbc001800000000000cbbfe2400000000000cb3ff5e00000000000cbbff9400000000000cb400aa00000000000cbbfe9e00000000000cb3fe8000000000000cb3fd2800000000000cbc001e00000000000cbbff5200000000000cb4002e00000000000cbbfe6000000000000cbbfe3c00000000000cbbfcce00000000000cb3fc6600000000000cb3fe9800000000000cbbfbdc00000000000cbbfd2400000000000cbbfe7800000000000cb3fc2200000000000cb3fae800000000000cbbfee600000000000cb3fe1000000000000cb3fc2800000000000cb3fefa00000000000cbbfb5400000000000cb3feae00000000000cb3ff7400000000000cbbff6600000000000cb3fd5e00000000000cb3ff8200000000000cbbffc000000000000cbbff3c00000000000cb3fe4e00000000000cb3fe3600000000000cbbff600000000000001cb3fd1c00000000000cb3fc9e00000000000cb3fe1400000000000cbbff9000000000000cb3fd2a00000000000cbbfca400000000000cbbfb2800000000000cbbfe9a00000000000cb3fece00000000000cb3fe8000000000000cbbffa000000000000cb3fcce00000000000cbbfdf400000000000cb3ff3200000000000cb4005800000000000cb3ff5400000000000cbbfe8200000000000cb3fe0a00000000000cbbfd5800000000000cbbfb9c00000000000cbbfec200000000000cb3ff0200000000000cb3fdb800000000000cb3fd1c00000000000cbbfe0c00000000000cbbfc8a00000000000cbbff6800000000000cbbfed200000000000cbbfc6000000000000cbc004200000000000cbbfdb400000000000cb3fd7c00000000000cb3fc6000000000000cbbfd0200000000000cb3fd5e00000000000cb3ff3000000000000cbbf6b000000000000cb3fe2e00000000000cb3fe6400000000000cbbfcc800000000000cb3fffe00000000000cbbfc4000000000000cbbfbea00000000000cbbfb2800000000000cb3f8d000000000000cbbfea800000000000cb3ff0a00000000000cbbfdac00000000000cbbffa600000000000cb3ff1600000000000cbbff7800000000000cbbfe1600000000000cb3ff4400000000000cbbff3000000000000cbbf9de00000000000cbbffb600000000000cb3fdc400000000000cb3ff5e00000000000cbbff1800000000000cb3fe3400000000000cbbff2400000000000cbbfcfe00000000000cbbfba200000000000cb3ff0a00000000000cb3fbde00000000000cb3fdf000000000000cb3fd6400000000000cb3fed000000000000cbc000200000000000cbbfd1200000000000cb3ff2e00000000000cbc006e00000000000cb3ff3000000000000cbbff1c00000000000cbbfd8e00000000000cbbfb5c00000000000cbbfbe800000000000cbbfb2c00000000000cbbfffa00000000000cb3fb9600000000000cbbfd8800000000000cb3fd0c00000000000cb3fed000000000000cbbfff800000000000cb3fd2400000000000cb3fa4400000000000cbbfc2400000000000cb3fe6a00000000000cb3ff1200000000000cb3ff7600000000000cbbff7e00000000000cb3ffc800000000000cbbff3000000000000cbbfeb800000000000cbbfe6400000000000cb3fdb200000000000cbbff0e00000000000cbbfede00000000000cbc002a00000000000cbbfc3200000000000cb3fdfa00000000000cb3fb2800000000000cbbfbfe00000000000cb3fe8800000000000cb3fc5a00000000000cb3fdea00000000000cbbfe6800000000000cbbfd6800000000000cbbfd7600000000000cbbfcf800000000000cbc003000000000000cbbfdc200000000000cb3fcf400000000000cbbff7c00000000000cbbfc5800000000000cbbfcb200000000000cbbffa600000000000cbbfdd800000000000cbbfaaa00000000000cb3fd6c00000000000cbbfc5800000000000cb3fa4000000000000cb3fc1c00000000000cbbfbde00000000000cb3ff0c00000000000cbbff7000000000000cbbfd7000000000000cbbfd6000000000000cb3ff0e00000000000cbbff3c00000000000cbbfc5000000000000cb3fe6a00000000000cb3ff1c00000000000cbbfe0000000000000cbbfd8000000000000cb3fd9c00000000000cbbfde400000000000cb3fe2800000000000cb3ffc800000000000cb3fdf800000000000cbbfd8600000000000cb3fe4c00000000000cb4004c00000000000cbbfef000000000000cb3fdd000000000000cbbfc8e00000000000cb3ff4c00000000000cb3fc4e00000000000cb3fe5800000000000cbbfdd000000000000cb3fe7c00000000000cb3fc5a00000000000cbbfcec00000000000cbbfed600000000000cbbfe3c00000000000cb3fe7200000000000cbbfd9400000000000cb3fdc600000000000cbbfee200000000000cbbff5000000000000cbbfb9400000000000cbbfa4800000000000cb3ff4600000000000cbbfe2c00000000000cbbfe6800000000000cbbfeb600000000000cb3fef600000000000cbbfdac00000000000cb3fe1200000000000cbbff4c00000000000cb3fe1000000000000cb3fe7000000000000cb3fd9c00000000000cb3fe8a00000000000cb3ff9c00000000000cb3ff3c00000000000cbbf80000000000000cbbff5a00000000000cb3fd6e00000000000cbbfc7200000000000cbbfd1a00000000000cbc000800000000000cbbff0200000000000cb3fe7400000000000cbbfe5000000000000cb3ff1800000000000cb3feb200000000000cb3ff6c00000000000cbbfe2800000000000cb4008c00000000000cb3ff1200000000000cbbfdce00000000000cbbfd9c00000000000cbbffe000000000000cbbfe1000000000000cb3fea800000000000cbbfdf000000000000cbbfc0c00000000000cbbfdb800000000000cbbfed000000000000cbbfdd200000000000cbbfec000000000000cbbfdec00000000000cbbfeac00000000000cb3fc4000000000000cb3fa1600000000000cb3fe8200000000000cbbfd3400000000000cb3fd4a00000000000cbbff2000000000000cbbff1200000000000cb3f8d000000000000cbbfe8e00000000000cb3fe9800000000000cbbff8600000000000cb3f7b000000000000cb3fe5a00000000000cbc002400000000000cb3fecc00000000000cbbff5e00000000000cbbfd6000000000000cbbff5e00000000000cb3fb0400000000000cb3fd3200000000000cbbff9a00000000000cbbfcec00000000000cbbff1400000000000cb3fa6200000000000cbbfc6200000000000cbbff3e00000000000cbbfd9000000000000cbbff2200000000000cbbff7800000000000cbbf9d000000000000cbbfdd200000000000cb3fe1e00000000000cbc002a00000000000cbbfd0000000000000cb3ff0800000000000cb3ff1800000000000cb3fdd200000000000cb3ff4200000000000cbbfd2600000000000cbbff0400000000000cbbfdb000000000000cbbff0c00000000000cbbffde00000000000cb3fda000000000000cb3ffaa00000000000cbbfed000000000000cbbfebc00000000000cbbff4200000000000cb3ff9200000000000cbbfc9e00000000000cb3fed800000000000cbbfd3000000000000cbbfe7000000000000cb3fb6e00000000000cb3fe7a00000000000cbbfe3600000000000cb3fada00000000000cb3feb200000000000cb3fb4a00000000000cb3fe2600000000000cbbfea800000000000cbbfe7200000000000cb3fe9000000000000cbbfcd000000000000cb3ff1000000000000cb3fc6400000000000cb3fd8000000000000cbbfe4000000000000cb3fec800000000000cb3ff5a00000000000cbbfe6800000000000cb3ff0600000000000cb3fe1e00000000000cbbfdb800000000000cb3ff7c00000000000cb3ff0a00000000000cbbff1400000000000cb3fc0400000000000cbbff6a00000000000cbbfeaa00000000000cbbfb0400000000000cb3ffc400000000000cb3fdd800000000000cbbfb4e00000000000cbbfc3800000000000cb3fb2200000000000cb3ff3800000000000cbbfe9c00000000000cbbfedc00000000000cbbfda800000000000cbbfe7c00000000000cb3fdde00000000000cb3ff4a00000000000cbbff3a00000000000cbbff4000000000000cb3fe9600000000000cb3fe2c00000000000cb3ff8000000000000cbbff1a00000000000cb3f9f000000000000cbbfc3a00000000000cb3fe9800000000000cb3fcdc00000000000cb3fe3000000000000cbbff5200000000000cbbfe4400000000000cb3fd1800000000000cbbff1a00000000000cb3fe4200000000000cbbffb200000000000cbbfd8800000000000cb3fe3200000000000cb3fef600000000000cbbfe2800000000000cbbfe5400000000000cbbfe0800000000000cbbff2800000000000cb3fe2200000000000cbbfd9600000000000cbbfe8400000000000cbbfe1a00000000000cbbfcd400000000000cbbfb1800000000000cb3ff0800000000000cbbfd7800000000000cb3fc7800000000000cbbfd6800000000000cb3fd5c00000000000cb3fea200000000000cb3fb5c00000000000cb3fe1800000000000cb3fd3600000000000cb3fe7c00000000000cb3ff9600000000000cbbff9400000000000cbbfd4c00000000000cbbffc600000000000cbbfd6600000000000cbbfde600000000000cb4004800000000000cb3fecc00000000000cb3fcd600000000000cbbfd1400000000000cbbff0c00000000000cb3ffe200000000000cb3ff0800000000000cb3fe6200000000000cb3f48000000000000cbbfa6c00000000000cbbfe1400000000000cbbff1200000000000cbbfe5800000000000cb3fd2600000000000cb3fe3a00000000000cbbfc0800000000000cbbfb3c00000000000cb3ff3e00000000000cbbfbe200000000000cbbfd1000000000000cb3fb5c00000000000cbbfeae00000000000cbbfe9c00000000000cb3fcb200000000000cbbfb7e00000000000cb3fd7200000000000cbbfe5000000000000cbbfe7e00000000000cb3ff1200000000000cbbff6e00000000000cb3fde000000000000cbbfca800000000000cbbfd6200000000000cb4001c00000000000cbbffc800000000000cb3fc4e00000000000cb4005800000000000cb3fed600000000000cb3ff6200000000000cb3f40000000000000cb3ff0c00000000000cb3fdc600000000000cbbfee600000000000cbc000800000000000cbbff6a00000000000cbbfe3600000000000cbbff8600000000000cbbfce400000000000cb3fdb600000000000cb3ff3600000000000cb3fe3200000000000cbc003800000000000cbbff2400000000000cb3fe8400000000000cb3f82000000000000cbbfdf200000000000cbbfba000000000000cb3fdf800000000000cbbfb7200000000000cbbfbcc00000000000cb3fd9200000000000cb3ffae00000000000cbbff2c00000000000cb3fdd800000000000cb3fe0200000000000cbbff4200000000000cb3feac00000000000cb3fcd800000000000cb3fed800000000000cb3feb800000000000cbbfea800000000000cbbfe4000000000000cb3fe1600000000000cbbff5800000000000cb3ff1c00000000000cb3fdea00000000000cb3ff1e00000000000cbbff0c00000000000cb3ff3000000000000cbbfcb400000000000cbbfe6e00000000000cbbfd8800000000000cb3fed200000000000cbbfd5200000000000cb3ffa000000000000cbbff3200000000000cb3fe9800000000000cb3fee200000000000cb3fe0200000000000cbbfee200000000000cbbff2800000000000cbbfe4c00000000000cb3fd7000000000000cbbfdd400000000000cb3ff7e00000000000cbbff6800000000000cb3fe3200000000000cb3fecc00000000000cb3fdc000000000000cbbff4c00000000000cb3fd9800000000000cb3fe9800000000000cbbff9000000000000cbbffb000000000000cb3fcf400000000000cb3fb5a00000000000cb3fe3a00000000000cbbfee000000000000cb3ff6200000000000cb3ffd000000000000cb4001200000000000cbbfeb600000000000cb3fe9000000000000cb3fdfa00000000000cbc001800000000000cbbfad800000000000cb3fe8800000000000cb3ffa600000000000cbbfb6000000000000cbbfeea00000000000cb3fe5c00000000000cbbfd7000000000000cb3fcdc00000000000cbbfdca00000000000cbbfe7400000000000cb3fef200000000000cb3fe7800000000000cb3ff1200000000000cb3fe8a00000000000cb3ff3200000000000cb3ff5e00000000000cb3fdf000000000000cb3fe1c00000000000cbbfd3a00000000000cbbf99c00000000000cbbfe0200000000000cb3fe9200000000000cbbfc2400000000000cb3ffe600000000000cbbff5600000000000cb3fe2600000000000cbbff2a00000000000cbbfc5c00000000000cb3feb000000000000cb3fdee00000000000cb3fe7e00000000000cb3ff1400000000000cb3ff6200000000000cbbfb7800000000000cbbfe2e00000000000cbbfd8400000000000ab32393530393133322d313392cb403ead53a66bf235dc0400cbbfb2a00000000000cb3fd3c00000000000cb3ff4e00000000000cb3fea200000000000cbbfe8800000000000cbbf99e00000000000cbbfe7200000000000cb3ff4600000000000cb3fdd200000000000cb3ff9c00000000000cb3ff6e00000000000cb3fb4a00000000000cbbff5c00000000000cb3fafc00000000000cb3ff5400000000000cb3ff4200000000000cb3fe9000000000000cb3fe1600000000000cb3ff4000000000000cb3fe2400000000000cbbffa800000000000cbbfc4200000000000cb3ffa600000000000cb3ff5200000000000cb3fd5c00000000000cbbfd0000000000000cbbff1200000000000cb3ffc200000000000cbbfd7e00000000000cbbfe3600000000000cb3fe2400000000000cb3fe4a00000000000cb3fdb400000000000cbbfeb200000000000cbbfcc400000000000cb3fc8800000000000cb3fdfe00000000000cb3fbae00000000000cb3fe4e00000000000cbc000a00000000000cb3ff4a00000000000cb3f9a800000000000cbbfdc600000000000cbbff4800000000000cb3fefc00000000000cbbfec000000000000cbbff4400000000000cb3fe3a00000000000cbbfd9a00000000000cbbfd7200000000000cbbfcdc00000000000cbbff2a00000000000cb3fd3200000000000cb3fb4200000000000cb3fe4600000000000cbbffb400000000000cbbfe0c00000000000cb3fe4e00000000000cb3fede00000000000cbbfe4c00000000000cb3ff8a00000000000cb3fe7000000000000cbbfd0000000000000cbbfd6000000000000cbbfdd600000000000cbbfdce00000000000cb3fd8800000000000cbbf9f800000000000cbbffa600000000000cb3fd3600000000000cb3fe1600000000000cbbfe0600000000000cb3ff6400000000000cb3ff8c00000000000cbbffa800000000000cbbfe0800000000000cbbfed400000000000cb3fee600000000000cbc000e00000000000cbbfd0a00000000000cb3ff8800000000000cbbfc5a00000000000cbc001a00000000000cb3ff5e00000000000cbbff4000000000000cb3fc2400000000000cb3fe3200000000000cbbfd5800000000000cb3feb000000000000cbbfe5e00000000000cb3fcfe00000000000cb3fef000000000000cb3fac000000000000cbbff4e00000000000cb3ff9e00000000000cb3fc2a00000000000cb3ff1000000000000cbbfd7c00000000000cbbff1200000000000cb3ff0600000000000cb3fdd000000000000cb3ff2a00000000000cb3ff5a00000000000cb3fece00000000000cbbff3400000000000cb3fed800000000000cbbff0400000000000cb3fd8400000000000cb3fe9600000000000cbbff6000000000000cbbfeba00000000000cb3fd5400000000000cb4003400000000000cb3fe3a00000000000cb3fe3000000000000cb3fefe00000000000cbbfec200000000000cb3ff9600000000000cbbfdfc00000000000cbbfdcc00000000000cb3ff2200000000000cb3fd7c00000000000cb3fd2e00000000000cbbfce000000000000cbbff5c00000000000cb3fd1000000000000cb3fde200000000000cb3ff3c00000000000cb3fd4200000000000cbbff8e00000000000cbbfd2200000000000cbbfcb600000000000cb4004200000000000cb3feb400000000000cb3ff5e00000000000cb3fd5600000000000cbbfdea00000000000cbbffac00000000000cbbff1c00000000000cb3fe4600000000000cb3fdb000000000000cb3fd0000000000000cb3fd6400000000000cbbff5000000000000cbbfd8a00000000000cb3fd3800000000000cbbfe0c00000000000cbbfea200000000000cbbfd3a00000000000cb3fc5a00000000000cbbff8200000000000cb3fdec00000000000cbbff4c00000000000cb3feba00000000000cb3fe3200000000000cb3fe2a00000000000cb3fc1200000000000cb3fd8200000000000fecbbfe6600000000000cbbff8e00000000000cb3fec200000000000cb3ffd200000000000cbbfee200000000000cbbfd6600000000000cb3fb5c00000000000cb3fd6600000000000cbbfe6400000000000cbbffaa00000000000cb3fe2200000000000cbbfc7200000000000cb3ffaa00000000000cb3fca000000000000cb3fffc00000000000cbbf9a000000000000cbbfe2a00000000000cbbff8800000000000cb3fc2000000000000cb3fe8200000000000cbbffe200000000000cbbfe4e00000000000cb3ffa200000000000cb3ff0c00000000000cbbff9e00000000000cb3f9c800000000000cb3fe1c00000000000cbbffd800000000000cbbfe1c00000000000cb3fa7400000000000cbbff6400000000000cbbfeac00000000000cb3ffd200000000000cb3ff7c00000000000cb3fba400000000000cbbff7e00000000000cbbfd2800000000000cbbfe4a00000000000cbbfcfa00000000000cbbfdc200000000000cb3fb5400000000000cb3fea000000000000cb3fcde00000000000cb3fe5000000000000cb3fe1200000000000cbbfd9800000000000cbbfc0e00000000000cb3fd4c00000000000cbbfeda00000000000cb3fe2600000000000cbbfeac00000000000cb4002a00000000000cbbff0800000000000cb3ff4000000000000cb3fb6000000000000cbbfd2200000000000cb3fba400000000000cb3fc6400000000000cb3ffb600000000000cb3fdd800000000000cb3fe5600000000000cb3fe8c00000000000cbbfe6a00000000000cbbff0c00000000000cbbff2400000000000cbbfd3400000000000cb3fe1c00000000000cbbff0e00000000000cb3fe0400000000000cb3fba800000000000cbbfe0c00000000000cb3fee400000000000cb3fcba00000000000cb3fd4800000000000cbbfdfc00000000000cb3fe7400000000000cb3fe2a00000000000cb3fe3600000000000cb3fcf200000000000cb3fde000000000000cbbfe4a00000000000cb3ff4c00000000000cbbfe0400000000000cb3fe0600000000000cbc000200000000000cbbfeda00000000000cbbfea600000000000cbbff6400000000000cb3fa8800000000000cbbfece00000000000cb3ff7e00000000000cb3fdaa00000000000cb3ffb600000000000cb3fdf600000000000cbc004400000000000cbbff0400000000000cb3fdcc00000000000cb3ff0600000000000cbbfd5c00000000000cb3fbbc00000000000cbbfe8800000000000cb3fb3200000000000cb3fd0200000000000cbbff1c00000000000cbbfda600000000000cbbfb3400000000000cbbfeec00000000000cbbff2200000000000cb3fef800000000000cb3fe6e00000000000cbbfe0400000000000cb3fe1600000000000cbbfc4a00000000000cbbfd3400000000000cbbfeca00000000000cb3fcfa00000000000cb3fe3200000000000cb3fe7200000000000cbbfcfe00000000000cbbff1200000000000cbbff3c00000000000cb3ffe600000000000cb3f94e00000000000cbbfa7600000000000cb3ff8000000000000cb3fe7a00000000000cb3fd1800000000000cbbfde000000000000cbbff5000000000000cbbfe3200000000000cb3fd0a00000000000cb3ff1e00000000000cb3ff6600000000000cbbfe1000000000000cbbfca600000000000cb3fe0400000000000cbc007000000000000cbbfc9200000000000cbbfcb200000000000cb3ff2000000000000cbbfa7200000000000cb3fe6800000000000cb3fcb400000000000cb3ffbe00000000000cb3fea000000000000cbbffda00000000000cb3ff7800000000000cbbfe3200000000000cb3fca000000000000cbbfffe00000000000cb3fe6400000000000cbbff9e00000000000cb3fddc00000000000cb3fe8000000000000cbbfd2c00000000000cbbfa0000000000000cb3febc00000000000cb3fc2600000000000cb3ff3000000000000cbbfe1400000000000cbbff9e00000000000cb3fe1e00000000000cb3fdc200000000000cb3fe3e00000000000cbbfeea00000000000cb3fc2400000000000cb3fedc00000000000cbbff3000000000000cb3fea400000000000cbbfc6200000000000cb4001000000000000cb3fe3e00000000000cbbfd9800000000000cbbff9e00000000000cb3ffbe00000000000cb3fd3c00000000000cb3fe0200000000000cb3fab800000000000cbbfca400000000000cbbfd0600000000000cb3fed200000000000cbbff6c00000000000cb3fd0e00000000000cb3fd8000000000000cbbff760000000000001cbbfd0400000000000cb3ff0200000000000cb3fe3200000000000cbbfd4000000000000cbbff9c00000000000cbbfe3600000000000cbbfd1800000000000cb4003800000000000cbbfe4c00000000000cb3fd4200000000000cbbfebe00000000000cb3ffa400000000000cb3fed000000000000cb3ff1200000000000cbbfbbc00000000000cbbfe5200000000000cbbfe9400000000000cbbff4600000000000cb3fb2600000000000cbbffe400000000000cb3ff7200000000000cbbfeb600000000000cbbff1e00000000000cbbfd9400000000000cbbfd5800000000000cb3fdd000000000000cbbfe5000000000000cbbfe2200000000000cb3ff1600000000000cb3fe9200000000000cb3ff6400000000000cbbfc2600000000000cb3fd9c00000000000cbbffb800000000000cbbff4200000000000cbbfeb200000000000cb3ff4e00000000000cbbfeb600000000000cb3ffe600000000000cbbfec000000000000cbbff1e00000000000cb3fc5600000000000cb3fdb600000000000cb3fe5800000000000cbbfd2800000000000cb3ffca00000000000cb3fea600000000000cb3fc1800000000000cb3fd6400000000000cbbfc9800000000000cb3ff1400000000000cbbfe5a00000000000cbbfe2200000000000cbbfcac00000000000cbbfd1800000000000cbbfd7e00000000000cb3ff5400000000000cb3fd3400000000000cb3fd8e00000000000cb3ff1400000000000cbbfda200000000000cb3fe2200000000000cbbfdea00000000000cb3ff8400000000000cbbfb4e00000000000cb3fd5000000000000cbbfa9400000000000cb3fd3800000000000cbbfb8200000000000cbbfd9600000000000cbbff5e00000000000cb3fe2e00000000000cb3fce800000000000cbbfeda00000000000cbc001400000000000cb3fe9e00000000000cb3fde800000000000cb3ffb600000000000cbbfe3c00000000000cb3fdc400000000000cb3fd4600000000000cb3fcac00000000000cb3fe0c00000000000cbc006a00000000000cb3fe1000000000000cbc001c00000000000cb4000e00000000000cb3ffa600000000000cb4001a00000000000cb3ffdc00000000000cbbfe7400000000000cb3ff4400000000000cbbfeb000000000000cb3fcb200000000000cbbff0a00000000000cbbfcc000000000000cbbfce000000000000cb3ff0a00000000000cb3ff5e00000000000cbbfbda00000000000cbbffbc00000000000cb3ff2200000000000cbbff4000000000000cb3fb0800000000000cbbfa3600000000000cb3fd0c00000000000cb3fc3800000000000cbbff2400000000000cbbff0800000000000cbbfbc000000000000cbbfe2a00000000000cb3ff6200000000000cb3fe7e00000000000cb3fea800000000000cbc004800000000000cb3fd2a00000000000cb3ff0800000000000cbbff1c00000000000cbbff5400000000000cb3ffb000000000000cb3fd9200000000000cbbfc1600000000000cb3fd7800000000000ffcbbfe7000000000000cbbfb8e00000000000cb3fefa00000000000cb3fe4c00000000000cbbf8d600000000000cb3fddc00000000000cb3fd8e00000000000cbbff9400000000000cbbfebc00000000000cbbfe0c00000000000cb3fdf400000000000cbbfee800000000000cb3fd9a00000000000cb3fe6200000000000cb3fd3e00000000000cbbff1400000000000cb3fcea00000000000cbbfd3800000000000cb3fcbe00000000000cb3fd9200000000000cb3fc9c00000000000cb3ff3e00000000000cb3fe8400000000000cb3ff0c00000000000cbbff5800000000000cb3fd3000000000000cb3ffbe00000000000cbbff6a00000000000cb4008800000000000cb3fd8400000000000cb3fe2c00000000000cb3fbdc00000000000cbbfe4400000000000cbbfeae00000000000cb4001400000000000cbbfd9600000000000cbbfeb200000000000cbbfd2200000000000cb3f91800000000000cb3fe7200000000000cbbfc3200000000000cbbfe5c00000000000cbbfd0600000000000cb3fcf000000000000cb3faa200000000000cbbfebc00000000000cb3fec400000000000cb3fa1800000000000cb3fff400000000000cb3fafe00000000000cb3ff7200000000000cb3ff9e00000000000cbc001200000000000cb3fe0a00000000000cb3ff5000000000000cbbff8200000000000cbbfee200000000000cb3ff0a00000000000cb3fd8000000000000cbbff6000000000000cbbfc6000000000000cbbf64000000000000cb3ff2a00000000000cbbfe4a00000000000cbbff8000000000000cb3f73800000000000cbbfeac00000000000cb3fbd200000000000cbbfef200000000000cb3fb3400000000000cb3fe5a00000000000cbbfe1800000000000cb3fc8000000000000cbbfea400000000000cb3ff2200000000000cb4003400000000000cb3fecc00000000000cbbfe0600000000000cb3fd4800000000000cbbfe1e00000000000cbbfe2a00000000000cbbfdd400000000000cb3fdf200000000000cb3ff8000000000000cb3fe2000000000000cbbfe0c00000000000cbbfda400000000000cbbfef800000000000cb3fe2400000000000cb3fd4800000000000cbc003400000000000cbbfc7400000000000cbbf9dc00000000000cbbfe5200000000000cbbfd8c00000000000cb3ff4400000000000cb3ff5a00000000000cb3fc9800000000000cbbfb0e00000000000cb3ff4200000000000cbbfc7400000000000cb3fefa00000000000cb3fe4400000000000cb3fd1e00000000000cbbfe4400000000000cbbfd9a00000000000cbbfe4a00000000000cb3ff6400000000000cb3fe5e00000000000cbbff5000000000000cb3ff2000000000000cbbfebc00000000000cbbff2200000000000cb3ff9600000000000cbbfc5c00000000000cb3fc3200000000000cbbffd400000000000cb3fd1e00000000000cb3fdb600000000000cbbfed000000000000cb3ff1a00000000000cbbfde200000000000cbbff0200000000000cb3fb6e00000000000cb3fe7200000000000cb3fefc00000000000cb3fd4600000000000cb3fb4a00000000000cb3ff1a00000000000cbbffb200000000000cbbfd3a00000000000cb3fef800000000000cbc007a00000000000cb3ff4c00000000000cbbff2200000000000cbbfede00000000000cb3fb1e00000000000cbbfe2e00000000000cbbfef000000000000cbc000600000000000cbbfe9600000000000cbbfd2200000000000cbbfd5200000000000cb3ff2000000000000cbbffb400000000000cb3fda600000000000cb3fdec00000000000cb3fd0e00000000000cbbfdf200000000000cb3fdca00000000000cb3ff6c00000000000cbbfdcc00000000000cb3ff4600000000000cbbff2600000000000cbbff0600000000000cbbff5200000000000cb3fe4600000000000cbbfe4400000000000cbbfe9200000000000cbbff9e00000000000cb3fe2800000000000cb3fc4a00000000000cb3ff4600000000000cb3ff2a00000000000cb3fe6e00000000000cbbfea000000000000cbbfa2400000000000cbbfdb600000000000cbbfd2000000000000cb3fd5e00000000000cb3ff0400000000000cbc002400000000000cbbfc2a00000000000cb3fb7400000000000cbbff9800000000000cb3fd3200000000000cbbfd8600000000000cbc002800000000000cb3fd8e00000000000cbbfce600000000000cb3fd7600000000000cbbfa8400000000000cb3feac00000000000cbbfd8600000000000cb3fe7a00000000000cb3ff8200000000000cbbff4200000000000cb3fd2800000000000cbbfe8e00000000000cb3fe9a00000000000cbbff0a00000000000cb3fc2800000000000cb3fd9600000000000cb3ff9600000000000cbbfde400000000000cbbff3a00000000000cb3ff5c00000000000cb3fda000000000000cbbfdb400000000000cb3feb400000000000cb3fe7400000000000cbbfeaa00000000000cbbfdf000000000000cb3ff1400000000000cbbfe4800000000000cb3fdf400000000000cb3fcc000000000000cb3ffcc00000000000cbbfd8a00000000000cb3fe8200000000000cbbfd8a00000000000cb3fdae00000000000cb3f9f600000000000cb3fc2400000000000cbbfd8a00000000000cbbfd1600000000000cb3febe00000000000cbbf97e00000000000cbbfd7800000000000cbbfe6000000000000cbbfe2000000000000cbbfd6000000000000cb3fc2200000000000cb3ff7a00000000000cb3f79800000000000cbbfd2c00000000000cbc001e00000000000cb3ffb400000000000cbbfda200000000000cb3fe3800000000000cbbff5000000000000cb3fe6000000000000cb3fe5600000000000cb3ff4800000000000cb3fe0800000000000cb3ffc800000000000cb3ff7200000000000cb3fc3a00000000000cbbfeae00000000000cb3fefc00000000000cbbfd5600000000000cbbfba600000000000cbbfdb200000000000cbbff1000000000000cb3ff5400000000000cbbff4400000000000cb3ff6a00000000000cb3fd8600000000000cb3face00000000000cbbfc4c00000000000cb4009200000000000cb3fe1000000000000cbbfdfc00000000000cb3fb5000000000000cbbfed200000000000cbbfeb200000000000cb3fe7000000000000cbbfdd400000000000cb3fcd000000000000cbbfd0a00000000000cbbfe4a00000000000cbbfac400000000000cbbfeca00000000000cbbfeea00000000000cbbffa400000000000cb3fc3800000000000cbbfe9600000000000cb3fd3e00000000000cbbff5000000000000cb3faf400000000000cbbff1e00000000000cbbff6e00000000000cbbfdfc00000000000cbbffcc00000000000cb3ffb200000000000cbbfef000000000000cbbfca400000000000cb3ff6a00000000000cbbffae00000000000cb3fe0a00000000000cbbff7400000000000cbbfea600000000000cbbfe5c00000000000cb3fe7a00000000000cbbfbcc00000000000cbbfe6600000000000cb3fcfc00000000000cb3fc3000000000000cbbf95400000000000cbbfd7400000000000cbbfece00000000000cbbfece00000000000cbbfe3600000000000cbbff3000000000000cb3fcf600000000000cbbfc4600000000000cb3ff0e00000000000cbc001a00000000000cbbfdb800000000000cb3ff5a00000000000cb3fd4c00000000000cb3fd4400000000000cb3fe3600000000000cbbff1600000000000cbbff7a00000000000cbbff2600000000000cbbfed400000000000cbc004200000000000cb3fd7200000000000cb4002000000000000cbbff6600000000000cbbff2200000000000cbbff5e00000000000cb3fe3c00000000000cb3fca400000000000cb3fefe00000000000cbbfde200000000000cbbfef600000000000cbbfc7c00000000000cbbfd5800000000000cb3fe1400000000000cb3fdfa00000000000cb3fd1c00000000000cb3fb3c00000000000cb3fe4400000000000cbbff2c00000000000cbbfe2200000000000cb3fc5200000000000cbbfe5e00000000000cb3ff1a00000000000cb3fbac00000000000cb3fdf400000000000cbbfeec00000000000cb3fe9600000000000cb3ff7200000000000cbbfddc00000000000cb3fd1200000000000cb3ffaa00000000000cb3fb0200000000000cb3ffa000000000000cb3fbd800000000000cbbff9400000000000cb3fa2800000000000cbbfdc400000000000cbbfe8000000000000cbbfe9400000000000cb3ff8400000000000cb3fefc00000000000cb3fd7600000000000cb3ff4800000000000cb3fbf000000000000cb3ff7400000000000cbbfdac00000000000cbbfe9600000000000cb3fbf800000000000cbbfe1800000000000cb3fcda00000000000cb3fd1200000000000cbbff7400000000000cbbfeb000000000000cb3fdc000000000000cbbfc1400000000000cb3ff6600000000000cbbfe4800000000000cbbfe6c00000000000cbbfc4e00000000000cb3fe7c00000000000cbbfc7000000000000cbbfc7000000000000cbbff4a00000000000cb3fa9400000000000cb3fd9e00000000000cbbfea600000000000cb3fdee00000000000cbbfdf200000000000cbbfa6800000000000cbbfa5000000000000cb3fda600000000000cbbfcc200000000000cbbfe5600000000000cbbfcb200000000000cbbfe7400000000000cb3febc00000000000cbbfdf800000000000cbbfd4600000000000cbbfeb200000000000cbbfe9800000000000cbbfd0200000000000cb3fe8800000000000cbbfe4400000000000cb3fd2000000000000cbbfd3000000000000cb3faf800000000000cb3ffc200000000000cbbfd8200000000000cbbfac000000000000cb3fb3800000000000cb3fed200000000000cb3ff1400000000000cbbfed200000000000cbbfd9800000000000cbbfe3a00000000000cb3fa8c00000000000cbbfbfc00000000000cb3ffd600000000000cb3fe3a00000000000cb3fca400000000000cbbfdd200000000000cbbff1600000000000cb3ff8a00000000000cb3fdb400000000000cbbfc7600000000000cbbf93000000000000cb3f9d400000000000cbbfe3e00000000000cbbfd6200000000000cb3f93000000000000cbbfc1600000000000cbbfea000000000000cb3fd8800000000000cbbfd3200000000000cb3fbe200000000000cbbfc8e00000000000cb3fdf800000000000cbbfec400000000000cbbff4a00000000000cbbff3e00000000000cb3fde600000000000cb3fea600000000000cb3fed000000000000cbbfd5a00000000000cbbfc6e00000000000cb3fe4200000000000cbbff9800000000000cbbfd7800000000000cbbfc4200000000000cbbfbc600000000000cb3ffce00000000000cbbfdf600000000000cb3fed200000000000cb4000200000000000cb3ff3200000000000cb3ff3a00000000000cb3fe2400000000000cbbf9dc00000000000cb3fc6a00000000000cb3fee800000000000cbc001a00000000000cbbffe000000000000cbbff0200000000000cbbfe8c00000000000cbbfe1000000000000cb3fe7600000000000cb3fe7a00000000000cb3ff0400000000000cbbffae00000000000cbbff0400000000000cb3fce000000000000cbbf88c00000000000cb3fd4600000000000cbbfc7000000000000cb3fe8000000000000cbbfc6000000000000cb3fd1400000000000cb3fdba00000000000cb3fd1a00000000000cbbfe4000000000000cb3ff2000000000000cb3fd2200000000000cbbff9200000000000cb3ff0e00000000000cbbfedc00000000000cb3fe3800000000000cb3fe2600000000000cbbff2e00000000000cb3fcd800000000000cb3fe3e00000000000cbbffe200000000000cb3fed600000000000cb3fe6200000000000cb3ff4c00000000000cbbfed000000000000cb3ff1600000000000cbbfd6a00000000000cbbff2600000000000cbbff4a00000000000cb3fefc00000000000cbbfe0600000000000cb3ff4800000000000cbbff8e00000000000cb3fede00000000000cb3feb000000000000cbbfe3200000000000cbbfeb200000000000cbbfd1400000000000cbbff4c00000000000cbbfd2400000000000cbbfebc00000000000cb3ff7000000000000cbbfe7800000000000cb3fe3800000000000cb3ff4e00000000000cbbfac200000000000cbbfe6000000000000cb3fb9400000000000cb3fec000000000000cbbff9c00000000000cbbff1800000000000cbbfe4800000000000cb3fe2c00000000000cb3fd7600000000000cbbff0800000000000cb3fe8800000000000cb4001400000000000cb3ffa000000000000cbbfe3800000000000cb3fe1600000000000cb3f90e00000000000cbbff9000000000000cbbfacc00000000000cb3fe5000000000000cb3ffb000000000000cbbfafc00000000000cbbfed800000000000cb3ff2000000000000cb3ff2c00000000000cbbfe1400000000000cbbfeb400000000000cbbfefe00000000000cb3ff3000000000000cb3ff0a00000000000cb3ff3400000000000cb3fd0c00000000000cb3ff1800000000000cb3fed400000000000cb3fd0e00000000000cb3fd0600000000000cbbfbe000000000000cb3fd8400000000000cbbf82800000000000cbbfc0400000000000cb3fc5000000000000cb3ff7e00000000000cbc000200000000000cb3fd9000000000000cbbfebe00000000000cbbfd8a00000000000cbbf9a000000000000cbbfe5a00000000000cb3fea800000000000cb3ff7c00000000000cb3ff0c00000000000cb3fd3200000000000cbbfeea00000000000cbbfd2200000000000ab32393530393133322d313492cb403f2770c92ed2eadc0400cb3fe8200000000000cb3fe1200000000000cb3ff0800000000000cb3fe4800000000000cbbfe1400000000000cb3fec200000000000cbbfa7a00000000000cb3fe6600000000000cb3fee000000000000cb3fdb000000000000cb3ff9000000000000cb3fe6c00000000000cbbfeb800000000000cb3fd6400000000000cb3fe9800000000000cb3fd0000000000000cb3f9d000000000000cb3fe8600000000000cb3fe1600000000000cb3fdbe00000000000cbbfffe00000000000cbbfca600000000000cb3ffda00000000000cb3ff5000000000000cb3fb3c00000000000cbbfebc00000000000cbbfe6000000000000cb4001200000000000cbbfe3600000000000cb3fefe00000000000cb3fefe00000000000cb3ff9200000000000cbbfdd400000000000cbbff2400000000000cbbff5e00000000000cbbfdb200000000000cb3fdae00000000000cb3feba00000000000cb3ff9c00000000000cbbffd200000000000cb3feea00000000000cbbfd9800000000000cbbfeca00000000000cbbff3800000000000cb3ff9400000000000cbbff0a00000000000cbbff5800000000000cb3f7f800000000000cbbfe9200000000000cb3fa4000000000000cbbfd0800000000000cbbfdee00000000000cb3fe3c00000000000cb3f86400000000000cb3ffec00000000000cbbff3a00000000000cbbfd1200000000000cb3fdd600000000000cbbf91c00000000000cbbfd4e00000000000cb3ff5800000000000cb3fe9c00000000000cbbfd5800000000000cb3fd9a00000000000cb3fca800000000000cbbfaf600000000000cb3ff1000000000000cb3fdb600000000000cbbff2e00000000000cbbfe1200000000000cb3fdc800000000000cb3fc5c00000000000cb3ffb400000000000cb3ff1400000000000cbbfebe00000000000cbbfa3600000000000cbbff4000000000000cb3ff0200000000000cbbff0400000000000cb3fd3400000000000cb3ff5000000000000cb3fee800000000000cbc001600000000000cb3ff3200000000000cbbfa0200000000000cb3fd9800000000000cbbfd3400000000000cbbfe7000000000000cb3fd7400000000000cb3fe2200000000000cbbfe9e00000000000cb3fed800000000000cbbfdae00000000000cbbff4c00000000000cb4000200000000000cbbfc1c00000000000cb3fd5200000000000cbbfde400000000000cbbfec400000000000cb3fec800000000000cb3fc1800000000000cb3fc3800000000000cb3ff8a00000000000cb3fef800000000000cbbfe6400000000000cb3ff9e00000000000cbbfe4a00000000000cb3fd5200000000000cb3fe8400000000000cbbff2800000000000cbbf99200000000000cb3ff3200000000000cb4001200000000000cb3fea200000000000cb3fd4400000000000cb3ff0800000000000cbbffe600000000000cb3fe4c00000000000cb3fcba00000000000cbbff5800000000000cb3fea600000000000cb3fe8800000000000cb3fe1600000000000cb3fdca00000000000cbbff3600000000000cb3fe0e00000000000cb3ff1c00000000000cb3fe5c00000000000cb3fe6600000000000cbbff9200000000000cbbfd7000000000000cb3fece00000000000cb3ff7400000000000cb3fc9600000000000cb3ffa200000000000cb3fd4c00000000000cbbfdc800000000000cbbff2c00000000000cbbff5e00000000000cb3feee00000000000cb3ff0a00000000000cb3fbc000000000000cb3ff7c00000000000cbbfe4800000000000cbbfb6400000000000cb3ff6200000000000cbbfc5400000000000cbbffd000000000000cbbfb2600000000000cb3fe2a00000000000cbbff7800000000000cbbfb0c00000000000cbbff5200000000000cb3ff9800000000000cb3fe6800000000000cb3fec200000000000cbbfe8e00000000000cb3fe7800000000000cbbff2a00000000000cbbff2200000000000cbbff6c00000000000cb3feec00000000000cb3ff9200000000000cbbff1e00000000000cb3fe4e00000000000cb3fd6200000000000cbbfc6200000000000cbbfdee00000000000cbbff9200000000000cb3ff9000000000000cb3fd5800000000000cb3ffc200000000000cb3ffa000000000000cb3ff9c00000000000cb3fb7200000000000cbbfd1400000000000cbbffde00000000000cbbfe4800000000000cb3ff3800000000000cbbff7000000000000ffcb3fe9400000000000cbbfc8400000000000cbbfed200000000000cbbfeaa00000000000cb3fc3e00000000000cbc002e00000000000cbbfe4c00000000000cb3fbc000000000000cbbfe9a00000000000cbbfe7a00000000000cb3ff2000000000000cb3fef800000000000cb3fe5e00000000000cbbfe8200000000000cb3fdec00000000000cbbfd9200000000000cbbfb8e00000000000cbbfc7400000000000cb3feec00000000000cb3feec00000000000cb3feb400000000000cb3fe1400000000000cb3fd7400000000000cbbff9200000000000cbbfeea00000000000cb3fbc000000000000cbbfea000000000000cbbfd7e00000000000cbbfffa00000000000cb3ff2600000000000cbbff2200000000000cb3feb200000000000cbbfb8e00000000000cb3fee200000000000cb3fbca00000000000cb3ffa800000000000cb4003000000000000cb3fa7e00000000000cb3ff0800000000000cb3fd5e00000000000cbbfeac00000000000cbbfd2c00000000000cbbff5600000000000cbbfcda00000000000cb3fa9a00000000000cbbfd6200000000000cb3fe6400000000000cb3feba00000000000cbbfea600000000000cb3ff3c00000000000cbbfa8800000000000cb3fa8400000000000cbbfbc600000000000cb3ff5e00000000000cbbfd9000000000000cb3fe1a00000000000cb3fee400000000000cb3fee400000000000cbbffb000000000000cb3ff7200000000000cbbfe6e00000000000cb3fe0e00000000000cbc003400000000000cb3fa9c00000000000cb3fc2000000000000cbbfffc00000000000cbbfefe00000000000cbbfef200000000000cb3ff5200000000000cbbfdbe00000000000cb3ff7200000000000cb3fd8000000000000cbc001800000000000cbbfe9600000000000cb3fc6800000000000cb3fd2e00000000000cb3fcc800000000000cb3fe4a00000000000cbbff6c00000000000cbbfc4600000000000cbbfed400000000000cbbff7800000000000cbbff4800000000000cbbfd0a00000000000cbc003800000000000cbbfe5200000000000cb3fee200000000000cb3fd9e00000000000cbbfb7600000000000cb3fec800000000000cbbfe8600000000000cb3fd0400000000000cbbfd0400000000000cb3fbf200000000000cb3fe7400000000000cb3ff5a00000000000cb3fd5800000000000cbbff7e00000000000cbbfbb400000000000cb3ff8600000000000cb3fce800000000000cbbfe3c00000000000cb3febe00000000000cb3fade00000000000cb3fbb400000000000cbbfeb800000000000cbbfefe00000000000cbbfd3e00000000000cb4001400000000000cb3ff9000000000000cb3ffde00000000000cbbff5400000000000cb3feb400000000000cbbfca400000000000cbc003a00000000000cbbfc9800000000000cbbfdde00000000000cb3ff7200000000000cbbfe1000000000000cb3ff5e00000000000cbbfd9000000000000cb3ffd000000000000cb3feb800000000000cbbff7c00000000000cb3fa0800000000000cbbfdc400000000000cbbfe0800000000000cbbff8c00000000000cb3fd4200000000000cbc001600000000000cb3fcc400000000000cb3fd9800000000000cbbfe7200000000000cb3fc3800000000000cb3feda00000000000cb3fec000000000000cb3fec600000000000cb3fe0600000000000cbbff6400000000000cb3fd1400000000000cb3fd8e00000000000cb3fe8c00000000000cbbfe8a00000000000cbbfdbe00000000000cb3fdc400000000000cbbfd2c00000000000cb3f64800000000000cbbfd5000000000000cb3ffa200000000000cb3fcf000000000000cbbff1200000000000cbbff3e00000000000cb3fddc00000000000cbbfe0800000000000cb3fa0c00000000000cb3fb2e00000000000cbbfd6a00000000000cb3fd8400000000000cb3ff3400000000000cbbff7e00000000000cb3fb5800000000000cb3ff7c00000000000cbc004800000000000cb3fd0c00000000000cbbfe9e00000000000cb3fe3800000000000cb3faa200000000000cb3fd7800000000000cbbff1000000000000cbbfdca00000000000cbbfd6000000000000cb4006e00000000000cbbfbf600000000000cbbfcb400000000000cbbfe1000000000000cb3fed400000000000cb3fe5800000000000cb3fda400000000000cbbfe2600000000000cbbff0200000000000cbbfe7c00000000000cbbfebe00000000000cb3fdbc00000000000cbbff1000000000000cb3ffa200000000000cbbfeee00000000000cbbfe3000000000000cbbfd6c00000000000cbbfc6c00000000000cb3fd2e00000000000cbbfd5c00000000000cbbfe7c00000000000cb3feee00000000000cb3fd8c00000000000cb3ff9a00000000000cb3fd7800000000000cbbf79400000000000cbc000400000000000cbbff2800000000000cbbffc400000000000cb3ffca00000000000cbbfa6e00000000000cb3ff9000000000000cbbfd5c00000000000cbbffa400000000000cbbfd9c00000000000cb3fd0a00000000000cbbfb6a00000000000cbbfdf000000000000cb3fe8e00000000000cb3fece00000000000cbbfbaa00000000000cb3fdfc00000000000cbbfc7800000000000cbbfbec00000000000cbbfdc600000000000cbbfece00000000000cb3fe0800000000000cbbfcde00000000000cbbfd9800000000000cb3ff8a00000000000cb3ff2600000000000cb3fe1000000000000cb3fe5c00000000000cbbff6400000000000cb3ff8600000000000cb3fad800000000000cb3ff0600000000000cbbfeb000000000000cb3fd8600000000000cb3fca800000000000cb3fd1600000000000cb3fc0200000000000cb3fc5c00000000000cbbfee400000000000cb3ff7c00000000000cb3f96600000000000cb3fa4600000000000cbbfe8600000000000cbbfc8600000000000cb3fe9000000000000cb3fe2c00000000000cbbff1800000000000cb3fa4000000000000cbbfcc600000000000cbbfea800000000000cb3fa0e00000000000cbc003200000000000cb3fd4800000000000cbbff8400000000000cb3fe4200000000000cb3ffe000000000000cb3fff200000000000cb3ff6400000000000fecb3ff1e00000000000cbbfe0400000000000cbbfb8200000000000cbbfd5200000000000cb3fd7c00000000000cbbfb8200000000000cb3ff6e00000000000cb3fe3600000000000cb3fd3600000000000cbc001400000000000cb3ff6c00000000000cbbfe0200000000000cbbfe5800000000000cb3fe5600000000000cb3fa1800000000000cbbfa3000000000000cbbffdc00000000000cbbfeb200000000000cbbfe6200000000000cbbff3200000000000cb3ff0800000000000cb3ff9800000000000cb3fe1c00000000000cbc003a00000000000cbbfe0e00000000000cb3ff8000000000000cbbfd6c00000000000cbc001400000000000cb3ffec00000000000cb3fd8400000000000cb3ff2200000000000cbbfd1200000000000cbbff7000000000000cbbff6000000000000cbbfc8400000000000cbbfd4e00000000000cb3fece00000000000cb3fe3a00000000000cbbfb6600000000000cb3ff0800000000000cbbfebe00000000000cbbff0e00000000000cb3ff1400000000000cbbfd9200000000000cbbff6000000000000cb3fc8000000000000cb3ff8c00000000000cb3f8d000000000000cbbfe2c00000000000cbbfd2600000000000cbbff1600000000000cb3fe9800000000000cb3fd7400000000000cbbfe3c00000000000cb3ff2200000000000cb3fd1000000000000cb3fe1600000000000cbbff4400000000000cb3fcb200000000000cb3ff8c00000000000cbbffe200000000000cb4005000000000000cb3fe8600000000000cb3fe9800000000000cb3fc0800000000000cbbfe7600000000000cbbfda000000000000cb3ffa600000000000cbbfd1a00000000000cb3fdf600000000000cbbfcde00000000000cb3fddc00000000000cb3ff8800000000000cbbfc4600000000000cb3fea800000000000cb3fc2600000000000cbbfd0800000000000cbbfdc600000000000cbbfe2e00000000000cb3ff5000000000000cbbf78a00000000000cb3fdba00000000000cbbfe1c00000000000cb3ff1a00000000000cb3fee400000000000cbbfe1600000000000cb3ff2c00000000000cb3fcc600000000000cbbfe5e00000000000cbbfeec00000000000cb3fee000000000000cbbfe4400000000000cbc001600000000000cb3fd1a00000000000cb3ff1800000000000cb3feb200000000000cb3fce400000000000cbbff0200000000000cbbfcac00000000000cbbfd3400000000000cbbfd7800000000000cbbfc5200000000000cb3fcfc00000000000cb3fed800000000000cbbfca400000000000cbbf7c000000000000cbbfe9000000000000cb3ffa200000000000cb4000800000000000cb3ff1a00000000000cbbff4000000000000cb3ff3800000000000cbbfd8000000000000cbbfd5400000000000cbbfd1a00000000000cb3fe3c00000000000cb3fe3e00000000000cb3ff9800000000000cbbfcd000000000000cb3fc5400000000000cbbfe2800000000000cbbfe6c00000000000cb3f94400000000000fecb3fe1a00000000000cbbfe9600000000000cb3f6a000000000000cb3fe1400000000000cb3febe00000000000cb3ffc400000000000cb3fc6e00000000000cbbfc0a00000000000cb3fe4800000000000cb3fea400000000000cb3fd8200000000000cb3fe3200000000000cb3fe7200000000000cbbfd8e00000000000cbbfd4c00000000000cbbfdf800000000000cb3ff2200000000000cb3fa8800000000000cbbffd800000000000cb3f89000000000000cbbff1800000000000cbbfdde00000000000cb3fede00000000000cbbfdaa00000000000cbbfdbe00000000000cbc002200000000000cbbfb2000000000000cb3fe6a00000000000cbbff6a00000000000cb3fdec00000000000cbbfca600000000000cbbfc8200000000000cb3fe6600000000000cb3fee000000000000cb3fe0600000000000cbbfee400000000000cbbfb5c00000000000cb3ff8000000000000cbbff4000000000000cb3fd1800000000000cbbfd0000000000000cbc002c00000000000cb3ff4600000000000cbbfd4a00000000000cbbfe6000000000000cb3f82a00000000000cbbff6c00000000000cbbfe4600000000000cbbfffc00000000000cbbfe2e00000000000cb3fc8800000000000cb3fd3e00000000000cb3ff5000000000000cbbfebe00000000000cb3fed000000000000cbbfb3000000000000cb3fe8a00000000000cbbfc5a00000000000cb3fe1e00000000000cb3fe6c00000000000cbbff3600000000000cb3febe00000000000cbbff4a00000000000cbbfd5200000000000cbbff6400000000000cbbfe1c00000000000cb3fc4800000000000cbbff1800000000000cbbffd600000000000cb3fd2600000000000cb3fdf400000000000cbbfbdc00000000000cb3fec200000000000cb3fdd200000000000cbbfed600000000000cb3fcc800000000000cbbfedc00000000000cbbf54000000000000cb3fab400000000000cb3fe5600000000000cbbfff000000000000cbbfc7c00000000000cbbfdfc00000000000cbbff8000000000000cb3feca00000000000cb3fbdc00000000000cbbffbc00000000000cb3fe0e00000000000cb3fd9600000000000cbbfb8800000000000cb3fafe00000000000cb3fea000000000000cbbfed600000000000cbbfd5200000000000cb3ff9e00000000000cbbff0a00000000000cb3fda400000000000cb3fa9000000000000cb3ff4c00000000000cbbfe9c00000000000cbbfc0600000000000cb3fe7400000000000cb3ff8a00000000000cb3facc00000000000cbbfc0800000000000cb3fd0c00000000000cb3fc5c00000000000cbbfd1e00000000000cb3ffc400000000000cb3feae00000000000cbbfd2c00000000000cbbfa3800000000000cb3fff800000000000cbbfc6400000000000cb3fcbc00000000000cb3fef200000000000cb3ff3400000000000cbbfe5c00000000000cb3fe4400000000000cb3fb6a00000000000cb3fe6600000000000cbbfc0a00000000000cbbfe5000000000000cbbfec200000000000cb3fc0000000000000cbbfe0000000000000cbbfec000000000000cbbfd5000000000000cb3fc5400000000000cbbff5800000000000cbbfe6a00000000000cb3feec00000000000cb3fef600000000000cbbfdd000000000000cb3fa8400000000000cbbffb800000000000cb3fe2c00000000000cbbff2600000000000cb3fe7a00000000000cbbffe000000000000cb3fdd000000000000cb3fe9000000000000cb3ff5400000000000cb3fe4000000000000cb3ffb800000000000cb3ffb200000000000cb3fbf600000000000cbbfe3a00000000000cb3ff4600000000000cbbfe6600000000000cbbfe6400000000000cbbfd5e00000000000cbbfe6a00000000000cb3ff7600000000000cbbfe9a00000000000cb3ffe000000000000cb3fd6200000000000cb3ff2000000000000cbbfd1400000000000cb400ea00000000000cb3fd9a00000000000cbbfe0c00000000000cbbfce000000000000cbbffb000000000000cbbfee200000000000cb3fd1800000000000cbbfd3e00000000000cbbfdac00000000000cbbfa0a00000000000cbbfe5c00000000000cbbfb2a00000000000cbbfde800000000000cbbfdf200000000000cbbff9000000000000cb3f91400000000000cbbfef000000000000cb3fd9000000000000cbbff0e00000000000cb3fd9e00000000000cbbfd7000000000000cbbff4000000000000cbbfd1000000000000cbbfef400000000000cb3fffe00000000000cbbfedc00000000000cb3fb9400000000000cb3ff8000000000000cbc001400000000000cb3ff0400000000000cbbff6800000000000cbbfda600000000000cbbff6a00000000000cb3fc4c00000000000cbbfd0e00000000000cbbfe5c00000000000cbbfe6400000000000cbbfd3400000000000cb3ff1000000000000cbbfeba00000000000cbbfcc000000000000cbbff6200000000000cbbff6800000000000cbbff4800000000000cb3ff1200000000000cbbfe2600000000000cbbfa6400000000000cbbffe400000000000cbbff0e00000000000cb3fe8200000000000cb3ff1a00000000000cbbfb6200000000000cb3ff1800000000000cbbff8200000000000cbbff1000000000000cbbfd3600000000000cbbff7a00000000000cbbff5400000000000cbbfcd800000000000cb3ff2000000000000cbbfed600000000000cbbfeda00000000000cbbff5400000000000cb3ff0e00000000000cb3fb6c00000000000cb3ff4a00000000000cbbff6c00000000000cbbfe8800000000000cbbfd5000000000000cb3fd5c00000000000cbbfe6400000000000cb3fcc800000000000cb3fcf200000000000cbbf82800000000000cb3fe1800000000000cbbff6800000000000cbbfd5200000000000cb3fc2400000000000cb3fd1200000000000cb3fe1200000000000cb3fec000000000000cb3fec200000000000cbbfc6e00000000000cb3ff5000000000000cb3ffa800000000000cbbff0e00000000000cb3ff1e00000000000cb3ff2000000000000cbbfd9e00000000000cb3ff1000000000000cb3fddc00000000000cbbff3e00000000000cbbfe9e00000000000cb3fdd800000000000cb3fcfe00000000000cbbfedc00000000000cb3fe8800000000000cb3fe6400000000000cb3fe9800000000000cb3fe2400000000000cb3f9ee00000000000cb3ff0c00000000000cbbfb9a00000000000cbbfe1200000000000cb3fcaa00000000000cb3fe8a00000000000cbbfb4800000000000cb3ff2200000000000cbbff7000000000000cbbffa000000000000cb3fd3800000000000cb3fce200000000000cb4001400000000000cbbff3c00000000000cbbff0400000000000cb3fdc400000000000cb3ff4a00000000000cb3fdca00000000000cb3fe5200000000000cbbfe7e00000000000cb3fba000000000000cb3fa4400000000000cbbfcd800000000000cb3ff2e00000000000cbbff1e00000000000cb3fba600000000000cb3fe9400000000000cb3fe5a00000000000cbbfed000000000000cbbfee200000000000cbbfe2400000000000cbbfe5000000000000cb3ffd000000000000cbbfdfc00000000000cbbfd7e00000000000cbbff1000000000000cbbfecc00000000000cbbfdbc00000000000cb3fec800000000000cbbfe5200000000000cbbfc6200000000000cbbfc4800000000000cb3fb6e00000000000cb3fff400000000000cb3fe0200000000000cbbfd0400000000000cbbfe7800000000000cb3fe5400000000000cb4000400000000000cbbff4c00000000000cbbfe3400000000000cbbfe4200000000000cbbfd6800000000000cb3feda00000000000cb3ffc200000000000cb3fdf600000000000cb3f8e000000000000cbbf73000000000000cbbfeee00000000000cb3ff3200000000000cb3fff000000000000cbbfe0200000000000cbbfeaa00000000000cbbfe9e00000000000cbbfd9e00000000000cbbfd4e00000000000cbbfc0c00000000000cbbfe5200000000000cbbfaf000000000000cbbfd5600000000000cbbfc0200000000000cb3fdc000000000000cbbfe2800000000000cb3fb0400000000000cbbfe9800000000000cbbffba00000000000cb3f74000000000000cb3fdba00000000000cb3fe8a00000000000cb3fd6a00000000000cbbfc6800000000000cbbff1e00000000000cb3fece00000000000cbbfcd000000000000cbbfe7200000000000cb3fdb400000000000cbbffb600000000000cb3ffae00000000000cbbfff200000000000cb3fe9a00000000000cb3ffe200000000000cb3fe4000000000000cb3ffb200000000000cb3ff1e00000000000cb3fd9600000000000cbbff0400000000000cb3fde400000000000cbbff3c00000000000cbbffb800000000000cbbfef200000000000cbbff5800000000000cbbfe0a00000000000cb3fd3000000000000cb3fdb800000000000cb3fdec00000000000cbbff9000000000000cbbff5e00000000000cb3fe6600000000000cb3f95200000000000cbbfc0400000000000cbbfd2c00000000000cb3fde600000000000cbbfdec00000000000cbbfe5e00000000000cb3fec200000000000cbbfe6e00000000000cbbfede00000000000cb3ff3e00000000000cb3feec00000000000cbbff6400000000000cb3fbf800000000000cb3fd5e00000000000cbbfc9e00000000000cb3ff4c00000000000cbbfe6400000000000cbbfebc00000000000cbbfe3e00000000000cbbffb800000000000cb3fdf200000000000cb3ff2200000000000cb3fdb000000000000cbbfe2000000000000cb3fe0000000000000cb3fd2800000000000cbbfeb200000000000cbbfc1400000000000cb3ffd800000000000cbbfe1c00000000000cb3ffd600000000000cbc001a00000000000cb3fe1800000000000cb3fe4e00000000000cbbfdba00000000000cbbfea200000000000cbbfedc00000000000cbbfd4a00000000000cb3fca800000000000cbbfdb400000000000cb3ff2200000000000cbc001a00000000000cbbfdf400000000000cb3fe8a00000000000cb3fde000000000000cbbff2400000000000cb3fc2000000000000cb3fcb400000000000cbbffc000000000000cbc002600000000000cbbfd6600000000000cb3fe4000000000000cb3fcd600000000000cbbfde400000000000cb3fedc00000000000cb3ff7400000000000cb3fffc00000000000cbbfdde00000000000cb3fdc800000000000cbbfdec00000000000cbbff2c00000000000cbbfbba00000000000cb3ffc400000000000cb4000600000000000cb3fc9000000000000cbbfef400000000000cb3ff1800000000000cb3ffba00000000000cbbfc6600000000000cbbfeba00000000000cbbff0600000000000cb3fd3e00000000000cb3ff3400000000000cb3fd7c00000000000cb3fe7600000000000cb3fd6800000000000cb3fe2000000000000cb3ff2200000000000cbbfc9400000000000cbbf88400000000000cbbfe9600000000000cbbfea800000000000cbbfb0200000000000cbbfe4800000000000cb3ff9200000000000cbbfff400000000000cbbfd0000000000000cbbfdf400000000000cb3fb0400000000000cbbfc0800000000000cb3fd6600000000000cb3fef40000000000001cb3fe6c00000000000cb3fe6a00000000000cbbff3400000000000cb3fe5200000000000ab32393530393133322d313592cb403f3d40ca5ab58ddc0400cb3fd1000000000000cbbfd6e00000000000cb3f7c000000000000cb3fe2800000000000cbbfd8800000000000cb3fd6600000000000cb3fc8000000000000cb3ff2400000000000cb3fe4200000000000cb3fefc00000000000cb3ff0a00000000000cb3fca800000000000cbbfe9000000000000cb3fc2000000000000cb3fe3e00000000000cb3ff2c00000000000cb3fda200000000000cb3ff8200000000000cb3fcaa00000000000cb3fece00000000000cbbffb400000000000cbbfb6e00000000000cb3ff8800000000000cb4001000000000000cbbfe0e00000000000cbbfbb800000000000cbbfea200000000000cb4004600000000000cbbff3600000000000cbbfdc200000000000cb3fc9400000000000cb3ff4a00000000000cbbfdea00000000000cb3fc1600000000000cbbfed800000000000cb3fa8e00000000000cb3fd3a00000000000cb3fea800000000000cb3ff0e00000000000cbbff2600000000000cb3fe4200000000000cb3fb8e00000000000cbbff1200000000000cbbff2000000000000cb3fff200000000000cbbfe2400000000000cbbff6800000000000cb3fc8800000000000cbbff1800000000000cbbfe4800000000000cbbf71400000000000cbbfa1000000000000cb3fe3e00000000000cbbfcde00000000000cb3ff5e00000000000cbbffb200000000000cbbfe7000000000000cb3ff4600000000000cb3fee800000000000cb3fade00000000000cb3fea200000000000cb3fbd400000000000cb3fcb400000000000cbbff0e00000000000cb3fc6200000000000cbbf98a00000000000cb3fcec00000000000cb3feac00000000000cbbff4e00000000000cb3fbda00000000000cbbfcd600000000000cbbfec400000000000cb3ff7c00000000000cb3fed400000000000cbc000c00000000000cbbff1c00000000000cbbfe5200000000000cb3ff4600000000000cbbfcf200000000000cbbfc1800000000000cb3ff0800000000000cb3fe4a00000000000cbc002800000000000cb3ffca00000000000cbbfe5800000000000cbbfb0e00000000000cbbfc0200000000000cbbfe3e00000000000cb3fe8800000000000cbbfa3c00000000000cbbfe3600000000000cb3ff1600000000000cbbfcfe00000000000cbbfe4a00000000000cb3ff9c00000000000cb3fe6c00000000000cbbfa7400000000000cbbfd0800000000000cbbfdc200000000000cb3ff2400000000000cb3ff1000000000000cb3fd3a00000000000cb3ffa200000000000cb3fe9a00000000000cbbff0200000000000cb3ff4c00000000000cbbff7600000000000cb3fc2000000000000cb3ff5600000000000cbbfe1200000000000cbbfd3000000000000cb3fdee00000000000cb3ffe800000000000cb3fe8c00000000000cb3fd2c00000000000cb3fe8200000000000cbbff0400000000000cb3feda00000000000cb3f8ac00000000000cbbfd2400000000000cb3fef000000000000cb3fef800000000000cb3fe2200000000000cb3fe8000000000000cbbffd000000000000cbbfd2600000000000cb3fcec00000000000cbbfb8a00000000000cb3ffac00000000000cbbffba00000000000cbbfce000000000000cb3fe5a00000000000cb4001a00000000000cb3fd4400000000000cb3ff1400000000000cb3fb6c00000000000cbbf6fc00000000000cbbff4200000000000cbbff2a00000000000cb3feba00000000000cb3fe7c00000000000cb3fede00000000000cb3fedc00000000000cbbfe6c00000000000cb3fca800000000000cb3fe7600000000000cbbfbf600000000000cbbff9c00000000000cb3fbc000000000000cb3fd9c00000000000cbbfd7800000000000cbbfdf600000000000cbbff3a00000000000cb3ff2e00000000000cb3ff4600000000000cb3fe2200000000000cb3fa7000000000000cb3fd5c00000000000cbbff8200000000000cbbff1a00000000000cbbffa400000000000cb3fe1a00000000000cb3ffd000000000000cbbfcfe00000000000cb3fd7c00000000000cb3fd7e00000000000cbbfd6c00000000000cbbfeda00000000000cbbff9c00000000000cb3fddc00000000000cbbfb3c00000000000cb3ffc800000000000cb3fe0800000000000cb3fe6c00000000000cbbfeaa00000000000cb3fd9200000000000cbbffe000000000000cbbfbd000000000000cb3ff4400000000000cbbff4e00000000000cbbfde800000000000cb3fc6600000000000cb3fce600000000000cbbff2400000000000cbbfc6600000000000cb3fc4600000000000cbbff8a00000000000cbbfd8600000000000cbbfd4e00000000000cbbffb000000000000cbbfede00000000000cb3ffca00000000000cb3ff5000000000000cb3fa2400000000000cbbff0a00000000000cbbfcb200000000000cbbfd2e00000000000cbbfe5200000000000cbbfe1600000000000cb3fde800000000000cb3ff1400000000000cb3fe1200000000000cb3ff5200000000000cb3fcb200000000000cbbff3800000000000cbbff2c00000000000cb3fde400000000000cbbfedc00000000000cb3fe3400000000000cbbfebe00000000000cb3ff5000000000000cbbff2400000000000cb3fedc00000000000cbbfb6000000000000cb3fe5800000000000cb3fdec00000000000cb3fd1e00000000000cb3ffda00000000000cbbfd3400000000000cb3feb200000000000cb3fddc00000000000cbbfe3a00000000000cbbfd8800000000000cbbff0e00000000000cbbfe4e00000000000cb3fc5e00000000000cbbfe6800000000000cb3f91000000000000cb3fdda00000000000cbbfd3000000000000cb3ff1a00000000000cb3fd1c00000000000cb3fdec00000000000cb3fc5c00000000000cb3ff1e00000000000cbbfa9a00000000000cb3fedc00000000000cb3ff3a00000000000cb3fe9e00000000000cbbff1e00000000000cb3fe0200000000000cb3f91000000000000cb3fc5200000000000cbbfffc00000000000cbbff3600000000000cbbfd9a00000000000cbbfff600000000000cbbff1800000000000cbbffce00000000000cb3ff8a00000000000cb3fdbc00000000000cb4001400000000000cb3fe4c00000000000cbc005600000000000ffcb3feac00000000000cb3fe5e00000000000cbbfeb600000000000cb3fe0200000000000cbbff4800000000000cbbfc9e00000000000cbbff3a00000000000cbbfda000000000000cbbfe8a00000000000cbbfb4a00000000000cbc000c00000000000cbbff1c00000000000cb3ff6a00000000000cb3fe0000000000000cbbfda600000000000cb3f9d800000000000cbbfc6600000000000cbbfd5800000000000cbbff3000000000000cb3fe9000000000000cb3fea600000000000cb3ff7800000000000cb3fb9000000000000cbbfe9400000000000cbbfe6c00000000000cb3fd0400000000000cb3feb000000000000cbbfe3c00000000000cb3ffbe00000000000cb3fadc00000000000cb3fb5400000000000cbbfd7800000000000cbbff0600000000000cbbfcda00000000000cb3fe1200000000000cb3fe4600000000000cb3ffde00000000000cbbfe1400000000000cbbfcec00000000000cb3fb3200000000000cbc002600000000000cbbfbe600000000000cbbfe5800000000000cb3fe0800000000000cbbfdc800000000000cb3fedc00000000000cb3fe3c00000000000cb4000c00000000000cb3ff0800000000000cbbffb200000000000cb3fd5e00000000000cbbfe7200000000000cbbfaf400000000000cbc002e00000000000cb3fb8000000000000cbc003000000000000cb3fdb600000000000cb3fa9000000000000cbbfd4800000000000cb3fafc00000000000cbbfd0e00000000000cb3fde000000000000cb3ff0e00000000000cb3fce000000000000cbbffe600000000000cb3fea600000000000cb3ff3600000000000cb3fde600000000000cbbfdb800000000000cbbfd7600000000000cb3fe1a00000000000cbbfec000000000000cb3fe2a00000000000cbbfda000000000000cb3ff8600000000000cb3fe3000000000000cbbfe1c00000000000cbc005800000000000cb3ff6a00000000000cbbfc8600000000000cbbf93600000000000cbbfd1400000000000cbbfd7800000000000cbbfe6200000000000cb3ff4a00000000000cbbfeec00000000000cbbfc3200000000000cb3fe3200000000000cbc003e00000000000cb3ff4e00000000000cbbfc9e00000000000cb3feec00000000000cb3fe0e00000000000cb3fc8c00000000000cbbff6400000000000cbbfd1600000000000cbbfcac00000000000cb4008400000000000cbbfe4800000000000cb3fdf800000000000cbbfd0400000000000cb3ff0600000000000cb3fe4800000000000cb3ffc800000000000cb3fe5a00000000000cbbfd5400000000000cbbfe3000000000000cbbfedc00000000000cb3fc0400000000000cbbfebc00000000000cb3ff4400000000000cbbff9000000000000cbbfe7000000000000cbbfeea00000000000cbbfd7e00000000000cb3ff4c00000000000cbbfed000000000000cbbfe0000000000000cb3ff3000000000000cb3fcca00000000000cb3ff7000000000000cb3ff3600000000000cb3ff5000000000000cbbff5800000000000cbbffda00000000000cbbffce00000000000cb4001600000000000cbbfca600000000000cb3fffe00000000000cbbfd7200000000000cbbffd200000000000cbbfd1600000000000cb3fc1600000000000cbbfbd000000000000cbbfc5c00000000000cb3ff4a00000000000cb3ff1400000000000cb3fa9200000000000cb3fe0e00000000000cbbfc4800000000000cb3fe9a00000000000cbbfafa00000000000cbbfcd400000000000cb3fd9c00000000000cb3fe7400000000000cbbfbf600000000000cb3ff1600000000000cb3fef600000000000cb3fe7200000000000cb3fedc00000000000cbbff6800000000000cb3fe7800000000000cbbfda000000000000cb3fede00000000000cbbfe5800000000000cb3fecc00000000000cbbfa0c00000000000cb3fb0000000000000cb3febe00000000000cb3fe3a00000000000cbbff6600000000000cb3ff1a00000000000cb3fe0800000000000cb3fbfc00000000000cbbff1400000000000cb3ff0400000000000cb3f86800000000000cb3fee800000000000cbbfeca00000000000cb3fb2c00000000000cbbfc1800000000000cb3fed800000000000cbbfb7800000000000cbc007400000000000cb3fd8c00000000000cbc001000000000000cb3ffd400000000000cb3ff4a00000000000cb4001800000000000cb3ffb400000000000cbbfda600000000000cb3ff8000000000000cbbfcd000000000000cbbfd5a00000000000cbbfed200000000000cb3fbc200000000000cbbfce400000000000cb3ff4e00000000000cb3ff2e00000000000cbbfb7200000000000cbbfff800000000000cb3fea800000000000cbbfe2800000000000cbbfb5400000000000cbbfcf200000000000cb3ff9600000000000cb3fe7a00000000000cbbffe400000000000cbbff1200000000000cbbfd6800000000000cbbfeae00000000000cb3ffc000000000000cb3ff4c00000000000cb3fe3e00000000000cbc009600000000000cb3fbac00000000000cb3ff2a00000000000cbbfe1000000000000cbbff5a00000000000cb4000400000000000cb3fea000000000000cbbfa2600000000000cb3fd2400000000000cbbfe2800000000000cbbff2a00000000000cbbfa4400000000000cb3fe0400000000000cb3feac00000000000cbbfd3400000000000cbbfb7800000000000cb3ffb800000000000cbbff4600000000000cbbff8200000000000cbbfb4600000000000cbbfabe00000000000cbbff2600000000000cb3fe5a00000000000cb3fe3e00000000000cb3fad000000000000cbbfe0400000000000cbbfe4400000000000cbbff7200000000000cbbf86e00000000000cb3fc7e00000000000cb3fd6400000000000cb3ff3800000000000cb3fc0e00000000000cb3fd0c00000000000cbbff3c00000000000cb3fee600000000000cb3ffc200000000000cbc003c00000000000cb4002600000000000cb3fc7c00000000000cb3fdc600000000000cb3fd0e00000000000cbbff7400000000000cb3fc7a00000000000cb3fff400000000000cbbfd8000000000000cbbfe2000000000000cbbfef600000000000cbbfc7400000000000cb3ff1600000000000cbbfc2000000000000cbbfd8400000000000cbbfe7a00000000000cbbfe9e00000000000cbbfd7400000000000cbbff4000000000000cb3feac00000000000cbbfb0600000000000cb3fe8600000000000cb3fe8c00000000000cb3fd3400000000000cb3fe9a00000000000cbbfe5200000000000cb3fea400000000000cb3ff3c00000000000cbbff9000000000000cbc000400000000000cb3ff0800000000000cb3fca000000000000cbbfe9a00000000000cb3fc3200000000000cb3fcf200000000000cb3fe1a00000000000cbbfeec00000000000cbbfec600000000000cbbfc8200000000000cbbfd7600000000000cbbfd0200000000000cbbfeb800000000000cb3fed800000000000cb3ff2400000000000cbbff5a00000000000cbbfb5e00000000000cb3fb2800000000000cb3ff7000000000000cb3ff5c00000000000cb3fe7000000000000cbbfee000000000000cb3feb600000000000cbbfed000000000000cbbfc2400000000000cbbfe9e00000000000cb3ff4200000000000cb3ff8400000000000cb3fe7e00000000000cbbfc5e00000000000cbbfb6800000000000cbbfd6e00000000000cbbfd6800000000000cb3fe1000000000000cbbff7400000000000cb3fec600000000000cbbfe2200000000000cbbfe0000000000000cb3fbe600000000000cb3fed600000000000cb3feea00000000000cbbfcc600000000000cbbfdf400000000000cb3ff6c00000000000cbbfe8c00000000000cb3ff4400000000000cb3fe5200000000000cb3fe1a00000000000cbbfeac00000000000cbbfe2800000000000cbbfef000000000000cb3fdda00000000000cb3fef400000000000cbbff4200000000000cb3fe5600000000000cbbfe7c00000000000cbbfe9a00000000000cb3ff6400000000000cbbf80800000000000cbbfe8600000000000cbbff0200000000000cbbfc6c00000000000cb3fee400000000000cbbfe9c00000000000cb3fed600000000000cb3fd2400000000000cbbfd7a00000000000cbbfa5000000000000cb3ff1200000000000cb3fd8000000000000cbbfcc000000000000cb3fcbe00000000000cb3ff4000000000000cbbfff800000000000cbbfc5400000000000cb3fd1200000000000cbc007000000000000cb3ff3800000000000cbbfea400000000000cbbfdc600000000000cbbfd2800000000000cbbfe3c00000000000cbbfe5e00000000000cbbffa800000000000cbbfd3800000000000cb3fd4200000000000cb3fd8400000000000cb3ffba00000000000cbbffc400000000000cbbfca400000000000cb3fd1800000000000cbbfd8000000000000cbbfbdc00000000000cb3fea000000000000cb3fe1800000000000cbbff4c00000000000cb3ff9c00000000000cbbfe7c00000000000cbbfe2a00000000000cbbff2800000000000cb3fd8c00000000000cbbfbd000000000000cbbfe7000000000000cbbff9e00000000000cb3fd6400000000000cb3ff0a00000000000cb3fe4600000000000cb3fe8e00000000000cb3fec800000000000cbbff3c00000000000cb3fe0400000000000cbbff1e00000000000cbbfde000000000000cbbfe2600000000000cb3fea000000000000cbc006400000000000cbbfd0800000000000cb3fcae00000000000cbbff0a00000000000cb3fe1200000000000cbbfde000000000000cbc001c00000000000cb3fe7000000000000cbbfe0000000000000cb3fbb200000000000cbbf97200000000000cb3fb4e00000000000cbbfe9e00000000000cb3fe6000000000000cb4001800000000000cbc000400000000000cb3fe4000000000000cb3fe2c00000000000cb3ff4a00000000000cbbfe9800000000000cbbfd6a00000000000cb3fe0800000000000cb3ffa400000000000cb3fa8200000000000cbbff2200000000000cb3ff7200000000000cbbfe6400000000000cbbfcfc00000000000cb3fe5c00000000000cb3feb000000000000cbbfee000000000000cb3fc5400000000000cb3ff0a00000000000cbbfec800000000000cbbfc0400000000000cb3fb6400000000000cb3ff3c00000000000cb3fd4c00000000000cb3ffaa00000000000cbbfe1200000000000cbbfabe00000000000cbbfc5800000000000cbbfe1000000000000cbbfb2600000000000cb3fdae00000000000cb3fc9600000000000cbbfe2000000000000cbbfec000000000000cbbfe4a00000000000cbbfe1800000000000cbbfd0c00000000000cb3feb400000000000cb3ff0600000000000cbbfb7e00000000000ffcbbff7800000000000cbbf5b400000000000cbbfe4c00000000000cbbfb0c00000000000cbc001400000000000cbbfb6e00000000000cb3fe2200000000000cb3fea800000000000cb3fc5800000000000cb3ffb600000000000cb4002800000000000cb3fd9000000000000cbbff1600000000000cb3ff2600000000000cbbfe3000000000000cbbfd9200000000000cbbfecc00000000000cbbfe6600000000000cb3ffe400000000000cbbff2600000000000cb3ff5800000000000cb3fe3200000000000cb3fddc00000000000cb3fb2200000000000cb400ae00000000000cb3fe0a00000000000cbbfcc200000000000cbbfd5400000000000cbc001600000000000cbbfeec00000000000cb3ff1400000000000cbbfd8000000000000cb3fda200000000000cb3fc3c00000000000cbbfe2c00000000000cbbfeb400000000000cbbfde000000000000cbbfe4a00000000000cbbffc200000000000cbbfed400000000000cbbff2200000000000cb3ff7600000000000cbbfeea00000000000cbbfb7000000000000cbbfc3200000000000cbbfe3600000000000cbbfe2a00000000000cbbff1000000000000cb3ff7c00000000000cbbff5000000000000cb3fc3400000000000cb3fec200000000000cbbffa000000000000cb3fe9000000000000cbbff3e00000000000cbbfdfa00000000000cbbff1200000000000cb3fe5800000000000cbbf9a400000000000cbbfd2000000000000cb3fcac00000000000cbbfea600000000000cb3fd2a00000000000cbbfe2600000000000cbbff0e00000000000cbbfe7400000000000cbbff8400000000000cbbffce00000000000cb3fe6c00000000000cbbfe0c00000000000cb3fe3800000000000cbbff3800000000000cbbfe5200000000000cb3ff3400000000000cbbfab200000000000cb3fc6800000000000cb3ff0600000000000cbbff1c00000000000cbbff0200000000000cbbfe5000000000000cbbfe8000000000000cbc000600000000000cb3ff8200000000000cb3ffce00000000000cbbfff400000000000cbbfe9200000000000cbbfb6a00000000000cb3ff7800000000000cb3fe7c00000000000cb3fe7400000000000cbbfe8200000000000cbbfe2200000000000cb3fe3400000000000cb3fa4a00000000000cb3fe2400000000000cb3fe4c00000000000cb3fe8600000000000cb3fe7a00000000000cb3fec000000000000cbbffee00000000000cbbff5400000000000cb3fedc00000000000cbbfe3a00000000000cb3ff5e00000000000cb3fc7600000000000cbbfe2000000000000cbbfb5000000000000cb3fc3800000000000cb3ffc800000000000cbbfe1a00000000000cb3fe9600000000000cb3ff6800000000000cb3fae200000000000cb3ff5a00000000000cbbfdba00000000000cbbffea00000000000cbbfd3400000000000cbbfef400000000000cbbfe4400000000000cbbfb4800000000000cb3ff8c00000000000cb3fea800000000000cb3fe2800000000000cb3ff5400000000000cb3fd3e00000000000cb3fee800000000000cbbfb6a00000000000cb3fc4000000000000cb3fe8200000000000cb3f96c00000000000cb3fdf200000000000cb3ff9400000000000cbbff6800000000000cbbff1000000000000cb3ff3200000000000cb3fe3e00000000000cb3fff200000000000cbbfed600000000000cbbfbf600000000000cbbfb3400000000000cb3ff2c00000000000cb3fa9c00000000000cb3fcfe00000000000cbbff9800000000000cbbf93200000000000cb3fc1e00000000000cbbfd0600000000000cb3fec400000000000cbbff4400000000000cb3fc1a00000000000cb3fb9000000000000cb3fcd000000000000cbbfe5000000000000cbbfe4c00000000000cbbfe5600000000000cbbfd7a00000000000cb3ffaa00000000000cbbfe8e00000000000cb3fb1c00000000000cbbfe7200000000000cbbfde600000000000cbbfdd400000000000cb3feea00000000000cbbfe0600000000000cb3fb8c00000000000cb3fcfa00000000000cbbfd1800000000000cb3ffca00000000000cb3f85400000000000cb3fd8800000000000cbbfd0a00000000000cb3ff2800000000000cb3ff8e00000000000cbbfe1e00000000000cbbfec400000000000cbbff3600000000000cb3fd4c00000000000cb3fba800000000000cb4002800000000000cb3feac00000000000cbbfd2400000000000cbbfa2400000000000cbbff2c00000000000cb4000600000000000cb3ff0800000000000cbbfde000000000000cbbfd9000000000000cbbfe0c00000000000cbbfd8600000000000cbbfd5e00000000000cbbfe2000000000000cb3fb7000000000000cb3fe5400000000000cb3fb9800000000000cbbfe2400000000000cb3fd8a00000000000cbbfea800000000000cbbfd1600000000000cbbff0400000000000cbbff0c00000000000cbbfe8a00000000000cbbfac000000000000cb3fc3a00000000000cb3fed600000000000cb3f9a400000000000cbbfe5a00000000000cb3fe5400000000000cbbfd0e00000000000cb3fd4800000000000cb3fe8800000000000cbbfc8e00000000000cb3ffa800000000000cbbfc5400000000000cb3fe8600000000000cb4002800000000000cb3fd3000000000000cb3ff6400000000000cbbfac200000000000cb3fd2400000000000cb3fe1c00000000000cb3fe1800000000000cbbff4600000000000cbbff2600000000000cbbfdc800000000000cb3fc1600000000000cb3fb4800000000000cb3fe7400000000000cb3fd1200000000000cb3fd1400000000000cbbff7800000000000cbbff4200000000000cb3fede00000000000cb3fa7e00000000000cb3fd1200000000000cbbfdae00000000000cb3fe9a00000000000cbbfe8a00000000000cb3fb5600000000000cb3fb7400000000000cbbfbac00000000000cbbfec200000000000cb3ff4a00000000000cbbfdb800000000000cbbffb600000000000cb3fefa00000000000cbbfdbc00000000000cb3fe7400000000000cb3fde000000000000cbbff1a00000000000cbbfd3800000000000cbbfa4200000000000cbc002400000000000cb3fbde00000000000cb3fefa00000000000cb3ff6400000000000cbbff1000000000000cb3ff2a00000000000cbbfeb800000000000cbbff3000000000000cbbff2600000000000cb3fe9e00000000000cbbfe2800000000000cb3ff5c00000000000cbbff4200000000000cb3fb6e00000000000cb3fecc00000000000cbbfd9c00000000000cbbfdd400000000000cbbfdba00000000000cbbffa800000000000cb3fc6600000000000cbbfed800000000000cb3ff7000000000000cbbffae00000000000cb3fbe800000000000cb3ff8200000000000cbbfd1e00000000000cbbff7e00000000000cb3fe2400000000000cb3fe8400000000000cbbfec600000000000cbbfec800000000000cb3fd3a00000000000cb3fe7e00000000000cbbf97800000000000cbbfe4800000000000cb3ff3e00000000000cb3ff1a00000000000cb3ffe800000000000cbbfee400000000000cb3fe1c00000000000cb3fe9200000000000cbbff9200000000000cb3faa800000000000cb3ff2c00000000000cb4002800000000000cbbfc2400000000000cbbfd2e00000000000cb3ffd000000000000cb3ff5c00000000000cbbfe5400000000000cbbf83c00000000000cbbfdf200000000000cb3fe7000000000000cb3fefc00000000000cb3fea800000000000cb3fef600000000000cb3fe9800000000000cb3fd1c00000000000cbbfbea00000000000cb3fee800000000000cbbfa1000000000000cbbfb0400000000000cbbfef200000000000cb3fdac00000000000cbbfcd400000000000cb3ff1800000000000cbbffd800000000000cb3febc00000000000cbbfcc400000000000cb3fdf600000000000cb3fbc000000000000cb3fe2000000000000cb3fe9a00000000000cb3ffa000000000000cb3ff1000000000000cb3fd6c00000000000cbbfef600000000000cb3fc4400000000000ab32393530393133322d313692cb403e32c138916a0cdc0400cbbf97400000000000cbbfd6200000000000cb3fed600000000000cb3fe7600000000000cbbfe7600000000000cbbfbca00000000000cb3fcd400000000000cb3ff1e00000000000cb3fbee00000000000cb3ff0c00000000000cb3ff1a00000000000cbbfc9200000000000cb3f9c200000000000cbbfc7800000000000cb3ffb000000000000cb3fec400000000000cb3fe3000000000000cb3fe2a00000000000cb3fe2800000000000cb3fe5800000000000cbbffc400000000000cb3fc3c00000000000cb4001a00000000000cb3ff3e00000000000cb3fe4000000000000cbbf88000000000000cbbfea600000000000cb4002c00000000000cbbfe1a00000000000cb3fdde00000000000cbbfcae00000000000cb3fe6800000000000cbbfa1e00000000000cbbfdaa00000000000cbbff1200000000000cbbfe5e00000000000cbbfd1000000000000cbbfc1c00000000000cb3ff3000000000000cbbff1c00000000000cb3ff0200000000000cb3fd1c00000000000cbbff5800000000000cbbffa200000000000cb3ff6800000000000cbbfe1e00000000000cbbfe7e00000000000cbbf50000000000000cbbfe0e00000000000cbbfd2600000000000cbbfe7e00000000000cbbfdea00000000000cbbfcfa00000000000cbbfb3a00000000000cb3ff4a00000000000cbbff5c00000000000cbbfd2200000000000cb3fe7000000000000cb3fb7c00000000000cbbfecc00000000000cb3feb800000000000cb3fee600000000000cbbfa5000000000000cbbfca600000000000cb3fd3e00000000000cbbfe5000000000000cb3fd2c00000000000cb3fd0c00000000000cbbffac00000000000cbbfce400000000000cbbfdb200000000000cbbff1600000000000cb3ff2400000000000cb3ff6000000000000cbbffc800000000000cb3fd5800000000000cbbff5e00000000000cb3fe5c00000000000cbbff2600000000000cb3fc9000000000000cb3ffdc00000000000cb3fdbc00000000000cbc001000000000000cb3fe7e00000000000cbbfe4800000000000cbbfb1200000000000cb3fc0800000000000cbbfca000000000000cb3fc1000000000000cbbfa9c00000000000cbbfb0400000000000cb3ff1200000000000cbbfb8400000000000cbbffcc00000000000cb3ffd800000000000cb3fe3200000000000cb3fe5800000000000cbbfd6400000000000cbbfc0200000000000cb3fd1a00000000000cb3fe6400000000000cb3ffde00000000000cb3ffd600000000000cb3fc1000000000000cbbfe6a00000000000cb3fe8e00000000000cbbfdfc00000000000cb3fe5200000000000cb3feac00000000000cbbff2e00000000000cbbfebe00000000000cb3fe9800000000000cb4000a00000000000cb3fddc00000000000cb3fe0e00000000000cb3ff7800000000000cbbff0600000000000cb3fd1200000000000cbbfd9600000000000cbbfc2600000000000cb3ff1c00000000000cb3fe8000000000000cb3ff4600000000000cb3fd3800000000000cbbff5e00000000000cb3f73800000000000cb3fe3c00000000000cb3ff6400000000000cb3fe4c00000000000cbbff5000000000000cbbfee400000000000cb3fe0600000000000cb3ffc400000000000cb3fd1000000000000cb3ff9e00000000000cb3fd6e00000000000cbbfd9400000000000cbbfec800000000000cbbfe8600000000000cb3ffc800000000000cb3ff2000000000000cb3fe0800000000000cb3feea00000000000cbbfa6800000000000cbbfe7600000000000cb3fd1c00000000000cbbfcdc00000000000cbbfe1800000000000cbbfe7600000000000cb3fe1200000000000cbbff0e00000000000cbbfeb800000000000cbbfef600000000000cb3ff1e00000000000cb3ff3600000000000cb3ff1e00000000000cbbfeac00000000000cb3fd2400000000000cbbff2c00000000000cbbfe6400000000000cbbff5c00000000000cb3fe7600000000000cb3ff8a00000000000cbbff4000000000000cb3fdb000000000000cb3fef400000000000cb3fe4600000000000cbbfd6c00000000000cbbff4400000000000cb3fdf800000000000cb3ff2c00000000000cb3ff6600000000000cb3fed600000000000cb3ffa200000000000cb3fe6000000000000cb3fdae00000000000cbbff7400000000000cbbfdb800000000000cb3ff6c00000000000cbbff6000000000000cbbfefe00000000000cb3ff4400000000000cb3fc9200000000000cbbff9e00000000000cb3f90800000000000cbbfe8600000000000cbc000800000000000cbbfd7000000000000cbbfe2800000000000cbbffd200000000000cbbfe7800000000000cb3fe8400000000000cb3ff6400000000000cbbfaa200000000000cbbff4800000000000cb3fd5600000000000cbbfcea00000000000cbbfe4a00000000000cbbfe7400000000000cb3fd3000000000000cb3fc0e00000000000cb3ff1a00000000000cb3fd8c00000000000cbbfd0600000000000cbbfeb800000000000cbbfe3200000000000cb3fc5800000000000cbbfed400000000000cb3fdce00000000000cbbfef000000000000cb3fee400000000000cbbff2600000000000cb3ff0800000000000cbbfc2800000000000cbbfc4e00000000000cbbfc6000000000000cbbf94400000000000cb4002e00000000000cbbf9b400000000000cb3feea00000000000cbbfc1e00000000000cb3fc6c00000000000cbbfec200000000000cbbfee000000000000cb3fde200000000000cb3fe6200000000000cbbfd3e00000000000cbbfd8800000000000cb3fdc800000000000cbbfb2400000000000cb3ff2e00000000000cb3fcca00000000000cbbfcbe00000000000cbbfa5000000000000cb3ffb200000000000cb3fce600000000000cb3fec400000000000cb3fe2600000000000cb3feae00000000000cbbfe6c00000000000cb3ff0800000000000cbbfd5200000000000cb3ff2a00000000000cbbff2400000000000cbbfdfe00000000000cbbfdd800000000000cbbffdc00000000000cb3fd6000000000000cbbfe0800000000000cb3ff9600000000000cbbfc5400000000000cb3ff5c00000000000cb3fd2200000000000cbc005400000000000cbbfc9e00000000000cb3ff2200000000000cbbfd0200000000000cb3fc1a00000000000cb3fe3c00000000000cbbff0c00000000000cb3fdea00000000000cb3fd2600000000000cbbff2200000000000cbbfe9400000000000cbbfae000000000000cbbff4400000000000cbbfc5c00000000000cb3ffb800000000000cbbfc0a00000000000cbbfe6200000000000cb3fdc400000000000cbbfe5a00000000000cb3fc4e00000000000cb3fc3e00000000000cb3fea000000000000cb3fee600000000000cb3ffe800000000000cb3fdee00000000000cbbff9a00000000000cbbff0a00000000000cb3ff4800000000000cb3fb4a00000000000cbbfe3000000000000cb3fed200000000000cb3fede00000000000cbbfab200000000000cbbfe6400000000000cbbff9600000000000cbbfe4000000000000cb3f9ac00000000000cb3ffb400000000000cb3ffdc00000000000cbbfb5a00000000000cb3fe0200000000000cbbfe5400000000000cbc004a00000000000cbbfcd400000000000cb3fb9600000000000cb3fea000000000000cbbfb6c00000000000cb3ff7200000000000cbbfc9e00000000000cb3ff6c00000000000cb3fea200000000000cbbff5c00000000000cb3fd9800000000000cbbfd5400000000000cbbfc3400000000000cbbfed000000000000cb3fd3c00000000000cbc001600000000000cb3fe2400000000000cbbf6d800000000000cbbfdaa00000000000cb3fde200000000000cb3fee600000000000cb3ff5400000000000cb3fed600000000000cbbfe4200000000000cbbff0a00000000000cb3fea600000000000cb3fdf400000000000cb3febc00000000000cbbfe9000000000000cb3fc8000000000000cb3fd9400000000000cbbff0e00000000000cb3fd3000000000000cbbfeec00000000000cb3fe2e00000000000cb3fd3800000000000cbbfe1800000000000cbbffc800000000000cb3feae00000000000cbbfe0600000000000cb3fc7200000000000cbbfc0e00000000000cb3fe1800000000000cb3fa6800000000000cb3ff1600000000000cbbff0200000000000cbbfd1c00000000000cb3fbdc00000000000cbc000600000000000cb3fd1800000000000cbbfd4800000000000cb3fe3400000000000cb3fd0600000000000cb3fc8800000000000cbbff6000000000000cb3f86400000000000cbbfe5800000000000cb4005800000000000cbbfde000000000000cb3fc6800000000000cbbfd1400000000000cb3fd6000000000000cb3fd6400000000000cb3fcc600000000000cb3fa7000000000000cbbfea400000000000cbbff6c00000000000cbbfe4000000000000cbbfd6800000000000cbbfeb200000000000cb3ff9200000000000cbbfebe00000000000cbbfda800000000000cbbfdee00000000000cb3fc0400000000000cb3fe4400000000000cbbfd2000000000000cbbfe3a00000000000cb3fec600000000000cb3fdda00000000000cb3ff8c00000000000cbbfaa400000000000cb3fe9600000000000cbbff4a00000000000cbbfe6000000000000cbbfd4800000000000cb4001000000000000cbbff7e00000000000cb3ffd200000000000cb3fe8600000000000cbbfd7400000000000cbbfebc00000000000cb3fc5800000000000cbbfb4400000000000cbbfe3400000000000cb3ff0800000000000cb3ff0200000000000cbbfd4600000000000cb3fca200000000000cbbfe8400000000000cb3fdcc00000000000cbbf92600000000000cbbfd8600000000000cbbfd2400000000000cbbfdca00000000000cbbfc9400000000000cb3ff9000000000000cb3fed800000000000cb3feac00000000000cb3ff6a00000000000cbbfd0400000000000cb3fef200000000000cbbfdce00000000000cb3fe6e00000000000cbbfe7000000000000cb3fd2400000000000cbbfc4800000000000cbbfc0400000000000cb3fd2000000000000cb3fc2600000000000cbbfdf000000000000cb3ff3400000000000cbbfbba00000000000cb3fa0400000000000cbbff2400000000000cb3ff6c00000000000cb3fc3400000000000cb3feec00000000000cbbfe9400000000000cb3fb3800000000000cbbfdd200000000000cbbfd0800000000000cb3fe4e00000000000cbc005800000000000cb3ff1400000000000cbbffb200000000000cb3ff5c00000000000cb4002600000000000cb3ff2800000000000cb3ff6e00000000000cbbfc5200000000000cb3ff1c00000000000cbbfd8c00000000000cbbfe8800000000000cbbfec800000000000cbbfd5800000000000cbbff2000000000000cb3ff8400000000000cb3ff1e00000000000cb3feac00000000000cbc003e00000000000cb3fe9e00000000000cbbff4c00000000000cb3fe1000000000000cb3fea800000000000cb3fef000000000000cb3fe7c00000000000cbbff4e00000000000cbbffc200000000000cb3f8b800000000000cbbfede00000000000cb3ff9a00000000000cb3fea800000000000cb3fe1e00000000000cbc007800000000000cbbfdec00000000000cb3fe3e00000000000cbbfd5a00000000000cbbfeaa00000000000cb4000800000000000cbbfa5e00000000000cbbfd9a00000000000cb3fa2400000000000cbc002400000000000cbbfeac00000000000cb3fd0400000000000cb3fbe600000000000cb3ff1400000000000cb3fd0600000000000cbbfdb200000000000cb3ff5000000000000cbbff4c00000000000cbbfed800000000000cb3fe5200000000000cb3fea200000000000cbbfd1000000000000cb3fd9000000000000cb3ff6200000000000cb3fc5200000000000cbbfef600000000000cb3fee800000000000cbbff6e00000000000cb3faec00000000000cb3fe3200000000000cbbfe0a00000000000cb3ff5c00000000000cb3fd6600000000000cb3fdbc00000000000cbbff7600000000000cbbfe3800000000000cb3ffa200000000000cbbff5200000000000cb3ff9e00000000000cb3fac400000000000cb3fc7800000000000cb3fd8600000000000cbbfe1400000000000cbbfec200000000000cb3ff3200000000000cbbfdba00000000000cbbfc6e00000000000cbbfd4c00000000000cb3fe3800000000000cb3fea800000000000cbbfe2400000000000cbbfe1200000000000cbbff8800000000000cb3fe2e00000000000cbbfcd800000000000cbbff6600000000000cb3fe4000000000000cb3fee800000000000cb3fdec00000000000cb3fe1000000000000cb3fef400000000000cb3ff5000000000000cbbff7000000000000cb3ff4a00000000000cb3ff2400000000000cbbff1600000000000cbbff1000000000000cb3fdde00000000000cb3fc5600000000000cbc000e00000000000cbbfbac00000000000cbbfddc00000000000cb3ff1e00000000000cbbfe7400000000000cbbff5200000000000cb3fe3800000000000cbbfd2800000000000cbbfec800000000000cbbf90800000000000cb3fe0000000000000cb3fe9a00000000000cbbfe4e00000000000cbbfd1c00000000000cbbfbee00000000000cb4000e00000000000cb4001800000000000cb3ff4800000000000cbbfe8000000000000cb3febe00000000000cbbfe9600000000000cbbfed600000000000cbbfe3e00000000000cb3fd9e00000000000cb3ff3200000000000cb3fef200000000000cbbfe2400000000000cbbfbb800000000000cbbff4e00000000000cbbfdc000000000000cb3fcdc00000000000cbbff2400000000000cbbfe4400000000000cbbfeb800000000000cbbfe9000000000000cb3fda200000000000cb3ff2400000000000cb3ffba00000000000cbbfba400000000000cbbfc2c00000000000cb3fea200000000000cbbfa4c00000000000cb3fee200000000000cb3ff0200000000000cb3fd8600000000000cb3fd5e00000000000cbbfee000000000000cbbfe9400000000000cb3fe7400000000000cb3fde800000000000cbbff6200000000000cb3ff0600000000000cbbfe0800000000000cbbff0200000000000cb3ff1600000000000cbbfee000000000000cbbfdd200000000000cbbffc800000000000cbbfdca00000000000cb3fd9600000000000cbbffe600000000000cb3fe8e00000000000cb3fc2c00000000000cbbfde800000000000cb3fd2a00000000000cb3ff2a00000000000cb3fc8e00000000000cbbfcd800000000000cb3fee400000000000cb3ff7600000000000cbbff7600000000000cb3fbaa00000000000cb3fe4400000000000cbc004e00000000000cb3fe2400000000000cbbfe6400000000000cbbfd2800000000000cb3fbfc00000000000cbbfed400000000000cbbff3800000000000cbbffc800000000000cbbfd3000000000000cbbff1c00000000000cb3fe1c00000000000cb3ff7a00000000000cbbff6a00000000000cb3ff6400000000000cb3fbee00000000000cb3fde800000000000cbbfd7c00000000000cb3fef000000000000cb3ffe400000000000cbbfe1400000000000cb3fe8200000000000cbbfe5e00000000000cbbfb0c00000000000cbbff3800000000000cb3fb7200000000000cbbfb8600000000000cbbfdfe00000000000cbbffb000000000000cb3fe0000000000000cbbfb8600000000000cb3ff0c00000000000cbbfa8200000000000cb3fd8000000000000cbbff4800000000000cb3fef800000000000cbbfeec00000000000cb3f99000000000000cb3fe0c00000000000cb3ff9e00000000000cbc003600000000000cbbfd9a00000000000cbbfda800000000000cbbffd200000000000cb3fe8a00000000000cbbfda600000000000cbc006a00000000000cbbfd5800000000000cb3fe4200000000000cb3fe7600000000000cbbfd7400000000000cb3fde200000000000cb3fa5a00000000000cbbfc7800000000000cb3ffd800000000000cbc002000000000000cbbfbe400000000000cbbfcdc00000000000cb3fe9e00000000000cbbfe9200000000000cbbfe0800000000000cb3feec00000000000cb3ff6400000000000cb3f8f800000000000cbbfe5200000000000cb3ff4e00000000000cbbfc4000000000000cbbfd6600000000000cb3ff5e00000000000cb3fc9e00000000000cbbfe0e00000000000cbbfd6800000000000cb3ff7600000000000cbbff4200000000000cb3fcce00000000000cb3fca800000000000cb3fed200000000000cbbfe4c00000000000cb3fec400000000000cb3f9e400000000000cb3fed000000000000cbbff0c00000000000cbbfb7a00000000000cbbfc7600000000000cbbfe8c00000000000cb3fe1a00000000000cb3fb6200000000000cbbfe4e00000000000cb3fd9000000000000cbbff0200000000000cbbfe1c00000000000cb3feb800000000000cb3fee000000000000cbbfb4a00000000000cbbfeae00000000000cbbff8600000000000cb3ff0200000000000cbbfefe00000000000cb3fe0c00000000000cbbfe8a00000000000cb3fcbc00000000000cb3ffec00000000000cb3fe9e00000000000cb3fe7800000000000cb3ff3600000000000cb3ff7c00000000000cb3fdba00000000000cbbfef200000000000cb3fefa00000000000cbbff6a00000000000cbbfe1a00000000000cbbfec600000000000cbbfeba00000000000cb3ffc600000000000cbbff2800000000000cb3fe4400000000000cb3feb800000000000cb3fe6600000000000cbbfa5600000000000cb4009e00000000000cb3ff4800000000000cbbfea200000000000cbbfa8600000000000cbbfe9800000000000cbbff3c00000000000cb3fd2c00000000000cb3fe7600000000000cb3fe6400000000000cb3f98000000000000cbbfd6c00000000000cbbfe9e00000000000cbbfe2400000000000cb3fc9000000000000cbbff1000000000000cbbfcee00000000000cbbfea800000000000cb3fec000000000000cbbffea00000000000cbbfa4e00000000000cbbfeb400000000000cbbfe9600000000000cbbfd9800000000000cbbff6400000000000cb3ffe600000000000cbbfd2c00000000000cb3fe1200000000000cb3fe2a00000000000cbbff0200000000000cb3fd6000000000000cbbff9400000000000cbbff1000000000000cbbffae00000000000cbbfad000000000000cbbfe2a00000000000cbbfe1400000000000cbbfd6000000000000cbbff1c00000000000cbbfe2200000000000cbbfe4e00000000000cbbfe1200000000000cbbf97800000000000cbbfe6e00000000000cbbfe3c00000000000cb3ff4a00000000000cbbfc9200000000000cb3fd3e00000000000cbbff5a00000000000cbbfd8600000000000cb3ff0600000000000cb3fd7e00000000000cbbfb6e00000000000cb3ff4600000000000cbbff3600000000000cbbff2c00000000000cbbff0a00000000000cbbff2c00000000000cbbffca00000000000cb3fc0e0000000000002cbc000400000000000cbbfe8200000000000cbbfea200000000000cb3ffac00000000000cb3fe2c00000000000cb3fdfe00000000000cbbfdae00000000000cbbff0200000000000cbbf82600000000000cbbfa6c00000000000cb3fda800000000000cb3ff3c00000000000cbbfb0c00000000000cbbfcea00000000000cb3fe0a00000000000cbbff1600000000000cbbfe4c00000000000cb3fea600000000000cbbfe2a00000000000cb3fdc200000000000cb3fd8a00000000000cbbfaa600000000000cb3fcfc00000000000cb3ff2e00000000000cb3ff6a00000000000cbbfeb400000000000cb3fe3800000000000cb3ff7400000000000cbbfdce00000000000cb3fef600000000000cb3fe2800000000000cbbfe9600000000000cbbfb0400000000000cbbfd4000000000000cbbfe6c00000000000cbbff6600000000000cb3ffa400000000000cbbf9b400000000000cb3fd0a00000000000cb3ff4400000000000cbbfd4000000000000cb3feec00000000000cb3fc3400000000000cbbfe8a00000000000cb3fdf000000000000cbbfdfc00000000000cb3fde600000000000cb3fef000000000000cbbff3e00000000000cbbff4e00000000000cb3fd4200000000000cb3fdcc00000000000cb3fffc00000000000cbbff8c00000000000cbbfeb600000000000cbbff9c00000000000cb3fee800000000000cb3fc8800000000000cbbfd2200000000000cbbff0e00000000000cb3fd8000000000000cbbfa6200000000000cbbfc4800000000000cb3ff1200000000000cbbfe5c00000000000cbbfcf800000000000cb3fe4a00000000000cb3fe7c00000000000cbbfb5000000000000cbbff0600000000000cbbfdc200000000000cbbff0800000000000cb3fef400000000000cbbfdbc00000000000cbbfe8400000000000cbbff2000000000000cbbff0200000000000cbbfe0c00000000000cb3fe4800000000000cbbfdcc00000000000cbbfd3400000000000cbbfe1600000000000cbbfe1c00000000000cb3ff4e00000000000cb3fdfa00000000000cbbfd8a00000000000cbbfd3800000000000cb3ff2000000000000cb3ff5a00000000000cbbfed200000000000cbbff7e00000000000cbbfffe00000000000cbbfddc00000000000cb3feae00000000000cb3ff8600000000000cb3fefc00000000000cb3feca00000000000cbbfc9200000000000cbbfeee00000000000cb4001200000000000cb3ff5200000000000cbbfd0800000000000cbbfd4400000000000cb3fc7c00000000000cbbfce800000000000cbbff3e00000000000cbbfcee00000000000cb3fc9000000000000cb3fd1200000000000cbbfd5600000000000cb3face00000000000cb3fe5800000000000cbbfe9600000000000cb3faa800000000000cbbff3a00000000000cbbff8600000000000cb3f7b600000000000cb3ff3800000000000cbbfc8600000000000cb3feb800000000000cbbfda400000000000cbbfd8400000000000cb3feb400000000000cbbfd8c00000000000cbbfca000000000000cb3fe3e00000000000cbbfd2e00000000000cb3ffba00000000000cbbff4200000000000cb3fdd600000000000cb3ff8400000000000cb3ff1800000000000cb3fec000000000000cb3ff3e00000000000cb3fab200000000000cbbfe8c00000000000cb3fe1200000000000cbbff2000000000000cbc000800000000000cbbfea200000000000cbbfeaa00000000000cbbfe4600000000000cb3fee800000000000cbbfe4c00000000000cb3fe7c00000000000cbbffc400000000000cbbfeba00000000000cb3ff3400000000000cb3ff0200000000000cbbfe5600000000000cb3fe4000000000000cb3feb400000000000cbbfe9e00000000000cbbfe2800000000000cb3fb8a00000000000cb3fe0a00000000000cbbfebe00000000000cb3fe5a00000000000cb3fe1e00000000000cbbff5200000000000cb3ff3600000000000cbbfbc600000000000cbbfc8600000000000cb3fef600000000000cbbfe5c00000000000cbbfe1000000000000cbbfba800000000000cbbffea00000000000cb3fe8e00000000000cb3fdd400000000000cb3feea00000000000cbbfe9400000000000cbbfd2e00000000000cbbfb8000000000000cbbfe4600000000000cbbf8bc00000000000cb3fe4600000000000cbbff0c00000000000cb3ff5000000000000cbbff6200000000000cb3fe2800000000000cb3fed000000000000cb3fd5e00000000000cbbfd2600000000000cbbfeb400000000000cbbfd8600000000000cbbfe1000000000000cbbfd1e00000000000cb3ff1e00000000000cbc000600000000000cb3fe9800000000000cb3ff6400000000000cb3fdda00000000000cbbfe2e00000000000cb3faa000000000000cb3fefa00000000000cbbff5000000000000cbbfd6c00000000000cbbfe5800000000000cb3fe9000000000000cb3fd3400000000000cbbfd8000000000000cb3ffb200000000000cb3ffac00000000000cb3ff1800000000000cbbfe3200000000000cbbfd2a00000000000cb3fc3400000000000cbbff1000000000000cbbfda000000000000cb3fff600000000000cb3fffe00000000000cb3fd4000000000000cbbfe2600000000000cb3ff5600000000000cb3ff5c00000000000cbbfdda00000000000cbbfe7800000000000cb3f99000000000000cb3fe5e00000000000cb3ff2000000000000cb3fe7000000000000cb3fd7e00000000000cb3fd5000000000000cb3fec400000000000cb3fed600000000000cb3fc4800000000000cbbfd6000000000000cbbfe1600000000000cbbfc4c00000000000cb3fe7400000000000cbbfd4800000000000cb3ffc200000000000cbbff3000000000000cb3fe8800000000000cbbff3c00000000000cbbfb3a00000000000cb3fef400000000000cbbf94e00000000000cb3fdd200000000000cb3fed600000000000cb3fe5e00000000000cb3fd9a00000000000cbbfefc00000000000cbbfb5400000000000ab32393530393133322d313792cb403f0be2eb1381c0dc0400cbbfd1200000000000cbbfc6a00000000000cb3fd5400000000000cb3fe3c00000000000cbbfeb800000000000cb3fd8400000000000cb3fb8800000000000cb3ff2200000000000cbbfa4c00000000000cb3fe4400000000000cb3fec400000000000cb3fc2e00000000000cbbfdb000000000000cb3fb6800000000000cb3fe8200000000000cb3ff2c00000000000cb3fe8400000000000cb3ff2000000000000cb3fdf600000000000cb3ff3e00000000000cbc000600000000000cbbfe3e00000000000cb3fff000000000000cb3ff7200000000000cb3fbce00000000000cbbfd0600000000000cbbfec000000000000cb4004600000000000cbbff6e00000000000cbbfd4000000000000cb3fd6e00000000000cb3ff5200000000000cbbfebe00000000000cbbfe4e00000000000cbbfc7200000000000cb3fd6a00000000000cbbfd4200000000000cb3ff3400000000000cb3ff9800000000000cbbff3e00000000000cb3fe6000000000000cbbfd6c00000000000cbbfef600000000000cbbff9400000000000cb3ffac00000000000cbbfe2000000000000cbbff9400000000000cb3fcc400000000000cbbff3600000000000cbbfea600000000000cbbfe1800000000000cbbfc8c00000000000cb3fde400000000000cb3fc9200000000000cb3ff6400000000000cbbff3600000000000cbbfe9a00000000000cb3fee400000000000cb3fd6200000000000cb3fdbc00000000000cb3ff2000000000000cbbfafc00000000000cbbf9a000000000000cbbfe3c00000000000cbbfcf800000000000cbbfdd600000000000cb3fe0c00000000000cb3fe0800000000000cbbff8000000000000cbbfd6400000000000cbbfa9600000000000cbbff3000000000000cb3ffe400000000000cb3ff6a00000000000cbbffb800000000000cbbfe2800000000000cbbfe5200000000000cb3fe9600000000000cbbfe6c00000000000cb3fa2a00000000000cb3ff4800000000000cb3fdec00000000000cbc004c00000000000cb3feb400000000000cbbfe5a00000000000cb3fe1200000000000cbbfc0a00000000000cb3fe0a00000000000cb3fd4a00000000000cbbfd3400000000000cbbfe5c00000000000cb3fedc00000000000cb3f95000000000000cbbff2400000000000cb4000e00000000000cb3ff2600000000000cb3fdd000000000000cbbfe4800000000000cbbfd9800000000000cb3fe6e00000000000cb3ff1c00000000000cb3fdde00000000000cb3ff1c00000000000cb3fdda00000000000cbbfece00000000000cb3ff9a00000000000cbbff2800000000000cb3fd5c00000000000cb3ff2800000000000cbbff5a00000000000cbbfae400000000000cb3fe5000000000000cb4003e00000000000cb3ff1200000000000cb3fdbe00000000000cb3fe6000000000000cbbff8600000000000cb3fe7400000000000cb3fce000000000000cbbfdb800000000000cb3fe7600000000000cb3fed400000000000cb3fcd400000000000cb3ff0200000000000cbbffd600000000000cb3fc7e00000000000cb3fe2a00000000000cb3fed600000000000cb3ff9800000000000cbbffbe00000000000cbbfe2000000000000cb3fea800000000000cb4001a00000000000cb3fcac00000000000cb3ff0200000000000cbbfd6e00000000000cbbfd0800000000000cbbff4800000000000cbbff0e00000000000cb3ff6200000000000cb3fee000000000000cb3fe2000000000000cb3ff3600000000000cbbfee000000000000cb3fc7a00000000000cb3ff1c00000000000cbbfde800000000000cbbff6800000000000cbbfb1400000000000cb3fd0400000000000cbbfe5800000000000cbbfd3800000000000cbbfe5400000000000cb3fe5c00000000000cb3fede00000000000cb3fefc00000000000cb3fce200000000000cb3ff1c00000000000cbbff6c00000000000cbbfee400000000000cbc002a00000000000cb3fe2e00000000000cb4002600000000000cbbfe8000000000000cb3fde600000000000cb3fd8200000000000cbbfd0400000000000cbbfeee00000000000cbbffde00000000000cb3fecc00000000000cb3fe7c00000000000cb3ffb800000000000cb3ff3c00000000000cb3feca00000000000cbbfcd000000000000cb3fb5000000000000cbbfffc00000000000cb3fbd800000000000cb3fe1200000000000cbbff6a00000000000cbbff5800000000000cbbfd5e00000000000cb3fd7000000000000cbbffe800000000000cbbfda600000000000cbbf55c00000000000cbbff7800000000000cbbfe7800000000000cbbfca800000000000cbbff7c00000000000cbbff8e00000000000cb3ffb800000000000cb3fe6600000000000cbbfd5a00000000000cbbff4200000000000cbbfa1800000000000cbbfd7600000000000cbbfe2800000000000cbbfe2800000000000cb3fd4800000000000cb3fec200000000000cb3fe3c00000000000cb3ff2a00000000000cb3fc5200000000000cbbffae00000000000cbbff3000000000000cb3fdb200000000000cbbfe7400000000000cb3fd3400000000000cbbfe5e00000000000cb3ff1c00000000000cbbff2e00000000000cb3fd1200000000000cb3fe7800000000000cb3fc1a00000000000cbbfdac00000000000cb3fee800000000000cb4001c00000000000cbbfd8200000000000cb3fd7400000000000cbbfb6c00000000000cbbfe8200000000000cbbfdca00000000000cbbff2000000000000cbbfb2000000000000cb3fd4600000000000cbbfc8400000000000cbbfd6e00000000000cb3f95c00000000000cbbfea000000000000cb3feaa00000000000cb3fd9000000000000cb3fe2600000000000cb3fdc600000000000cb3ffb600000000000cbbfbe000000000000cb3ff8000000000000cb3feda00000000000cb3ff2000000000000cbbff0200000000000cb3fc3a00000000000cbbfb8000000000000cb3fe1000000000000cbbff7200000000000cbbfe5c00000000000cb3fcf200000000000cbc000c00000000000cbbfe4c00000000000cbbff4800000000000cb3ff6e00000000000cbbf9fe00000000000cb4003600000000000cb3fce600000000000cbbfff200000000000cbbfe8200000000000cb3fe5e00000000000cb3fd5600000000000cbbfe4e00000000000cb3fb0e00000000000cbbfed400000000000cbbfd5200000000000cbbfd8000000000000cbbfe6000000000000cbbfeec00000000000cbbfdea00000000000cbbff9400000000000cbbfefc00000000000cb3ff1000000000000cb3fec800000000000cbbfc6000000000000cb3fe0800000000000cbbfcd400000000000cbbf75800000000000cbbfd3800000000000cb3fda400000000000cb3fe4200000000000cb3ff4000000000000cb3fdc000000000000cbbff4a00000000000cbbfd5400000000000cb3ff4200000000000cb3ff4c00000000000cbbfe4200000000000cb3ff7c00000000000cbbfc2000000000000cb3fc5800000000000cbbfe3a00000000000cbbff7e00000000000cbbfefe00000000000cb3fe0a00000000000cb3fe6800000000000cb3fffc00000000000cbbfe6a00000000000cb3fc8400000000000cb3fba000000000000cbc004400000000000cbbfdca00000000000cbbfe2200000000000cb3fe8a00000000000cbbfe0a00000000000cb3fe4600000000000cb3fca400000000000cb4000200000000000cb3fe5e00000000000cbbffc000000000000cb3fe6000000000000cbbfe1c00000000000cbbfb2800000000000cbbff8a00000000000cbbfdf200000000000cbc004000000000000cb3fa2c00000000000cb3fa3a00000000000cbbfe3e00000000000cbbfc0e00000000000cb3fea000000000000cbbf9ca00000000000cb3fee200000000000cb3fb2c00000000000cbbffc200000000000cb3fe4800000000000cb3fe9c00000000000cb3fe5400000000000cbbfefe00000000000cbbfdc200000000000cb3f8dc00000000000cbbfe9400000000000cb3fdd200000000000cbbfea800000000000cb3ffea00000000000cb3fcbc00000000000cbbfe7600000000000cbc001800000000000cb3feb400000000000cbbfd4800000000000cb3fd2a00000000000cb3fb7400000000000cb3fe3000000000000cbbfe6e00000000000cb3ff3000000000000cbbff3800000000000cbbfdb600000000000cb3fe1000000000000cbc005c00000000000cb3ff5400000000000cbbfd9800000000000cb3ff0c00000000000cb3fc4200000000000cb3fbfa00000000000cbbff2c00000000000cbbfe4000000000000cbbfbbc00000000000cb400d800000000000cbbfa0400000000000cb3fdc800000000000cbbfc5800000000000cb3fdaa00000000000cb3fd9600000000000cb3fefa00000000000cb3fe1600000000000cbbfef800000000000cbbfea200000000000cbbfef800000000000cbbfe0e00000000000cbbff3400000000000cb4000400000000000cbbffe600000000000cbbfe7a00000000000cbbfe0600000000000cbbfcb800000000000cb3fe9e00000000000cbbfeba00000000000cbbfe5e00000000000cb3ff7600000000000cb3fd0a00000000000cb3ff4000000000000cb3fdf600000000000cb3fe1800000000000cbbff6200000000000cbbff8400000000000cbbffca00000000000cb4001c00000000000cbbfd0800000000000cb3ffda00000000000cbbfdc400000000000cbbff1e00000000000cbbfe3600000000000cb3fdea00000000000cb3fa3c00000000000cbbfb6000000000000cb3ff7c00000000000cb3ff0c00000000000cbbfd0600000000000cb3fd1600000000000cbbfc8800000000000cb3fe5600000000000cb3fd4400000000000cbbfd7c00000000000cb3fe5e00000000000cb3fdde00000000000cb3fd0000000000000cb3fe8800000000000cb3ff4200000000000cb3fe8000000000000cb3ff3400000000000cbbff2e00000000000cb3fe5c00000000000cbbfba200000000000cb3ff1000000000000cbbfc4c00000000000cb3fe8800000000000cb3fe5e00000000000cbbfd9a00000000000cb3fd9a00000000000cb3fede00000000000cbbff4a00000000000cb3ff7400000000000cb3fe7600000000000cb3fac800000000000cbbfeda00000000000cb3fee400000000000cbbfc4a00000000000cb3feea00000000000cbbfebe00000000000cbbfc3c00000000000cbbfd0a00000000000cb3fe0200000000000cb3fe0400000000000cbc005800000000000cb3fe4e00000000000cbbff7c00000000000cb3ff7600000000000cb3ff9000000000000cb3ff7a00000000000cb4001400000000000cbbfb9600000000000cb3ff6a00000000000cbbfed200000000000cbbfe9600000000000cbbfe9c00000000000cb3fc4800000000000cb3fbde00000000000cb3ffa600000000000cb3fd3a00000000000cb3f98000000000000cbc000c00000000000cb3ff5a00000000000cbbfd4c00000000000cbbfe0a00000000000cb3fe6c00000000000cb3ff1e00000000000cb3fe6800000000000cbbfff800000000000cbbff3800000000000cbbfe6a00000000000cbbfdc600000000000cb4002200000000000cb3ff4600000000000cb3fe9200000000000cbc00ac00000000000cbbff0200000000000cb3ff7600000000000cbbfd3c00000000000cbbff0c00000000000cb4000400000000000cb3fd8e00000000000cbbfe0200000000000cb3fdfe00000000000cbbfefe00000000000cbbff6c00000000000cbbfdd800000000000cb3f95400000000000cb3ff6000000000000cb3fd0200000000000cb3fc7800000000000cb3ff7c00000000000cbbfe5400000000000cbbff6400000000000cb3ff1000000000000cbbfee400000000000cbbfe6c00000000000cb3fcb800000000000cb3fd9a00000000000cbbfe2a00000000000cbbfe8800000000000cbbfe4e00000000000cbbff1e00000000000cbbfc5c00000000000cb3f9e800000000000cbbfc4200000000000cb3ff3600000000000cb3fc5400000000000cb3fdf200000000000cbc000800000000000cb3fe8c00000000000cb4001000000000000cbc000600000000000cb4003a00000000000cb3fcca00000000000cb3fe0000000000000cb3fe2c00000000000cbbff3800000000000cbbfe5800000000000cb3ff7200000000000cb3fcc200000000000cbbfcf400000000000cb3fc3200000000000cb3fe5600000000000cb3ff3a00000000000cb3fae800000000000cbbf93400000000000cbbfef400000000000cbbfd7200000000000cbbfd8200000000000cbbff6200000000000cb3ff7200000000000cb3fdba00000000000cb3fcf400000000000cb3fe7c00000000000cb3fe0200000000000cb3fe0200000000000cbbff5200000000000cb3fd9200000000000cb3ff0400000000000cbbff8200000000000cbbffc400000000000cb3fdd000000000000cb3fac000000000000cbbffa000000000000cb3fd5800000000000cbbfb7000000000000cb3feea00000000000cbbfeac00000000000cbbfed600000000000cb3fc3e00000000000cbbfb1000000000000cbbfd3600000000000cbbfd3000000000000cb3fe8200000000000cb3fecc00000000000cbbfe4000000000000cbbfe3400000000000cbbfba200000000000cb3ffda00000000000cb4002200000000000cb3fdd400000000000cbbfeb600000000000cb3fe2000000000000cbbfd9200000000000cbbfd6600000000000cbbfe8600000000000cb3fe5600000000000cb3ff0800000000000cb3fe9c00000000000cbbfca000000000000cbbfc8800000000000cbbfd9600000000000cbbfd9200000000000cb3fc8800000000000cbbff7000000000000cbbfd0e00000000000cbbfee200000000000cbbfd5000000000000cb3fd8c00000000000cb3fefa00000000000cb3ffa800000000000cbbfc6000000000000cb3fa2e00000000000cb3fe5c00000000000cbbfe6000000000000cb3ff4800000000000cb3fe7800000000000cb3fe4a00000000000cbbfd3400000000000cb3fbf800000000000cbbfc0600000000000cb3fe1e00000000000cb3fdee00000000000cbbfed400000000000cb3fe3000000000000cbbfe9600000000000cbbfe2600000000000cb3ff9800000000000cb3fd3a00000000000cbbfdbe00000000000cbbffe000000000000cb3fba400000000000cb3fe9000000000000cbbff2400000000000cb3fa7000000000000cb3fdbe00000000000cbbfcc800000000000cb3fda200000000000cb3fe6c00000000000cb3fd8000000000000cb3fbb800000000000cb3fd3a00000000000cb3fe3800000000000cbbffd800000000000cbbfbac00000000000cbbfb2400000000000cbc005c00000000000cb3ff5c00000000000cbbfe3a00000000000cbbfe2a00000000000cb3fa1000000000000cbbff1000000000000cbbff4600000000000cbbff7200000000000cbbfe3800000000000cb3fc0200000000000cb3fe6a00000000000cb3ff7e00000000000cbc000800000000000cb3fed000000000000cb3fc0e00000000000cbbf93000000000000cbbfce800000000000cb3fe3c00000000000cb3ff3c00000000000cbbff9000000000000cb3ffa000000000000cbbfe3800000000000cbbfc8000000000000cbbff3a00000000000cbbfbb800000000000cbbfe0000000000000cbbfeca00000000000cbbffe600000000000cbbfd1400000000000cb3fe1200000000000cb3ff3000000000000cb3fd7000000000000cb3fe0600000000000cbbfe7400000000000cb3feb800000000000cbbff2200000000000cb3fb5200000000000cbbfb1600000000000cb3ff0200000000000cbc002600000000000cbbfd8a00000000000cb3fc9600000000000cbbff3000000000000cbbfc3000000000000cbbfd6000000000000cbc002e00000000000cb3fd8600000000000cbbfcd800000000000cb3fe5600000000000cbbfc4000000000000cb3fb2000000000000cbbff3e00000000000cb3fd8a00000000000cb3ffc400000000000cbc003200000000000cbbfc9400000000000cb3fe4600000000000cb3feea00000000000cbbff6c00000000000cbbfe4e00000000000cb3fe1c00000000000cb3ffd400000000000cb3fad000000000000cbbfeb200000000000cb3ff5000000000000cbbfdd400000000000cbbfe1400000000000cb3fecc00000000000cb3ff3000000000000cbbfee400000000000cbbfe5200000000000cb3fe2e00000000000cbbfee400000000000cbbfaca00000000000cbbfdde00000000000cb3ffb600000000000cb3fa5800000000000cb3fe6a00000000000cb3fc1800000000000cb3fd1000000000000cbbfd1200000000000cbbfbbe00000000000cbbfd5600000000000cbbfe5000000000000cb3fd5000000000000cbbfd9600000000000cbbfeb000000000000cbbfdde00000000000cbbff0200000000000cb3fb9000000000000cb3fd3c00000000000cb3fe9600000000000cbbfc1400000000000cbbfe4c00000000000cbc001200000000000cb3fe2400000000000cbbfeda00000000000cb3fd2800000000000cbbffae00000000000cbbfd2200000000000cb3febe00000000000cb3ff5c00000000000cb3fd8c00000000000cb3ff3400000000000cb4000800000000000cb3fca000000000000cbbfeec00000000000cb3fe6800000000000cbbfeb000000000000cb3f84000000000000cbbfe4200000000000cbbff1000000000000cb3ff0e00000000000cbbff6c00000000000cb3ff5400000000000cb3fe0000000000000cb3fe1c00000000000cb3f9a800000000000cb4005000000000000cb3feaa00000000000cbbfe3c00000000000cb3f9c400000000000cbbffb800000000000cbbfb4800000000000cb3fe6400000000000cb3fd2e00000000000cb3fbd800000000000cb3fab400000000000cbbfea600000000000cbbfd1e00000000000cb3fc6200000000000cbbfe5c00000000000cbbff5c00000000000cb3fd4c00000000000cbbff1a00000000000cb3ff4c00000000000cbbff1a00000000000cbbfd6c00000000000cb3fbe800000000000cbbfe5400000000000cbbff0a00000000000cbbfe3e00000000000cb3ff4600000000000cbbfeb800000000000cb3fd7000000000000cb3ff8e00000000000cbc000e00000000000cb3fec000000000000cbbffae00000000000cbbfe4400000000000cbbff8000000000000cb3fe8400000000000cb3f9f800000000000cbbfdfc00000000000cb3f9ec00000000000cbbfe0c00000000000cb3fcd800000000000cbbfec800000000000cbbfdec00000000000cbbfdc200000000000cbbff6600000000000cbbff0600000000000cb3fed000000000000cbbfa1600000000000cb3fc8800000000000cbbff7200000000000cbbfe0800000000000cb3feae00000000000cb3fe7e00000000000cbbfc3000000000000cb3ff5800000000000cbbfee000000000000cbbff5400000000000cbbfe5000000000000cbbfd9600000000000cbbffee00000000000cb3fee400000000000cb3ff6e00000000000cbbffc400000000000cbbff1600000000000cbbfe6600000000000cb3fed600000000000cb3fd2400000000000cb3ff0e00000000000cbbfe7200000000000cbbfd9a00000000000cb3fca000000000000cb3fbd400000000000cb3fc6400000000000cb3fc9600000000000cb3fe8200000000000cb3fcaa00000000000cb3fefc00000000000cbbffa600000000000cbbfea200000000000cb3fdf200000000000cbbfe1800000000000cb3ff6800000000000cbbfd2400000000000cb3fb1e00000000000cbbfe9200000000000cb3fedc00000000000cb3ff5a00000000000cbbfb9400000000000cb3fe080000000000001cbbfdfc00000000000cb3fee400000000000cb3fb6800000000000cbbffd800000000000cb3f99800000000000cbbfd5000000000000cbbfe5e00000000000cbbfe1000000000000cb3ffae00000000000cb3fec800000000000cb3fea400000000000cb3fdfa00000000000cbbfe4200000000000cb3ff5400000000000cb3fcca00000000000cb3fdd200000000000cb3ff6400000000000cb3fc1600000000000cb3fe1600000000000cb3ffa200000000000cbbff8000000000000cbbff9200000000000cb3fdea00000000000cb3fd3800000000000cb3ffea00000000000cbbff7400000000000cb3fa4000000000000cbbfd2400000000000cb3ff0c00000000000cbbfbba00000000000cb3fd4600000000000cbbfee800000000000cb3fbe800000000000cbbfd1e00000000000cbbfd640000000000001cbbff5400000000000cbbfd6c00000000000cb3fd5600000000000cb3fe2a00000000000cbbfd4400000000000cbbfeac00000000000cbbfa6600000000000cbbfd6a00000000000cb3ff5c00000000000cbbfb1600000000000cb3fcde00000000000cbbfec800000000000cbbfee400000000000cbbfd2800000000000cb3feac00000000000cbbfc1600000000000cbbfe1c00000000000cb3fb6000000000000cbbfe0a00000000000cb3ffb000000000000cbbfd8800000000000cb3fc3000000000000cbbfeea00000000000cb3feb200000000000cb3ff8800000000000cbbff7000000000000cbbfea000000000000cbbff3c00000000000cb3fbc600000000000cb3fcf200000000000cb3ffc600000000000cb3ff4000000000000cb3fd3a00000000000cbbfd4e00000000000cbbfeb800000000000cb3ff6e00000000000cb3feb800000000000cbbfdb200000000000cbbfd0200000000000cbbfe0c00000000000cbbfcea00000000000cbbfe6000000000000cbbfe9200000000000cbbfb4a00000000000cb3fdee00000000000cb3fc2600000000000cbbfd5000000000000cb3fd3600000000000cbbfe0c00000000000cbbfc0400000000000cbbfe6600000000000ffcbbfdc200000000000cb3fdf600000000000cb3fe4400000000000cb3ff2a00000000000cbbfcea00000000000cbbfe4000000000000cb3fd5000000000000cbbff1800000000000cb3feca00000000000cb3fc1800000000000cbbfe9a00000000000cb3ff5a00000000000cbbff4000000000000cb3fecc00000000000cb3ffe800000000000cb3feaa00000000000cb3ff9800000000000cb3fd2200000000000cb3fe5c00000000000cb3fc5200000000000cb3fcfa00000000000cbbfffa00000000000cbbff8600000000000cbbfdd000000000000cbbfd1400000000000cb3f94c00000000000cb3ff0200000000000cb3fcc800000000000cbbf92400000000000cbbff0400000000000cbbff4200000000000cb3ff1a00000000000cb3fdc800000000000cb3f95600000000000cb3fcbc00000000000cb3fe6400000000000cbbfcfc00000000000cbbfd9200000000000cb3fe6c00000000000cb3fdc400000000000cbbfe5000000000000cb3ff8800000000000cbbfdda00000000000cbbff8800000000000cb3fee200000000000cbbfe8800000000000cb3fb9000000000000cb3fd0000000000000cbbfee400000000000cbbfd2e00000000000cb3fcfe00000000000cbc001800000000000cb3fe2800000000000cb3fe3e00000000000cb3ff8000000000000cbbfb1a00000000000cb3fec800000000000cbbfe8a00000000000cbbfdc200000000000cbbfbac00000000000cb3feb200000000000cbbfe7400000000000cb3ffc800000000000cbbff0c00000000000cb3fe1c00000000000cb3feb400000000000cbbfe5200000000000cb3fd2e00000000000cbbfe9c00000000000cbbff2600000000000cb3fce600000000000cbbfe7000000000000cb3ff9000000000000cbbff5e00000000000cbbfd8400000000000cb3ffbc00000000000cb3fdf400000000000cbbffbc00000000000cb3fd5a00000000000cb3fc5e00000000000cbbff1600000000000cbbff5a00000000000cb3fe5a00000000000cb3fd2600000000000cb3fc0600000000000cbbfca400000000000cb3ff4000000000000cb3ff3600000000000cb3fff800000000000cbbfd8800000000000cb3fe8e00000000000cb3fec800000000000cbbff8600000000000cb3fc3e00000000000cb3ff5400000000000cb3ffc600000000000cbbfbb400000000000cbbfde600000000000cb3fe9e00000000000cb3ff4e00000000000cbbfe0400000000000cb3fc1c00000000000cbbf83c00000000000cb3ff2800000000000cb3fe8800000000000cb3fdb800000000000cb3ff4000000000000cb3feb400000000000cbbfb6c00000000000cb3fe2200000000000cb3feec00000000000cb3fcce00000000000cbbfe0000000000000cbbfd9000000000000cb3fe2e00000000000cbbfdee00000000000cb3ff3a00000000000cbbffa600000000000cb3ff3600000000000cbbfe1a00000000000cb3fe3000000000000cbbfcc000000000000cb3fe9600000000000cb3fe2000000000000cb3fffa00000000000cb3fed800000000000cb3fafe00000000000cbbff8600000000000cb3fb8c00000000000ab32393530393133322d313892cb403f0b6d980bf014dc0400cb3fd6200000000000cbbfe6c00000000000cb3fe2600000000000cb3fe2a00000000000cbbfe9400000000000cb3fd2e00000000000cb3fd1800000000000cb3fec600000000000cb3fe7c00000000000cb3ff7a00000000000cb3ff4600000000000cb3fc8400000000000cbbfe6800000000000cb3fb5800000000000cb3fda800000000000cb3fed600000000000cb3fe7a00000000000cb3ff1200000000000cb3feb000000000000cb3fe9c00000000000cbc000400000000000cbbfd2000000000000cb3ff9800000000000cb4000600000000000cbbfe0400000000000cbbfc4800000000000cbbff5800000000000cb4004e00000000000cbbfe7a00000000000cb3fcf000000000000cb3fe1200000000000cb3ff3a00000000000cbbfbda00000000000cb3f98800000000000cbbfe4200000000000cbbfdcc00000000000cbbfc1a00000000000cb3fec800000000000cb3ff6000000000000cbbff2e00000000000cb3ff1400000000000cbbfb4400000000000cbbff1a00000000000cbbff2600000000000cb3ffd200000000000cbbfdd400000000000cbbff7800000000000cb3fc9e00000000000cbbff6000000000000cbbfeb400000000000cbbfd7400000000000cbbfe8c00000000000cb3fd6400000000000cbbf97400000000000cb3ff8e00000000000cbbffb200000000000cbbfdac00000000000cb3feea00000000000cb3fd9a00000000000cb3fb1800000000000cb3fea600000000000cb3fba400000000000cbbfca800000000000cbbfeb400000000000cbbfb3a00000000000cbbfcba00000000000cb3fdb000000000000cb3fe3400000000000cbbfebe00000000000cb3f77000000000000cbbf8e400000000000cbbff1c00000000000cb3ff1200000000000cb3fe9600000000000cbbffa000000000000cbbfe0a00000000000cbbfe9600000000000cb3fe9800000000000cb3fb5000000000000cbbfa5800000000000cb3fe0a00000000000cb3fba200000000000cbc000600000000000cb3ffe200000000000cbbfe6600000000000cb3f93e00000000000cb3fb6400000000000cbbfe7a00000000000cb3fd3e00000000000cb3fbc400000000000cbbfe6400000000000cb3ff6200000000000cbbfd3e00000000000cbbff4600000000000cb3ff8e00000000000cb3fe9400000000000cbbfdd200000000000cbbfae800000000000cbbfd4400000000000cb3fe5000000000000cb3ff6600000000000cb3fde400000000000cb4001600000000000cb3fe4200000000000cbbfe6600000000000cb3ff9400000000000cbbff5800000000000cb3fe1600000000000cb3ff3a00000000000cbbfe7e00000000000cbbfc6200000000000cb3fe6c00000000000cb4003200000000000cb3ff1e00000000000cb3f9e200000000000cb3fd0600000000000cbbff6c00000000000cb3fdd000000000000cbbfd7000000000000cbbfa5c00000000000cb3ff0800000000000cb3fea800000000000cb3ff0e00000000000cb3fe3000000000000cbc000800000000000cbbfdcc00000000000cb3fe8400000000000cb3fc6c00000000000cb3ffc800000000000cbbff3a00000000000cbbfcd600000000000cb3ff5400000000000cb4000a00000000000cb3fd7a00000000000cb3ff1400000000000cbbfd6600000000000cbbfb6600000000000cbbff7a00000000000cbbfe4400000000000cb3fe7200000000000cb3fe4400000000000cb3ff3000000000000cb3ff0c00000000000cbbfeea00000000000cb3fe2c00000000000cb3feda00000000000cbbfb5000000000000cbbff1c00000000000cb3fa3000000000000cb3fe4600000000000cbbf92a00000000000cbbfe3800000000000cbbff6400000000000cb3ff1600000000000cb3ff8400000000000cb3fed600000000000cbbfd1400000000000cb3fdca00000000000cbbff3a00000000000cbbfe9c00000000000cbbffb600000000000cb3fe7200000000000cb3ffec00000000000cbbfd4c00000000000cb3fd1c00000000000cb3ff1400000000000cbbfe2c00000000000cbbff3400000000000cbbff6000000000000cb3fdda00000000000cbbf6b000000000000cb4000400000000000cb3ff1800000000000cb3ff1800000000000cbbfe2a00000000000cb3fd0200000000000cbbff5800000000000cbbfc1c00000000000cb3fe8e00000000000cbbff6000000000000cbbff0600000000000cb3fae800000000000cb3fe1000000000000cbbff7400000000000cbbfd0600000000000cb3fc1600000000000cbc001400000000000cbbfd4000000000000cbbf81600000000000cbbfe9000000000000cbbff1400000000000cb3ffd400000000000cb3fe4200000000000cb3fc0600000000000cbbff3000000000000cbbfcb200000000000cbbfe1800000000000cbbfd8200000000000cbbfdf000000000000cb3fd6000000000000cb3feb000000000000cb3fedc00000000000cb3fe7e00000000000cbbfacc00000000000cbbff5e00000000000cbbff0800000000000cb3fe9200000000000cbbfee400000000000cb3fb2000000000000cbbff3200000000000cb3fffe00000000000cbbffb400000000000cb3f73a00000000000cb3fd6000000000000cb3fe7a00000000000cb3fd2600000000000cb3fd4200000000000cb3ff8a00000000000cbbff3e00000000000cb3fbd800000000000cbbf78800000000000cbbfe6800000000000cbbfe1800000000000cbbfecc00000000000cbbfd9600000000000cb3fd7200000000000cbbfbf600000000000cbbfce200000000000cb3fe3a00000000000cbbff0c00000000000cb3fe9400000000000cb3f82a00000000000cb3fc5a00000000000cb3fb7e00000000000cb3ff9200000000000cbbfcd200000000000cb3ff0c00000000000cb3ff3800000000000cb3fe8c00000000000cbbff4a00000000000cb3fdf600000000000cbbfa6e00000000000cb3fc5800000000000cbbffc000000000000cbbfefa00000000000cbbfd3800000000000cbbffde00000000000cbbff5600000000000cbbff6600000000000cb3ff8600000000000cbbfd5000000000000cb4001c00000000000cb3fd5400000000000cbc002800000000000cbbff1200000000000cb3fe3c00000000000cb3fdea00000000000cbbfe9e00000000000cb3fd7e00000000000cbbff0800000000000cbbfc3400000000000cbbfed800000000000cbbfd6400000000000cbbfe5200000000000cbbfe0c00000000000cbc000200000000000cbbfe5600000000000cb3ff9800000000000cb3fe5a00000000000cbbfd4a00000000000cb3fca400000000000cbbfe5600000000000cbbfa6e00000000000cbbfc2000000000000cb3fecc00000000000cb3fe4a00000000000cb3ff9c00000000000cb3fdba00000000000cbbfece00000000000cbbfeca00000000000cb3fe9a00000000000cb3fecc00000000000cbbfdce00000000000cb3ffd000000000000cbbfc3e00000000000cb3fe2400000000000cbbfda000000000000cbbff2000000000000cbbfc9c00000000000cb3fefe00000000000cb3fe5a00000000000cb3ffd600000000000cbbfcb800000000000cbbfc9c00000000000cbbfc0400000000000cbc004a00000000000cbbfd8000000000000cbbfd0800000000000cb3fe7000000000000cbbfdce00000000000cb3ff0400000000000cb3fdc200000000000cb3ffee00000000000cb3ff0200000000000cbc000200000000000cb3fc5c00000000000cbbff0c00000000000cb3fb4a00000000000cbc002000000000000cb3fdca00000000000cbc004600000000000cb3fe4a00000000000cbbfd5c00000000000cb3f85e00000000000cb3fd3c00000000000cb3fd4e00000000000cbbfc4200000000000cb3ff1600000000000cb3fd7400000000000cbc000e00000000000cb3ff0600000000000cb3fe2e00000000000cb3faac00000000000cbbfeee00000000000cbbfbd000000000000cb3fc1200000000000cbbfe7c00000000000cb3fa6000000000000cbbfe8400000000000cb3ff2c00000000000cb3fbf200000000000cbbfdc800000000000cbc002c00000000000cb3fefc00000000000cb3fcc400000000000cbbfe0800000000000cb3fc8a00000000000cb3fc7400000000000cbbfd8e00000000000cb3ff3e00000000000cbbff5600000000000cbbfc1000000000000cb3fe8e00000000000cbc005000000000000cb3ff3400000000000cbbfd7200000000000cb3fe7c00000000000cb3fbf200000000000cb3fc2e00000000000cbbffd800000000000cbbfd1a00000000000cbbfde200000000000cb400ae00000000000cbbfe5e00000000000cb3fe1600000000000cbbfda800000000000cb3fe6c00000000000cb3fe6000000000000cb3ff7a00000000000cb3fd0400000000000cbbfebc00000000000cbbfe5000000000000cbbfed600000000000cbbfb4200000000000cbbff2a00000000000cb3ffba00000000000cbbff7800000000000cbbfdfe00000000000cbbfe1800000000000cb3fc2200000000000cb3ff7a00000000000cbbfe9000000000000cbbfdd600000000000cb3ff7e00000000000cb3fd9e00000000000cb3ffa000000000000cb3fe6a00000000000cb3febe00000000000cbbfff000000000000cbbffb000000000000cbc001400000000000cb4000a00000000000cbbfa4a00000000000cb4002200000000000cbbfc1e00000000000cbbff4000000000000cbbfdda00000000000cb3fe3200000000000cbbfd1a00000000000cb3fea200000000000cb3ff3800000000000cb3fec200000000000cb3fc1a00000000000cb3fe2000000000000cbbfe3c00000000000cb3fdee00000000000cb3f7d200000000000cbbfc8000000000000cb3fe7000000000000cb3fda000000000000cb3fde600000000000cb3ff5800000000000cb3ff2c00000000000cb3ff2200000000000cb3feac00000000000cbbff4200000000000cb3fe9c00000000000cb3fd6a00000000000cb3febe00000000000cbbfce800000000000cb3fed400000000000cbbfab400000000000cbbfce000000000000cb3ff7800000000000cb3fe9600000000000cbbff0200000000000cb3ff4c00000000000cb3fdac00000000000cb3fd6e00000000000cbbff0c00000000000cb3ff1800000000000cb3fa1200000000000cb3fee000000000000cbbfec600000000000cbbf77e00000000000cb3fca400000000000cb3fe8e00000000000cbbfd5e00000000000cbc009e00000000000cb3fb0e00000000000cbbffec00000000000cb3ff4800000000000cb3ff4400000000000cb4003400000000000cb3ff4400000000000cbbfcb600000000000cb3ff4400000000000cbbfd3200000000000cbbff7c00000000000cbbfde000000000000cb3fd1800000000000cbbf7a000000000000cb3ffa200000000000cb3fe7c00000000000cb3fc7a00000000000cbc002e00000000000cb3fede00000000000cbbfdf800000000000cbbfc6400000000000cb3fe2400000000000cb3ff5a00000000000cb3fd1000000000000cbc002200000000000cbbfe6400000000000cbbfe5200000000000cbbfe880000000000002cb3ff5a00000000000cb3fd1400000000000cbc004200000000000cbbfde800000000000cb3ff6600000000000cbbfd8400000000000cbbfee800000000000cb3fff600000000000cb3fd8400000000000cbbfe8000000000000cbbfbba00000000000cbbff1e00000000000cbbff2600000000000cbbfc9000000000000cb3fdc600000000000cb3fe7000000000000cbbfc1c00000000000cbbfcc800000000000cb3fef200000000000ffcbbff4400000000000cb3fe1e00000000000cbbfcc800000000000cbbfee600000000000cbbf9e400000000000cb3fe7200000000000cbbfc9e00000000000cbbfebc00000000000cbbfd7800000000000cbbffca00000000000cb3fcf400000000000cb3fdee00000000000cbbfdd000000000000cb3ff2400000000000cb3fc7800000000000cb3fe4a00000000000cbc000c00000000000cb3fee800000000000cb3ff8200000000000cbc004800000000000cb4002e00000000000cbbfb2000000000000cb3fe2400000000000cbbfa4800000000000cbbffde00000000000cbbfd4800000000000cb3ffaa00000000000cbbfe5a00000000000cbbfd8600000000000cbbff2000000000000cbbfe2800000000000cb3fe5200000000000cbbfc2800000000000cb3fc8200000000000cbbfe3800000000000cbbfe3800000000000cbbfb4400000000000cbbff1000000000000cb3feb400000000000cb3fca400000000000cb3fe4e00000000000cb3fe7a00000000000cb3fbee00000000000cb3fed400000000000cbbff0600000000000cb3fc0600000000000cb3ff0600000000000cbbff2000000000000cbbff7000000000000cb3ff3800000000000cb3f6c400000000000cbbff1400000000000cb3fb3000000000000cbbfaf000000000000cb3fe1c00000000000cbbfd2a00000000000cbbfe1a00000000000cbbfb9200000000000cbbfdca00000000000cbbfc9400000000000cbbfbba00000000000cb3ff2000000000000cb3ff1c00000000000cbbfeec00000000000cb3fc2400000000000cb3fdbe00000000000cb3ff5a00000000000cb3ff5c00000000000cb3fe7400000000000cbbfeb600000000000cb3fe0c00000000000cbbff4400000000000cb3fd6200000000000cbbff1000000000000cb3feb600000000000cb3ffbc00000000000cb3fe0800000000000cbbfb7600000000000cbbfb8000000000000cbbfeec00000000000cbbfe5000000000000cb3fc1600000000000cbbffde00000000000cb3fea400000000000cbbfea000000000000cbbfe3800000000000cb3fde600000000000cb3fefe00000000000cb3feee00000000000cbbfd6e00000000000cbbfd9400000000000cb3fef600000000000cbbfeee00000000000cb3fef800000000000cb3fd7c00000000000cb3fe6200000000000cbbfe5200000000000cbbfde600000000000cbbfe9c00000000000cb3fe2400000000000cb3fef600000000000cbbffd000000000000cb3fde800000000000cbbfcf400000000000cbbfd9800000000000cb3ffa200000000000cbbfb1400000000000cbbfe8000000000000cbbff4000000000000cbbf9fc00000000000cb3fdc800000000000cbbfe7400000000000cb3fef600000000000cb3fc0000000000000cbbfed400000000000cb3fb7400000000000cb3ff2200000000000cb3fda000000000000cbbfba400000000000cb3fe1600000000000cb3ff1600000000000cbbffd800000000000cb3fa4600000000000cb3f89000000000000cbc006200000000000cb3ff3000000000000cbbfeac00000000000cbbfd1a00000000000cbbfa9800000000000cbbfeae00000000000cbbff2200000000000cbbffe600000000000cb3fb9800000000000cb3fe6600000000000cb3fe5c00000000000cb3ff4800000000000cbbffb200000000000cb3fa0a00000000000cbbfca000000000000cb3fcb400000000000cbbfbf000000000000cb3fd9400000000000cb3fed200000000000cbbff4800000000000cb3ffbe00000000000cbbfe0200000000000cbbfe0800000000000cbbfef400000000000cbbfd1c00000000000cbbfec800000000000cbbfe8400000000000cbbff6c00000000000cb3fb5600000000000cb3fef200000000000cb3fd2c00000000000cb3ff2800000000000cb3fde200000000000cbbfe9c00000000000cb3feb600000000000cbbfecc00000000000cbbfd8600000000000cbbfd3c00000000000cb3fe3400000000000cbc006400000000000cbbfd0000000000000cbbfbb800000000000cbbfefc00000000000cb3fac000000000000cbbfdfa00000000000cbc001600000000000cb3fb5000000000000cbbfcde00000000000cb3fed800000000000cbbfd6600000000000cbbf92400000000000cbbfe8600000000000cb3fe6800000000000cb3ff6a00000000000cbc001e00000000000cb3fc5600000000000cb3fe7000000000000cb3ff3200000000000cbbfea000000000000cbbfe8200000000000cb3fe4a00000000000cb3ff8200000000000cb3fcc600000000000cbbff7800000000000cb3ff4a00000000000cb3fb0600000000000cbbfe2800000000000cb3fe5c00000000000cb3fe2800000000000cbbff0800000000000cb3fdb600000000000cb3ff5200000000000cbbff7400000000000cbbfdcc00000000000cbbfabc00000000000cb3ff8400000000000cb3fc0e00000000000cb3ff5400000000000cbbfd5a00000000000cb3fe0200000000000cbbfdf200000000000cbbfe4e00000000000cbbfe1400000000000cbbfd9800000000000cbbfc2e00000000000cbbfe2800000000000cbbfeea00000000000cbbfeaa00000000000cbbfdd600000000000cbbfd5600000000000cb3fb0800000000000cb3ff4c00000000000cbbfd8a00000000000cbbfece00000000000cbbff1c00000000000cb3fe2400000000000cbbfee200000000000cb3fb5200000000000cbbffea00000000000cb3fbca00000000000cb3feb000000000000cb3ff3000000000000cb3fda800000000000cb3feca00000000000cb3ff9e00000000000cb3fc5400000000000cbbff8400000000000cb3fd8a00000000000cb3f90c00000000000cbbfe3400000000000cbbfdec00000000000cbbfe0800000000000cb3ff3800000000000cbbff2600000000000cb3ff0800000000000cb3fe9600000000000cb3fdd800000000000cbbfd9400000000000cb400d000000000000cb3ff0a00000000000cbbfd3800000000000cbbfd5c00000000000cbbffc400000000000cbbfdb600000000000cb3fd7800000000000cbbfe6400000000000cb3fc3800000000000cbbfa4000000000000cbbfe5e00000000000cb3fb5200000000000cb3fd2200000000000cbbfe9400000000000cbbff4600000000000cbbfdba00000000000cbbfee200000000000cb3ff1c00000000000cbbfe8200000000000cb3fd2c00000000000cb3fa8c00000000000cbbfe7c00000000000cbbfe0600000000000cbbff7400000000000cb3ff1000000000000cbbfe9400000000000cb3fb9e00000000000cb3fe9c00000000000cbc000400000000000cb3fdb000000000000cbbfe4000000000000cbbfe7400000000000cbbff3e00000000000cb3fdc200000000000cbbfd5600000000000cbbfd5e00000000000cb3faaa00000000000cbbff0200000000000cb3fe8c00000000000cbbfe8000000000000cbbfe3000000000000cbbff4000000000000cbbff3400000000000cbbfee600000000000cb3fe7e00000000000cbbfe0a00000000000cb3fd4600000000000cbbff3800000000000cbbfece00000000000cb3fe8a00000000000cb3fcc200000000000cb3fd5200000000000cb3fef800000000000cbbfeca00000000000cbbff9000000000000cbbff3400000000000cbbfe7c00000000000cbbffee00000000000cb3ff4000000000000cb3ffa600000000000cbbff9400000000000cbbfe9600000000000cbbfe0e00000000000cb3ff3c00000000000cb3fe4a00000000000cb3fe6800000000000cbbfea200000000000cbbfe9000000000000cb3fe4a00000000000cbbfd2000000000000cb3fbf800000000000cbbfc0200000000000cb3febe00000000000cb3fefa0000000000001cbc000200000000000cbbff3400000000000cb3fe9000000000000cbbfde800000000000cb3ff7400000000000cb3fd8800000000000cbbfd8a00000000000cb3fb2200000000000cb3fd3400000000000cb3ff8a00000000000cbbfe0800000000000cb3fe1400000000000cb3ff6400000000000cb3fc0a00000000000cb3fece00000000000cb3fb0c00000000000cbbff0200000000000cbbfe6600000000000cbbfdae00000000000cbbfe7000000000000cbbfb2400000000000cb3ff7c00000000000cb3fe2600000000000cb3fe5000000000000cb3ff3000000000000cb3fdde00000000000cb3feaa00000000000cbbfd1000000000000cb3fd9000000000000cb3ff6800000000000cb3fc4000000000000cb3fa7800000000000cb3ff8c00000000000cbbffb600000000000cbbff5800000000000cb3ff2c00000000000cb3fd9400000000000cb4000c00000000000cbbfeb600000000000cbbfe2a00000000000cbbfb4000000000000cb3ff2e00000000000cb3fc6800000000000cb3fce200000000000cbbff1c00000000000cb3fd0000000000000cbbfc1a00000000000cbbfdd600000000000cb3ff0200000000000cbc000200000000000cb3fd3600000000000cb3fce400000000000cb3fe3200000000000cbbfefe00000000000cbbfd7600000000000cbbfe6400000000000cbbfe3600000000000cb3ff4400000000000cbbfd8200000000000cb3fdb600000000000cbbfeb000000000000cbbfe0600000000000cb3fa6000000000000cb3fe0a00000000000cb3fc6000000000000cbbfc6800000000000cbbfd0a00000000000cbbf79000000000000cb3ffaa00000000000cbbfce800000000000cb3fd1000000000000cbbfef800000000000cb3ff7400000000000cb3ffbe00000000000cbbff4000000000000cbbfec400000000000cbbff5600000000000cb3fd2800000000000cb3fb6a00000000000cb4004c00000000000cb3ff1e00000000000cb3fdec00000000000cbbfccc00000000000cbbff3800000000000cb3ff6400000000000cb3fe9200000000000cbbfdd400000000000cbbfe7c00000000000cbbfb3a00000000000cbbfc8000000000000cbbfc5800000000000cbbfe1800000000000cbbfbe200000000000cb3fcd200000000000cb3fc4400000000000cbbfde000000000000cbbfa2000000000000cbbfe6000000000000cbbfe4a00000000000cbbfeac00000000000cbbff2a00000000000cbbfe1800000000000cb3fc7800000000000cb3fdc800000000000cb3ff3000000000000cb3fd1800000000000cbbfe6c00000000000cb3fee000000000000cbbfe3e00000000000cb3fe4400000000000cb3fd9600000000000cbbfe3c00000000000cb3ffda00000000000cbbfeb200000000000cb3fee800000000000cb4003400000000000cb3fe1200000000000cb3ff0400000000000cb3fc0200000000000cb3fa2400000000000cb3fc6000000000000cb3fcac00000000000cbbffa800000000000cbbff2000000000000cbbfcbc00000000000cbbfc5a00000000000cbbfd7a00000000000cb3fee400000000000cb3fe0800000000000cb3fd5200000000000cbbff9e00000000000cbbffb000000000000cb3ff0e00000000000cb3fc3400000000000cbbfc2e00000000000cbbfc3800000000000cb3fdd600000000000cbbff5800000000000cbbfdae00000000000cb3fc3e00000000000cbbfbc600000000000cbbfe9000000000000cb3ff6600000000000cbbfd5600000000000cbbff8000000000000cb3ff2000000000000cbbfdf400000000000cb3fe6600000000000cb3fe0800000000000cbbfede00000000000cb3fbb000000000000cb3fc5400000000000cbbffaa00000000000cb3fe1200000000000cb3ff7600000000000cb3ffb200000000000cbbfe6e00000000000cb3fe6a00000000000cbbfefc00000000000cbbfe8800000000000cbbfe5c00000000000cb3fea000000000000cbbfd3e00000000000cb3ff2600000000000cbbff8400000000000cb3fcaa00000000000cb3ff0200000000000cbbfd7a00000000000cbbfd2600000000000cbbfede00000000000cbbff1000000000000cb3fd3c00000000000cbbfdee00000000000cb3ff4a00000000000cbbffc400000000000cbbfd8c00000000000cb3ffb200000000000cb3fc7000000000000cbbff1800000000000cbbfa5c00000000000cb3fe0a00000000000cbbfeee00000000000cbbff9400000000000cb3fdd800000000000cb3fe0e00000000000cbbfa1400000000000cbbfd1200000000000cb3ff6a00000000000cb3ff9200000000000cb3ff8400000000000cbbfd7c00000000000cb3fea200000000000cb3fdc600000000000cbbff7800000000000cb3f97200000000000cb3ff5a00000000000cb3ff7400000000000cb3fd0c00000000000cbbfd0c00000000000cb3ff0200000000000cb3ff6200000000000cbbfd8800000000000cbbfbd600000000000cb3fc3e0000000000001cb3ff3800000000000cb3fd4400000000000cb3fe6e00000000000cb3fe1400000000000cb3fe4a00000000000cb3fdda00000000000cb3fe2e00000000000cb3fc9c00000000000cbbfdb600000000000cbbfed600000000000cb3fd8400000000000cb3fab200000000000cb3ff5e00000000000cbbfff600000000000cb3ff3200000000000cbbfd4c00000000000cb3fe0c00000000000cb3fe7000000000000cb3fd4800000000000cb3feae00000000000cb3ffa600000000000cb3fec600000000000cb3fb1400000000000cbbfe1c00000000000cb3fe6e00000000000ab32393530393133322d313992cb403f3239c182db6adc0400cb3fbfe00000000000cbbfe6e00000000000cb3fe2400000000000cb3fcfe00000000000cbbfcb000000000000cb3fbb000000000000cb3fc5200000000000cb3fe4a00000000000cb3ff1a00000000000cb3fe5600000000000cb3ff5a00000000000cb3fd2600000000000cb3fd0200000000000cb3fd7000000000000cb3fd7c00000000000cb3fe8e00000000000cb3fd3e00000000000cb3fb6400000000000cb3fe1600000000000cbbfcdc00000000000cbbffa000000000000cbbfe3200000000000cb3ffee00000000000cb3ffaa00000000000cbbfc4800000000000cb3fa7800000000000cbbff3400000000000cb4007800000000000cbbf84800000000000cb3fcc400000000000cb3fe0400000000000cb3feb400000000000cb3fba800000000000cbbfe1a00000000000cbbfe3a00000000000cb3fbb800000000000cb3fd5a00000000000cb3ff3800000000000cb3ff1000000000000cbbff0c00000000000cb3ff4400000000000cbbfcca00000000000cbbff3000000000000cbbff4e00000000000cb4000600000000000cbbfdf000000000000cbbff4c00000000000cbbfc7400000000000cbbff4800000000000cbbfe2a00000000000cbbfde000000000000cbbff5c00000000000cbbfc6c00000000000cb3fe0800000000000cb3ffdc00000000000cbbffb600000000000cbbfc9000000000000cb3fecc00000000000cb3fe3a00000000000cb3fd8200000000000cb3fdc800000000000cbbfc8a00000000000cbbfeec00000000000cbbfd7400000000000cb3fdd200000000000cb3fc6c00000000000cb3fe4e00000000000cb3febe00000000000cbbff5600000000000cbbfb2c00000000000cbbfd4800000000000cbbfef800000000000cb3ff4400000000000cb3fe3800000000000cbbff6000000000000cbbfdde00000000000cbbfeca00000000000cb3fef000000000000cbbfc9600000000000cb3fdec00000000000cb3ff6400000000000cb3fe4000000000000cbc003800000000000cb3ff4000000000000cbbfe3800000000000cb3fb9000000000000cbbfb4a00000000000cb3f85000000000000cb3fea800000000000cb3fc4000000000000cbbfe3a00000000000cb3ff2c00000000000cbbfb7200000000000cbbffa600000000000cb4001800000000000cb3ff1800000000000cbbfd1a00000000000cbbfc1200000000000cbbff2c00000000000cb3feaa00000000000cb3ff6e00000000000cb3fc3200000000000cb3ff5600000000000cb3fb3000000000000cbbfdf600000000000cb3fffc00000000000cbbff9a00000000000cb3fd1800000000000cb3feac00000000000cbbfe2a00000000000cbbfcbe00000000000cb3ff4c00000000000cb4003400000000000cb3fee600000000000cbbfd9600000000000cb3fdf000000000000cbbffc600000000000cb3fe3800000000000cbbfede00000000000cbbff8800000000000cb3ffee00000000000cb3fbea00000000000cb3fe2c00000000000cb3fd2c00000000000cbbffc800000000000cbbfcf800000000000cbbfc5400000000000cb3fe3800000000000cb3feba00000000000cbc001000000000000cb3f93a00000000000cb3ff0400000000000cb3ffd600000000000cbbfc0200000000000cb3ff9c00000000000cbbfc9e00000000000cbbfc4c00000000000cbbff1600000000000cbbfdbc00000000000cb3fde400000000000cb3ff4a00000000000cb3fe7400000000000cb3fefa00000000000cbbfe2000000000000cb3fd6200000000000cb3ff2600000000000cb3fcc600000000000cbbfed400000000000cb3fe6000000000000cb3fd3200000000000cbbfcb000000000000cbbfeb800000000000cbbfe4600000000000cb3ff4800000000000cb3ffd80000000000001cb3fe1400000000000cb3fdea00000000000cbbff1800000000000cbbff3000000000000cbbff7600000000000cb3fecc00000000000cb3ff4400000000000cbbfe3a00000000000cbbfaba00000000000cb3fc5000000000000cb3fda800000000000cbbfef600000000000cbbff0200000000000cb3fe5200000000000cb3fd3800000000000cb3ff4e00000000000cb3feb200000000000cb3fe6600000000000cbbfc6000000000000cb3fd6e00000000000cbbfe5e00000000000cbbfe5000000000000cb3fb8000000000000cbbff1e00000000000cbbfd0400000000000cb3fd7a00000000000cb3fe2800000000000cbbff6800000000000cbbfd8000000000000cbbfd0400000000000cbbff7000000000000cb3fa1400000000000cbbfaac00000000000cbbff1400000000000cbbfe8a00000000000cb3ffc600000000000cb3fe3200000000000cb3fcb600000000000cbbfedc00000000000cb3fe1a00000000000cbbfcee00000000000cbbff1e00000000000cbbfe8000000000000cbbfada00000000000cb3ff4800000000000cb3fa7c00000000000cb3ff1400000000000cb3fd5000000000000cbbfdf400000000000cbbff8a00000000000cb3ff7400000000000cbbfe9e00000000000cb3fa5c00000000000cbbff6200000000000cb3fff000000000000cbbff6400000000000cb3fd7000000000000cb3fe3800000000000cb3ff7200000000000cbbfd6800000000000cb3fdb200000000000cb3ff9a00000000000cbbfa0200000000000cb3fdde00000000000cb3fd1400000000000cbbfe0000000000000cbbfd2400000000000cbbff2600000000000cbbfe9600000000000cb3fd9a00000000000cbbfc0600000000000cbbfe7e00000000000cb3fdac00000000000cbbfe0200000000000cb3fe9800000000000cb3feb400000000000cb3f99a00000000000cb3fcd200000000000cb3ff3400000000000cbbfa2400000000000cb3fe8c00000000000cb3fe6800000000000cb3fe7c00000000000cbbff5400000000000cb3fd3200000000000cbbfcf200000000000cb3fc4a00000000000cbbffc200000000000cbbff9200000000000cbbfb3e00000000000cbc000400000000000cbbfe9000000000000cbbff1000000000000cb3ff9c00000000000cbbfbf600000000000cb4000e00000000000cb3fed600000000000cbbff8200000000000cbbfe8a00000000000cb3fef400000000000cb3fdde00000000000cbbfd5400000000000cb3fd4200000000000cbbff0400000000000cbbfd9e00000000000cbbfe2400000000000cbbfed400000000000cbbfcb800000000000cb3fd8000000000000cbbffe400000000000cbbfe1200000000000cb3ffa400000000000cb3fe3e00000000000cbbff0c00000000000cb3fe0c00000000000cbbfbf400000000000cb3fd4200000000000cbbfd8a00000000000cb3fe2a00000000000cb3fd0e00000000000cb3ffac00000000000cb3fd2600000000000cbbfff600000000000cbbfe5000000000000cb3fdbe00000000000cb3fefc00000000000cbbfd0e00000000000cb4000c00000000000cbbfc2800000000000cbbfabc00000000000cbbfe2600000000000cbbff4400000000000cbbfd5600000000000cb3fda000000000000cb3fd5c00000000000cb3ffc000000000000cbbff6200000000000cb3fda800000000000cbbfde000000000000cbc002200000000000cbbff1200000000000cbbfea400000000000cb3fe3600000000000cbbfa9e00000000000cb3ff5000000000000cb3fe1600000000000cb3fff600000000000cb3fe5200000000000cbbff5200000000000cb3fd1e00000000000cbbff4c00000000000cb3fdb200000000000cbc001c00000000000cb3fe4800000000000cbc005800000000000cb3ff1000000000000cbbfe0c00000000000cb3fcd800000000000cb3fdd400000000000cb3fde200000000000cb3fcc800000000000cb3ff3e00000000000cb3fdbc00000000000cbbff6000000000000cb3ff1c00000000000cb3fe5e00000000000cbbfc1000000000000cbbff3600000000000cbbfd8c00000000000cb3fcf800000000000cbbfe5800000000000cb3fd0c00000000000cbbff7e00000000000cb3ffcc00000000000cbbfc5a00000000000cbbfd2c00000000000cbc003600000000000cb3ff3c00000000000cb3fdcc00000000000cbbf95400000000000cb3febe00000000000cbbfbb000000000000cbbfe4600000000000cb3ff1c00000000000cbbffe400000000000cbbfa0200000000000cb3fe0400000000000cbc005a00000000000cb3ffa800000000000cbbfe2400000000000cb3feb400000000000cb3fe0c00000000000cb3fdb800000000000cbbfeb200000000000cbbfe1c00000000000cbbfef800000000000cb4002200000000000cbbff0a00000000000cb3fec200000000000cbbfd6200000000000cb3feba00000000000cb3fc3200000000000cb3fe6200000000000cb3fa9800000000000cbbff0200000000000cbbfdf800000000000cbbfc3400000000000cbbfda400000000000cbbfd7400000000000cb3ffb800000000000cbc000600000000000cbbfdcc00000000000cbbfc0e00000000000cbbfa6c00000000000cb3ff4400000000000cbbfd4800000000000cbbfde600000000000cb3ff1800000000000cb3fd7800000000000cb3ff5600000000000cb3fe3800000000000cb3fe1600000000000cbbffb400000000000cbbff8000000000000cbc001200000000000cb3ff2e00000000000cbbfcb200000000000cb3fffa00000000000cbbfdae00000000000cbbff4c00000000000cbbfd7800000000000cbbfb1a00000000000cb3fe0800000000000cb3fd2000000000000cb3fed800000000000cb3ff3600000000000cbbfe2c00000000000cb3fcf000000000000cbbfec200000000000cb3fe9400000000000cbbfb3400000000000cb3faee00000000000cb3fef600000000000cb3fd4800000000000cb3fcb800000000000cb3ff9c00000000000cb3fe8a00000000000cb3fe6e00000000000cb3ff3800000000000cbbfee200000000000cb3ff1600000000000cbbfbfc00000000000cb3fe4200000000000cbbfb8400000000000cb3ff1600000000000cb3facc00000000000cbbfd5400000000000cbbfa2000000000000cb3fb1600000000000cbbff4800000000000cb3ff9000000000000cb3fd9400000000000cbbfd2c00000000000cbbfede00000000000cb3fe6400000000000cbbfc4200000000000cb3fdfc00000000000cbbfe5800000000000cbbfa8800000000000cb3fba600000000000cbbfb3800000000000cbbfd4c00000000000cbc005000000000000cb3fd9a00000000000cbbfec600000000000cb3ff8400000000000cb4002a0000000000002cb3ff4e00000000000cbbfe1200000000000cb3ff0c00000000000cb3fc5a00000000000cbbfe7e00000000000cbbfc8800000000000cb3fcd000000000000cb3fb9200000000000cb3ff8600000000000cb3fe8400000000000cb3fd8800000000000cbc004800000000000cb3fe7800000000000cbbff3c00000000000cbbfe1000000000000cbbfc1c00000000000cb3ff4a00000000000cbbfd1200000000000cbc000400000000000cbbfe6800000000000cbbfe9400000000000cbbfe5600000000000cb4000c00000000000cb3ff5400000000000cb3fea400000000000cbc007000000000000cbbfc8800000000000cb3fefe00000000000cbbfe3200000000000cbbff4e00000000000cb4000800000000000cb3fcac00000000000cbbfdaa00000000000cb3fcbc00000000000cbbfebe00000000000cbbfebe00000000000cb3fc3200000000000cb3fed800000000000cb3fef400000000000cb3fd4e00000000000cb3f8c600000000000cb3ffa800000000000cbbff4e00000000000cbbff6800000000000cb3fed800000000000cbbfe4600000000000cbbfeaa00000000000cb3fdc800000000000cb3fe5a00000000000cb3fd6e00000000000cbbfd3400000000000cbbfc4000000000000cbbffe800000000000cb3fd5c00000000000cb3fde400000000000cbbfcdc00000000000cb3fe5800000000000cbbfc3c00000000000cb3fe3a00000000000cbc001400000000000cb3fe0200000000000cb4003400000000000cbc003200000000000cb4001400000000000cbbfe3c00000000000cb3fe3000000000000cb3feb200000000000cbbfffc00000000000cbbfe8c00000000000cb4001400000000000cbbfdac00000000000cbbfd8200000000000cbbff6600000000000cb3fe600000000000001cbbfab000000000000cb3f92000000000000cb3fcb400000000000ffcb3fda200000000000cbbff0200000000000cb3ffb000000000000cb3feba00000000000cb3ff7800000000000cb3ff6a00000000000cbbfdb400000000000cb3feec00000000000cbbfede00000000000cb3fec200000000000cb3feae00000000000cbbff3800000000000cbbffc800000000000cb3fe9600000000000cbbfa4400000000000cbbffa600000000000cbbfa4200000000000cb3f73800000000000cb3ff2800000000000cbbfb8e00000000000cbbfe3400000000000cb3fb9600000000000cbbfd0600000000000cbbfe6200000000000cbbf96800000000000cb3feec0000000000001cbbfdd600000000000cb3fdd800000000000cb3fe0e00000000000cb4000e00000000000cb3ff5200000000000cb3ff2e00000000000cbbfec400000000000cb3fda600000000000cbbfe1600000000000cbbf8c000000000000cbbfe8a00000000000cb3fc3a00000000000cb3ffb000000000000cb3fffc00000000000cb3fd4200000000000cbbff2a00000000000cbbfd3e00000000000cbbfe3200000000000cb3fd9c00000000000cbbffdc00000000000cb3fcc800000000000cbbff6e00000000000cbbfd6c00000000000cb3ff3a00000000000cb3ffec00000000000cb3feca00000000000cb3fd3200000000000cbbfdf200000000000cb3ff0200000000000cbbfe9000000000000cb3ffe200000000000cb3fd7e00000000000cb3fe0e00000000000cbbfd0a00000000000cbbfdc200000000000cbbfe6400000000000cb3fee200000000000cb3ff1400000000000cbbff8000000000000cb3fe5800000000000cbbfeb200000000000cbbfe1600000000000cb3ff2c00000000000cb3fe2c00000000000cbbfce400000000000cbbff8e00000000000cb3fdfc00000000000cb3fe1a00000000000cbbfca000000000000cb3fcfc00000000000cb3fe3800000000000cbbff4800000000000cb3fb7800000000000cb3fdbc00000000000cb3ff4000000000000cbbfd3800000000000cb3fbc800000000000cb3fe6800000000000cbc000600000000000cbbfd9a00000000000cbbfd5600000000000cbc005a00000000000cb3ff3e00000000000cbbfe5a00000000000cbbfd3200000000000cbbfd2a00000000000cb3f91200000000000cbbfe2800000000000cbbff1600000000000cb3fd7000000000000cb3ff2200000000000cb3fe2800000000000cb3feb600000000000cbbffca00000000000cb3fc3c00000000000cb3fd6200000000000cbbfc5800000000000cb3fca600000000000cb3fe9a00000000000cb3fd0000000000000cbbfe9a00000000000cb3ff7000000000000cbbfe4800000000000cbbfb4400000000000cbbfc1a00000000000cbbfe5a00000000000cbbfe5200000000000cbbfde600000000000cbbffb200000000000cb3fdee00000000000cb3ff4c00000000000cb3fe8a00000000000cb3fbce00000000000cb3fe1400000000000cbbff1600000000000cb3fe7000000000000cbbfe1000000000000cbbfeb000000000000cbbfd1c00000000000cb3fe2800000000000cbc003600000000000cbbfe4c00000000000cb3fbe000000000000cbbff0800000000000cb3fd9400000000000cbbfbd800000000000cbbffc800000000000cb3fc4400000000000cbbfe2200000000000cb3fe2200000000000cbbfe1600000000000cb3fc4a00000000000cbbfe3c00000000000cb3fe1800000000000cb4000600000000000cbbfffe00000000000cbbfdce00000000000cb3ff4200000000000cb3ff6400000000000cbbfd8200000000000cbbfa9800000000000cb3fe4600000000000cb3ffda00000000000cbbfa8e00000000000cbbff7200000000000cb3fe2600000000000cbbfddc00000000000cb3fc4200000000000cb3fe1c00000000000cb3ff3e00000000000cbbfe2000000000000cb3fc9400000000000cb3ff0800000000000cbbff1400000000000cbbfcc800000000000cbbfb2200000000000cb3ff0c00000000000cbbfd1600000000000cb3ff4e00000000000cbbfd6e00000000000cb3fea400000000000cb3fc0e00000000000cbbfbce00000000000cb3fbb400000000000cb3fdf600000000000cbbfb3e00000000000cbbfe3a00000000000cbbfdf400000000000cbbfd6400000000000cbbfe2600000000000cbbfd1e00000000000cb3fe4a00000000000cb3fef400000000000cbbfeb400000000000cbbfe4000000000000cbbff2a00000000000cb3ff1000000000000cbbfe9200000000000cb3fe4000000000000cbbff8e00000000000cbbfd6600000000000cb3ff1a00000000000cb3fe9400000000000cb3f7a000000000000cb3fe7400000000000cb3ff9200000000000cb3fe1400000000000cbbff5600000000000cb3fdac00000000000cb3fb4a00000000000cbbfe1000000000000cbbfe8600000000000cbbfe1200000000000cb3feb400000000000cbbff3200000000000cb3ff4000000000000cb3fd7200000000000cb3fe1400000000000cbbfeac00000000000cb3fff400000000000cb3fd6600000000000cbbfe7600000000000cbbfe3800000000000cbbff6600000000000cbbfe5800000000000cb3fdfe00000000000cbbfe5c00000000000cbbf81000000000000cbbfe0000000000000cbbfc9400000000000cbbfdfe00000000000cb3fdb200000000000cbbff1200000000000cbbfe8200000000000cbbfe0a00000000000cbbfe8200000000000cb3ff6200000000000cbbfbaa00000000000cb3fe5e00000000000cbbfdc000000000000cbbfe2c00000000000cb3f95800000000000cbbff4400000000000cb3ffae00000000000cbbff2800000000000cbbfb0400000000000cb3fe7c00000000000cbc004a00000000000cb3fca800000000000cbbfe8c00000000000cbbfe2800000000000cbbff3800000000000cb3fd6000000000000cbbff1400000000000cbbfebe00000000000cbbfa5600000000000cbbff1800000000000cb3fe5000000000000cbbfea400000000000cbbfd2800000000000cbbff1a00000000000cbbfe5a00000000000cbbff2000000000000cb3fe0400000000000cbbff2000000000000cb3fe6200000000000cbbffbc00000000000cbbfe1a00000000000cb3fef600000000000cbbf78000000000000cb3fcd400000000000cb3fe3000000000000cbbfe0000000000000cbbff8a00000000000cbbfe4e00000000000cbbfe8a00000000000cbbffde00000000000cb3fff800000000000cb3ff1e00000000000cbbff2c00000000000cbbfe8200000000000cbbfd0000000000000cb3ffe400000000000cbbfc3400000000000cb3fea000000000000cbbfe5a00000000000cbbfebc00000000000cb3fe8c00000000000cbbfcaa00000000000cbbfc8400000000000cb3fb4c00000000000cb3ff0400000000000cb3fe7e00000000000cb3ff3400000000000cbc000400000000000cbbffbe00000000000cb3fe9e00000000000cbbfe3200000000000cb3ffdc00000000000cb3fac000000000000cbbf95400000000000cbbfd4c00000000000cbbfdbe00000000000cb3ff8a00000000000cbbfde400000000000cb3fc8800000000000cb3ff5200000000000cbbfe2400000000000cb3ff2c00000000000cb3fdda00000000000cbbff7400000000000cbbfdea00000000000cbbfdc200000000000cbbfd0600000000000cbbfc0e00000000000cb3ffa600000000000cb3fdd800000000000cb3fc4a00000000000cb3fe0800000000000cbbfcb800000000000cb3ff3c00000000000cbbfcf600000000000cbbfe1e00000000000cb3fefa00000000000cb3fe4000000000000cb3fe0200000000000cb3ff8000000000000cbbfff200000000000cbbfea000000000000cb3fd0e00000000000cb3fe5200000000000cb4005200000000000cbbff4c00000000000cb3f9b600000000000cbbfcc600000000000cb3ff1400000000000cb3fe5200000000000cb3f58000000000000cbbfedc00000000000cb3fbe000000000000cbbfc3c00000000000cbbfe8000000000000cb3ff5000000000000cbbfe6800000000000cb3fad400000000000cb3fbbc00000000000cb3fe9600000000000cbbfd1400000000000cbbfe1200000000000cbbfd8e00000000000cbbfd9a00000000000cb3ff8c00000000000cbbfeb000000000000cbbfc8c00000000000cbbfe0400000000000cbbfe3a00000000000cb3fe1000000000000cb3fe8a00000000000cbbf8e800000000000cbbfb4000000000000cbbfac600000000000cbbfd9400000000000cb4000a00000000000cb3fda400000000000cb3ff4000000000000cbbfda200000000000cb3ffd400000000000cb3fffa00000000000cbbff2400000000000cbbfe4400000000000cbbff8200000000000cb3fc5600000000000cb3f99200000000000cb4002400000000000cb3fe8400000000000cb3fc0600000000000cbbfa6400000000000cbbff8600000000000cb3ff6800000000000cb3ff4a00000000000cb3fd5000000000000cb3fc6000000000000cbbfb5c00000000000cbbfdb200000000000cbbfe6c00000000000cbbfa1600000000000cbbfa2000000000000cb3fd4800000000000cbbfe4200000000000cb3fd9000000000000cb3fee000000000000cbbfe9200000000000cb3fde200000000000cbbfea200000000000cbbff6400000000000cbbf7b000000000000cb3fd8c00000000000cb3fc9200000000000cb3fe1400000000000cb3fc1000000000000cbbfe3a00000000000cb3fe9000000000000cbbfe5e00000000000cb3fe0800000000000cb3fe7c00000000000cbbff6400000000000cb4003400000000000cbbfea600000000000cb3ffc800000000000cb4006600000000000cb3fe5000000000000cb3ff9600000000000cbbfd8400000000000cbbfcde00000000000cb3fd5a00000000000cb3fd5200000000000fecbbffc400000000000cbbf83000000000000cbbfe0000000000000cb3f6d000000000000cb3fdb200000000000cb3fe5800000000000cb3ff0a00000000000cbbff2800000000000cbbff8c00000000000cb3fea200000000000cbbfda800000000000cbbfe6000000000000cb3fe3400000000000cb3fe5200000000000cbbff1200000000000cbbfce400000000000cb3facc00000000000cb3fc9600000000000cbbff3800000000000cb3ff2a00000000000cbbfd2c00000000000cbbff0600000000000cb3ff3200000000000cbbfeba00000000000cb3ffa000000000000cb3fe5a00000000000cbbfed000000000000cbbfee600000000000cbbfc3a00000000000cbbff8c00000000000cb3f9f000000000000cb3fe0400000000000cb3fda800000000000cbbfe7400000000000cb3fefc00000000000cbbfc0200000000000cbbff9800000000000cbbfef800000000000cb3fe2c00000000000cbbfe0a00000000000cb3ff4600000000000cbbfff000000000000cb3f74000000000000cb3ff9200000000000cbbfdf800000000000cbbfeec00000000000cbbfd6000000000000cbbff4600000000000cb3fea600000000000cbbfcec00000000000cb3ff2800000000000cbbfeee00000000000cbbfde000000000000cb3fff800000000000cb3fe5000000000000cbbff1000000000000cbbfd0400000000000cbbfbc800000000000cbbfd5600000000000cbbff6e00000000000cb3fd4600000000000cb3fe5a00000000000cb3fe2800000000000cb3fb1200000000000cb3ff9a00000000000cb3ffd200000000000cb3ffc600000000000cbbfe1400000000000cb3fc6a00000000000cb3fe4800000000000cbbffb400000000000cb3fc2400000000000cb3ff2e00000000000cb3ffd800000000000cb3fd2200000000000cb3fd8200000000000cb3ff4a00000000000cb3ff1400000000000cb3fc3800000000000cbbfb7e00000000000cbbfe3c00000000000cb3fe4800000000000cb3fef800000000000cb3febe00000000000cb3fd9c00000000000cbbfbe800000000000cb3fe2a00000000000cb3fcaa00000000000cbbfaec00000000000cb3fb9200000000000cb3fc2a00000000000cbbfdc200000000000cb3fdda00000000000cbbfccc00000000000cb3ff7800000000000cbbffba00000000000cb3ff2000000000000cbbfe8000000000000cb3fe6e00000000000cbbfc0c00000000000cbbfc9800000000000cb3ff0e00000000000cb3ff8e00000000000cb3ff2000000000000cbbfc6e00000000000cbbfdd800000000000cb3fe2000000000000b473656172636861626c6550726f7065727469657393a46e616d65a7636f6e74657874a9656d62656464696e67bd73656172636861626c6550726f7065727469657357697468547970657383a46e616d65a6737472696e67a7636f6e74657874a6737472696e67a9656d62656464696e67ac766563746f725b313032345dab6672657175656e6369657382a46e616d65de0013a13181ae6163636f756e74686973746f727901a13281a6646f6d61696e01a13381a46e6f746501a13481aa7265636f72647479706501a13581aa7072696365626f6f6b3201a13681aa6174746163686d656e7401a13781ae7072696365626f6f6b656e74727901a13881a67265706f727401a13981a870726f647563743201a2313081a46361736501a2313181a8636f6e747261637401a2313281a47461736b01a2313381ab6f70706f7274756e69747901a2313481a5617373657401a2313581a46c65616401a2313681a56f7264657201a2313781a76163636f756e7401a2313881a7636f6e7461637401a2313981a47573657201a7636f6e74657874de0013a13180a13280a13380a13480a13580a13680a13780a13880a13980a2313080a2313180a2313280a2313380a2313480a2313580a2313680a2313780a2313880a2313980b0746f6b656e4f6363757272656e63657382a46e616d65de0013ae6163636f756e74686973746f727901a6646f6d61696e01a46e6f746501aa7265636f72647479706501aa7072696365626f6f6b3201aa6174746163686d656e7401ae7072696365626f6f6b656e74727901a67265706f727401a870726f647563743201a46361736501a8636f6e747261637401a47461736b01ab6f70706f7274756e69747901a5617373657401a46c65616401a56f7264657201a76163636f756e7401a7636f6e7461637401a47573657201a7636f6e7465787480ae6176674669656c644c656e67746882a46e616d6501a7636f6e7465787400ac6669656c644c656e6774687382a46e616d65de0013a13101a13201a13301a13401a13501a13601a13701a13801a13901a2313001a2313101a2313201a2313301a2313401a2313501a2313601a2313701a2313801a2313901a7636f6e74657874de0013a13100a13200a13300a13400a13500a13600a13700a13800a13900a2313000a2313100a2313200a2313300a2313400a2313500a2313600a2313700a2313800a2313900a4646f637382a4646f6373de0013a13183a46e616d65ae4163636f756e74486973746f7279a7636f6e74657874a0a9656d62656464696e67dc0400cbbfda800000000000cb3fe0200000000000cb3feb000000000000cb3fe5200000000000cbbfe5200000000000cb3fc0c00000000000cb3fc4a00000000000cb3fd2400000000000cbbfa0a00000000000cb3ff1e00000000000cb3ff4c00000000000cb3fb0c00000000000cbbff5400000000000cb3fd3e00000000000cb3feac00000000000cb3ffd600000000000cb3fe2800000000000cb3fe3400000000000cb3ff4000000000000cb3ffb200000000000cbc004200000000000cbbfede00000000000cb3ff8000000000000cb3ffc800000000000cb3ff2800000000000cbbfd0800000000000cbbfe7600000000000cb3ffbe00000000000cbbff0a00000000000cbbfc9600000000000cb3ff4c00000000000cb3ff4200000000000cbbfd1e00000000000cbbfe6800000000000cb3fdac00000000000cbbfe3200000000000ffcb3fed600000000000cb3ffe600000000000cbbff6400000000000cb3fba400000000000cbbfe0400000000000cbbfdbe00000000000cbbff3000000000000cb4001800000000000cbbfe2200000000000cbbffb600000000000cbbfdc200000000000cbbffe400000000000cbbffb800000000000cbbfee000000000000cb3fbbc00000000000cbbfcaa00000000000cb3fb6800000000000cb3fd1400000000000cbbffb800000000000cbbfd9400000000000cb3fd6600000000000cbbfcfc00000000000cb3fe7a00000000000cb3ff3400000000000cbbfd8000000000000cbbfdfa00000000000cbbfdf400000000000cbbfc5c00000000000cb3fd1400000000000cb3fde400000000000cbbfcd600000000000cbbff5200000000000cbbfeba00000000000cbbfd3000000000000cbbff9e00000000000cb3ff5000000000000cb3ff4800000000000cbbff9a00000000000cbbfea200000000000cbbfe0400000000000cb3fea000000000000cbbfd6000000000000cbbfa6000000000000cb3ff0c00000000000cbbf85000000000000cbc004000000000000cb3ff5600000000000cbbfc2200000000000cb3fe8000000000000cbbfbac00000000000cbbfe9600000000000cb3fe2200000000000cb3fd1c00000000000cbbff8800000000000cb3fe9600000000000cbbfea400000000000cbbff4e00000000000cb3ffa600000000000cb3ff6c00000000000cb3fe8400000000000cbbfbf800000000000cbbfede00000000000cb3feb200000000000cb3ff1e00000000000cb3fe1c00000000000cb4000800000000000cb3fb8200000000000cbbfe5800000000000cb3ff2a00000000000cbbff3200000000000cbbfbe800000000000cb3fe1e00000000000cbbffc000000000000cbbfdb200000000000cb3fd2a00000000000cb3ffe600000000000cb3fefc00000000000cbbfcc400000000000cb3ff2600000000000cbbff2800000000000cb3fe0200000000000cb3fa5200000000000cbbff0e00000000000cb3fcba00000000000cb3fd2000000000000cb3fc8e00000000000cb3fcc400000000000cbc004200000000000cb3f8d800000000000cb3fe7e00000000000cb3feba00000000000cb3f94000000000000cbbffee00000000000cbbf28000000000000cb3fec60000000000002cbbfb4400000000000cb3ffc400000000000cbbfba000000000000cbbfe3000000000000cbbfe1200000000000cbbff0c00000000000cb3fe6800000000000cb3fde000000000000cb3fe0200000000000cb3ff7400000000000cbbff1800000000000cbbff4a00000000000cb3ff2200000000000cbbfeca00000000000cbbffd200000000000cbbfbe400000000000cbbfba400000000000cbbff3200000000000cbbfc8600000000000cbbfee200000000000cb3fe6400000000000cb4000c00000000000cb3ff4800000000000cbbfdf600000000000cb3fe4200000000000cbbff8200000000000cbc000200000000000cbbff9000000000000cb3fd6c00000000000cb4003400000000000cbbfdce00000000000cbbf7b000000000000cb3fbe200000000000cb3fbc000000000000cbbfe4a00000000000cbbff2400000000000cb3ff4c00000000000cb3fb5400000000000cb3ff0400000000000cb3fe3200000000000cb3fd6e00000000000cb3fc8600000000000cbbfe8800000000000cbbfff200000000000cb3fdb200000000000cb3fe6c00000000000cbbfeee00000000000cbbfec800000000000cb3f8dc00000000000cb3fedc00000000000cbbff7600000000000cb3fc8c00000000000cb3fe7800000000000cbc000600000000000cbbfe5200000000000cbbfb5a00000000000cbbff0400000000000cbbff3000000000000cb3ffb600000000000cb3fcd000000000000cb3fd3600000000000cbbfb9a00000000000cb3feba00000000000cbbfdcc00000000000cbbff0600000000000cbbfcc800000000000cbbfd6800000000000cb3ff6200000000000cb3fe1000000000000cb3fe6800000000000cb3fe1a00000000000cbbff8600000000000cbbfe4200000000000cbbfbb600000000000cbbff6200000000000cbbfdf200000000000cbbfcd000000000000cb3fffa00000000000cbbfe1000000000000cbbfd2200000000000cb3ff0800000000000cbbfd2a00000000000cb3fe6600000000000cb3fef800000000000cb3ffe000000000000cbbf86c00000000000cb3fe3e00000000000cb3fd9400000000000cbbfd7800000000000cb3fc6800000000000cbbff9400000000000cbbfc7400000000000cbbfc0c00000000000cbbfe0200000000000cb3fcca00000000000cb3ff5a00000000000cbbfeb000000000000cb3ff3800000000000cbbfb6200000000000cb3fa9e00000000000cbbfcca00000000000cb3ffb600000000000cb3fcf600000000000cb3ff4200000000000cb3fef000000000000cb3fe0e00000000000cbbfef200000000000cb3fe8600000000000cbbfeb800000000000cb3fdfc00000000000cbbff6800000000000cbbfd7a00000000000cb3fe1200000000000cbbff2200000000000cb3fc8600000000000cbbff2a00000000000cb3ff1a00000000000cbbfe2800000000000cb4004400000000000cb3feba00000000000cbc004200000000000cbbff9200000000000cb3fd9e00000000000cb3fe5600000000000cbbfdf400000000000cbbfc8800000000000cbbff1e00000000000cbbfd3c00000000000cb3fe1000000000000cbbff8a00000000000cbbfdd000000000000cbbfe3200000000000cbbfefa00000000000cbbfd1400000000000cb3fed200000000000cb3fe7000000000000cbbfe3a00000000000cb3fc7000000000000cbbff2c00000000000cbbfd2800000000000cbbfea400000000000cb3fe0800000000000cb3fec600000000000cb3ff7e00000000000cb3fd5c00000000000cbbffa800000000000cbbff4800000000000cb3ffd200000000000cb3fef600000000000cb3fd4600000000000cb3ffe800000000000cb3fd8c00000000000cb3fb1c00000000000cbbfe8e00000000000ffcbbff6200000000000cb3fd1e00000000000cb3ff4400000000000cb3ff6e00000000000cbbff4000000000000cb3fbda00000000000cbbfb6e00000000000cbc006400000000000cbbfd6e00000000000cbbfe8e00000000000cb3ffc800000000000cbbfdb800000000000cb3ff2600000000000cb3fd1600000000000cb3ffac00000000000cb3fe9200000000000cbbff2400000000000cb3fec000000000000cbbfd5200000000000cb3fc3e00000000000cbbffb600000000000cb3fe1800000000000cbc003000000000000cb3ff3a00000000000cb3feb000000000000cbbfd2e00000000000cb3fc1000000000000cb3fe2800000000000cb3fc2400000000000cb3feb800000000000cbbfd4600000000000cbc006000000000000cb3fc3000000000000cb3fe5000000000000cb3fc0a00000000000cbbff9000000000000cbbfe1e00000000000cb3fdb400000000000cbbff1600000000000cb3ff2200000000000cbbff4400000000000cb4001a00000000000cbbfbc000000000000cbbff6400000000000cbc000e00000000000cb3ff2600000000000cb3fdea00000000000cb3fe6200000000000cbbfca800000000000cb3ff3c00000000000cbbfd0600000000000cb3ffd000000000000cbbff3000000000000cb3fe4200000000000cb3ff1a00000000000cbc003000000000000cb3ff1a00000000000cbbfec200000000000cb3fe2000000000000cb3fdf000000000000cbbf75800000000000cbbff0600000000000cb3fd0200000000000cbbfe4e00000000000cb4005000000000000cb3fd9a00000000000cb3fc4000000000000cbbfe3200000000000cb3ff0c00000000000cb3fece00000000000cb3fec200000000000cbbfc1000000000000cbbff2200000000000cbbfe7a00000000000cbbfd6e00000000000cb3fd2e00000000000cbbff6c00000000000cb3ffc800000000000cbbff3800000000000cbbfea200000000000cbbfe5e00000000000cb3fb0400000000000cb3fec600000000000cbbfd5800000000000cbbfea600000000000cb3ff2c00000000000cb3fd1000000000000cb3fec000000000000cbbfeea00000000000cb3fd3c00000000000cbbff3000000000000cbbffd200000000000cbbffac00000000000cb3feac00000000000cbbfe4000000000000cb3ffec00000000000cbbfee800000000000cbbffb600000000000cbbfe9e00000000000cb3fe8400000000000cb3fde400000000000cb3fe5a00000000000cb3ff8800000000000cb3feda00000000000cbbfe3e00000000000cb3fdcc00000000000cbbfe1600000000000cb3fd4000000000000cbbfd9600000000000cbbff7400000000000cbbfc0800000000000cb3fc3400000000000cb3fe1200000000000cb3ff1200000000000cb3ff3a00000000000cb3fd6200000000000cb3fe6600000000000cbbfcec00000000000cb3fe1800000000000cbbfe4a00000000000cb3fed200000000000cbbfe9e00000000000cb3fe5400000000000cb3fdb000000000000cbbf90800000000000cb3ff0600000000000cb3fe8e00000000000cbbfee000000000000cb3ff4800000000000cb3f8de00000000000cb3fb9800000000000cbbff4400000000000cb3feee00000000000cb3fdd200000000000cb3ff8600000000000cbbfe0000000000000cb3fe1c00000000000cb3f94600000000000cb3fcae00000000000cb3ff5400000000000cbc002600000000000cbbfc6e00000000000cbbffac00000000000cb3fff200000000000cb3ff4e00000000000cb3ff6400000000000cb3ffde00000000000cbbff3a00000000000cb3ff1800000000000cbbfdc400000000000cbbff1a00000000000cbbfd7000000000000cb3fb2000000000000cb3fe9600000000000cb3ff3e00000000000cb3fe0a00000000000cb3fce400000000000cbc004a00000000000cb3ff7c00000000000cb3fd4e00000000000cbbff1400000000000cb3fefc00000000000cb3ff0400000000000cb3fd1400000000000cbc000400000000000cbbfdf600000000000cbbfe0e00000000000cbbfe6800000000000cb3ff6a00000000000cb4000e00000000000cb3ff2a00000000000cbc008200000000000cbbfd7c00000000000cb3ff4a00000000000cbbfe0800000000000cbbff5000000000000cb4000e00000000000cb3fe4e00000000000cbbfafe00000000000cbbfd2400000000000cbbff4c00000000000cbbffa000000000000cbbff1200000000000cb3ff5c00000000000cb3fee200000000000cbbf9a000000000000cb3fe2e00000000000cb3ff0200000000000cbbfe1e00000000000cbbff1200000000000cb3ff1e00000000000cbbfe9400000000000cbbfe7e00000000000cbbfe7000000000000cb3ff5600000000000cbbfc3400000000000cbbfe2a00000000000cb3fc2a00000000000cbbffee00000000000cb3fe7e00000000000cb3fd4400000000000cb3f8d800000000000cb3fe8200000000000cb3fc6400000000000cb3ff4e00000000000cbbff7c00000000000cb3fabc00000000000cb3ff6200000000000cbc000800000000000cb4006000000000000cb3fd0600000000000cb3fcf400000000000cb3fde000000000000cbbff7e00000000000cbbff0800000000000cb3ff4800000000000cbbfb2600000000000cbbff1200000000000cbbfc3c00000000000cb3fe6a00000000000cb3fdb400000000000cb3fad800000000000cbbfeec00000000000cbbfe7600000000000cb3fa6400000000000cbbfeb600000000000cbbfea000000000000cb3fdee00000000000cb3feb200000000000cb3ff5200000000000cb3f89800000000000cb3fdfc00000000000cb3fe4400000000000cbbfedc00000000000cb3fe2c00000000000cb3febc00000000000cbbfef000000000000cbbff6a00000000000cb3fc7400000000000cbbfaa000000000000cbbffa600000000000cb3fd4e00000000000cbbfb9800000000000cb3fc0400000000000cb3fafe00000000000cbbff0e00000000000cb3fb2a00000000000cb3fcf800000000000cb3fd4c00000000000cbbfd2c00000000000cbbfd0e00000000000cb3fd9e00000000000cbbfe0600000000000cbbfe7e00000000000cbbfd2800000000000cb4001800000000000cb4005600000000000cb3ff0600000000000cbbfd0e00000000000cb3fe7c00000000000cbbfbf400000000000cbbfe6800000000000cbbfeda00000000000cb3fe9e00000000000cb3fe1400000000000cb3fdb800000000000cbbfe1000000000000cbbfb7800000000000cbbff1000000000000cbbfeaa00000000000cbbfd5800000000000cbc005400000000000cb3fee400000000000cbbff1e00000000000cb3fb7400000000000cbbfcc200000000000cb3fdb200000000000cb3fe4400000000000cb3fd0600000000000cb3fc2e00000000000cb3fcc400000000000cbbfeec00000000000cb3fe7600000000000cbbfe3000000000000cbbf94200000000000cbbfeb400000000000cbbfe0a00000000000cbbfea200000000000cb3fed200000000000cb3fcb000000000000cbc000600000000000cb3fd6200000000000cbbff1e00000000000cb3feee00000000000cb3ff5e00000000000cbbfd2e00000000000cbbfe7200000000000cbc005000000000000cbbfd3600000000000cb3ff1200000000000cbbff5600000000000cbbfcc400000000000cbbff4200000000000cbbf5c000000000000cbbf92000000000000cb3ff1800000000000cbbfc4600000000000cb3fd4c00000000000cb3fcaa00000000000cb3fc1a00000000000cbbff6800000000000cb3fa6400000000000cb3faec00000000000cbc00ba00000000000cb4000200000000000cbbfe2800000000000cbbfe6000000000000cb3fe1c00000000000cbbff6c00000000000cbbfef600000000000cbbff8000000000000cb3fcd600000000000cbbfd4600000000000cb3feda00000000000cb3ff4000000000000cbbffbc00000000000cb3fe4600000000000cb3fe8000000000000cb3ff2200000000000cbbf96c00000000000cbbfde000000000000cb3ffea00000000000cbbffd600000000000cb3fedc00000000000cbbff1400000000000cbbfda800000000000cbbfcf800000000000cbbfe0200000000000cbbfbf200000000000cb3f5b600000000000cbbff5000000000000cbbfde400000000000cbbfc180000000000001cb3fe6e00000000000cb3fe6800000000000cb3fd6800000000000cb3fe7000000000000cbbffd600000000000cbbfe1a00000000000cbbf90a00000000000cb3fe0000000000000cbbff2e00000000000cb3fbca00000000000cbbfdc600000000000cbbff5e00000000000cb3fddc00000000000cbbfd5400000000000cbc003a00000000000cb3fe0c00000000000cbbfd5400000000000cbbfe2400000000000cbbf9b000000000000cb3fe7a00000000000cbbfe9c00000000000cb3fdae0000000000001cbbff4400000000000cb3fa7e00000000000cb3fd8400000000000cb3ff8400000000000cbbfff800000000000cbbfe7800000000000cb3fe3400000000000cb3ff3000000000000cbbfe2000000000000cbbfe7a00000000000cb3fd8200000000000cbbfa7c00000000000cb3fbc800000000000cb3ffe000000000000cb3ffea00000000000cbbfd1400000000000cbbff7800000000000cb3ff4200000000000cbbfe7400000000000cbbfe4c00000000000cb3fde000000000000cb3fe3e00000000000cbbfd6c00000000000cb3fd1e00000000000cb3fe4600000000000cb3ff2e00000000000cb3f9d000000000000cbbfe1a00000000000cbbfd5a00000000000cbbfe5e00000000000cb3fe9c00000000000cbbfdec00000000000cbbfd3600000000000cb3fc9a00000000000cbbff2c00000000000cbbff2200000000000cb3fda200000000000cb3ff4a00000000000cbbfdcc00000000000cbbf99800000000000cbc001400000000000cb3fe1c00000000000cbbfc1600000000000cbbfd2800000000000cbbffac00000000000cbbfe1c00000000000cb3fdb800000000000cb3ff8c00000000000cb3ffae00000000000cb3ff6c00000000000cb3fef600000000000cb3fcc400000000000cbbf95400000000000cbbfd6c00000000000cbbff3000000000000cbbff0600000000000cbbff2e00000000000cbbff3800000000000cb3fee200000000000cbbff8c00000000000cb3ff1400000000000cb3fe4600000000000cb3fea000000000000cbbfdfe00000000000cb4006a00000000000cb3ff7400000000000cbbfa5800000000000cb3fd2c00000000000cbbfe2600000000000cbbfe7e00000000000cb3ff9400000000000cb3fe0800000000000cb3fcd800000000000cb3fd1200000000000cbbfe4c00000000000cbbfd3c00000000000cbbfe3400000000000cbbfebc00000000000cbbffd000000000000cb3fd5c00000000000cbbfe5e00000000000cb3ffac00000000000cbbfeb000000000000cb3fc4800000000000cb3fad200000000000cbbfeb800000000000cbbfd6e00000000000cbbff3200000000000cb3ffca00000000000cbbfcdc00000000000cb3fdd000000000000cb3ff9200000000000cbbff3a00000000000cb3fde000000000000cbbfec400000000000cbbff1a00000000000cbbffee00000000000cb3fe6000000000000cb3fd3600000000000cbbfedc00000000000cb3fb6400000000000cbbfe9a00000000000cb3fdfe00000000000cbbfe0a00000000000cbbff5200000000000cbbfe6000000000000cbbff0400000000000cbbfea000000000000cb3fd0800000000000cb3feae00000000000cbbfaba00000000000cbbff5e00000000000cbbfebc00000000000cb3ffd200000000000cb3ff1e00000000000cb3fcb400000000000cb3ff6a00000000000cbbfde400000000000cbbff2800000000000cbbfe7800000000000cb3fcfc00000000000cbbffac00000000000cb3fe6a00000000000cb3ffde00000000000cbbff0c00000000000cbbfe6e00000000000cbbfff400000000000cb3fe9000000000000cb3fc6600000000000cb3fef400000000000cbbfdd200000000000cb3fada00000000000cbbfdc200000000000cb3fd1a00000000000cb3fc1a00000000000cb3fea200000000000cb3feb600000000000cbbfed000000000000cb3ff9800000000000cbbffba00000000000cbbfe9c00000000000cb3ff3a00000000000cbbfef200000000000cb3fe3c00000000000cbbfb7600000000000cb3fd2400000000000cbbff4000000000000cbbfade00000000000cb3fe8c00000000000cbbfe3e00000000000cb3feba00000000000cbbfc3800000000000cbbfc3400000000000cb3fee800000000000cb3fc5000000000000cbbfdbe00000000000cbbfe3c00000000000cbbfa1400000000000cb3fbec00000000000cbbfcb400000000000cb3ff2800000000000cb3fdc600000000000cb3ff1200000000000cb3fef800000000000cbbfe0e00000000000cb3fece00000000000cbbfda200000000000cbbfdca00000000000cbbfd2400000000000cbbfaea00000000000cb3fe4a00000000000cb3ff7a00000000000cbbff2a00000000000cbbff8200000000000cbbfc5000000000000cb3fd0600000000000cb3fffc00000000000cbbff0600000000000cbbfe4a00000000000cbbfea800000000000cb3ff6800000000000cb3f82200000000000cbbfadc00000000000cbbff1e00000000000cbbfe9200000000000cb3fd2c00000000000cbbfe6c00000000000cb3ff1000000000000cbbff3600000000000cbbfd8800000000000cbbf9dc00000000000cb3fed800000000000cb3fe2a00000000000cb3fc3200000000000cbbfe1600000000000cbbfee60000000000002cbbfeae00000000000cb3fcb800000000000cbbff6200000000000cbbff0400000000000cbbff0c00000000000cb3fd4600000000000cbbfd6c00000000000cbbfa6c00000000000cbbfcfa00000000000cb3fc9600000000000cb3ff6600000000000cbbfb5e00000000000cb3fd6e00000000000cbbfd3400000000000cb3fc5200000000000cb3ffc800000000000cbbfe2600000000000cbbfe2a00000000000cbbff6400000000000cb3fe1c00000000000cb3fe9000000000000cb4002000000000000cbbfa3000000000000cb3fb1a00000000000cbbfd3800000000000cbbff2000000000000cb3fff200000000000cb3fea000000000000cbbfd2200000000000cbbff7c00000000000cbbfdca00000000000cbbfeb600000000000cbbfe5400000000000cbbfd3800000000000cbbfc7200000000000cb3fe5000000000000cb3fcb000000000000cbbfd6c00000000000cb3fed000000000000cbbfe3400000000000cb3fc3a00000000000cbbffa800000000000cbc001000000000000cb3f58000000000000cb3fe2200000000000cbbfd5a00000000000cb3fe1a00000000000cbbfee600000000000cb3fd4400000000000cb3fe0400000000000cbbfeda00000000000cb3fb0a00000000000cbbfc5e00000000000cbbfc7a00000000000cb3ff4000000000000cbc000c00000000000cb3fb9a00000000000cb3ff3400000000000cb3ff6800000000000cb4002a00000000000cb3fe2400000000000cb3fb6400000000000cb3fc0600000000000cbbfc2600000000000cbbff5200000000000cbbff4e00000000000cbbfff400000000000cbbfe2a00000000000cbbfeb400000000000cb3fe9200000000000cb3fdfa00000000000cb3fcc600000000000cbbfeb200000000000cbbff3e00000000000cb3fe7600000000000cb3fd3e00000000000cbbfd3400000000000cb3fa3800000000000cb3fea200000000000cb3fd1200000000000cbbfe5a00000000000cb3fe9a00000000000cb3ff1800000000000cbbfd7200000000000cb3ffa000000000000cb3fbb800000000000cbbfebc00000000000cb3ff1800000000000cbbfe6400000000000cb3fd9a00000000000cb3fb6c00000000000cbbfea400000000000cbbfcce00000000000cb3fe4800000000000cbc000a00000000000cb3ff8200000000000cb3fe2a00000000000cb3ff7800000000000cbbfe0e00000000000cb3feb800000000000cb3fd0c00000000000cbbffbe00000000000cb3fd3800000000000cb4002e00000000000cbbfec000000000000cb3ff7c00000000000cbbff9e00000000000cbbfcd000000000000cb3fef000000000000cbbfe2400000000000cb3fb8800000000000cbbfea000000000000cbbfed600000000000cbbfc5800000000000cbbfcda00000000000cb3fe7800000000000cbbff3200000000000cbbfdec00000000000cb3ff6200000000000cb3fdf400000000000cbbffc200000000000cbbfd0e00000000000cb3fb0400000000000cbbfeb000000000000cbbffd600000000000cb3fe6600000000000cb3fb7c00000000000cb3fc4400000000000cbbfe5800000000000cb3fec400000000000cb3ff9000000000000cb3fff800000000000cbbfe3400000000000cb3fde000000000000cb3fc7e00000000000cbc002e00000000000cb3fd8600000000000cb3feb000000000000cb3ffd800000000000cbbfbf600000000000cbbfc6e00000000000cb3fe3c00000000000cb3fdbe00000000000cb3f94400000000000cbbff0400000000000cbbfb2000000000000cbbfdd200000000000cb3fe2c00000000000cb3ffc000000000000cb3fe2a00000000000cb3fe2c00000000000cbbfe2800000000000cb3fb3c00000000000cb3fe0a00000000000cbbfeec00000000000cbbfdca00000000000cbbfdf200000000000cb3fe7200000000000cb3fd0e00000000000cb3fecc00000000000cbbffe400000000000cb3fe3e00000000000cbbfdca00000000000cb3fdf600000000000cb3fc8e00000000000cbbfe0400000000000cb3fd3c00000000000cb3ff400000000000001cb3feec00000000000cbbff4e00000000000cb3fe3800000000000a13283a46e616d65a6446f6d61696ea7636f6e74657874a0a9656d62656464696e67dc0400cb3fbf800000000000cb3fec400000000000cb3ff1400000000000cb3ff1200000000000cbbff3400000000000cbbfe9e00000000000cbbfe4200000000000cb3feb000000000000cbbfe4c00000000000cb3ff4600000000000cb3ffde00000000000cbbfb2000000000000cbbfef200000000000cb3feec00000000000cb3fa1c00000000000cb3ff6c00000000000cb3fd9800000000000cb3fd9e00000000000cb3ff2600000000000cb3ff0400000000000cbbff4800000000000cb3fcae00000000000cb3ff0200000000000cb3fe4800000000000cb3fd2000000000000cbbfcd800000000000cbbfdd200000000000cb3ffd200000000000cbbff9400000000000cb3ff4200000000000cb3fd5200000000000cb3ff1400000000000cbbfe1e00000000000cbbfe3a00000000000cbbfed800000000000cbbfe7c00000000000cbbfc3e00000000000cb3fe0600000000000cb3ffd800000000000cbbfdb000000000000cb3ffd000000000000cbbfcc800000000000cb3fc3000000000000cbbffa000000000000cb4001000000000000cbbfd6e00000000000cbbfe5400000000000cb3fc5800000000000cbbff3600000000000cbbfcd000000000000cbbfe9600000000000cb3fdd400000000000cbbff0c00000000000cbbfdb600000000000cb3ff1400000000000cbbffd000000000000cb3fb1000000000000cb3ff1600000000000cb3fe5000000000000cbbfd3c00000000000cb3ff1a00000000000cb3fe0800000000000cbbfe8e00000000000cbbfeb000000000000cb3fe4a00000000000cbbfe6a00000000000cb3fc3800000000000cb3faa800000000000cbbfe9c00000000000cbbfce400000000000cbbfa9800000000000cbbff1c00000000000cb3ffe000000000000cb3ff4a00000000000cbc000a00000000000cbbfca000000000000cbbff4400000000000cb3ffb800000000000cbbfe7400000000000cbbfebe00000000000cb3ff7c00000000000cbbfca000000000000cbc008600000000000cb3ff9800000000000cbbff4a00000000000cb3fb8000000000000cbbfe9e00000000000cbbfec000000000000cb3ff7c00000000000cbbfe0c00000000000cbbf85800000000000cb3fdb400000000000cbbff9c00000000000cbbff7c00000000000cb3ff3e00000000000cb3fe8400000000000cbbfdec00000000000cbbfed200000000000cbbfeda00000000000cb3fe1000000000000cb3fe3a00000000000cb3ff3200000000000cb3ffe000000000000cbbfea800000000000cbbfe7400000000000cb3ff6600000000000cbbff2600000000000cbbfeb400000000000cb3ff3c00000000000cbbfecc00000000000cbbfbcc00000000000cb3fe6600000000000cb3ff1600000000000cb3fc4a00000000000cb3fed200000000000cb4000600000000000cbbff4800000000000cb3fdba00000000000cbbfd3c00000000000cbbffc400000000000cb3fe8e00000000000cbbfccc00000000000cb3ff1e00000000000cbbfbd400000000000cbc001c00000000000cb3fbe000000000000cb3ff4600000000000cb3fe1a00000000000cb3fd7c00000000000cbbfeec00000000000cbbfa5000000000000cb3fe5000000000000cb3ffee00000000000cbbff1e00000000000cb4001e00000000000cbbfc6200000000000cbbfc9200000000000cbbff5c00000000000cbc001200000000000cb3fc8c00000000000cb3fe5a00000000000cb3f90e00000000000cb3fe5600000000000cbbfe3800000000000cbbfefa00000000000cb3ff5c00000000000cbbfcdc00000000000cbbfb9800000000000cbbfca200000000000cbbfc0600000000000cbbff0600000000000cbbfc0200000000000cbbff720000000000001cb3ffa000000000000cb3fe7000000000000cbbfe2800000000000cb3fece00000000000cbbfec400000000000cbbfe9e00000000000cb3f78000000000000cb3fd960000000000002cbbfad000000000000cb3fe8000000000000cb3fc9c00000000000cb3ff1600000000000cbbfb9800000000000cbbff0e00000000000cb3ffa200000000000cbbfa7e00000000000cb3ff9e00000000000cb3f97800000000000cb3ff3000000000000cbbf9b400000000000cbbfe8400000000000cbc001200000000000cbbfd5400000000000cb3ff3600000000000cbbff5200000000000cbbfe5000000000000cb3ff9400000000000cbbf9c600000000000cbbff2600000000000cbbfdf200000000000cb3fe2c00000000000cbc001c00000000000cbbfcdc00000000000cb3f7d800000000000cbbffd600000000000cbbff2c00000000000cb3fd8c00000000000cb3fe1e00000000000cb3fd9400000000000cbbfe0c00000000000cbbfe8c00000000000cbbfe4600000000000cbbfc6400000000000cbbffaa00000000000cbbfcba00000000000cbbfb7800000000000cb3ff4800000000000cb3fe4200000000000cb3fe4000000000000cbbfc0600000000000cbbfe0800000000000cb3fd2600000000000cb3fa4c00000000000cbbfe6e00000000000ffcb3ff9800000000000cbbfea200000000000cb3ff6c00000000000cb3fe5600000000000cbbfa2c00000000000cbbfb2800000000000cb3ffa000000000000cb3fc9600000000000cbbfd0400000000000cb3fef800000000000cb3fddc00000000000cbbfe4000000000000cb3fc1a00000000000cbbff8600000000000cbbfe4600000000000cb3fe0400000000000cbbfe2000000000000cb3fe8400000000000cbbfd1000000000000cbbfeb200000000000cb3ff1400000000000cb3fde800000000000cb3fd1e00000000000cb3f82000000000000cb3feb800000000000cb3faa600000000000cb3ff2e00000000000cb3ffe000000000000cb3fb1600000000000cbbfcbc00000000000cb3fe3e00000000000cbbfd9200000000000cb3fd5600000000000cbbff9000000000000cbbff3600000000000cb3fba600000000000cbbffee00000000000cbbfca000000000000cbbfdec00000000000cb3ffcc00000000000cbbfc2e00000000000cb4003200000000000cb3fe9800000000000cbc003c00000000000cbbfe2200000000000cb3fe3200000000000cb3fea800000000000cb3fe5e00000000000cb3fc1e00000000000cbbff4600000000000cbbff4600000000000cbbfb9600000000000cbc001a00000000000cbbfe1200000000000cb3fcaa00000000000cbbff6600000000000cb3fe1000000000000cb3ff1600000000000cb3fe8200000000000cbbffb000000000000cb3fe6200000000000cbbfece00000000000cbbfce200000000000cbbfcb400000000000cb3ffb200000000000cb3fb8c00000000000cb3ff0c00000000000cb3fdac00000000000cbbfff800000000000cbbfba400000000000cb3ff1200000000000cb3fe6c00000000000cb3fba600000000000cb3feca00000000000cbbfc2a00000000000cbbfed800000000000cbbffa200000000000cbbff6400000000000cbbfecc00000000000cb3ffa400000000000cb3fd4800000000000cb3ffbe00000000000cbbff1c00000000000cb3fd6000000000000cbbfd8c00000000000cbc001a00000000000cbbf95c00000000000cbbfec600000000000cb4003800000000000cbbfd420000000000001cbbfb7c00000000000cb3ffc800000000000cb3ff2800000000000cbbff6200000000000cb3fadc00000000000cbbfed800000000000cbbfa4600000000000cbbff9c00000000000cb3fc9c00000000000cbbff9c00000000000cbbfd2c00000000000cb3fc5800000000000cbbfada00000000000cb3fbd400000000000cb3fe3e00000000000cb3ff3000000000000cb3ff6600000000000cb3fa2c00000000000cbbfece00000000000cb3f96400000000000cb3ff3000000000000cb3fe1400000000000cbbfe6000000000000cbbff3400000000000cb3fd3000000000000cbbfdf200000000000cb3ff6600000000000cbbfd1400000000000cb4000c00000000000cbbfdb000000000000cbbfd8e00000000000cbc003c00000000000cb3fec000000000000cb3fe5200000000000cb3fdaa00000000000cb3fd1c00000000000cbbfb9800000000000cbbfd8400000000000cb3fff400000000000cbbffec00000000000cb3fc8c00000000000cb3fee400000000000cbc006200000000000cb3fdb600000000000cb3fd8c00000000000cb3ff3a00000000000cb3fe4800000000000cb3fd5200000000000cbbfd0e00000000000cbbfea800000000000cb3fbf000000000000cb4004e00000000000cbbfad800000000000cb3fe1800000000000cbbfe2c00000000000cb3fd8000000000000cb3fe2600000000000cb3fea000000000000cb3fcdc00000000000cbbff0e00000000000cbbff3200000000000cbbfca000000000000cb3fbc000000000000cbbfebc00000000000cb3feee00000000000cbbffb600000000000cbbfaf000000000000cbbfc5400000000000cb3ff2000000000000cb3faec00000000000cbbfa8000000000000cbbfed400000000000cb3fef800000000000cbbfe4a00000000000cb3ff2600000000000cbbfd3800000000000cb3fe3a00000000000cbbfd0200000000000cbbff3600000000000cbbff3600000000000cb3ff2c00000000000cbbff7c00000000000cb3ffac00000000000cbbfee200000000000cbbff5a00000000000cbbfeb000000000000cbbfb8000000000000cb3fd3e00000000000cb3fd9400000000000cb3ff8a00000000000cb3fff800000000000cbbfcfe00000000000cb3ff0800000000000cb3fdae00000000000cb3ff2600000000000cb3feb400000000000cbbff1a00000000000cb3ff1a00000000000cbbfe1200000000000cb3fad400000000000cb3ff4600000000000cb3fe2800000000000cb3fe2a00000000000cb3ffb000000000000cbbfdb800000000000cb3ffe200000000000cbbfe5600000000000cb3fe8200000000000cbbff5000000000000cb3fe5400000000000cb3fc9600000000000cb3fa5c00000000000cb3fe9a00000000000cb3ff5a00000000000cbbff4e00000000000cb3fffc00000000000cb3fd0000000000000cb3fd4e00000000000cbbff8c00000000000cb3ff2000000000000cb3fdea00000000000cb3ff4a00000000000cbbfeba00000000000cb3fe4800000000000cb3fd7200000000000cbbfe5000000000000cb3f99400000000000cbc005e00000000000cb3ff0e00000000000cbbff5e00000000000cb3ff6800000000000cb3fffe00000000000cb3fff000000000000cb4000c00000000000cbbfd0c00000000000cbbfabe00000000000cb3fd2e00000000000cbbfd3400000000000cb3fcb000000000000cb3fc4800000000000cbbfdd400000000000cb3ff5600000000000cb4000800000000000cbbfd1000000000000cbc000600000000000cb3ff7c00000000000cbbff0200000000000cbbfdc800000000000cb3fece00000000000cb3ff9a00000000000cb3fe3c00000000000cbbff6200000000000cbbfcb000000000000cbbfe1200000000000cb3fba400000000000cb3ffc600000000000cb3ff8800000000000cb3ffd200000000000cbc00b000000000000cbbfb7400000000000cb3fe9e00000000000cb3f9c000000000000cbbfede00000000000cb3ffc800000000000cb3fe3200000000000cb3fdf800000000000cbbfe1a00000000000cbbff2400000000000cbbff4200000000000cbbfefe00000000000cb3fe9000000000000cb3fe3600000000000cb3fe0800000000000cbbfeca00000000000cb3ff2200000000000cbbff9600000000000cbbff8a00000000000cb3ffcc00000000000cb3fb3c00000000000cbbfb6600000000000cb3ff2600000000000cb3fda800000000000cb3fb7400000000000cbbfe1400000000000cbbfd6400000000000cbbfe6c00000000000cb3feb600000000000cbbfc7800000000000cbbfe1e00000000000cb3fbc600000000000cb3fa0000000000000cb3fd8800000000000cbbffaa00000000000cbbf9e400000000000cb3ff9200000000000cbc007000000000000cb4004600000000000cbbfc2400000000000cbbfd5400000000000cb3ff8000000000000cbbffb200000000000cbbff5a00000000000cb3ff5200000000000cb3fcdc00000000000cb3f85a00000000000cb3fc1c00000000000cb3fe6400000000000cb3ff6c00000000000cb3fb2000000000000cbbff2800000000000cbbfe1600000000000cbbfdee00000000000cbbfd7800000000000cbbff0600000000000cb3fd1200000000000cb3fee400000000000cb3fdf200000000000cbbfd9400000000000cb3fdb200000000000cb3febe00000000000cbbfdfe00000000000cb3fea000000000000cb3fec400000000000cbbfea600000000000cbbff8800000000000cb3fde80000000000001cbbfe9c00000000000cbbfc7800000000000cb3fdea00000000000cb3fea000000000000cbbfdaa00000000000cbbfdb200000000000cb3fd1200000000000cb3fe1e00000000000cb3fe8200000000000cbbff2800000000000cb3fdb600000000000cb3fdd800000000000cbbfeb000000000000cb3fea800000000000cb3fb4c0000000000002cb4003800000000000cb3ff6e00000000000cbbfd9e00000000000cb3fd0600000000000cbbfe1e00000000000cbbff0c00000000000cbbfe9200000000000cb3fec200000000000cb3ff8600000000000cb3fea200000000000cbbfdf000000000000cbbfd6200000000000cb3fb2a00000000000cbbfef200000000000cbbfd8000000000000cbbffa200000000000cbbfdc600000000000cb3fd0000000000000cbbfb7200000000000cb3fc7800000000000cb3fda000000000000cb3fed200000000000cb3fec200000000000cbbfca200000000000cbbf9ec00000000000cbbfdda00000000000cb3fef600000000000cbbfe9400000000000cb3fd1000000000000cb3f66000000000000cb3fe8600000000000cb3fe4800000000000cb3ff1600000000000cb3fcf400000000000cbbff1800000000000cb3fed400000000000cbbfed400000000000cbbfce200000000000cb3fd6000000000000cbbfc6e00000000000cb3fdf200000000000cbbffda00000000000cb3fd5000000000000cb3ff0400000000000cbbff9600000000000cb3fd7000000000000cbbff1e00000000000cbbfe3200000000000cbbfd0e00000000000cb3fe9400000000000cbbface00000000000cb3fb3000000000000cbbfe7e00000000000cb3fa6000000000000cbbffd400000000000cb3fce600000000000cb3fd6a00000000000cbc002400000000000cb3ff9400000000000cbbfec000000000000cbbfdce00000000000cbbfed800000000000cbbfe4600000000000cbbff4400000000000cbbff7a00000000000cbbfd7800000000000cb3fe0200000000000cb3feaa00000000000cb3fb7800000000000cbbff4400000000000cbbfc2400000000000cbbfe5000000000000cb3fc5800000000000cb3fed000000000000cb3ff0600000000000cb3fe6400000000000cbbff2c00000000000cb3fd0200000000000cbbfeec00000000000cbbff0400000000000cbbfed200000000000cbbfd4200000000000cbbfd8c00000000000cb3fb8c00000000000cbc000e00000000000cb3fd4c00000000000cb3fdd400000000000cb3fe2e00000000000cbbfb2000000000000cb3ff2c00000000000cb3fdcc00000000000cb3fe2600000000000cbbfb3000000000000cbbfe8200000000000cbbff4600000000000cb3fe1400000000000cbc000c00000000000cbbff1c00000000000cbbfc4400000000000cbbff8600000000000cb3ff2a00000000000cb3f95c00000000000cbbffc400000000000cb3fd6600000000000cbbfa7200000000000cb3fc3400000000000cb3fa8400000000000cb3fb4000000000000cbbff3000000000000cb3feea00000000000cb3ff5600000000000cbbff0800000000000cb3fef600000000000cb3fea200000000000cb3ff1a00000000000cbbfea000000000000cbbfee400000000000cbbfd0a00000000000cb3ffb600000000000cb3fd2600000000000cbbfd960000000000001cbbfd1e00000000000cbbfd8e00000000000cb3fefc00000000000cb3ff4a00000000000cbbfef400000000000cbbff4000000000000cb3ff8c00000000000cb3fc9e00000000000cb3fc6800000000000cb3f78400000000000cb3fe8800000000000cbbfdd600000000000cb3fd7800000000000cbbfeb600000000000cb3fe4800000000000cbbfd1e00000000000cbbfd9a00000000000cb3fe8a00000000000cb3fc3800000000000cb3fdc600000000000cbbff5000000000000cbbfe8a00000000000cb3fe0400000000000cbbfb8000000000000cb3f34000000000000cb3fa9c00000000000cb3fea400000000000cbbfca000000000000cbbfeea00000000000cbc003e00000000000cb3ff6200000000000cbbfd3e00000000000cb3fc0c00000000000cbbffae00000000000cbbfb1c00000000000cb3fde000000000000cb3ff1400000000000cb3ff3600000000000cb3fee800000000000cb3fe3400000000000cb3fe0200000000000cbbff7e00000000000cbbfc0a00000000000cbbfd8800000000000cbbfde000000000000cbbff7600000000000cbbfd3800000000000cb3fed800000000000cbbfdd800000000000cb3ff2000000000000cbbfd7200000000000cb3fc8000000000000cb3fcde00000000000cb3fffa00000000000cb3ff0e00000000000cb3fe6e00000000000cbbff2200000000000cbbffe800000000000cbbff1c00000000000cb3ffd800000000000cb3fcf400000000000cb3fd1000000000000cbbff3400000000000cbbff3200000000000cbbfd4200000000000cb3fa0c00000000000cb3fc3400000000000cbbfe8400000000000cb3f8c000000000000cb3fdae00000000000cb3ff9e00000000000cbbfe7200000000000cbbfdd800000000000cbbfe6a00000000000cbbfd6600000000000cbbfc2400000000000cbbfee200000000000cb3ffa000000000000cbbfd8400000000000cb3fd8c00000000000cb3ff1400000000000cbbff2e00000000000cbbfbf400000000000cbbfda200000000000cbbfe9400000000000cbbff5a00000000000cb3fe5400000000000cbbfd6400000000000cbbfc8c00000000000cb3ff1200000000000cbbfe7c00000000000cb3fea800000000000cbbfefc00000000000cb3fa1c00000000000cbbff0c00000000000cbbfe5c00000000000cbbff9e00000000000cbbfc3c00000000000cbbfb3e00000000000cb3fde800000000000cbbfebc00000000000cbbff4e00000000000cb3fd1c00000000000cb3feb000000000000cb3f95a00000000000cb3fe0a00000000000cbbfdf400000000000cbbfe7600000000000cbbfc2400000000000cbbff2400000000000cbbff7e00000000000cb3ff0600000000000cb4001c00000000000cbbfe9600000000000cbbfdba00000000000cbbff1800000000000cb3ff1e00000000000cbbfcf200000000000cb3fd9a00000000000cbbff2c00000000000cbbfe1c00000000000cb3feee00000000000cbbfcf200000000000cbbf76000000000000cb3fe7400000000000cb3fd6c00000000000cb3fb5800000000000cb3fece00000000000cbc000800000000000cbbfe4c00000000000cb3febc00000000000cb3fb4a00000000000cb3fe6400000000000cb3fd7600000000000cb3f5a000000000000cbbfd2a00000000000cb3fe5600000000000cb3ff1600000000000cbbfe0400000000000cb3fe2e00000000000cb3fe0400000000000cbbfe0400000000000cb3fe9200000000000cb3fc7800000000000cbbffca00000000000cbbfca000000000000cb3fc4800000000000cbbfc1000000000000cbbfd9a00000000000cb3ff2400000000000cbbfd7600000000000cb3fde200000000000cb3fe6c00000000000cbbfbfe00000000000cb3fe1c00000000000cb3fd8c00000000000cbbfe2800000000000cb3ff3600000000000cb3fbd000000000000cb3f90c00000000000cb3ff2400000000000cbbfff800000000000cbbfe740000000000001cbbfda400000000000cb4000400000000000cbbfeec00000000000cbbfd1400000000000cbbfb6600000000000cb3fbfa00000000000cb3fe7800000000000cbbfd3600000000000cb3fa2000000000000cbbfee200000000000cb3f74000000000000cbbff4400000000000cb3ff2200000000000cbbff6a00000000000cbbfe8c00000000000cbbfd9600000000000cb3fe4c00000000000cbbfafa00000000000cbbff7400000000000cbbfc8800000000000cbbff5000000000000cb3ffc400000000000cbbfdc000000000000cbbff1c00000000000cbbfe5c00000000000cbbff6800000000000cbbfcee00000000000cb3fec800000000000cbbfe5000000000000cb3fbaa00000000000cbbfed000000000000cbbfbba00000000000cb3ff8800000000000cb3fe8800000000000cb3fe4800000000000cb3fa5e00000000000cb3fdfa00000000000cb3fefc00000000000cbbfe4a00000000000cb3fe1800000000000cbbffbe00000000000cb3fda600000000000cb3fc5000000000000cb4007800000000000cb3ff2200000000000cb3f8fc00000000000cbbfe2800000000000cbbfe6c00000000000cb3ff6e00000000000cb3fe9800000000000cbbff3000000000000cb3fb3200000000000cbbff3800000000000cbbfe6e00000000000cbbff5200000000000cbbfd7c00000000000cb3f95000000000000cbbfe1c00000000000cb3fde200000000000cb3fd2400000000000cb3fed800000000000cbbff5e00000000000cbbfc0c00000000000cbbfee000000000000cbbff2e00000000000cb3fc4a00000000000cb3fe8600000000000cbbfee800000000000cb3fcbe00000000000cbbfe3600000000000cbbfce400000000000cb3fda600000000000cbbfdb800000000000cbbfd1a00000000000cbbfd1e00000000000cbbfe2a00000000000cb4003000000000000cbbfef400000000000cb3fe7e00000000000cb3ffe200000000000cb3ff0800000000000cb3fff000000000000cb3fc6c00000000000cb3fd5400000000000cbbfb3600000000000cbbfda200000000000cbbffe800000000000cbbff9200000000000cb3fe4a00000000000cbbff6200000000000cbbfe0600000000000cb3fd3c00000000000cbbfd8a00000000000cb3ff9200000000000cbbff3c00000000000cbbfdba00000000000cb3fa5000000000000cb3f93e00000000000cb3fc2400000000000cb3fc5800000000000cb3fe3c00000000000cbbff2400000000000cbbfa8600000000000cbbfcb400000000000cbbfb2c00000000000cbbfe4c00000000000cb3fd4e00000000000cb3fd1000000000000cbbff9200000000000cb3fe4400000000000cbbfec400000000000cb3fe0200000000000cb3ff4a00000000000cbbff6c00000000000cbbfe9400000000000cbbfed400000000000cbc000c00000000000cb3fea400000000000cb3fe1000000000000cb3ff4a00000000000cbbfd5800000000000cb3fe6600000000000cb3fe5e00000000000cbbff2600000000000cbbfda600000000000cb3fde400000000000cbbf9b000000000000cb3ff4400000000000cbbff4400000000000cb3feaa00000000000cb3fecc00000000000cb3fb1e00000000000cbbfa9a00000000000cbbfefa00000000000cbbff2600000000000cb3fc8800000000000cbbfd8a00000000000cb3ff6200000000000cbbfef600000000000cb3fd7200000000000cb3ff3400000000000cbbfc2000000000000cbbffdc00000000000cb3ff1e00000000000cb3fa2000000000000cbbff1600000000000cbbfeba00000000000cbbfc4400000000000cb3fcae00000000000cb3fdb400000000000cbbfe4a00000000000cb3fd2000000000000cb3ffc600000000000cb3ffac00000000000cbbfd0e00000000000cb3ffac00000000000cb3fea600000000000cbbff8200000000000cbbfeca00000000000cb3ff0a00000000000cb3ffa400000000000cbbfde000000000000cb3fb1000000000000cb3ffd000000000000cb3feea00000000000cbbfb2c00000000000cbbff8600000000000cbbfee400000000000cb3faa400000000000cb3fe2a00000000000cb3ff3400000000000cbbfe2e00000000000cb3ff5a00000000000cb3fe9a00000000000cbbfc5e00000000000cb3fadc00000000000cb3fb8400000000000cb3fdc200000000000cbbfeb800000000000cb3fd0c00000000000cbbfe9000000000000cb3ff7000000000000cbbff9e00000000000cb3fea400000000000cbbff0800000000000cb3fe4400000000000cb3fe1600000000000cbbfb9800000000000cb3fee600000000000cb3fed000000000000cb3fe3400000000000cb3fecc00000000000cbbfba000000000000cbbfc1000000000000a13383a46e616d65a44e6f7465a7636f6e74657874a0a9656d62656464696e67dc0400cb3fdce00000000000cbbfd9200000000000cb3ff8c00000000000cb3fe2000000000000cbbfe9600000000000cbbfe7400000000000cb3fb8800000000000cb3ff3000000000000cb3fcf400000000000cb3ffcc00000000000cb3ff0a00000000000cbbfe6c00000000000cbbff8c00000000000cb3fe1600000000000cb3fe0a00000000000cb3ff3400000000000cb3fd7a00000000000cb3fdb400000000000cb3ffa000000000000cb3fd9e00000000000cbc000800000000000cb3fc6e00000000000cb4000600000000000cb3ff8c00000000000cbbfbda00000000000cbbfd7200000000000cbbff4600000000000cb3ffd800000000000cbbfe7200000000000cb3feea00000000000cb3fe5c00000000000cb3fe5000000000000cb3fcd200000000000cbbfc4e00000000000cbbfe0200000000000cbbfc4200000000000cbbfecc00000000000cb3fb5200000000000cb3fe5e00000000000cbbff1200000000000cb3ff2800000000000cb3fd5e00000000000cbbff0e00000000000cbbfff600000000000cb3ff9c00000000000cbbff1400000000000cbc003a00000000000cb3fcee00000000000cbbfe5800000000000cbbff1800000000000cbbfe0000000000000cbbfe7400000000000cbbfdbc00000000000cb3fd0800000000000cb3fe9600000000000cbbfefc00000000000cbbfc4400000000000cb3fe7000000000000cbbfa8800000000000cbbfdac00000000000cb3fea400000000000cb3fd6a00000000000cbbff2e00000000000cbbfdea00000000000cb3f93c00000000000cbbfe9600000000000cb3fdc200000000000cb3fe1800000000000cbbfef800000000000cbbfd6a00000000000cb3fd7e00000000000cbbff7e00000000000cb3ffce00000000000cbbfc2200000000000cbbffbe00000000000cbbfd7e00000000000cbbff5200000000000cb3ff3c00000000000cbbfee200000000000cb3fc5a00000000000cb3fd8400000000000cb3fdf000000000000cbc002a00000000000cb3fef800000000000cbbfde400000000000cb3fe5000000000000cbbfd1400000000000cbbfebe00000000000cb3ff1400000000000cbbfafa00000000000cb3f9f800000000000cb3fee000000000000cbbfebe00000000000cbc000e00000000000cb3ff6a00000000000cbbfcc600000000000cbbfa0800000000000cb3fc5200000000000cbbff3600000000000cb3fea800000000000cb3fe3e00000000000cb3fc9600000000000cb3ffaa00000000000cbbfc2200000000000cbbfdae00000000000cb3ff7600000000000cbbfe6800000000000cbbfd4000000000000cbbfd1e00000000000cbbff8a00000000000cbbfd0a00000000000cb3ff4600000000000cb3ffc000000000000cb3ff0600000000000cbbfdf800000000000cb3fed200000000000cbbffd000000000000cb3ff5800000000000cbbfe0600000000000cbbfe2000000000000cb3ff8c00000000000cb3fa0400000000000cb3ff0200000000000cbbfeca00000000000cbbff7e00000000000cbbfdec00000000000cb3fe5600000000000cb3feda00000000000cb3fe2800000000000cbbff9800000000000cb3fa5c00000000000cb3fc4c00000000000cb4002e00000000000cb3f99400000000000cb3ffc400000000000cb3fd4400000000000cb3fb6e00000000000cbbfe9200000000000cbbfea600000000000cb3fed400000000000cb3fe2200000000000cb3fe5400000000000cb3ff1400000000000cbbfd1600000000000cbbfe2200000000000cb3fe3e00000000000cbbfe5400000000000cbbff1800000000000cbbfcda00000000000cb3fe1600000000000cbbff6200000000000cbbfd9000000000000cbbfe3c00000000000cb3fe4600000000000cb3ffe200000000000cb3ffa000000000000cbbfe9c00000000000cb3fea800000000000cbc000200000000000cbbff6000000000000cbbff0a00000000000cb3fa8200000000000cb3ff4600000000000cbbfe7a00000000000cb3fd9200000000000cb3fd1800000000000cb3fb2200000000000cbbff8000000000000cbbfe8a00000000000cb3fed800000000000cb3fe0800000000000cb3ffaa00000000000cb3fe1400000000000cb3ff0600000000000cbbfa4e00000000000cbbfcbe00000000000cbc002800000000000cbbfd0600000000000cb3fe3c00000000000cbbfeb400000000000cbbfe0200000000000cb3ff2a00000000000cb3feaa00000000000cbbff9000000000000cb3fe3800000000000cb3fe1a00000000000cbbff7200000000000cbbfc2c00000000000cb3fd0800000000000cbbff2c00000000000cbbfd6c00000000000cb3ff5600000000000cb3fe8000000000000cbbf28000000000000cbbfe3a00000000000cb3fd2000000000000cbbfb9400000000000cb3fba600000000000cbbfd5e00000000000cb3fe4e00000000000cb3fe9a00000000000cb3ff5e00000000000cb3ff0600000000000cb3fdf400000000000ffcbbfe6e00000000000cb3febe00000000000cbbff3a00000000000cb3fddc00000000000cbbfe1e00000000000cb4002200000000000cbbff3400000000000cb3fd9000000000000cb3fdf600000000000cbbfe3a00000000000cb3fe2800000000000cb3ff0600000000000cb3ff9c00000000000cb3fb4a00000000000cb3febe00000000000cb3fe0e00000000000cbbfef800000000000cb3f8a000000000000cbbff2400000000000cbbfdde00000000000cb3f60000000000000cbbfa4000000000000cb3f90800000000000cb3fcd600000000000cbbfe8200000000000cb3ff1c00000000000cbbfdf400000000000cbbfdb400000000000cb3fd2a00000000000cb3ff0c00000000000cb3fbde00000000000cb3ffd200000000000cb3ff6a00000000000cb3ff2a00000000000cbbfd3600000000000cb3fec600000000000cbbfc5600000000000cb3fe7800000000000cbbff4a00000000000cbbff1a00000000000cb3fe1400000000000cbbff4200000000000cbbfe2400000000000cbbfe8000000000000cb3ff5000000000000cbbf97000000000000cb3ff2c00000000000cb3fc3400000000000cbc000600000000000cbbfecc00000000000cb3fda800000000000cb3fe0200000000000cbbfe4400000000000cbbfac400000000000cbbfec400000000000cbbfa4600000000000cbbfc2c00000000000cbbfe5e00000000000cbbfe0600000000000cbbfd7c00000000000cbbff0600000000000cbbfe5200000000000cb3fefa00000000000cb3fe6600000000000cbbfce800000000000cb3fc8400000000000cbbff2400000000000cb3fa5200000000000cbbfe4800000000000cb3fed600000000000cb3ff4e00000000000cb3ffd400000000000cbbf89000000000000cbbffb600000000000cbbff6e00000000000cb3ff2600000000000cb3fe3e00000000000cbbfd6200000000000cb3ffea00000000000cbbfe1000000000000cb3fb1c00000000000cbbfec400000000000cbbfe3400000000000cbbff880000000000001cb3fd7a00000000000cb3ff2600000000000cbbfee400000000000cb3fccc00000000000cbbfce400000000000cbc003800000000000cbbfdf400000000000cbbfba800000000000cb3ff1a00000000000cb3fcca00000000000cb3ff7a00000000000cb3fb1200000000000cb3ff6e00000000000cb3feba00000000000cbbff6c00000000000cb3fed200000000000cbbfa9a00000000000cb3fb6c00000000000cbbff8c00000000000cb3fda200000000000cbc006200000000000cb3fc5c00000000000cb3f61000000000000cbbfc4000000000000cbbfcec00000000000cb3fed400000000000cb3fdce00000000000cb3ffd000000000000cbbfdd400000000000cbbffda00000000000cb3fe1e00000000000cb3fef800000000000cb3fe8600000000000cbbfc5200000000000cb3f84c00000000000cb3fd7c00000000000cbbfe1000000000000cb3fd3a00000000000cbbfec400000000000cb3ffee00000000000cbbfe7600000000000cbbfb7e00000000000cbbff8c00000000000cb4000600000000000cb3fed400000000000cbbfd3200000000000cbbfc1e00000000000cb3fee200000000000cbbff6a00000000000cb3ff2600000000000cbbffd600000000000cb3fcde00000000000cb3fbce00000000000cbc001c00000000000cb3ff3000000000000cbbfd5000000000000cb3fec800000000000cb3fd6c00000000000cb3fc1600000000000cbbff4400000000000cbbfd5400000000000cbbfe8400000000000cb4003600000000000cbbfc1600000000000cbbfe0200000000000cbbfd7400000000000cb3ff0400000000000cb3fd2200000000000cb3ff1800000000000cbbf8cc00000000000cbbfe4000000000000cbbfe3800000000000cb3fd4c00000000000cb3fe2c00000000000cbbff9200000000000cb3ff6200000000000cbbff4800000000000cbbff0e00000000000cbbfc2000000000000cbbfcf000000000000cb3ff9a00000000000cb3f83a00000000000cb3f93000000000000cb3ff3000000000000cb3fde800000000000cb3ff4800000000000cbbf6cc00000000000cb3feca00000000000cbbffea00000000000cbbff3400000000000cbbfd6e00000000000cb4001600000000000cbbff2600000000000cb3ffde00000000000cb3fda600000000000cbbffb200000000000cbbfdba00000000000cb3fc9000000000000cb3fc2600000000000cb3fe2000000000000cb3ff3000000000000cb3ff8000000000000cbbfeb600000000000cb3fdec00000000000cbbf72000000000000cb3fb7600000000000cbbfc3400000000000cbbfe4400000000000cb3fdbe00000000000cbbfe2800000000000cb3fe9e00000000000cb3ff7e00000000000cb3fe2c00000000000cb3fd8000000000000cb3ff1c00000000000cbbff2200000000000cb3feee00000000000cbbff2600000000000cb3ff7e00000000000cbbff6600000000000cb3ff2a00000000000cb3fe4a00000000000cb3fca400000000000cb3fea800000000000cb3ff2800000000000cbbfef000000000000cb3ff0a00000000000cb3fc2000000000000cbbf7f800000000000cbbff5400000000000cb3fe6600000000000cb3fe4800000000000cb3ff0200000000000cbbfe3000000000000cb3fcf600000000000cb3fc5000000000000cb3fcfc00000000000cb3fd2800000000000cbbffc200000000000cb3fe5c00000000000cbbff8000000000000cb3ff3800000000000cb4001400000000000cb4000c00000000000cb3fe8a00000000000cbbfe8600000000000cb3fef000000000000cb3fd8c00000000000cbbfe7e00000000000cbbfe8000000000000cb3fc5400000000000cb3fe0000000000000cb3fed800000000000cb3ff2600000000000cbbfdca00000000000cbbfff800000000000cb3ff3200000000000cbbff1000000000000cbbfe2600000000000cb3fc9800000000000cb3ff7800000000000cb3fb6c00000000000cbbff7c00000000000cbbfd1800000000000cbbfd1400000000000cbbfe7c00000000000cb4001c00000000000cb3ffde00000000000cb3ff0600000000000cbc004600000000000cbbfe6e00000000000cb3fee800000000000cbbfe4200000000000cbbffaa00000000000cb4006e00000000000cbbf40000000000000cbbf92400000000000cbbfda400000000000cbbff0a00000000000cbbfe8a00000000000cbbfe7c00000000000cb3ff4a00000000000cb3fdf000000000000cb3fe5200000000000cb3fcfa00000000000cb3fe6800000000000cbbff8e00000000000cbbff7800000000000cb3fd7200000000000cbbf97400000000000cbbff0e00000000000cbbfe1c00000000000cb3ff5800000000000cbbfd4200000000000cbbfe9600000000000cbbf7f000000000000cbbfe4e00000000000cb3fdc200000000000cb3ff4800000000000cbbfd2200000000000cb3ff1e00000000000cb3fdd200000000000cb4001200000000000cbc002000000000000cbbfd2000000000000cb3ffee00000000000cbbffec00000000000cb4001c00000000000cbbfc1800000000000cbbfd1c00000000000cb3fe1a00000000000cbbff3600000000000cbbfb1400000000000cb3ff6200000000000cbbfe5400000000000cbbfe1600000000000cbbfb6200000000000cb3fe1a00000000000cb3ff0600000000000cb3fde800000000000cbbfb9800000000000cbbfb4e00000000000cbbfc4e00000000000cbbfb9c00000000000cbbfe7e00000000000cb3fec800000000000cb3fe6400000000000cb3ff7800000000000cbbfbf000000000000cb3fef000000000000cb3fecc00000000000cbbfec000000000000cb3feac00000000000cb3ff2400000000000cbbff9200000000000cbbff5c00000000000cb3fe1e00000000000cb3fdd600000000000cbbffda00000000000cb3ff0e00000000000cbbfd1800000000000cb3fd9600000000000cb3fdc800000000000cbbff8800000000000cb3f8ec00000000000cbbfd5600000000000cb3fe1a00000000000cbbfeda00000000000cb3fea200000000000cb3fdda00000000000cbbfea600000000000cbbfd5e00000000000cb3fb0800000000000cb3ffe600000000000cb3ff9e00000000000cb3fe5200000000000cbbfe2a00000000000cb3feae00000000000cbbfd6800000000000cbbfe0600000000000cbbfe8a00000000000cb3ff1000000000000cb3fee000000000000cb3fe2000000000000cb3fb9000000000000cb3fdac00000000000cbbff1c00000000000cbbfe5600000000000cb3fd5000000000000cbc005800000000000cbbfe7600000000000cbbf80000000000000cbbfc1a00000000000cb3fc0200000000000cb3ff7400000000000cb3fee600000000000cb3fd7600000000000cb3fce800000000000cb3fd2800000000000cb3fad800000000000cb3fe7c00000000000cb3fe7e00000000000cb3fd2000000000000cb3fc4000000000000cb3fdda00000000000cbbfe4e00000000000cb3fef200000000000cb3fdd400000000000cbbfeae00000000000cb3fee400000000000cbbfdb400000000000cbbfe7400000000000cb3ff5000000000000cbbfeb200000000000cb3faa000000000000cbbffda00000000000cbbfa6400000000000cb3fe4000000000000cbbfb5400000000000cb3fc4800000000000cbbfdac00000000000cbbfbe800000000000cbbfd0a00000000000cb3ff4000000000000cbbfbb800000000000cb3fc5c00000000000cb3f9a400000000000cb3fefe00000000000cbbffc400000000000cbbfdb000000000000cb3fcc600000000000cbc004e00000000000cb3feb600000000000cbbfe1600000000000cbbfede00000000000cb3fd3e00000000000cbbfebe00000000000cbbfeba00000000000cbbffca00000000000cb3f99000000000000cb3fbc800000000000cb3fdf200000000000cb3ff3a00000000000cbbffd800000000000cb3fb0600000000000cb3fe8a00000000000cb3fe6a00000000000cb3fcc000000000000cb3ff0600000000000cb3ff3200000000000cbbff2e00000000000cb3ff9400000000000cbbff8200000000000cbbfe4c00000000000cbbfe1800000000000cbbfd7200000000000cbbfe1400000000000cbbfd9800000000000cbbff2400000000000cb3fe7000000000000cb3fe2800000000000cb3fdea00000000000cbbfc8200000000000cb3fe4000000000000cbbfe5c00000000000cb3fe7c00000000000cb3faa800000000000cbbfe0400000000000cbbfcc400000000000cb3fce200000000000cbbfff600000000000cb3fe1c00000000000cb3fe2800000000000cbbff2400000000000cb3fe2a00000000000cbbfd8800000000000cbbfff200000000000cb3fd5a00000000000cbbfd9600000000000cbbf97c00000000000cbbf6b000000000000cb3fc2800000000000cbbfa8c00000000000cb3fd9600000000000cb3ff1e00000000000cbbff8e00000000000cb3fe9400000000000cbbfd3a00000000000cb3ff0600000000000ffcbbfcf000000000000cbbfd4000000000000cb3fefa00000000000cbbfc3400000000000cbbfee400000000000cb3fe5e00000000000cbbfe5e00000000000cbbf63800000000000cb3ff1c0000000000001cbbfe4400000000000cbbfdb400000000000cb3ffa000000000000cbbfe5c00000000000cbbfc0e00000000000cb3fcd600000000000cb3fef800000000000cbbfddc00000000000cb3ff0800000000000cbbfc4600000000000cb3fd6000000000000cbbfe8000000000000cbbfe9e00000000000cbbfe0e00000000000cbbfc9600000000000cb3ff1200000000000cbbfec200000000000cbbfaa200000000000cbbfee000000000000cbbfe5600000000000cbbfacc00000000000cb3fd3400000000000cb3fdbe00000000000cb3faf400000000000cbbfee400000000000cbbffd200000000000cb3fd4e00000000000cbbfd0e00000000000cbbfcec00000000000cbbff8600000000000cbbfca000000000000cb3ff0200000000000cb3faf400000000000cb3fd3a00000000000cb3fef000000000000cb3fee000000000000cb3fbb800000000000cbbfec800000000000cb3fc0a00000000000cbbfd7800000000000cbbfbec00000000000cbbff3400000000000cbbff1a00000000000cb3ff5000000000000cbbff0400000000000cb3ff4000000000000cb3f98000000000000cb3fe8e00000000000cbbfd0600000000000cb4008200000000000cb3ff1600000000000cbbfd1400000000000cbbfbde00000000000cbbfea400000000000cbbfdc800000000000cb3fa3000000000000cbbfeec00000000000cb3fa3c00000000000cb3fbbe00000000000cbbfeea00000000000cb3f73000000000000cbbff3200000000000cbbff0a00000000000ffcbbfbf200000000000cbbfe6c00000000000cb3ffa600000000000cbbfeac00000000000cbbfd2e00000000000cbbff1800000000000cbbff2600000000000cb3fe1000000000000cbbfe2800000000000cb3ff7c00000000000cbbff0c00000000000cbbfd2e00000000000cb3ff2000000000000cbbffda00000000000cb3ffb400000000000cb3fb8a00000000000cbbfee400000000000cbc002000000000000cb3fa3200000000000cbbfe2600000000000cbbfdfa00000000000cb3fe2e00000000000cbbfdcc00000000000cbbfd6e00000000000cbbff3a00000000000cbbff3e00000000000cbbfe0c00000000000cbbff3200000000000cbbfeca00000000000cb3fb7600000000000cb3fd9c00000000000cb3fc7a00000000000cbbff8200000000000cbbfdc800000000000cb3feac00000000000cb3fc6400000000000cbbfd1e00000000000cb3fd6800000000000cbbfe9c00000000000cbbffc000000000000cbbff0800000000000cbbff5400000000000cbc006600000000000cb3fef800000000000cb3ff8000000000000cbbff0e00000000000cbbfd7600000000000cbbfef000000000000cb3ff8800000000000cb3fe8400000000000cb3ff3000000000000cbbfb3800000000000cb3fa6600000000000cbbfcb400000000000cbbf6e000000000000cb3faf600000000000cb3fd4000000000000cb3fd3200000000000cbbfbcc00000000000cb3feda00000000000cbbff1000000000000cbbff6e00000000000cb3f95000000000000cbbff4000000000000cb3ff1400000000000cbbfb0000000000000cbbfd0600000000000cbbfd9c00000000000cb3fbcc00000000000cb3ffa800000000000cbbfd9400000000000cb3fe5200000000000cb3fe1600000000000cbbfcbc00000000000cb3ff1800000000000cb3fd2000000000000cbbfeec00000000000cbbff5400000000000cbbfdce00000000000cbbff2800000000000cbbfdb200000000000cb3ffde00000000000cb3fe8200000000000cb3fec400000000000cb3fef400000000000cb3fb0400000000000cb3ff5600000000000cbbfcbc00000000000cbbfc1600000000000cb3fdcc00000000000cb3fb7c00000000000cb3fe5000000000000cb3fe1200000000000cbbff2000000000000cbbff1600000000000cb3fba200000000000cb3fc5000000000000cb3ffc600000000000cbbfe6400000000000cb3f80000000000000cb3fcc000000000000cb3fc4400000000000cbbfcf400000000000cb3fe5200000000000cbbff3200000000000cbbfe2a00000000000cb3fdf000000000000cbbfba200000000000cb3ff3800000000000cbbfee000000000000cb3fe0c00000000000cb3fdd800000000000cb3fee000000000000cbbfcac00000000000cbbfe8c00000000000cbbfd8000000000000cbbfd4e00000000000cb3ffb400000000000cbbfc3600000000000cb3fd2800000000000cbbfd3000000000000cb3faea00000000000cbbfe0800000000000cb3fd7a00000000000cbbf96600000000000cb3fb8200000000000cbbfe6800000000000cb3fe8200000000000cb3ffb800000000000cbbfca200000000000cb3fcf400000000000cbbfcec00000000000cb3fd8e00000000000cb3ff7400000000000cbbff3e00000000000cbbff0c00000000000cbbff3000000000000cb3fcb600000000000cb3fd1800000000000cb4002000000000000cb3fe4600000000000cb3feca00000000000cb3fd4600000000000cbbfe1a00000000000cb4003400000000000cb3ffdc00000000000cbbfdfa00000000000cbbfd4200000000000cbbfcc400000000000cbbfe2200000000000cbbffe800000000000cbbfc3a00000000000cb3fd9a00000000000cb3fc6e00000000000cbbfd4400000000000cbbfc8200000000000cb3ff2800000000000cbbfe4c00000000000cbbfe4e00000000000cbbfeee00000000000cbc002e00000000000cb3fc9a00000000000cb3fe3a00000000000cb3fde000000000000cb3fc0a00000000000cbbfe9200000000000cbbfe6000000000000cb3fd2000000000000cbbff1800000000000cb3fdc200000000000cb3fdfc00000000000cbbfecc00000000000cb4003c00000000000cbbfefa00000000000cb3fc7000000000000cb3ff7c00000000000cb3fe6600000000000cb3ff6000000000000cb3fc0a00000000000cb3fed600000000000cb3fbe200000000000cb3fc3e00000000000cbbffd200000000000cbbffca00000000000cbbfed800000000000cbbff3a00000000000cbbfcb200000000000cb3ff1200000000000cb3fe4200000000000cb3feb400000000000cbbffa000000000000cbbfeca00000000000cb3fcee00000000000cbbfe1800000000000cb3fc3c00000000000cb3feb600000000000cb3ffc800000000000cbbfb4800000000000cbbfe4200000000000cb3ff1800000000000cb3ff0a00000000000cbbfe4c00000000000cb3fe8200000000000cb3fe2600000000000cbbff2e00000000000cb3fd7c00000000000cbbff0c00000000000cb3fe2000000000000cb3fed800000000000cbbfe9a00000000000cbbfc9200000000000cb3fd8800000000000cbbff3200000000000cb3fe8800000000000cb3fe6000000000000cb3fe8600000000000cbbfdfe00000000000cb3feb000000000000cb3fb3000000000000cbbff9e00000000000cb3fbe800000000000cb3ff1e00000000000cb3fdb200000000000cb3ff2600000000000cbbfff400000000000cb3fea600000000000cb3ffd400000000000cb3f84000000000000cbbfda800000000000cbbfe6a00000000000cbbffec00000000000cbbf81000000000000cbbfd6800000000000cb3ff1400000000000cbbffdc00000000000cbbfc9e00000000000cb3fe2c00000000000cb3face00000000000cbbff0e00000000000cbbfddc00000000000cb3ff8400000000000cbbff6a00000000000cbbff5e00000000000cb3fc4800000000000cb3fe7200000000000cb3ff0800000000000cbbfc2c00000000000cb3ff3c00000000000cb3ffec00000000000cb3ffd800000000000cbbfeca00000000000cb3fd3400000000000cb3fb9800000000000cbbffac00000000000cb3fd0800000000000cb3fdb600000000000cb4003c00000000000cbbfe4800000000000cbbfcca00000000000cb3ff5200000000000cb3fbd800000000000cbbfdb800000000000cbbfd7c00000000000cbbfd6400000000000cb3fa4000000000000cb3ff8000000000000cb3ff1800000000000cb3fdfc00000000000cb3ff4800000000000cb3fede00000000000cb3fdbc00000000000cb3fe2600000000000cb3fe1200000000000cbbfb9c00000000000cbbfe7400000000000cb3fe3800000000000cb3fd5600000000000cb3ff7000000000000cbbffe600000000000cb3fee200000000000cbbff5200000000000cb3fe8600000000000cb3fc9000000000000cb3fd6a00000000000cb3fe7a00000000000cb3ff6a00000000000cb3ff3800000000000cb3fe4a00000000000cbbfef800000000000cbbfc1a00000000000a13483a46e616d65aa5265636f726454797065a7636f6e74657874a0a9656d62656464696e67dc0400cbbfd2000000000000cb3fdcc00000000000cb3feaa00000000000cb3fe9800000000000cbbfe9000000000000cbbfc2200000000000cbbfb5e00000000000cb3fe2200000000000cb3ff9a00000000000cb3fd3000000000000cb3ff7000000000000cb3fd0e00000000000cbbff1000000000000cb3fd5000000000000cb3fe1c00000000000cb4000600000000000cb3ff6a00000000000cb3fc6e00000000000cb3fe8600000000000cb3ff5e00000000000cbc003c00000000000cbbfd7c00000000000cb3ff4c00000000000cb3ff0a00000000000cb3fe0000000000000cbbfa1200000000000cbbfc8400000000000cb3ff4200000000000cbbfd7e00000000000cb3feac00000000000cbbfa7c00000000000cb3ff4400000000000cbbfd4800000000000cbbfe9200000000000cbbfe5400000000000cbbfe4000000000000cbbfd3c00000000000cb3fb3400000000000cb3ff0e00000000000cbbfe5a00000000000cb3ff1200000000000cbbfb1600000000000cbbfe2400000000000cbbffde00000000000cb3ffca00000000000cbbf9c200000000000cbbfeb800000000000cb3fe1e00000000000cbbff7600000000000cbbff0600000000000cbbfe3c00000000000cbbfc3000000000000cb3fcec00000000000cbbfc9200000000000cb3fecc00000000000cbbff9a00000000000cb3fe2800000000000cb3fe3000000000000cb3fcca00000000000cbbfb8800000000000cb3fe1600000000000cb3fe5c00000000000cbbfeb800000000000cbbfd5a00000000000cb3fcbe00000000000cbbfe7200000000000cb3fd0000000000000cb3fd0200000000000cbbff8c00000000000cb3fb6e00000000000cb3fd3800000000000cbbffb200000000000cb3fe3800000000000cb3ff2000000000000cbbff8a00000000000cbbfe0800000000000cbbfe7400000000000cb3fe1a00000000000cbbfd6200000000000cbbfc0a00000000000cb3fee000000000000cb3fd3400000000000cbc005400000000000cb3ff6200000000000cbbfdc000000000000cbbfece00000000000cbbff1800000000000cbbf72000000000000cb3ff5a00000000000cb3ff1200000000000cbbfd0800000000000cb3fcf800000000000cbbfedc00000000000cbbff2800000000000cb3ff2800000000000cb3fa5600000000000cbbfd0200000000000cb3fb7c00000000000cbbfe0000000000000cb3fefe00000000000cb3fe7800000000000cbbfc5600000000000cb4001a00000000000cbbfd2000000000000cbbfad800000000000cb3ffc400000000000cbbfebc00000000000cbbfe7600000000000cb3faf000000000000cbbff4200000000000cbbfe3400000000000cbbfa3c00000000000cb3ff6a00000000000cb3ff4c00000000000cb3fef400000000000cb3ffca00000000000cbbff4e00000000000cb3fe7400000000000cbbfe9000000000000cbbff2e00000000000cb3ffd400000000000cb3fc2c00000000000cb3fdba00000000000cb3faa200000000000cbc002600000000000cb3fd9600000000000cb3fe2e00000000000cb3fdca00000000000cb3fe5000000000000cbc001000000000000cb3fe7000000000000cb3fc7400000000000cb4009400000000000cb3fc2000000000000cb3ffda00000000000cbbfc5a00000000000cb3fe2e00000000000cbbfef000000000000cb3fb8800000000000cb3ffaa00000000000cb3fe7200000000000cb3fee000000000000cb3feca00000000000cbbff8c00000000000cbbff1c00000000000cb3ff4200000000000cbbfe6200000000000cbbfe3c00000000000cbbfdf600000000000cbbfc0400000000000cbbff2600000000000cbbfda400000000000cbbff6600000000000cb3fe6a00000000000cb3ffa800000000000cb3fda000000000000cbbfd1400000000000cb3ff7200000000000cbbff2c00000000000cbbff2a00000000000cbbff0e00000000000cb3fe1a00000000000cb4000a00000000000cbbff6000000000000cb3fe1600000000000cb3fe8e00000000000cbbfd7a00000000000cbbfc3800000000000cbbfff000000000000cb3fe9e00000000000cb3fb0600000000000cb3ff7200000000000cb3fece00000000000cb3fe0200000000000cbbfad800000000000cbbfe0c00000000000cbbffbe00000000000cbbfebc00000000000cb3fec800000000000cbbfe8a00000000000cbbfdf400000000000cb3fe1400000000000cb3feac00000000000cbbff0400000000000cbbfda000000000000cb3fe4400000000000cbbfff000000000000cb3fcf000000000000cb3fc2600000000000cbbff4000000000000cb3f97200000000000cb3ffd000000000000cb3fe2400000000000cb3fae800000000000cbbff2e00000000000cbbfe4600000000000cbbfdf800000000000cbbfe8800000000000cbbff7200000000000cb3fc0e00000000000cb3fe5e00000000000cb3fe3800000000000cb3fddc00000000000cbbfe0e00000000000cbbfe0200000000000cbbfe9800000000000cb3fe7a00000000000cbbfdcc00000000000cbbfd9800000000000cbbff2000000000000cb3ff8000000000000cbbfd6000000000000cb3fc1200000000000cb3fdce00000000000cbbfc1600000000000cb3fcbc00000000000cb3fd4000000000000cb3fe9800000000000cbbfc5600000000000cb3fec800000000000cb3ff0400000000000cbbfd2600000000000cbbfb5600000000000cbbff5e00000000000cbbfd0600000000000cbbfd0200000000000cbbfb6600000000000cbbfde400000000000cb3fe5600000000000cbbfe3000000000000cb3fe0200000000000cb3fe8600000000000cb3f8ba00000000000cb3fa6c00000000000cb3feac00000000000cb3fcec00000000000cb3fe3a00000000000cb3fec800000000000cb3fdaa00000000000cbbfe2200000000000cb3ff0800000000000cb3fd6200000000000cb3fcd000000000000cbbff6a00000000000cbbff7800000000000cbbfc3000000000000cbbff3800000000000cbbfd1e00000000000cbbfe6000000000000cb3ff6200000000000cb3fddc00000000000cb4000c00000000000cb3ff1e00000000000cbc003800000000000cbbfe6200000000000cb3fe1600000000000cb3fdd600000000000cbbff5e00000000000cb3fdd200000000000cbbfe8000000000000cb3fc6200000000000cbbfed200000000000cbbff5000000000000cbbfde200000000000cb3fc2e00000000000cbbfffa00000000000cb3fbd400000000000cb3fd8c00000000000cb3ff1200000000000cbbfef600000000000cb3fe1a00000000000cbbfe9a00000000000cbbfbe200000000000cbbfeb200000000000cb3ff0800000000000cb3ff0e00000000000cb3ffc000000000000cb3fe2400000000000cbbfff000000000000cbbfe5400000000000cb3ffa800000000000cb3fe0c00000000000cb3fb9400000000000cb3ff2600000000000cb3fc8600000000000cbbfe4c00000000000cbbff6a00000000000cbbffc400000000000cbbff8400000000000cbbfa4000000000000cb3fe4200000000000cb3ff6200000000000cbbfef600000000000cb3fd5800000000000cb3fdc000000000000cbc003200000000000cbbfe8a00000000000cbbfa6c00000000000cb3fede00000000000cbbfaea00000000000cb3fe9c00000000000cbbfd6c00000000000cb3ffc200000000000cb3ffb600000000000cbbff4400000000000cb3fe1c00000000000ffcbbfca400000000000cbbff7e00000000000cb3fd1c00000000000cbc003c00000000000cb3fe9400000000000cbbfcf200000000000cbbfd9a00000000000cbbfcaa00000000000cb3fdc400000000000cb3ff3a00000000000cb3fe9a00000000000cb3fd8000000000000cbbff7400000000000cbbfd4a00000000000cb3ff3600000000000cb3fd8000000000000cbbfe4a00000000000cbbfdd400000000000cbbfb5e00000000000cbbfebe00000000000cb3fe8c00000000000cbbfd5a00000000000cb3ff8e00000000000cbbfdc200000000000cbbfdb800000000000fecb3feb800000000000cb3fd5400000000000cbbfc0800000000000cbbfa7600000000000cbbfc6800000000000cb3fc5e00000000000cb3ffca00000000000cbbff8800000000000cb3ff0a00000000000cb3ff0800000000000cbc002c00000000000cb3ff6a00000000000cb3ff0a00000000000cb3fc7a00000000000cb3fdf000000000000cbbfdea00000000000cbbfe0800000000000cb3fb6600000000000cb3fd3400000000000cb4004a00000000000cbbfb3c00000000000cbbfcce00000000000cb3fc0e00000000000cb3fe9000000000000cb3fb4400000000000cb3fd2800000000000cb3fdf200000000000cbbfe7400000000000cbbfe7000000000000cbbfcec00000000000cb3fc0c00000000000cbbff9000000000000cb4001e00000000000cbbffe800000000000cbbfc5000000000000cbbfcc200000000000cbbf85600000000000cb3fd4e00000000000cbbfd4c00000000000cbbfe4400000000000cb3ff5c00000000000cb3fe7600000000000cb3fe5e00000000000cbbfdaa00000000000cb3fe1200000000000cbbffc200000000000cbbffa400000000000cbbff3e00000000000cb3ffe800000000000cbbff5200000000000cb4003000000000000cbbfebe00000000000cbbffc800000000000cbbfcd600000000000cbbfe5000000000000cb3fe1a00000000000cb3fae200000000000cb3ffb200000000000cb3ff2600000000000cbbfe8800000000000cb3fdbc00000000000cbbfc6000000000000cb3ff4200000000000cbbfd7200000000000cbbffa400000000000cb3fe7c00000000000cb3f9dc00000000000cbbfe7e00000000000cb3fefc00000000000cb3febc00000000000cb3fe6000000000000cb3ff2400000000000cbbfe1a00000000000cb3feb400000000000cbbfebc00000000000cb3ff3a00000000000cbbfdb200000000000cb3ff1000000000000cb3fd3400000000000cb3fc1c00000000000cb3fe2800000000000cb3fe7800000000000cbbfe8000000000000cb3ffe200000000000cb3fb2400000000000cb3fc9600000000000cbbff9800000000000cb3fd6200000000000cb3fdae00000000000cb3fe5200000000000cbbfe1a00000000000cb3fd8c00000000000cbbfcd000000000000cbbf98000000000000cbbfe3c00000000000cbbffec00000000000cbbf5f000000000000cbbff6400000000000cb3ff9800000000000cb3ff2000000000000cb3ff6800000000000cb4000e00000000000cbbff3000000000000cbbfacc00000000000cbbfd0c00000000000cbbfbc400000000000cbbf8f000000000000cb3fe6a00000000000cb3ff1600000000000cb3ff5a00000000000cb3ff6600000000000cbbfc9c00000000000cbbffb200000000000cb3ffa600000000000cbbffa200000000000cbbfeb400000000000cb3fe0e00000000000cb3fe6e00000000000cb3fedc00000000000cbbff8600000000000cbbfe9e00000000000cb3fc2800000000000cbbff0600000000000cb4005400000000000cb4001000000000000cb3fe6a00000000000cbc001a00000000000cb3f90800000000000cb3ffa400000000000cbbfd0e00000000000cbbfff800000000000cb4009200000000000cbbfbfc00000000000cb3fe5a00000000000cb3fd4200000000000cbbfd2600000000000cbbff6600000000000cb3fd0200000000000cbbfc0000000000000cb3fe9e00000000000cb3fbd200000000000cbbfa4000000000000cb3fe8400000000000cbbff6800000000000cbbffa600000000000cb3fe3e00000000000cbbfd8400000000000cbbfea600000000000cb3fd5000000000000cb3fe6400000000000cb3fe0e00000000000cbbfe2000000000000cbbfdb200000000000cbbffa600000000000cb3fed600000000000cb3fdb400000000000cbbfdf200000000000cb3fe4e00000000000cb3fdc000000000000cb3ff1800000000000cbbffac00000000000cbbfe3000000000000cb3ffd800000000000cbc001200000000000cb4005400000000000cbbfb2800000000000cbbfcb800000000000cb3fdea00000000000cbc000800000000000cbbff5800000000000cb3ff8e00000000000cbbfe4800000000000cbbfe6c00000000000cbbfdec00000000000cbbfc8400000000000cb3ff9c00000000000cb3fdca00000000000cbbfdf400000000000cb3fcda00000000000cbbfe4800000000000cbbfc7000000000000cbbfe3e00000000000cb3fdaa00000000000cbbfcfa00000000000cb3fe7400000000000cb3fd0000000000000cbbfbd600000000000cb3ff6a00000000000cbbff5000000000000cb3fde400000000000cb3fe7c00000000000cbbffdc00000000000cbbff5600000000000cb3fea200000000000cb3fd5200000000000cbbfe7800000000000cbbfd7a00000000000cb3fc5a00000000000cb3fe4000000000000cbbfb6e00000000000cbbff5800000000000cbbfe0600000000000cbbfde800000000000cbbfd4c00000000000cbbfcaa00000000000cb3fd5400000000000cb3fe1200000000000cbbfe0400000000000cb3fa8400000000000cb3fd8e00000000000cb3ffb200000000000cb3ffe400000000000cb3fd5c00000000000cbbfe7c00000000000cb3ff1600000000000cb3fb5c00000000000cbbff2a00000000000cbbfe8600000000000cb3ffa200000000000cb3fe7600000000000cbbfc8400000000000cb3fb2e00000000000cbbfa5400000000000cbbffc600000000000cbbfe4000000000000cbbfae200000000000cbbffb600000000000cb3fc7000000000000cbbf9f200000000000cb3fd9e00000000000cbbfa3800000000000cb3ff6a00000000000cb3ff2600000000000cb3fd7a00000000000cbbfe6800000000000cb3ff0800000000000cbbfdce00000000000cb3fe9e00000000000cb3fadc00000000000cb3ff8e00000000000cbbff6600000000000cb3fb4c00000000000cbbff8200000000000cb3ff6600000000000cb3ff1800000000000cbbff3c00000000000cb3feb000000000000cbbff7800000000000cb3fe2200000000000cb3feea00000000000cbbfa0600000000000cbbfbdc00000000000cbc000600000000000cb3fc5a00000000000cb3feee00000000000cbbff5c00000000000cb3fbba00000000000cbbff0200000000000cbbfe3800000000000cb3fe1400000000000cb3feb200000000000cb3fd4a00000000000cb3fce400000000000cbbfa7a00000000000cb3fc1600000000000cbc000c00000000000cbbfd1600000000000cb3fe3800000000000cbc006600000000000cb3fe7e00000000000cbbfde000000000000cbbfeb000000000000cb3fc8600000000000cbbff4600000000000cbbff9600000000000cbbffe400000000000cb3fae000000000000cb3ff6c00000000000cb3fe1a00000000000cb3ff7400000000000cbbff9800000000000cbbfdc400000000000cb3fe0c00000000000cb3fe9200000000000cb3fed800000000000cb3fe1600000000000cb3ffe400000000000cbbff4c00000000000cb3ff9c00000000000cbbffd400000000000cbbff7200000000000cbbfe6600000000000cb3fb7a00000000000cbbfee000000000000cbbfbdc00000000000cbbff8400000000000cbbfe0c00000000000cb3fda600000000000cb3fdc800000000000cb3fdf400000000000cb3fe9800000000000cb3fc8800000000000cb3feb400000000000cbbff6a00000000000cbbfe0800000000000cbbff1800000000000cb3fc6c00000000000cbc001600000000000cbbfdbc00000000000cb3fcca00000000000cbbffa200000000000cb3fc8a00000000000cbbfd6400000000000cbc000800000000000cb3fd6600000000000cb3f54000000000000cbbfe4e00000000000cb3fd1a00000000000cb3fbcc00000000000cbbfdaa00000000000cb3fcea00000000000cb3ff7000000000000cbc002200000000000cb3fd0a00000000000cb3fe8000000000000cb3ff5a00000000000cbbfca800000000000cbbfb0200000000000cb3fd5a00000000000cb3fe6800000000000cb3fc1400000000000cbbfc9400000000000cb3fef000000000000cb3fc1000000000000cbbff2800000000000cb3ffaa00000000000cb3fe9800000000000cbbfcce00000000000cbbfed200000000000cb3ffac00000000000cbbff0a00000000000cbbfee200000000000cb3fc4400000000000cb3ff6200000000000cbbfe0800000000000cb3ff5600000000000cbbfef800000000000cb3feb000000000000cbbfd2600000000000cbbfe9400000000000cbbfcf400000000000cbbfe3400000000000cb3fda600000000000cbbfcd800000000000cbbfbe400000000000cbbfe6a00000000000cbbfe4400000000000cbbfec600000000000cb3fda000000000000cbbfc8e00000000000cbbfd9e00000000000cbbfee800000000000cbbff7800000000000cb3fb8600000000000cbbfd9000000000000cb3fad600000000000cbc000400000000000cb3fe0a00000000000cb3ffa000000000000cb3fb9200000000000cb3fe9000000000000cb3ff4a00000000000cb3ff3600000000000cb3fd4400000000000cbbff6800000000000cb3fea600000000000cbbfce200000000000cbbfe5400000000000cbbff2200000000000cbbfdae00000000000cb3ff2200000000000cbbff3c00000000000cb4000600000000000cb3fe0200000000000cb3fe1c00000000000cbbfd8c00000000000cb4002e00000000000cb3ff3000000000000cbbfd3e00000000000cbbfeaa00000000000cbbfe0400000000000cbbff3400000000000cb3ff7200000000000cb3fd2800000000000cbbf8ae00000000000cbbfcee00000000000cbbfe6c00000000000cbbff5200000000000cbbfe3e00000000000cbbfda400000000000cbbfeb400000000000cbbff7400000000000cbbfe8200000000000cb3fe0e00000000000cbbffb000000000000cbbfd4a00000000000cbbfec800000000000cbbff3000000000000cbbfc5e00000000000cbbff8e00000000000cb3ff4c00000000000cbbff2e00000000000cb3fd4200000000000cb3ffb600000000000cbbff1000000000000cb3ff3800000000000cbbff2e00000000000cbbfe3c00000000000cbbff4a00000000000cb3fcd400000000000cb3fbfa00000000000cbbfe6a00000000000cb3f79000000000000cbbfe6000000000000cbbfab200000000000cbbfe7400000000000cbbfe4c00000000000cbbfe1c00000000000cbbff0a00000000000cbbfeb600000000000cb3fc3a00000000000cbbff4c00000000000cbbfb1800000000000cbbffb400000000000cbbfda400000000000cb3ff2000000000000cbbfbb400000000000cbbfc9400000000000cb3fe6a00000000000cb3f91600000000000cbbff0e00000000000cbbfe9e00000000000cbbff2400000000000cbbffda00000000000cb3fdcc00000000000cb3ff1e00000000000cbbff9400000000000cbbfe6c00000000000cbbfe0400000000000cb3ff6e00000000000cb3fe8c00000000000cb3fe9000000000000cbbfc4400000000000cb3fcee00000000000cbbfd1200000000000cb3fd4a00000000000cb3fd4800000000000cb3fd6400000000000cb3fe4600000000000cbbfdaa00000000000cb3ff0800000000000cbbfe7a00000000000cbbff2e00000000000cb3fe8400000000000cbbfc4e00000000000cb3fe4400000000000cbbfe3000000000000cb3fbaa00000000000cbbfeee00000000000cb3fe1200000000000cb3ff3400000000000cbbfe4200000000000cb3fec000000000000cb3fcb000000000000cbbff4c00000000000cb3ffee00000000000cb3fe0000000000000cbbfec400000000000cbbf4c000000000000cbbfd6000000000000cbbfeda00000000000cbbfebe00000000000cb3ffde00000000000cb3fe0800000000000cbbfda200000000000cb3ff7200000000000cbbfc4a00000000000cb3ff0800000000000cb3fb4800000000000cbbfd4000000000000cbbff3400000000000cbbfd6c00000000000cb3fd6000000000000cb3fdc000000000000cbbff1600000000000cb3fc4200000000000cb3fed800000000000cbbfdd800000000000cb4000800000000000cbc000a00000000000cbbfdbc00000000000cbbfd2a00000000000cb3fda000000000000cb3fd5e00000000000cb3fdc400000000000cbbff2e00000000000cbbfedc00000000000cb3fde400000000000cbbfe1c00000000000cb3fe9800000000000cbbff2200000000000cbbfd3200000000000cb3fdfc00000000000cb3fe7000000000000cbbfdd600000000000cbbfe0e00000000000cbbfe9800000000000cbbff9000000000000cb3ff8e00000000000cbbffc200000000000cb3fd2a00000000000cbbff0800000000000cbbfe8c00000000000cbbfe9400000000000cb3fdf200000000000cbbfe2400000000000cb3fe0600000000000cbbfe1200000000000cbbfdc600000000000cb3ffac00000000000cbbfd6a00000000000cb3fdaa00000000000cbbfab200000000000cb3fe9800000000000cb3ffd800000000000cbbfe1600000000000cbbfe1800000000000cbbff1800000000000cb3fd4a00000000000cb3fafc00000000000cb3ffb800000000000cb3fee200000000000cb3feaa00000000000cb3fc0400000000000cbbfe9600000000000cb4000800000000000cb3feb400000000000cb3fa3400000000000cbbfe7c00000000000cbbfe3400000000000cbbfe3800000000000cbbff1000000000000cbbfe3a00000000000cbbfe1e00000000000cb3fd2600000000000cbbfe5c00000000000cb3fe2600000000000cb3fe5200000000000cbbfe5200000000000cbbfe4200000000000cbbff2800000000000cbc003600000000000cbbfec800000000000cb3fd0800000000000cbbf9be00000000000cb3fde800000000000cbbfeb400000000000cb3fb6e00000000000cb3fc4e00000000000cbbfe5800000000000cbbfe4a00000000000cb3fdc800000000000cbbfb2200000000000cb3ffe200000000000cbbff6000000000000cb3feac0000000000002cb3ff2e00000000000cb3ffb000000000000cb3fe9000000000000cb3fe7600000000000cb3fcbc00000000000cbbfc4000000000000cbbffe600000000000cbbfff000000000000cbbfdee00000000000cbbfec000000000000cbbfdae00000000000cb3fe5800000000000cb3fd3c00000000000cbbfb7a00000000000cbbffb000000000000cbbfe0400000000000cb3ff7400000000000cbbfe3a00000000000cbbfd9800000000000cb3fe2800000000000cb3fe2c00000000000cbbfc7e00000000000cb3fd3e00000000000cbbfc6200000000000cb3ff0200000000000cbbff5200000000000cb3fee600000000000cb3ff7c00000000000cbbfed800000000000cb3fed200000000000cbbfe5600000000000cb3fdd400000000000cb3ff1200000000000cbbfe4400000000000cb3fd4200000000000cbbfe1200000000000cbbffc600000000000cb3ff0600000000000cb3fef600000000000cb3fef000000000000cbbff2000000000000cb3fe3000000000000cbbfcfe00000000000fecbbfea200000000000cb3fe6c00000000000cbbfce400000000000cb3ffae00000000000cbbff2400000000000cb3fa9200000000000cb3ffb400000000000cbbfd0600000000000cbbfe4400000000000cbbff9e00000000000cbbfee200000000000cbbfeb400000000000cbbfe3600000000000cb3ff5200000000000cbbff5e00000000000cb3fc7000000000000cb3ff0e00000000000cb3fc7c00000000000cbbfeb000000000000cb3fd2600000000000cb3fad200000000000cbbff8400000000000cbbff4000000000000cb3fcd000000000000cb3fc8000000000000cbbfd7c00000000000cbbfb8a00000000000cb3fe4400000000000cb3ff0600000000000cb4004600000000000cbbfe8600000000000cb3fecc00000000000cb3fe7c00000000000cbbffd000000000000cb3fd4c00000000000cb3fe7a00000000000cb4001400000000000cb3f8bc00000000000cbbfe7600000000000cb3ff7200000000000cb3fefc00000000000cbbfe3200000000000cbbfce600000000000cbbfe3800000000000cb3fe6800000000000cb3ff0c00000000000cb3ff0c00000000000cb3fe5800000000000cb3fe7a00000000000cb3fba200000000000cbbfdec00000000000cb3fd8200000000000cbbfb7800000000000cb3fb0c00000000000cbbfe1a00000000000cb3fe1a00000000000cbbfc2e00000000000cb3ff7c00000000000cbbffdc00000000000cb3fe6000000000000cbbfd7600000000000cbbfd8200000000000cb3fa6400000000000cbbfcc600000000000cb3ff4e00000000000cb3febc00000000000cb3ff4200000000000cb3fc8800000000000cbbfe9200000000000cb3fd1e00000000000a13583a46e616d65aa5072696365626f6f6b32a7636f6e74657874a0a9656d62656464696e67dc0400cb3fb5c00000000000cb3fd8e00000000000cb3feac00000000000cb3fe9800000000000cbbfdae00000000000cb3fc6200000000000cb3fe9800000000000cb3ff0e00000000000cbbfc6c00000000000cb3ff3a00000000000cb3ff0c00000000000cb3fca000000000000cbbff3000000000000cbbfbac00000000000cb3fe2c00000000000cb3fe3000000000000cb3fe9000000000000cb3fe3200000000000cb3ff4200000000000cb3fefc00000000000cbc005600000000000cbbfe3000000000000cb3ffb600000000000cb3ff7c00000000000cb3fd9400000000000cbbfc0000000000000cbbfe8000000000000cb3ffa000000000000cbbfe6c00000000000cb3ffb600000000000cb3fea400000000000cb3fda600000000000cbbfe0c00000000000cbbfe5000000000000cbbfde200000000000cb3fcaa00000000000cbbfe3000000000000cb3fec000000000000cb3fe3600000000000cbbff4200000000000cb3fea400000000000cb3f91000000000000cbbfea200000000000cbbff0c00000000000cb3ff1a00000000000cbbfeb000000000000cbbfe8800000000000cb3fd8c00000000000cb3f9a000000000000cbbfd1000000000000cbbff3000000000000cbbfe5400000000000cbbfc8000000000000cb3fb7600000000000cb3ff4000000000000cbbff5a00000000000cbbfd0c00000000000cb3fdf600000000000cb3fcd000000000000cbbff0e00000000000cb3ff9600000000000cb3fd3a00000000000cbbfe3e00000000000cb3fc8c00000000000cb3fed400000000000cbbfdc600000000000cbbfa5800000000000cb3f80000000000000cbbff4000000000000cbbfc7e00000000000cb3fce000000000000cbbff8400000000000cb3fe7200000000000cb3ff5a00000000000cbbffac00000000000cbbfab800000000000cbbfd2400000000000cb3fee000000000000cbbfe7000000000000cb3feb800000000000cb3ff0c00000000000cb3fc6400000000000cbc000400000000000cb3ffa200000000000cbbfec000000000000cb3ff1400000000000cbbfe4400000000000cbbff5a00000000000cb3fe5800000000000cb3fcfc00000000000cb3fbfa00000000000cb3fef800000000000cbbfbd200000000000cbbff3400000000000cb3ff5800000000000cbbfd6c00000000000cb3fd9a00000000000cbbfee800000000000cbbfd2800000000000cb3fee000000000000cb3ff4a00000000000cb3ff2000000000000cb3ffb400000000000cb3fb8800000000000cbbfdb600000000000cb3ff2200000000000cbbfe2800000000000cb3fe0a00000000000cb3ff5800000000000cbbffb600000000000cbbff0800000000000cb3fe1e00000000000cb4000c00000000000cb3feec00000000000cb3fe9a00000000000cb3ff6e00000000000cbbfdc000000000000cb3ff6400000000000cbbfe0800000000000cbbff3e00000000000cb3ff1a00000000000cbbfbcc00000000000cb3ff1800000000000cbbfc3e00000000000cbbff6600000000000cbbfe1600000000000cb3fe2800000000000cb3fe2c00000000000cb3fe5c00000000000cbc002a00000000000cbbfe5600000000000cb3fe2e00000000000cb3fffe00000000000cb3fdb000000000000cb3ff5200000000000cb3fe5a00000000000cbbfbbc00000000000cbbff7200000000000cbbfeb800000000000cb3ff9800000000000cb3fcf400000000000cb3fdd400000000000cb3ff6e00000000000cbbfeee00000000000cbbfe4400000000000cb3fe4e00000000000cbbfd0e00000000000cbbff0800000000000cb3fb0000000000000cb3fdd600000000000cbbfeda00000000000cbbfc8a00000000000cbbfb1c00000000000cb3ff1c00000000000cb3ff0e00000000000cb3ff1200000000000cbbff2200000000000cb3feca00000000000cbbff0800000000000cbbfe6a00000000000cbbff0600000000000cb3fd8800000000000cb3ff1200000000000cbbfe9000000000000cb3fe0e00000000000cb3fda000000000000cb3fc3e00000000000cbbff4000000000000cbbfeac00000000000cb3ff6000000000000cb3feb400000000000cb3ff3600000000000cb3fee600000000000cb3ff3c00000000000cbbfe3c00000000000cbbfe9400000000000cbbffb800000000000cbbfaf200000000000cb3feb600000000000cbbff0a00000000000cbbfeb800000000000cb3fe1200000000000cb3fec800000000000cbbffa800000000000cb3fd5800000000000cb3fe6600000000000cbbff4800000000000cb3fd8a00000000000cbbfd8200000000000cbbff9000000000000cbbff1600000000000cb3feaa00000000000cb3feec00000000000cb3fce200000000000cbbff5a00000000000cb3ff0c00000000000cbbfa7c00000000000cbbfec600000000000cbbfec000000000000cb3fd3e00000000000cb3fe8a00000000000cb3fe7800000000000cb3fe8e00000000000cb3fd3c00000000000cbbff3a00000000000cb3faa800000000000cbbf74c00000000000cbbff0800000000000cb3fe2e00000000000cbbfe1600000000000cb3ffae00000000000cbbff7000000000000cb3fecc00000000000cb3fd3000000000000cbbfd1400000000000cb3fcca00000000000cbbfc0a00000000000cb3ff9600000000000cbbfe4a00000000000cb3ff0e00000000000cb3fe9400000000000cbbfe6a00000000000cbbfec400000000000cbbff4800000000000cbbfe1c00000000000cb3fe5400000000000cbbfd8600000000000cb3fdaa00000000000cbbfb8600000000000cbbfcf000000000000cb3fe3800000000000cbbfdb000000000000cbbfc2000000000000cb3fd6e00000000000cb3ff4000000000000cb3fe3a00000000000cb3fe8400000000000cb3fc2200000000000cb3ff1600000000000cbbfaa800000000000cb3ff3400000000000cbbfd4c00000000000cb3fd9600000000000cbbff6a00000000000cbbfe3000000000000cb3fd6600000000000cbbff2400000000000cbbfefa00000000000cbbff6200000000000cb3ffb400000000000cb3fd0600000000000cb3ff6200000000000cb3fe0400000000000cbbffa000000000000cbbfed000000000000cb3ff2400000000000cbbfcb200000000000cbbfe3800000000000cb3fdbc00000000000cbbff5400000000000cb3fc4600000000000cbbfa8800000000000cbbfe9000000000000cbbfd7200000000000cbbfe3a00000000000cbbff5c00000000000cbbfda400000000000cb3ff4000000000000cb3fefa00000000000cbbfc7c00000000000cbbfd7000000000000cbbfe6c00000000000cb3fdac00000000000cbbff4000000000000cb3feee00000000000cb3ff3000000000000cb3ff4600000000000cb3fe3200000000000cbbff4600000000000cbbfe9000000000000cb3ff7000000000000cb3fe2400000000000cbbfc0e00000000000cb3ff3800000000000cbbfb2c00000000000cbbfcea00000000000cbbfe8400000000000cbbff1200000000000cbbff3e00000000000cb3fd6800000000000cb3ff7600000000000cb4000c00000000000cbbfea600000000000cbbfce600000000000cbbff3800000000000cbc002800000000000cbbfc0600000000000cb3fdd600000000000cb3ffbc00000000000cb3fe4600000000000cb3ff3600000000000cbbfed200000000000cb3ff8a00000000000cb3ff0a00000000000cbbff5200000000000cb3fdca00000000000cbbfec000000000000cbbfe4c00000000000cbbff6400000000000cb3fd1000000000000cbc007200000000000cb3fef000000000000cbbfd1e00000000000cb3fa2e00000000000cbbfc8a00000000000cb3ff5a00000000000cb3fe6c00000000000cb3ff9600000000000cbbff0600000000000cbbffe600000000000cbbfb8600000000000cb3fecc00000000000cb3fde000000000000cbbfe3c00000000000cb3fc4800000000000cb3fc1400000000000cbbfe4800000000000cb3fbee00000000000cbbfe4600000000000cb4005000000000000cbbfd9c00000000000cbbfe0200000000000cbbffb600000000000cb3fefc00000000000cb3fc7e00000000000cb3fe9200000000000cb3fd4000000000000cb3fe3400000000000cb3fdb000000000000cb3ff7600000000000cbc000800000000000cb3fb6800000000000cb3fb5a00000000000cbc005a00000000000cb3fc3c00000000000cbbfc1400000000000cb3fe1000000000000cb3fe0600000000000cbbfde200000000000cbbff3400000000000cb3f72000000000000cb3fcde00000000000cb400a600000000000cb3fd0a00000000000cbbfeb200000000000cbbfac800000000000cb3fed000000000000cb3fe0a00000000000cb3fec400000000000cb3fb5c00000000000cbbfd1400000000000cbbfc0400000000000cb3fd6000000000000cbbfb1c00000000000cbbff9a00000000000cb3fff400000000000cbbff2400000000000cbbfe5e00000000000cbbfd5e00000000000cbbff0800000000000cb3fe0e00000000000cb3fcaa00000000000cbbfe7600000000000cb3ff4e00000000000cb3fd8400000000000cb3ff5a00000000000cbbf64000000000000cb3ff3000000000000cbbffc800000000000cbbff0c00000000000cbbfe6e00000000000cb3ffcc00000000000cbbff8400000000000cb3ffce00000000000cbbfbe400000000000cbbff5200000000000cbbfea800000000000cb3fd4a00000000000cb3fd4e00000000000cbbfa9a00000000000cb3fec400000000000cb3ff5a00000000000cb3fb0600000000000cb3fea000000000000cbbfe6a00000000000cb3fc2000000000000cbbfd9800000000000cbbfe7400000000000cb3fd4c00000000000cbbfd0200000000000cb3fd6200000000000cb3fda000000000000cb3fe8200000000000cb3fe1800000000000cb3ff8600000000000cbbfe2200000000000cb3fe8600000000000cb3fd4200000000000cb3ff2e00000000000cbbfeca00000000000cbbfda400000000000cbbfd7000000000000cb3fde600000000000cbbf97800000000000cbbfba000000000000cbbfb9400000000000cb3ff2c00000000000cb3fed400000000000cbbfb1000000000000cbbff4800000000000cb3fe7200000000000cb3fe4800000000000cb3ff5200000000000cbbfcca00000000000cb3fa2e00000000000cb3f94e00000000000cb3fdf000000000000cbbf8fc00000000000cbc003200000000000cb3fda800000000000cbbffda00000000000cb3ffd400000000000cb3ff3800000000000cb3ff1400000000000cb3ffda00000000000cbbfcf400000000000cb3fdfc00000000000cbbfe0c00000000000cbbfe3a00000000000cbbfd6600000000000cb3fc5000000000000cb3fcf000000000000cb3ff4000000000000cb3feb000000000000cb3fd2800000000000cbbffee00000000000cb3ffa600000000000cbbff9800000000000cbbfd6a00000000000cb3fe0600000000000cb3feaa00000000000cb3fa5a00000000000cbbff7400000000000cbbfe1a00000000000cbbfd5e00000000000cbbff6600000000000cb3ff9800000000000cb3ff8800000000000cb3ff5000000000000cbc002600000000000cb3fe2600000000000cb3fe0c00000000000cbbfd5200000000000cbbffcc00000000000cb4003600000000000cb3ff0600000000000cbbfcc200000000000cbbfb3400000000000cbbffb400000000000cbbff6000000000000cbbfeac00000000000cb3fdbe00000000000cb3fe8200000000000cb3fe1600000000000cbbfcf600000000000cb3fed800000000000cbbff9200000000000cbbff3000000000000cb3fed600000000000cbbfe3400000000000cbbff6800000000000cb3f8a800000000000cb3fe3a00000000000cb3fe5200000000000cbbfe3a00000000000cbbfe4000000000000cbbff0200000000000cb3fda800000000000cb3fbfe00000000000cbbfb8c00000000000cbbfc7e00000000000cb3feb800000000000cb3fe9a00000000000cbbff9000000000000cbbfe0400000000000cb3ffc600000000000cbc001400000000000cb4005800000000000cbbfc3e00000000000cb3fdfa00000000000cb3fe5800000000000cbc000600000000000cbbff0a00000000000cb3ff9600000000000cbbfd8200000000000cb3fc2200000000000cbbfe2c00000000000cb3f9fe00000000000cb3fd8a00000000000cbbfe1a00000000000cbbfdca00000000000cb3f86a00000000000cb3fc5000000000000cbbfd2c00000000000cbbfe2a00000000000cb3ff5000000000000cbbfcb000000000000cb3ff6400000000000cb3fc8e00000000000cb3fe6800000000000cb3fe5400000000000cbbff4a00000000000cb3fe4800000000000cb3feba00000000000cbbfec000000000000cbbff3e00000000000cb3fcf400000000000cbbfc9800000000000cbbffc600000000000cb3fd8600000000000cbbfd2a00000000000cb3fe4c00000000000cbbfd8e00000000000cbbff4a00000000000cbbfcf800000000000cbbfcd000000000000cbbff1000000000000cbbfe2200000000000cb3fe0600000000000cb3fdca00000000000cb3fa9a00000000000cbbfc2000000000000cbbfb1e00000000000cb3ff8000000000000cb4000c00000000000cb3fe6e00000000000cbbff6e00000000000cb3fd4000000000000cbbfeec00000000000cbbfd7c00000000000cbbfe4400000000000cb3fea000000000000cb3ff7200000000000cb3fe2000000000000cbbfe0e00000000000cbbfc8000000000000cbbff3000000000000cbbfe6800000000000cbbfb8800000000000cbbffec00000000000cbbfcb800000000000cb3f89c00000000000cb3fc1a00000000000cb3fc9600000000000cb3ff8800000000000cb3ff9c00000000000cbbfdae00000000000cb3fb4800000000000cb3fbe000000000000cbbfc5e00000000000cb3fe6000000000000cb3fda600000000000cb3fd2400000000000cbbfc2a00000000000cb3f9c600000000000cbbff0800000000000cb3fe6400000000000cb3fb7a00000000000cbbff5c00000000000cb3fde800000000000cbbfe3000000000000cb3fc0200000000000cb3ff1800000000000cbbfe1200000000000cbbfcc400000000000cbbff2600000000000cbbfe0200000000000cb3fc8000000000000cbbff0e00000000000cb3fe4e00000000000cbbfe0600000000000cbbfb6000000000000cb3fd0c00000000000cb3ffaa00000000000cb3fd3600000000000cbbfe1400000000000cb3fdbc00000000000cb3fc9c00000000000cbbffbc00000000000cb3fe2000000000000cb3fe6200000000000cbc002c00000000000cb3fea800000000000cbbfe0400000000000cbbfe3600000000000cb3fe0600000000000cbbff0200000000000cbbfe7800000000000cbbffb400000000000cbbf99000000000000cbbfce600000000000cb3ff1200000000000cb3ffec00000000000cbbffd400000000000cb3fa5a00000000000cb3fda600000000000cb3fef200000000000cbbfc6800000000000cb3fdc800000000000cb3fef000000000000cbbffc800000000000cb3feca00000000000cbbff3c00000000000cbbfe8600000000000cbbffd200000000000cbbfc6800000000000cbbfeb400000000000cbbfeaa00000000000cbbffbe00000000000cbbfe7200000000000cb3fe1200000000000cb3ff1000000000000cbbfc1600000000000cb3ff0600000000000cb3fac000000000000cb3fd6c00000000000cbbff3200000000000cbbfc8a00000000000cbbfa6800000000000cb3ff5a00000000000cbc001600000000000cb3ff0a00000000000cb3f90800000000000cbbffb600000000000cb3fe6c00000000000cbbfd0200000000000cbc003e00000000000cb3fc8600000000000cbbfcc600000000000cbbfb0800000000000cb3fb4c00000000000cb3fdc400000000000cb3face00000000000cb3fbc800000000000cb3ff3200000000000cbc002200000000000cb3fbb200000000000cbbff0800000000000cb3ffbc00000000000cbbfe8400000000000cb3fd7a00000000000cb3fd3400000000000cb3fdbc00000000000cbbfe0e00000000000cbbfdea00000000000cb3fbd400000000000cbbfb4c00000000000cbbfc0400000000000cb3ff2c00000000000cb3fe4800000000000cb3feac00000000000cbbfe2000000000000cb3ff4600000000000cbbfb3800000000000cbbfc8000000000000cb3fcea00000000000cb3febe00000000000cbbfe0600000000000cb3ff4200000000000cbbfc7c00000000000cb3fd7800000000000cb3fd3a00000000000cbbfc0200000000000cbbfd9600000000000cbbff5000000000000cb3ff0800000000000cb3fbca00000000000cb3fd1a00000000000cb3fd6c00000000000cbbff2800000000000cbbfecc00000000000cb3f7e000000000000cb3fed800000000000cbbfb9400000000000cbbff6200000000000cbbff8a00000000000cb3fe1a00000000000cbbfe9200000000000cbbfb6800000000000cbbffcc00000000000cbbfa0000000000000cb3ff8c00000000000cb3fd9800000000000cb3ff0400000000000cb3ff0c00000000000cb3ffa600000000000cb3fc7000000000000cbbfd3c00000000000cb3fe8800000000000cbbfdd400000000000cbbfd9e00000000000cbbfefe00000000000cbbfe6400000000000cb3fe7e00000000000cbbfe9400000000000cb3feee00000000000cbbf7d000000000000cb3feba00000000000cbbfd0200000000000cb4006a00000000000cb3fdf800000000000cbbfe2400000000000cbbfd0a00000000000cbbff4000000000000cbbff1a00000000000cb3ffb000000000000cbbfd6200000000000cb3fc3c00000000000cb3fd0800000000000cbbff1000000000000cbbfec000000000000cbbfdf000000000000cb3fcc800000000000cbbfed400000000000cbbfa4000000000000cbbfd6600000000000cb3fe4400000000000cbbff4a00000000000cbbfd4200000000000cbbfe6600000000000cbbfffc00000000000cbbfdcc00000000000cbbff5600000000000cb3ff9600000000000cbbfd7200000000000cb3fa7800000000000cb3fecc00000000000cbbffe600000000000cb3ff8400000000000cbbfefa00000000000cbbff0200000000000cbbff8600000000000cb3fcce00000000000cb3fc1400000000000cbbfdb800000000000cb3fe0a00000000000cbbff0e00000000000cbbfdb800000000000cbbfeca00000000000cbbfe6200000000000cbbfe8400000000000cbbff4000000000000cbbffc000000000000cb3ff4400000000000cb3fb3e00000000000cb3fe0400000000000cbbff6200000000000cbbfe8400000000000cb3ff3e00000000000cb3fcd600000000000cbbfe3000000000000cb3ff2000000000000cbbff4000000000000cbbff7c00000000000cbbfd8800000000000cbbfe9800000000000cbbff9e00000000000cb3fb5000000000000cb3ff5e00000000000cbbff8e00000000000cbbff2400000000000cbbfed200000000000cb3ff4000000000000cb3fe8a00000000000cb3fe8a00000000000cbbfe8800000000000cbbfe4800000000000cbbfdb000000000000cb3fd4800000000000cb3f9a400000000000cb3fd5200000000000cb3fef200000000000cbbfd9800000000000cb3fee200000000000cbbff1200000000000cbbfd2e00000000000cb3fe9e00000000000cbbfe1800000000000cb3ff0200000000000cbbfc6400000000000cb3fd6400000000000cbbfd0c00000000000cb3fe2800000000000cb3ff7a00000000000cbbfe2600000000000cb3ff0e00000000000cb3ff2000000000000cbbfd8800000000000cb3fff000000000000cb3feaa00000000000cbbff3a00000000000cbbfd3000000000000cbbfea200000000000cbbfed600000000000cbbff0200000000000cb3ff2200000000000cb3ff5000000000000cb3fe2a00000000000cb3ff1800000000000cbbfdfe00000000000cb3ff7c00000000000cbbff2200000000000cbbfcd400000000000cbbfc9c00000000000cbbfe9000000000000cb3fb0e00000000000cb3fec400000000000cbbff5e00000000000cbbfe7a00000000000cb3fe9a00000000000cbbfd9600000000000cb3ffd600000000000cbbff4800000000000cbbfe0800000000000cbbfeee00000000000cb3ff1c00000000000cbbfe6800000000000cb3fe1200000000000cbbff8800000000000cb3fc3a00000000000cb3fe8a00000000000cb3fa5200000000000cb3ff2000000000000cbbfbde00000000000cb3fde200000000000cb3fd8c00000000000cb3fd9600000000000cbbfbbc00000000000cbbfde200000000000cbbfb8600000000000cbbfb1600000000000cb3ff8000000000000cbbfdb800000000000cbbfd0a00000000000cbbfede00000000000cbbfdfa00000000000cbbfe3200000000000cb3fe8c00000000000cbbfe8400000000000cb3febe00000000000cbbfe2c00000000000cb3fe9800000000000cb3ff5000000000000cbbfc1800000000000cbbfd8a00000000000cbbfe5a00000000000cb3fe0800000000000cb3ff3e00000000000cbbfed400000000000cbbfe7400000000000cbbff6c00000000000cb3ff6c00000000000cb3fd3200000000000cb3ff8200000000000cb3feb600000000000cb3f5c400000000000cb3fd8e00000000000cbbff4600000000000cb3fe5000000000000cb3ff7c00000000000cbbfe2000000000000cbbff6800000000000cbbfc2000000000000cbbfe1000000000000cb3fd9000000000000cb3fd2200000000000cbbfd7c00000000000cb3fe7800000000000cb3fc2600000000000cb3fe7c00000000000cb3fd7000000000000cbbfe2400000000000cbbff2400000000000cbbfd4600000000000cbc003400000000000cb3fd4400000000000cb3fd5400000000000cbbfcf800000000000cb3fd2400000000000cbbfda800000000000cbbfd5600000000000cb3fe4600000000000cbbff0400000000000cb3fbac00000000000cb3fd6200000000000cbbfde600000000000cb4002600000000000cbbff2e00000000000cb3fefc00000000000cb3ff5800000000000cb3feb800000000000cb3fee400000000000cb3fe6600000000000cb3fe2e00000000000cbbfe1600000000000cbbfd9600000000000cbbff9c00000000000cbbffd200000000000cbbfef200000000000cbbff7400000000000cbbfdd600000000000cb3fee200000000000cb3fde000000000000cb3fe2400000000000cbbff3c00000000000cbbff1800000000000cb3fd2e00000000000cbbfb4e00000000000cbbfd6400000000000cb3feb400000000000cb3fe9600000000000cb3feaa00000000000cbbfd5c00000000000cb3ff2200000000000cb3ff0600000000000cbbfdba00000000000cb3ff7e00000000000cb3feae00000000000cbbfea400000000000cb3ff8800000000000cb3f92800000000000cb3fd5000000000000cb3fe7c00000000000cbbfee000000000000cbbfbe400000000000cb3ff5000000000000cbbffba00000000000cb3ff1600000000000cbbfd6000000000000cb3fe2000000000000cbbfe0a00000000000cb3fed400000000000cb3fe4200000000000cbbff3a00000000000cbbfd6a00000000000cb3fca800000000000cbbfea000000000000cb3ffe800000000000cbbffc600000000000cb3fc8800000000000cb3fe4e00000000000cbbfb4e00000000000cbbfc6000000000000cbbfff400000000000cbbff2600000000000cbbff0600000000000cbbfde400000000000cb3ff9800000000000cbbff3c00000000000cb3fd5c00000000000cb3ff5200000000000cbbfc6800000000000cbbff9400000000000cbbfb8800000000000cb3fe0a00000000000cbbfee000000000000cbbff7000000000000cbbfec200000000000cb3fd8c00000000000cbbfb3400000000000cbbfd8600000000000cb3ff7200000000000cb3ffde0000000000002cbbfdf800000000000cb3fc4200000000000cbbfe2000000000000cbbfed000000000000cb3fd9600000000000cb3ff4000000000000cb3ff9200000000000cb3fe7c00000000000cbbffe000000000000cb3ff5c00000000000cb3fd4200000000000cb3fd1c00000000000cbbfc5000000000000cbbfdda00000000000cb3feba00000000000cb3ff0600000000000cb3fdb000000000000cb3fd1a00000000000cb3fe5e00000000000cb3fdb800000000000cb3fd3800000000000cb3fde200000000000cbbfe0600000000000cbbf88400000000000cbbff5800000000000cb3fdd000000000000cbbfc4400000000000cb4001a00000000000cbbff6400000000000cbbf8b000000000000cbbff1200000000000cb3fdfe00000000000cb3fd0c00000000000cbbfc0e00000000000cb3ff1c00000000000cb3ff8200000000000cb3fe3200000000000cb3fb8e00000000000cbbfefe00000000000cb3fe5400000000000a13683a46e616d65aa4174746163686d656e74a7636f6e74657874a0a9656d62656464696e67dc0400cb3feb000000000000cbbfdae00000000000cb3ffbe00000000000cb3fe1c00000000000cbbfe3800000000000cbbfb9600000000000cbbfa3600000000000cb3fe7e00000000000cb3fda000000000000cb3ffb400000000000cb3fe5c00000000000cbbfe4c00000000000cbbff1a00000000000cb3fdbe00000000000cb3fd9e00000000000cb3ffbc00000000000cb3fd6400000000000cb3febc00000000000cb3fe8600000000000cb3fa5c00000000000cbc002000000000000cbbfd9c00000000000cb3ffe600000000000cb3ff6600000000000cbbfcb600000000000cbbfbbe00000000000cbbff2600000000000cb3ffe800000000000cbbfe4000000000000cb3fe9c00000000000cbbfb5e00000000000cb3ff1400000000000cb3fd9600000000000cbbfd3a00000000000cbbfe3c00000000000cbbfdc200000000000cbbfe6800000000000cb3fe6600000000000cb3fe3800000000000cbbfebc00000000000cb3ff6c00000000000cbbfbe800000000000cbbff1000000000000cbbff9c00000000000cb3ff6400000000000cbbff2600000000000cbbffb200000000000cbbfc6000000000000cbbfe5200000000000cbbfeac00000000000cbbfe5200000000000cbbfe9200000000000cbbfc7e00000000000cbbfdce00000000000cb3fe9c00000000000cbbffe400000000000cbbfc8400000000000cb3ff1800000000000cbbfc0200000000000cbbfdf400000000000cb3ff0400000000000cb3feca00000000000cbbfecc00000000000cbbfe4c00000000000cb3fc8800000000000cbbfee600000000000cb3fd7200000000000cb3fd8800000000000cbbfdde00000000000cbbfdf800000000000cb3fea400000000000cbc000200000000000cb3ff8200000000000cbbfaf800000000000cbbff9000000000000cbbf9a000000000000cbbfebe00000000000cb3fef600000000000cbbff4400000000000cbbfc4000000000000cb3fe8200000000000cbbfc5600000000000cbc00ae00000000000cb3ff5400000000000cbbfdae00000000000cb3ff1000000000000cbbfefa00000000000cbbff5a00000000000cb3ff1000000000000cbbfd1400000000000cb3fd7c0000000000001cbbfe2200000000000cbbffdc00000000000cb3ff8e00000000000cb3fc7a00000000000cbbfe2400000000000cb3fd8600000000000cbbff3c00000000000cb3fe6c00000000000cb3ffce00000000000cb3ff9200000000000cb3ffe600000000000cbbfb7c00000000000cbbfeb200000000000cb3ff7200000000000cbbfe5800000000000cbbf9fe00000000000cb3fd4200000000000cbbfe5e00000000000cbbfd1a00000000000cb3fec600000000000cb4001000000000000cb3fde600000000000cbbfba600000000000cb3fe8600000000000cbbff3400000000000cb3fe9200000000000cb3fc9a00000000000cbbfd6000000000000cb3ff8000000000000cb3fd3000000000000cb3fe6c00000000000cbbfdf600000000000cbbffca00000000000cbbfe4000000000000cb3feb200000000000cb3fe9600000000000cb3fe8c00000000000cbbff4e00000000000cbbfc4e00000000000cb3fd2000000000000cb3ffec00000000000cb3fb5a00000000000cb3ffca00000000000cbbfd1000000000000cbbfe4600000000000cbbfe5000000000000cbbfe7400000000000cb3fe8600000000000cb3fefc00000000000cb3fe3400000000000cb3ff2000000000000cb3faac00000000000cbbfde000000000000cb3ff4e00000000000cbbfa7400000000000cbbff3200000000000cbbf72e00000000000cb3fe3000000000000cbbff6400000000000cbbfe7400000000000cbbff3a00000000000cb3ff4800000000000cb4004000000000000cb3fe4000000000000cbbfebe00000000000cb3ff3c00000000000cbbffba00000000000cbbffb800000000000cbbff0200000000000cbbfc3800000000000cb3ffb600000000000cbbff0200000000000cb3fe6200000000000cb3fe2200000000000cb3fdc400000000000cbbfe9a00000000000cbbff9600000000000cb3feca00000000000cbbfe3c00000000000cb3ffd600000000000cb3fe1000000000000cb3fe5a00000000000cbbfb5800000000000cb3fbf000000000000cbbff5a00000000000cbbfca000000000000cb3ff7800000000000cbbfea600000000000cbbfd6000000000000cb3fedc00000000000cb3fd1c00000000000cbbffae00000000000cb3fe3800000000000cb3feb800000000000cbbff8600000000000cbbfb4e0000000000001cbbff4000000000000cbbfe3400000000000cb3ff9200000000000cb3fdcc00000000000cbbfd7800000000000cbbfeea00000000000cb3fcba00000000000cbbfc0a00000000000cbbfc3400000000000cb3fd5e00000000000cb3fd0a00000000000cb3fe0400000000000cb3ff1a0000000000001cbbfb2800000000000cbbfe7400000000000cbbfee800000000000cb3fcd200000000000cbbff2800000000000cb3fb2200000000000cbbfe0800000000000cb4000200000000000cbbff1000000000000cb3fd9600000000000cbbfd6a00000000000cb3fe2a00000000000cb3f97200000000000cb3fe2600000000000cb3ff5800000000000cb3fcdc00000000000cb3fe7c00000000000cb3fe5c00000000000cbbfeae00000000000cbbfd1400000000000cbbff3800000000000cbbfe4600000000000cb3fbd400000000000cbbfca800000000000cb3fc6200000000000cb3fd8c00000000000cbbfe9400000000000cb3ff0a00000000000cbbfd2400000000000cb3fc7c00000000000cb3fe6200000000000cb3ff5400000000000cbbfcea00000000000cb3ff6200000000000cb3fe7400000000000cb3ff1000000000000cbbfdf600000000000cb3fe8c00000000000cbbfc7400000000000cb3fdea00000000000cbbff4800000000000cbbff8400000000000cb3fd6600000000000cbbffb000000000000cbbfe8600000000000cbbfe9800000000000cb3feb800000000000cbbfe7000000000000cb3fff000000000000cb3fea400000000000cbbffb400000000000cbbff4a00000000000cb3fcde00000000000cb3fea800000000000cbbfb3c00000000000cb3fcb600000000000cbbff1c00000000000cbbfcf000000000000cbbfeb200000000000cbbff1e00000000000cbbfd3200000000000cbbfe3400000000000cbbffc000000000000cbbfd2a00000000000cb3feea00000000000cb3fe9600000000000cbbfd2800000000000cbbfd5200000000000cbbff5000000000000cb3fe4200000000000cbbfe2c00000000000cb3fda800000000000cb3ff5200000000000cb3ff1000000000000cbbfc4c00000000000cbbffa800000000000cbbfe1800000000000cb3ffa800000000000cb3fe6400000000000cbbfb9000000000000cb3ff9200000000000cb3feca00000000000cbbf8d800000000000cbbff3200000000000cbbff2000000000000cbbfee400000000000cb3fe2200000000000cb3fe7a00000000000cb3ffae00000000000cbbff3c00000000000cb3fdb600000000000cbbfc8400000000000cbc002a00000000000cb3fda000000000000cbbfd1e00000000000cb3ffa400000000000cb3fd9800000000000cb3feb600000000000cbbfe0400000000000cb3ffb800000000000cb3fe4c00000000000cbbff6000000000000cb3fee000000000000cbbff2000000000000cb3fdd000000000000cbbffa400000000000cb3fcb800000000000fdcb3fcaa00000000000cb3fb4e00000000000cbbfa5e00000000000cb3fd3e00000000000cb3feb800000000000cb3fd2e00000000000cb3ffe800000000000cbbfcfc00000000000cbbff3400000000000cb3fe5400000000000cb3fc4400000000000cb3fd9200000000000cbbfe1a00000000000cbbfc7200000000000cb3fea200000000000cbbfc0e00000000000cb3fea200000000000cbbfe5800000000000cb4001a00000000000cbbfd3800000000000cbbfe0c00000000000cbbff7600000000000cb4001400000000000cbbfe0800000000000cbbfd5e00000000000cb3fd4c00000000000cb3fcba00000000000cbbfaa000000000000cb3ff3000000000000cbc001800000000000cb3fb6200000000000cb3fe6600000000000cbc001600000000000cb3ff8200000000000cbbfe3000000000000cb3feae00000000000cb3fd7a00000000000cb3fe3c00000000000cbbff1e00000000000cb3fd7c00000000000cbbfb6000000000000cb3ffee00000000000cb3fc9600000000000cbbf7a000000000000cbbf65800000000000cb3ff4400000000000cb3fc1400000000000cb3ff5400000000000cbbfa0600000000000cbbfea000000000000cb3f98600000000000cbbfd9800000000000cb3fab800000000000cbbff1400000000000cb3ff5e00000000000cbbff9e00000000000cbbfdae00000000000cbbfe7600000000000cb3fbe000000000000cb3ff4e00000000000cb3fa8400000000000cbbfc8e00000000000cb3ff1200000000000cb3fe6400000000000cb3ff6000000000000cbbfda200000000000cb3fe4e00000000000cbbffb800000000000cbbff4c00000000000cbbfdc000000000000cb3ff4600000000000cbbff4a00000000000cb4002a00000000000cb3fe6000000000000cbbff4c00000000000cbbfedc00000000000cb3fc9800000000000cb3fe2a00000000000cb3fb1000000000000cb3fe8000000000000cb3fef400000000000cbbfe5800000000000cbbfe2800000000000cbbfe0200000000000cb3fd0800000000000cb3fd9a00000000000cbbfef600000000000cbbfbb000000000000cbbfdac00000000000cb3fd5000000000000cb3ff9600000000000cb3feac00000000000cb3fd1a00000000000cb3ff7600000000000cbbff0200000000000cb3ff3400000000000cbbfe6200000000000cb3ff1400000000000cbbff0c00000000000cb3ff6800000000000cb3fd2e00000000000cb3fe2e00000000000cb3fed200000000000cb3ff3000000000000cbbff2c00000000000cb3ff1000000000000cb3fe1000000000000cb3fdb800000000000cbbfef800000000000cb3ff3c00000000000cb3fbcc00000000000cb3ff5200000000000cbbfe9600000000000cb3fdae00000000000cbbfc7200000000000cb3fbac00000000000cb3fc8400000000000cbc000c00000000000cb3fe4c00000000000cbbffea00000000000cb3ffc800000000000cb3fff200000000000cb3ffd800000000000cb3ff5000000000000cbbfe8a00000000000cb3ff0400000000000cb3fc5800000000000cbbff3a00000000000cbbff3000000000000cb3fabe00000000000cb3fdb000000000000cb3fec800000000000cb3ff2200000000000cbbfcd600000000000cbc006000000000000cb3fef800000000000cbbff9000000000000cbbfec200000000000cb3fe1000000000000cb3fedc00000000000cbbfbcc00000000000cbc001000000000000cbbfee600000000000cbbfe4200000000000cbbfe0e00000000000cb4000c00000000000cb3fffe00000000000cb3ff0e00000000000cbc006600000000000cb3f99a00000000000cb3fee400000000000cbbfc6800000000000cbbff6600000000000cb4004e00000000000cb3fdde00000000000cbbfe3600000000000cbbfeae00000000000cbbfd9c00000000000cbbff2c00000000000cbbfe2e00000000000cb3ffa200000000000cb3fb8600000000000cb3ff1600000000000cbbfd3800000000000cb3fe0200000000000cbbff6800000000000cbbff9600000000000cb3fcc600000000000cb3fd3400000000000cbbfe5a00000000000cbbfd5200000000000cb3ff5000000000000cb3fc0000000000000cbbff3800000000000cbbfb3e00000000000cbbff5e00000000000cb3fe8200000000000cb3fe7200000000000cbbfd6200000000000cb3fdb000000000000cb3fd1800000000000cb3ffa400000000000cbc001c00000000000cbbfd3000000000000cb3ff6e00000000000cbbff6200000000000cb4007600000000000cbbfda800000000000cbbfcaa00000000000cb3fb2400000000000cbbff3c00000000000cbbfe4800000000000cb4003400000000000cbbff6000000000000cbbfeb200000000000cbbfeaa00000000000cb3fe6c00000000000cb3fef200000000000cbbfc6400000000000cbbfe7800000000000cbbfc4400000000000cbbfe1200000000000cbbfde800000000000cbbff4600000000000cb3fe4a00000000000cb3ff2a00000000000cb3ff2200000000000cbbfb4600000000000cb3fd8e00000000000cb3ff1600000000000cbbfdfa00000000000cb3ff2000000000000cb3fede00000000000cbbff2200000000000cbbff5800000000000cb3fe6c00000000000cb3fd4200000000000cbbffa000000000000cb3fec000000000000cbbf9bc00000000000cb3feae00000000000cb3fe1000000000000cbbff8e00000000000cb3fd2000000000000cbbfc2600000000000cb3fbd000000000000cbbfe5000000000000cb3feec00000000000cb3fd5c00000000000cbbfefc00000000000cb3fc7e00000000000cb3fbf400000000000cb4001600000000000cb3ff8e00000000000cbbf50800000000000cbbfebc00000000000cb3fe7e00000000000cbbfb9e00000000000cb3fad800000000000cbbfe9400000000000cb3fe8600000000000cb3ff1200000000000cb3fd9000000000000cb3fd2200000000000cbbfd7600000000000cbbff2400000000000cb3fc1a00000000000cb3f87e00000000000cbc002400000000000cb3fcac00000000000cbbfdac00000000000cbbfda600000000000cb3f82000000000000cb3febc00000000000cb3ff3e00000000000cb3fe7e00000000000cbbfdac00000000000cb3fe7400000000000cb3fc9000000000000cb3fe5400000000000cb3fe3c00000000000cbbfe2800000000000cbbfd1c00000000000cb3fa6a00000000000cbbfd9c00000000000cb3ff0800000000000cbbfc4400000000000cbbff5a00000000000cb3ff3200000000000cbbfe5a00000000000cb3fc0200000000000cb3ff5000000000000cbbfee400000000000cbbfd1600000000000cbbfff200000000000cbbfe3400000000000cb3fe0c00000000000cb3f89000000000000cbbfd2400000000000cb3fd3800000000000cbbfdde00000000000cbbfcc200000000000cb3fec400000000000cbbfd1000000000000cbbf8ea00000000000cb3fd8000000000000cb3fe6600000000000cbbffb400000000000cb3fd9000000000000cb3fe1a00000000000cbc004400000000000cb3ff1e00000000000cbbff3e00000000000cbbfd8200000000000cb3fca600000000000cbbfdfe00000000000cbbff3800000000000cbbffe000000000000cb3fe4200000000000cbbfafc00000000000cb3fe4200000000000cb3fe0600000000000cbbffaa00000000000cbbf95000000000000cb3fe2400000000000cb3fdee00000000000cb3fb0c00000000000cb3fe3400000000000cb3fe2000000000000cbbff8a00000000000cb3ff5400000000000cbbff8400000000000cbbfde000000000000cbbf9b200000000000cbbfb1800000000000cbbfed000000000000cbbfde200000000000cbbff3600000000000cb3fd4a00000000000cb3fda800000000000cb3fb3800000000000cb3fd6600000000000cb3ff2c00000000000cbbfec800000000000cbbfb2a00000000000cbbfdee00000000000cbbfcc000000000000cbbfcec00000000000cb3fdf200000000000cbc000c00000000000cb3fba000000000000cb3fda200000000000cbbff5400000000000cb3ff1a00000000000cbbfe7600000000000cbbffea00000000000cb3ff2200000000000cbbfae800000000000cb3fd8000000000000cbbfcaa00000000000cb3fe2e00000000000cbbfcf400000000000cb3fe9600000000000cb3ff3e00000000000cbbffc600000000000cb3ff6e00000000000cbbfd4400000000000cb3ff2e00000000000cbbfe6c00000000000cb3fdc800000000000cbbfc7800000000000cb3fec600000000000cbbfc0400000000000cbbfe9c00000000000cb3ff0200000000000cbbfc4400000000000cb3fc7c00000000000cb3ff3000000000000cb3ff0800000000000cbbfecc00000000000cbbfb1800000000000cb3ff5c00000000000cb3fd1c00000000000cbbfd5200000000000cb3fb5800000000000cb3ff7200000000000cb3fae000000000000cb3fe0400000000000cbbfe7600000000000cb3f92000000000000cb3fc8000000000000cbbfe4200000000000cbbfcb000000000000cbbfce800000000000cb3fedc00000000000cbbfebc00000000000cb3fc0800000000000cbbfea600000000000cbbfdda00000000000cbbfd2800000000000cb3fd3800000000000cbbf8e000000000000cbbfe0200000000000cbbfe9800000000000cbc001600000000000cb3fe3e00000000000cbbfe6400000000000cbbfcd400000000000cbbfec400000000000cb3fce400000000000cb3ff1200000000000cb3fcf200000000000cb3fec600000000000cb3ff4400000000000cb3ff2800000000000cb3fcb400000000000cbbff1600000000000cbbfe0800000000000cb3fbfc00000000000cbbfc0200000000000cbbff6c00000000000cbbfe6600000000000cb3ff4000000000000cbbfdb200000000000cb3fe7e00000000000cb3fd1a00000000000cb3fe3800000000000cbbfc2600000000000cb400a800000000000cb3ff2a00000000000cbbfce800000000000cb3fe3000000000000cbbffb000000000000cbbfde000000000000cb3fdbe00000000000cbbff0800000000000cb3fcc400000000000cbbfb3200000000000cbbfe5e00000000000cb3fd0c00000000000cbbfee400000000000cbbff4400000000000cbbff0600000000000cb3facc00000000000cbbff0800000000000cb3ff0800000000000cbbfe4c00000000000cb3fe5a00000000000cbbf6a000000000000cbbffae00000000000cb3fc2a00000000000cbbffa800000000000cb3ff8800000000000cbbff0e00000000000cb3fa5c00000000000cb3ff4200000000000cbc004400000000000cb3fe1800000000000cbbfd7400000000000cbbfe3e00000000000cbc006400000000000cbbfdc000000000000cb3fc1e00000000000cbbfec800000000000cb3fdc800000000000cbbfd1800000000000cbbfc0000000000000cbbfe8600000000000cbbff2a00000000000cbbfe6600000000000cbbfec000000000000cbbfd7000000000000cb3fe8000000000000cbbfd5a00000000000cb3fd6400000000000cbbffc400000000000cbbfcee00000000000cb3ff6e00000000000cb3fd2000000000000cbbfe2600000000000cbbfc5e00000000000cbbff0800000000000cbbff1200000000000cbbff2800000000000cbbff7000000000000cbc000800000000000cb3fef400000000000cb3ff9c00000000000cbbff6000000000000cbbfd7800000000000cbbfe9c00000000000cb3ff4a00000000000cb3ff0400000000000cb3feec00000000000cb3fba800000000000cbbfe3800000000000cbbfd2c00000000000cb3fd8600000000000cb3fbca00000000000cb3fd4600000000000cb3fb6400000000000cb3fc8a00000000000cb3ff3800000000000cbbff8000000000000cbbff6400000000000cb3fe5800000000000cbbff2a00000000000cb3ff0c00000000000cbbfe0200000000000cbbfd2400000000000cbbfb8e00000000000cb3fb5800000000000cb3ff4e00000000000cbbfeb800000000000cb3ff1c00000000000cb3fde600000000000cbbfdf000000000000cb3ff2a00000000000cb3fdc000000000000cbbfdf800000000000cbbff1000000000000cbbfe2200000000000cbbfec600000000000cb3facc00000000000cb3ff2800000000000cb3fe4000000000000cb3fcac00000000000cb3fe4c00000000000cb3fd1e00000000000cb3ff2000000000000cbbfc2e00000000000cbbfe0a00000000000cb3fe9c00000000000cb3faaa00000000000cb3fe3400000000000cb3ff0600000000000cbbff7600000000000cbbff6000000000000cb3fcec00000000000cb3fd2600000000000cb3ffca00000000000cbbfebc00000000000cbbfe2c00000000000cbbfcc200000000000cb3fdfc00000000000cb3f50000000000000cb3fe7c00000000000cbbff3800000000000cb3fd4c00000000000cb3fddc00000000000cbbfc5e00000000000cb3ff4200000000000cbbfde400000000000cb3fbbc00000000000cbbfd1000000000000cb3fec200000000000cbbfc9400000000000cbbfcf800000000000cbbfeee00000000000cbbf92400000000000cb3ffb000000000000cbbfd6600000000000cb3fdbc00000000000cbbfd3e00000000000cbbfb8e00000000000cbbfd5000000000000cb3feac00000000000cbbfda000000000000cbbfc3400000000000cbbfd8a00000000000cb3fe5600000000000cb3ff5c00000000000cb3fb6a00000000000cb3fe5a00000000000cbbfd6200000000000cb3fd8200000000000cb3ff4c00000000000cbbfed000000000000cbbff8c00000000000cbbff6000000000000cb3fd9a00000000000cb3fc1a00000000000cb3ffb400000000000cb3ff1000000000000cb3fdca00000000000cbbfc3000000000000cbbff2200000000000cb4002c00000000000cb3ff3800000000000cb3fcd400000000000cbbfd8400000000000cbbfc0600000000000cbbfef600000000000cbbff2c00000000000cbbf92000000000000cbbfabc00000000000cb3fd8a00000000000cbbfdc800000000000cbbfad200000000000cb3fefa00000000000cbbfd9800000000000cbbfc2600000000000cbbff3000000000000cbbffb200000000000cbbfd5000000000000cb3ff5c00000000000cb3fcf800000000000cb3fe2000000000000cbbfe1800000000000cbbfe4800000000000cb3feb600000000000cbbfe3200000000000cb3fc5800000000000cb3fc5c00000000000cbbff2c00000000000cb4002e00000000000cbbfecc00000000000cb3fe4000000000000cb3ffda00000000000cb3fe7200000000000cb3ff5800000000000cb3fd5e00000000000cb3fca000000000000cb3fdb200000000000cbbfcb200000000000cbc002a00000000000cbbffb800000000000cbbfe7600000000000cbbff4e00000000000cb3fa3800000000000cb3feba00000000000cb3fdb400000000000cb3fd4c00000000000cbbfeb400000000000cbbff4200000000000cb3ff4400000000000cbbfecc00000000000cbbfc9400000000000cb3fb7800000000000cb3ff3000000000000cbbfd2800000000000cbbfe4a00000000000cb3fe8a00000000000cb3fe4400000000000cbbff3c00000000000cb3fe5200000000000cb3fe3600000000000cbbff4000000000000cb3fe1000000000000cbbfed400000000000cb3fce600000000000cb3ff1200000000000cbbff0c00000000000cbbfcda00000000000cb3fd0600000000000cbbff9e00000000000cb3feec00000000000cb3ff4200000000000cb3fff800000000000cbbfef000000000000cb3ff2600000000000cb3f90800000000000cbc002000000000000cbbfd9800000000000cb3fef000000000000cb3fc4400000000000cb3ffa800000000000cbbfff200000000000cb3fe3400000000000cb3ff9400000000000cb3fb1800000000000cbbfeb400000000000cbbff2400000000000cbbffd600000000000cb3fa3e00000000000cbbfe7a00000000000cb3feca00000000000cbbffa800000000000cbbfc0c00000000000cb3fe4200000000000cbbfdae00000000000cbbfe2200000000000cbbfe2400000000000cb3fed400000000000cbbfea200000000000cbbff7e00000000000cbbfd7a00000000000cb3fe3a00000000000cb3ff1000000000000cbbf95000000000000cb3fef400000000000cb3ffd000000000000cb3ffd000000000000cbbfd4e00000000000cb3fbfa00000000000cb3fdd800000000000cbbff8e00000000000cbbfc7a00000000000cb3fe3400000000000cb3ffd400000000000cbbfc1e00000000000cbbfce000000000000cb3ff3200000000000cb3fe0000000000000cbbfea800000000000cb3fb7e00000000000cbbff1600000000000cbbfd5c00000000000cb3ffb800000000000cb3ff1600000000000cb3fb8800000000000cb3fe0e00000000000cb3ff1600000000000cb3fdd400000000000cbbfd5400000000000cb3fa5800000000000cbbfb2400000000000cbbff2e00000000000cb3fe6000000000000cb3fe1600000000000cb3ff8000000000000cbbff3400000000000cb3fe0c00000000000cbbff3e00000000000cb3fd3200000000000cbbfd0a00000000000cbbfb5800000000000cb3fea000000000000cb3fe7600000000000cb3fdac00000000000cb3feaa00000000000cbbfe6e00000000000cbbfcce00000000000a13783a46e616d65ae5072696365626f6f6b456e747279a7636f6e74657874a0a9656d62656464696e67dc0400cbbf9f000000000000cb3fb6800000000000cb3feb000000000000cb3fe6a00000000000cbbfc8000000000000cb3fba200000000000cb3fa9a00000000000cb3ff2000000000000cbbfe0c00000000000cb3fe3800000000000cb3ff7c00000000000cb3fdba00000000000cbbfee200000000000cb3fd6400000000000cb3fe7a00000000000cb3fe9000000000000cb3fe6600000000000cb3fde400000000000cb3ff9c00000000000cb3ff4600000000000cbc001e00000000000cbbfe7600000000000cb3ff9e00000000000cb3ff4600000000000cbbfbfe00000000000cb3fdd400000000000cbbfe5600000000000cb3ffba00000000000cbbfe0c00000000000cb3ffba00000000000cb3feb400000000000cb3fede00000000000cbbfe0600000000000cbbfe2e00000000000cbbfd6800000000000cbbfb7000000000000cbbfcb000000000000cb3ff0e00000000000cb3fe1600000000000cbbff6e00000000000cb3fe0a00000000000cbbfd0a00000000000cbbff2200000000000cbbff5c00000000000cb3ff5c00000000000cbbfe9000000000000cbbff5c00000000000cb3fc6c00000000000cbbfc7c00000000000cbbfe0800000000000cbbff1c00000000000cbbfe0e00000000000cbbfc7e00000000000cbbf92200000000000cb3ff4400000000000cbbff3a00000000000cbbfd1a00000000000cb3fe2c00000000000cb3fdcc00000000000cbbfef800000000000cb3ff6600000000000cb3fd1400000000000cbbfde400000000000cb3fc9400000000000cb3feae00000000000cbbfc9c00000000000cbbfd4800000000000cb3fcca00000000000cbbff5a00000000000cbbfb7800000000000cb3fd3400000000000cbbff0c00000000000cb3fe8000000000000cb3ff0800000000000cbbff7000000000000cb3fb8400000000000cbbfe7200000000000cb3ff2c00000000000cbbfe5e00000000000cb3fe5200000000000cb3ff6000000000000cb3fe0c00000000000cbbff7e00000000000cb3ff4a00000000000cbbfee000000000000cb3feb800000000000cbbfda800000000000cbbff8800000000000cb3fe1c00000000000cb3fcf200000000000cb3fae200000000000cb3fef800000000000cbbfd4000000000000cbbff5600000000000cb3ffc200000000000cbbfcba00000000000cb3fd9800000000000cbbfe0400000000000cb3fa1400000000000cb3fe7400000000000cb3fd6e00000000000cb3fe7400000000000cb4001600000000000cb3fbd800000000000cbbfde400000000000cb3ff7000000000000cbbfcee00000000000cb3fe3a00000000000cb3ff5400000000000cbbfffa00000000000cbbff9a00000000000cb3fd7e00000000000cb4001200000000000cb3feb000000000000cb3ff0400000000000cb3fef000000000000cbbfe4600000000000cb3ffa000000000000cbbfe6200000000000cbbff9200000000000cb3fe9200000000000cb3fe1c00000000000cb3ff3a00000000000cb3fd1c00000000000cbbff5600000000000cbbfd4200000000000cb3fe4c00000000000cb3fdd000000000000cb3ff2400000000000cbc001000000000000cb3fb3400000000000cb3fe2800000000000cb4000800000000000cbbfbc000000000000cb3ffa000000000000cb3fe5c00000000000cbbfd5200000000000cbbff7c00000000000cbbfefe00000000000cb3ffa600000000000cb3fd9c00000000000cb3faa000000000000cb3ffa200000000000cbbff0200000000000cbbfe5c00000000000cb3fefa00000000000cbbfc5400000000000cbbff2800000000000cb3fc5200000000000cb3fac000000000000cbbff4200000000000cbbfc4c00000000000cbbfd0e00000000000cb3ffb800000000000cb3ff3400000000000cb3fee600000000000cbbfe9400000000000cb3fee400000000000cbbff3200000000000cbbfe5c00000000000cbbff2e00000000000cb3ff3000000000000cb3feae00000000000cbbff1a00000000000cb3fe2600000000000cb3fde400000000000cb3f8b800000000000cbbfe9c00000000000cbbfe6000000000000cb3fea200000000000cb3fdb200000000000cb3ff2a00000000000cb3fe8200000000000cb3fefc00000000000cbbfe0000000000000cbbff1c00000000000cbbffdc00000000000cbbfe7800000000000cb3fea400000000000cbbff2800000000000cbbfe2200000000000cb3fe0800000000000cb3fede00000000000cbbff3000000000000cb3fc8c00000000000cb3fd2000000000000cbbff9e00000000000cb3fc6a00000000000cbbfe3a00000000000cbbffe000000000000cbbfe5c00000000000cb3ff2600000000000cb3ff0a00000000000cb3fe0200000000000cbbfecc00000000000cb3ff1000000000000cbbfd2c00000000000cbbfe8000000000000cbbff0a00000000000cb3fcbe00000000000cb3fdbc00000000000cb3fe1c00000000000cb3ff1c00000000000cb3feb600000000000cbbff0a00000000000cb3fc3c00000000000cb3fc0000000000000cbbfe7800000000000cb3fc2800000000000cbbff3a00000000000cb3ff5a00000000000cbbff5800000000000cb3ff0c00000000000cb3fe7000000000000cb3fd5800000000000cb3fb6800000000000cbbfa3800000000000cb3ff4200000000000cbbfe0600000000000cb3feae00000000000cb3fe0400000000000cbbfe4200000000000cbbfe7400000000000cbbff7e00000000000cbbfcf000000000000cb3fe5200000000000cbbfebc00000000000cb3fde000000000000cb3fc4c00000000000cbbfb6a00000000000cb3fed200000000000cbbfd6a00000000000cb3fc6a00000000000cb3fdd800000000000cb3ffb000000000000cb3fd5600000000000cb3fecc00000000000cb3f81200000000000cb3fed800000000000cbbfd9000000000000cb3ff1000000000000cbbfcba00000000000cb3fe0e00000000000cbbff7000000000000cbbfed000000000000cbbfdfc00000000000cbbffc600000000000cbbfda800000000000cbbff8e00000000000cb3ff8a00000000000cb3f7dc00000000000cb3ff8600000000000cb3feb600000000000cbbffac00000000000cbbfdc200000000000cb3ff9800000000000cbbf97200000000000cb3fba800000000000cb3fed800000000000cbbff6c00000000000cbbfc8e00000000000cb3fd9200000000000cbbff0800000000000cbbfe2800000000000cb3fbb000000000000cbbfe9600000000000cbbfcd200000000000cb3ff1400000000000cb3fde600000000000cbbfcd800000000000cb3fc2c00000000000cbbfe9c00000000000cb3fcae00000000000cbbff0a00000000000cb3ff2000000000000cb3ff0a00000000000cb3fee600000000000cb3fec000000000000cbbff2200000000000cbbfe8e00000000000cb3ff7a00000000000cb3fe0800000000000cbbfcf800000000000cb3ff0c00000000000cbbf99800000000000cbbfdd200000000000cbbff0a00000000000cbbff2c00000000000cbbff3800000000000cb3fe6000000000000cb3ff4c00000000000cb3ffe200000000000cbbfd8c00000000000cbbfcec00000000000cbbff0400000000000cbbfff600000000000cbbfe3c00000000000cbbfb4e00000000000cb3ff6200000000000cb3fc6600000000000cb3ff5c00000000000cbbfe6800000000000cb3ff6e00000000000cb3fea800000000000cbbff4a00000000000cb3fe3200000000000cbbfc9e00000000000cbbfd8c00000000000cbbffce00000000000cbbfc5c00000000000cbc005200000000000cb3ff0800000000000cbbfd0a00000000000cb3fdf400000000000cb3fa6400000000000cb3fe8400000000000cb3ff2a00000000000cb3ffb200000000000cbbff1c00000000000cbbff6800000000000cb3fd5e00000000000cb3ff0800000000000cb3fc1400000000000cbbfe5e00000000000cbbfc9400000000000cb3fea400000000000cbbfe4400000000000cbbfcdc00000000000cbbfeca00000000000cb4005600000000000cb3fcea00000000000cbbfe0c00000000000cbbff7000000000000cb3fec400000000000cb3fc2800000000000cb3fe9400000000000cb3fc0400000000000cb3fd4e00000000000cb3fe0600000000000cb3fef000000000000cbc000e00000000000cb3f48000000000000cbbfc5600000000000cbc005000000000000cb3fdfc00000000000cb3fd5800000000000cb3fe6e00000000000cb3fdda00000000000cb3fa8e00000000000cbbff2400000000000cbbfcd000000000000cb3fe2a00000000000cb400b200000000000cb3fdb400000000000cbbfed200000000000cbbfc2800000000000cb3fede00000000000cb3fce40000000000001cbbfd1a00000000000cbbfe8c00000000000cbbfd0200000000000cbbf9f800000000000cbbfb8200000000000cbbff5800000000000cb4001600000000000cbbfe3800000000000cbbfdc600000000000cbbfb2e00000000000cbbff3e00000000000cb3fd4a00000000000cb3fb9400000000000cbbfe5c00000000000cb3ff0600000000000cb3fd3200000000000cb3feb600000000000cb3fd9400000000000cb3ff8a00000000000cbbffb000000000000cbbff1c00000000000cbbfece00000000000cb3ffce00000000000cbbfe9200000000000cb4001000000000000cbbfe1a00000000000cbbffb600000000000cbbfe2e00000000000cbbfc9800000000000cb3fc3200000000000cbbfcaa00000000000cb3fea800000000000cb3fecc00000000000cb3fd9c00000000000cb3feb600000000000cbbfe8e00000000000cb3fd7c00000000000cbbfe1600000000000cbbfd5000000000000cb3fd2400000000000cb3fb0600000000000cbbfb0400000000000cb3feca00000000000cb3fe1a00000000000cb3fdb800000000000cb3ff9200000000000cbbfe6e00000000000cb3ff5400000000000cb3fce600000000000cb3ff0c00000000000cbbff4600000000000cbbfcee00000000000cbbfd8800000000000cb3feea00000000000cbbfe0600000000000cbbfc8000000000000cbbfe3a00000000000cb3fede00000000000cb3fef600000000000cbbfc9a00000000000cbbff1200000000000cb3fe5400000000000cb3fdb000000000000cb3fe9800000000000cbbfe3600000000000cbbfa6000000000000cbbfcce00000000000cb3fa9200000000000cbbfb2400000000000cbc004a00000000000cb3fec000000000000cbbffc400000000000cb4000200000000000cb3ffba00000000000cb3ff5c00000000000cb3ff6800000000000cbbfef400000000000cb3fe6000000000000cbbfd0200000000000cbbfbba00000000000cbbfd3c00000000000cb3fd5200000000000cb3fb9000000000000cb3ff0c00000000000cb3f98c00000000000cb3fdc000000000000cbc000800000000000cb3fede00000000000cbbff6e00000000000cbbfcfc00000000000cb3fdd000000000000cb3fe7600000000000cb3fd6c00000000000cbbff7800000000000cbbfe5a00000000000cbbfe2c00000000000cbbff1c00000000000cb3ff4400000000000cb3ff6800000000000cb3ff5e00000000000cbc002200000000000cb3fe8c00000000000cb3fe8400000000000cbbfd8800000000000cbbffba00000000000cb4003000000000000cb3fe9400000000000cb3fa4400000000000cbbfd0800000000000cbbffec00000000000cbbfffa00000000000cbbfe2600000000000cb3fc9a00000000000cb3ff2600000000000cb3fd9e00000000000cbbfdda00000000000cb3ff1000000000000cbbfede00000000000cbbfea600000000000cb3fe9c00000000000cbbff1400000000000cbbff4c00000000000cb3fd4400000000000cb3fe0800000000000cb3fcfc00000000000cbbfed600000000000cbbfd7c00000000000cbbfede00000000000cb3fe3200000000000cb3fdf600000000000cbbfdee00000000000cb3f9e800000000000cb3ff2200000000000cb3fec200000000000cbbffc600000000000cb3fb7000000000000cb3ffa800000000000cbc002a00000000000cb4001400000000000cbbfce600000000000cb3fa0400000000000cb3feca00000000000cbc002a00000000000cbbfece00000000000cb3ffc600000000000cbbfda000000000000cbbfda600000000000cbbfd7000000000000cb3fe9c00000000000cb3feaa00000000000cbbfe0c00000000000cbbfd5c00000000000cbbfe0e00000000000cb3fb4200000000000cbbfe1200000000000cbbfdd200000000000cb3ff8a00000000000cbbfd0800000000000cb3ff6e00000000000cb3fc2c00000000000cb3fe3800000000000cb3fec400000000000cbbff3a00000000000cb3fe3000000000000cb3fe9800000000000cbbfe2400000000000cbbfeca00000000000cb3fe5c00000000000cb3fc0a00000000000cbbffb000000000000cbbfd3c00000000000cb3fd0800000000000cb3fe4800000000000cbbfe8e00000000000cbbff3e00000000000cbbfdd600000000000cbbfab400000000000cbbfefa00000000000cbbfe6400000000000cb3fcae00000000000cb3fcb400000000000cbbfc7400000000000cbbfe2000000000000cbbfcc200000000000cb3ffba00000000000cb4002200000000000cb3fd4800000000000cbbff1c00000000000cb3fd8800000000000cbbfd8800000000000cbbfdb400000000000cbbfe5a00000000000cb3fdda00000000000cb3ffb600000000000cb3ff0a00000000000cbbfe1000000000000cb3fa7e00000000000cbbff7600000000000cbbfe9400000000000cbbfe1a00000000000cbc000200000000000cbbfd2a00000000000cbbfdb600000000000cb3fbc400000000000cb3fdee00000000000cb3ff6400000000000cb3ffb600000000000cb3fbec00000000000cbbfd0a00000000000cbbfc5000000000000cb3fc9a00000000000cb3fec800000000000cb3fc7e00000000000cb3fce000000000000cbbfdc400000000000cbbfc1400000000000cbbfe8600000000000cb3fe4200000000000cbbfc5000000000000cbbff9800000000000cb3fddc00000000000cbbfe2000000000000cbbfabc00000000000cb3ff0e00000000000cbbfcb600000000000cbbfe1400000000000cbbff8400000000000cbbfd5800000000000cb3fd9a00000000000cbbff1400000000000cb3fd9800000000000cbbfcac00000000000cbbfd7e00000000000cb3fe8000000000000cb3ff7400000000000cb3fee000000000000cbbfe0a00000000000cbbfabe00000000000cb3fe1600000000000cbbffae00000000000cb3fd0400000000000cb3ff3200000000000cbc001800000000000cb3ff1800000000000cbbfebc00000000000cbbfe1e00000000000cb3fd4c00000000000cbbff4800000000000cbbff4a00000000000cbbff8000000000000cbbf8f000000000000cb3fd0000000000000cb3fe7c00000000000cb3fff800000000000cbbff5800000000000cb3fd3800000000000cb3fc9400000000000cb3ff4800000000000cbbfdda00000000000cbbf9dc00000000000cb3ff3800000000000cbbff1800000000000cb3fe5600000000000cbbfe3a00000000000cbbfe1c00000000000cbbfffe00000000000cbbfe1a00000000000cbbfd2000000000000cbbff3c00000000000cbbff4000000000000cbbfd9200000000000cb3fe6e00000000000cb3ff4800000000000cbbfc3200000000000cb3feee00000000000cb3fd2400000000000cb3fb5e00000000000cbbff3000000000000cbbfdd600000000000cbbfd0200000000000cb3ff6800000000000cbbffd400000000000cb3fd7800000000000cb3fa3800000000000cbbff9400000000000cb3fe5000000000000cbbfd1400000000000cbc003400000000000cb3fd7e00000000000cbbfa3e00000000000cbbfe9a00000000000cb3fd4000000000000cb3fdfc00000000000cbbfc5e00000000000cb3fdc000000000000cb3ff4200000000000cbc004000000000000cb3fb7000000000000cbbfeae00000000000cb3ffba00000000000cbbff5400000000000cb3fcee00000000000cb3fe2600000000000cb3fe5a00000000000cbbfd6000000000000cbbfd1200000000000cb3fe7400000000000cbbfda800000000000cbbfe4600000000000cb3ff5000000000000cb3fdf000000000000cb3ff0c00000000000cbbfe4400000000000cb3ff4a00000000000cbbfd3200000000000cbbfbec00000000000cb3fe1e00000000000cb3ff1400000000000cbbfe2000000000000cb3fef000000000000cbbfbae00000000000cb3fde200000000000cbbf86400000000000cb3fca800000000000cbbfdca00000000000cbbff7a00000000000cb3fe5200000000000cbbfb9a00000000000cbbfb0000000000000cbbf9dc00000000000cbbfefc00000000000cbbfe9600000000000cb3fdce00000000000cb3ff0e00000000000cbbfe2000000000000cbbffac00000000000cbc001800000000000cb3fd0600000000000cbbfd8c00000000000cb3fdde00000000000cbbffa600000000000cb3fed600000000000cb3ff7400000000000cb3fece00000000000cb3fe5800000000000cb3ff1400000000000cb3ffb200000000000cb3fe2e00000000000cbbfe0a00000000000cb3fed600000000000cbbfe4e00000000000cbbfef400000000000cbbfeee00000000000cbbfddc00000000000cb3fe2e00000000000cbbfe7c00000000000cb3ff0200000000000cbbf95a00000000000cb3ff1e00000000000cbbfb9000000000000cb4008e00000000000cb3fdee00000000000cbbf84800000000000cbbfce200000000000cbbff2c00000000000cbbff8e00000000000cb3fe6c00000000000cbbfb6600000000000cb3fcb400000000000cbbfdc200000000000cbbff3000000000000cbbfeb600000000000cbbfc6400000000000cb3fbe800000000000cbbfee800000000000cbbfd3a00000000000cbbfc8000000000000cb3feca00000000000cbbff3200000000000cb3fc2000000000000cbbfe8400000000000cbbff7000000000000cbbfd9600000000000cbbff8c00000000000cb3ffde00000000000cbbfed200000000000cbbfcbe00000000000cb3ff6200000000000cbbffba0000000000001cbbfee200000000000cbbff4e00000000000cbbfedc00000000000cb3fe3800000000000cb3fc7c00000000000cbbfe4a00000000000cb3fd5200000000000cbbfe6200000000000cbbfd4e00000000000cbbff1400000000000cbbfeea00000000000cbbfd0e00000000000cbbfeb800000000000cbbff8200000000000cb3fec000000000000cbbfe3600000000000cb3fea000000000000cbbff2c00000000000cbbfe7000000000000cb3fe5600000000000cb3fdb600000000000cbbfdea00000000000cb3feba00000000000cbbfefa00000000000cbbffae00000000000cbbfe9e00000000000cbbfd6c00000000000cbbffde00000000000cb3fe1400000000000cb3ff6000000000000cbbffaa00000000000cbbff0400000000000cbbff2400000000000cb3ff1c00000000000cb3fed200000000000cb3fc9000000000000cbbfe4200000000000cbbfee000000000000cbbfbf600000000000cb3fe6200000000000cbbfc5000000000000cb3fdd800000000000cbbfbe200000000000cbbfc6c00000000000cb3ff1200000000000cbbff6000000000000cbbfeee00000000000cb3fd3c00000000000cbbfe2000000000000cb3fec000000000000cbbfc4000000000000cb3fd9200000000000cbbfea800000000000cb3fe4200000000000cb3ff8e00000000000cbbfec000000000000cb3ff3000000000000cb3ff3800000000000cbbfda200000000000cb4002e00000000000cb3fef000000000000cbbff3e00000000000cbbfe5c00000000000cbbfdbc00000000000cbbff6600000000000cbbfe5600000000000cb3ff4400000000000cb3fe7c00000000000cb3fcda00000000000cb3fea000000000000cbbfcd800000000000cb3ff9c00000000000cbbfe5c00000000000cbbfe7000000000000cb3fc2c00000000000cbbfd3800000000000cb3fc8e00000000000cb3fe7a00000000000cbbff7600000000000cbbfec200000000000cb3fe7200000000000cbbfe3a00000000000cb3fff600000000000cbbff9600000000000cbbfe5e00000000000cbbfec000000000000cb3ff3400000000000cbbfd9c00000000000cb3fd4200000000000cbbffaa00000000000cb3fe2000000000000cb3ff1600000000000cbbfd0600000000000cb3ff4400000000000cbbfd0200000000000cb3fd9e00000000000cb3fe7800000000000cb3fc4c00000000000cb3fc3800000000000cbbf88000000000000cbbfb3800000000000cbbfcde00000000000cb3ffb800000000000cbbfd1800000000000cb3fc3a00000000000cbbfe2a00000000000cbbfe2c00000000000cbbfd2800000000000cb3fe6600000000000cbbfeae00000000000cb3febc00000000000cbbfe1800000000000cb3fc3a00000000000cb3ff1c00000000000cb3fc1000000000000cbbfd5c00000000000cbbfd8600000000000cb3ff1a00000000000cb3ff2e00000000000cbbff1a00000000000cbbfe9000000000000cbbfed600000000000cb3ff6200000000000cb3fe0600000000000cb3fff200000000000cb3fe0600000000000cb3fb5600000000000cb3fc4c00000000000cbbfe3800000000000cb3fe7800000000000cb3ff5400000000000cbbfe0000000000000cbbff5800000000000cbbfd8c00000000000cbbfd2000000000000cbbfc5600000000000cbbfc3200000000000cbbfc9800000000000cb3fcd800000000000cb3fd6800000000000cb3fdf400000000000cb3fdf800000000000cbbfe6a00000000000cbbfe7600000000000cbbfe6600000000000cbc000a00000000000cb3fd3400000000000cb3fd3200000000000cbbfd4400000000000cb3fd3400000000000cbbfcc000000000000cbbfc5600000000000cb3fc7000000000000cbbff1800000000000cbbfe5000000000000cb3fc2c00000000000cbbff2200000000000cb3fffc00000000000cbbffc600000000000cb3ff3800000000000cb3ff8200000000000cb3ff2600000000000cb3fe8400000000000cb3fe3400000000000cb3fe7200000000000cbbfdcc00000000000cb3fcf400000000000cbbfffe00000000000cbc000400000000000cbbff0600000000000cbbff3c00000000000cbbfe7400000000000cb3ff0c00000000000cb3fe4800000000000cbbf93e00000000000cbc001400000000000cbbff9200000000000cb3f6c000000000000cbbfbca00000000000cbbfd1400000000000cb3fe6000000000000cb3ff2200000000000cb3fdb800000000000cbbfe6800000000000cb3fec200000000000cb3ff1400000000000cbbfd1200000000000cb3ff1400000000000cb3fe5c00000000000cbbff0400000000000cb3ff8a00000000000cb3fa7e00000000000cb3fd2c00000000000cb3fe8c00000000000cbbfecc00000000000cbbfe1000000000000cb3ff5c00000000000cbc002800000000000cb3ff1e00000000000cbbfd9000000000000cb3fe9000000000000cbbfd7c00000000000cb3ff1600000000000cb3fe3400000000000cbbff4400000000000cbbfec200000000000cb3feb000000000000cbbfe8e00000000000cb3fff800000000000cbbfffc00000000000cb3faa000000000000cb3fdf200000000000cbbfb6600000000000cbbfcb200000000000cbbffa800000000000cbbfe6c00000000000cbbfe8e00000000000cbbff4a00000000000cb4002000000000000cbbff1800000000000cb3fe4e00000000000cb3ff4c00000000000cb3fdda00000000000cbbff9000000000000cbbfc5800000000000cb3fe0600000000000cbbfec000000000000cbbffd200000000000cbbff0e00000000000cb3ff5200000000000cbbfc8200000000000cbbfe5200000000000cb3ff8200000000000cb3ffaa00000000000cb3ff9800000000000cbbfe6600000000000cbbfcde00000000000cbbfdd000000000000cbbff3000000000000cb3fba000000000000cb3ff9000000000000cb3ffde00000000000cb3fe7200000000000cbbffbe00000000000cb3ff8e00000000000cb3fe0e00000000000cbbfc3a00000000000cbbfb1000000000000cbbfda400000000000cb3fe1400000000000cb3fe3c00000000000cb3fdb000000000000cb3fb9a00000000000cb3fd4400000000000cb3fec000000000000cb3fd3c00000000000cb3fb8000000000000cbbfd1800000000000cbbfa5800000000000cbbfe7400000000000cb3fc5200000000000cbbfc1200000000000cb3fff800000000000cbbff8e00000000000cb3fba200000000000cbbff5c00000000000cbbfc8600000000000cb3fe2c00000000000cbbfd3e00000000000cb3ff3800000000000cb3ffbe00000000000cb3fd9600000000000cb3fc2400000000000cbbfe5e00000000000cbbfbb000000000000a13883a46e616d65a65265706f7274a7636f6e74657874a0a9656d62656464696e67dc0400cb3fe3400000000000cb3fe1400000000000cb3feda00000000000cb3fe1800000000000cbbfe9600000000000cbbfd4200000000000cbbfe3a00000000000cb3fe8000000000000cb3ff0200000000000cb3ff0a00000000000cb3ff9200000000000cb3f90800000000000cbbfdf800000000000cb3fd2c00000000000cb3fe7400000000000cb4000e00000000000cb3fefa00000000000cb3fa8800000000000cb3f7a400000000000cb3fd3400000000000cbc008200000000000cbbfe6200000000000cb3ff7800000000000cb3ffc800000000000cb3fcf000000000000cbbfe0400000000000cbbff0e00000000000cb4000a00000000000cbbfeea00000000000cb3fe5c00000000000cb3fc7600000000000cb3ffac00000000000cb3fef000000000000cbbfd8600000000000cbbfc5c00000000000cbbfe5c00000000000cbbfe0c00000000000cb3fd1e00000000000cb3ff5600000000000cbbfee200000000000cb3fee600000000000cbbfd0a00000000000cbbfe5e00000000000cbbff1c00000000000cb3ff5800000000000cbbfe8600000000000cbbfe6a00000000000cb3fe4a00000000000cbbfde200000000000cbbfe1600000000000cbbfd4800000000000cb3fd8400000000000cb3fc3400000000000cb3fc8800000000000cb3ff4600000000000cbbfee200000000000cb3f70000000000000cb3ff1000000000000cb3fd3800000000000cbbfe8c00000000000cb3ff3600000000000cb3fe5600000000000cbbfee600000000000cbbfd9200000000000cb3fcf400000000000cbbf9e400000000000cb3fd7e00000000000cbbfb2200000000000cbbfea800000000000cbbfea800000000000cb3fc2600000000000cbbfec800000000000cb3fdbc00000000000cb3fe9400000000000cbbfede00000000000cbbf7e000000000000cbbff8400000000000cb3ffd800000000000cbbfdb800000000000cbbfc3c00000000000cb3ff9200000000000cbbfe9600000000000cbc004000000000000cb3fefc00000000000cbbff2200000000000cb3fab800000000000cbbfc9a00000000000cbbfdcc00000000000cb3ff5e00000000000cb3fe4c00000000000cbbfdba00000000000cb3fef000000000000cbbff2600000000000cbbff2400000000000cb3ff4000000000000cb3fe1400000000000cb3fc3000000000000cb3fe7400000000000cbbff2600000000000cb3fe9800000000000cb3ff1c00000000000cb3fe5200000000000cb3ff6400000000000cb3fdce00000000000cbbff5600000000000cb3ff1000000000000cbbffc400000000000cbbfeb400000000000cb3fef800000000000cbbff7400000000000cb3fcf600000000000cb3fefc00000000000cb4004200000000000cb3fdc800000000000cbbf71800000000000cb3ff3600000000000cbbff6e00000000000cb3fd7200000000000cbbfe2e00000000000cb3fba600000000000cb3ff5800000000000cbbfd8800000000000cb3fdca00000000000cbbff1a00000000000cbc000a00000000000cbbfd3800000000000cb3ff3600000000000cb3fe7200000000000cbbfd4e00000000000cbbffa400000000000cb3fb0800000000000cb3fea200000000000cb3fff600000000000cbbfdd200000000000cb3ffb600000000000cb3fe0200000000000cbbfe2a00000000000cbbfee400000000000cbbfdc000000000000cb3ffb200000000000cb3fe3e00000000000cb3feba00000000000cb3ff0800000000000cbbff0a00000000000cbbf88c00000000000cb3fe8600000000000cbbff1400000000000cbbff2800000000000cbbfd9800000000000cb3fa9e00000000000cbbffae00000000000cbbfdbe00000000000cbbffea00000000000cb3fe0400000000000cb3ff6a00000000000cb3ff6200000000000cbbfdb600000000000cb3ff1400000000000cbbfef200000000000cbbfdf400000000000cbbff6c00000000000cb3fe2e00000000000cb3ffc000000000000cbbff3400000000000cb3fe1800000000000cb3feca00000000000cb3fb3400000000000cbbfd2400000000000cbbff1c00000000000cb3ff1600000000000cb3fb1200000000000cb3ff8800000000000cbbf70800000000000cb3fffa00000000000cbbfd4200000000000cbbfd7400000000000cbbffe400000000000cb3fb6400000000000cb3fd0a00000000000cbbfe7200000000000cbbfe4600000000000cb3febe00000000000cb3fc7c00000000000cbc000800000000000cbbfad000000000000cb3fe2000000000000cbbff9600000000000cb3fcc000000000000cb3fd2400000000000cbbff3a00000000000ffcb3feac00000000000cb3fe9600000000000cbbf92a00000000000cbbff2000000000000cb3fe5400000000000cb3fc9000000000000cbbfe6c00000000000cbbff4600000000000cbbfcbc00000000000cbbfb8600000000000cb3ff6600000000000cb3ff4a00000000000cbbfe2200000000000cbbffc200000000000cbbfbce00000000000cb3fe5800000000000cbbff2800000000000cb3fc1c00000000000cbbff3600000000000cb3ffa600000000000cbbfe9200000000000cb3fb6600000000000cbbfb6000000000000cb3fc2e00000000000cbbfc9800000000000cb3fe4400000000000cb3ffde00000000000cbbfc8600000000000cbbfb5c00000000000cb3fe5600000000000cbbfe6000000000000cbbfd9200000000000cbc004a00000000000cbbfd4400000000000cbbfd0000000000000cbbfa6000000000000cbbf91800000000000cb3feda00000000000cbbff5400000000000cb3ff0600000000000cb3fd0c00000000000cbbfdc800000000000cbbfdfc00000000000cb3ffa200000000000cb3fc0400000000000cb3ff1600000000000cb3ff3800000000000cb3ffaa00000000000cb3f90a00000000000cb3fe5e00000000000cbbfdea00000000000cb3fc1000000000000cbbff9000000000000cbbff1c00000000000cb3fdd800000000000cbbffa800000000000cbbfef400000000000cbbfcfe00000000000cb3ffb600000000000cbbfbcc00000000000cb4003000000000000cb3fe2200000000000cbc001800000000000cbbff0200000000000cb3feb800000000000cb3fed800000000000cbbfef200000000000cb3fdb800000000000cbbff7400000000000cb3fe7800000000000cbbfe4e00000000000ffcbbfe0400000000000cbbfe0600000000000cbbff2a00000000000cbbfd9c00000000000cb3ff6800000000000cb3fede00000000000cbbfd5200000000000cbbfb5000000000000cbbff2c00000000000cbbfbc800000000000cbbfec000000000000cb3fee400000000000cb3fe4c00000000000cb3ffd200000000000cb3fd8e00000000000cbbff9000000000000ffcb3ff6c00000000000cbbfaca00000000000cbbfe1200000000000cb3feaa00000000000cb3fb1800000000000cbbfe2400000000000cbbfc2000000000000cbbfefe00000000000cbbff8c00000000000cb3feaa00000000000cb3fe6c00000000000cb3ff6800000000000cbbff6c00000000000cbbfc7a00000000000cb3fc0a00000000000cbc003800000000000cb3fd1c00000000000cbbfdc600000000000cb3ff8200000000000cb3fc1a00000000000cb3ff6600000000000cbbfe2000000000000cb3fff400000000000cb3ff7800000000000cbbffb800000000000cb3ff3e00000000000cbbfdb800000000000cbbfd3400000000000cbbfffc00000000000cb3feba00000000000cbc005400000000000cb3fee400000000000cb3fa7a00000000000cbbfb2c00000000000cb3fdf000000000000cb3fd3400000000000cb3fe5400000000000cb3feca00000000000cbbfdba00000000000cbbffb800000000000cb3fc4e00000000000cb3fed000000000000cbbf40000000000000cbbff9000000000000cb3fd0200000000000cb3fe2600000000000cbbfff000000000000cb3ff6400000000000cbbfe7e00000000000cb3ff0a00000000000cb3fd9c00000000000cbbfc0000000000000cbbff3a00000000000cb3ff3600000000000cb3fcf800000000000cbbfc3e00000000000cbbfc0400000000000cb3fc0a00000000000cb3fd1400000000000cb3ff9000000000000cbbff5e00000000000cb3fea600000000000cb3ffb200000000000cbc007200000000000cb3ff5c00000000000cb3fbdc00000000000cb3fec000000000000cb3ff3400000000000cb3f91800000000000cbbff0800000000000cbbfcb000000000000cbbfe3200000000000cb4003400000000000cb3fd0e00000000000cb3fe5400000000000cbbfe7200000000000cb3ff5600000000000cb3fcbc00000000000cb3fef400000000000cb3fd9600000000000cbbff8000000000000cbbfb3400000000000cbbfe1800000000000cbbfe3000000000000cbbff5200000000000cb3ff3800000000000cbbff9400000000000cbbfd2600000000000cbbfece00000000000cb3fe3600000000000cb3fe5800000000000cbbfb3200000000000cb3f9e400000000000cb3ff1e00000000000cb3feac00000000000cb3fe8200000000000cbbfe3200000000000cb3fb0200000000000cbbffc200000000000cbbfe7000000000000cbbff0c00000000000cb3ffb200000000000cbbff2200000000000cb4005600000000000cbbfa3c00000000000cbbffc400000000000cbbfeae00000000000cbbfd3200000000000cb3fe9a00000000000cb3fcd400000000000cb3ff8a00000000000cb3ff0200000000000cbbfd1c00000000000cb3f4f600000000000cb3fac200000000000cb3ff1000000000000cbbfbee00000000000cbbfd2800000000000cb3ff0800000000000cbbfcfc00000000000cb3fcda00000000000cb3ffaa00000000000cb3fed600000000000cb3ff4c00000000000cb4002400000000000cbbfe3e00000000000cb3ff8e00000000000cbbfba200000000000cb3fe2400000000000cbbfe3c00000000000cb3fe5e00000000000cb3fed000000000000cb3fb5400000000000cb3fe3800000000000cb3fd8800000000000cbbfe1c00000000000cb3ffaa00000000000cbbfd8600000000000cbbfc5000000000000cbbffa000000000000cb3fec800000000000cb3fc8600000000000cb3fe9c00000000000cbbfeea00000000000cb3fe0800000000000cb3fdc800000000000cbbfcda00000000000cbbf8c400000000000cbc005c00000000000cb3f91a00000000000cbbff5200000000000cb3ff8e00000000000cb3ff3000000000000cb3ff6c00000000000cb3ffbc00000000000cbbff1a00000000000cb3fe8600000000000cbbfb0e00000000000cbbfeca00000000000cbbfdd200000000000cbbfc6600000000000cbbfb0000000000000cb4002c00000000000cb3ff2000000000000cbbfe6600000000000cbbff3a00000000000cb3fff800000000000cbbfe7000000000000cbbfea600000000000cb3fdbe00000000000cb3fe0a00000000000cb3fdc400000000000cbbff6200000000000cbbfe0400000000000cb3fb1c00000000000cbbfd1000000000000cb4000c00000000000cb4001200000000000cb3ffd200000000000cbc008800000000000cb3f92400000000000cb3febc00000000000cb3fd0800000000000cbc003800000000000cb4005400000000000cbbfc4800000000000cb3f8b600000000000cb3fc3800000000000cbbff4a00000000000cbbfd1c00000000000cbbfd9400000000000cb3fce400000000000cb3fe6c00000000000cb3fb8e00000000000cb3fe2000000000000cb3fec400000000000cbbff2a00000000000cbc000200000000000cb3fd2a00000000000cbbff0200000000000cbbff0e00000000000cbbfb7200000000000cb3fe8e00000000000cb3fe6400000000000cb3f8ae00000000000cbbfd1000000000000cbbff5e00000000000cb3fec600000000000cb3fe9800000000000cbbfa2000000000000cb3fda800000000000cbbfe0400000000000cb3ff7e00000000000cbc000800000000000cbbfede00000000000cb3ff3400000000000cbbfeea00000000000cb4006400000000000cb3fcb200000000000cb3fe2200000000000cb3fd1200000000000cbbffd400000000000cbbff6000000000000cb3ffdc00000000000cbbfe0a00000000000cbbfdbe00000000000cbbfed000000000000cb3ff4e00000000000cb3feb000000000000cb3fc9400000000000cb3fa2600000000000cbbfd7000000000000cbbfe6400000000000cbbfd1a00000000000cbbfe5600000000000cb3fec800000000000cb3fe8600000000000cb3ff9c00000000000cb3fc6200000000000cb3fa5e00000000000cb3ff6800000000000cbbfea200000000000cb3ff9200000000000cb4000400000000000cbbff9800000000000cbbff4200000000000cb3fd1c00000000000cb3fde800000000000cbbffde00000000000cb3fc9a00000000000cbbfecc00000000000cbbfc4a00000000000cbbfdae00000000000cbbffa600000000000cb3fe9400000000000cb3fd5000000000000cbbf88800000000000cbbfc6e00000000000cb3fe980000000000001cbbff3a00000000000cb3feec00000000000cb3fcac00000000000cb3ffc600000000000cb4001800000000000cb3ff6200000000000cbbfe7e00000000000cb3ff5e00000000000cb3fd0200000000000cbbfef200000000000cbbfed200000000000cb3ff2000000000000cb3fe7000000000000cb3feae00000000000cbbfeb600000000000cbbfd4800000000000cbbff2c00000000000cbbfe0200000000000cb3fdba00000000000cbbff7000000000000cb3fc9600000000000cbbfd1600000000000cbbfe0600000000000cbbfd9a00000000000cb3fdc200000000000cb3ff2e00000000000cb3fbf800000000000cb3fc3600000000000cb3fe4c00000000000cbbff5a00000000000cb3ff3600000000000cb3fe4800000000000cb3fd9000000000000cbbfdb600000000000cb3fcec00000000000cbbfe9c00000000000cb3fe4200000000000cb3ff4400000000000cbbffa000000000000cb3fe3600000000000cbbfe3400000000000cb3fa2800000000000cb3fe6e00000000000cbbfe6600000000000cbbfce400000000000cbbffe200000000000cbbfc6a00000000000cb3ff1c00000000000cbbfe9400000000000cbbfa6c00000000000cbbfec200000000000cb3fcde00000000000cbbfcba00000000000cb3ff1e00000000000cb3fe7c00000000000cb3fe2e00000000000cb3fb4c00000000000cbbfc4c00000000000cbc001200000000000cbbfea400000000000cb3fc0a00000000000cbc008600000000000cb3ff4000000000000cbbfdb600000000000cbbfe1a00000000000cb3fd9c00000000000cbbfed800000000000cbbff9000000000000cbc003000000000000cbbfde800000000000cbbf96600000000000cb3fd1e00000000000cb3fee000000000000cbbff5a00000000000cbbfcd400000000000cb3fcc400000000000cb3fe0a00000000000cb3fdac00000000000cb3fbbc00000000000cb3ff8a00000000000cbbfef000000000000cb3feb000000000000cbc001200000000000cbbfe5000000000000cbbfe3400000000000cb3fc8000000000000cbbfe8200000000000cbbfdf800000000000cbc002000000000000cb3fc0200000000000cbbfb4000000000000cb3fdbe00000000000cb3fefe00000000000cb3fe4400000000000cbbfd6800000000000cb3fc0800000000000cbbfd8e00000000000cbbfbc400000000000cbbfd8200000000000cb3fe7600000000000cbbffd800000000000cbbfdca00000000000cbbfed600000000000cbbff8600000000000cb3febe00000000000cbbfc8600000000000cbc005e00000000000cb3fd9000000000000cbbfb3400000000000cbbfd5400000000000cbbfd2a00000000000cb3feae00000000000cbbfd0c00000000000cbbf8e800000000000cb3fff800000000000cbbff5400000000000cb3fd9a00000000000cb3fe3800000000000cb3ff5a00000000000cbbfda000000000000cbbfe6400000000000cb3fcd800000000000cb3ff4c00000000000cb3fd3400000000000cbbfd9a00000000000cb3fef400000000000cbbfc6c00000000000cbbfdf600000000000cb3ffe400000000000cb3ff3200000000000cbbfed000000000000cbbfe6000000000000cb3ff3800000000000cbbfa3800000000000cb3fbce00000000000cb3fb3000000000000cb3ff1800000000000cbbfd0000000000000cb3fed800000000000cbbfde000000000000cb3ffa800000000000cb3fb4e00000000000cbbff0400000000000cbbfeb800000000000cbbfc1800000000000cbbfa3000000000000cbbfcbc00000000000cbbfa5800000000000cbbfe3000000000000cbbfcd000000000000cbbfe3800000000000cb3fe6400000000000cb3fea000000000000cbbfe8c00000000000cbbfe3e00000000000cbbffd400000000000cb3ff5200000000000cbbff4a00000000000cb3fd3600000000000cbc002800000000000cb3fd7000000000000cb3fe0200000000000cb3fef000000000000cb3ff3c00000000000cb3ff3a00000000000cb3ffa600000000000cb3fdb600000000000cbbfeb600000000000cbbfd2600000000000cbbfe0e00000000000cbbff7c00000000000cbbfec800000000000cbbfb4400000000000cb3ff9c00000000000cbbff2e00000000000cb3ff6800000000000cb3feac00000000000cb3fd5000000000000cbbfd2400000000000cb4004600000000000cb3ff6000000000000cbbff2c00000000000cbbfe0600000000000cbbff0800000000000cbbfe5e00000000000cb3ffcc00000000000cbbfd4600000000000cbbfc8a00000000000cbbfb6c00000000000cbbff0a00000000000cbbfd6000000000000cbbfe1000000000000cbbfcf400000000000cbbfec800000000000cbbfef800000000000cbbfe2400000000000cb3ff4200000000000cbbffc200000000000cbbfda200000000000cbbfe4600000000000cbbff5c00000000000cb3fe1200000000000cbc000400000000000cb4003a00000000000cbbfee800000000000cbbfb4a00000000000cb3feaa00000000000cbbffee00000000000cb3fef600000000000cbbfec600000000000cbbff3600000000000cbbff9800000000000cb3fe2e00000000000cbbfc3a00000000000cbbfc6600000000000cbbf9c200000000000cbbfeaa00000000000cbbfc5000000000000cbbff0c00000000000cbbfefc00000000000cbbfee600000000000cbbfdac00000000000cbbff3200000000000cb3fe0a00000000000cbbfdac00000000000cb3fdd000000000000cbbff9a00000000000cbbff6c00000000000cb3ff5400000000000cbbfd0200000000000cbbfd1200000000000cb3fe5400000000000cbbff0400000000000cbbff1200000000000cbbffbc00000000000cbbfe6400000000000cbbfffc00000000000cb3ff3200000000000cb3ff3a00000000000cbbff4e00000000000cbbfddc00000000000cbbfece00000000000cb3ff5c00000000000cb3fd7e00000000000cb3feee00000000000cbbfbc400000000000cb3fd0400000000000cbbfa4a00000000000cbbfa5600000000000cb3fd2400000000000cb3fdc800000000000cb3ff5000000000000cbbfc5800000000000cb3fe0c00000000000cbbff6400000000000cbbff2600000000000cb3fe3a00000000000cbbfd5800000000000cb3fe7200000000000cb3fb3a00000000000cbbfe6a00000000000cbbfe5200000000000cb3fd2000000000000cb3ff2800000000000cbbfd7400000000000cb3fe4200000000000cb3fd8400000000000cbbfd5200000000000cb3ff2800000000000cb3fb8600000000000cbbff6a00000000000cbbfeae00000000000cb3f95400000000000cb3fb4600000000000cb3fb7200000000000cb3ff1000000000000cb3ff5800000000000cb3fd7e00000000000cb3fd7000000000000cb3fd3800000000000cb3ff6200000000000cbbfd3400000000000cbbfe2400000000000cbbfc8e00000000000cbbfcbe00000000000cb3fe4400000000000cb3feda00000000000cbbff3400000000000cbbfe2400000000000cb3fd2200000000000cbbfdbc00000000000cb3ffaa00000000000cbbffa200000000000cbbfe2800000000000cbbfc4600000000000cb3fe7400000000000cb3f61800000000000cbbfd5a00000000000cbbfe6c00000000000cbbff1400000000000cb3ff5600000000000cbbff6400000000000cb3fef000000000000cbbff0e00000000000cbbfe1600000000000cb3fb3c00000000000cb3ff0800000000000cbbfdac00000000000cbbff5e00000000000cbbfea200000000000cbbfef800000000000cb3fff800000000000cbbfeca00000000000cbbfdd000000000000cbbfca200000000000cbbfde000000000000cbbfdf800000000000cb3fede00000000000cbbfcca00000000000cbbfda000000000000cbbfd6600000000000cb3fe0000000000000cb3ff6800000000000cbbf72000000000000cb3fe4200000000000cbbfb0000000000000cbbfe0a00000000000cb3ffa600000000000cbbfe6000000000000cbbff7a00000000000cbbffe200000000000cb3f71c00000000000cb3fe3600000000000cb4004400000000000cb3fe4200000000000cb3fa7a00000000000cbbfe2400000000000cbbff2600000000000cb4006c00000000000cb3fea800000000000cbbfe1200000000000cbbfe9400000000000cb3fd6200000000000cbbfe8c00000000000cbbff2200000000000cbbff7c00000000000cb3fb7c00000000000cb3fdba00000000000cbbfe8c00000000000cb3fe7c00000000000cb3ff3800000000000cbbfeda00000000000cbbfce600000000000cbbfef000000000000cbbffd200000000000cbbfd8a00000000000cb3fe5000000000000cbbfb8800000000000cbbfd4000000000000cbbfe0000000000000cb3fc6200000000000cb3fdf600000000000cbbfeb200000000000cbbfab800000000000cbbfdbc00000000000cbbfc4400000000000cb3ff6c00000000000cbbff3a00000000000cb3fa2e00000000000cb3ffb400000000000cb3ff5400000000000cb3ff9200000000000cb3fcc600000000000cbbfd8000000000000cbbfd6000000000000cbbfa6400000000000cbbff4c00000000000cbbff0a00000000000cbbfe7e00000000000cbbfd9200000000000cbbfd3400000000000cb3fe6000000000000cbbfac800000000000cb3fd5800000000000cbbffa800000000000cbbff2600000000000cb3fd0200000000000cbbfdac00000000000cb3fb5e00000000000cb3f8c400000000000cbbfc6400000000000cbbfece00000000000cbbfb2000000000000cb3fda800000000000cb3feee00000000000cbbfeb200000000000cb3ff8600000000000cb3fd2200000000000cbbfde400000000000cb3fe5e00000000000cbbff6a00000000000cb3fd2000000000000cb3fe9800000000000cbbff8000000000000cbbfda600000000000cbbfdba00000000000cbbff3000000000000cb3ff4600000000000cb3ff3a00000000000cb3ff1400000000000cbbfe1e00000000000cb3fe8800000000000cb3fa1800000000000cbbffd200000000000cbbfe7800000000000cb3ffba00000000000cb3faf400000000000cb3fe5800000000000cbc003c00000000000cbbfd2c00000000000cb3fed800000000000cbbfd5000000000000cbbfd8000000000000cbbff7c00000000000cbbfeb800000000000cbbfd9600000000000cbbfe7000000000000cb3ff5a00000000000fecb3fee800000000000cb3fe8200000000000cb3fd2000000000000cbbffa800000000000cbbfc4600000000000cb3fdb600000000000cbbff8c00000000000cbc000200000000000cbbfc3400000000000cb3feb400000000000cbbfc6600000000000cbbff4400000000000cb3fec400000000000cb3ffda00000000000cb3ff6800000000000cbbff0a00000000000cbbfc1a00000000000cb3fe4c00000000000cbbffe800000000000cb3fcb200000000000cb3fe5200000000000cb4003000000000000cbbfde600000000000cbbfddc00000000000cb3ff7c00000000000cb3ff5200000000000cbbfd5a00000000000cbbfee600000000000cbbfd7e00000000000cb3fe4a00000000000cb3ff8400000000000cb3ff3c00000000000cbbfc2a00000000000cb3fc7c00000000000cb3fd9400000000000cb3fe5800000000000cb3ff3400000000000cb3fa8c00000000000cbbfb3200000000000cbbfb7400000000000cb3ff2c00000000000cbbfbe400000000000cb3ff3400000000000cbbff4000000000000cb3fcb800000000000cbbfedc00000000000cbbfdd000000000000cb3fae800000000000cb3fba400000000000cb3fe1800000000000cb3fec000000000000cb3ff1800000000000cb3fd8400000000000cbbffa400000000000cbbfbf400000000000a13983a46e616d65a850726f6475637432a7636f6e74657874a0a9656d62656464696e67dc0400cb3fe3400000000000cb3fe3e00000000000cb3ff6000000000000cb3fe2400000000000cbbfe8800000000000cbbfcba00000000000cbbfb5c00000000000cb3feca00000000000cbbf8d800000000000cb3fe4400000000000cb3ff2400000000000cb3fe6c00000000000cbbff0a00000000000cbbfcf400000000000cb3ff0400000000000cb3ff3200000000000cb3fd9000000000000cb3fe6600000000000cb3ff6600000000000cb3fcde00000000000cbc001600000000000cbbfe9600000000000cb3ffa800000000000cb3fe5c00000000000cb3feaa00000000000cbbf98800000000000cbbff0e00000000000cb4001600000000000cbbfd2e00000000000cb3fea200000000000cb3fe1e00000000000cb3fef200000000000cbbfdf400000000000cbbfee800000000000cb3fbb600000000000cbbfd2400000000000cbbfda200000000000cb3fd1000000000000cb3fbac00000000000cbbff4200000000000cb3fdc600000000000cb3fe5000000000000cbbfeb400000000000cbbff4e00000000000cb3ffe800000000000cbbfeec00000000000cbc000200000000000cb3fd0a00000000000cbbfe1600000000000cbbfdea00000000000cbbfe9400000000000cbbfcb600000000000cbbfd2200000000000cbbfeb400000000000cb3ffa400000000000cbbff3c00000000000cbbfee200000000000cb3fe5000000000000cb3fe6600000000000cbbfef000000000000cb3ff3a00000000000cb3fe2200000000000cbbff0a00000000000cb3fe6200000000000cbbfd3000000000000cbbfe0600000000000cb3feb800000000000cb3f98a00000000000cbbffb400000000000cb3fd1400000000000cb3fe2800000000000cbbff4000000000000cb3fe7200000000000cb3ff8800000000000cbbff9c00000000000cbbfd6800000000000cbbff0a00000000000cb3ff2600000000000cbbff4a00000000000cb3fdc400000000000cb3ff3400000000000cb3fd6800000000000cbc000800000000000cb3ff8600000000000cbbfeee00000000000cb3fd7000000000000cbbfe8a00000000000cbbff6400000000000cb3fd9600000000000cbbfcfe00000000000cbbfd0e00000000000cb3ff0a00000000000cbbf94200000000000cbbff7a00000000000cb3ffd400000000000cb3fd2400000000000cb3fdea00000000000cbbfde400000000000cbbfd5c00000000000cb3fe1a00000000000cb3fe3a00000000000cb3fe8000000000000cb3ff6600000000000cb3fdb400000000000cbbfdf000000000000cb3ff6c00000000000cbbfde200000000000cbbfeae00000000000cb3ffd800000000000cbbff9800000000000cbbfbb000000000000cb3fe6c00000000000cb4003200000000000cb3ff5200000000000cb3fdb000000000000cb3ffb000000000000cbbff8000000000000cb3ff5a00000000000cbbff3200000000000cbbff1200000000000cb3ff1c00000000000cb3fbfc00000000000cb3fe5000000000000cbbfe0a00000000000cbbff1e00000000000cbbfc2c00000000000cb3fe7e00000000000cb3fde200000000000cb3ff9000000000000cbbffaa00000000000cbbf84000000000000cb3ff0a00000000000cb4005000000000000cb3fb2e00000000000cb3ff4e00000000000cb3fe4c00000000000cbbff0e00000000000cbc004800000000000cbbff1000000000000cb3ff4400000000000cb3ffb400000000000cbbfd1400000000000cb3ff9c00000000000cbbfda000000000000cbbf99400000000000cb3ffa000000000000cbbff3400000000000cbbff2200000000000cb3fd6800000000000cb3fd5c00000000000cbbffe600000000000cb3f40000000000000cbbfe3800000000000cb3ffea00000000000cb3ff4e00000000000cb3ff0e00000000000cbbfec000000000000cb3fd7800000000000cbbff4600000000000cbbfec400000000000cbbfe4000000000000cb3fe8400000000000cb3fef400000000000cbbff4e00000000000cb3fe8a00000000000cb3fa3800000000000cbbfd0e00000000000cbbfd4e00000000000cbbffa400000000000cb3ff8600000000000cb3feb800000000000cb3ffc200000000000cb3fe9c00000000000cb3ff7000000000000cbbfe9600000000000cbbfd7e00000000000cbbff4000000000000cbbfe1e00000000000cb3fd4000000000000cbbff1800000000000cbbf91200000000000cb3fec000000000000cbbfc0a00000000000cbbff3800000000000cbbfc9200000000000cbbfd1e00000000000cbbfe7800000000000cb3fd4400000000000cbbfcd000000000000cbbffb400000000000cbbff1400000000000cb3fd7800000000000cb3feb800000000000cb3fc6200000000000cbbfec400000000000cb3fe1a00000000000cbbfcb400000000000cb3f89000000000000cbbfe0400000000000cb3fde000000000000cb3fc5400000000000cb3ff0200000000000cb3fe7800000000000cb3feb200000000000cbbfe6a00000000000cbbfd2400000000000cb3fe1800000000000cbbfec600000000000cbbfda200000000000cbbff5e00000000000cb3ff0800000000000cbbff2a00000000000cb3fef000000000000cb3fc4e00000000000cb3fe0200000000000cb3fb9000000000000cb3fe8600000000000cb3ffec00000000000cb3fb2e00000000000cb3ff0200000000000cb3fd9600000000000cbbff4800000000000cb3fd2a00000000000cbbff6e00000000000cbbfe6a00000000000cb3fefe00000000000cbbfe9800000000000cb3fda200000000000cb3fc5000000000000cbbfeaa00000000000cb3fe0200000000000cb3fa1c00000000000cbbfd7000000000000cbbfdac00000000000cb3febe00000000000cb3fdca00000000000cb3feee00000000000cb3fd6800000000000cb3fdca00000000000cbbfe2800000000000cb3ff3800000000000cbbfb6c00000000000cb3fee800000000000cbbfff600000000000cbbff1e00000000000cb3fe7200000000000cbbff9000000000000cbbfc4c00000000000cbbff3e00000000000cb3ff2400000000000cb3fdc200000000000cb3ffca00000000000cb3fda600000000000cbbffb000000000000cbbfd1200000000000cb3ff2c00000000000cb3fc7400000000000cbbfd5800000000000cb3fc7400000000000cbbfe8000000000000cb3f87e00000000000cbbfc1400000000000cbbfe5800000000000cbbfe0c00000000000cbbfe0000000000000cbc000c00000000000cbbfb9c00000000000cb3ff2a00000000000cb3fd8800000000000cbbfcba00000000000cb3fc3200000000000cbbfe2e00000000000cb3fd3a00000000000cbbff1000000000000cb3fd5400000000000cb3fe1e00000000000cb3ff8800000000000cb3fe4800000000000cbbff5400000000000cbbff5800000000000cb3fefe00000000000cb3fe6600000000000cbbfc0c00000000000cb3ff4200000000000cbbfd1c00000000000cb3fd7600000000000cbbfeec00000000000cbbfe9200000000000cbbff0c00000000000cb3ff3400000000000cb3ff1800000000000cb3ffde00000000000cbbff2200000000000cb3fd0600000000000cbbfee000000000000cbbfffe00000000000cbbfd4c00000000000cbbfe1c00000000000cb3ffec00000000000cbbfd7200000000000cb3fe2600000000000cbbffa800000000000cb3fe8e00000000000cb3fe8c00000000000cbbff0e00000000000cb3fe8600000000000cbbfcee00000000000cb3fc4600000000000cbc001600000000000cbbfc4600000000000cbbffb400000000000cb3fe2600000000000cbbfd5e00000000000cbbfb7000000000000cbbfe4e00000000000cb3febc00000000000cb3ff8800000000000cb4001e00000000000cb3fb4600000000000cbbff7400000000000cb3ff2800000000000cb3fec600000000000cb3fe7e00000000000cbbff3c00000000000cbbfd7600000000000cb3fe0a00000000000cbbfdb800000000000cb3fe6e00000000000cbbfdca00000000000cb3ff4400000000000cbbfcaa00000000000cbbfdfa00000000000cbbff2600000000000cb3fea200000000000cb3fdd000000000000cbbfb3a00000000000cb3fe9600000000000cbbfd9200000000000cb3fd9600000000000cb3fe9800000000000cbc001600000000000cb3fe3a00000000000cbbfa6600000000000cbc003e00000000000cb3feae00000000000cb3fc0a00000000000cb3fdec00000000000cbbfd0400000000000cbbfc6e00000000000cbbfeda00000000000cbbfe4400000000000cb3feac00000000000cb4009400000000000cbbfe7e00000000000cbbfe1c00000000000cbbfd4c00000000000cb3fe9600000000000cb3fbe600000000000cb3feee00000000000cbbfe0c00000000000cbbfc4e00000000000cbbfe3c00000000000cbbfe1a00000000000cb3fc9600000000000cbbff360000000000002cbbfe6200000000000cbbfdaa00000000000cb3fb4400000000000cbbfd1000000000000cb3fd5200000000000cb3fdaa00000000000cbbff0a00000000000cb3ff4c00000000000cb3fe7400000000000cb3ff4000000000000cb3fb3c00000000000cb3feec00000000000cbbffb000000000000cbbff3a00000000000cbbfe9800000000000cb4001400000000000cbbfe2e00000000000cb4001600000000000cbbfd2000000000000cbc001c00000000000cbbfe8200000000000cbbfe6200000000000cb3fc1e00000000000cbbfde800000000000cb3ff2800000000000cb3ff4c00000000000cbbfc2400000000000cb3ff1400000000000cbbfe4a00000000000cb3fe2200000000000cbbfce000000000000cbbfe9a00000000000cbbfce000000000000cbbfe3a00000000000cbbfd0200000000000cb3fe6600000000000cb3fe7c00000000000cb3febc00000000000cb3ff3a00000000000ffcb3ff5a00000000000cbbfd8800000000000cb3ff1800000000000cbbff0600000000000cbbfd7600000000000cb3f9b800000000000cb3fe2400000000000cb3fb1800000000000cbbfe7c00000000000cbbf81800000000000cb3ff7800000000000cb3ff0c00000000000cbbfdec00000000000cbbff4c00000000000cb3fd580000000000001cb3ff3800000000000cbbfee400000000000cb3f9ce00000000000cb3fc3000000000000cbbfd1800000000000cbbfc9c00000000000cbbffd400000000000cb3fde800000000000cbbff8e00000000000cb3fec800000000000cb3ffd400000000000cb3ff1c00000000000cb3fe8800000000000cbbff1c00000000000cb3fbde00000000000cbbfe1e00000000000cbbfcaa00000000000cbbfe5200000000000cb3fe5800000000000cb3fe9000000000000cb3ff7400000000000cb3ff2400000000000cbbfd3c00000000000cbbff9200000000000cb3fff000000000000cbbff1e00000000000cbbfed600000000000cb3feca00000000000cb3fbcc00000000000cb3fb5800000000000cbbff2800000000000cbbfcb400000000000cbbfd9000000000000cbbffbe00000000000cb3ffaa00000000000cb3fefe00000000000cb3ff2200000000000cbc004c00000000000cb3fc8a00000000000cb3ff3000000000000cbbfc7800000000000fecb4002400000000000cb3fef800000000000cb3fcc800000000000cb3fa9800000000000cbbff7400000000000cbbff6800000000000cbbfd9400000000000cb3fd4c00000000000cbbfc5800000000000cb3fe9400000000000cbbfd1000000000000cb3fecc00000000000cbbff8e00000000000cbbff8600000000000cb3fe8c00000000000cbbff1c00000000000cbbff8200000000000cb3fe3c00000000000cb3fd7000000000000cb3fdbc00000000000cbbfc6a00000000000cb3fd2200000000000cbbfe4e00000000000cb3ff3800000000000cb3fe2c00000000000cbbfc7c00000000000cbbf97c00000000000cb3fc6800000000000cb3febc00000000000cbbff0c00000000000cb3fbc000000000000cb4000c00000000000cbc004a00000000000cb4000400000000000cb3fcf200000000000cb3fd1800000000000cb3fe3600000000000cbbff7600000000000cbbfe5400000000000cb4004400000000000cbbf97000000000000cbbfd2a00000000000cbbfd6c00000000000cb3ff2a00000000000cb3ffd400000000000cbbfc8400000000000cb3fccc00000000000cbbfd1e00000000000cbbfebe00000000000cbbfe2600000000000cbbff2600000000000cb3ff1800000000000cb3f97c00000000000cb3ff0c00000000000cbbfa0e00000000000cb3ff4000000000000cb3ff9200000000000cbbff7c00000000000cb3fe4c00000000000cb3ffb200000000000cbbfdd800000000000cbbff7000000000000cb3ff1200000000000cb3fe0600000000000cbc000600000000000cb3fe0000000000000cb3ff0400000000000cb3fcbe00000000000cbbfe7400000000000cbbff1c00000000000cb3fdb200000000000cbbff1600000000000cbbfe2200000000000cbbfd6200000000000cb3fd6e00000000000cb3fd3e00000000000cb3fb6200000000000cbbfd8000000000000cbbfa3000000000000cb3ff0400000000000cb4005e00000000000cb3fcf000000000000cbbfe9800000000000cb3fe6a00000000000cbbfeba00000000000cbbff2000000000000cbbfd7800000000000cb3fe5600000000000cb3fe5600000000000cb3fe6800000000000cbbfe1e00000000000cbbfb5a00000000000cbbff7600000000000cbbfd3200000000000cbbfba000000000000cbc004a00000000000cbbfe4a00000000000cbbfd8400000000000cbbfd1e00000000000cb3fd5c00000000000cb3ff3600000000000cb3ff5c00000000000cb3fd7600000000000cb3fa3c00000000000cb3fe1600000000000cb3fc9400000000000cb3fd7e00000000000cbbfb3600000000000cb3ff3600000000000cbbfeb800000000000cbbfda400000000000cbbfeaa00000000000cb3fe1000000000000cbbfc2c00000000000cbbfe9e00000000000cb3fd0400000000000cbbfdd600000000000cb3fb3e00000000000cb3fe6c00000000000cbbfe3000000000000cbbfc9200000000000cbbffca00000000000cbbfd4c00000000000cb3fe3c00000000000cbbffaa00000000000cb3fca800000000000cb3fc6400000000000cbbfb0c00000000000cb3fe8200000000000cb3ffac00000000000cb3fc1800000000000cb3fe1200000000000cb3fe2200000000000cb3fe6800000000000cbbff5a00000000000cb3fdb600000000000cb3fe4800000000000cbc002e00000000000cb3fcea00000000000cbbfe6e00000000000cbbfe1e00000000000cb3fe6a00000000000cbbfddc00000000000cbbff0400000000000cbc002a00000000000cbbfb5c00000000000cbbfcda00000000000cb3ff1c00000000000cb3ff6000000000000cbbffce00000000000cb3fc3000000000000cb3ff1a00000000000cb3fe6a00000000000cb3fb2800000000000cb3fccc00000000000cb3feec00000000000cbbff2c00000000000cb3fdee00000000000cbbff8a00000000000cbbfe9a00000000000cbbff3600000000000cbbfd4600000000000cbbfd8e00000000000cbbfd2800000000000cbbff8000000000000cb3fd6a00000000000cb3ff2a00000000000cb3fdb000000000000cbbfd7800000000000cb3fe6600000000000cbbfb9000000000000cbbfc6800000000000cbbfe5400000000000cb3fba400000000000cbbfbcc00000000000cb3fe2800000000000cbbffc000000000000cbbfe3400000000000cb3fcda00000000000cbbff2600000000000cb3febc00000000000cbbfb2400000000000cbc003000000000000cb3fdd400000000000cbbfb7800000000000cb3fd5a00000000000cbbfb9c00000000000cb3feae00000000000cbbfa7200000000000cb3fe6000000000000cb3ff1200000000000cbc000a00000000000cb3fcec00000000000cb3f7d000000000000cb3ff5e00000000000cbbff2a00000000000cbbfdc000000000000cb3fe3600000000000cb3fe9600000000000cbbff2e00000000000cbbfe6400000000000cb3fe8200000000000cb3fe5c00000000000cbbfc1400000000000cb3ff1800000000000cb3ff2200000000000cb3fe7800000000000cbbfc7400000000000cb3ff6c00000000000cb3fc6000000000000cbbfc4800000000000cb3fe7a00000000000cb3ff4800000000000cbbfe8a00000000000cb3ff6a00000000000cb3fb0600000000000cbbfdf800000000000cbbfe2400000000000cbbfd0600000000000cbbfe2400000000000cbbff1800000000000cb3fe8c00000000000cbbfe1a00000000000cbbfc8000000000000cbbf8ac00000000000cbbff6200000000000cbbfe9a00000000000cb3fda000000000000cb3fe9000000000000cbbff2e00000000000cbbffaa00000000000cbbff1a00000000000cb3fdfc00000000000cbbfd0200000000000cb3fcc400000000000cbbffb400000000000cb3fd4200000000000cb3ff7600000000000cb3fe7c00000000000cb3fdee00000000000cb3ff8800000000000cb3ff5c00000000000cb3fe0a00000000000cb3fcd200000000000cb3fe7800000000000cbbfe6a00000000000cbbfe6400000000000cbbfe7000000000000cbbfc4000000000000cb3feac00000000000cbbfeec00000000000cb3ffa600000000000cb3fe5800000000000cb3fea200000000000cbbfd9600000000000cb4005600000000000cb3fef400000000000cb3fcb600000000000cbbfd0e00000000000cbbfefa00000000000cbbfeec00000000000cb3ff0e00000000000cbbfd4800000000000cb3fe9400000000000cbbfe4c00000000000cbbfee200000000000cbbff2600000000000cb3fc4e00000000000cbbfc1e00000000000cbbff1200000000000cb3fd4200000000000cbbfbb800000000000cb3ff1000000000000cbbffc400000000000cb3fd6a00000000000cbbff5200000000000cbbfe2a00000000000cbbfba200000000000cbbff2800000000000cb3fff800000000000cbbff2400000000000cb3fd8400000000000cb3ff3400000000000cbbff7c00000000000cb3ff3600000000000cbbff1200000000000cbbfebc00000000000cbbff4000000000000cb3fdc800000000000cbbfd1800000000000cbbfe2600000000000cbbfd3600000000000cbbfb0e00000000000cb3fd4400000000000cbbff8400000000000cbbfd3400000000000cbbfee800000000000cbbff2800000000000cbbff6600000000000cbbfc5e00000000000cbbfe2000000000000cb3fe0c00000000000cbbffb200000000000cbbfbb200000000000cb3ff0200000000000cbbfe0600000000000cbbfe3400000000000cb3ff4400000000000ffcbbff7600000000000cbbfcf400000000000cbbfe8600000000000cbbffa400000000000cb3feda00000000000cb3ff6000000000000cbbfe9000000000000cbbff9000000000000cbbff5600000000000cb3fe6200000000000cb3fe7a00000000000cb3fe5600000000000cbbfe7600000000000cb3fb7a00000000000cbbfd9400000000000cb3fdc200000000000cbbfe1200000000000cb3fc0a00000000000cb3fe1400000000000cbbfe9e00000000000cb3ff4200000000000cbbfe9800000000000cbbfe9800000000000cb3fde400000000000cbbfb2200000000000cb3ff2800000000000cb3fd6000000000000cb3fe7800000000000cbbfe2400000000000cb3ff5800000000000cb3fefe00000000000cbbff4e00000000000cb3fe6a00000000000cb3fe2e00000000000cbbfc6200000000000cb3feca00000000000cb3fdf200000000000cbc002e00000000000cbbfc4600000000000cbbfc5800000000000cbbff5400000000000cbbff6000000000000cb3ff8c00000000000cb3ff5600000000000cb3ff5000000000000cb3fe0200000000000cbbfe0200000000000cb3fe7a00000000000cbbfeb800000000000cbbfe6800000000000cb3fe1e00000000000cb3fde800000000000cb3fc3600000000000cb3fe9e00000000000cbbff4000000000000cbbfef800000000000cb3ff2a00000000000cbbfe6200000000000cb3ffd600000000000cbbfe2000000000000cb3f91000000000000cb3fcf600000000000cb3feba00000000000cb3fc4c00000000000cb3fbe800000000000cbbff3000000000000cb3fe1a00000000000cb3fe7a00000000000cb3fd4000000000000cb3ff1600000000000cbbff1c00000000000cb3fcc200000000000cb3fea600000000000cb3fe8e00000000000cbbfe6c00000000000cbbfc5c00000000000cbbfe3c00000000000cbbfd6400000000000cb3ffc800000000000cbbfef600000000000cbbfe0c00000000000cbbfdbc00000000000cbbff0200000000000cbbfc8400000000000cb3fdb200000000000cbbff0e00000000000cb3fdd400000000000cb3fcdc00000000000cbbf9de00000000000cb3fdc200000000000cbbfc2200000000000cbbfece00000000000cbbfed200000000000cb3fdc200000000000cb3ff0a00000000000cbbffda00000000000cbbfdc400000000000cbbff4200000000000cb3fdc000000000000cb3fdac00000000000cb4006000000000000cb3fea000000000000cb3fab000000000000cbbfe3400000000000cbbfe0e00000000000cb3ff8400000000000cb3ff1e00000000000cbbfe5200000000000cbbfdcc00000000000cbbfc4200000000000cbbfe2e00000000000cbbfc6800000000000cb3fb7800000000000cbbfe8c00000000000cb3fcf800000000000cbbf86600000000000cb3fd9200000000000cb3fd2600000000000cbbfe2e00000000000cbbfe1400000000000cbbff4000000000000cbbffe200000000000cb3fb3600000000000cb3fdc800000000000cb3fe9800000000000cb3fbe200000000000cb3fd6a00000000000cbbfea800000000000cb3fedc00000000000cbbff0800000000000cbbfdbe00000000000cb3fe0a00000000000cbbfef400000000000cb4002000000000000cbbff4c00000000000cb3fdc800000000000cb3ff1c00000000000cb3fde600000000000cb3ff2000000000000cb3fee400000000000cb3ff3000000000000cbbfe0600000000000cb3fbb400000000000cbbff7200000000000cbbffa400000000000cbbfe4600000000000cbbff2600000000000cbbff1a00000000000cb3fe3800000000000cb3fee600000000000cb3fe5600000000000cbbff6e00000000000cbbff3a00000000000cb3fe1600000000000cbbfc1000000000000cbbfdfe00000000000cb3fd4800000000000cb3ff4400000000000cb3fbac00000000000cbbfe7800000000000cb3fd9e00000000000cb3fbfe00000000000cbbff1400000000000cb3ff2800000000000cb3fe6a00000000000cbbff8600000000000cb3ff3400000000000cbbfd4c00000000000cb3fd1400000000000cb3ff4a00000000000cb3fa4c00000000000cb3fa4600000000000cb3fdac00000000000cbbff4e00000000000cb3fe6800000000000cbbfc6800000000000cb3fd6a00000000000cbbfd4800000000000cb3fef000000000000cbbfbe200000000000cbbffda00000000000cbbfdc600000000000cb3ff2e00000000000cbbff1a00000000000cb3ff7c00000000000cbc001c00000000000cbbfd5000000000000cb3fe4600000000000cb3fe1c00000000000cbbfdd400000000000cbbff0400000000000cbbff2c00000000000cbbfea600000000000cbbfe3200000000000cb3ff7200000000000cbbff2a00000000000cb3fb6400000000000cb3ff9c00000000000cb3feb200000000000cbbff5200000000000cb3fe0e00000000000cb3fd1400000000000cbbff6e00000000000cbc000400000000000cbbfe8400000000000cb3ff4c00000000000cbbfdcc00000000000cbbfe8800000000000cb3ff6600000000000cb4001c00000000000cb3ffda00000000000cbbfe6800000000000cb3fb5600000000000cbbfe7a00000000000cbbff8000000000000cbbfcd000000000000cb3ffc600000000000cb3ffb200000000000cb3ff7c00000000000cbbff6800000000000cb3ffba00000000000cb3fc2c00000000000cbbfdba00000000000cbbfc5e00000000000cbbfe1200000000000cb3fe6400000000000cb3feaa00000000000cb3fe1000000000000cb3fda800000000000cb3ff0e00000000000cb3fe5400000000000cb3ff0800000000000cb3fd0400000000000cbbfcf800000000000cb3fa7a00000000000cbbfef200000000000cb3fa4800000000000cbbfedc00000000000cb3ff6a00000000000cbbffdc00000000000cb3fe8400000000000cbbfeec00000000000cb3fce800000000000cb3fe9c00000000000cbbfde200000000000cb3ff9200000000000cb3ff5200000000000cbbfd1600000000000cb3fe3200000000000cbbff7a00000000000cb3fe1e00000000000a2313083a46e616d65a443617365a7636f6e74657874a0a9656d62656464696e67dc0400cb3fab000000000000cb3fc1400000000000cb3ff3c00000000000cb3fd9600000000000cbbfe5000000000000cb3f97600000000000cb3fd3800000000000cb3ff5a00000000000cb3ff6400000000000cb3ff2a00000000000cb3feb800000000000cb3fb8000000000000cbbff3c00000000000cbbfd1400000000000cb3fec800000000000cb3ffc200000000000cb3ff0200000000000cb3fd2a0000000000001cb3ff3e00000000000cbc007a00000000000cbbfa8200000000000cb3ff6600000000000cb3ff8600000000000cb3fd5400000000000cb3fba200000000000cbbfea400000000000cb4002e00000000000cbbfc8e00000000000cb3fdc800000000000cb3fe6000000000000cb3ff0600000000000cb3fdb400000000000cbbff0200000000000cbbfed200000000000cbbfcb200000000000cb3fec800000000000cb3fd9000000000000cb3ff0a00000000000cbbff4c00000000000cb3ff9600000000000cb3fd9c00000000000cbbff1000000000000cbbfe2400000000000cb3ffea00000000000cbbfe1400000000000cbbff4800000000000cbbfd7600000000000cbbfe1800000000000cbbff1c00000000000cbbfd1600000000000cbbfdd400000000000cbbfa1800000000000cb3fcfe00000000000cb3ff6000000000000cbbffa000000000000cbbfc7000000000000cb3ff3000000000000cb3fe0400000000000cbbfec800000000000cb3ff3200000000000cb3fe2600000000000cbbfccc00000000000cbbfde000000000000cbbfcaa00000000000cb3fd1400000000000cb3fece00000000000cb3fc4000000000000cbbfcd000000000000cbbfae800000000000cb3f60000000000000cbbfed000000000000cb4000400000000000cb3ff1e00000000000cbbff2a00000000000cbbfe7000000000000cbbfdfc00000000000cb3fdfa00000000000cbbff0e00000000000cb3fce000000000000cb3fefe00000000000cb3fd4a00000000000cbc005800000000000cb3fe6400000000000cbbfc5400000000000cbbfcdc00000000000cbbfa7a00000000000cbbfea800000000000cb3fe1e00000000000cb3fb5800000000000cb3fb3e00000000000cb3fcd400000000000cbbfe0800000000000cbbff3400000000000cb3ff0800000000000cb3fd0800000000000cb3fbe200000000000cb3faaa00000000000cbbfe7a00000000000cb3fe8000000000000cb3fe7600000000000cb3fe0200000000000cb3ffa000000000000cb3f8b800000000000cbbfe7c00000000000cb3ff6800000000000cbbffe600000000000cbbfe1000000000000cb3ff0a00000000000cbbff4c00000000000cbbfe1e00000000000cb3fed800000000000cb4005200000000000cb3ff5a00000000000cb3fe6800000000000cb3fec400000000000cbbfef400000000000cb3fe7e00000000000cbbfc3400000000000ffcb3ff8600000000000cb3fdea00000000000cb3fd3600000000000cbbfce400000000000cbbff7400000000000cbbfe0600000000000cb3fea200000000000cb3fdc400000000000cb3fe3e00000000000cbbff3600000000000cbbfbb600000000000cb3ff4200000000000cb4005000000000000cb3fe5e00000000000cb4002600000000000cb3fe5200000000000cbbfd3c00000000000cbbff2200000000000cbbfd4600000000000cb3ff6400000000000cb3ff2c00000000000cb3fe9000000000000cb3fdfa00000000000cbbff3600000000000cbbfb8a00000000000cb3ff2c00000000000cbbfd5400000000000cbbfed600000000000cbbfe7800000000000cb3fcb800000000000cbbff4e00000000000cbbfd7000000000000cbbff1000000000000cb3ff2600000000000cb3ff8e00000000000cb3ff3600000000000cbbfe2c00000000000cb3fe8c00000000000cbc000a00000000000cbbfeee00000000000cbbffca00000000000cb3fc2000000000000cb3fffe00000000000cbbfee400000000000cb3fe3800000000000cb3fe2200000000000cbbfe6e00000000000cbbff3800000000000cbbff5600000000000cb3ff3600000000000cb3fda000000000000cb4002600000000000cb3feae00000000000cb3ff5e00000000000cb3fd9400000000000cbbfc2800000000000cbbff4600000000000cbbfac200000000000cb3feae00000000000cbbfe3400000000000cbbfe4e00000000000cb3ff8e00000000000cbbfa9600000000000cbbff7000000000000cbbfe7800000000000cb3fd5800000000000cbbffa600000000000cbbfe1600000000000cb3fdb000000000000cbbff1e00000000000cbbff3c00000000000cb3ff0e00000000000cb3fd9a00000000000cb3fcb200000000000cbbff2800000000000cb3fc1400000000000cb3fc7e00000000000cbbfe7c00000000000cbbfe4e00000000000cb3fe9000000000000cb3feb800000000000cb3fd3400000000000cb3fe9c00000000000cb3fe0000000000000cbbff0e00000000000cb3fd7c00000000000cb3fbe000000000000cbbff1400000000000cb3fe5200000000000cbbff3200000000000cb4004400000000000cbbff3800000000000cb3ff2400000000000cb3fe4e00000000000cb3fa3c00000000000cbbfb2a00000000000cb3fef800000000000cb3ffcc00000000000cbbfdba00000000000cb3fe4a00000000000cb3fe1800000000000cbbfe1200000000000cb3fd0400000000000cbbff5600000000000cbbfe2800000000000cbbfbe400000000000cbbfd9c00000000000cbbfb6c00000000000cb3fd7000000000000cbbff1800000000000cb3fef000000000000cb3fd5400000000000cb3f81800000000000cb3fe7400000000000cb3fe1a00000000000cbbfc7e00000000000cb3ff9600000000000cb3fe9400000000000cb3fe9800000000000cbbfdcc00000000000cb3fe7200000000000cbbfa8e00000000000cb3fd0e00000000000cbbffcc00000000000cbbfeb200000000000cb3fc6a00000000000cbbff9400000000000cbbfbae00000000000cbbfe9200000000000cb3ff9a00000000000cb3fe7c00000000000cb3ff9e00000000000cb3feea00000000000cbc003c00000000000cbbfe2a00000000000cb3fe4200000000000cb3fe2e00000000000cbbfeee00000000000cb3fd2200000000000cbbfec000000000000cb3fd4600000000000cbbfd2000000000000cbbff8600000000000cbbfd5e00000000000cbbfe8200000000000cbbffec00000000000cbbfec200000000000cb3ff9e00000000000cb3fe9400000000000cbbfd3a00000000000cb3fbe800000000000cbbfe2600000000000cb3fe2200000000000cbbff4e00000000000cb3fd9400000000000cb3fd4400000000000cb3fe4600000000000cb3fe1600000000000cbbfe8e00000000000cbbfe3200000000000cb3ffce00000000000cb3fe7e00000000000cbbfb0a00000000000cb3fe9a00000000000cb3fd3a00000000000cb3fbba00000000000cbbfe1600000000000cbbfee400000000000cbbfb1800000000000cb3fecc00000000000cb3ff0800000000000cb3ffe800000000000cbbfeea00000000000cb3fdd600000000000cbbfcd600000000000cbc003400000000000cbbfdc200000000000cbbfe0c00000000000cb3ffbc00000000000cbbfe4c00000000000cb3ff4800000000000cb3f86800000000000cb3fe0400000000000cb3ffaa00000000000cbbfff600000000000cbbf9a000000000000cbbfe4e00000000000cb3fda800000000000cbc001600000000000cb3fec600000000000cbc003a00000000000cb3feb400000000000cbbfd2800000000000cb3fd1e00000000000cb3fd5e00000000000cb3fe6000000000000cbbf97c00000000000cb3ff1800000000000cbbfd3e00000000000cbbff5800000000000cb3ff5600000000000cb3fe4800000000000cbbfc4000000000000cbbfee200000000000cbbfdac00000000000cb3fef000000000000cbbff6200000000000cb3ff4600000000000cbbfe3400000000000cb3ffac00000000000cbbfd2c00000000000cbbfd4c00000000000cbbffdc00000000000cb3ffb800000000000cb3fc9000000000000cbbfdb800000000000cb3fc0e00000000000cb3fd8400000000000cbbfda200000000000cb3fef400000000000cbbff6800000000000cb3fde800000000000cb3ff5800000000000cbc004c00000000000cb3fea200000000000cb3fd4000000000000cb3feda00000000000cb3ff1c00000000000cbbfc7a00000000000cbbfff400000000000cbbfdfc00000000000cbbfd4600000000000cb4005a00000000000cbbfe2e00000000000cb3fd1600000000000cbbfa1e00000000000cb3fe9600000000000cbbf82e00000000000cb3fecc00000000000cb3fc7400000000000cbbfedc00000000000cbbfdb800000000000cbbff2800000000000cb3fd4c00000000000cbbffa600000000000cb3ff8c00000000000cbbffdc00000000000cbbfe4a00000000000cb3fa0400000000000cbbfb9800000000000cb3fd8200000000000cbbfef400000000000cbbfe6000000000000cb3fefa00000000000cb3fda800000000000cb3ff0a00000000000cbbfde600000000000cbbfa6400000000000cbc000200000000000cbbfe9000000000000cbbff5400000000000cb3ffac00000000000cbbfc3000000000000cb3fff600000000000cb3fe0c00000000000cbc001600000000000cbbf5e000000000000cb3fe3200000000000cb3fe0000000000000cb3fd5c00000000000cb3fea000000000000cb3fdd000000000000cb3fd1a00000000000cb3ff0600000000000cbbf97000000000000cb3fe5200000000000cbbfe6600000000000cbbff5000000000000cb3fd5c00000000000cbbfe5400000000000cbbfc9800000000000cb3ff0200000000000cb3ff9600000000000cb3fee400000000000cb3ff3800000000000cbbfe6a00000000000cb3fe8c00000000000cbbfd9000000000000cb3ff0e00000000000cbbfdd600000000000cb3ff0600000000000cb3f9f000000000000cbbfc2e00000000000cb3fe2c00000000000cb3febc00000000000cbbff1800000000000cb3ff2200000000000cb3fc2e00000000000cb3fe0800000000000cbbffa600000000000cb3ff2400000000000cb3fe0800000000000cb3ff6400000000000cbbfe9800000000000cbbf93400000000000cbbfd7800000000000cb3fd8e00000000000cbbfaa400000000000cbc000800000000000cb3fa3400000000000cbbff0a00000000000cb3ff1c00000000000cb3ff5e00000000000cb3ffee00000000000cb3ff9800000000000cbbfc2a00000000000cb3ff0c00000000000cb3fd6000000000000cbbfc2800000000000cbbff2000000000000cbbf9e800000000000cb3fc7600000000000cb3ff6600000000000cb3ff2800000000000cbbfce400000000000cbc006a00000000000cb3ff8a00000000000cbbff1c00000000000cbbfd1200000000000cb3fa7200000000000cb3fd2e00000000000cbbfaf600000000000cbbffde00000000000cbbff2400000000000cbbfe1400000000000cbbfea800000000000cb3ff6400000000000cb3fef000000000000cb3febe00000000000cbbffca00000000000cbbfad80000000000001cbbfe2a00000000000cbbffce00000000000cb3ffd400000000000cb3fc2600000000000cbbf9d000000000000cbbfc3600000000000cbbffb000000000000cbbfe6e00000000000cb3fc1a00000000000cb3fd0e00000000000cb3fd0200000000000cbbfd6600000000000cbbfb1200000000000cb3ff4200000000000cbbff1800000000000cbbfee800000000000cb3fe4a00000000000cb3fda400000000000cbbfe2000000000000cbbf91000000000000cb3ff2800000000000cb3fd3000000000000cbbfd6a00000000000cbbfd4600000000000cbbff9200000000000cb3ff6600000000000cb3feb400000000000cb3fc9400000000000cb3fec200000000000cb3f80000000000000cb3ff4600000000000cbc001000000000000cbbfc0800000000000cb3ffc400000000000cbbffba00000000000cb4006a00000000000cb3f5a000000000000cb3fd4a00000000000cb3f9a200000000000cbbff6a00000000000cbbff0800000000000cb3ffb600000000000cbbfb8400000000000cbbf97000000000000cbbf7c000000000000cbbfd0a00000000000cb3feb800000000000cbbfb1e00000000000cb3fd9c00000000000cbbfea400000000000cbbfea400000000000cbbfc3800000000000cbbfd0e00000000000cb3fe8000000000000cb3f8a800000000000cb3ff6600000000000cb3fb6400000000000cb3fd9c00000000000cb3ff3800000000000cbbffa600000000000cb3fe8c00000000000cb3ff6800000000000cbbff6200000000000cbbfeee00000000000cb3ff7800000000000cbbfc7800000000000cbbff0e00000000000cb3ff2c00000000000cb3fd6000000000000cb3fada00000000000cb3fe0400000000000cbbff5600000000000cbbfe4400000000000cbbfce200000000000cbbfcea00000000000cbbfe4200000000000cb3fd9200000000000cb3fe3c00000000000cbbff1a00000000000cb3fe6600000000000cbbfe7600000000000cb3ff8c00000000000cb4002a00000000000cb3ff3200000000000cbbff3000000000000cb3ff2c00000000000cbbfb3400000000000cbbfe2c00000000000cbbff6200000000000cb3feba00000000000cb3ff2e00000000000cb3fe3600000000000cbbfe6600000000000cbbfb4400000000000cbbfea000000000000cbbfdf200000000000cbbfbda00000000000cbbfff200000000000cb3fb8800000000000cbbfdb800000000000cb3fac200000000000cbbfcd600000000000cb3ff3600000000000cb3ff2e00000000000cbbfd3c00000000000cb3ff3800000000000cb3ff1c00000000000cbbfc3800000000000cb3fe0a00000000000cbbfb5600000000000cbbfd3a00000000000cbbfd0c00000000000cbbfc4a00000000000cbbff0c00000000000cb3ff0800000000000cb3fc7000000000000cbbffcc00000000000cb3ff5800000000000cbbff3c00000000000cbbfe0200000000000cb3ff4400000000000cbbfdf200000000000cbbfa4200000000000cbc001e00000000000cbbfb7400000000000cb3ff4800000000000cbbff2e00000000000cb3ff1e00000000000cbbff2800000000000cbbfd6400000000000cb3fcd400000000000cb3ff0600000000000cb3fe7c00000000000cbbfa1800000000000cbbf91400000000000cb3fef800000000000cbbffb800000000000cbbfc8600000000000cb3fe5000000000000cbc006000000000000cb3fdf000000000000cbbff2400000000000cbbfd0400000000000cb3fdc800000000000cbbfa8c00000000000cbbfd8a00000000000cbc002200000000000cb3fc1400000000000cbbfc8600000000000cb3fdec00000000000cb3fd2200000000000cbbffdc00000000000cbbfc2600000000000cb3febe00000000000cb3fc6c00000000000cbbfd6800000000000cb3ff0800000000000cb3fe9c00000000000cbbff6800000000000cb3ff5e00000000000cbbff4400000000000cbbfe4600000000000cbbff1c00000000000cbbfc0800000000000cbbfe4600000000000cbbfdf200000000000cbbffc400000000000cb3fc4a00000000000cb3fc8c00000000000cb3fca400000000000cb3fe2e00000000000cb3ff7000000000000cbbfe5600000000000cb3fd9e00000000000cbbfef200000000000cbbfe0e00000000000cbbfd9000000000000cb3fcec00000000000cbc006800000000000cbbfe5800000000000cbbfc2800000000000cbbffe800000000000cb3fe2c00000000000cb3fe2a00000000000cbbffc600000000000cb3fa3000000000000cbbfa0200000000000cbbfa5e00000000000cbbfe5e00000000000cb3fda200000000000cbbfe0400000000000cbbfab000000000000cb3ffe800000000000cbbff8000000000000cb3fd9400000000000cb3f84000000000000cb3fe7000000000000cbbffbc00000000000cbbfe6c00000000000cbbfd7400000000000cb3ff0a00000000000cb3fdfa00000000000cbbfec000000000000cb3ff5200000000000cbbfc0c00000000000cbbfabc00000000000cb3fec800000000000cb3feb400000000000cbbfe1800000000000cb3fcc800000000000cb3ffc200000000000cbbffbc00000000000cbbfd7400000000000cbbfc7a00000000000cb3ff6600000000000cbbfe1600000000000cb3ff7600000000000cbbfdf600000000000cb3ff0e00000000000cb3fd7c00000000000cbbff0400000000000cbbff7c00000000000cb3fd8600000000000cbbfcbc00000000000cbbfcc400000000000cbbf93000000000000cbbfd7600000000000cbbff2e00000000000cbbfe2600000000000cb3fdfa00000000000cb3feac00000000000cbbfd7600000000000cbbfdae00000000000cbbffa400000000000cb3fd4000000000000cbbfea200000000000cb3fc4200000000000cbbfebc00000000000cb3fc3e00000000000cbbfc3a00000000000cb3ff1800000000000cb3fe8600000000000cb3ffac00000000000cb3ff5000000000000cb3fdac00000000000cbbff3600000000000cb3fc0c00000000000cbbfe6600000000000cbbfcea00000000000cbbff3c00000000000cbbfdc200000000000cb3fee000000000000cbbfe4000000000000cb3ff2200000000000cb3fd5c00000000000cb3ff5c00000000000cbbfea600000000000cb400a200000000000cb3ffdc00000000000cbbfd7600000000000cbbfd1000000000000cbbffb000000000000cbbfed200000000000cb3ff1c00000000000cbbfe2a00000000000cb3fc2400000000000cb3fb3400000000000cbbfe8200000000000cb3fd5c00000000000cbbfe7800000000000cbbfc9800000000000cbbfe1200000000000cbbfdd400000000000cbbfd1400000000000cb3ff2200000000000cbbff7c00000000000cb3fc0c00000000000cbbfdc000000000000cbbff5c00000000000cbbfbac00000000000cbbff5a00000000000cb3ff0400000000000cbbff1800000000000cb3fc5800000000000cb3fe9a00000000000cbbffe000000000000cb3fe2200000000000cbbfd7000000000000cbbfe5c00000000000cbc000e00000000000cb3ff7e00000000000cb3fd4600000000000cbbfdf800000000000cb3fe2c00000000000cbbfe9800000000000cb3ff2800000000000cbbfdc600000000000cbbfe3800000000000cbbfef400000000000cbbff4c00000000000cbbfe9400000000000cb3fd8200000000000cbbfa8e00000000000cb3fcc600000000000cbbffda00000000000cbbfed800000000000cb3fe2800000000000cb3fd4200000000000cbbfb420000000000001cbbfee800000000000cbbfeb400000000000cbbff1200000000000cbbfe5e00000000000cbc003200000000000cb3ff1000000000000cb4000600000000000cbbff0e00000000000cbbfe6200000000000cbbfdce00000000000cb3ffb400000000000cb3fe3a00000000000cb3fe9800000000000cbbff0a00000000000cbbff1200000000000cb3fc7c00000000000cb3fc7600000000000cb3fd8a00000000000cb3fcb400000000000cb3fd1e00000000000cb3fd2000000000000cb3fef200000000000cbc000800000000000cbbff6400000000000cb3fe4800000000000cbbfe2a00000000000cb3fef000000000000cb3fb7800000000000cb3fbfc00000000000cbbfdec00000000000cb3faa400000000000cb3fec400000000000cbbfe4e00000000000cb3ff2e00000000000cb3fea600000000000cbbfd2000000000000cb3fe8e00000000000cb3fe4e00000000000cbbff2000000000000cbbfdd400000000000cbbfe8400000000000cbbfcc800000000000cbbfe0600000000000cb3ff9c00000000000cb3feec00000000000cb3fe5a00000000000cb3fe3e00000000000cbbfc4600000000000cb3fdee00000000000cbbfc0000000000000cbbfe8200000000000cb3ff0e00000000000cb3febe00000000000cb3fe8800000000000cb3fe4400000000000cbbff8800000000000cbbfeea00000000000cb3febe00000000000cb3fb5200000000000cb3ffba00000000000cbbfea000000000000cbbfee000000000000cbbfcde00000000000cb3ff5c00000000000cb3fc2a00000000000cb3ff2000000000000cbbff3c00000000000cb3fd0400000000000cb3fda600000000000cbbfeba00000000000cb3ff0800000000000cbbffc600000000000cb3fea600000000000cbbfb6400000000000cb3fe3c00000000000cbbfd1400000000000cb3fc5200000000000cbbfe6400000000000cbbff9c00000000000cb4001400000000000cbbfd1000000000000cbbfb3600000000000cbbfebc00000000000cbbfe5000000000000cb3fba200000000000cb3ff3200000000000cb3fe2a00000000000cbbfe0000000000000cbbfe3400000000000cbbfd1a00000000000cb3ffb000000000000cbbfd0000000000000cb3fd1a00000000000cbbfda000000000000cb3ff0c00000000000cb3ff7600000000000cbbff4800000000000cbbfe6000000000000cbbff0c00000000000cbbfd7a00000000000cbbfb5400000000000cb3ff8400000000000cb3fe6400000000000cb3fda400000000000cbbfe6600000000000cbbff7200000000000cb3ff9200000000000cb3ff6400000000000cb3fb1a00000000000cbbfe6800000000000cb3fc5a00000000000cbbfe2e00000000000cbbfe1c00000000000cbbfe6c00000000000cbbfe5200000000000cbbfbac00000000000cbbfd5a00000000000cbbfad000000000000cb3fda200000000000cbbfd6600000000000cbbfd5800000000000cbbff3200000000000cbbff6000000000000cbbfe4800000000000cbbfc7000000000000cb3ff6c00000000000cb3fb4e00000000000cbbfd2600000000000cbbfeb600000000000cb3ffc600000000000cbbff5600000000000cbbff1600000000000cb3ff3a00000000000cbbfd9e00000000000cb3ffc200000000000cbbffe200000000000cb3fd1400000000000cb3fffc00000000000cbbfb8200000000000cb3ff9e00000000000cb3fe2600000000000cb3fdac00000000000cbbfbd200000000000cb3fbf400000000000cbbff9e00000000000cbc002000000000000cbbfed000000000000cbbff7000000000000cbbfe1c00000000000cb3fe3400000000000cbbfe2600000000000cb3fd2200000000000cbbfff600000000000cbbff4a00000000000cb3ff2e00000000000cb3fe6400000000000cbbfd9c00000000000cbbfcbe00000000000cb3fd3000000000000cb3fd3400000000000cbbfe0600000000000cb3fe7000000000000cb3fbf800000000000cbbfef200000000000cb3ff4800000000000cb3feb200000000000cbbff6600000000000cb3feea00000000000cb3fb9000000000000cb3fc8200000000000cb3ff1200000000000cbbff8200000000000cbbfe4a00000000000cb3fb0c00000000000cbc000600000000000cb3ff5a00000000000cb3ff6600000000000cb3ff5c00000000000cbbfd9000000000000cb3fe1400000000000cbbff0c00000000000cbbfe6400000000000cbbfe9e00000000000cb3ff3600000000000cb3f91600000000000cb3ff3800000000000cbbffb200000000000cb3feda00000000000cb3ff2e00000000000cb3fe0600000000000cbbff1800000000000cbbfe2000000000000cbbfe3400000000000cb3f8e000000000000cbbff0e00000000000cb3ff3400000000000cbbffb800000000000cbbfe2000000000000cb3ff5400000000000cb3fe2800000000000cbbffae00000000000cb3fe5c00000000000cbbface00000000000cbbff1400000000000cbbff2c00000000000cb3fdce00000000000cb3fe8400000000000cb3fd6400000000000cbbff1c00000000000cb3fef800000000000cb3ff4000000000000cb4002a00000000000cbbfe4200000000000cb3fc8000000000000cbbfb9800000000000cbc004000000000000cbbfdbe00000000000cb3ff8c00000000000cb4007c00000000000cb3fa1600000000000cbbfde400000000000cb3fe4e00000000000cb3ff6000000000000cbbfe6000000000000cbbfcd800000000000cbbfd9a00000000000cb3fdb000000000000cb3ff4400000000000cb3fe3c00000000000cb3fe4600000000000cb3fe4e00000000000cb3ff0400000000000cbbfb8400000000000cb3fe8e00000000000cbbfea400000000000cbbfde800000000000cbbfdc800000000000cbbfd4000000000000cbbfadc00000000000cb3ff2e00000000000cbbffb600000000000cb3fd4400000000000cbbff9400000000000cbbf84c00000000000cb3fe4c00000000000cbbfbaa00000000000cb3fe9e00000000000cb3feee00000000000cb3fe9c00000000000cb3fbb600000000000cbbfe8200000000000cb3fe8600000000000a2313183a46e616d65a8436f6e7472616374a7636f6e74657874a0a9656d62656464696e67dc0400cbbfdaa00000000000cbbfb3800000000000cb3fe3800000000000cb3fea600000000000cbbfdfc00000000000cb3fd4a00000000000cbbfd2c00000000000cb3ff3200000000000cb3fefe00000000000cb3ff4c00000000000cb3fe6800000000000cb3fda400000000000cb3faf200000000000cb3fe8800000000000cb3f94c00000000000cb3fef400000000000cb3ff4400000000000cb3fe0000000000000cb3fde000000000000cbbfd9800000000000cbc001800000000000cbbfd4c00000000000cb3ff7a00000000000cb3ffa400000000000cb3fd2400000000000cb3fb3c00000000000cbbff6200000000000cb400b000000000000cbbfe6c00000000000cbbfbbc00000000000cbbfcf800000000000cb3fe6000000000000cbbfcaa00000000000cbbfe8e00000000000cbbfea400000000000cbbfcec00000000000cbbff1a00000000000cb3fd3a00000000000cb3ff6600000000000cbbfefe00000000000cb3ff5000000000000cbbfd3600000000000cbbff2400000000000cbbfefe00000000000cb3fec000000000000cbbff1200000000000cbbff4c00000000000cb3fc7400000000000cbbfd4c00000000000cbbff0400000000000cb3fe7200000000000cbbfc5800000000000cb3fe9e00000000000cbbfd5800000000000cb3ff0e00000000000cbbfe4000000000000cbbfdde00000000000cb3fe1a00000000000cb3fe9800000000000cb3fb4000000000000cb3ff3000000000000cb3febc00000000000cbbfe6c00000000000cbbfce200000000000cb3fe3800000000000cbbff7c00000000000cb3fd7600000000000cb3fc1200000000000cbbfec600000000000cb3fc6a00000000000cbbfe2a00000000000cbbff2e00000000000cb3fefc00000000000cb3ff7200000000000cbbffa400000000000cb3faaa00000000000cbbfac800000000000cb3fe3400000000000cbbfd4600000000000cb3fe6200000000000cb3ff7600000000000cb3fe2800000000000cbc003800000000000cb3ff1e00000000000cbbfda800000000000cb3fe8600000000000cbbfd4a00000000000cb3fe2800000000000cb3fcbe00000000000cbbfbf000000000000cbbfc1000000000000cb3feb200000000000cbbfdca00000000000cbc000200000000000cb3ffe200000000000cb3fd4800000000000cbbfac400000000000cbbfcd000000000000cbbfcd800000000000cb3ff0a00000000000cb3fec400000000000cb3ff3a00000000000cb4001400000000000cb3fd2000000000000cbbfe2000000000000cbbfc9000000000000cbbfc9200000000000cb3fe6200000000000cb3ff2800000000000cbbffa600000000000cbbfd8400000000000cb3ff6400000000000cb3ff6400000000000cb3fd5800000000000cbbfe0600000000000cb3fe3400000000000cbbff4400000000000cb3fd7000000000000cbbfe8200000000000cbbfc1000000000000cb3fe9c00000000000cb3fe2400000000000cb3fd1800000000000cb3fa1000000000000cbbfffe00000000000cb3fe1a00000000000cb3fed000000000000cb3ff3400000000000cb3fee600000000000cbbfefa00000000000cbbfee000000000000cb3fe3000000000000cb3fff400000000000cb3fd5a00000000000cb3fec800000000000cbbfa3e00000000000cbbfdb000000000000cbbff8a00000000000cbbff5200000000000cb3ff0a00000000000cb3fed800000000000cb3fc7000000000000cb3fee600000000000cbbfe9000000000000cbbfa1600000000000cb3fe1c00000000000cbbfd7c00000000000cbbff1600000000000cbbfe0a00000000000cb3fef800000000000cbbfee800000000000cbbfcea00000000000cbbfe2c00000000000cb3ff8000000000000cb3feaa00000000000cb3ff6800000000000cbbfcae00000000000cb3ff3600000000000cbbff1000000000000cbbfef400000000000cbbff8800000000000cb3fd8800000000000cb3ffec00000000000cbbfe7000000000000cb3fc6400000000000cb3fee000000000000cb3fdde00000000000cbbfeb000000000000cbbff1800000000000cb3fe1400000000000cb3fdb600000000000cb3ff6c00000000000cb3ff1e00000000000cb3ff8000000000000cb3fe5600000000000cbbfde800000000000cbbff7c00000000000cbbfb7400000000000cb3ff6600000000000cbbff4e00000000000cbbff3400000000000cb3ff5c00000000000cb3fd3000000000000cbbfff000000000000cbbfe0600000000000cbbfe9000000000000cbbfff000000000000cb3fe2400000000000cb3fa0600000000000cbbffe400000000000cbbfe8e00000000000cb3ff7c00000000000cb3fe5e00000000000cb3fb8400000000000cbbfee000000000000cb3fdd800000000000cbbfd2400000000000cbbfcd200000000000cbbfe8800000000000cb3fdbe00000000000cb3fdf600000000000cb3ff2a00000000000cb3fd7000000000000cb3fd2200000000000cbbff6000000000000cbbfde000000000000cb3fbc800000000000cb3fdc200000000000cb3fdcc00000000000cbbfe9800000000000cb3ffc600000000000cbbfe9600000000000cbbfb1e00000000000cb3fd7e00000000000cbbfbe400000000000cb3fbd200000000000cb3ff0c00000000000cb4003400000000000cb3fc0800000000000cb3fe3a00000000000cb3fe3000000000000cbbfd8200000000000cbbfdb400000000000cbbff8800000000000cb3fcba00000000000cb3fec600000000000cbbfd0200000000000cbbfe0200000000000cb3fe6400000000000cbbfca600000000000cb3ff3600000000000cb3fe1200000000000cbbfcb800000000000cbbfa8c00000000000cb3ff9e00000000000cbbfab400000000000cb3fea200000000000cb3ff6800000000000cb3ff4800000000000cbbff4200000000000cb3fe4000000000000cbbfcb400000000000cb3fede00000000000cbbff1e00000000000cbbfdc000000000000cbbfea600000000000cbbff5a00000000000cbbfe1200000000000cbbff3800000000000cb3feea00000000000cbbfe4e00000000000cb3ff3400000000000cb3fd3200000000000cbc003400000000000cbbfe5000000000000cb3fe8800000000000cbbfdb800000000000cbbfaca00000000000cb3fc8c00000000000cbbfe2c00000000000cbbfc7200000000000cb3fddc00000000000cbbff2400000000000cbbfec600000000000cbbfe3c00000000000cbbfef800000000000cbbfe1400000000000cb3ff5400000000000cb3fe8e00000000000cbbfd2600000000000cb3f8da00000000000cb3fb0e00000000000cb3fb6c00000000000cbbfe1c00000000000cb3fe0200000000000cb3ff1a00000000000cb3ff9000000000000cb3fce200000000000cbbffd400000000000cbbf9f200000000000cb3ff9800000000000cb3fcec00000000000cbbfe1400000000000cb3fe2c00000000000cb3fd3e00000000000cbbfc3200000000000cbbfdde00000000000cbbff4e00000000000cbbfeda00000000000cb3fc7800000000000cb3fe9400000000000cb3ff8800000000000cb3fd0200000000000cbbfbea00000000000cb3fbde00000000000cbc003800000000000cbbfdaa00000000000cb3fcb600000000000cb3ff0c00000000000cb3fe0400000000000cb3ff1000000000000cbbfd7200000000000cb3ff9000000000000cbbfb1800000000000cbbffee00000000000cb3fe6a00000000000cbbfe7200000000000cb3fbf000000000000cbbfec000000000000cb3fc6800000000000cbc003400000000000cbbfcf200000000000cb3fecc00000000000cb3fe3400000000000cb3fe4600000000000cb3ff9a00000000000cb3fc2200000000000cb3ff5200000000000cb3fd8200000000000cbbff4600000000000cb3fdb800000000000cb3fd5c00000000000cb3fdaa00000000000cbbff9e00000000000cb3fc1a00000000000cb3fc1a00000000000cb3fd5000000000000cb3fd1c00000000000cbbfe2a00000000000cb3fec200000000000cb3fc6000000000000cbbfe3600000000000cbbff8800000000000cb3fcf000000000000cbbfe7c00000000000cbbfc2000000000000cbbfe0a00000000000cb3fb8000000000000cbbfda000000000000cb3ff2a00000000000cbbff3600000000000cbbfb0200000000000cb3fbc200000000000cbc000600000000000cb3fe7c00000000000cb3f71000000000000cb3ff2000000000000cbbfd0800000000000cb3fdac00000000000cbbff9400000000000cbbfcec00000000000cb3fe5000000000000cb4008a00000000000cbbfd2e00000000000cb3fdba00000000000cb3fc8800000000000cb3fc1c00000000000cb3fe1c00000000000cb3fda000000000000cbbfd4000000000000cbbff5400000000000cbbfe1c00000000000cbbfe9000000000000cbbfe1400000000000cbbff6e00000000000cb4000a00000000000cbbff7600000000000cbbff2c00000000000cbbfea600000000000cb3fd1a00000000000cb3ff2000000000000cbbfd7a00000000000cb3fc0e00000000000cb3ff0e00000000000cb3fce200000000000cb3ff8c00000000000cb3fd4600000000000cb3febc00000000000cbbff5e00000000000cbbff1000000000000cbbff1400000000000cb4002200000000000cbbfdd000000000000cb3ff6a00000000000cb3fdc800000000000cbbfe6000000000000cb3f7d000000000000cbbfb2200000000000cbbfe2c00000000000cb3fe1400000000000cb3fe0e00000000000cb3ff3000000000000cb3fd7c00000000000cb3fefa00000000000cbbfc8200000000000cb3fc2c00000000000cb3fafc00000000000cbbfa4000000000000cb3feb200000000000cbbfd0c00000000000cbbfb7600000000000cb3ff9800000000000cb3ff5600000000000cb3fe8800000000000cb3ff5c00000000000cb3fc5000000000000cb3fed000000000000cb3fdb600000000000cb3fefe00000000000cbbfc0e00000000000cb3ff1000000000000cb3fc8c00000000000cb3fc6c00000000000cb3fd4a00000000000cbbfd0400000000000cbbff2600000000000cb3fe5800000000000cb3fb7000000000000cb3fd7000000000000cbbfea400000000000cb3ff1000000000000cbbfa9a0000000000001cbbfe6600000000000cb3fe7400000000000cbbfbb000000000000cbbfd6400000000000cbbfe3c00000000000cbc006e00000000000cb3fe6e00000000000cbbff5a00000000000cb3ff9a00000000000cb4003e00000000000cb3ff3e00000000000cb3ff0c00000000000cbbfcb400000000000cb3ffd800000000000cbbfd4a00000000000cbbfd1200000000000cbbfe4c00000000000cbbfd5400000000000cbbfd5200000000000cb4001a00000000000cb3fe4800000000000cb3fd4000000000000cbc002000000000000cb3fe1000000000000cbbfed400000000000cbbfd2000000000000cb3fe7600000000000cb3fc4800000000000cb3fe2600000000000cbbff8e00000000000cbbff7000000000000cbbfbf400000000000cbbff1e00000000000cb3ff6400000000000cb3fe5c00000000000cbbfd8600000000000cbc008200000000000cbbfd8600000000000cb3fec800000000000cbbfe0a00000000000cbbfddc00000000000cb3ffe000000000000cbbfa3c00000000000cbbfed600000000000cbbfc7600000000000cbbff6e00000000000cbbff8400000000000cb3fe9000000000000cb3fc3800000000000cb3ff3c00000000000cb3fd8400000000000cb3fd5800000000000cb3ff6e00000000000cbbfe7400000000000cbbfe9200000000000cb3fef800000000000cb3fc3e00000000000cbbfecc00000000000cb3fb0200000000000cb3ffa200000000000cb3fd4200000000000cbbff9200000000000cb3fd5c00000000000cbbff7a00000000000cb3fd5e00000000000cb3fa2c00000000000cbbfea400000000000cb3fedc00000000000cbbfe1600000000000cbbfbf600000000000cbbff9000000000000cb3fb3000000000000cb3ff9e00000000000cbbffc200000000000cb4004a00000000000cb3fc6000000000000cbbf70800000000000cb3fbe200000000000cbbff6800000000000cbbfef400000000000cb3fea800000000000cbbff1200000000000cb3fbf600000000000cbbfcee00000000000cb3fba400000000000cb3fe5800000000000cbbfd2e00000000000cbbfeb000000000000cbbfe6400000000000cb3feb400000000000cbbfc8a00000000000cbbfeec00000000000cb3ff2800000000000cb3fe6600000000000cb3fe3a00000000000cb3fa2a00000000000cb3fee000000000000cb3ffd400000000000cbbfe2800000000000cb3fdfe00000000000cb3ff0a00000000000cbbfe7a00000000000cbbff5200000000000cb3fdd800000000000cbbfbd800000000000cbbfffe00000000000cbbfd8200000000000cbbfd3c00000000000cb3fe1e00000000000cbbfe4a00000000000cbbff6c00000000000cbbfef000000000000cb3fcde00000000000cbbfdbe00000000000cbbfd0200000000000cb3fcb800000000000cb3fe7c00000000000cbbfe0800000000000cb3fcb600000000000cbbfe4600000000000cb3ffbe00000000000cb3ff5600000000000cb3ff1a00000000000cbbfe2a00000000000cb3fcb000000000000cbbfedc00000000000cbbff0400000000000cbbfef600000000000cb3ff2a00000000000cb3ff5800000000000cb3fe6c00000000000cbbfd1200000000000cbbfe4400000000000cbbff1200000000000cbbfee200000000000cb3fe3600000000000cbbffb000000000000cbbfd4600000000000cbbfdf000000000000cbbf91600000000000cb3fcf000000000000cb3fe4c00000000000cb3ff8200000000000cbbfe7000000000000cbbfb4e00000000000cb3f9a600000000000cb3fd5600000000000cb3fd8c00000000000cb3fb3000000000000cb3fae000000000000cbbfcac00000000000cb3fb1a00000000000cbbfde400000000000cb3ff9000000000000cb3fd1c00000000000cbbff6400000000000cb3fd1000000000000cbbfcee00000000000cbbfefa00000000000cb4000400000000000cbbfd2800000000000cbbfe2200000000000cbbff4600000000000cb3fb6200000000000cb3fd5000000000000cbbfe6c00000000000cbbfd6200000000000cbbfabe00000000000cbbfc7c00000000000cb3fa2c00000000000cb3ff6800000000000cb3feb400000000000cbbfe0000000000000cb3fb7c00000000000cb3fe7200000000000cbbffb400000000000cbbfb4600000000000cb3fa3200000000000cbbffd400000000000cb3fecc00000000000cbbff4a00000000000cbbfd4800000000000cbbfcb200000000000cbbff2800000000000cbbfe8800000000000cbbffe800000000000cbbfa4c00000000000cbbfdc600000000000cb3fd8c00000000000cb3ff0c00000000000cbbff5800000000000cb3ff1e00000000000cb3faa200000000000cb3fb8800000000000cbbfd0c00000000000cb3fd7c00000000000cb3ff9200000000000cbbfed600000000000cb3fede00000000000cbbfdf600000000000cbbfa9400000000000cbbfe8800000000000cbbfdee00000000000cbbfeba00000000000cbbff5600000000000cbbff9a00000000000cb3fc6800000000000cbbfd3400000000000cb3fed200000000000cb3fdfe00000000000cb3fec400000000000cbbfe2200000000000cb3fe5600000000000cbbfade00000000000cbbfd7800000000000cb3fa7800000000000cb3ff3200000000000cbc002400000000000cb3fb5800000000000cb3f90800000000000cbbff4c00000000000cb3fdde00000000000cbbfd0e00000000000cbc004c00000000000cbbfa2a00000000000cb3f95800000000000cb3fdf800000000000cbbfdde00000000000cb3fde400000000000cbbfa4200000000000cb3fe2200000000000cb3ff8800000000000cbc000600000000000cbbfade00000000000cb3fdec00000000000cb3fee400000000000cbbfe8000000000000cbbfda600000000000cb3fd5800000000000cb3fd8000000000000cb3fbe400000000000cbbff4a00000000000cb3ff7800000000000cbbfc7e00000000000cbbfd5400000000000cb3ffa200000000000cb3ff1000000000000cbbfe5400000000000cb3fc0e00000000000cb3ffda00000000000cbbff2a00000000000cbbfcf800000000000cbbfcc200000000000cb3ff8800000000000cbbfcf200000000000cb3ff5600000000000cbbfe1400000000000cb3feae00000000000cbbfd5600000000000cb3fe4a00000000000cb3fd9000000000000cbbfe2000000000000cb3fc8200000000000cbbfe5000000000000cbbfe3e00000000000cb3fdda00000000000cbbff1000000000000cbbfbfc00000000000cb3f94000000000000cb3ff1800000000000cbbfd6c00000000000cbbfea200000000000cbc002800000000000cb3fe9a00000000000cbbff5800000000000cb3fd9600000000000cbbff6c00000000000cb3fda400000000000cb3ff4000000000000cb3fea600000000000cb3fea000000000000cb3ff2e00000000000cb3ff4000000000000cbbfccc00000000000cbbff8c00000000000cb3fd9400000000000cbbfe1000000000000cbbfc4c00000000000cbbfe3e00000000000cbbff0400000000000cb3ff3400000000000cbbfe4200000000000cb3fdf600000000000cb3febe00000000000cb3fc4400000000000cbbfe2600000000000cb4005a00000000000cb3ffb200000000000cbbfbd600000000000cbbfe2a00000000000cbbfe7e00000000000cbbff4400000000000cbbfac000000000000cbbfd0a00000000000cb3fc3000000000000cbbfcc800000000000cbbfe8600000000000cbbff0400000000000cbbfd2e00000000000cbbff0600000000000cbbfeb200000000000cbbfdfc00000000000cbbfe8800000000000cb3fe4a00000000000cbbfe6400000000000cb3fc7a00000000000cbbfc1e00000000000cbbfef400000000000cbbfeac00000000000ffcb3fe3c00000000000cbbfee400000000000cb3fc3000000000000cb3ff1400000000000cbbff2600000000000cb3fdf600000000000cbbff6800000000000cbbfe4600000000000cbbfeba00000000000cbbfe3c00000000000cbbfc2800000000000cbbfdb800000000000cb3f92000000000000cbbff9800000000000cbbfd4800000000000cbbff0200000000000cbbff2200000000000cbbfc4c00000000000cbbff6a00000000000cbbfede00000000000cb3ff3000000000000cbbfc8600000000000cb3fe3000000000000cbbff7600000000000cbbfe5400000000000cb3fe1600000000000cbbfbf800000000000ffcb3ff1a00000000000cbbfef800000000000cbbffd000000000000cbbfeb200000000000cbbff1600000000000cbc000600000000000cb3fcce00000000000cb3feec00000000000cbbffd200000000000cbbfe8400000000000cbbfdbe00000000000cb3ff8600000000000cb3fd4400000000000cb3feea00000000000cbbfe5600000000000cbbff0200000000000cbbfd8a00000000000cbbfd3000000000000cbbfb6e00000000000cb3fcdc00000000000cb3fd1400000000000cb3fae200000000000cb3fe5000000000000cbbffd000000000000cbbfec200000000000cb3fd8000000000000cbbfd1800000000000cb3ff5000000000000cb3fca800000000000cbbfb2200000000000cbbfdee00000000000cb3fedc00000000000cb3fec400000000000cbbfe7000000000000cb3fdc800000000000cb3fedc00000000000cbbfdea00000000000cb3fed000000000000cb3fd2e00000000000cbbff4a00000000000cbbfc1400000000000cbbfaf800000000000cbbfdca00000000000cbbff0a00000000000cb3ff8400000000000cb3fe5000000000000cb3fee200000000000cb3ff4a00000000000cbbfe7400000000000cb3ffa600000000000cbbfd2c00000000000cbbfe1200000000000cb3fe5600000000000cb3fc2c00000000000cbbfd4400000000000cb3ff3200000000000cbbffb600000000000cbbfe2c00000000000cb3fcb400000000000cb3fbcc00000000000cb4000a00000000000cbbff3200000000000cbbfea600000000000cbbfe6600000000000cb3fe7400000000000cbbfebe00000000000cb3fbcc00000000000cbbff2400000000000cb3fece00000000000cb3fc5400000000000cb3fba800000000000cb3fe6400000000000cbbff0c00000000000cb3fe2000000000000cbbfda000000000000cb3fdf200000000000cb3fd4c00000000000cbbfe3800000000000cbbfe3000000000000cbbfeb200000000000cb3fce400000000000cbbfd7600000000000cbbfd7800000000000cbbfe2000000000000cbbfc3200000000000cbbfe2600000000000cb3fc5e00000000000cbbfdd800000000000cbbfbf400000000000cbbfe7400000000000cbbfe5000000000000cb3ff7000000000000cb3fe0c00000000000cb3fdde00000000000cbbfe0a00000000000cb3fefa00000000000cb3fe6400000000000cbbfe2800000000000cbbfe1a00000000000cbbffea00000000000cb3faac00000000000cb3fd3600000000000cb4000600000000000cb3fe7400000000000cb3ff4c00000000000cbbfc5600000000000cbbfdde00000000000cb3ffd800000000000cb3ff1a00000000000cbbfe1400000000000cbbfddc00000000000cb3fb9e00000000000cbbfdee00000000000cbbfd3400000000000cbbfd7400000000000cbbfcac00000000000cb3fcba00000000000cb3fddc00000000000cb3fc5800000000000cb3fe7800000000000cbbfd9600000000000cb3fdb400000000000cbbfe9400000000000cbbff6600000000000cbbfdbc00000000000cb3fe9600000000000cb3fe5000000000000cb3ff5800000000000cbbfd2000000000000cbbfe3200000000000cb3fe9800000000000cbbfeea00000000000cb3fc1400000000000cb3fe2a00000000000cbbff0400000000000cb3ff6600000000000cbbff6600000000000cb3fe5200000000000cb3ff9000000000000cb3fea000000000000cb3ff6400000000000cb3fe7000000000000cb3fe3600000000000cbbfb8200000000000cb3fa2a00000000000cbc002a00000000000cbbffd000000000000cbbfd8e00000000000cbbfef000000000000cbbfdd400000000000cb3fe5400000000000cb3fb1200000000000cb3fcd000000000000cbc003400000000000cbbff8800000000000cb3ff9600000000000cb3fe4000000000000cb3fd0c00000000000cb3f8a400000000000cb3fda800000000000cbbfc0000000000000cbbfc3a00000000000cb3fcfa00000000000cbbfe3c00000000000cbbfd5400000000000cb3fdfa00000000000cb3fc2400000000000cbbff7400000000000cb3ff4400000000000cbbfb9800000000000cbbfc2c00000000000cb3ff0e00000000000cbbff7a00000000000cbbfda800000000000cbbfe1800000000000cbc001a00000000000cbbfa7600000000000cb3feb000000000000cb3ffc200000000000cbbf87400000000000cb3fdd400000000000cb3fe1200000000000cbbfe4800000000000cbbfe6e00000000000cb3fac400000000000cbbfeae00000000000cb3ff7800000000000cbbff7e00000000000cb3fd8c00000000000cb3ffba00000000000cbbfd4e00000000000cb3fd9c00000000000cbbfee200000000000cbbfde000000000000cb3f4a000000000000cbbfcd000000000000cb3ff4000000000000cbbff3200000000000cb3fb9400000000000cb3ff7600000000000cb3fe1400000000000cbbfda000000000000cb3fdae00000000000cb3ff0200000000000cbbff5400000000000cbbff0200000000000cbbf99200000000000cbbfd3800000000000cb3fc1800000000000cbbfe4000000000000cb3ff5c00000000000cb3ff2000000000000cb3ff9a00000000000cbbfb0400000000000cb3fa6200000000000cb3fc4600000000000cbbfec200000000000cbbfbc800000000000cb3ff4000000000000cb3fede00000000000cbbfc8c00000000000cbbfe5200000000000cb3ff8e00000000000cb3ffc200000000000cbbfe1c00000000000cbbfe0a00000000000cbbfdb400000000000cb3ff1000000000000cb3ff1c00000000000cb3fbe400000000000cb3fe4400000000000cb3fb5400000000000cb3fe7800000000000cb3fe2c00000000000cb3fdb800000000000cbbf80000000000000cbbff1000000000000cb3fc6e00000000000cb3fec800000000000cbbfde800000000000cb4001000000000000cbbff6400000000000cb3fd1400000000000cbbff6600000000000cb3fe2a00000000000cb3fe2400000000000cbbfcb400000000000cb3fd6c00000000000cb3ffa800000000000cb3fd2a00000000000cbbf9ac00000000000cbbfe3a00000000000cbbfd6e00000000000a2313283a46e616d65a45461736ba7636f6e74657874a0a9656d62656464696e67dc0400cb3fee000000000000cb3fd4c00000000000cb3ff1400000000000cbbfd1a00000000000cbbfe0600000000000cbbfa5a00000000000cb3fe2a00000000000cb3feb600000000000cb3fe9600000000000cb3ff8c00000000000cb3feba00000000000cbbfb5800000000000cbbffb200000000000cb3ff1200000000000cbbfe4600000000000cb3fe8000000000000cb3fcd800000000000cb3fe2800000000000cb4001800000000000cb3fed800000000000cbbff5800000000000cbbfd0e00000000000cb3ffe600000000000cb3ff0800000000000cb3fcb000000000000cbbfc6600000000000cbbff3200000000000cb3ffe400000000000cbbfe7800000000000cb3ff7800000000000cb3fe6a00000000000cb3ff2e00000000000cb3feb600000000000cbbff1000000000000cbbfc0800000000000cbbfd0800000000000cbbff1e00000000000cb3fe6000000000000cb3fe9000000000000cbc000200000000000cb3ff2e00000000000cbbfcb800000000000cb3fd1c00000000000cbbfeaa00000000000cb3ff3e00000000000cbbfe5800000000000cbbff7800000000000cb3fe7400000000000cbbf9e000000000000cbbff3c00000000000cbbfd7400000000000cbbfeac00000000000cbbfc5800000000000cbbfd7600000000000cb3fe0a00000000000cbbff8a00000000000cbbfde200000000000cb3ff2600000000000cbbfe4c00000000000ffcb3ff0c00000000000cbbfdee00000000000cbbfe7a00000000000cbbfea800000000000cb3fdae00000000000cbbff1c00000000000cb3feae00000000000cbbfd3600000000000cbbff4200000000000cbbfe1a00000000000cb3fd2000000000000cbbfe4a00000000000cb3ff6600000000000cb3ff0c00000000000cbc000e00000000000cb3fb2200000000000cbbfef200000000000cb3ff5000000000000cbbfe2400000000000cb3fcac00000000000cb3fe9600000000000cbbfe6000000000000cbc006a00000000000cb3ff1e00000000000cbbff4000000000000cb3fe2400000000000cbbfe7000000000000cbbfdca00000000000cb3fc0600000000000cb3fec600000000000cbbfbba00000000000cb3fea800000000000cbbfe5800000000000cbbff2a00000000000cb3fe6000000000000cb3fd7000000000000cbbf40000000000000cb3fb6c00000000000cbbff0a00000000000cb3ff7600000000000cb3ff5c00000000000cb3fd9e00000000000cb3fec600000000000cb3ff0c00000000000cbbff6200000000000cb3feb600000000000cbbfe0200000000000cbbfd3a00000000000cb3fd4c00000000000cbbfe8200000000000cb3fc1c00000000000cb3ff6600000000000cb3ff7e00000000000cb3ff8c00000000000cb3fa9000000000000cb3fe4800000000000cbbfefc00000000000cb3ff5200000000000cbbfc8c00000000000cbbfef000000000000cb3ff2e00000000000cb3fc4400000000000cb3f83c00000000000cbbfd5a00000000000cbc001200000000000cbbfcc800000000000cb3ff4200000000000cb3fe3e00000000000cb3fce600000000000cbbffea00000000000cb3fd9a00000000000cb3fe9200000000000cb4006600000000000cb3fc3200000000000cb3ff5c00000000000cb3fe4400000000000cbbfd0800000000000cbbff3800000000000cbbfeb600000000000cb3ffae00000000000cb3fe0200000000000cb3fe8200000000000cb3fe5600000000000cbbfed600000000000cb3fd6000000000000cb3fb8600000000000cbbfe1000000000000cbbfc0e00000000000cbbfdbe00000000000cb3fc4200000000000cbbff0c00000000000cbbfe8e00000000000cbbff1600000000000cb3ff3400000000000cb3ffac00000000000cb3ff7e00000000000cb3fabc00000000000cb3fe5200000000000cbbffd400000000000cbbff4400000000000cbbff7800000000000cb3fe3200000000000cb3fe9200000000000cbbff6c00000000000cb3fcd400000000000cb3ff0800000000000cbbfdc000000000000cbbff9200000000000cbbfd7200000000000cb3fe9400000000000cb3fe3000000000000cb3fd6400000000000cb3fd9400000000000cb3fe9e00000000000cb3f8ac00000000000cb3fc2c00000000000cbbff1a00000000000cb3fe6a00000000000cb3ff6000000000000cbbfefa00000000000cbbfe5600000000000cb3ff6c00000000000cb3ff5a00000000000cbbffe200000000000cb3fb4400000000000cb3fb5c00000000000cbc005400000000000cb3fd0400000000000cb3fe2c00000000000cbbfe9600000000000cb3fe2600000000000cb3ff1a00000000000cb3fdac00000000000cbbfc7400000000000cbbff2000000000000cbbfc6200000000000cbbfe0a00000000000cbbfdf800000000000cbbfee400000000000cbbfd3a00000000000cb3fee000000000000cb3ff3a00000000000cb3fdf200000000000cb3fdee00000000000cbbfef200000000000cbbff1e00000000000cb3fe0200000000000cbbff4e00000000000cbbfc4e00000000000cbbff0a00000000000cb4000a00000000000cbbfd2e00000000000cb3feac00000000000cb3feb800000000000cbbfeee00000000000cb3fe8e00000000000cb3ff3a00000000000cb3ff9a00000000000cb3fe4000000000000cb3fed000000000000cb3fefc00000000000cbbfd6400000000000cb3fcea00000000000cbbffb600000000000cbbfdba00000000000cb3fda200000000000cbbfe8800000000000cb3fe9000000000000cb3fe9400000000000cbbfcdc00000000000cb3ff1a00000000000cb3fb8000000000000cbbfd5c00000000000cb3fdac00000000000cb3ff5400000000000cbbfc5a00000000000cb3ffc400000000000cb3fd7000000000000cb3fef800000000000cbbff7800000000000cb3fecc00000000000cbbfc6000000000000cb3fede00000000000cbbff8c00000000000cbbff6600000000000cbbfca000000000000cbbff2000000000000cbbfea200000000000cbbfe7200000000000cb3fec600000000000cb3fa9a00000000000cb3ff4800000000000cbbfc3000000000000cbbff5c00000000000cbbff1400000000000cb3fefc00000000000cb3fcde00000000000cbbfd8e00000000000cbbfd4200000000000cbbff6000000000000cb3fd7800000000000cbbfc3c00000000000cbbff4e00000000000cbbfe5400000000000cbbfd0c00000000000cbbffb200000000000cbbfdd200000000000cb3feec00000000000cb3fe8c00000000000cbbfe6600000000000cb3fcd000000000000cbbfd5400000000000cb3fc9000000000000cbbfee000000000000cb3fe7e00000000000cb3fae200000000000cb3febe00000000000cb3fd2400000000000cbbff9000000000000cbbfe8e00000000000cb3ff6e00000000000cb3feea00000000000cbbfdd600000000000cb3ff5e00000000000cb3fe8e00000000000cbbfcf800000000000cbbff3800000000000cbbff1a00000000000cbbfef600000000000cb3fe6600000000000cb3febc00000000000cb3ff1000000000000cbbff3400000000000cbbfc5a00000000000cbbfe1c00000000000cbbffd400000000000cb3fa2200000000000ffcb3ff7c00000000000cbbfcb80000000000002cbbfe6e00000000000cb3ff9600000000000cb3ffba00000000000cbbff9a00000000000cb3fe7800000000000cbbfe8000000000000cb3fa3400000000000cbc001400000000000cb3f8c800000000000cbc001e00000000000cb3ff1c00000000000cbbfb7200000000000cbbf5c000000000000cb3f61400000000000cb3fc2800000000000cb3fe1400000000000cb3fe2c00000000000cbbfc8400000000000cbc003a00000000000cb3fe3600000000000cb3ff7800000000000cb3fc8600000000000cbbff3600000000000cbbff5400000000000cbbfa7400000000000cbbfe4a00000000000cb3fe4200000000000cbbff8400000000000cb3ffca00000000000cb3fba800000000000cb3fbc800000000000cbbff6800000000000cb3ff7000000000000cb3fd4800000000000cb3fdf400000000000cbbf78000000000000cb3fef400000000000cbbfcce00000000000cb3ff7600000000000cbc002400000000000cb3ff8400000000000cb3fef200000000000cbc008a00000000000cb3ff3600000000000cbbfd7600000000000cb3ff0c00000000000cb3fd6e00000000000cbbfd6a00000000000cbbff0200000000000cb3fc3600000000000cb3fc0400000000000cb4001600000000000cbbff1200000000000cbbf74000000000000cb3fc5600000000000cb3feaa00000000000cb3fd8800000000000cb3fdf400000000000cbbfb9200000000000cbbfd7800000000000cbbfd3400000000000cbbfc9600000000000cb3fe4000000000000cbbffda00000000000cb3ffa400000000000cbbff2600000000000cbbff3800000000000cbbfe6a00000000000cbbfa6000000000000cb3fd0600000000000cb3fbfe00000000000cbbfd8c00000000000cb3ff0600000000000cbbfcf800000000000cb4004200000000000cbbfb3000000000000cb3fe9000000000000cbc001c00000000000cbbfe9e00000000000cbbfec600000000000cb3ff2800000000000cb3fc0600000000000cb4000e00000000000cbbfd7c00000000000cbbffb400000000000cb3f7c800000000000cb3fcca00000000000cb3fce600000000000cb3f9f400000000000cb3fe4c00000000000cb3fee600000000000cbbfda400000000000cb3fe5a00000000000cb3fcd200000000000cbbfc4000000000000cbbfd7c00000000000cbbff9600000000000cb3fec600000000000cbbfe6400000000000cb3fe5200000000000cb3ff0c00000000000cb3fe8600000000000cb3fd0000000000000cb3ff8e00000000000cbbfe8200000000000cb3fe3e00000000000cbbfd7e00000000000cb3fe8200000000000cbbfd5400000000000cb3ff3a00000000000cbbf84600000000000cb3fc2800000000000cb3fdc000000000000cb3fe2400000000000cbbff4200000000000cb3fec200000000000cbbfb3600000000000cb3fcc600000000000cbbffbe00000000000cb3ff7800000000000cbbfa6000000000000cb3ff2800000000000cbbfe5800000000000cb3feac00000000000cbbfc1800000000000cbbfb7600000000000cbbfd7800000000000cbc000400000000000cb3fef000000000000cbbfdc800000000000cb3ff7600000000000cb3ffa600000000000cb3ffce00000000000cb3fffe00000000000cbbfd0c00000000000cb3fd2400000000000cb3fe9e00000000000cbbfebe00000000000cbbff2800000000000cb3fec800000000000cb3fe0200000000000cb3ff5000000000000cb3ffbe00000000000cbbfd9c00000000000cbc003c00000000000cb4001600000000000cbbfefe00000000000cbbfe8e00000000000cb3fc6c00000000000cb3fd1000000000000cbbf92c00000000000cbbfe8e00000000000cbbfe9400000000000cbbff0400000000000cbbff5400000000000cb3ff3000000000000cb3ff7000000000000cb3fe6200000000000cbc000200000000000cbbfbe600000000000cb3fe2800000000000cbbfe5c00000000000cbbff5e00000000000cb4000800000000000cbbfdaa00000000000cb3fbf600000000000cbbfd3200000000000cbbff8400000000000cbbff1e00000000000cbbfe0400000000000cb3fc4e00000000000cb3ff1a00000000000cbbfd2e00000000000cb3fc9a00000000000cb3ff0200000000000cbbfb5000000000000cbbff8600000000000cbbfb1600000000000cb3fe1200000000000cbbfc8000000000000cbbfeb800000000000cb3fef600000000000cbbfcd200000000000cbbff6200000000000cbbfd1800000000000cbbfef800000000000cb3ff0800000000000cb3fd5200000000000cbbfe1000000000000cb3ff3400000000000cb3fdae00000000000cb3ff4400000000000cbc001800000000000cbbfe2400000000000cb3ff5e00000000000cbbff9400000000000cb400aa00000000000cbbfe9e00000000000cb3fe8000000000000cb3fd2800000000000cbc001e00000000000cbbff5200000000000cb4002e00000000000cbbfe6000000000000cbbfe3c00000000000cbbfcce00000000000cb3fc6600000000000cb3fe9800000000000cbbfbdc00000000000cbbfd2400000000000cbbfe7800000000000cb3fc2200000000000cb3fae800000000000cbbfee600000000000cb3fe1000000000000cb3fc2800000000000cb3fefa00000000000cbbfb5400000000000cb3feae00000000000cb3ff7400000000000cbbff6600000000000cb3fd5e00000000000cb3ff8200000000000cbbffc000000000000cbbff3c00000000000cb3fe4e00000000000cb3fe3600000000000cbbff600000000000001cb3fd1c00000000000cb3fc9e00000000000cb3fe1400000000000cbbff9000000000000cb3fd2a00000000000cbbfca400000000000cbbfb2800000000000cbbfe9a00000000000cb3fece00000000000cb3fe8000000000000cbbffa000000000000cb3fcce00000000000cbbfdf400000000000cb3ff3200000000000cb4005800000000000cb3ff5400000000000cbbfe8200000000000cb3fe0a00000000000cbbfd5800000000000cbbfb9c00000000000cbbfec200000000000cb3ff0200000000000cb3fdb800000000000cb3fd1c00000000000cbbfe0c00000000000cbbfc8a00000000000cbbff6800000000000cbbfed200000000000cbbfc6000000000000cbc004200000000000cbbfdb400000000000cb3fd7c00000000000cb3fc6000000000000cbbfd0200000000000cb3fd5e00000000000cb3ff3000000000000cbbf6b000000000000cb3fe2e00000000000cb3fe6400000000000cbbfcc800000000000cb3fffe00000000000cbbfc4000000000000cbbfbea00000000000cbbfb2800000000000cb3f8d000000000000cbbfea800000000000cb3ff0a00000000000cbbfdac00000000000cbbffa600000000000cb3ff1600000000000cbbff7800000000000cbbfe1600000000000cb3ff4400000000000cbbff3000000000000cbbf9de00000000000cbbffb600000000000cb3fdc400000000000cb3ff5e00000000000cbbff1800000000000cb3fe3400000000000cbbff2400000000000cbbfcfe00000000000cbbfba200000000000cb3ff0a00000000000cb3fbde00000000000cb3fdf000000000000cb3fd6400000000000cb3fed000000000000cbc000200000000000cbbfd1200000000000cb3ff2e00000000000cbc006e00000000000cb3ff3000000000000cbbff1c00000000000cbbfd8e00000000000cbbfb5c00000000000cbbfbe800000000000cbbfb2c00000000000cbbfffa00000000000cb3fb9600000000000cbbfd8800000000000cb3fd0c00000000000cb3fed000000000000cbbfff800000000000cb3fd2400000000000cb3fa4400000000000cbbfc2400000000000cb3fe6a00000000000cb3ff1200000000000cb3ff7600000000000cbbff7e00000000000cb3ffc800000000000cbbff3000000000000cbbfeb800000000000cbbfe6400000000000cb3fdb200000000000cbbff0e00000000000cbbfede00000000000cbc002a00000000000cbbfc3200000000000cb3fdfa00000000000cb3fb2800000000000cbbfbfe00000000000cb3fe8800000000000cb3fc5a00000000000cb3fdea00000000000cbbfe6800000000000cbbfd6800000000000cbbfd7600000000000cbbfcf800000000000cbc003000000000000cbbfdc200000000000cb3fcf400000000000cbbff7c00000000000cbbfc5800000000000cbbfcb200000000000cbbffa600000000000cbbfdd800000000000cbbfaaa00000000000cb3fd6c00000000000cbbfc5800000000000cb3fa4000000000000cb3fc1c00000000000cbbfbde00000000000cb3ff0c00000000000cbbff7000000000000cbbfd7000000000000cbbfd6000000000000cb3ff0e00000000000cbbff3c00000000000cbbfc5000000000000cb3fe6a00000000000cb3ff1c00000000000cbbfe0000000000000cbbfd8000000000000cb3fd9c00000000000cbbfde400000000000cb3fe2800000000000cb3ffc800000000000cb3fdf800000000000cbbfd8600000000000cb3fe4c00000000000cb4004c00000000000cbbfef000000000000cb3fdd000000000000cbbfc8e00000000000cb3ff4c00000000000cb3fc4e00000000000cb3fe5800000000000cbbfdd000000000000cb3fe7c00000000000cb3fc5a00000000000cbbfcec00000000000cbbfed600000000000cbbfe3c00000000000cb3fe7200000000000cbbfd9400000000000cb3fdc600000000000cbbfee200000000000cbbff5000000000000cbbfb9400000000000cbbfa4800000000000cb3ff4600000000000cbbfe2c00000000000cbbfe6800000000000cbbfeb600000000000cb3fef600000000000cbbfdac00000000000cb3fe1200000000000cbbff4c00000000000cb3fe1000000000000cb3fe7000000000000cb3fd9c00000000000cb3fe8a00000000000cb3ff9c00000000000cb3ff3c00000000000cbbf80000000000000cbbff5a00000000000cb3fd6e00000000000cbbfc7200000000000cbbfd1a00000000000cbc000800000000000cbbff0200000000000cb3fe7400000000000cbbfe5000000000000cb3ff1800000000000cb3feb200000000000cb3ff6c00000000000cbbfe2800000000000cb4008c00000000000cb3ff1200000000000cbbfdce00000000000cbbfd9c00000000000cbbffe000000000000cbbfe1000000000000cb3fea800000000000cbbfdf000000000000cbbfc0c00000000000cbbfdb800000000000cbbfed000000000000cbbfdd200000000000cbbfec000000000000cbbfdec00000000000cbbfeac00000000000cb3fc4000000000000cb3fa1600000000000cb3fe8200000000000cbbfd3400000000000cb3fd4a00000000000cbbff2000000000000cbbff1200000000000cb3f8d000000000000cbbfe8e00000000000cb3fe9800000000000cbbff8600000000000cb3f7b000000000000cb3fe5a00000000000cbc002400000000000cb3fecc00000000000cbbff5e00000000000cbbfd6000000000000cbbff5e00000000000cb3fb0400000000000cb3fd3200000000000cbbff9a00000000000cbbfcec00000000000cbbff1400000000000cb3fa6200000000000cbbfc6200000000000cbbff3e00000000000cbbfd9000000000000cbbff2200000000000cbbff7800000000000cbbf9d000000000000cbbfdd200000000000cb3fe1e00000000000cbc002a00000000000cbbfd0000000000000cb3ff0800000000000cb3ff1800000000000cb3fdd200000000000cb3ff4200000000000cbbfd2600000000000cbbff0400000000000cbbfdb000000000000cbbff0c00000000000cbbffde00000000000cb3fda000000000000cb3ffaa00000000000cbbfed000000000000cbbfebc00000000000cbbff4200000000000cb3ff9200000000000cbbfc9e00000000000cb3fed800000000000cbbfd3000000000000cbbfe7000000000000cb3fb6e00000000000cb3fe7a00000000000cbbfe3600000000000cb3fada00000000000cb3feb200000000000cb3fb4a00000000000cb3fe2600000000000cbbfea800000000000cbbfe7200000000000cb3fe9000000000000cbbfcd000000000000cb3ff1000000000000cb3fc6400000000000cb3fd8000000000000cbbfe4000000000000cb3fec800000000000cb3ff5a00000000000cbbfe6800000000000cb3ff0600000000000cb3fe1e00000000000cbbfdb800000000000cb3ff7c00000000000cb3ff0a00000000000cbbff1400000000000cb3fc0400000000000cbbff6a00000000000cbbfeaa00000000000cbbfb0400000000000cb3ffc400000000000cb3fdd800000000000cbbfb4e00000000000cbbfc3800000000000cb3fb2200000000000cb3ff3800000000000cbbfe9c00000000000cbbfedc00000000000cbbfda800000000000cbbfe7c00000000000cb3fdde00000000000cb3ff4a00000000000cbbff3a00000000000cbbff4000000000000cb3fe9600000000000cb3fe2c00000000000cb3ff8000000000000cbbff1a00000000000cb3f9f000000000000cbbfc3a00000000000cb3fe9800000000000cb3fcdc00000000000cb3fe3000000000000cbbff5200000000000cbbfe4400000000000cb3fd1800000000000cbbff1a00000000000cb3fe4200000000000cbbffb200000000000cbbfd8800000000000cb3fe3200000000000cb3fef600000000000cbbfe2800000000000cbbfe5400000000000cbbfe0800000000000cbbff2800000000000cb3fe2200000000000cbbfd9600000000000cbbfe8400000000000cbbfe1a00000000000cbbfcd400000000000cbbfb1800000000000cb3ff0800000000000cbbfd7800000000000cb3fc7800000000000cbbfd6800000000000cb3fd5c00000000000cb3fea200000000000cb3fb5c00000000000cb3fe1800000000000cb3fd3600000000000cb3fe7c00000000000cb3ff9600000000000cbbff9400000000000cbbfd4c00000000000cbbffc600000000000cbbfd6600000000000cbbfde600000000000cb4004800000000000cb3fecc00000000000cb3fcd600000000000cbbfd1400000000000cbbff0c00000000000cb3ffe200000000000cb3ff0800000000000cb3fe6200000000000cb3f48000000000000cbbfa6c00000000000cbbfe1400000000000cbbff1200000000000cbbfe5800000000000cb3fd2600000000000cb3fe3a00000000000cbbfc0800000000000cbbfb3c00000000000cb3ff3e00000000000cbbfbe200000000000cbbfd1000000000000cb3fb5c00000000000cbbfeae00000000000cbbfe9c00000000000cb3fcb200000000000cbbfb7e00000000000cb3fd7200000000000cbbfe5000000000000cbbfe7e00000000000cb3ff1200000000000cbbff6e00000000000cb3fde000000000000cbbfca800000000000cbbfd6200000000000cb4001c00000000000cbbffc800000000000cb3fc4e00000000000cb4005800000000000cb3fed600000000000cb3ff6200000000000cb3f40000000000000cb3ff0c00000000000cb3fdc600000000000cbbfee600000000000cbc000800000000000cbbff6a00000000000cbbfe3600000000000cbbff8600000000000cbbfce400000000000cb3fdb600000000000cb3ff3600000000000cb3fe3200000000000cbc003800000000000cbbff2400000000000cb3fe8400000000000cb3f82000000000000cbbfdf200000000000cbbfba000000000000cb3fdf800000000000cbbfb7200000000000cbbfbcc00000000000cb3fd9200000000000cb3ffae00000000000cbbff2c00000000000cb3fdd800000000000cb3fe0200000000000cbbff4200000000000cb3feac00000000000cb3fcd800000000000cb3fed800000000000cb3feb800000000000cbbfea800000000000cbbfe4000000000000cb3fe1600000000000cbbff5800000000000cb3ff1c00000000000cb3fdea00000000000cb3ff1e00000000000cbbff0c00000000000cb3ff3000000000000cbbfcb400000000000cbbfe6e00000000000cbbfd8800000000000cb3fed200000000000cbbfd5200000000000cb3ffa000000000000cbbff3200000000000cb3fe9800000000000cb3fee200000000000cb3fe0200000000000cbbfee200000000000cbbff2800000000000cbbfe4c00000000000cb3fd7000000000000cbbfdd400000000000cb3ff7e00000000000cbbff6800000000000cb3fe3200000000000cb3fecc00000000000cb3fdc000000000000cbbff4c00000000000cb3fd9800000000000cb3fe9800000000000cbbff9000000000000cbbffb000000000000cb3fcf400000000000cb3fb5a00000000000cb3fe3a00000000000cbbfee000000000000cb3ff6200000000000cb3ffd000000000000cb4001200000000000cbbfeb600000000000cb3fe9000000000000cb3fdfa00000000000cbc001800000000000cbbfad800000000000cb3fe8800000000000cb3ffa600000000000cbbfb6000000000000cbbfeea00000000000cb3fe5c00000000000cbbfd7000000000000cb3fcdc00000000000cbbfdca00000000000cbbfe7400000000000cb3fef200000000000cb3fe7800000000000cb3ff1200000000000cb3fe8a00000000000cb3ff3200000000000cb3ff5e00000000000cb3fdf000000000000cb3fe1c00000000000cbbfd3a00000000000cbbf99c00000000000cbbfe0200000000000cb3fe9200000000000cbbfc2400000000000cb3ffe600000000000cbbff5600000000000cb3fe2600000000000cbbff2a00000000000cbbfc5c00000000000cb3feb000000000000cb3fdee00000000000cb3fe7e00000000000cb3ff1400000000000cb3ff6200000000000cbbfb7800000000000cbbfe2e00000000000cbbfd8400000000000a2313383a46e616d65ab4f70706f7274756e697479a7636f6e74657874a0a9656d62656464696e67dc0400cbbfb2a00000000000cb3fd3c00000000000cb3ff4e00000000000cb3fea200000000000cbbfe8800000000000cbbf99e00000000000cbbfe7200000000000cb3ff4600000000000cb3fdd200000000000cb3ff9c00000000000cb3ff6e00000000000cb3fb4a00000000000cbbff5c00000000000cb3fafc00000000000cb3ff5400000000000cb3ff4200000000000cb3fe9000000000000cb3fe1600000000000cb3ff4000000000000cb3fe2400000000000cbbffa800000000000cbbfc4200000000000cb3ffa600000000000cb3ff5200000000000cb3fd5c00000000000cbbfd0000000000000cbbff1200000000000cb3ffc200000000000cbbfd7e00000000000cbbfe3600000000000cb3fe2400000000000cb3fe4a00000000000cb3fdb400000000000cbbfeb200000000000cbbfcc400000000000cb3fc8800000000000cb3fdfe00000000000cb3fbae00000000000cb3fe4e00000000000cbc000a00000000000cb3ff4a00000000000cb3f9a800000000000cbbfdc600000000000cbbff4800000000000cb3fefc00000000000cbbfec000000000000cbbff4400000000000cb3fe3a00000000000cbbfd9a00000000000cbbfd7200000000000cbbfcdc00000000000cbbff2a00000000000cb3fd3200000000000cb3fb4200000000000cb3fe4600000000000cbbffb400000000000cbbfe0c00000000000cb3fe4e00000000000cb3fede00000000000cbbfe4c00000000000cb3ff8a00000000000cb3fe7000000000000cbbfd0000000000000cbbfd6000000000000cbbfdd600000000000cbbfdce00000000000cb3fd8800000000000cbbf9f800000000000cbbffa600000000000cb3fd3600000000000cb3fe1600000000000cbbfe0600000000000cb3ff6400000000000cb3ff8c00000000000cbbffa800000000000cbbfe0800000000000cbbfed400000000000cb3fee600000000000cbc000e00000000000cbbfd0a00000000000cb3ff8800000000000cbbfc5a00000000000cbc001a00000000000cb3ff5e00000000000cbbff4000000000000cb3fc2400000000000cb3fe3200000000000cbbfd5800000000000cb3feb000000000000cbbfe5e00000000000cb3fcfe00000000000cb3fef000000000000cb3fac000000000000cbbff4e00000000000cb3ff9e00000000000cb3fc2a00000000000cb3ff1000000000000cbbfd7c00000000000cbbff1200000000000cb3ff0600000000000cb3fdd000000000000cb3ff2a00000000000cb3ff5a00000000000cb3fece00000000000cbbff3400000000000cb3fed800000000000cbbff0400000000000cb3fd8400000000000cb3fe9600000000000cbbff6000000000000cbbfeba00000000000cb3fd5400000000000cb4003400000000000cb3fe3a00000000000cb3fe3000000000000cb3fefe00000000000cbbfec200000000000cb3ff9600000000000cbbfdfc00000000000cbbfdcc00000000000cb3ff2200000000000cb3fd7c00000000000cb3fd2e00000000000cbbfce000000000000cbbff5c00000000000cb3fd1000000000000cb3fde200000000000cb3ff3c00000000000cb3fd4200000000000cbbff8e00000000000cbbfd2200000000000cbbfcb600000000000cb4004200000000000cb3feb400000000000cb3ff5e00000000000cb3fd5600000000000cbbfdea00000000000cbbffac00000000000cbbff1c00000000000cb3fe4600000000000cb3fdb000000000000cb3fd0000000000000cb3fd6400000000000cbbff5000000000000cbbfd8a00000000000cb3fd3800000000000cbbfe0c00000000000cbbfea200000000000cbbfd3a00000000000cb3fc5a00000000000cbbff8200000000000cb3fdec00000000000cbbff4c00000000000cb3feba00000000000cb3fe3200000000000cb3fe2a00000000000cb3fc1200000000000cb3fd8200000000000fecbbfe6600000000000cbbff8e00000000000cb3fec200000000000cb3ffd200000000000cbbfee200000000000cbbfd6600000000000cb3fb5c00000000000cb3fd6600000000000cbbfe6400000000000cbbffaa00000000000cb3fe2200000000000cbbfc7200000000000cb3ffaa00000000000cb3fca000000000000cb3fffc00000000000cbbf9a000000000000cbbfe2a00000000000cbbff8800000000000cb3fc2000000000000cb3fe8200000000000cbbffe200000000000cbbfe4e00000000000cb3ffa200000000000cb3ff0c00000000000cbbff9e00000000000cb3f9c800000000000cb3fe1c00000000000cbbffd800000000000cbbfe1c00000000000cb3fa7400000000000cbbff6400000000000cbbfeac00000000000cb3ffd200000000000cb3ff7c00000000000cb3fba400000000000cbbff7e00000000000cbbfd2800000000000cbbfe4a00000000000cbbfcfa00000000000cbbfdc200000000000cb3fb5400000000000cb3fea000000000000cb3fcde00000000000cb3fe5000000000000cb3fe1200000000000cbbfd9800000000000cbbfc0e00000000000cb3fd4c00000000000cbbfeda00000000000cb3fe2600000000000cbbfeac00000000000cb4002a00000000000cbbff0800000000000cb3ff4000000000000cb3fb6000000000000cbbfd2200000000000cb3fba400000000000cb3fc6400000000000cb3ffb600000000000cb3fdd800000000000cb3fe5600000000000cb3fe8c00000000000cbbfe6a00000000000cbbff0c00000000000cbbff2400000000000cbbfd3400000000000cb3fe1c00000000000cbbff0e00000000000cb3fe0400000000000cb3fba800000000000cbbfe0c00000000000cb3fee400000000000cb3fcba00000000000cb3fd4800000000000cbbfdfc00000000000cb3fe7400000000000cb3fe2a00000000000cb3fe3600000000000cb3fcf200000000000cb3fde000000000000cbbfe4a00000000000cb3ff4c00000000000cbbfe0400000000000cb3fe0600000000000cbc000200000000000cbbfeda00000000000cbbfea600000000000cbbff6400000000000cb3fa8800000000000cbbfece00000000000cb3ff7e00000000000cb3fdaa00000000000cb3ffb600000000000cb3fdf600000000000cbc004400000000000cbbff0400000000000cb3fdcc00000000000cb3ff0600000000000cbbfd5c00000000000cb3fbbc00000000000cbbfe8800000000000cb3fb3200000000000cb3fd0200000000000cbbff1c00000000000cbbfda600000000000cbbfb3400000000000cbbfeec00000000000cbbff2200000000000cb3fef800000000000cb3fe6e00000000000cbbfe0400000000000cb3fe1600000000000cbbfc4a00000000000cbbfd3400000000000cbbfeca00000000000cb3fcfa00000000000cb3fe3200000000000cb3fe7200000000000cbbfcfe00000000000cbbff1200000000000cbbff3c00000000000cb3ffe600000000000cb3f94e00000000000cbbfa7600000000000cb3ff8000000000000cb3fe7a00000000000cb3fd1800000000000cbbfde000000000000cbbff5000000000000cbbfe3200000000000cb3fd0a00000000000cb3ff1e00000000000cb3ff6600000000000cbbfe1000000000000cbbfca600000000000cb3fe0400000000000cbc007000000000000cbbfc9200000000000cbbfcb200000000000cb3ff2000000000000cbbfa7200000000000cb3fe6800000000000cb3fcb400000000000cb3ffbe00000000000cb3fea000000000000cbbffda00000000000cb3ff7800000000000cbbfe3200000000000cb3fca000000000000cbbfffe00000000000cb3fe6400000000000cbbff9e00000000000cb3fddc00000000000cb3fe8000000000000cbbfd2c00000000000cbbfa0000000000000cb3febc00000000000cb3fc2600000000000cb3ff3000000000000cbbfe1400000000000cbbff9e00000000000cb3fe1e00000000000cb3fdc200000000000cb3fe3e00000000000cbbfeea00000000000cb3fc2400000000000cb3fedc00000000000cbbff3000000000000cb3fea400000000000cbbfc6200000000000cb4001000000000000cb3fe3e00000000000cbbfd9800000000000cbbff9e00000000000cb3ffbe00000000000cb3fd3c00000000000cb3fe0200000000000cb3fab800000000000cbbfca400000000000cbbfd0600000000000cb3fed200000000000cbbff6c00000000000cb3fd0e00000000000cb3fd8000000000000cbbff760000000000001cbbfd0400000000000cb3ff0200000000000cb3fe3200000000000cbbfd4000000000000cbbff9c00000000000cbbfe3600000000000cbbfd1800000000000cb4003800000000000cbbfe4c00000000000cb3fd4200000000000cbbfebe00000000000cb3ffa400000000000cb3fed000000000000cb3ff1200000000000cbbfbbc00000000000cbbfe5200000000000cbbfe9400000000000cbbff4600000000000cb3fb2600000000000cbbffe400000000000cb3ff7200000000000cbbfeb600000000000cbbff1e00000000000cbbfd9400000000000cbbfd5800000000000cb3fdd000000000000cbbfe5000000000000cbbfe2200000000000cb3ff1600000000000cb3fe9200000000000cb3ff6400000000000cbbfc2600000000000cb3fd9c00000000000cbbffb800000000000cbbff4200000000000cbbfeb200000000000cb3ff4e00000000000cbbfeb600000000000cb3ffe600000000000cbbfec000000000000cbbff1e00000000000cb3fc5600000000000cb3fdb600000000000cb3fe5800000000000cbbfd2800000000000cb3ffca00000000000cb3fea600000000000cb3fc1800000000000cb3fd6400000000000cbbfc9800000000000cb3ff1400000000000cbbfe5a00000000000cbbfe2200000000000cbbfcac00000000000cbbfd1800000000000cbbfd7e00000000000cb3ff5400000000000cb3fd3400000000000cb3fd8e00000000000cb3ff1400000000000cbbfda200000000000cb3fe2200000000000cbbfdea00000000000cb3ff8400000000000cbbfb4e00000000000cb3fd5000000000000cbbfa9400000000000cb3fd3800000000000cbbfb8200000000000cbbfd9600000000000cbbff5e00000000000cb3fe2e00000000000cb3fce800000000000cbbfeda00000000000cbc001400000000000cb3fe9e00000000000cb3fde800000000000cb3ffb600000000000cbbfe3c00000000000cb3fdc400000000000cb3fd4600000000000cb3fcac00000000000cb3fe0c00000000000cbc006a00000000000cb3fe1000000000000cbc001c00000000000cb4000e00000000000cb3ffa600000000000cb4001a00000000000cb3ffdc00000000000cbbfe7400000000000cb3ff4400000000000cbbfeb000000000000cb3fcb200000000000cbbff0a00000000000cbbfcc000000000000cbbfce000000000000cb3ff0a00000000000cb3ff5e00000000000cbbfbda00000000000cbbffbc00000000000cb3ff2200000000000cbbff4000000000000cb3fb0800000000000cbbfa3600000000000cb3fd0c00000000000cb3fc3800000000000cbbff2400000000000cbbff0800000000000cbbfbc000000000000cbbfe2a00000000000cb3ff6200000000000cb3fe7e00000000000cb3fea800000000000cbc004800000000000cb3fd2a00000000000cb3ff0800000000000cbbff1c00000000000cbbff5400000000000cb3ffb000000000000cb3fd9200000000000cbbfc1600000000000cb3fd7800000000000ffcbbfe7000000000000cbbfb8e00000000000cb3fefa00000000000cb3fe4c00000000000cbbf8d600000000000cb3fddc00000000000cb3fd8e00000000000cbbff9400000000000cbbfebc00000000000cbbfe0c00000000000cb3fdf400000000000cbbfee800000000000cb3fd9a00000000000cb3fe6200000000000cb3fd3e00000000000cbbff1400000000000cb3fcea00000000000cbbfd3800000000000cb3fcbe00000000000cb3fd9200000000000cb3fc9c00000000000cb3ff3e00000000000cb3fe8400000000000cb3ff0c00000000000cbbff5800000000000cb3fd3000000000000cb3ffbe00000000000cbbff6a00000000000cb4008800000000000cb3fd8400000000000cb3fe2c00000000000cb3fbdc00000000000cbbfe4400000000000cbbfeae00000000000cb4001400000000000cbbfd9600000000000cbbfeb200000000000cbbfd2200000000000cb3f91800000000000cb3fe7200000000000cbbfc3200000000000cbbfe5c00000000000cbbfd0600000000000cb3fcf000000000000cb3faa200000000000cbbfebc00000000000cb3fec400000000000cb3fa1800000000000cb3fff400000000000cb3fafe00000000000cb3ff7200000000000cb3ff9e00000000000cbc001200000000000cb3fe0a00000000000cb3ff5000000000000cbbff8200000000000cbbfee200000000000cb3ff0a00000000000cb3fd8000000000000cbbff6000000000000cbbfc6000000000000cbbf64000000000000cb3ff2a00000000000cbbfe4a00000000000cbbff8000000000000cb3f73800000000000cbbfeac00000000000cb3fbd200000000000cbbfef200000000000cb3fb3400000000000cb3fe5a00000000000cbbfe1800000000000cb3fc8000000000000cbbfea400000000000cb3ff2200000000000cb4003400000000000cb3fecc00000000000cbbfe0600000000000cb3fd4800000000000cbbfe1e00000000000cbbfe2a00000000000cbbfdd400000000000cb3fdf200000000000cb3ff8000000000000cb3fe2000000000000cbbfe0c00000000000cbbfda400000000000cbbfef800000000000cb3fe2400000000000cb3fd4800000000000cbc003400000000000cbbfc7400000000000cbbf9dc00000000000cbbfe5200000000000cbbfd8c00000000000cb3ff4400000000000cb3ff5a00000000000cb3fc9800000000000cbbfb0e00000000000cb3ff4200000000000cbbfc7400000000000cb3fefa00000000000cb3fe4400000000000cb3fd1e00000000000cbbfe4400000000000cbbfd9a00000000000cbbfe4a00000000000cb3ff6400000000000cb3fe5e00000000000cbbff5000000000000cb3ff2000000000000cbbfebc00000000000cbbff2200000000000cb3ff9600000000000cbbfc5c00000000000cb3fc3200000000000cbbffd400000000000cb3fd1e00000000000cb3fdb600000000000cbbfed000000000000cb3ff1a00000000000cbbfde200000000000cbbff0200000000000cb3fb6e00000000000cb3fe7200000000000cb3fefc00000000000cb3fd4600000000000cb3fb4a00000000000cb3ff1a00000000000cbbffb200000000000cbbfd3a00000000000cb3fef800000000000cbc007a00000000000cb3ff4c00000000000cbbff2200000000000cbbfede00000000000cb3fb1e00000000000cbbfe2e00000000000cbbfef000000000000cbc000600000000000cbbfe9600000000000cbbfd2200000000000cbbfd5200000000000cb3ff2000000000000cbbffb400000000000cb3fda600000000000cb3fdec00000000000cb3fd0e00000000000cbbfdf200000000000cb3fdca00000000000cb3ff6c00000000000cbbfdcc00000000000cb3ff4600000000000cbbff2600000000000cbbff0600000000000cbbff5200000000000cb3fe4600000000000cbbfe4400000000000cbbfe9200000000000cbbff9e00000000000cb3fe2800000000000cb3fc4a00000000000cb3ff4600000000000cb3ff2a00000000000cb3fe6e00000000000cbbfea000000000000cbbfa2400000000000cbbfdb600000000000cbbfd2000000000000cb3fd5e00000000000cb3ff0400000000000cbc002400000000000cbbfc2a00000000000cb3fb7400000000000cbbff9800000000000cb3fd3200000000000cbbfd8600000000000cbc002800000000000cb3fd8e00000000000cbbfce600000000000cb3fd7600000000000cbbfa8400000000000cb3feac00000000000cbbfd8600000000000cb3fe7a00000000000cb3ff8200000000000cbbff4200000000000cb3fd2800000000000cbbfe8e00000000000cb3fe9a00000000000cbbff0a00000000000cb3fc2800000000000cb3fd9600000000000cb3ff9600000000000cbbfde400000000000cbbff3a00000000000cb3ff5c00000000000cb3fda000000000000cbbfdb400000000000cb3feb400000000000cb3fe7400000000000cbbfeaa00000000000cbbfdf000000000000cb3ff1400000000000cbbfe4800000000000cb3fdf400000000000cb3fcc000000000000cb3ffcc00000000000cbbfd8a00000000000cb3fe8200000000000cbbfd8a00000000000cb3fdae00000000000cb3f9f600000000000cb3fc2400000000000cbbfd8a00000000000cbbfd1600000000000cb3febe00000000000cbbf97e00000000000cbbfd7800000000000cbbfe6000000000000cbbfe2000000000000cbbfd6000000000000cb3fc2200000000000cb3ff7a00000000000cb3f79800000000000cbbfd2c00000000000cbc001e00000000000cb3ffb400000000000cbbfda200000000000cb3fe3800000000000cbbff5000000000000cb3fe6000000000000cb3fe5600000000000cb3ff4800000000000cb3fe0800000000000cb3ffc800000000000cb3ff7200000000000cb3fc3a00000000000cbbfeae00000000000cb3fefc00000000000cbbfd5600000000000cbbfba600000000000cbbfdb200000000000cbbff1000000000000cb3ff5400000000000cbbff4400000000000cb3ff6a00000000000cb3fd8600000000000cb3face00000000000cbbfc4c00000000000cb4009200000000000cb3fe1000000000000cbbfdfc00000000000cb3fb5000000000000cbbfed200000000000cbbfeb200000000000cb3fe7000000000000cbbfdd400000000000cb3fcd000000000000cbbfd0a00000000000cbbfe4a00000000000cbbfac400000000000cbbfeca00000000000cbbfeea00000000000cbbffa400000000000cb3fc3800000000000cbbfe9600000000000cb3fd3e00000000000cbbff5000000000000cb3faf400000000000cbbff1e00000000000cbbff6e00000000000cbbfdfc00000000000cbbffcc00000000000cb3ffb200000000000cbbfef000000000000cbbfca400000000000cb3ff6a00000000000cbbffae00000000000cb3fe0a00000000000cbbff7400000000000cbbfea600000000000cbbfe5c00000000000cb3fe7a00000000000cbbfbcc00000000000cbbfe6600000000000cb3fcfc00000000000cb3fc3000000000000cbbf95400000000000cbbfd7400000000000cbbfece00000000000cbbfece00000000000cbbfe3600000000000cbbff3000000000000cb3fcf600000000000cbbfc4600000000000cb3ff0e00000000000cbc001a00000000000cbbfdb800000000000cb3ff5a00000000000cb3fd4c00000000000cb3fd4400000000000cb3fe3600000000000cbbff1600000000000cbbff7a00000000000cbbff2600000000000cbbfed400000000000cbc004200000000000cb3fd7200000000000cb4002000000000000cbbff6600000000000cbbff2200000000000cbbff5e00000000000cb3fe3c00000000000cb3fca400000000000cb3fefe00000000000cbbfde200000000000cbbfef600000000000cbbfc7c00000000000cbbfd5800000000000cb3fe1400000000000cb3fdfa00000000000cb3fd1c00000000000cb3fb3c00000000000cb3fe4400000000000cbbff2c00000000000cbbfe2200000000000cb3fc5200000000000cbbfe5e00000000000cb3ff1a00000000000cb3fbac00000000000cb3fdf400000000000cbbfeec00000000000cb3fe9600000000000cb3ff7200000000000cbbfddc00000000000cb3fd1200000000000cb3ffaa00000000000cb3fb0200000000000cb3ffa000000000000cb3fbd800000000000cbbff9400000000000cb3fa2800000000000cbbfdc400000000000cbbfe8000000000000cbbfe9400000000000cb3ff8400000000000cb3fefc00000000000cb3fd7600000000000cb3ff4800000000000cb3fbf000000000000cb3ff7400000000000cbbfdac00000000000cbbfe9600000000000cb3fbf800000000000cbbfe1800000000000cb3fcda00000000000cb3fd1200000000000cbbff7400000000000cbbfeb000000000000cb3fdc000000000000cbbfc1400000000000cb3ff6600000000000cbbfe4800000000000cbbfe6c00000000000cbbfc4e00000000000cb3fe7c00000000000cbbfc7000000000000cbbfc7000000000000cbbff4a00000000000cb3fa9400000000000cb3fd9e00000000000cbbfea600000000000cb3fdee00000000000cbbfdf200000000000cbbfa6800000000000cbbfa5000000000000cb3fda600000000000cbbfcc200000000000cbbfe5600000000000cbbfcb200000000000cbbfe7400000000000cb3febc00000000000cbbfdf800000000000cbbfd4600000000000cbbfeb200000000000cbbfe9800000000000cbbfd0200000000000cb3fe8800000000000cbbfe4400000000000cb3fd2000000000000cbbfd3000000000000cb3faf800000000000cb3ffc200000000000cbbfd8200000000000cbbfac000000000000cb3fb3800000000000cb3fed200000000000cb3ff1400000000000cbbfed200000000000cbbfd9800000000000cbbfe3a00000000000cb3fa8c00000000000cbbfbfc00000000000cb3ffd600000000000cb3fe3a00000000000cb3fca400000000000cbbfdd200000000000cbbff1600000000000cb3ff8a00000000000cb3fdb400000000000cbbfc7600000000000cbbf93000000000000cb3f9d400000000000cbbfe3e00000000000cbbfd6200000000000cb3f93000000000000cbbfc1600000000000cbbfea000000000000cb3fd8800000000000cbbfd3200000000000cb3fbe200000000000cbbfc8e00000000000cb3fdf800000000000cbbfec400000000000cbbff4a00000000000cbbff3e00000000000cb3fde600000000000cb3fea600000000000cb3fed000000000000cbbfd5a00000000000cbbfc6e00000000000cb3fe4200000000000cbbff9800000000000cbbfd7800000000000cbbfc4200000000000cbbfbc600000000000cb3ffce00000000000cbbfdf600000000000cb3fed200000000000cb4000200000000000cb3ff3200000000000cb3ff3a00000000000cb3fe2400000000000cbbf9dc00000000000cb3fc6a00000000000cb3fee800000000000cbc001a00000000000cbbffe000000000000cbbff0200000000000cbbfe8c00000000000cbbfe1000000000000cb3fe7600000000000cb3fe7a00000000000cb3ff0400000000000cbbffae00000000000cbbff0400000000000cb3fce000000000000cbbf88c00000000000cb3fd4600000000000cbbfc7000000000000cb3fe8000000000000cbbfc6000000000000cb3fd1400000000000cb3fdba00000000000cb3fd1a00000000000cbbfe4000000000000cb3ff2000000000000cb3fd2200000000000cbbff9200000000000cb3ff0e00000000000cbbfedc00000000000cb3fe3800000000000cb3fe2600000000000cbbff2e00000000000cb3fcd800000000000cb3fe3e00000000000cbbffe200000000000cb3fed600000000000cb3fe6200000000000cb3ff4c00000000000cbbfed000000000000cb3ff1600000000000cbbfd6a00000000000cbbff2600000000000cbbff4a00000000000cb3fefc00000000000cbbfe0600000000000cb3ff4800000000000cbbff8e00000000000cb3fede00000000000cb3feb000000000000cbbfe3200000000000cbbfeb200000000000cbbfd1400000000000cbbff4c00000000000cbbfd2400000000000cbbfebc00000000000cb3ff7000000000000cbbfe7800000000000cb3fe3800000000000cb3ff4e00000000000cbbfac200000000000cbbfe6000000000000cb3fb9400000000000cb3fec000000000000cbbff9c00000000000cbbff1800000000000cbbfe4800000000000cb3fe2c00000000000cb3fd7600000000000cbbff0800000000000cb3fe8800000000000cb4001400000000000cb3ffa000000000000cbbfe3800000000000cb3fe1600000000000cb3f90e00000000000cbbff9000000000000cbbfacc00000000000cb3fe5000000000000cb3ffb000000000000cbbfafc00000000000cbbfed800000000000cb3ff2000000000000cb3ff2c00000000000cbbfe1400000000000cbbfeb400000000000cbbfefe00000000000cb3ff3000000000000cb3ff0a00000000000cb3ff3400000000000cb3fd0c00000000000cb3ff1800000000000cb3fed400000000000cb3fd0e00000000000cb3fd0600000000000cbbfbe000000000000cb3fd8400000000000cbbf82800000000000cbbfc0400000000000cb3fc5000000000000cb3ff7e00000000000cbc000200000000000cb3fd9000000000000cbbfebe00000000000cbbfd8a00000000000cbbf9a000000000000cbbfe5a00000000000cb3fea800000000000cb3ff7c00000000000cb3ff0c00000000000cb3fd3200000000000cbbfeea00000000000cbbfd2200000000000a2313483a46e616d65a54173736574a7636f6e74657874a0a9656d62656464696e67dc0400cb3fe8200000000000cb3fe1200000000000cb3ff0800000000000cb3fe4800000000000cbbfe1400000000000cb3fec200000000000cbbfa7a00000000000cb3fe6600000000000cb3fee000000000000cb3fdb000000000000cb3ff9000000000000cb3fe6c00000000000cbbfeb800000000000cb3fd6400000000000cb3fe9800000000000cb3fd0000000000000cb3f9d000000000000cb3fe8600000000000cb3fe1600000000000cb3fdbe00000000000cbbfffe00000000000cbbfca600000000000cb3ffda00000000000cb3ff5000000000000cb3fb3c00000000000cbbfebc00000000000cbbfe6000000000000cb4001200000000000cbbfe3600000000000cb3fefe00000000000cb3fefe00000000000cb3ff9200000000000cbbfdd400000000000cbbff2400000000000cbbff5e00000000000cbbfdb200000000000cb3fdae00000000000cb3feba00000000000cb3ff9c00000000000cbbffd200000000000cb3feea00000000000cbbfd9800000000000cbbfeca00000000000cbbff3800000000000cb3ff9400000000000cbbff0a00000000000cbbff5800000000000cb3f7f800000000000cbbfe9200000000000cb3fa4000000000000cbbfd0800000000000cbbfdee00000000000cb3fe3c00000000000cb3f86400000000000cb3ffec00000000000cbbff3a00000000000cbbfd1200000000000cb3fdd600000000000cbbf91c00000000000cbbfd4e00000000000cb3ff5800000000000cb3fe9c00000000000cbbfd5800000000000cb3fd9a00000000000cb3fca800000000000cbbfaf600000000000cb3ff1000000000000cb3fdb600000000000cbbff2e00000000000cbbfe1200000000000cb3fdc800000000000cb3fc5c00000000000cb3ffb400000000000cb3ff1400000000000cbbfebe00000000000cbbfa3600000000000cbbff4000000000000cb3ff0200000000000cbbff0400000000000cb3fd3400000000000cb3ff5000000000000cb3fee800000000000cbc001600000000000cb3ff3200000000000cbbfa0200000000000cb3fd9800000000000cbbfd3400000000000cbbfe7000000000000cb3fd7400000000000cb3fe2200000000000cbbfe9e00000000000cb3fed800000000000cbbfdae00000000000cbbff4c00000000000cb4000200000000000cbbfc1c00000000000cb3fd5200000000000cbbfde400000000000cbbfec400000000000cb3fec800000000000cb3fc1800000000000cb3fc3800000000000cb3ff8a00000000000cb3fef800000000000cbbfe6400000000000cb3ff9e00000000000cbbfe4a00000000000cb3fd5200000000000cb3fe8400000000000cbbff2800000000000cbbf99200000000000cb3ff3200000000000cb4001200000000000cb3fea200000000000cb3fd4400000000000cb3ff0800000000000cbbffe600000000000cb3fe4c00000000000cb3fcba00000000000cbbff5800000000000cb3fea600000000000cb3fe8800000000000cb3fe1600000000000cb3fdca00000000000cbbff3600000000000cb3fe0e00000000000cb3ff1c00000000000cb3fe5c00000000000cb3fe6600000000000cbbff9200000000000cbbfd7000000000000cb3fece00000000000cb3ff7400000000000cb3fc9600000000000cb3ffa200000000000cb3fd4c00000000000cbbfdc800000000000cbbff2c00000000000cbbff5e00000000000cb3feee00000000000cb3ff0a00000000000cb3fbc000000000000cb3ff7c00000000000cbbfe4800000000000cbbfb6400000000000cb3ff6200000000000cbbfc5400000000000cbbffd000000000000cbbfb2600000000000cb3fe2a00000000000cbbff7800000000000cbbfb0c00000000000cbbff5200000000000cb3ff9800000000000cb3fe6800000000000cb3fec200000000000cbbfe8e00000000000cb3fe7800000000000cbbff2a00000000000cbbff2200000000000cbbff6c00000000000cb3feec00000000000cb3ff9200000000000cbbff1e00000000000cb3fe4e00000000000cb3fd6200000000000cbbfc6200000000000cbbfdee00000000000cbbff9200000000000cb3ff9000000000000cb3fd5800000000000cb3ffc200000000000cb3ffa000000000000cb3ff9c00000000000cb3fb7200000000000cbbfd1400000000000cbbffde00000000000cbbfe4800000000000cb3ff3800000000000cbbff7000000000000ffcb3fe9400000000000cbbfc8400000000000cbbfed200000000000cbbfeaa00000000000cb3fc3e00000000000cbc002e00000000000cbbfe4c00000000000cb3fbc000000000000cbbfe9a00000000000cbbfe7a00000000000cb3ff2000000000000cb3fef800000000000cb3fe5e00000000000cbbfe8200000000000cb3fdec00000000000cbbfd9200000000000cbbfb8e00000000000cbbfc7400000000000cb3feec00000000000cb3feec00000000000cb3feb400000000000cb3fe1400000000000cb3fd7400000000000cbbff9200000000000cbbfeea00000000000cb3fbc000000000000cbbfea000000000000cbbfd7e00000000000cbbfffa00000000000cb3ff2600000000000cbbff2200000000000cb3feb200000000000cbbfb8e00000000000cb3fee200000000000cb3fbca00000000000cb3ffa800000000000cb4003000000000000cb3fa7e00000000000cb3ff0800000000000cb3fd5e00000000000cbbfeac00000000000cbbfd2c00000000000cbbff5600000000000cbbfcda00000000000cb3fa9a00000000000cbbfd6200000000000cb3fe6400000000000cb3feba00000000000cbbfea600000000000cb3ff3c00000000000cbbfa8800000000000cb3fa8400000000000cbbfbc600000000000cb3ff5e00000000000cbbfd9000000000000cb3fe1a00000000000cb3fee400000000000cb3fee400000000000cbbffb000000000000cb3ff7200000000000cbbfe6e00000000000cb3fe0e00000000000cbc003400000000000cb3fa9c00000000000cb3fc2000000000000cbbfffc00000000000cbbfefe00000000000cbbfef200000000000cb3ff5200000000000cbbfdbe00000000000cb3ff7200000000000cb3fd8000000000000cbc001800000000000cbbfe9600000000000cb3fc6800000000000cb3fd2e00000000000cb3fcc800000000000cb3fe4a00000000000cbbff6c00000000000cbbfc4600000000000cbbfed400000000000cbbff7800000000000cbbff4800000000000cbbfd0a00000000000cbc003800000000000cbbfe5200000000000cb3fee200000000000cb3fd9e00000000000cbbfb7600000000000cb3fec800000000000cbbfe8600000000000cb3fd0400000000000cbbfd0400000000000cb3fbf200000000000cb3fe7400000000000cb3ff5a00000000000cb3fd5800000000000cbbff7e00000000000cbbfbb400000000000cb3ff8600000000000cb3fce800000000000cbbfe3c00000000000cb3febe00000000000cb3fade00000000000cb3fbb400000000000cbbfeb800000000000cbbfefe00000000000cbbfd3e00000000000cb4001400000000000cb3ff9000000000000cb3ffde00000000000cbbff5400000000000cb3feb400000000000cbbfca400000000000cbc003a00000000000cbbfc9800000000000cbbfdde00000000000cb3ff7200000000000cbbfe1000000000000cb3ff5e00000000000cbbfd9000000000000cb3ffd000000000000cb3feb800000000000cbbff7c00000000000cb3fa0800000000000cbbfdc400000000000cbbfe0800000000000cbbff8c00000000000cb3fd4200000000000cbc001600000000000cb3fcc400000000000cb3fd9800000000000cbbfe7200000000000cb3fc3800000000000cb3feda00000000000cb3fec000000000000cb3fec600000000000cb3fe0600000000000cbbff6400000000000cb3fd1400000000000cb3fd8e00000000000cb3fe8c00000000000cbbfe8a00000000000cbbfdbe00000000000cb3fdc400000000000cbbfd2c00000000000cb3f64800000000000cbbfd5000000000000cb3ffa200000000000cb3fcf000000000000cbbff1200000000000cbbff3e00000000000cb3fddc00000000000cbbfe0800000000000cb3fa0c00000000000cb3fb2e00000000000cbbfd6a00000000000cb3fd8400000000000cb3ff3400000000000cbbff7e00000000000cb3fb5800000000000cb3ff7c00000000000cbc004800000000000cb3fd0c00000000000cbbfe9e00000000000cb3fe3800000000000cb3faa200000000000cb3fd7800000000000cbbff1000000000000cbbfdca00000000000cbbfd6000000000000cb4006e00000000000cbbfbf600000000000cbbfcb400000000000cbbfe1000000000000cb3fed400000000000cb3fe5800000000000cb3fda400000000000cbbfe2600000000000cbbff0200000000000cbbfe7c00000000000cbbfebe00000000000cb3fdbc00000000000cbbff1000000000000cb3ffa200000000000cbbfeee00000000000cbbfe3000000000000cbbfd6c00000000000cbbfc6c00000000000cb3fd2e00000000000cbbfd5c00000000000cbbfe7c00000000000cb3feee00000000000cb3fd8c00000000000cb3ff9a00000000000cb3fd7800000000000cbbf79400000000000cbc000400000000000cbbff2800000000000cbbffc400000000000cb3ffca00000000000cbbfa6e00000000000cb3ff9000000000000cbbfd5c00000000000cbbffa400000000000cbbfd9c00000000000cb3fd0a00000000000cbbfb6a00000000000cbbfdf000000000000cb3fe8e00000000000cb3fece00000000000cbbfbaa00000000000cb3fdfc00000000000cbbfc7800000000000cbbfbec00000000000cbbfdc600000000000cbbfece00000000000cb3fe0800000000000cbbfcde00000000000cbbfd9800000000000cb3ff8a00000000000cb3ff2600000000000cb3fe1000000000000cb3fe5c00000000000cbbff6400000000000cb3ff8600000000000cb3fad800000000000cb3ff0600000000000cbbfeb000000000000cb3fd8600000000000cb3fca800000000000cb3fd1600000000000cb3fc0200000000000cb3fc5c00000000000cbbfee400000000000cb3ff7c00000000000cb3f96600000000000cb3fa4600000000000cbbfe8600000000000cbbfc8600000000000cb3fe9000000000000cb3fe2c00000000000cbbff1800000000000cb3fa4000000000000cbbfcc600000000000cbbfea800000000000cb3fa0e00000000000cbc003200000000000cb3fd4800000000000cbbff8400000000000cb3fe4200000000000cb3ffe000000000000cb3fff200000000000cb3ff6400000000000fecb3ff1e00000000000cbbfe0400000000000cbbfb8200000000000cbbfd5200000000000cb3fd7c00000000000cbbfb8200000000000cb3ff6e00000000000cb3fe3600000000000cb3fd3600000000000cbc001400000000000cb3ff6c00000000000cbbfe0200000000000cbbfe5800000000000cb3fe5600000000000cb3fa1800000000000cbbfa3000000000000cbbffdc00000000000cbbfeb200000000000cbbfe6200000000000cbbff3200000000000cb3ff0800000000000cb3ff9800000000000cb3fe1c00000000000cbc003a00000000000cbbfe0e00000000000cb3ff8000000000000cbbfd6c00000000000cbc001400000000000cb3ffec00000000000cb3fd8400000000000cb3ff2200000000000cbbfd1200000000000cbbff7000000000000cbbff6000000000000cbbfc8400000000000cbbfd4e00000000000cb3fece00000000000cb3fe3a00000000000cbbfb6600000000000cb3ff0800000000000cbbfebe00000000000cbbff0e00000000000cb3ff1400000000000cbbfd9200000000000cbbff6000000000000cb3fc8000000000000cb3ff8c00000000000cb3f8d000000000000cbbfe2c00000000000cbbfd2600000000000cbbff1600000000000cb3fe9800000000000cb3fd7400000000000cbbfe3c00000000000cb3ff2200000000000cb3fd1000000000000cb3fe1600000000000cbbff4400000000000cb3fcb200000000000cb3ff8c00000000000cbbffe200000000000cb4005000000000000cb3fe8600000000000cb3fe9800000000000cb3fc0800000000000cbbfe7600000000000cbbfda000000000000cb3ffa600000000000cbbfd1a00000000000cb3fdf600000000000cbbfcde00000000000cb3fddc00000000000cb3ff8800000000000cbbfc4600000000000cb3fea800000000000cb3fc2600000000000cbbfd0800000000000cbbfdc600000000000cbbfe2e00000000000cb3ff5000000000000cbbf78a00000000000cb3fdba00000000000cbbfe1c00000000000cb3ff1a00000000000cb3fee400000000000cbbfe1600000000000cb3ff2c00000000000cb3fcc600000000000cbbfe5e00000000000cbbfeec00000000000cb3fee000000000000cbbfe4400000000000cbc001600000000000cb3fd1a00000000000cb3ff1800000000000cb3feb200000000000cb3fce400000000000cbbff0200000000000cbbfcac00000000000cbbfd3400000000000cbbfd7800000000000cbbfc5200000000000cb3fcfc00000000000cb3fed800000000000cbbfca400000000000cbbf7c000000000000cbbfe9000000000000cb3ffa200000000000cb4000800000000000cb3ff1a00000000000cbbff4000000000000cb3ff3800000000000cbbfd8000000000000cbbfd5400000000000cbbfd1a00000000000cb3fe3c00000000000cb3fe3e00000000000cb3ff9800000000000cbbfcd000000000000cb3fc5400000000000cbbfe2800000000000cbbfe6c00000000000cb3f94400000000000fecb3fe1a00000000000cbbfe9600000000000cb3f6a000000000000cb3fe1400000000000cb3febe00000000000cb3ffc400000000000cb3fc6e00000000000cbbfc0a00000000000cb3fe4800000000000cb3fea400000000000cb3fd8200000000000cb3fe3200000000000cb3fe7200000000000cbbfd8e00000000000cbbfd4c00000000000cbbfdf800000000000cb3ff2200000000000cb3fa8800000000000cbbffd800000000000cb3f89000000000000cbbff1800000000000cbbfdde00000000000cb3fede00000000000cbbfdaa00000000000cbbfdbe00000000000cbc002200000000000cbbfb2000000000000cb3fe6a00000000000cbbff6a00000000000cb3fdec00000000000cbbfca600000000000cbbfc8200000000000cb3fe6600000000000cb3fee000000000000cb3fe0600000000000cbbfee400000000000cbbfb5c00000000000cb3ff8000000000000cbbff4000000000000cb3fd1800000000000cbbfd0000000000000cbc002c00000000000cb3ff4600000000000cbbfd4a00000000000cbbfe6000000000000cb3f82a00000000000cbbff6c00000000000cbbfe4600000000000cbbfffc00000000000cbbfe2e00000000000cb3fc8800000000000cb3fd3e00000000000cb3ff5000000000000cbbfebe00000000000cb3fed000000000000cbbfb3000000000000cb3fe8a00000000000cbbfc5a00000000000cb3fe1e00000000000cb3fe6c00000000000cbbff3600000000000cb3febe00000000000cbbff4a00000000000cbbfd5200000000000cbbff6400000000000cbbfe1c00000000000cb3fc4800000000000cbbff1800000000000cbbffd600000000000cb3fd2600000000000cb3fdf400000000000cbbfbdc00000000000cb3fec200000000000cb3fdd200000000000cbbfed600000000000cb3fcc800000000000cbbfedc00000000000cbbf54000000000000cb3fab400000000000cb3fe5600000000000cbbfff000000000000cbbfc7c00000000000cbbfdfc00000000000cbbff8000000000000cb3feca00000000000cb3fbdc00000000000cbbffbc00000000000cb3fe0e00000000000cb3fd9600000000000cbbfb8800000000000cb3fafe00000000000cb3fea000000000000cbbfed600000000000cbbfd5200000000000cb3ff9e00000000000cbbff0a00000000000cb3fda400000000000cb3fa9000000000000cb3ff4c00000000000cbbfe9c00000000000cbbfc0600000000000cb3fe7400000000000cb3ff8a00000000000cb3facc00000000000cbbfc0800000000000cb3fd0c00000000000cb3fc5c00000000000cbbfd1e00000000000cb3ffc400000000000cb3feae00000000000cbbfd2c00000000000cbbfa3800000000000cb3fff800000000000cbbfc6400000000000cb3fcbc00000000000cb3fef200000000000cb3ff3400000000000cbbfe5c00000000000cb3fe4400000000000cb3fb6a00000000000cb3fe6600000000000cbbfc0a00000000000cbbfe5000000000000cbbfec200000000000cb3fc0000000000000cbbfe0000000000000cbbfec000000000000cbbfd5000000000000cb3fc5400000000000cbbff5800000000000cbbfe6a00000000000cb3feec00000000000cb3fef600000000000cbbfdd000000000000cb3fa8400000000000cbbffb800000000000cb3fe2c00000000000cbbff2600000000000cb3fe7a00000000000cbbffe000000000000cb3fdd000000000000cb3fe9000000000000cb3ff5400000000000cb3fe4000000000000cb3ffb800000000000cb3ffb200000000000cb3fbf600000000000cbbfe3a00000000000cb3ff4600000000000cbbfe6600000000000cbbfe6400000000000cbbfd5e00000000000cbbfe6a00000000000cb3ff7600000000000cbbfe9a00000000000cb3ffe000000000000cb3fd6200000000000cb3ff2000000000000cbbfd1400000000000cb400ea00000000000cb3fd9a00000000000cbbfe0c00000000000cbbfce000000000000cbbffb000000000000cbbfee200000000000cb3fd1800000000000cbbfd3e00000000000cbbfdac00000000000cbbfa0a00000000000cbbfe5c00000000000cbbfb2a00000000000cbbfde800000000000cbbfdf200000000000cbbff9000000000000cb3f91400000000000cbbfef000000000000cb3fd9000000000000cbbff0e00000000000cb3fd9e00000000000cbbfd7000000000000cbbff4000000000000cbbfd1000000000000cbbfef400000000000cb3fffe00000000000cbbfedc00000000000cb3fb9400000000000cb3ff8000000000000cbc001400000000000cb3ff0400000000000cbbff6800000000000cbbfda600000000000cbbff6a00000000000cb3fc4c00000000000cbbfd0e00000000000cbbfe5c00000000000cbbfe6400000000000cbbfd3400000000000cb3ff1000000000000cbbfeba00000000000cbbfcc000000000000cbbff6200000000000cbbff6800000000000cbbff4800000000000cb3ff1200000000000cbbfe2600000000000cbbfa6400000000000cbbffe400000000000cbbff0e00000000000cb3fe8200000000000cb3ff1a00000000000cbbfb6200000000000cb3ff1800000000000cbbff8200000000000cbbff1000000000000cbbfd3600000000000cbbff7a00000000000cbbff5400000000000cbbfcd800000000000cb3ff2000000000000cbbfed600000000000cbbfeda00000000000cbbff5400000000000cb3ff0e00000000000cb3fb6c00000000000cb3ff4a00000000000cbbff6c00000000000cbbfe8800000000000cbbfd5000000000000cb3fd5c00000000000cbbfe6400000000000cb3fcc800000000000cb3fcf200000000000cbbf82800000000000cb3fe1800000000000cbbff6800000000000cbbfd5200000000000cb3fc2400000000000cb3fd1200000000000cb3fe1200000000000cb3fec000000000000cb3fec200000000000cbbfc6e00000000000cb3ff5000000000000cb3ffa800000000000cbbff0e00000000000cb3ff1e00000000000cb3ff2000000000000cbbfd9e00000000000cb3ff1000000000000cb3fddc00000000000cbbff3e00000000000cbbfe9e00000000000cb3fdd800000000000cb3fcfe00000000000cbbfedc00000000000cb3fe8800000000000cb3fe6400000000000cb3fe9800000000000cb3fe2400000000000cb3f9ee00000000000cb3ff0c00000000000cbbfb9a00000000000cbbfe1200000000000cb3fcaa00000000000cb3fe8a00000000000cbbfb4800000000000cb3ff2200000000000cbbff7000000000000cbbffa000000000000cb3fd3800000000000cb3fce200000000000cb4001400000000000cbbff3c00000000000cbbff0400000000000cb3fdc400000000000cb3ff4a00000000000cb3fdca00000000000cb3fe5200000000000cbbfe7e00000000000cb3fba000000000000cb3fa4400000000000cbbfcd800000000000cb3ff2e00000000000cbbff1e00000000000cb3fba600000000000cb3fe9400000000000cb3fe5a00000000000cbbfed000000000000cbbfee200000000000cbbfe2400000000000cbbfe5000000000000cb3ffd000000000000cbbfdfc00000000000cbbfd7e00000000000cbbff1000000000000cbbfecc00000000000cbbfdbc00000000000cb3fec800000000000cbbfe5200000000000cbbfc6200000000000cbbfc4800000000000cb3fb6e00000000000cb3fff400000000000cb3fe0200000000000cbbfd0400000000000cbbfe7800000000000cb3fe5400000000000cb4000400000000000cbbff4c00000000000cbbfe3400000000000cbbfe4200000000000cbbfd6800000000000cb3feda00000000000cb3ffc200000000000cb3fdf600000000000cb3f8e000000000000cbbf73000000000000cbbfeee00000000000cb3ff3200000000000cb3fff000000000000cbbfe0200000000000cbbfeaa00000000000cbbfe9e00000000000cbbfd9e00000000000cbbfd4e00000000000cbbfc0c00000000000cbbfe5200000000000cbbfaf000000000000cbbfd5600000000000cbbfc0200000000000cb3fdc000000000000cbbfe2800000000000cb3fb0400000000000cbbfe9800000000000cbbffba00000000000cb3f74000000000000cb3fdba00000000000cb3fe8a00000000000cb3fd6a00000000000cbbfc6800000000000cbbff1e00000000000cb3fece00000000000cbbfcd000000000000cbbfe7200000000000cb3fdb400000000000cbbffb600000000000cb3ffae00000000000cbbfff200000000000cb3fe9a00000000000cb3ffe200000000000cb3fe4000000000000cb3ffb200000000000cb3ff1e00000000000cb3fd9600000000000cbbff0400000000000cb3fde400000000000cbbff3c00000000000cbbffb800000000000cbbfef200000000000cbbff5800000000000cbbfe0a00000000000cb3fd3000000000000cb3fdb800000000000cb3fdec00000000000cbbff9000000000000cbbff5e00000000000cb3fe6600000000000cb3f95200000000000cbbfc0400000000000cbbfd2c00000000000cb3fde600000000000cbbfdec00000000000cbbfe5e00000000000cb3fec200000000000cbbfe6e00000000000cbbfede00000000000cb3ff3e00000000000cb3feec00000000000cbbff6400000000000cb3fbf800000000000cb3fd5e00000000000cbbfc9e00000000000cb3ff4c00000000000cbbfe6400000000000cbbfebc00000000000cbbfe3e00000000000cbbffb800000000000cb3fdf200000000000cb3ff2200000000000cb3fdb000000000000cbbfe2000000000000cb3fe0000000000000cb3fd2800000000000cbbfeb200000000000cbbfc1400000000000cb3ffd800000000000cbbfe1c00000000000cb3ffd600000000000cbc001a00000000000cb3fe1800000000000cb3fe4e00000000000cbbfdba00000000000cbbfea200000000000cbbfedc00000000000cbbfd4a00000000000cb3fca800000000000cbbfdb400000000000cb3ff2200000000000cbc001a00000000000cbbfdf400000000000cb3fe8a00000000000cb3fde000000000000cbbff2400000000000cb3fc2000000000000cb3fcb400000000000cbbffc000000000000cbc002600000000000cbbfd6600000000000cb3fe4000000000000cb3fcd600000000000cbbfde400000000000cb3fedc00000000000cb3ff7400000000000cb3fffc00000000000cbbfdde00000000000cb3fdc800000000000cbbfdec00000000000cbbff2c00000000000cbbfbba00000000000cb3ffc400000000000cb4000600000000000cb3fc9000000000000cbbfef400000000000cb3ff1800000000000cb3ffba00000000000cbbfc6600000000000cbbfeba00000000000cbbff0600000000000cb3fd3e00000000000cb3ff3400000000000cb3fd7c00000000000cb3fe7600000000000cb3fd6800000000000cb3fe2000000000000cb3ff2200000000000cbbfc9400000000000cbbf88400000000000cbbfe9600000000000cbbfea800000000000cbbfb0200000000000cbbfe4800000000000cb3ff9200000000000cbbfff400000000000cbbfd0000000000000cbbfdf400000000000cb3fb0400000000000cbbfc0800000000000cb3fd6600000000000cb3fef40000000000001cb3fe6c00000000000cb3fe6a00000000000cbbff3400000000000cb3fe5200000000000a2313583a46e616d65a44c656164a7636f6e74657874a0a9656d62656464696e67dc0400cb3fd1000000000000cbbfd6e00000000000cb3f7c000000000000cb3fe2800000000000cbbfd8800000000000cb3fd6600000000000cb3fc8000000000000cb3ff2400000000000cb3fe4200000000000cb3fefc00000000000cb3ff0a00000000000cb3fca800000000000cbbfe9000000000000cb3fc2000000000000cb3fe3e00000000000cb3ff2c00000000000cb3fda200000000000cb3ff8200000000000cb3fcaa00000000000cb3fece00000000000cbbffb400000000000cbbfb6e00000000000cb3ff8800000000000cb4001000000000000cbbfe0e00000000000cbbfbb800000000000cbbfea200000000000cb4004600000000000cbbff3600000000000cbbfdc200000000000cb3fc9400000000000cb3ff4a00000000000cbbfdea00000000000cb3fc1600000000000cbbfed800000000000cb3fa8e00000000000cb3fd3a00000000000cb3fea800000000000cb3ff0e00000000000cbbff2600000000000cb3fe4200000000000cb3fb8e00000000000cbbff1200000000000cbbff2000000000000cb3fff200000000000cbbfe2400000000000cbbff6800000000000cb3fc8800000000000cbbff1800000000000cbbfe4800000000000cbbf71400000000000cbbfa1000000000000cb3fe3e00000000000cbbfcde00000000000cb3ff5e00000000000cbbffb200000000000cbbfe7000000000000cb3ff4600000000000cb3fee800000000000cb3fade00000000000cb3fea200000000000cb3fbd400000000000cb3fcb400000000000cbbff0e00000000000cb3fc6200000000000cbbf98a00000000000cb3fcec00000000000cb3feac00000000000cbbff4e00000000000cb3fbda00000000000cbbfcd600000000000cbbfec400000000000cb3ff7c00000000000cb3fed400000000000cbc000c00000000000cbbff1c00000000000cbbfe5200000000000cb3ff4600000000000cbbfcf200000000000cbbfc1800000000000cb3ff0800000000000cb3fe4a00000000000cbc002800000000000cb3ffca00000000000cbbfe5800000000000cbbfb0e00000000000cbbfc0200000000000cbbfe3e00000000000cb3fe8800000000000cbbfa3c00000000000cbbfe3600000000000cb3ff1600000000000cbbfcfe00000000000cbbfe4a00000000000cb3ff9c00000000000cb3fe6c00000000000cbbfa7400000000000cbbfd0800000000000cbbfdc200000000000cb3ff2400000000000cb3ff1000000000000cb3fd3a00000000000cb3ffa200000000000cb3fe9a00000000000cbbff0200000000000cb3ff4c00000000000cbbff7600000000000cb3fc2000000000000cb3ff5600000000000cbbfe1200000000000cbbfd3000000000000cb3fdee00000000000cb3ffe800000000000cb3fe8c00000000000cb3fd2c00000000000cb3fe8200000000000cbbff0400000000000cb3feda00000000000cb3f8ac00000000000cbbfd2400000000000cb3fef000000000000cb3fef800000000000cb3fe2200000000000cb3fe8000000000000cbbffd000000000000cbbfd2600000000000cb3fcec00000000000cbbfb8a00000000000cb3ffac00000000000cbbffba00000000000cbbfce000000000000cb3fe5a00000000000cb4001a00000000000cb3fd4400000000000cb3ff1400000000000cb3fb6c00000000000cbbf6fc00000000000cbbff4200000000000cbbff2a00000000000cb3feba00000000000cb3fe7c00000000000cb3fede00000000000cb3fedc00000000000cbbfe6c00000000000cb3fca800000000000cb3fe7600000000000cbbfbf600000000000cbbff9c00000000000cb3fbc000000000000cb3fd9c00000000000cbbfd7800000000000cbbfdf600000000000cbbff3a00000000000cb3ff2e00000000000cb3ff4600000000000cb3fe2200000000000cb3fa7000000000000cb3fd5c00000000000cbbff8200000000000cbbff1a00000000000cbbffa400000000000cb3fe1a00000000000cb3ffd000000000000cbbfcfe00000000000cb3fd7c00000000000cb3fd7e00000000000cbbfd6c00000000000cbbfeda00000000000cbbff9c00000000000cb3fddc00000000000cbbfb3c00000000000cb3ffc800000000000cb3fe0800000000000cb3fe6c00000000000cbbfeaa00000000000cb3fd9200000000000cbbffe000000000000cbbfbd000000000000cb3ff4400000000000cbbff4e00000000000cbbfde800000000000cb3fc6600000000000cb3fce600000000000cbbff2400000000000cbbfc6600000000000cb3fc4600000000000cbbff8a00000000000cbbfd8600000000000cbbfd4e00000000000cbbffb000000000000cbbfede00000000000cb3ffca00000000000cb3ff5000000000000cb3fa2400000000000cbbff0a00000000000cbbfcb200000000000cbbfd2e00000000000cbbfe5200000000000cbbfe1600000000000cb3fde800000000000cb3ff1400000000000cb3fe1200000000000cb3ff5200000000000cb3fcb200000000000cbbff3800000000000cbbff2c00000000000cb3fde400000000000cbbfedc00000000000cb3fe3400000000000cbbfebe00000000000cb3ff5000000000000cbbff2400000000000cb3fedc00000000000cbbfb6000000000000cb3fe5800000000000cb3fdec00000000000cb3fd1e00000000000cb3ffda00000000000cbbfd3400000000000cb3feb200000000000cb3fddc00000000000cbbfe3a00000000000cbbfd8800000000000cbbff0e00000000000cbbfe4e00000000000cb3fc5e00000000000cbbfe6800000000000cb3f91000000000000cb3fdda00000000000cbbfd3000000000000cb3ff1a00000000000cb3fd1c00000000000cb3fdec00000000000cb3fc5c00000000000cb3ff1e00000000000cbbfa9a00000000000cb3fedc00000000000cb3ff3a00000000000cb3fe9e00000000000cbbff1e00000000000cb3fe0200000000000cb3f91000000000000cb3fc5200000000000cbbfffc00000000000cbbff3600000000000cbbfd9a00000000000cbbfff600000000000cbbff1800000000000cbbffce00000000000cb3ff8a00000000000cb3fdbc00000000000cb4001400000000000cb3fe4c00000000000cbc005600000000000ffcb3feac00000000000cb3fe5e00000000000cbbfeb600000000000cb3fe0200000000000cbbff4800000000000cbbfc9e00000000000cbbff3a00000000000cbbfda000000000000cbbfe8a00000000000cbbfb4a00000000000cbc000c00000000000cbbff1c00000000000cb3ff6a00000000000cb3fe0000000000000cbbfda600000000000cb3f9d800000000000cbbfc6600000000000cbbfd5800000000000cbbff3000000000000cb3fe9000000000000cb3fea600000000000cb3ff7800000000000cb3fb9000000000000cbbfe9400000000000cbbfe6c00000000000cb3fd0400000000000cb3feb000000000000cbbfe3c00000000000cb3ffbe00000000000cb3fadc00000000000cb3fb5400000000000cbbfd7800000000000cbbff0600000000000cbbfcda00000000000cb3fe1200000000000cb3fe4600000000000cb3ffde00000000000cbbfe1400000000000cbbfcec00000000000cb3fb3200000000000cbc002600000000000cbbfbe600000000000cbbfe5800000000000cb3fe0800000000000cbbfdc800000000000cb3fedc00000000000cb3fe3c00000000000cb4000c00000000000cb3ff0800000000000cbbffb200000000000cb3fd5e00000000000cbbfe7200000000000cbbfaf400000000000cbc002e00000000000cb3fb8000000000000cbc003000000000000cb3fdb600000000000cb3fa9000000000000cbbfd4800000000000cb3fafc00000000000cbbfd0e00000000000cb3fde000000000000cb3ff0e00000000000cb3fce000000000000cbbffe600000000000cb3fea600000000000cb3ff3600000000000cb3fde600000000000cbbfdb800000000000cbbfd7600000000000cb3fe1a00000000000cbbfec000000000000cb3fe2a00000000000cbbfda000000000000cb3ff8600000000000cb3fe3000000000000cbbfe1c00000000000cbc005800000000000cb3ff6a00000000000cbbfc8600000000000cbbf93600000000000cbbfd1400000000000cbbfd7800000000000cbbfe6200000000000cb3ff4a00000000000cbbfeec00000000000cbbfc3200000000000cb3fe3200000000000cbc003e00000000000cb3ff4e00000000000cbbfc9e00000000000cb3feec00000000000cb3fe0e00000000000cb3fc8c00000000000cbbff6400000000000cbbfd1600000000000cbbfcac00000000000cb4008400000000000cbbfe4800000000000cb3fdf800000000000cbbfd0400000000000cb3ff0600000000000cb3fe4800000000000cb3ffc800000000000cb3fe5a00000000000cbbfd5400000000000cbbfe3000000000000cbbfedc00000000000cb3fc0400000000000cbbfebc00000000000cb3ff4400000000000cbbff9000000000000cbbfe7000000000000cbbfeea00000000000cbbfd7e00000000000cb3ff4c00000000000cbbfed000000000000cbbfe0000000000000cb3ff3000000000000cb3fcca00000000000cb3ff7000000000000cb3ff3600000000000cb3ff5000000000000cbbff5800000000000cbbffda00000000000cbbffce00000000000cb4001600000000000cbbfca600000000000cb3fffe00000000000cbbfd7200000000000cbbffd200000000000cbbfd1600000000000cb3fc1600000000000cbbfbd000000000000cbbfc5c00000000000cb3ff4a00000000000cb3ff1400000000000cb3fa9200000000000cb3fe0e00000000000cbbfc4800000000000cb3fe9a00000000000cbbfafa00000000000cbbfcd400000000000cb3fd9c00000000000cb3fe7400000000000cbbfbf600000000000cb3ff1600000000000cb3fef600000000000cb3fe7200000000000cb3fedc00000000000cbbff6800000000000cb3fe7800000000000cbbfda000000000000cb3fede00000000000cbbfe5800000000000cb3fecc00000000000cbbfa0c00000000000cb3fb0000000000000cb3febe00000000000cb3fe3a00000000000cbbff6600000000000cb3ff1a00000000000cb3fe0800000000000cb3fbfc00000000000cbbff1400000000000cb3ff0400000000000cb3f86800000000000cb3fee800000000000cbbfeca00000000000cb3fb2c00000000000cbbfc1800000000000cb3fed800000000000cbbfb7800000000000cbc007400000000000cb3fd8c00000000000cbc001000000000000cb3ffd400000000000cb3ff4a00000000000cb4001800000000000cb3ffb400000000000cbbfda600000000000cb3ff8000000000000cbbfcd000000000000cbbfd5a00000000000cbbfed200000000000cb3fbc200000000000cbbfce400000000000cb3ff4e00000000000cb3ff2e00000000000cbbfb7200000000000cbbfff800000000000cb3fea800000000000cbbfe2800000000000cbbfb5400000000000cbbfcf200000000000cb3ff9600000000000cb3fe7a00000000000cbbffe400000000000cbbff1200000000000cbbfd6800000000000cbbfeae00000000000cb3ffc000000000000cb3ff4c00000000000cb3fe3e00000000000cbc009600000000000cb3fbac00000000000cb3ff2a00000000000cbbfe1000000000000cbbff5a00000000000cb4000400000000000cb3fea000000000000cbbfa2600000000000cb3fd2400000000000cbbfe2800000000000cbbff2a00000000000cbbfa4400000000000cb3fe0400000000000cb3feac00000000000cbbfd3400000000000cbbfb7800000000000cb3ffb800000000000cbbff4600000000000cbbff8200000000000cbbfb4600000000000cbbfabe00000000000cbbff2600000000000cb3fe5a00000000000cb3fe3e00000000000cb3fad000000000000cbbfe0400000000000cbbfe4400000000000cbbff7200000000000cbbf86e00000000000cb3fc7e00000000000cb3fd6400000000000cb3ff3800000000000cb3fc0e00000000000cb3fd0c00000000000cbbff3c00000000000cb3fee600000000000cb3ffc200000000000cbc003c00000000000cb4002600000000000cb3fc7c00000000000cb3fdc600000000000cb3fd0e00000000000cbbff7400000000000cb3fc7a00000000000cb3fff400000000000cbbfd8000000000000cbbfe2000000000000cbbfef600000000000cbbfc7400000000000cb3ff1600000000000cbbfc2000000000000cbbfd8400000000000cbbfe7a00000000000cbbfe9e00000000000cbbfd7400000000000cbbff4000000000000cb3feac00000000000cbbfb0600000000000cb3fe8600000000000cb3fe8c00000000000cb3fd3400000000000cb3fe9a00000000000cbbfe5200000000000cb3fea400000000000cb3ff3c00000000000cbbff9000000000000cbc000400000000000cb3ff0800000000000cb3fca000000000000cbbfe9a00000000000cb3fc3200000000000cb3fcf200000000000cb3fe1a00000000000cbbfeec00000000000cbbfec600000000000cbbfc8200000000000cbbfd7600000000000cbbfd0200000000000cbbfeb800000000000cb3fed800000000000cb3ff2400000000000cbbff5a00000000000cbbfb5e00000000000cb3fb2800000000000cb3ff7000000000000cb3ff5c00000000000cb3fe7000000000000cbbfee000000000000cb3feb600000000000cbbfed000000000000cbbfc2400000000000cbbfe9e00000000000cb3ff4200000000000cb3ff8400000000000cb3fe7e00000000000cbbfc5e00000000000cbbfb6800000000000cbbfd6e00000000000cbbfd6800000000000cb3fe1000000000000cbbff7400000000000cb3fec600000000000cbbfe2200000000000cbbfe0000000000000cb3fbe600000000000cb3fed600000000000cb3feea00000000000cbbfcc600000000000cbbfdf400000000000cb3ff6c00000000000cbbfe8c00000000000cb3ff4400000000000cb3fe5200000000000cb3fe1a00000000000cbbfeac00000000000cbbfe2800000000000cbbfef000000000000cb3fdda00000000000cb3fef400000000000cbbff4200000000000cb3fe5600000000000cbbfe7c00000000000cbbfe9a00000000000cb3ff6400000000000cbbf80800000000000cbbfe8600000000000cbbff0200000000000cbbfc6c00000000000cb3fee400000000000cbbfe9c00000000000cb3fed600000000000cb3fd2400000000000cbbfd7a00000000000cbbfa5000000000000cb3ff1200000000000cb3fd8000000000000cbbfcc000000000000cb3fcbe00000000000cb3ff4000000000000cbbfff800000000000cbbfc5400000000000cb3fd1200000000000cbc007000000000000cb3ff3800000000000cbbfea400000000000cbbfdc600000000000cbbfd2800000000000cbbfe3c00000000000cbbfe5e00000000000cbbffa800000000000cbbfd3800000000000cb3fd4200000000000cb3fd8400000000000cb3ffba00000000000cbbffc400000000000cbbfca400000000000cb3fd1800000000000cbbfd8000000000000cbbfbdc00000000000cb3fea000000000000cb3fe1800000000000cbbff4c00000000000cb3ff9c00000000000cbbfe7c00000000000cbbfe2a00000000000cbbff2800000000000cb3fd8c00000000000cbbfbd000000000000cbbfe7000000000000cbbff9e00000000000cb3fd6400000000000cb3ff0a00000000000cb3fe4600000000000cb3fe8e00000000000cb3fec800000000000cbbff3c00000000000cb3fe0400000000000cbbff1e00000000000cbbfde000000000000cbbfe2600000000000cb3fea000000000000cbc006400000000000cbbfd0800000000000cb3fcae00000000000cbbff0a00000000000cb3fe1200000000000cbbfde000000000000cbc001c00000000000cb3fe7000000000000cbbfe0000000000000cb3fbb200000000000cbbf97200000000000cb3fb4e00000000000cbbfe9e00000000000cb3fe6000000000000cb4001800000000000cbc000400000000000cb3fe4000000000000cb3fe2c00000000000cb3ff4a00000000000cbbfe9800000000000cbbfd6a00000000000cb3fe0800000000000cb3ffa400000000000cb3fa8200000000000cbbff2200000000000cb3ff7200000000000cbbfe6400000000000cbbfcfc00000000000cb3fe5c00000000000cb3feb000000000000cbbfee000000000000cb3fc5400000000000cb3ff0a00000000000cbbfec800000000000cbbfc0400000000000cb3fb6400000000000cb3ff3c00000000000cb3fd4c00000000000cb3ffaa00000000000cbbfe1200000000000cbbfabe00000000000cbbfc5800000000000cbbfe1000000000000cbbfb2600000000000cb3fdae00000000000cb3fc9600000000000cbbfe2000000000000cbbfec000000000000cbbfe4a00000000000cbbfe1800000000000cbbfd0c00000000000cb3feb400000000000cb3ff0600000000000cbbfb7e00000000000ffcbbff7800000000000cbbf5b400000000000cbbfe4c00000000000cbbfb0c00000000000cbc001400000000000cbbfb6e00000000000cb3fe2200000000000cb3fea800000000000cb3fc5800000000000cb3ffb600000000000cb4002800000000000cb3fd9000000000000cbbff1600000000000cb3ff2600000000000cbbfe3000000000000cbbfd9200000000000cbbfecc00000000000cbbfe6600000000000cb3ffe400000000000cbbff2600000000000cb3ff5800000000000cb3fe3200000000000cb3fddc00000000000cb3fb2200000000000cb400ae00000000000cb3fe0a00000000000cbbfcc200000000000cbbfd5400000000000cbc001600000000000cbbfeec00000000000cb3ff1400000000000cbbfd8000000000000cb3fda200000000000cb3fc3c00000000000cbbfe2c00000000000cbbfeb400000000000cbbfde000000000000cbbfe4a00000000000cbbffc200000000000cbbfed400000000000cbbff2200000000000cb3ff7600000000000cbbfeea00000000000cbbfb7000000000000cbbfc3200000000000cbbfe3600000000000cbbfe2a00000000000cbbff1000000000000cb3ff7c00000000000cbbff5000000000000cb3fc3400000000000cb3fec200000000000cbbffa000000000000cb3fe9000000000000cbbff3e00000000000cbbfdfa00000000000cbbff1200000000000cb3fe5800000000000cbbf9a400000000000cbbfd2000000000000cb3fcac00000000000cbbfea600000000000cb3fd2a00000000000cbbfe2600000000000cbbff0e00000000000cbbfe7400000000000cbbff8400000000000cbbffce00000000000cb3fe6c00000000000cbbfe0c00000000000cb3fe3800000000000cbbff3800000000000cbbfe5200000000000cb3ff3400000000000cbbfab200000000000cb3fc6800000000000cb3ff0600000000000cbbff1c00000000000cbbff0200000000000cbbfe5000000000000cbbfe8000000000000cbc000600000000000cb3ff8200000000000cb3ffce00000000000cbbfff400000000000cbbfe9200000000000cbbfb6a00000000000cb3ff7800000000000cb3fe7c00000000000cb3fe7400000000000cbbfe8200000000000cbbfe2200000000000cb3fe3400000000000cb3fa4a00000000000cb3fe2400000000000cb3fe4c00000000000cb3fe8600000000000cb3fe7a00000000000cb3fec000000000000cbbffee00000000000cbbff5400000000000cb3fedc00000000000cbbfe3a00000000000cb3ff5e00000000000cb3fc7600000000000cbbfe2000000000000cbbfb5000000000000cb3fc3800000000000cb3ffc800000000000cbbfe1a00000000000cb3fe9600000000000cb3ff6800000000000cb3fae200000000000cb3ff5a00000000000cbbfdba00000000000cbbffea00000000000cbbfd3400000000000cbbfef400000000000cbbfe4400000000000cbbfb4800000000000cb3ff8c00000000000cb3fea800000000000cb3fe2800000000000cb3ff5400000000000cb3fd3e00000000000cb3fee800000000000cbbfb6a00000000000cb3fc4000000000000cb3fe8200000000000cb3f96c00000000000cb3fdf200000000000cb3ff9400000000000cbbff6800000000000cbbff1000000000000cb3ff3200000000000cb3fe3e00000000000cb3fff200000000000cbbfed600000000000cbbfbf600000000000cbbfb3400000000000cb3ff2c00000000000cb3fa9c00000000000cb3fcfe00000000000cbbff9800000000000cbbf93200000000000cb3fc1e00000000000cbbfd0600000000000cb3fec400000000000cbbff4400000000000cb3fc1a00000000000cb3fb9000000000000cb3fcd000000000000cbbfe5000000000000cbbfe4c00000000000cbbfe5600000000000cbbfd7a00000000000cb3ffaa00000000000cbbfe8e00000000000cb3fb1c00000000000cbbfe7200000000000cbbfde600000000000cbbfdd400000000000cb3feea00000000000cbbfe0600000000000cb3fb8c00000000000cb3fcfa00000000000cbbfd1800000000000cb3ffca00000000000cb3f85400000000000cb3fd8800000000000cbbfd0a00000000000cb3ff2800000000000cb3ff8e00000000000cbbfe1e00000000000cbbfec400000000000cbbff3600000000000cb3fd4c00000000000cb3fba800000000000cb4002800000000000cb3feac00000000000cbbfd2400000000000cbbfa2400000000000cbbff2c00000000000cb4000600000000000cb3ff0800000000000cbbfde000000000000cbbfd9000000000000cbbfe0c00000000000cbbfd8600000000000cbbfd5e00000000000cbbfe2000000000000cb3fb7000000000000cb3fe5400000000000cb3fb9800000000000cbbfe2400000000000cb3fd8a00000000000cbbfea800000000000cbbfd1600000000000cbbff0400000000000cbbff0c00000000000cbbfe8a00000000000cbbfac000000000000cb3fc3a00000000000cb3fed600000000000cb3f9a400000000000cbbfe5a00000000000cb3fe5400000000000cbbfd0e00000000000cb3fd4800000000000cb3fe8800000000000cbbfc8e00000000000cb3ffa800000000000cbbfc5400000000000cb3fe8600000000000cb4002800000000000cb3fd3000000000000cb3ff6400000000000cbbfac200000000000cb3fd2400000000000cb3fe1c00000000000cb3fe1800000000000cbbff4600000000000cbbff2600000000000cbbfdc800000000000cb3fc1600000000000cb3fb4800000000000cb3fe7400000000000cb3fd1200000000000cb3fd1400000000000cbbff7800000000000cbbff4200000000000cb3fede00000000000cb3fa7e00000000000cb3fd1200000000000cbbfdae00000000000cb3fe9a00000000000cbbfe8a00000000000cb3fb5600000000000cb3fb7400000000000cbbfbac00000000000cbbfec200000000000cb3ff4a00000000000cbbfdb800000000000cbbffb600000000000cb3fefa00000000000cbbfdbc00000000000cb3fe7400000000000cb3fde000000000000cbbff1a00000000000cbbfd3800000000000cbbfa4200000000000cbc002400000000000cb3fbde00000000000cb3fefa00000000000cb3ff6400000000000cbbff1000000000000cb3ff2a00000000000cbbfeb800000000000cbbff3000000000000cbbff2600000000000cb3fe9e00000000000cbbfe2800000000000cb3ff5c00000000000cbbff4200000000000cb3fb6e00000000000cb3fecc00000000000cbbfd9c00000000000cbbfdd400000000000cbbfdba00000000000cbbffa800000000000cb3fc6600000000000cbbfed800000000000cb3ff7000000000000cbbffae00000000000cb3fbe800000000000cb3ff8200000000000cbbfd1e00000000000cbbff7e00000000000cb3fe2400000000000cb3fe8400000000000cbbfec600000000000cbbfec800000000000cb3fd3a00000000000cb3fe7e00000000000cbbf97800000000000cbbfe4800000000000cb3ff3e00000000000cb3ff1a00000000000cb3ffe800000000000cbbfee400000000000cb3fe1c00000000000cb3fe9200000000000cbbff9200000000000cb3faa800000000000cb3ff2c00000000000cb4002800000000000cbbfc2400000000000cbbfd2e00000000000cb3ffd000000000000cb3ff5c00000000000cbbfe5400000000000cbbf83c00000000000cbbfdf200000000000cb3fe7000000000000cb3fefc00000000000cb3fea800000000000cb3fef600000000000cb3fe9800000000000cb3fd1c00000000000cbbfbea00000000000cb3fee800000000000cbbfa1000000000000cbbfb0400000000000cbbfef200000000000cb3fdac00000000000cbbfcd400000000000cb3ff1800000000000cbbffd800000000000cb3febc00000000000cbbfcc400000000000cb3fdf600000000000cb3fbc000000000000cb3fe2000000000000cb3fe9a00000000000cb3ffa000000000000cb3ff1000000000000cb3fd6c00000000000cbbfef600000000000cb3fc4400000000000a2313683a46e616d65a54f72646572a7636f6e74657874a0a9656d62656464696e67dc0400cbbf97400000000000cbbfd6200000000000cb3fed600000000000cb3fe7600000000000cbbfe7600000000000cbbfbca00000000000cb3fcd400000000000cb3ff1e00000000000cb3fbee00000000000cb3ff0c00000000000cb3ff1a00000000000cbbfc9200000000000cb3f9c200000000000cbbfc7800000000000cb3ffb000000000000cb3fec400000000000cb3fe3000000000000cb3fe2a00000000000cb3fe2800000000000cb3fe5800000000000cbbffc400000000000cb3fc3c00000000000cb4001a00000000000cb3ff3e00000000000cb3fe4000000000000cbbf88000000000000cbbfea600000000000cb4002c00000000000cbbfe1a00000000000cb3fdde00000000000cbbfcae00000000000cb3fe6800000000000cbbfa1e00000000000cbbfdaa00000000000cbbff1200000000000cbbfe5e00000000000cbbfd1000000000000cbbfc1c00000000000cb3ff3000000000000cbbff1c00000000000cb3ff0200000000000cb3fd1c00000000000cbbff5800000000000cbbffa200000000000cb3ff6800000000000cbbfe1e00000000000cbbfe7e00000000000cbbf50000000000000cbbfe0e00000000000cbbfd2600000000000cbbfe7e00000000000cbbfdea00000000000cbbfcfa00000000000cbbfb3a00000000000cb3ff4a00000000000cbbff5c00000000000cbbfd2200000000000cb3fe7000000000000cb3fb7c00000000000cbbfecc00000000000cb3feb800000000000cb3fee600000000000cbbfa5000000000000cbbfca600000000000cb3fd3e00000000000cbbfe5000000000000cb3fd2c00000000000cb3fd0c00000000000cbbffac00000000000cbbfce400000000000cbbfdb200000000000cbbff1600000000000cb3ff2400000000000cb3ff6000000000000cbbffc800000000000cb3fd5800000000000cbbff5e00000000000cb3fe5c00000000000cbbff2600000000000cb3fc9000000000000cb3ffdc00000000000cb3fdbc00000000000cbc001000000000000cb3fe7e00000000000cbbfe4800000000000cbbfb1200000000000cb3fc0800000000000cbbfca000000000000cb3fc1000000000000cbbfa9c00000000000cbbfb0400000000000cb3ff1200000000000cbbfb8400000000000cbbffcc00000000000cb3ffd800000000000cb3fe3200000000000cb3fe5800000000000cbbfd6400000000000cbbfc0200000000000cb3fd1a00000000000cb3fe6400000000000cb3ffde00000000000cb3ffd600000000000cb3fc1000000000000cbbfe6a00000000000cb3fe8e00000000000cbbfdfc00000000000cb3fe5200000000000cb3feac00000000000cbbff2e00000000000cbbfebe00000000000cb3fe9800000000000cb4000a00000000000cb3fddc00000000000cb3fe0e00000000000cb3ff7800000000000cbbff0600000000000cb3fd1200000000000cbbfd9600000000000cbbfc2600000000000cb3ff1c00000000000cb3fe8000000000000cb3ff4600000000000cb3fd3800000000000cbbff5e00000000000cb3f73800000000000cb3fe3c00000000000cb3ff6400000000000cb3fe4c00000000000cbbff5000000000000cbbfee400000000000cb3fe0600000000000cb3ffc400000000000cb3fd1000000000000cb3ff9e00000000000cb3fd6e00000000000cbbfd9400000000000cbbfec800000000000cbbfe8600000000000cb3ffc800000000000cb3ff2000000000000cb3fe0800000000000cb3feea00000000000cbbfa6800000000000cbbfe7600000000000cb3fd1c00000000000cbbfcdc00000000000cbbfe1800000000000cbbfe7600000000000cb3fe1200000000000cbbff0e00000000000cbbfeb800000000000cbbfef600000000000cb3ff1e00000000000cb3ff3600000000000cb3ff1e00000000000cbbfeac00000000000cb3fd2400000000000cbbff2c00000000000cbbfe6400000000000cbbff5c00000000000cb3fe7600000000000cb3ff8a00000000000cbbff4000000000000cb3fdb000000000000cb3fef400000000000cb3fe4600000000000cbbfd6c00000000000cbbff4400000000000cb3fdf800000000000cb3ff2c00000000000cb3ff6600000000000cb3fed600000000000cb3ffa200000000000cb3fe6000000000000cb3fdae00000000000cbbff7400000000000cbbfdb800000000000cb3ff6c00000000000cbbff6000000000000cbbfefe00000000000cb3ff4400000000000cb3fc9200000000000cbbff9e00000000000cb3f90800000000000cbbfe8600000000000cbc000800000000000cbbfd7000000000000cbbfe2800000000000cbbffd200000000000cbbfe7800000000000cb3fe8400000000000cb3ff6400000000000cbbfaa200000000000cbbff4800000000000cb3fd5600000000000cbbfcea00000000000cbbfe4a00000000000cbbfe7400000000000cb3fd3000000000000cb3fc0e00000000000cb3ff1a00000000000cb3fd8c00000000000cbbfd0600000000000cbbfeb800000000000cbbfe3200000000000cb3fc5800000000000cbbfed400000000000cb3fdce00000000000cbbfef000000000000cb3fee400000000000cbbff2600000000000cb3ff0800000000000cbbfc2800000000000cbbfc4e00000000000cbbfc6000000000000cbbf94400000000000cb4002e00000000000cbbf9b400000000000cb3feea00000000000cbbfc1e00000000000cb3fc6c00000000000cbbfec200000000000cbbfee000000000000cb3fde200000000000cb3fe6200000000000cbbfd3e00000000000cbbfd8800000000000cb3fdc800000000000cbbfb2400000000000cb3ff2e00000000000cb3fcca00000000000cbbfcbe00000000000cbbfa5000000000000cb3ffb200000000000cb3fce600000000000cb3fec400000000000cb3fe2600000000000cb3feae00000000000cbbfe6c00000000000cb3ff0800000000000cbbfd5200000000000cb3ff2a00000000000cbbff2400000000000cbbfdfe00000000000cbbfdd800000000000cbbffdc00000000000cb3fd6000000000000cbbfe0800000000000cb3ff9600000000000cbbfc5400000000000cb3ff5c00000000000cb3fd2200000000000cbc005400000000000cbbfc9e00000000000cb3ff2200000000000cbbfd0200000000000cb3fc1a00000000000cb3fe3c00000000000cbbff0c00000000000cb3fdea00000000000cb3fd2600000000000cbbff2200000000000cbbfe9400000000000cbbfae000000000000cbbff4400000000000cbbfc5c00000000000cb3ffb800000000000cbbfc0a00000000000cbbfe6200000000000cb3fdc400000000000cbbfe5a00000000000cb3fc4e00000000000cb3fc3e00000000000cb3fea000000000000cb3fee600000000000cb3ffe800000000000cb3fdee00000000000cbbff9a00000000000cbbff0a00000000000cb3ff4800000000000cb3fb4a00000000000cbbfe3000000000000cb3fed200000000000cb3fede00000000000cbbfab200000000000cbbfe6400000000000cbbff9600000000000cbbfe4000000000000cb3f9ac00000000000cb3ffb400000000000cb3ffdc00000000000cbbfb5a00000000000cb3fe0200000000000cbbfe5400000000000cbc004a00000000000cbbfcd400000000000cb3fb9600000000000cb3fea000000000000cbbfb6c00000000000cb3ff7200000000000cbbfc9e00000000000cb3ff6c00000000000cb3fea200000000000cbbff5c00000000000cb3fd9800000000000cbbfd5400000000000cbbfc3400000000000cbbfed000000000000cb3fd3c00000000000cbc001600000000000cb3fe2400000000000cbbf6d800000000000cbbfdaa00000000000cb3fde200000000000cb3fee600000000000cb3ff5400000000000cb3fed600000000000cbbfe4200000000000cbbff0a00000000000cb3fea600000000000cb3fdf400000000000cb3febc00000000000cbbfe9000000000000cb3fc8000000000000cb3fd9400000000000cbbff0e00000000000cb3fd3000000000000cbbfeec00000000000cb3fe2e00000000000cb3fd3800000000000cbbfe1800000000000cbbffc800000000000cb3feae00000000000cbbfe0600000000000cb3fc7200000000000cbbfc0e00000000000cb3fe1800000000000cb3fa6800000000000cb3ff1600000000000cbbff0200000000000cbbfd1c00000000000cb3fbdc00000000000cbc000600000000000cb3fd1800000000000cbbfd4800000000000cb3fe3400000000000cb3fd0600000000000cb3fc8800000000000cbbff6000000000000cb3f86400000000000cbbfe5800000000000cb4005800000000000cbbfde000000000000cb3fc6800000000000cbbfd1400000000000cb3fd6000000000000cb3fd6400000000000cb3fcc600000000000cb3fa7000000000000cbbfea400000000000cbbff6c00000000000cbbfe4000000000000cbbfd6800000000000cbbfeb200000000000cb3ff9200000000000cbbfebe00000000000cbbfda800000000000cbbfdee00000000000cb3fc0400000000000cb3fe4400000000000cbbfd2000000000000cbbfe3a00000000000cb3fec600000000000cb3fdda00000000000cb3ff8c00000000000cbbfaa400000000000cb3fe9600000000000cbbff4a00000000000cbbfe6000000000000cbbfd4800000000000cb4001000000000000cbbff7e00000000000cb3ffd200000000000cb3fe8600000000000cbbfd7400000000000cbbfebc00000000000cb3fc5800000000000cbbfb4400000000000cbbfe3400000000000cb3ff0800000000000cb3ff0200000000000cbbfd4600000000000cb3fca200000000000cbbfe8400000000000cb3fdcc00000000000cbbf92600000000000cbbfd8600000000000cbbfd2400000000000cbbfdca00000000000cbbfc9400000000000cb3ff9000000000000cb3fed800000000000cb3feac00000000000cb3ff6a00000000000cbbfd0400000000000cb3fef200000000000cbbfdce00000000000cb3fe6e00000000000cbbfe7000000000000cb3fd2400000000000cbbfc4800000000000cbbfc0400000000000cb3fd2000000000000cb3fc2600000000000cbbfdf000000000000cb3ff3400000000000cbbfbba00000000000cb3fa0400000000000cbbff2400000000000cb3ff6c00000000000cb3fc3400000000000cb3feec00000000000cbbfe9400000000000cb3fb3800000000000cbbfdd200000000000cbbfd0800000000000cb3fe4e00000000000cbc005800000000000cb3ff1400000000000cbbffb200000000000cb3ff5c00000000000cb4002600000000000cb3ff2800000000000cb3ff6e00000000000cbbfc5200000000000cb3ff1c00000000000cbbfd8c00000000000cbbfe8800000000000cbbfec800000000000cbbfd5800000000000cbbff2000000000000cb3ff8400000000000cb3ff1e00000000000cb3feac00000000000cbc003e00000000000cb3fe9e00000000000cbbff4c00000000000cb3fe1000000000000cb3fea800000000000cb3fef000000000000cb3fe7c00000000000cbbff4e00000000000cbbffc200000000000cb3f8b800000000000cbbfede00000000000cb3ff9a00000000000cb3fea800000000000cb3fe1e00000000000cbc007800000000000cbbfdec00000000000cb3fe3e00000000000cbbfd5a00000000000cbbfeaa00000000000cb4000800000000000cbbfa5e00000000000cbbfd9a00000000000cb3fa2400000000000cbc002400000000000cbbfeac00000000000cb3fd0400000000000cb3fbe600000000000cb3ff1400000000000cb3fd0600000000000cbbfdb200000000000cb3ff5000000000000cbbff4c00000000000cbbfed800000000000cb3fe5200000000000cb3fea200000000000cbbfd1000000000000cb3fd9000000000000cb3ff6200000000000cb3fc5200000000000cbbfef600000000000cb3fee800000000000cbbff6e00000000000cb3faec00000000000cb3fe3200000000000cbbfe0a00000000000cb3ff5c00000000000cb3fd6600000000000cb3fdbc00000000000cbbff7600000000000cbbfe3800000000000cb3ffa200000000000cbbff5200000000000cb3ff9e00000000000cb3fac400000000000cb3fc7800000000000cb3fd8600000000000cbbfe1400000000000cbbfec200000000000cb3ff3200000000000cbbfdba00000000000cbbfc6e00000000000cbbfd4c00000000000cb3fe3800000000000cb3fea800000000000cbbfe2400000000000cbbfe1200000000000cbbff8800000000000cb3fe2e00000000000cbbfcd800000000000cbbff6600000000000cb3fe4000000000000cb3fee800000000000cb3fdec00000000000cb3fe1000000000000cb3fef400000000000cb3ff5000000000000cbbff7000000000000cb3ff4a00000000000cb3ff2400000000000cbbff1600000000000cbbff1000000000000cb3fdde00000000000cb3fc5600000000000cbc000e00000000000cbbfbac00000000000cbbfddc00000000000cb3ff1e00000000000cbbfe7400000000000cbbff5200000000000cb3fe3800000000000cbbfd2800000000000cbbfec800000000000cbbf90800000000000cb3fe0000000000000cb3fe9a00000000000cbbfe4e00000000000cbbfd1c00000000000cbbfbee00000000000cb4000e00000000000cb4001800000000000cb3ff4800000000000cbbfe8000000000000cb3febe00000000000cbbfe9600000000000cbbfed600000000000cbbfe3e00000000000cb3fd9e00000000000cb3ff3200000000000cb3fef200000000000cbbfe2400000000000cbbfbb800000000000cbbff4e00000000000cbbfdc000000000000cb3fcdc00000000000cbbff2400000000000cbbfe4400000000000cbbfeb800000000000cbbfe9000000000000cb3fda200000000000cb3ff2400000000000cb3ffba00000000000cbbfba400000000000cbbfc2c00000000000cb3fea200000000000cbbfa4c00000000000cb3fee200000000000cb3ff0200000000000cb3fd8600000000000cb3fd5e00000000000cbbfee000000000000cbbfe9400000000000cb3fe7400000000000cb3fde800000000000cbbff6200000000000cb3ff0600000000000cbbfe0800000000000cbbff0200000000000cb3ff1600000000000cbbfee000000000000cbbfdd200000000000cbbffc800000000000cbbfdca00000000000cb3fd9600000000000cbbffe600000000000cb3fe8e00000000000cb3fc2c00000000000cbbfde800000000000cb3fd2a00000000000cb3ff2a00000000000cb3fc8e00000000000cbbfcd800000000000cb3fee400000000000cb3ff7600000000000cbbff7600000000000cb3fbaa00000000000cb3fe4400000000000cbc004e00000000000cb3fe2400000000000cbbfe6400000000000cbbfd2800000000000cb3fbfc00000000000cbbfed400000000000cbbff3800000000000cbbffc800000000000cbbfd3000000000000cbbff1c00000000000cb3fe1c00000000000cb3ff7a00000000000cbbff6a00000000000cb3ff6400000000000cb3fbee00000000000cb3fde800000000000cbbfd7c00000000000cb3fef000000000000cb3ffe400000000000cbbfe1400000000000cb3fe8200000000000cbbfe5e00000000000cbbfb0c00000000000cbbff3800000000000cb3fb7200000000000cbbfb8600000000000cbbfdfe00000000000cbbffb000000000000cb3fe0000000000000cbbfb8600000000000cb3ff0c00000000000cbbfa8200000000000cb3fd8000000000000cbbff4800000000000cb3fef800000000000cbbfeec00000000000cb3f99000000000000cb3fe0c00000000000cb3ff9e00000000000cbc003600000000000cbbfd9a00000000000cbbfda800000000000cbbffd200000000000cb3fe8a00000000000cbbfda600000000000cbc006a00000000000cbbfd5800000000000cb3fe4200000000000cb3fe7600000000000cbbfd7400000000000cb3fde200000000000cb3fa5a00000000000cbbfc7800000000000cb3ffd800000000000cbc002000000000000cbbfbe400000000000cbbfcdc00000000000cb3fe9e00000000000cbbfe9200000000000cbbfe0800000000000cb3feec00000000000cb3ff6400000000000cb3f8f800000000000cbbfe5200000000000cb3ff4e00000000000cbbfc4000000000000cbbfd6600000000000cb3ff5e00000000000cb3fc9e00000000000cbbfe0e00000000000cbbfd6800000000000cb3ff7600000000000cbbff4200000000000cb3fcce00000000000cb3fca800000000000cb3fed200000000000cbbfe4c00000000000cb3fec400000000000cb3f9e400000000000cb3fed000000000000cbbff0c00000000000cbbfb7a00000000000cbbfc7600000000000cbbfe8c00000000000cb3fe1a00000000000cb3fb6200000000000cbbfe4e00000000000cb3fd9000000000000cbbff0200000000000cbbfe1c00000000000cb3feb800000000000cb3fee000000000000cbbfb4a00000000000cbbfeae00000000000cbbff8600000000000cb3ff0200000000000cbbfefe00000000000cb3fe0c00000000000cbbfe8a00000000000cb3fcbc00000000000cb3ffec00000000000cb3fe9e00000000000cb3fe7800000000000cb3ff3600000000000cb3ff7c00000000000cb3fdba00000000000cbbfef200000000000cb3fefa00000000000cbbff6a00000000000cbbfe1a00000000000cbbfec600000000000cbbfeba00000000000cb3ffc600000000000cbbff2800000000000cb3fe4400000000000cb3feb800000000000cb3fe6600000000000cbbfa5600000000000cb4009e00000000000cb3ff4800000000000cbbfea200000000000cbbfa8600000000000cbbfe9800000000000cbbff3c00000000000cb3fd2c00000000000cb3fe7600000000000cb3fe6400000000000cb3f98000000000000cbbfd6c00000000000cbbfe9e00000000000cbbfe2400000000000cb3fc9000000000000cbbff1000000000000cbbfcee00000000000cbbfea800000000000cb3fec000000000000cbbffea00000000000cbbfa4e00000000000cbbfeb400000000000cbbfe9600000000000cbbfd9800000000000cbbff6400000000000cb3ffe600000000000cbbfd2c00000000000cb3fe1200000000000cb3fe2a00000000000cbbff0200000000000cb3fd6000000000000cbbff9400000000000cbbff1000000000000cbbffae00000000000cbbfad000000000000cbbfe2a00000000000cbbfe1400000000000cbbfd6000000000000cbbff1c00000000000cbbfe2200000000000cbbfe4e00000000000cbbfe1200000000000cbbf97800000000000cbbfe6e00000000000cbbfe3c00000000000cb3ff4a00000000000cbbfc9200000000000cb3fd3e00000000000cbbff5a00000000000cbbfd8600000000000cb3ff0600000000000cb3fd7e00000000000cbbfb6e00000000000cb3ff4600000000000cbbff3600000000000cbbff2c00000000000cbbff0a00000000000cbbff2c00000000000cbbffca00000000000cb3fc0e0000000000002cbc000400000000000cbbfe8200000000000cbbfea200000000000cb3ffac00000000000cb3fe2c00000000000cb3fdfe00000000000cbbfdae00000000000cbbff0200000000000cbbf82600000000000cbbfa6c00000000000cb3fda800000000000cb3ff3c00000000000cbbfb0c00000000000cbbfcea00000000000cb3fe0a00000000000cbbff1600000000000cbbfe4c00000000000cb3fea600000000000cbbfe2a00000000000cb3fdc200000000000cb3fd8a00000000000cbbfaa600000000000cb3fcfc00000000000cb3ff2e00000000000cb3ff6a00000000000cbbfeb400000000000cb3fe3800000000000cb3ff7400000000000cbbfdce00000000000cb3fef600000000000cb3fe2800000000000cbbfe9600000000000cbbfb0400000000000cbbfd4000000000000cbbfe6c00000000000cbbff6600000000000cb3ffa400000000000cbbf9b400000000000cb3fd0a00000000000cb3ff4400000000000cbbfd4000000000000cb3feec00000000000cb3fc3400000000000cbbfe8a00000000000cb3fdf000000000000cbbfdfc00000000000cb3fde600000000000cb3fef000000000000cbbff3e00000000000cbbff4e00000000000cb3fd4200000000000cb3fdcc00000000000cb3fffc00000000000cbbff8c00000000000cbbfeb600000000000cbbff9c00000000000cb3fee800000000000cb3fc8800000000000cbbfd2200000000000cbbff0e00000000000cb3fd8000000000000cbbfa6200000000000cbbfc4800000000000cb3ff1200000000000cbbfe5c00000000000cbbfcf800000000000cb3fe4a00000000000cb3fe7c00000000000cbbfb5000000000000cbbff0600000000000cbbfdc200000000000cbbff0800000000000cb3fef400000000000cbbfdbc00000000000cbbfe8400000000000cbbff2000000000000cbbff0200000000000cbbfe0c00000000000cb3fe4800000000000cbbfdcc00000000000cbbfd3400000000000cbbfe1600000000000cbbfe1c00000000000cb3ff4e00000000000cb3fdfa00000000000cbbfd8a00000000000cbbfd3800000000000cb3ff2000000000000cb3ff5a00000000000cbbfed200000000000cbbff7e00000000000cbbfffe00000000000cbbfddc00000000000cb3feae00000000000cb3ff8600000000000cb3fefc00000000000cb3feca00000000000cbbfc9200000000000cbbfeee00000000000cb4001200000000000cb3ff5200000000000cbbfd0800000000000cbbfd4400000000000cb3fc7c00000000000cbbfce800000000000cbbff3e00000000000cbbfcee00000000000cb3fc9000000000000cb3fd1200000000000cbbfd5600000000000cb3face00000000000cb3fe5800000000000cbbfe9600000000000cb3faa800000000000cbbff3a00000000000cbbff8600000000000cb3f7b600000000000cb3ff3800000000000cbbfc8600000000000cb3feb800000000000cbbfda400000000000cbbfd8400000000000cb3feb400000000000cbbfd8c00000000000cbbfca000000000000cb3fe3e00000000000cbbfd2e00000000000cb3ffba00000000000cbbff4200000000000cb3fdd600000000000cb3ff8400000000000cb3ff1800000000000cb3fec000000000000cb3ff3e00000000000cb3fab200000000000cbbfe8c00000000000cb3fe1200000000000cbbff2000000000000cbc000800000000000cbbfea200000000000cbbfeaa00000000000cbbfe4600000000000cb3fee800000000000cbbfe4c00000000000cb3fe7c00000000000cbbffc400000000000cbbfeba00000000000cb3ff3400000000000cb3ff0200000000000cbbfe5600000000000cb3fe4000000000000cb3feb400000000000cbbfe9e00000000000cbbfe2800000000000cb3fb8a00000000000cb3fe0a00000000000cbbfebe00000000000cb3fe5a00000000000cb3fe1e00000000000cbbff5200000000000cb3ff3600000000000cbbfbc600000000000cbbfc8600000000000cb3fef600000000000cbbfe5c00000000000cbbfe1000000000000cbbfba800000000000cbbffea00000000000cb3fe8e00000000000cb3fdd400000000000cb3feea00000000000cbbfe9400000000000cbbfd2e00000000000cbbfb8000000000000cbbfe4600000000000cbbf8bc00000000000cb3fe4600000000000cbbff0c00000000000cb3ff5000000000000cbbff6200000000000cb3fe2800000000000cb3fed000000000000cb3fd5e00000000000cbbfd2600000000000cbbfeb400000000000cbbfd8600000000000cbbfe1000000000000cbbfd1e00000000000cb3ff1e00000000000cbc000600000000000cb3fe9800000000000cb3ff6400000000000cb3fdda00000000000cbbfe2e00000000000cb3faa000000000000cb3fefa00000000000cbbff5000000000000cbbfd6c00000000000cbbfe5800000000000cb3fe9000000000000cb3fd3400000000000cbbfd8000000000000cb3ffb200000000000cb3ffac00000000000cb3ff1800000000000cbbfe3200000000000cbbfd2a00000000000cb3fc3400000000000cbbff1000000000000cbbfda000000000000cb3fff600000000000cb3fffe00000000000cb3fd4000000000000cbbfe2600000000000cb3ff5600000000000cb3ff5c00000000000cbbfdda00000000000cbbfe7800000000000cb3f99000000000000cb3fe5e00000000000cb3ff2000000000000cb3fe7000000000000cb3fd7e00000000000cb3fd5000000000000cb3fec400000000000cb3fed600000000000cb3fc4800000000000cbbfd6000000000000cbbfe1600000000000cbbfc4c00000000000cb3fe7400000000000cbbfd4800000000000cb3ffc200000000000cbbff3000000000000cb3fe8800000000000cbbff3c00000000000cbbfb3a00000000000cb3fef400000000000cbbf94e00000000000cb3fdd200000000000cb3fed600000000000cb3fe5e00000000000cb3fd9a00000000000cbbfefc00000000000cbbfb5400000000000a2313783a46e616d65a74163636f756e74a7636f6e74657874a0a9656d62656464696e67dc0400cbbfd1200000000000cbbfc6a00000000000cb3fd5400000000000cb3fe3c00000000000cbbfeb800000000000cb3fd8400000000000cb3fb8800000000000cb3ff2200000000000cbbfa4c00000000000cb3fe4400000000000cb3fec400000000000cb3fc2e00000000000cbbfdb000000000000cb3fb6800000000000cb3fe8200000000000cb3ff2c00000000000cb3fe8400000000000cb3ff2000000000000cb3fdf600000000000cb3ff3e00000000000cbc000600000000000cbbfe3e00000000000cb3fff000000000000cb3ff7200000000000cb3fbce00000000000cbbfd0600000000000cbbfec000000000000cb4004600000000000cbbff6e00000000000cbbfd4000000000000cb3fd6e00000000000cb3ff5200000000000cbbfebe00000000000cbbfe4e00000000000cbbfc7200000000000cb3fd6a00000000000cbbfd4200000000000cb3ff3400000000000cb3ff9800000000000cbbff3e00000000000cb3fe6000000000000cbbfd6c00000000000cbbfef600000000000cbbff9400000000000cb3ffac00000000000cbbfe2000000000000cbbff9400000000000cb3fcc400000000000cbbff3600000000000cbbfea600000000000cbbfe1800000000000cbbfc8c00000000000cb3fde400000000000cb3fc9200000000000cb3ff6400000000000cbbff3600000000000cbbfe9a00000000000cb3fee400000000000cb3fd6200000000000cb3fdbc00000000000cb3ff2000000000000cbbfafc00000000000cbbf9a000000000000cbbfe3c00000000000cbbfcf800000000000cbbfdd600000000000cb3fe0c00000000000cb3fe0800000000000cbbff8000000000000cbbfd6400000000000cbbfa9600000000000cbbff3000000000000cb3ffe400000000000cb3ff6a00000000000cbbffb800000000000cbbfe2800000000000cbbfe5200000000000cb3fe9600000000000cbbfe6c00000000000cb3fa2a00000000000cb3ff4800000000000cb3fdec00000000000cbc004c00000000000cb3feb400000000000cbbfe5a00000000000cb3fe1200000000000cbbfc0a00000000000cb3fe0a00000000000cb3fd4a00000000000cbbfd3400000000000cbbfe5c00000000000cb3fedc00000000000cb3f95000000000000cbbff2400000000000cb4000e00000000000cb3ff2600000000000cb3fdd000000000000cbbfe4800000000000cbbfd9800000000000cb3fe6e00000000000cb3ff1c00000000000cb3fdde00000000000cb3ff1c00000000000cb3fdda00000000000cbbfece00000000000cb3ff9a00000000000cbbff2800000000000cb3fd5c00000000000cb3ff2800000000000cbbff5a00000000000cbbfae400000000000cb3fe5000000000000cb4003e00000000000cb3ff1200000000000cb3fdbe00000000000cb3fe6000000000000cbbff8600000000000cb3fe7400000000000cb3fce000000000000cbbfdb800000000000cb3fe7600000000000cb3fed400000000000cb3fcd400000000000cb3ff0200000000000cbbffd600000000000cb3fc7e00000000000cb3fe2a00000000000cb3fed600000000000cb3ff9800000000000cbbffbe00000000000cbbfe2000000000000cb3fea800000000000cb4001a00000000000cb3fcac00000000000cb3ff0200000000000cbbfd6e00000000000cbbfd0800000000000cbbff4800000000000cbbff0e00000000000cb3ff6200000000000cb3fee000000000000cb3fe2000000000000cb3ff3600000000000cbbfee000000000000cb3fc7a00000000000cb3ff1c00000000000cbbfde800000000000cbbff6800000000000cbbfb1400000000000cb3fd0400000000000cbbfe5800000000000cbbfd3800000000000cbbfe5400000000000cb3fe5c00000000000cb3fede00000000000cb3fefc00000000000cb3fce200000000000cb3ff1c00000000000cbbff6c00000000000cbbfee400000000000cbc002a00000000000cb3fe2e00000000000cb4002600000000000cbbfe8000000000000cb3fde600000000000cb3fd8200000000000cbbfd0400000000000cbbfeee00000000000cbbffde00000000000cb3fecc00000000000cb3fe7c00000000000cb3ffb800000000000cb3ff3c00000000000cb3feca00000000000cbbfcd000000000000cb3fb5000000000000cbbfffc00000000000cb3fbd800000000000cb3fe1200000000000cbbff6a00000000000cbbff5800000000000cbbfd5e00000000000cb3fd7000000000000cbbffe800000000000cbbfda600000000000cbbf55c00000000000cbbff7800000000000cbbfe7800000000000cbbfca800000000000cbbff7c00000000000cbbff8e00000000000cb3ffb800000000000cb3fe6600000000000cbbfd5a00000000000cbbff4200000000000cbbfa1800000000000cbbfd7600000000000cbbfe2800000000000cbbfe2800000000000cb3fd4800000000000cb3fec200000000000cb3fe3c00000000000cb3ff2a00000000000cb3fc5200000000000cbbffae00000000000cbbff3000000000000cb3fdb200000000000cbbfe7400000000000cb3fd3400000000000cbbfe5e00000000000cb3ff1c00000000000cbbff2e00000000000cb3fd1200000000000cb3fe7800000000000cb3fc1a00000000000cbbfdac00000000000cb3fee800000000000cb4001c00000000000cbbfd8200000000000cb3fd7400000000000cbbfb6c00000000000cbbfe8200000000000cbbfdca00000000000cbbff2000000000000cbbfb2000000000000cb3fd4600000000000cbbfc8400000000000cbbfd6e00000000000cb3f95c00000000000cbbfea000000000000cb3feaa00000000000cb3fd9000000000000cb3fe2600000000000cb3fdc600000000000cb3ffb600000000000cbbfbe000000000000cb3ff8000000000000cb3feda00000000000cb3ff2000000000000cbbff0200000000000cb3fc3a00000000000cbbfb8000000000000cb3fe1000000000000cbbff7200000000000cbbfe5c00000000000cb3fcf200000000000cbc000c00000000000cbbfe4c00000000000cbbff4800000000000cb3ff6e00000000000cbbf9fe00000000000cb4003600000000000cb3fce600000000000cbbfff200000000000cbbfe8200000000000cb3fe5e00000000000cb3fd5600000000000cbbfe4e00000000000cb3fb0e00000000000cbbfed400000000000cbbfd5200000000000cbbfd8000000000000cbbfe6000000000000cbbfeec00000000000cbbfdea00000000000cbbff9400000000000cbbfefc00000000000cb3ff1000000000000cb3fec800000000000cbbfc6000000000000cb3fe0800000000000cbbfcd400000000000cbbf75800000000000cbbfd3800000000000cb3fda400000000000cb3fe4200000000000cb3ff4000000000000cb3fdc000000000000cbbff4a00000000000cbbfd5400000000000cb3ff4200000000000cb3ff4c00000000000cbbfe4200000000000cb3ff7c00000000000cbbfc2000000000000cb3fc5800000000000cbbfe3a00000000000cbbff7e00000000000cbbfefe00000000000cb3fe0a00000000000cb3fe6800000000000cb3fffc00000000000cbbfe6a00000000000cb3fc8400000000000cb3fba000000000000cbc004400000000000cbbfdca00000000000cbbfe2200000000000cb3fe8a00000000000cbbfe0a00000000000cb3fe4600000000000cb3fca400000000000cb4000200000000000cb3fe5e00000000000cbbffc000000000000cb3fe6000000000000cbbfe1c00000000000cbbfb2800000000000cbbff8a00000000000cbbfdf200000000000cbc004000000000000cb3fa2c00000000000cb3fa3a00000000000cbbfe3e00000000000cbbfc0e00000000000cb3fea000000000000cbbf9ca00000000000cb3fee200000000000cb3fb2c00000000000cbbffc200000000000cb3fe4800000000000cb3fe9c00000000000cb3fe5400000000000cbbfefe00000000000cbbfdc200000000000cb3f8dc00000000000cbbfe9400000000000cb3fdd200000000000cbbfea800000000000cb3ffea00000000000cb3fcbc00000000000cbbfe7600000000000cbc001800000000000cb3feb400000000000cbbfd4800000000000cb3fd2a00000000000cb3fb7400000000000cb3fe3000000000000cbbfe6e00000000000cb3ff3000000000000cbbff3800000000000cbbfdb600000000000cb3fe1000000000000cbc005c00000000000cb3ff5400000000000cbbfd9800000000000cb3ff0c00000000000cb3fc4200000000000cb3fbfa00000000000cbbff2c00000000000cbbfe4000000000000cbbfbbc00000000000cb400d800000000000cbbfa0400000000000cb3fdc800000000000cbbfc5800000000000cb3fdaa00000000000cb3fd9600000000000cb3fefa00000000000cb3fe1600000000000cbbfef800000000000cbbfea200000000000cbbfef800000000000cbbfe0e00000000000cbbff3400000000000cb4000400000000000cbbffe600000000000cbbfe7a00000000000cbbfe0600000000000cbbfcb800000000000cb3fe9e00000000000cbbfeba00000000000cbbfe5e00000000000cb3ff7600000000000cb3fd0a00000000000cb3ff4000000000000cb3fdf600000000000cb3fe1800000000000cbbff6200000000000cbbff8400000000000cbbffca00000000000cb4001c00000000000cbbfd0800000000000cb3ffda00000000000cbbfdc400000000000cbbff1e00000000000cbbfe3600000000000cb3fdea00000000000cb3fa3c00000000000cbbfb6000000000000cb3ff7c00000000000cb3ff0c00000000000cbbfd0600000000000cb3fd1600000000000cbbfc8800000000000cb3fe5600000000000cb3fd4400000000000cbbfd7c00000000000cb3fe5e00000000000cb3fdde00000000000cb3fd0000000000000cb3fe8800000000000cb3ff4200000000000cb3fe8000000000000cb3ff3400000000000cbbff2e00000000000cb3fe5c00000000000cbbfba200000000000cb3ff1000000000000cbbfc4c00000000000cb3fe8800000000000cb3fe5e00000000000cbbfd9a00000000000cb3fd9a00000000000cb3fede00000000000cbbff4a00000000000cb3ff7400000000000cb3fe7600000000000cb3fac800000000000cbbfeda00000000000cb3fee400000000000cbbfc4a00000000000cb3feea00000000000cbbfebe00000000000cbbfc3c00000000000cbbfd0a00000000000cb3fe0200000000000cb3fe0400000000000cbc005800000000000cb3fe4e00000000000cbbff7c00000000000cb3ff7600000000000cb3ff9000000000000cb3ff7a00000000000cb4001400000000000cbbfb9600000000000cb3ff6a00000000000cbbfed200000000000cbbfe9600000000000cbbfe9c00000000000cb3fc4800000000000cb3fbde00000000000cb3ffa600000000000cb3fd3a00000000000cb3f98000000000000cbc000c00000000000cb3ff5a00000000000cbbfd4c00000000000cbbfe0a00000000000cb3fe6c00000000000cb3ff1e00000000000cb3fe6800000000000cbbfff800000000000cbbff3800000000000cbbfe6a00000000000cbbfdc600000000000cb4002200000000000cb3ff4600000000000cb3fe9200000000000cbc00ac00000000000cbbff0200000000000cb3ff7600000000000cbbfd3c00000000000cbbff0c00000000000cb4000400000000000cb3fd8e00000000000cbbfe0200000000000cb3fdfe00000000000cbbfefe00000000000cbbff6c00000000000cbbfdd800000000000cb3f95400000000000cb3ff6000000000000cb3fd0200000000000cb3fc7800000000000cb3ff7c00000000000cbbfe5400000000000cbbff6400000000000cb3ff1000000000000cbbfee400000000000cbbfe6c00000000000cb3fcb800000000000cb3fd9a00000000000cbbfe2a00000000000cbbfe8800000000000cbbfe4e00000000000cbbff1e00000000000cbbfc5c00000000000cb3f9e800000000000cbbfc4200000000000cb3ff3600000000000cb3fc5400000000000cb3fdf200000000000cbc000800000000000cb3fe8c00000000000cb4001000000000000cbc000600000000000cb4003a00000000000cb3fcca00000000000cb3fe0000000000000cb3fe2c00000000000cbbff3800000000000cbbfe5800000000000cb3ff7200000000000cb3fcc200000000000cbbfcf400000000000cb3fc3200000000000cb3fe5600000000000cb3ff3a00000000000cb3fae800000000000cbbf93400000000000cbbfef400000000000cbbfd7200000000000cbbfd8200000000000cbbff6200000000000cb3ff7200000000000cb3fdba00000000000cb3fcf400000000000cb3fe7c00000000000cb3fe0200000000000cb3fe0200000000000cbbff5200000000000cb3fd9200000000000cb3ff0400000000000cbbff8200000000000cbbffc400000000000cb3fdd000000000000cb3fac000000000000cbbffa000000000000cb3fd5800000000000cbbfb7000000000000cb3feea00000000000cbbfeac00000000000cbbfed600000000000cb3fc3e00000000000cbbfb1000000000000cbbfd3600000000000cbbfd3000000000000cb3fe8200000000000cb3fecc00000000000cbbfe4000000000000cbbfe3400000000000cbbfba200000000000cb3ffda00000000000cb4002200000000000cb3fdd400000000000cbbfeb600000000000cb3fe2000000000000cbbfd9200000000000cbbfd6600000000000cbbfe8600000000000cb3fe5600000000000cb3ff0800000000000cb3fe9c00000000000cbbfca000000000000cbbfc8800000000000cbbfd9600000000000cbbfd9200000000000cb3fc8800000000000cbbff7000000000000cbbfd0e00000000000cbbfee200000000000cbbfd5000000000000cb3fd8c00000000000cb3fefa00000000000cb3ffa800000000000cbbfc6000000000000cb3fa2e00000000000cb3fe5c00000000000cbbfe6000000000000cb3ff4800000000000cb3fe7800000000000cb3fe4a00000000000cbbfd3400000000000cb3fbf800000000000cbbfc0600000000000cb3fe1e00000000000cb3fdee00000000000cbbfed400000000000cb3fe3000000000000cbbfe9600000000000cbbfe2600000000000cb3ff9800000000000cb3fd3a00000000000cbbfdbe00000000000cbbffe000000000000cb3fba400000000000cb3fe9000000000000cbbff2400000000000cb3fa7000000000000cb3fdbe00000000000cbbfcc800000000000cb3fda200000000000cb3fe6c00000000000cb3fd8000000000000cb3fbb800000000000cb3fd3a00000000000cb3fe3800000000000cbbffd800000000000cbbfbac00000000000cbbfb2400000000000cbc005c00000000000cb3ff5c00000000000cbbfe3a00000000000cbbfe2a00000000000cb3fa1000000000000cbbff1000000000000cbbff4600000000000cbbff7200000000000cbbfe3800000000000cb3fc0200000000000cb3fe6a00000000000cb3ff7e00000000000cbc000800000000000cb3fed000000000000cb3fc0e00000000000cbbf93000000000000cbbfce800000000000cb3fe3c00000000000cb3ff3c00000000000cbbff9000000000000cb3ffa000000000000cbbfe3800000000000cbbfc8000000000000cbbff3a00000000000cbbfbb800000000000cbbfe0000000000000cbbfeca00000000000cbbffe600000000000cbbfd1400000000000cb3fe1200000000000cb3ff3000000000000cb3fd7000000000000cb3fe0600000000000cbbfe7400000000000cb3feb800000000000cbbff2200000000000cb3fb5200000000000cbbfb1600000000000cb3ff0200000000000cbc002600000000000cbbfd8a00000000000cb3fc9600000000000cbbff3000000000000cbbfc3000000000000cbbfd6000000000000cbc002e00000000000cb3fd8600000000000cbbfcd800000000000cb3fe5600000000000cbbfc4000000000000cb3fb2000000000000cbbff3e00000000000cb3fd8a00000000000cb3ffc400000000000cbc003200000000000cbbfc9400000000000cb3fe4600000000000cb3feea00000000000cbbff6c00000000000cbbfe4e00000000000cb3fe1c00000000000cb3ffd400000000000cb3fad000000000000cbbfeb200000000000cb3ff5000000000000cbbfdd400000000000cbbfe1400000000000cb3fecc00000000000cb3ff3000000000000cbbfee400000000000cbbfe5200000000000cb3fe2e00000000000cbbfee400000000000cbbfaca00000000000cbbfdde00000000000cb3ffb600000000000cb3fa5800000000000cb3fe6a00000000000cb3fc1800000000000cb3fd1000000000000cbbfd1200000000000cbbfbbe00000000000cbbfd5600000000000cbbfe5000000000000cb3fd5000000000000cbbfd9600000000000cbbfeb000000000000cbbfdde00000000000cbbff0200000000000cb3fb9000000000000cb3fd3c00000000000cb3fe9600000000000cbbfc1400000000000cbbfe4c00000000000cbc001200000000000cb3fe2400000000000cbbfeda00000000000cb3fd2800000000000cbbffae00000000000cbbfd2200000000000cb3febe00000000000cb3ff5c00000000000cb3fd8c00000000000cb3ff3400000000000cb4000800000000000cb3fca000000000000cbbfeec00000000000cb3fe6800000000000cbbfeb000000000000cb3f84000000000000cbbfe4200000000000cbbff1000000000000cb3ff0e00000000000cbbff6c00000000000cb3ff5400000000000cb3fe0000000000000cb3fe1c00000000000cb3f9a800000000000cb4005000000000000cb3feaa00000000000cbbfe3c00000000000cb3f9c400000000000cbbffb800000000000cbbfb4800000000000cb3fe6400000000000cb3fd2e00000000000cb3fbd800000000000cb3fab400000000000cbbfea600000000000cbbfd1e00000000000cb3fc6200000000000cbbfe5c00000000000cbbff5c00000000000cb3fd4c00000000000cbbff1a00000000000cb3ff4c00000000000cbbff1a00000000000cbbfd6c00000000000cb3fbe800000000000cbbfe5400000000000cbbff0a00000000000cbbfe3e00000000000cb3ff4600000000000cbbfeb800000000000cb3fd7000000000000cb3ff8e00000000000cbc000e00000000000cb3fec000000000000cbbffae00000000000cbbfe4400000000000cbbff8000000000000cb3fe8400000000000cb3f9f800000000000cbbfdfc00000000000cb3f9ec00000000000cbbfe0c00000000000cb3fcd800000000000cbbfec800000000000cbbfdec00000000000cbbfdc200000000000cbbff6600000000000cbbff0600000000000cb3fed000000000000cbbfa1600000000000cb3fc8800000000000cbbff7200000000000cbbfe0800000000000cb3feae00000000000cb3fe7e00000000000cbbfc3000000000000cb3ff5800000000000cbbfee000000000000cbbff5400000000000cbbfe5000000000000cbbfd9600000000000cbbffee00000000000cb3fee400000000000cb3ff6e00000000000cbbffc400000000000cbbff1600000000000cbbfe6600000000000cb3fed600000000000cb3fd2400000000000cb3ff0e00000000000cbbfe7200000000000cbbfd9a00000000000cb3fca000000000000cb3fbd400000000000cb3fc6400000000000cb3fc9600000000000cb3fe8200000000000cb3fcaa00000000000cb3fefc00000000000cbbffa600000000000cbbfea200000000000cb3fdf200000000000cbbfe1800000000000cb3ff6800000000000cbbfd2400000000000cb3fb1e00000000000cbbfe9200000000000cb3fedc00000000000cb3ff5a00000000000cbbfb9400000000000cb3fe080000000000001cbbfdfc00000000000cb3fee400000000000cb3fb6800000000000cbbffd800000000000cb3f99800000000000cbbfd5000000000000cbbfe5e00000000000cbbfe1000000000000cb3ffae00000000000cb3fec800000000000cb3fea400000000000cb3fdfa00000000000cbbfe4200000000000cb3ff5400000000000cb3fcca00000000000cb3fdd200000000000cb3ff6400000000000cb3fc1600000000000cb3fe1600000000000cb3ffa200000000000cbbff8000000000000cbbff9200000000000cb3fdea00000000000cb3fd3800000000000cb3ffea00000000000cbbff7400000000000cb3fa4000000000000cbbfd2400000000000cb3ff0c00000000000cbbfbba00000000000cb3fd4600000000000cbbfee800000000000cb3fbe800000000000cbbfd1e00000000000cbbfd640000000000001cbbff5400000000000cbbfd6c00000000000cb3fd5600000000000cb3fe2a00000000000cbbfd4400000000000cbbfeac00000000000cbbfa6600000000000cbbfd6a00000000000cb3ff5c00000000000cbbfb1600000000000cb3fcde00000000000cbbfec800000000000cbbfee400000000000cbbfd2800000000000cb3feac00000000000cbbfc1600000000000cbbfe1c00000000000cb3fb6000000000000cbbfe0a00000000000cb3ffb000000000000cbbfd8800000000000cb3fc3000000000000cbbfeea00000000000cb3feb200000000000cb3ff8800000000000cbbff7000000000000cbbfea000000000000cbbff3c00000000000cb3fbc600000000000cb3fcf200000000000cb3ffc600000000000cb3ff4000000000000cb3fd3a00000000000cbbfd4e00000000000cbbfeb800000000000cb3ff6e00000000000cb3feb800000000000cbbfdb200000000000cbbfd0200000000000cbbfe0c00000000000cbbfcea00000000000cbbfe6000000000000cbbfe9200000000000cbbfb4a00000000000cb3fdee00000000000cb3fc2600000000000cbbfd5000000000000cb3fd3600000000000cbbfe0c00000000000cbbfc0400000000000cbbfe6600000000000ffcbbfdc200000000000cb3fdf600000000000cb3fe4400000000000cb3ff2a00000000000cbbfcea00000000000cbbfe4000000000000cb3fd5000000000000cbbff1800000000000cb3feca00000000000cb3fc1800000000000cbbfe9a00000000000cb3ff5a00000000000cbbff4000000000000cb3fecc00000000000cb3ffe800000000000cb3feaa00000000000cb3ff9800000000000cb3fd2200000000000cb3fe5c00000000000cb3fc5200000000000cb3fcfa00000000000cbbfffa00000000000cbbff8600000000000cbbfdd000000000000cbbfd1400000000000cb3f94c00000000000cb3ff0200000000000cb3fcc800000000000cbbf92400000000000cbbff0400000000000cbbff4200000000000cb3ff1a00000000000cb3fdc800000000000cb3f95600000000000cb3fcbc00000000000cb3fe6400000000000cbbfcfc00000000000cbbfd9200000000000cb3fe6c00000000000cb3fdc400000000000cbbfe5000000000000cb3ff8800000000000cbbfdda00000000000cbbff8800000000000cb3fee200000000000cbbfe8800000000000cb3fb9000000000000cb3fd0000000000000cbbfee400000000000cbbfd2e00000000000cb3fcfe00000000000cbc001800000000000cb3fe2800000000000cb3fe3e00000000000cb3ff8000000000000cbbfb1a00000000000cb3fec800000000000cbbfe8a00000000000cbbfdc200000000000cbbfbac00000000000cb3feb200000000000cbbfe7400000000000cb3ffc800000000000cbbff0c00000000000cb3fe1c00000000000cb3feb400000000000cbbfe5200000000000cb3fd2e00000000000cbbfe9c00000000000cbbff2600000000000cb3fce600000000000cbbfe7000000000000cb3ff9000000000000cbbff5e00000000000cbbfd8400000000000cb3ffbc00000000000cb3fdf400000000000cbbffbc00000000000cb3fd5a00000000000cb3fc5e00000000000cbbff1600000000000cbbff5a00000000000cb3fe5a00000000000cb3fd2600000000000cb3fc0600000000000cbbfca400000000000cb3ff4000000000000cb3ff3600000000000cb3fff800000000000cbbfd8800000000000cb3fe8e00000000000cb3fec800000000000cbbff8600000000000cb3fc3e00000000000cb3ff5400000000000cb3ffc600000000000cbbfbb400000000000cbbfde600000000000cb3fe9e00000000000cb3ff4e00000000000cbbfe0400000000000cb3fc1c00000000000cbbf83c00000000000cb3ff2800000000000cb3fe8800000000000cb3fdb800000000000cb3ff4000000000000cb3feb400000000000cbbfb6c00000000000cb3fe2200000000000cb3feec00000000000cb3fcce00000000000cbbfe0000000000000cbbfd9000000000000cb3fe2e00000000000cbbfdee00000000000cb3ff3a00000000000cbbffa600000000000cb3ff3600000000000cbbfe1a00000000000cb3fe3000000000000cbbfcc000000000000cb3fe9600000000000cb3fe2000000000000cb3fffa00000000000cb3fed800000000000cb3fafe00000000000cbbff8600000000000cb3fb8c00000000000a2313883a46e616d65a7436f6e74616374a7636f6e74657874a0a9656d62656464696e67dc0400cb3fd6200000000000cbbfe6c00000000000cb3fe2600000000000cb3fe2a00000000000cbbfe9400000000000cb3fd2e00000000000cb3fd1800000000000cb3fec600000000000cb3fe7c00000000000cb3ff7a00000000000cb3ff4600000000000cb3fc8400000000000cbbfe6800000000000cb3fb5800000000000cb3fda800000000000cb3fed600000000000cb3fe7a00000000000cb3ff1200000000000cb3feb000000000000cb3fe9c00000000000cbc000400000000000cbbfd2000000000000cb3ff9800000000000cb4000600000000000cbbfe0400000000000cbbfc4800000000000cbbff5800000000000cb4004e00000000000cbbfe7a00000000000cb3fcf000000000000cb3fe1200000000000cb3ff3a00000000000cbbfbda00000000000cb3f98800000000000cbbfe4200000000000cbbfdcc00000000000cbbfc1a00000000000cb3fec800000000000cb3ff6000000000000cbbff2e00000000000cb3ff1400000000000cbbfb4400000000000cbbff1a00000000000cbbff2600000000000cb3ffd200000000000cbbfdd400000000000cbbff7800000000000cb3fc9e00000000000cbbff6000000000000cbbfeb400000000000cbbfd7400000000000cbbfe8c00000000000cb3fd6400000000000cbbf97400000000000cb3ff8e00000000000cbbffb200000000000cbbfdac00000000000cb3feea00000000000cb3fd9a00000000000cb3fb1800000000000cb3fea600000000000cb3fba400000000000cbbfca800000000000cbbfeb400000000000cbbfb3a00000000000cbbfcba00000000000cb3fdb000000000000cb3fe3400000000000cbbfebe00000000000cb3f77000000000000cbbf8e400000000000cbbff1c00000000000cb3ff1200000000000cb3fe9600000000000cbbffa000000000000cbbfe0a00000000000cbbfe9600000000000cb3fe9800000000000cb3fb5000000000000cbbfa5800000000000cb3fe0a00000000000cb3fba200000000000cbc000600000000000cb3ffe200000000000cbbfe6600000000000cb3f93e00000000000cb3fb6400000000000cbbfe7a00000000000cb3fd3e00000000000cb3fbc400000000000cbbfe6400000000000cb3ff6200000000000cbbfd3e00000000000cbbff4600000000000cb3ff8e00000000000cb3fe9400000000000cbbfdd200000000000cbbfae800000000000cbbfd4400000000000cb3fe5000000000000cb3ff6600000000000cb3fde400000000000cb4001600000000000cb3fe4200000000000cbbfe6600000000000cb3ff9400000000000cbbff5800000000000cb3fe1600000000000cb3ff3a00000000000cbbfe7e00000000000cbbfc6200000000000cb3fe6c00000000000cb4003200000000000cb3ff1e00000000000cb3f9e200000000000cb3fd0600000000000cbbff6c00000000000cb3fdd000000000000cbbfd7000000000000cbbfa5c00000000000cb3ff0800000000000cb3fea800000000000cb3ff0e00000000000cb3fe3000000000000cbc000800000000000cbbfdcc00000000000cb3fe8400000000000cb3fc6c00000000000cb3ffc800000000000cbbff3a00000000000cbbfcd600000000000cb3ff5400000000000cb4000a00000000000cb3fd7a00000000000cb3ff1400000000000cbbfd6600000000000cbbfb6600000000000cbbff7a00000000000cbbfe4400000000000cb3fe7200000000000cb3fe4400000000000cb3ff3000000000000cb3ff0c00000000000cbbfeea00000000000cb3fe2c00000000000cb3feda00000000000cbbfb5000000000000cbbff1c00000000000cb3fa3000000000000cb3fe4600000000000cbbf92a00000000000cbbfe3800000000000cbbff6400000000000cb3ff1600000000000cb3ff8400000000000cb3fed600000000000cbbfd1400000000000cb3fdca00000000000cbbff3a00000000000cbbfe9c00000000000cbbffb600000000000cb3fe7200000000000cb3ffec00000000000cbbfd4c00000000000cb3fd1c00000000000cb3ff1400000000000cbbfe2c00000000000cbbff3400000000000cbbff6000000000000cb3fdda00000000000cbbf6b000000000000cb4000400000000000cb3ff1800000000000cb3ff1800000000000cbbfe2a00000000000cb3fd0200000000000cbbff5800000000000cbbfc1c00000000000cb3fe8e00000000000cbbff6000000000000cbbff0600000000000cb3fae800000000000cb3fe1000000000000cbbff7400000000000cbbfd0600000000000cb3fc1600000000000cbc001400000000000cbbfd4000000000000cbbf81600000000000cbbfe9000000000000cbbff1400000000000cb3ffd400000000000cb3fe4200000000000cb3fc0600000000000cbbff3000000000000cbbfcb200000000000cbbfe1800000000000cbbfd8200000000000cbbfdf000000000000cb3fd6000000000000cb3feb000000000000cb3fedc00000000000cb3fe7e00000000000cbbfacc00000000000cbbff5e00000000000cbbff0800000000000cb3fe9200000000000cbbfee400000000000cb3fb2000000000000cbbff3200000000000cb3fffe00000000000cbbffb400000000000cb3f73a00000000000cb3fd6000000000000cb3fe7a00000000000cb3fd2600000000000cb3fd4200000000000cb3ff8a00000000000cbbff3e00000000000cb3fbd800000000000cbbf78800000000000cbbfe6800000000000cbbfe1800000000000cbbfecc00000000000cbbfd9600000000000cb3fd7200000000000cbbfbf600000000000cbbfce200000000000cb3fe3a00000000000cbbff0c00000000000cb3fe9400000000000cb3f82a00000000000cb3fc5a00000000000cb3fb7e00000000000cb3ff9200000000000cbbfcd200000000000cb3ff0c00000000000cb3ff3800000000000cb3fe8c00000000000cbbff4a00000000000cb3fdf600000000000cbbfa6e00000000000cb3fc5800000000000cbbffc000000000000cbbfefa00000000000cbbfd3800000000000cbbffde00000000000cbbff5600000000000cbbff6600000000000cb3ff8600000000000cbbfd5000000000000cb4001c00000000000cb3fd5400000000000cbc002800000000000cbbff1200000000000cb3fe3c00000000000cb3fdea00000000000cbbfe9e00000000000cb3fd7e00000000000cbbff0800000000000cbbfc3400000000000cbbfed800000000000cbbfd6400000000000cbbfe5200000000000cbbfe0c00000000000cbc000200000000000cbbfe5600000000000cb3ff9800000000000cb3fe5a00000000000cbbfd4a00000000000cb3fca400000000000cbbfe5600000000000cbbfa6e00000000000cbbfc2000000000000cb3fecc00000000000cb3fe4a00000000000cb3ff9c00000000000cb3fdba00000000000cbbfece00000000000cbbfeca00000000000cb3fe9a00000000000cb3fecc00000000000cbbfdce00000000000cb3ffd000000000000cbbfc3e00000000000cb3fe2400000000000cbbfda000000000000cbbff2000000000000cbbfc9c00000000000cb3fefe00000000000cb3fe5a00000000000cb3ffd600000000000cbbfcb800000000000cbbfc9c00000000000cbbfc0400000000000cbc004a00000000000cbbfd8000000000000cbbfd0800000000000cb3fe7000000000000cbbfdce00000000000cb3ff0400000000000cb3fdc200000000000cb3ffee00000000000cb3ff0200000000000cbc000200000000000cb3fc5c00000000000cbbff0c00000000000cb3fb4a00000000000cbc002000000000000cb3fdca00000000000cbc004600000000000cb3fe4a00000000000cbbfd5c00000000000cb3f85e00000000000cb3fd3c00000000000cb3fd4e00000000000cbbfc4200000000000cb3ff1600000000000cb3fd7400000000000cbc000e00000000000cb3ff0600000000000cb3fe2e00000000000cb3faac00000000000cbbfeee00000000000cbbfbd000000000000cb3fc1200000000000cbbfe7c00000000000cb3fa6000000000000cbbfe8400000000000cb3ff2c00000000000cb3fbf200000000000cbbfdc800000000000cbc002c00000000000cb3fefc00000000000cb3fcc400000000000cbbfe0800000000000cb3fc8a00000000000cb3fc7400000000000cbbfd8e00000000000cb3ff3e00000000000cbbff5600000000000cbbfc1000000000000cb3fe8e00000000000cbc005000000000000cb3ff3400000000000cbbfd7200000000000cb3fe7c00000000000cb3fbf200000000000cb3fc2e00000000000cbbffd800000000000cbbfd1a00000000000cbbfde200000000000cb400ae00000000000cbbfe5e00000000000cb3fe1600000000000cbbfda800000000000cb3fe6c00000000000cb3fe6000000000000cb3ff7a00000000000cb3fd0400000000000cbbfebc00000000000cbbfe5000000000000cbbfed600000000000cbbfb4200000000000cbbff2a00000000000cb3ffba00000000000cbbff7800000000000cbbfdfe00000000000cbbfe1800000000000cb3fc2200000000000cb3ff7a00000000000cbbfe9000000000000cbbfdd600000000000cb3ff7e00000000000cb3fd9e00000000000cb3ffa000000000000cb3fe6a00000000000cb3febe00000000000cbbfff000000000000cbbffb000000000000cbc001400000000000cb4000a00000000000cbbfa4a00000000000cb4002200000000000cbbfc1e00000000000cbbff4000000000000cbbfdda00000000000cb3fe3200000000000cbbfd1a00000000000cb3fea200000000000cb3ff3800000000000cb3fec200000000000cb3fc1a00000000000cb3fe2000000000000cbbfe3c00000000000cb3fdee00000000000cb3f7d200000000000cbbfc8000000000000cb3fe7000000000000cb3fda000000000000cb3fde600000000000cb3ff5800000000000cb3ff2c00000000000cb3ff2200000000000cb3feac00000000000cbbff4200000000000cb3fe9c00000000000cb3fd6a00000000000cb3febe00000000000cbbfce800000000000cb3fed400000000000cbbfab400000000000cbbfce000000000000cb3ff7800000000000cb3fe9600000000000cbbff0200000000000cb3ff4c00000000000cb3fdac00000000000cb3fd6e00000000000cbbff0c00000000000cb3ff1800000000000cb3fa1200000000000cb3fee000000000000cbbfec600000000000cbbf77e00000000000cb3fca400000000000cb3fe8e00000000000cbbfd5e00000000000cbc009e00000000000cb3fb0e00000000000cbbffec00000000000cb3ff4800000000000cb3ff4400000000000cb4003400000000000cb3ff4400000000000cbbfcb600000000000cb3ff4400000000000cbbfd3200000000000cbbff7c00000000000cbbfde000000000000cb3fd1800000000000cbbf7a000000000000cb3ffa200000000000cb3fe7c00000000000cb3fc7a00000000000cbc002e00000000000cb3fede00000000000cbbfdf800000000000cbbfc6400000000000cb3fe2400000000000cb3ff5a00000000000cb3fd1000000000000cbc002200000000000cbbfe6400000000000cbbfe5200000000000cbbfe880000000000002cb3ff5a00000000000cb3fd1400000000000cbc004200000000000cbbfde800000000000cb3ff6600000000000cbbfd8400000000000cbbfee800000000000cb3fff600000000000cb3fd8400000000000cbbfe8000000000000cbbfbba00000000000cbbff1e00000000000cbbff2600000000000cbbfc9000000000000cb3fdc600000000000cb3fe7000000000000cbbfc1c00000000000cbbfcc800000000000cb3fef200000000000ffcbbff4400000000000cb3fe1e00000000000cbbfcc800000000000cbbfee600000000000cbbf9e400000000000cb3fe7200000000000cbbfc9e00000000000cbbfebc00000000000cbbfd7800000000000cbbffca00000000000cb3fcf400000000000cb3fdee00000000000cbbfdd000000000000cb3ff2400000000000cb3fc7800000000000cb3fe4a00000000000cbc000c00000000000cb3fee800000000000cb3ff8200000000000cbc004800000000000cb4002e00000000000cbbfb2000000000000cb3fe2400000000000cbbfa4800000000000cbbffde00000000000cbbfd4800000000000cb3ffaa00000000000cbbfe5a00000000000cbbfd8600000000000cbbff2000000000000cbbfe2800000000000cb3fe5200000000000cbbfc2800000000000cb3fc8200000000000cbbfe3800000000000cbbfe3800000000000cbbfb4400000000000cbbff1000000000000cb3feb400000000000cb3fca400000000000cb3fe4e00000000000cb3fe7a00000000000cb3fbee00000000000cb3fed400000000000cbbff0600000000000cb3fc0600000000000cb3ff0600000000000cbbff2000000000000cbbff7000000000000cb3ff3800000000000cb3f6c400000000000cbbff1400000000000cb3fb3000000000000cbbfaf000000000000cb3fe1c00000000000cbbfd2a00000000000cbbfe1a00000000000cbbfb9200000000000cbbfdca00000000000cbbfc9400000000000cbbfbba00000000000cb3ff2000000000000cb3ff1c00000000000cbbfeec00000000000cb3fc2400000000000cb3fdbe00000000000cb3ff5a00000000000cb3ff5c00000000000cb3fe7400000000000cbbfeb600000000000cb3fe0c00000000000cbbff4400000000000cb3fd6200000000000cbbff1000000000000cb3feb600000000000cb3ffbc00000000000cb3fe0800000000000cbbfb7600000000000cbbfb8000000000000cbbfeec00000000000cbbfe5000000000000cb3fc1600000000000cbbffde00000000000cb3fea400000000000cbbfea000000000000cbbfe3800000000000cb3fde600000000000cb3fefe00000000000cb3feee00000000000cbbfd6e00000000000cbbfd9400000000000cb3fef600000000000cbbfeee00000000000cb3fef800000000000cb3fd7c00000000000cb3fe6200000000000cbbfe5200000000000cbbfde600000000000cbbfe9c00000000000cb3fe2400000000000cb3fef600000000000cbbffd000000000000cb3fde800000000000cbbfcf400000000000cbbfd9800000000000cb3ffa200000000000cbbfb1400000000000cbbfe8000000000000cbbff4000000000000cbbf9fc00000000000cb3fdc800000000000cbbfe7400000000000cb3fef600000000000cb3fc0000000000000cbbfed400000000000cb3fb7400000000000cb3ff2200000000000cb3fda000000000000cbbfba400000000000cb3fe1600000000000cb3ff1600000000000cbbffd800000000000cb3fa4600000000000cb3f89000000000000cbc006200000000000cb3ff3000000000000cbbfeac00000000000cbbfd1a00000000000cbbfa9800000000000cbbfeae00000000000cbbff2200000000000cbbffe600000000000cb3fb9800000000000cb3fe6600000000000cb3fe5c00000000000cb3ff4800000000000cbbffb200000000000cb3fa0a00000000000cbbfca000000000000cb3fcb400000000000cbbfbf000000000000cb3fd9400000000000cb3fed200000000000cbbff4800000000000cb3ffbe00000000000cbbfe0200000000000cbbfe0800000000000cbbfef400000000000cbbfd1c00000000000cbbfec800000000000cbbfe8400000000000cbbff6c00000000000cb3fb5600000000000cb3fef200000000000cb3fd2c00000000000cb3ff2800000000000cb3fde200000000000cbbfe9c00000000000cb3feb600000000000cbbfecc00000000000cbbfd8600000000000cbbfd3c00000000000cb3fe3400000000000cbc006400000000000cbbfd0000000000000cbbfbb800000000000cbbfefc00000000000cb3fac000000000000cbbfdfa00000000000cbc001600000000000cb3fb5000000000000cbbfcde00000000000cb3fed800000000000cbbfd6600000000000cbbf92400000000000cbbfe8600000000000cb3fe6800000000000cb3ff6a00000000000cbc001e00000000000cb3fc5600000000000cb3fe7000000000000cb3ff3200000000000cbbfea000000000000cbbfe8200000000000cb3fe4a00000000000cb3ff8200000000000cb3fcc600000000000cbbff7800000000000cb3ff4a00000000000cb3fb0600000000000cbbfe2800000000000cb3fe5c00000000000cb3fe2800000000000cbbff0800000000000cb3fdb600000000000cb3ff5200000000000cbbff7400000000000cbbfdcc00000000000cbbfabc00000000000cb3ff8400000000000cb3fc0e00000000000cb3ff5400000000000cbbfd5a00000000000cb3fe0200000000000cbbfdf200000000000cbbfe4e00000000000cbbfe1400000000000cbbfd9800000000000cbbfc2e00000000000cbbfe2800000000000cbbfeea00000000000cbbfeaa00000000000cbbfdd600000000000cbbfd5600000000000cb3fb0800000000000cb3ff4c00000000000cbbfd8a00000000000cbbfece00000000000cbbff1c00000000000cb3fe2400000000000cbbfee200000000000cb3fb5200000000000cbbffea00000000000cb3fbca00000000000cb3feb000000000000cb3ff3000000000000cb3fda800000000000cb3feca00000000000cb3ff9e00000000000cb3fc5400000000000cbbff8400000000000cb3fd8a00000000000cb3f90c00000000000cbbfe3400000000000cbbfdec00000000000cbbfe0800000000000cb3ff3800000000000cbbff2600000000000cb3ff0800000000000cb3fe9600000000000cb3fdd800000000000cbbfd9400000000000cb400d000000000000cb3ff0a00000000000cbbfd3800000000000cbbfd5c00000000000cbbffc400000000000cbbfdb600000000000cb3fd7800000000000cbbfe6400000000000cb3fc3800000000000cbbfa4000000000000cbbfe5e00000000000cb3fb5200000000000cb3fd2200000000000cbbfe9400000000000cbbff4600000000000cbbfdba00000000000cbbfee200000000000cb3ff1c00000000000cbbfe8200000000000cb3fd2c00000000000cb3fa8c00000000000cbbfe7c00000000000cbbfe0600000000000cbbff7400000000000cb3ff1000000000000cbbfe9400000000000cb3fb9e00000000000cb3fe9c00000000000cbc000400000000000cb3fdb000000000000cbbfe4000000000000cbbfe7400000000000cbbff3e00000000000cb3fdc200000000000cbbfd5600000000000cbbfd5e00000000000cb3faaa00000000000cbbff0200000000000cb3fe8c00000000000cbbfe8000000000000cbbfe3000000000000cbbff4000000000000cbbff3400000000000cbbfee600000000000cb3fe7e00000000000cbbfe0a00000000000cb3fd4600000000000cbbff3800000000000cbbfece00000000000cb3fe8a00000000000cb3fcc200000000000cb3fd5200000000000cb3fef800000000000cbbfeca00000000000cbbff9000000000000cbbff3400000000000cbbfe7c00000000000cbbffee00000000000cb3ff4000000000000cb3ffa600000000000cbbff9400000000000cbbfe9600000000000cbbfe0e00000000000cb3ff3c00000000000cb3fe4a00000000000cb3fe6800000000000cbbfea200000000000cbbfe9000000000000cb3fe4a00000000000cbbfd2000000000000cb3fbf800000000000cbbfc0200000000000cb3febe00000000000cb3fefa0000000000001cbc000200000000000cbbff3400000000000cb3fe9000000000000cbbfde800000000000cb3ff7400000000000cb3fd8800000000000cbbfd8a00000000000cb3fb2200000000000cb3fd3400000000000cb3ff8a00000000000cbbfe0800000000000cb3fe1400000000000cb3ff6400000000000cb3fc0a00000000000cb3fece00000000000cb3fb0c00000000000cbbff0200000000000cbbfe6600000000000cbbfdae00000000000cbbfe7000000000000cbbfb2400000000000cb3ff7c00000000000cb3fe2600000000000cb3fe5000000000000cb3ff3000000000000cb3fdde00000000000cb3feaa00000000000cbbfd1000000000000cb3fd9000000000000cb3ff6800000000000cb3fc4000000000000cb3fa7800000000000cb3ff8c00000000000cbbffb600000000000cbbff5800000000000cb3ff2c00000000000cb3fd9400000000000cb4000c00000000000cbbfeb600000000000cbbfe2a00000000000cbbfb4000000000000cb3ff2e00000000000cb3fc6800000000000cb3fce200000000000cbbff1c00000000000cb3fd0000000000000cbbfc1a00000000000cbbfdd600000000000cb3ff0200000000000cbc000200000000000cb3fd3600000000000cb3fce400000000000cb3fe3200000000000cbbfefe00000000000cbbfd7600000000000cbbfe6400000000000cbbfe3600000000000cb3ff4400000000000cbbfd8200000000000cb3fdb600000000000cbbfeb000000000000cbbfe0600000000000cb3fa6000000000000cb3fe0a00000000000cb3fc6000000000000cbbfc6800000000000cbbfd0a00000000000cbbf79000000000000cb3ffaa00000000000cbbfce800000000000cb3fd1000000000000cbbfef800000000000cb3ff7400000000000cb3ffbe00000000000cbbff4000000000000cbbfec400000000000cbbff5600000000000cb3fd2800000000000cb3fb6a00000000000cb4004c00000000000cb3ff1e00000000000cb3fdec00000000000cbbfccc00000000000cbbff3800000000000cb3ff6400000000000cb3fe9200000000000cbbfdd400000000000cbbfe7c00000000000cbbfb3a00000000000cbbfc8000000000000cbbfc5800000000000cbbfe1800000000000cbbfbe200000000000cb3fcd200000000000cb3fc4400000000000cbbfde000000000000cbbfa2000000000000cbbfe6000000000000cbbfe4a00000000000cbbfeac00000000000cbbff2a00000000000cbbfe1800000000000cb3fc7800000000000cb3fdc800000000000cb3ff3000000000000cb3fd1800000000000cbbfe6c00000000000cb3fee000000000000cbbfe3e00000000000cb3fe4400000000000cb3fd9600000000000cbbfe3c00000000000cb3ffda00000000000cbbfeb200000000000cb3fee800000000000cb4003400000000000cb3fe1200000000000cb3ff0400000000000cb3fc0200000000000cb3fa2400000000000cb3fc6000000000000cb3fcac00000000000cbbffa800000000000cbbff2000000000000cbbfcbc00000000000cbbfc5a00000000000cbbfd7a00000000000cb3fee400000000000cb3fe0800000000000cb3fd5200000000000cbbff9e00000000000cbbffb000000000000cb3ff0e00000000000cb3fc3400000000000cbbfc2e00000000000cbbfc3800000000000cb3fdd600000000000cbbff5800000000000cbbfdae00000000000cb3fc3e00000000000cbbfbc600000000000cbbfe9000000000000cb3ff6600000000000cbbfd5600000000000cbbff8000000000000cb3ff2000000000000cbbfdf400000000000cb3fe6600000000000cb3fe0800000000000cbbfede00000000000cb3fbb000000000000cb3fc5400000000000cbbffaa00000000000cb3fe1200000000000cb3ff7600000000000cb3ffb200000000000cbbfe6e00000000000cb3fe6a00000000000cbbfefc00000000000cbbfe8800000000000cbbfe5c00000000000cb3fea000000000000cbbfd3e00000000000cb3ff2600000000000cbbff8400000000000cb3fcaa00000000000cb3ff0200000000000cbbfd7a00000000000cbbfd2600000000000cbbfede00000000000cbbff1000000000000cb3fd3c00000000000cbbfdee00000000000cb3ff4a00000000000cbbffc400000000000cbbfd8c00000000000cb3ffb200000000000cb3fc7000000000000cbbff1800000000000cbbfa5c00000000000cb3fe0a00000000000cbbfeee00000000000cbbff9400000000000cb3fdd800000000000cb3fe0e00000000000cbbfa1400000000000cbbfd1200000000000cb3ff6a00000000000cb3ff9200000000000cb3ff8400000000000cbbfd7c00000000000cb3fea200000000000cb3fdc600000000000cbbff7800000000000cb3f97200000000000cb3ff5a00000000000cb3ff7400000000000cb3fd0c00000000000cbbfd0c00000000000cb3ff0200000000000cb3ff6200000000000cbbfd8800000000000cbbfbd600000000000cb3fc3e0000000000001cb3ff3800000000000cb3fd4400000000000cb3fe6e00000000000cb3fe1400000000000cb3fe4a00000000000cb3fdda00000000000cb3fe2e00000000000cb3fc9c00000000000cbbfdb600000000000cbbfed600000000000cb3fd8400000000000cb3fab200000000000cb3ff5e00000000000cbbfff600000000000cb3ff3200000000000cbbfd4c00000000000cb3fe0c00000000000cb3fe7000000000000cb3fd4800000000000cb3feae00000000000cb3ffa600000000000cb3fec600000000000cb3fb1400000000000cbbfe1c00000000000cb3fe6e00000000000a2313983a46e616d65a455736572a7636f6e74657874a0a9656d62656464696e67dc0400cb3fbfe00000000000cbbfe6e00000000000cb3fe2400000000000cb3fcfe00000000000cbbfcb000000000000cb3fbb000000000000cb3fc5200000000000cb3fe4a00000000000cb3ff1a00000000000cb3fe5600000000000cb3ff5a00000000000cb3fd2600000000000cb3fd0200000000000cb3fd7000000000000cb3fd7c00000000000cb3fe8e00000000000cb3fd3e00000000000cb3fb6400000000000cb3fe1600000000000cbbfcdc00000000000cbbffa000000000000cbbfe3200000000000cb3ffee00000000000cb3ffaa00000000000cbbfc4800000000000cb3fa7800000000000cbbff3400000000000cb4007800000000000cbbf84800000000000cb3fcc400000000000cb3fe0400000000000cb3feb400000000000cb3fba800000000000cbbfe1a00000000000cbbfe3a00000000000cb3fbb800000000000cb3fd5a00000000000cb3ff3800000000000cb3ff1000000000000cbbff0c00000000000cb3ff4400000000000cbbfcca00000000000cbbff3000000000000cbbff4e00000000000cb4000600000000000cbbfdf000000000000cbbff4c00000000000cbbfc7400000000000cbbff4800000000000cbbfe2a00000000000cbbfde000000000000cbbff5c00000000000cbbfc6c00000000000cb3fe0800000000000cb3ffdc00000000000cbbffb600000000000cbbfc9000000000000cb3fecc00000000000cb3fe3a00000000000cb3fd8200000000000cb3fdc800000000000cbbfc8a00000000000cbbfeec00000000000cbbfd7400000000000cb3fdd200000000000cb3fc6c00000000000cb3fe4e00000000000cb3febe00000000000cbbff5600000000000cbbfb2c00000000000cbbfd4800000000000cbbfef800000000000cb3ff4400000000000cb3fe3800000000000cbbff6000000000000cbbfdde00000000000cbbfeca00000000000cb3fef000000000000cbbfc9600000000000cb3fdec00000000000cb3ff6400000000000cb3fe4000000000000cbc003800000000000cb3ff4000000000000cbbfe3800000000000cb3fb9000000000000cbbfb4a00000000000cb3f85000000000000cb3fea800000000000cb3fc4000000000000cbbfe3a00000000000cb3ff2c00000000000cbbfb7200000000000cbbffa600000000000cb4001800000000000cb3ff1800000000000cbbfd1a00000000000cbbfc1200000000000cbbff2c00000000000cb3feaa00000000000cb3ff6e00000000000cb3fc3200000000000cb3ff5600000000000cb3fb3000000000000cbbfdf600000000000cb3fffc00000000000cbbff9a00000000000cb3fd1800000000000cb3feac00000000000cbbfe2a00000000000cbbfcbe00000000000cb3ff4c00000000000cb4003400000000000cb3fee600000000000cbbfd9600000000000cb3fdf000000000000cbbffc600000000000cb3fe3800000000000cbbfede00000000000cbbff8800000000000cb3ffee00000000000cb3fbea00000000000cb3fe2c00000000000cb3fd2c00000000000cbbffc800000000000cbbfcf800000000000cbbfc5400000000000cb3fe3800000000000cb3feba00000000000cbc001000000000000cb3f93a00000000000cb3ff0400000000000cb3ffd600000000000cbbfc0200000000000cb3ff9c00000000000cbbfc9e00000000000cbbfc4c00000000000cbbff1600000000000cbbfdbc00000000000cb3fde400000000000cb3ff4a00000000000cb3fe7400000000000cb3fefa00000000000cbbfe2000000000000cb3fd6200000000000cb3ff2600000000000cb3fcc600000000000cbbfed400000000000cb3fe6000000000000cb3fd3200000000000cbbfcb000000000000cbbfeb800000000000cbbfe4600000000000cb3ff4800000000000cb3ffd80000000000001cb3fe1400000000000cb3fdea00000000000cbbff1800000000000cbbff3000000000000cbbff7600000000000cb3fecc00000000000cb3ff4400000000000cbbfe3a00000000000cbbfaba00000000000cb3fc5000000000000cb3fda800000000000cbbfef600000000000cbbff0200000000000cb3fe5200000000000cb3fd3800000000000cb3ff4e00000000000cb3feb200000000000cb3fe6600000000000cbbfc6000000000000cb3fd6e00000000000cbbfe5e00000000000cbbfe5000000000000cb3fb8000000000000cbbff1e00000000000cbbfd0400000000000cb3fd7a00000000000cb3fe2800000000000cbbff6800000000000cbbfd8000000000000cbbfd0400000000000cbbff7000000000000cb3fa1400000000000cbbfaac00000000000cbbff1400000000000cbbfe8a00000000000cb3ffc600000000000cb3fe3200000000000cb3fcb600000000000cbbfedc00000000000cb3fe1a00000000000cbbfcee00000000000cbbff1e00000000000cbbfe8000000000000cbbfada00000000000cb3ff4800000000000cb3fa7c00000000000cb3ff1400000000000cb3fd5000000000000cbbfdf400000000000cbbff8a00000000000cb3ff7400000000000cbbfe9e00000000000cb3fa5c00000000000cbbff6200000000000cb3fff000000000000cbbff6400000000000cb3fd7000000000000cb3fe3800000000000cb3ff7200000000000cbbfd6800000000000cb3fdb200000000000cb3ff9a00000000000cbbfa0200000000000cb3fdde00000000000cb3fd1400000000000cbbfe0000000000000cbbfd2400000000000cbbff2600000000000cbbfe9600000000000cb3fd9a00000000000cbbfc0600000000000cbbfe7e00000000000cb3fdac00000000000cbbfe0200000000000cb3fe9800000000000cb3feb400000000000cb3f99a00000000000cb3fcd200000000000cb3ff3400000000000cbbfa2400000000000cb3fe8c00000000000cb3fe6800000000000cb3fe7c00000000000cbbff5400000000000cb3fd3200000000000cbbfcf200000000000cb3fc4a00000000000cbbffc200000000000cbbff9200000000000cbbfb3e00000000000cbc000400000000000cbbfe9000000000000cbbff1000000000000cb3ff9c00000000000cbbfbf600000000000cb4000e00000000000cb3fed600000000000cbbff8200000000000cbbfe8a00000000000cb3fef400000000000cb3fdde00000000000cbbfd5400000000000cb3fd4200000000000cbbff0400000000000cbbfd9e00000000000cbbfe2400000000000cbbfed400000000000cbbfcb800000000000cb3fd8000000000000cbbffe400000000000cbbfe1200000000000cb3ffa400000000000cb3fe3e00000000000cbbff0c00000000000cb3fe0c00000000000cbbfbf400000000000cb3fd4200000000000cbbfd8a00000000000cb3fe2a00000000000cb3fd0e00000000000cb3ffac00000000000cb3fd2600000000000cbbfff600000000000cbbfe5000000000000cb3fdbe00000000000cb3fefc00000000000cbbfd0e00000000000cb4000c00000000000cbbfc2800000000000cbbfabc00000000000cbbfe2600000000000cbbff4400000000000cbbfd5600000000000cb3fda000000000000cb3fd5c00000000000cb3ffc000000000000cbbff6200000000000cb3fda800000000000cbbfde000000000000cbc002200000000000cbbff1200000000000cbbfea400000000000cb3fe3600000000000cbbfa9e00000000000cb3ff5000000000000cb3fe1600000000000cb3fff600000000000cb3fe5200000000000cbbff5200000000000cb3fd1e00000000000cbbff4c00000000000cb3fdb200000000000cbc001c00000000000cb3fe4800000000000cbc005800000000000cb3ff1000000000000cbbfe0c00000000000cb3fcd800000000000cb3fdd400000000000cb3fde200000000000cb3fcc800000000000cb3ff3e00000000000cb3fdbc00000000000cbbff6000000000000cb3ff1c00000000000cb3fe5e00000000000cbbfc1000000000000cbbff3600000000000cbbfd8c00000000000cb3fcf800000000000cbbfe5800000000000cb3fd0c00000000000cbbff7e00000000000cb3ffcc00000000000cbbfc5a00000000000cbbfd2c00000000000cbc003600000000000cb3ff3c00000000000cb3fdcc00000000000cbbf95400000000000cb3febe00000000000cbbfbb000000000000cbbfe4600000000000cb3ff1c00000000000cbbffe400000000000cbbfa0200000000000cb3fe0400000000000cbc005a00000000000cb3ffa800000000000cbbfe2400000000000cb3feb400000000000cb3fe0c00000000000cb3fdb800000000000cbbfeb200000000000cbbfe1c00000000000cbbfef800000000000cb4002200000000000cbbff0a00000000000cb3fec200000000000cbbfd6200000000000cb3feba00000000000cb3fc3200000000000cb3fe6200000000000cb3fa9800000000000cbbff0200000000000cbbfdf800000000000cbbfc3400000000000cbbfda400000000000cbbfd7400000000000cb3ffb800000000000cbc000600000000000cbbfdcc00000000000cbbfc0e00000000000cbbfa6c00000000000cb3ff4400000000000cbbfd4800000000000cbbfde600000000000cb3ff1800000000000cb3fd7800000000000cb3ff5600000000000cb3fe3800000000000cb3fe1600000000000cbbffb400000000000cbbff8000000000000cbc001200000000000cb3ff2e00000000000cbbfcb200000000000cb3fffa00000000000cbbfdae00000000000cbbff4c00000000000cbbfd7800000000000cbbfb1a00000000000cb3fe0800000000000cb3fd2000000000000cb3fed800000000000cb3ff3600000000000cbbfe2c00000000000cb3fcf000000000000cbbfec200000000000cb3fe9400000000000cbbfb3400000000000cb3faee00000000000cb3fef600000000000cb3fd4800000000000cb3fcb800000000000cb3ff9c00000000000cb3fe8a00000000000cb3fe6e00000000000cb3ff3800000000000cbbfee200000000000cb3ff1600000000000cbbfbfc00000000000cb3fe4200000000000cbbfb8400000000000cb3ff1600000000000cb3facc00000000000cbbfd5400000000000cbbfa2000000000000cb3fb1600000000000cbbff4800000000000cb3ff9000000000000cb3fd9400000000000cbbfd2c00000000000cbbfede00000000000cb3fe6400000000000cbbfc4200000000000cb3fdfc00000000000cbbfe5800000000000cbbfa8800000000000cb3fba600000000000cbbfb3800000000000cbbfd4c00000000000cbc005000000000000cb3fd9a00000000000cbbfec600000000000cb3ff8400000000000cb4002a0000000000002cb3ff4e00000000000cbbfe1200000000000cb3ff0c00000000000cb3fc5a00000000000cbbfe7e00000000000cbbfc8800000000000cb3fcd000000000000cb3fb9200000000000cb3ff8600000000000cb3fe8400000000000cb3fd8800000000000cbc004800000000000cb3fe7800000000000cbbff3c00000000000cbbfe1000000000000cbbfc1c00000000000cb3ff4a00000000000cbbfd1200000000000cbc000400000000000cbbfe6800000000000cbbfe9400000000000cbbfe5600000000000cb4000c00000000000cb3ff5400000000000cb3fea400000000000cbc007000000000000cbbfc8800000000000cb3fefe00000000000cbbfe3200000000000cbbff4e00000000000cb4000800000000000cb3fcac00000000000cbbfdaa00000000000cb3fcbc00000000000cbbfebe00000000000cbbfebe00000000000cb3fc3200000000000cb3fed800000000000cb3fef400000000000cb3fd4e00000000000cb3f8c600000000000cb3ffa800000000000cbbff4e00000000000cbbff6800000000000cb3fed800000000000cbbfe4600000000000cbbfeaa00000000000cb3fdc800000000000cb3fe5a00000000000cb3fd6e00000000000cbbfd3400000000000cbbfc4000000000000cbbffe800000000000cb3fd5c00000000000cb3fde400000000000cbbfcdc00000000000cb3fe5800000000000cbbfc3c00000000000cb3fe3a00000000000cbc001400000000000cb3fe0200000000000cb4003400000000000cbc003200000000000cb4001400000000000cbbfe3c00000000000cb3fe3000000000000cb3feb200000000000cbbfffc00000000000cbbfe8c00000000000cb4001400000000000cbbfdac00000000000cbbfd8200000000000cbbff6600000000000cb3fe600000000000001cbbfab000000000000cb3f92000000000000cb3fcb400000000000ffcb3fda200000000000cbbff0200000000000cb3ffb000000000000cb3feba00000000000cb3ff7800000000000cb3ff6a00000000000cbbfdb400000000000cb3feec00000000000cbbfede00000000000cb3fec200000000000cb3feae00000000000cbbff3800000000000cbbffc800000000000cb3fe9600000000000cbbfa4400000000000cbbffa600000000000cbbfa4200000000000cb3f73800000000000cb3ff2800000000000cbbfb8e00000000000cbbfe3400000000000cb3fb9600000000000cbbfd0600000000000cbbfe6200000000000cbbf96800000000000cb3feec0000000000001cbbfdd600000000000cb3fdd800000000000cb3fe0e00000000000cb4000e00000000000cb3ff5200000000000cb3ff2e00000000000cbbfec400000000000cb3fda600000000000cbbfe1600000000000cbbf8c000000000000cbbfe8a00000000000cb3fc3a00000000000cb3ffb000000000000cb3fffc00000000000cb3fd4200000000000cbbff2a00000000000cbbfd3e00000000000cbbfe3200000000000cb3fd9c00000000000cbbffdc00000000000cb3fcc800000000000cbbff6e00000000000cbbfd6c00000000000cb3ff3a00000000000cb3ffec00000000000cb3feca00000000000cb3fd3200000000000cbbfdf200000000000cb3ff0200000000000cbbfe9000000000000cb3ffe200000000000cb3fd7e00000000000cb3fe0e00000000000cbbfd0a00000000000cbbfdc200000000000cbbfe6400000000000cb3fee200000000000cb3ff1400000000000cbbff8000000000000cb3fe5800000000000cbbfeb200000000000cbbfe1600000000000cb3ff2c00000000000cb3fe2c00000000000cbbfce400000000000cbbff8e00000000000cb3fdfc00000000000cb3fe1a00000000000cbbfca000000000000cb3fcfc00000000000cb3fe3800000000000cbbff4800000000000cb3fb7800000000000cb3fdbc00000000000cb3ff4000000000000cbbfd3800000000000cb3fbc800000000000cb3fe6800000000000cbc000600000000000cbbfd9a00000000000cbbfd5600000000000cbc005a00000000000cb3ff3e00000000000cbbfe5a00000000000cbbfd3200000000000cbbfd2a00000000000cb3f91200000000000cbbfe2800000000000cbbff1600000000000cb3fd7000000000000cb3ff2200000000000cb3fe2800000000000cb3feb600000000000cbbffca00000000000cb3fc3c00000000000cb3fd6200000000000cbbfc5800000000000cb3fca600000000000cb3fe9a00000000000cb3fd0000000000000cbbfe9a00000000000cb3ff7000000000000cbbfe4800000000000cbbfb4400000000000cbbfc1a00000000000cbbfe5a00000000000cbbfe5200000000000cbbfde600000000000cbbffb200000000000cb3fdee00000000000cb3ff4c00000000000cb3fe8a00000000000cb3fbce00000000000cb3fe1400000000000cbbff1600000000000cb3fe7000000000000cbbfe1000000000000cbbfeb000000000000cbbfd1c00000000000cb3fe2800000000000cbc003600000000000cbbfe4c00000000000cb3fbe000000000000cbbff0800000000000cb3fd9400000000000cbbfbd800000000000cbbffc800000000000cb3fc4400000000000cbbfe2200000000000cb3fe2200000000000cbbfe1600000000000cb3fc4a00000000000cbbfe3c00000000000cb3fe1800000000000cb4000600000000000cbbfffe00000000000cbbfdce00000000000cb3ff4200000000000cb3ff6400000000000cbbfd8200000000000cbbfa9800000000000cb3fe4600000000000cb3ffda00000000000cbbfa8e00000000000cbbff7200000000000cb3fe2600000000000cbbfddc00000000000cb3fc4200000000000cb3fe1c00000000000cb3ff3e00000000000cbbfe2000000000000cb3fc9400000000000cb3ff0800000000000cbbff1400000000000cbbfcc800000000000cbbfb2200000000000cb3ff0c00000000000cbbfd1600000000000cb3ff4e00000000000cbbfd6e00000000000cb3fea400000000000cb3fc0e00000000000cbbfbce00000000000cb3fbb400000000000cb3fdf600000000000cbbfb3e00000000000cbbfe3a00000000000cbbfdf400000000000cbbfd6400000000000cbbfe2600000000000cbbfd1e00000000000cb3fe4a00000000000cb3fef400000000000cbbfeb400000000000cbbfe4000000000000cbbff2a00000000000cb3ff1000000000000cbbfe9200000000000cb3fe4000000000000cbbff8e00000000000cbbfd6600000000000cb3ff1a00000000000cb3fe9400000000000cb3f7a000000000000cb3fe7400000000000cb3ff9200000000000cb3fe1400000000000cbbff5600000000000cb3fdac00000000000cb3fb4a00000000000cbbfe1000000000000cbbfe8600000000000cbbfe1200000000000cb3feb400000000000cbbff3200000000000cb3ff4000000000000cb3fd7200000000000cb3fe1400000000000cbbfeac00000000000cb3fff400000000000cb3fd6600000000000cbbfe7600000000000cbbfe3800000000000cbbff6600000000000cbbfe5800000000000cb3fdfe00000000000cbbfe5c00000000000cbbf81000000000000cbbfe0000000000000cbbfc9400000000000cbbfdfe00000000000cb3fdb200000000000cbbff1200000000000cbbfe8200000000000cbbfe0a00000000000cbbfe8200000000000cb3ff6200000000000cbbfbaa00000000000cb3fe5e00000000000cbbfdc000000000000cbbfe2c00000000000cb3f95800000000000cbbff4400000000000cb3ffae00000000000cbbff2800000000000cbbfb0400000000000cb3fe7c00000000000cbc004a00000000000cb3fca800000000000cbbfe8c00000000000cbbfe2800000000000cbbff3800000000000cb3fd6000000000000cbbff1400000000000cbbfebe00000000000cbbfa5600000000000cbbff1800000000000cb3fe5000000000000cbbfea400000000000cbbfd2800000000000cbbff1a00000000000cbbfe5a00000000000cbbff2000000000000cb3fe0400000000000cbbff2000000000000cb3fe6200000000000cbbffbc00000000000cbbfe1a00000000000cb3fef600000000000cbbf78000000000000cb3fcd400000000000cb3fe3000000000000cbbfe0000000000000cbbff8a00000000000cbbfe4e00000000000cbbfe8a00000000000cbbffde00000000000cb3fff800000000000cb3ff1e00000000000cbbff2c00000000000cbbfe8200000000000cbbfd0000000000000cb3ffe400000000000cbbfc3400000000000cb3fea000000000000cbbfe5a00000000000cbbfebc00000000000cb3fe8c00000000000cbbfcaa00000000000cbbfc8400000000000cb3fb4c00000000000cb3ff0400000000000cb3fe7e00000000000cb3ff3400000000000cbc000400000000000cbbffbe00000000000cb3fe9e00000000000cbbfe3200000000000cb3ffdc00000000000cb3fac000000000000cbbf95400000000000cbbfd4c00000000000cbbfdbe00000000000cb3ff8a00000000000cbbfde400000000000cb3fc8800000000000cb3ff5200000000000cbbfe2400000000000cb3ff2c00000000000cb3fdda00000000000cbbff7400000000000cbbfdea00000000000cbbfdc200000000000cbbfd0600000000000cbbfc0e00000000000cb3ffa600000000000cb3fdd800000000000cb3fc4a00000000000cb3fe0800000000000cbbfcb800000000000cb3ff3c00000000000cbbfcf600000000000cbbfe1e00000000000cb3fefa00000000000cb3fe4000000000000cb3fe0200000000000cb3ff8000000000000cbbfff200000000000cbbfea000000000000cb3fd0e00000000000cb3fe5200000000000cb4005200000000000cbbff4c00000000000cb3f9b600000000000cbbfcc600000000000cb3ff1400000000000cb3fe5200000000000cb3f58000000000000cbbfedc00000000000cb3fbe000000000000cbbfc3c00000000000cbbfe8000000000000cb3ff5000000000000cbbfe6800000000000cb3fad400000000000cb3fbbc00000000000cb3fe9600000000000cbbfd1400000000000cbbfe1200000000000cbbfd8e00000000000cbbfd9a00000000000cb3ff8c00000000000cbbfeb000000000000cbbfc8c00000000000cbbfe0400000000000cbbfe3a00000000000cb3fe1000000000000cb3fe8a00000000000cbbf8e800000000000cbbfb4000000000000cbbfac600000000000cbbfd9400000000000cb4000a00000000000cb3fda400000000000cb3ff4000000000000cbbfda200000000000cb3ffd400000000000cb3fffa00000000000cbbff2400000000000cbbfe4400000000000cbbff8200000000000cb3fc5600000000000cb3f99200000000000cb4002400000000000cb3fe8400000000000cb3fc0600000000000cbbfa6400000000000cbbff8600000000000cb3ff6800000000000cb3ff4a00000000000cb3fd5000000000000cb3fc6000000000000cbbfb5c00000000000cbbfdb200000000000cbbfe6c00000000000cbbfa1600000000000cbbfa2000000000000cb3fd4800000000000cbbfe4200000000000cb3fd9000000000000cb3fee000000000000cbbfe9200000000000cb3fde200000000000cbbfea200000000000cbbff6400000000000cbbf7b000000000000cb3fd8c00000000000cb3fc9200000000000cb3fe1400000000000cb3fc1000000000000cbbfe3a00000000000cb3fe9000000000000cbbfe5e00000000000cb3fe0800000000000cb3fe7c00000000000cbbff6400000000000cb4003400000000000cbbfea600000000000cb3ffc800000000000cb4006600000000000cb3fe5000000000000cb3ff9600000000000cbbfd8400000000000cbbfcde00000000000cb3fd5a00000000000cb3fd5200000000000fecbbffc400000000000cbbf83000000000000cbbfe0000000000000cb3f6d000000000000cb3fdb200000000000cb3fe5800000000000cb3ff0a00000000000cbbff2800000000000cbbff8c00000000000cb3fea200000000000cbbfda800000000000cbbfe6000000000000cb3fe3400000000000cb3fe5200000000000cbbff1200000000000cbbfce400000000000cb3facc00000000000cb3fc9600000000000cbbff3800000000000cb3ff2a00000000000cbbfd2c00000000000cbbff0600000000000cb3ff3200000000000cbbfeba00000000000cb3ffa000000000000cb3fe5a00000000000cbbfed000000000000cbbfee600000000000cbbfc3a00000000000cbbff8c00000000000cb3f9f000000000000cb3fe0400000000000cb3fda800000000000cbbfe7400000000000cb3fefc00000000000cbbfc0200000000000cbbff9800000000000cbbfef800000000000cb3fe2c00000000000cbbfe0a00000000000cb3ff4600000000000cbbfff000000000000cb3f74000000000000cb3ff9200000000000cbbfdf800000000000cbbfeec00000000000cbbfd6000000000000cbbff4600000000000cb3fea600000000000cbbfcec00000000000cb3ff2800000000000cbbfeee00000000000cbbfde000000000000cb3fff800000000000cb3fe5000000000000cbbff1000000000000cbbfd0400000000000cbbfbc800000000000cbbfd5600000000000cbbff6e00000000000cb3fd4600000000000cb3fe5a00000000000cb3fe2800000000000cb3fb1200000000000cb3ff9a00000000000cb3ffd200000000000cb3ffc600000000000cbbfe1400000000000cb3fc6a00000000000cb3fe4800000000000cbbffb400000000000cb3fc2400000000000cb3ff2e00000000000cb3ffd800000000000cb3fd2200000000000cb3fd8200000000000cb3ff4a00000000000cb3ff1400000000000cb3fc3800000000000cbbfb7e00000000000cbbfe3c00000000000cb3fe4800000000000cb3fef800000000000cb3febe00000000000cb3fd9c00000000000cbbfbe800000000000cb3fe2a00000000000cb3fcaa00000000000cbbfaec00000000000cb3fb9200000000000cb3fc2a00000000000cbbfdc200000000000cb3fdda00000000000cbbfccc00000000000cb3ff7800000000000cbbffba00000000000cb3ff2000000000000cbbfe8000000000000cb3fe6e00000000000cbbfc0c00000000000cbbfc9800000000000cb3ff0e00000000000cb3ff8e00000000000cb3ff2000000000000cbbfc6e00000000000cbbfdd800000000000cb3fe2000000000000a5636f756e7413a7736f7274696e6786a86c616e6775616765a7656e676c697368b2736f727461626c6550726f7065727469657392a46e616d65a7636f6e74657874bb736f727461626c6550726f7065727469657357697468547970657382a46e616d65a6737472696e67a7636f6e74657874a6737472696e67a5736f72747382a46e616d6583a4646f6373de0013a13101a13207a13309a1340fa1350ca13603a1370da13810a1390ea2313004a2313106a2313211a231330aa2313402a2313508a231360ba2313700a2313805a2313912ab6f726465726564446f6373dc00139211a74163636f756e749201ae4163636f756e74486973746f7279920ea541737365749206aa4174746163686d656e74920aa4436173659212a7436f6e74616374920ba8436f6e74726163749202a6446f6d61696e920fa44c6561649203a44e6f7465920dab4f70706f7274756e6974799210a54f726465729205aa5072696365626f6f6b329207ae5072696365626f6f6b456e7472799209a850726f64756374329204aa5265636f7264547970659208a65265706f7274920ca45461736b9213a455736572a474797065a6737472696e67a7636f6e7465787483a4646f6373de0013a13100a13201a13302a13403a13504a13605a13706a13807a13908a2313009a231310aa231320ba231330ca231340da231350ea231360fa2313710a2313811a2313912ab6f726465726564446f6373dc00139201a09202a09203a09204a09205a09206a09207a09208a09209a0920aa0920ba0920ca0920da0920ea0920fa09210a09211a09212a09213a0a474797065a6737472696e67a7656e61626c6564c3a86973536f72746564c3a86c616e6775616765a7656e676c697368 \ No newline at end of file diff --git a/proxy-lite-work/.sfdx/typings/lwc/apex.d.ts b/proxy-lite-work/.sfdx/typings/lwc/apex.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..610cff868d92ef2295101b90a4772a0cd478f258 --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/apex.d.ts @@ -0,0 +1,31 @@ +declare module '@salesforce/apex' { + /** + * Identifier for an object's field. + */ + export interface FieldId { + /** The field's API name. */ + fieldApiName: string; + /** The object's API name. */ + objectApiName: string; + } + + /** + * Services for Apex. + */ + export interface ApexServices { + /** + * Refreshes a property annotated with @wire. Queries the server for updated data and refreshes the cache. + * @param wiredTargetValue A property annotated with @wire. + * @returns Promise that resolves to the refreshed value. If an error occurs, the promise is rejected. + */ + refreshApex: (wiredTargetValue: any) => Promise; + + /** + * Gets a field value from an Apex sObject. + * @param sObject The sObject holding the field. + * @param field The field to return. + * @returns The field's value. If it doesn't exist, undefined is returned. + */ + getSObjectValue: (sObject: object, field: string | FieldId) => any; + } +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/engine.d.ts b/proxy-lite-work/.sfdx/typings/lwc/engine.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..85bb88f607a69a48524fbd55fd2b3c5df4b984c0 --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/engine.d.ts @@ -0,0 +1,231 @@ +/* + * Copyright (c) 2018, salesforce.com, inc. + * All rights reserved. + * SPDX-License-Identifier: MIT + * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT + */ + +/** + * Lightning Web Components core module + */ + +declare module 'lwc' { + // backwards compatible type used for the old days when TS didn't support `event.composed` + interface ComposableEvent extends Event { + composed: boolean; + } + + class HTMLElementTheGoodPart { + dispatchEvent(evt: Event): boolean; + addEventListener( + type: string, + listener: EventListenerOrEventListenerObject, + options?: boolean | AddEventListenerOptions + ): void; + removeEventListener( + type: string, + listener: EventListenerOrEventListenerObject, + options?: boolean | EventListenerOptions + ): void; + setAttributeNS(ns: string, attrName: string, value: any): void; + removeAttributeNS(ns: string, attrName: string): void; + removeAttribute(attrName: string): void; + setAttribute(attrName: string, value: any): void; + getAttribute(attrName: string): string | null; + getAttributeNS(ns: string, attrName: string): string | null; + getBoundingClientRect(): ClientRect; + querySelector(selectors: string): E | null; + querySelectorAll(selectors: string): NodeListOf; + getElementsByTagName(tagNameOrWildCard: string): HTMLCollectionOf; + getElementsByClassName(names: string): HTMLCollectionOf; + readonly tagName: string; + readonly classList: DOMTokenList; + + // Default HTML Properties + dir: string; + id: string; + accessKey: string; + title: string; + lang: string; + hidden: boolean; + draggable: boolean; + tabIndex: number; + + // Aria Properties + ariaAutoComplete: string | null; + ariaChecked: string | null; + ariaCurrent: string | null; + ariaDisabled: string | null; + ariaExpanded: string | null; + ariaHasPopup: string | null; + ariaHidden: string | null; + ariaInvalid: string | null; + ariaLabel: string | null; + ariaLevel: string | null; + ariaMultiLine: string | null; + ariaMultiSelectable: string | null; + ariaOrientation: string | null; + ariaPressed: string | null; + ariaReadOnly: string | null; + ariaRequired: string | null; + ariaSelected: string | null; + ariaSort: string | null; + ariaValueMax: string | null; + ariaValueMin: string | null; + ariaValueNow: string | null; + ariaValueText: string | null; + ariaLive: string | null; + ariaRelevant: string | null; + ariaAtomic: string | null; + ariaBusy: string | null; + ariaActiveDescendant: string | null; + ariaControls: string | null; + ariaDescribedBy: string | null; + ariaFlowTo: string | null; + ariaLabelledBy: string | null; + ariaOwns: string | null; + ariaPosInSet: string | null; + ariaSetSize: string | null; + ariaColCount: string | null; + ariaColIndex: string | null; + ariaDetails: string | null; + ariaErrorMessage: string | null; + ariaKeyShortcuts: string | null; + ariaModal: string | null; + ariaPlaceholder: string | null; + ariaRoleDescription: string | null; + ariaRowCount: string | null; + ariaRowIndex: string | null; + ariaRowSpan: string | null; + ariaColSpan: string | null; + role: string | null; + } + + // @ts-ignore type-mismatch + interface ShadowRootTheGoodPart extends NodeSelector { + mode: string; + readonly activeElement: Element | null; + readonly host: HTMLElement; + readonly firstChild: Node | null; + readonly lastChild: Node | null; + readonly innerHTML: string; + readonly textContent: string; + readonly childNodes: Node[]; + readonly delegatesFocus: boolean; + addEventListener( + type: string, + listener: EventListenerOrEventListenerObject, + options?: boolean | AddEventListenerOptions + ): void; + removeEventListener( + type: string, + listener: EventListenerOrEventListenerObject, + options?: boolean | EventListenerOptions + ): void; + hasChildNodes(): boolean; + compareDocumentPosition(otherNode: Node): number; + contains(otherNode: Node): boolean; + elementFromPoint(x: number, y: number): Element | null; + querySelector( + selectors: K + ): HTMLElementTagNameMap[K] | null; + querySelector( + selectors: K + ): SVGElementTagNameMap[K] | null; + querySelector(selectors: string): E | null; + querySelectorAll( + selectors: K + ): NodeListOf; + querySelectorAll( + selectors: K + ): NodeListOf; + querySelectorAll(selectors: string): NodeListOf; + } + + /** + * Base class for the Lightning Web Component JavaScript class + */ + export class LightningElement extends HTMLElementTheGoodPart { + /** + * This static getter builds a Web Component class from a LWC constructor so it can be registered + * as a new element via customElements.define() at any given time. For example: + * + * ``` + * import XComponent from 'namespace/element'; + * customElements.define('x-component', XComponent.CustomElementConstructor); + * const elm = document.createElement('x-component'); + * ``` + */ + static get CustomElementConstructor(): typeof HTMLElement; + /** + * Called when the element is inserted in a document + */ + connectedCallback(): void; + /** + * Called when the element is removed from a document + */ + disconnectedCallback(): void; + /** + * Called after every render of the component + */ + renderedCallback(): void; + /** + * Called when a descendant component throws an error in one of its lifecycle hooks + */ + errorCallback(error: Error, stack: string): void; + + readonly template: ShadowRootTheGoodPart; + readonly shadowRoot: null; + } + + /** + * Decorator to mark public reactive properties + */ + export const api: PropertyDecorator; + + /** + * Decorator to mark private reactive properties + */ + export const track: PropertyDecorator; + + /** + * Decorator factory to wire a property or method to a wire adapter data source + * @param adapter the adapter used to provision data + * @param config configuration object for the adapter + */ + export function wire( + adapter: WireAdapterConstructor | LegacyWireAdapterConstructor, + config?: WireConfigValue + ): PropertyDecorator; + + type LegacyWireAdapterConstructor = (config?: any) => any; + type WireConfigValue = Record; + type ContextValue = Record; + + interface WireAdapter { + update(config: WireConfigValue, context?: ContextValue): void; + connect(): void; + disconnect(): void; + } + + type WireDataCallback = (value: any) => void; + type WireAdapterSchemaValue = 'optional' | 'required'; + + interface ContextConsumer { + provide(newContext: ContextValue): void; + } + + interface ContextProviderOptions { + consumerConnectedCallback: (consumer: ContextConsumer) => void; + consumerDisconnectedCallback?: (consumer: ContextConsumer) => void; + } + + interface WireAdapterConstructor { + new (callback: WireDataCallback): WireAdapter; + configSchema?: Record; + contextSchema?: Record; + } + + type Contextualizer = (elm: EventTarget, options: ContextProviderOptions) => void; + export function createContextProvider(config: WireAdapterConstructor): Contextualizer; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/lds.d.ts b/proxy-lite-work/.sfdx/typings/lwc/lds.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..279d334d0f83faf711a7feb1f770e87643d2f0c3 --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/lds.d.ts @@ -0,0 +1,3855 @@ +declare module 'lightning/uiListApi' { + /** + * Identifier for an object. + */ + export interface ObjectId { + /** The object's API name. */ + objectApiName: string; + } + + /** + * Identifier for an object's field. + */ + export interface FieldId { + /** The field's API name. */ + fieldApiName: string; + /** The object's API name. */ + objectApiName: string; + } + + /** + * Gets the records and metadata for a list view. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_get_list_ui + * + * @param objectApiName API name of the list view's object (must be specified along with listViewApiName). + * @param listViewApiName API name of the list view (must be specified with objectApiName). + * @param listViewId ID of the list view (may be specified without objectApiName or listViewApiName). + * @param pageToken A token that represents the page offset. To indicate where the page starts, use this value with the pageSize parameter. + * The maximum offset is 2000 and the default is 0. + * @param pageSize The number of list records viewed at one time. The default value is 50. Value can be 1–2000. + * @param sortBy The API name of the field the list view is sorted by. If the name is preceded with `-`, the sort order is descending. + * For example, Name sorts by name in ascending order. `-CreatedDate` sorts by created date in descending order. + * Accepts only one value per request. + * @param fields Additional fields queried for the records returned. These fields don’t create visible columns. + * If the field is not available to the user, an error occurs. + * @param optionalFields Additional fields queried for the records returned. These fields don’t create visible columns. + * If the field is not available to the user, no error occurs and the field isn’t included in the records. + * @returns {Observable} See description. + */ + export function getListUi( + objectApiName?: string | ObjectId, + listViewApiName?: string | symbol, + listViewId?: string, + pageToken?: string, + pageSize?: number, + sortBy?: string | FieldId, + fields?: Array, + optionalFields?: Array, + ): void; +} + +declare module 'lightning/uiRelatedListApi' { + /** + * Identifier for an object. + */ + export interface ObjectId { + /** The object's API name. */ + objectApiName: string; + } + + /** + * Identifier for an object's field. + */ + export interface FieldId { + /** The field's API name. */ + fieldApiName: string; + /** The object's API name. */ + objectApiName: string; + } + + /** + * Gets the metadata for a specific Related List + * @param parentObjectApiName The API name of the parent object for the related list (must be specified with relatedListId) + * @param parentRecordId The record ID of the parent record for the related list (must be specified with relatedListId) + * @param relatedListId The ID of the related list (can be specified with either parentObjectApiName or parentRecordId) + */ + export function getRelatedListInfo(parentObjectApiName?: string | ObjectId, parentRecordId?: string, relatedListId?: string): void; + + /** + * Gets the metadata for a batch of related lists + * @param parentObjectApiName The API name of the parent object for the related lists + * @param relatedListIds Comma separated IDs of supported related lists for the specified parent object + */ + export function getRelatedListInfoBatch(parentObjectApiName: string | ObjectId, relatedListIds: Array): void; + + /** Gets a collection of metadata for all the related lists for a specific entity + * + * @param parentObjectApiName The API name of the parent object + */ + export function getRelatedListsInfo(parentObjectApiName?: string | ObjectId): void; + + /** + * Gets a colllection of records for a given record and related list + * @param parentRecordId The record ID of the parent record for the related list + * @param relatedListId The ID of the related list + */ + export function getRelatedListRecords(parentRecordId: string, relatedListId: string): void; + + /** + * Gets record data for a batch of related lists + * @param parentRecordId The ID of the parent record you want to get related lists for + * @param relatedListIds Comma separated IDs of supported related lists for the specified parent record + */ + export function getRelatedListRecordsBatch(parentRecordId: string, relatedListIds: Array): void; + + /** + * Gets the count of records for a related list on a specific given record + * @param parentRecordId The record ID of the parent record for the related list + * @param relatedListId The ID of the related list + */ + export function getRelatedListCount(parentRecordId: string, relatedListId: string): void; +} + +declare module 'lightning/uiObjectInfoApi' { + /** + * Identifier for an object. + */ + export interface ObjectId { + /** The object's API name. */ + objectApiName: string; + } + + /** + * Identifier for an object's field. + */ + export interface FieldId { + /** The field's API name. */ + fieldApiName: string; + /** The object's API name. */ + objectApiName: string; + } + + /** + * Gets the metadata for a specific object. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_wire_adapters_object_info + * + * @param objectApiName The API name of the object to retrieve. + */ + export function getObjectInfo(objectApiName: string | ObjectId): void; + + /** + * Wire adapter for multiple object metadatas. + * + * @param objectApiNames The API names of the objects to retrieve. + */ + export function getObjectInfos(objectApiNames: Array): void; + + /** + * Wire adapter for values for a picklist field. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_wire_adapters_picklist_values + * + * @param fieldApiName The picklist field's object-qualified API name. + * @param recordTypeId The record type ID. Pass '012000000000000AAA' for the master record type. + */ + export function getPicklistValues(fieldApiName: string | FieldId, recordTypeId: string): void; + + /** + * Wire adapter for values for all picklist fields of a record type. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_wire_adapters_picklist_values_record + * + * @param objectApiName API name of the object. + * @param recordTypeId Record type ID. Pass '012000000000000AAA' for the master record type. + */ + export function getPicklistValuesByRecordType(objectApiName: string, recordTypeId: string): void; +} + +/** + * JavaScript API to Create and Update Records. + */ +declare module 'lightning/uiRecordApi' { + /** + * Identifier for an object. + */ + export interface ObjectId { + /** The object's API name. */ + objectApiName: string; + } + + /** + * Identifier for an object's field. + */ + export interface FieldId { + /** The field's API name. */ + fieldApiName: string; + /** The object's API name. */ + objectApiName: string; + } + + /** + * Contains both the raw and displayable field values for a field in a Record. + * + * https://developer.salesforce.com/docs/atlas.en-us.uiapi.meta/uiapi/ui_api_responses_field_value.htm + * + * Keys: + * (none) + */ + export interface FieldValueRepresentation { + displayValue: string | null; + value: RecordRepresentation | boolean | number | string | null; + } + export type FieldValueRepresentationValue = FieldValueRepresentation['value']; + + /** + * Record Collection Representation. + * + * https://developer.salesforce.com/docs/atlas.en-us.uiapi.meta/uiapi/ui_api_responses_record_collection.htm + * + * Keys: + * (none) + */ + export interface RecordCollectionRepresentation { + count: number; + currentPageToken: string | null; + currentPageUrl: string; + nextPageToken: string | null; + nextPageUrl: string | null; + previousPageToken: string | null; + previousPageUrl: string | null; + records: Array; + } + + /** + * Record type. + * + * https://developer.salesforce.com/docs/atlas.en-us.uiapi.meta/uiapi/ui_api_responses_record_type_info.htm + * + * Keys: + * (none) + */ + export interface RecordTypeInfoRepresentation { + available: boolean; + defaultRecordTypeMapping: boolean; + master: boolean; + name: string; + recordTypeId: string; + } + + /** + * Record. + * + * https://developer.salesforce.com/docs/atlas.en-us.uiapi.meta/uiapi/ui_api_responses_record.htm + * + * Keys: + * recordId (string): id + */ + export interface RecordRepresentation { + apiName: string; + childRelationships: { + [key: string]: RecordCollectionRepresentation; + }; + eTag: string; + fields: { + [key: string]: FieldValueRepresentation; + }; + id: string; + lastModifiedById: string | null; + lastModifiedDate: string | null; + recordTypeId: string | null; + recordTypeInfo: RecordTypeInfoRepresentation | null; + systemModstamp: string | null; + weakEtag: number; + } + + /** + * Description of a record input. + * + * https://developer.salesforce.com/docs/atlas.en-us.uiapi.meta/uiapi/ui_api_requests_record_input.htm + * + * Keys: + * (none) + */ + export interface RecordInputRepresentation { + allowSaveOnDuplicate?: boolean; + apiName?: string; + fields: { + [key: string]: string | number | null | boolean; + }; + } + + export interface ClientOptions { + ifUnmodifiedSince?: string; + } + + /** + * Child Relationship. + * + * https://developer.salesforce.com/docs/atlas.en-us.uiapi.meta/uiapi/ui_api_responses_child_relationship.htm + * + * Keys: + * (none) + */ + export interface ChildRelationshipRepresentation { + childObjectApiName: string; + fieldName: string; + junctionIdListNames: Array; + junctionReferenceTo: Array; + relationshipName: string; + } + + /** + * Information about a reference field's referenced types and the name field names of those types. + * + * https://developer.salesforce.com/docs/atlas.en-us.uiapi.meta/uiapi/ui_api_responses_reference_to_info.htm + * + * Keys: + * (none) + */ + export interface ReferenceToInfoRepresentation { + apiName: string; + nameFields: Array; + } + + /** + * Filtered lookup info. + * + * https://developer.salesforce.com/docs/atlas.en-us.uiapi.meta/uiapi/ui_api_responses_filtered_lookup_info.htm + * + * Keys: + * (none) + */ + export interface FilteredLookupInfoRepresentation { + controllingFields: Array; + dependent: boolean; + optionalFilter: boolean; + } + + export const enum ExtraTypeInfo { + ExternalLookup = 'ExternalLookup', + ImageUrl = 'ImageUrl', + IndirectLookup = 'IndirectLookup', + PersonName = 'PersonName', + PlainTextArea = 'PlainTextArea', + RichTextArea = 'RichTextArea', + SwitchablePersonName = 'SwitchablePersonName', + } + + export const enum RecordFieldDataType { + Address = 'Address', + Base64 = 'Base64', + Boolean = 'Boolean', + ComboBox = 'ComboBox', + ComplexValue = 'ComplexValue', + Currency = 'Currency', + Date = 'Date', + DateTime = 'DateTime', + Double = 'Double', + Email = 'Email', + EncryptedString = 'EncryptedString', + Int = 'Int', + Location = 'Location', + MultiPicklist = 'MultiPicklist', + Percent = 'Percent', + Phone = 'Phone', + Picklist = 'Picklist', + Reference = 'Reference', + String = 'String', + TextArea = 'TextArea', + Time = 'Time', + Url = 'Url', + } + + /** + * Field metadata. + * + * https://developer.salesforce.com/docs/atlas.en-us.uiapi.meta/uiapi/ui_api_responses_field.htm + * + * Keys: + * (none) + */ + export interface FieldRepresentation { + apiName: string; + calculated: boolean; + compound: boolean; + compoundComponentName: string | null; + compoundFieldName: string | null; + controllerName: string | null; + controllingFields: Array; + createable: boolean; + custom: boolean; + dataType: string; + extraTypeInfo: string | null; + filterable: boolean; + filteredLookupInfo: FilteredLookupInfoRepresentation | null; + highScaleNumber: boolean; + htmlFormatted: boolean; + inlineHelpText: string | null; + label: string; + length: number; + nameField: boolean; + polymorphicForeignKey: boolean; + precision: number; + reference: boolean; + referenceTargetField: string | null; + referenceToInfos: Array; + relationshipName: string | null; + required: boolean; + scale: number; + searchPrefilterable: boolean; + sortable: boolean; + unique: boolean; + updateable: boolean; + } + + /** + * Theme info. + * + * https://developer.salesforce.com/docs/atlas.en-us.uiapi.meta/uiapi/ui_api_responses_theme_info.htm + * + * Keys: + * (none) + */ + export interface ThemeInfoRepresentation { + color: string; + iconUrl: string | null; + } + + /** + * Object metadata. + * + * https://developer.salesforce.com/docs/atlas.en-us.uiapi.meta/uiapi/ui_api_responses_object_info.htm + * + * Keys: + * apiName (string): apiName + */ + export interface ObjectInfoRepresentation { + apiName: string; + associateEntityType: string | null; + associateParentEntity: string | null; + childRelationships: Array; + createable: boolean; + custom: boolean; + defaultRecordTypeId: string | null; + deletable: boolean; + dependentFields: { + [key: string]: {}; + }; + eTag: string; + feedEnabled: boolean; + fields: { + [key: string]: FieldRepresentation; + }; + keyPrefix: string | null; + label: string; + labelPlural: string; + layoutable: boolean; + mruEnabled: boolean; + nameFields: Array; + queryable: boolean; + recordTypeInfos: { + [key: string]: RecordTypeInfoRepresentation; + }; + searchable: boolean; + themeInfo: ThemeInfoRepresentation | null; + updateable: boolean; + } + + /** + * Wire adapter for a record. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_wire_adapters_record + * + * @param recordId ID of the record to retrieve. + * @param fields Object-qualified field API names to retrieve. If a field isn’t accessible to the context user, it causes an error. + * If specified, don't specify layoutTypes. + * @param layoutTypes Layouts defining the fields to retrieve. If specified, don't specify fields. + * @param modes Layout modes defining the fields to retrieve. + * @param optionalFields Object-qualified field API names to retrieve. If an optional field isn’t accessible to the context user, + * it isn’t included in the response, but it doesn’t cause an error. + * @returns An observable of the record. + */ + export function getRecord( + recordId: string, + fields?: Array, + layoutTypes?: string[], + modes?: string[], + optionalFields?: Array, + ): void; + + /** + * Wire adapter for default field values to create a record. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_wire_adapters_create_record_values + * + * @param objectApiName API name of the object. + * @param formFactor Form factor. Possible values are 'Small', 'Medium', 'Large'. Large is default. + * @param recordTypeId Record type id. + * @param optionalFields Object-qualified field API names to retrieve. If an optional field isn’t accessible to the context user, + * it isn’t included in the response, but it doesn’t cause an error. + */ + export function getRecordCreateDefaults( + objectApiName: string | ObjectId, + formFactor?: string, + recordTypeId?: string, + optionalFields?: Array, + ): void; + + /** + * Wire adapter for record data, object metadata and layout metadata + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_wire_adapters_record_ui + * + * @param recordIds ID of the records to retrieve. + * @param layoutTypes Layouts defining the fields to retrieve. + * @param modes Layout modes defining the fields to retrieve. + * @param optionalFields Object-qualified field API names to retrieve. If an optional field isn’t accessible to the context user, + * it isn’t included in the response, but it doesn’t cause an error. + */ + export function getRecordUi( + recordIds: string | string[], + layoutTypes: string | string[], + modes: string | string[], + optionalFields: Array, + ): void; + + /** + * Updates a record using the properties in recordInput. recordInput.fields.Id must be specified. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_update_record + * + * @param recordInput The record input representation to use to update the record. + * @param clientOptions Controls the update behavior. Specify ifUnmodifiedSince to fail the save if the record has changed since the provided value. + * @returns A promise that will resolve with the patched record. + */ + export function updateRecord(recordInput: RecordInputRepresentation, clientOptions?: ClientOptions): Promise; + + /** + * Creates a new record using the properties in recordInput. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_create_record + * + * @param recordInput The RecordInput object to use to create the record. + * @returns A promise that will resolve with the newly created record. + */ + export function createRecord(recordInput: RecordInputRepresentation): Promise; + + /** + * Deletes a record with the specified recordId. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_delete_record + * + * @param recordId ID of the record to delete. + * @returns A promise that will resolve to undefined. + */ + export function deleteRecord(recordId: string): Promise; + + /** + * Returns an object with its data populated from the given record. All fields with values that aren't nested records will be assigned. + * This object can be used to create a record with createRecord(). + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_generate_record_input_create + * + * @param record The record that contains the source data. + * @param objectInfo The ObjectInfo corresponding to the apiName on the record. If provided, only fields that are createable=true + * (excluding Id) are assigned to the object return value. + * @returns RecordInput + */ + export function generateRecordInputForCreate(record: RecordRepresentation, objectInfo?: ObjectInfoRepresentation): RecordInputRepresentation; + + /** + * Returns an object with its data populated from the given record. All fields with values that aren't nested records will be assigned. + * This object can be used to update a record. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_generate_record_input_update + * + * @param record The record that contains the source data. + * @param objectInfo The ObjectInfo corresponding to the apiName on the record. + * If provided, only fields that are updateable=true (excluding Id) are assigned to the object return value. + * @returns RecordInput. + */ + export function generateRecordInputForUpdate(record: RecordRepresentation, objectInfo?: ObjectInfoRepresentation): RecordInputRepresentation; + + /** + * Returns a new RecordInput containing a list of fields that have been edited from their original values. (Also contains the Id + * field, which is always copied over.) + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_create_record_input_update + * + * @param recordInput The RecordInput object to filter. + * @param originalRecord The Record object that contains the original field values. + * @returns RecordInput. + */ + export function createRecordInputFilteredByEditedFields( + recordInput: RecordInputRepresentation, + originalRecord: RecordRepresentation, + ): RecordInputRepresentation; + + /** + * Gets a field's value from a record. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_get_field_value + * + * @param record The record. + * @param field Object-qualified API name of the field to return. + * @returns The field's value (which may be a record in the case of spanning fields), or undefined if the field isn't found. + */ + export function getFieldValue(record: RecordRepresentation, field: FieldId | string): FieldValueRepresentationValue | undefined; + + /** + * Gets a field's display value from a record. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_get_field_display_value + * + * @param record The record. + * @param field Object-qualified API name of the field to return. + * @returns The field's display value, or undefined if the field isn't found. + */ + export function getFieldDisplayValue(record: RecordRepresentation, field: FieldId | string): FieldValueRepresentationValue | undefined; +} + +declare module 'lightning/industriesEducationPublicApi' { + /** + * Representation of the benefit assignment record updated with provider information. + * Keys: + * id (string): id + */ + export interface MentoringBenefitAssignment { + /** The ID of the benefit associated with the benefit assignment. */ + benefitId: string; + /** The contact ID of the provider associated with the benefit assignment. */ + providerId: string; + /** The ID of the user who created the benefit assignment. */ + createdById: string; + /** The date that the benefit assignment was created. */ + createdDate: string; + /** The last date and time that the benefit assignment is available. */ + endDateTime: string; + /** The ID of the enrollee assoicated with the benefit assignment. */ + enrolleeId: string; + /** The default quantity associated with the benefit assignment. */ + enrollmentCount: string; + /** The amount of the entitlement associated with the benefit assignment. */ + entitlementAmount: string; + /** The ID of the benefit assignment */ + id: string; + /** The ID of the user who updated the benefit assignment. */ + lastModifiedById: string; + /** The date of the most recent update to the benefit assignment. */ + lastModifiedDate: string; + /** The maximum amount of the benefit associated with the benefit assignment. */ + maximumBenefitAmount: string; + /** The minimum amount of the benefit associated with the benefit. */ + minimumBenefitAmount: string; + /** The name of the benefit assignment. */ + name: string; + /** The ID of the parent record associated with the benefit assignment. */ + parentRecordId: string; + /** The priority associated with the benefit assignment. */ + priority: string; + /** The ID of the program enrollment created for the participant to whom you want to assign this benefit. */ + programEnrollmentId: string; + /** The date and time when the benefit assignment is first available. */ + startDateTime: string; + /** The status associated with the benefit assignment. */ + status: string; + /** The status of the task job associated with the benefit assignment. */ + taskJobStatus: string; + /** The status message of the task job associated with the benefit assignment. */ + taskJobStatusMessage: string; + /** The ID of the unit of measure associated with the benefit assignment. */ + unitOfMeasureId: string; + } + + /** + * Representation of the output for the benefit assignment request. + */ + export interface MentoringBenefitAssignmentOutputRepresentation { + /** Representation of the benefit assignment record updated with provider information. */ + mentoringBenefitAssignment: MentoringBenefitAssignment; + } + + /** + * Return the benefit assignment record with updated provider record lookup. + * @param benefitAssignmentId The ID of the benefit assignment record. + * @param providerId The ID of the provider offering associated with the benefit assignment. + */ + export function postBenefitAssignment({ + benefitAssignmentId, + providerId, + }: { + benefitAssignmentId: string; + providerId: string; + }): Promise; +} + +declare module 'lightning/industriesSchedulerApi' { + /** + * Wire adapter for getting Engagment ChannelTypes. + */ + export function getEngagementChannelTypes(): void; + + /** + * Wire adapter for creating a Service Appointment. + */ + export function createServiceAppointment(): void; + + /** + * Wire adapter for updating a Service Appointment. + */ + export function updateServiceAppointment(): void; +} + +declare module 'lightning/platformScaleCenterApi' { + /** + * Wire adapter for a Scale Center observability metrics. + * + * @param request a serialized list of ScaleCenterRequests that define which metrics are to be queried + * @returns a serialized list of the requested metric data + */ + export function getMetrics(request: string): void; +} + +declare module 'lightning/placeQuoteApi' { + /** + * Wire adapter for updates using Place Quote API + */ + export function updateQuote(): void; +} + +declare module 'lightning/salesAutomationRulesApi' { + /** + * Wire adapter for Automation Rules apply reminder + * + * @param id the ID string of the reminder to be applied + */ + export function applyReminder(id: string): void; +} + +declare module 'lightning/salesEnablementProgramApi' { + /** + * Wire adapter for getting Sales Enablement Program templates list. + */ + export function getProgramTemplates(): void; + + /** + * Wire adapter for getting Sales Enablement Program details of the programTemplateName passed as url param. + * @param programTemplateName name of the template for which details are required + */ + export function getProgramTemplate(programTemplateName: string): void; +} + +declare module 'lightning/salesUserWorkingHoursApi' { + /** + * Wire adapter for getting sales user working hours availability. + */ + export function getSalesUserWorkingHours(): void; + + /** + * Wire adapter for updating sales user working hours availability. + */ + export function updateSalesUserWorkingHours(): void; + + /** + * Wire adapter for creating sales user working hours availability. + */ + export function createSalesUserWorkingHours(): void; + + /** + * Wire adapter for deleting sales user working hours availability. + */ + export function deleteSalesUserWorkingHours(): void; +} + +declare module 'lightning/salesEngagementWorkspaceApi' { + /** + * Wire adapter for getting sales user workspace personalization. + */ + export function getWorkspaceUserPersonalization(): void; + + /** + * Wire adapter for getting sales user workspace supported objects. + */ + export function getEngagementWorkspaceObjects(): void; + + /** + * Wire adapter for updating sales user workspace personalization. + */ + export function updateWorkspaceUserPersonalization(): void; + + /** + * Wire adapter for deleting sales user workspace personalization. + */ + export function deleteWorkspaceUserPersonalization(): void; +} + +declare module 'lightning/analyticsWaveApi' { + /** + * A Tableau CRM dataflow node. + * + * Keys: + * (none) + */ + export interface AbstractDataflowNodeRepresentation { + /** Node action */ + action: string; + /** Node sources */ + sources: Array; + } + + /** + * Base representation for fields in Tableau CRM. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#AbstractFieldRepresentation + * + * Keys: + * (none) + */ + export interface AbstractFieldRepresentation { + defaultValue?: string | number | null | boolean; + description?: string; + fieldType: string; + format?: string; + label: string; + multiValue?: boolean; + multiValueSeparator?: string; + name: string; + precision?: number; + scale?: number; + systemField?: boolean; + uniqueId?: boolean; + } + + /** + * Wave Data Connector Advanced Property input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_advanced_property_value_input.htm + * + * Keys: + * (none) + */ + export interface AdvancedPropertyValueInputRepresentation { + /** The name of the advanced property. */ + name: string; + /** The value of the advanced property */ + value: string; + } + + /** + * An advanced property Name and Value. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#AdvancedPropertyValueReprensentation + * + * Keys: + * (none) + */ + export interface AdvancedPropertyValueRepresentation { + name: string; + value: string; + } + + /** + * Asset reference representation. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#AssetReferenceRepresentation + * + * Keys: + * (none) + */ + // eslint-disable-next-line @typescript-eslint/no-empty-interface + export interface AssetReferenceRepresentation extends BaseAssetReferenceRepresentation {} + + /** + * Simple, reference input representation for wave assets. + * + * Keys: + * (none) + */ + // eslint-disable-next-line @typescript-eslint/no-empty-interface + export interface AssetReferenceInputRepresentation extends BaseAssetReferenceInputRepresentation {} + + /** + * Base Tableau CRM Asset input Representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#BaseAssetInputRepresentation + * + * Keys: + * (none) + */ + export interface BaseAssetInputRepresentation { + description?: string; + label?: string; + name?: string; + } + + /** + * Base class for Asset reference input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#AssetReferenceInputRepresentation + * + * Keys: + * (none) + */ + export interface BaseAssetReferenceInputRepresentation { + /** ID of the asset */ + id?: string; + /** Developer name of the asset */ + name?: string; + /** The namespace that qualifies the asset name */ + namespace?: string; + } + + /** + * Base asset reference representation. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#AssetReferenceRepresentation + * + * Keys: + * (none) + */ + export interface BaseAssetReferenceRepresentation { + /** The 18 character ID of the asset. */ + id: string; + /** The asset label. */ + label?: string; + /** The asset developer name. */ + name?: string; + /** The namespace that qualifies the asset name */ + namespace?: string; + /** The asset URL. */ + url?: string; + } + + /** + * Base Tableau CRM asset representation. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#BaseWaveAssetRepresentation + * Keys: + * id (string): id + */ + export interface BaseWaveAssetRepresentation { + /** Sharing URL for the asset. */ + assetSharingUrl?: string | null; + /** The user that created the asset. */ + createdBy?: WaveUserRepresentation; + /** Time the asset was created. */ + createdDate?: string; + /** Short description of the asset. */ + description?: string; + /** The 18 character asset ID. */ + id: string; + /** The label of the asset. */ + label?: string; + /** Last time the asset was accessed. */ + lastAccessedDate?: string | null; + /** The user that last updated the asset. */ + lastModifiedBy?: WaveUserRepresentation | null; + /** Last time the asset was modified. */ + lastModifiedDate?: string | null; + /** The name of the asset. */ + name?: string; + /** The namespace of the Asset. */ + namespace?: string; + /** Represents permissions for the present user. */ + permissions?: PermissionsRepresentation | null; + /** The asset type. */ + type: string; + /** URL to get the definition of the asset. */ + url: string; + } + + /** + * Extended metadata for property in conditional formatting linked to a Dimension / Measure. + * + * Keys: + * (none) + */ + export interface ConditionalFormattingPropertyInputRepresentation { + /** Valid conditional formatting parameters based on its type */ + parameters?: { + [key: string]: unknown; + }; + /** Conditional Formatting based on Reference field if any. */ + referenceField?: string; + /** The type of the conditional formatting */ + type?: string; + } + + /** + * A Connection Property Name and Value. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_dataconnectors.htm#ConnectionPropertyValueRepresentation + * + * Keys: + * (none) + */ + export interface ConnectionPropertyValueRepresentation { + name: string; + value: string | number | boolean; + } + + /** + * Daily schedule on which to execute some type of job. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#DailyScheduleInputRepresentation + * + * Keys: + * (none) + */ + export interface DailyScheduleInputRepresentation extends ScheduleInputRepresentation { + frequency: 'daily' | 'Daily'; + } + + /** + * Daily schedule on which to execute some type of job. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#DailyScheduleRepresentation + * + * Keys: + * id (string): assetId + */ + export interface DailyScheduleRepresentation extends ScheduleRepresentation { + frequency: 'daily' | 'Daily'; + } + + /** + * Tableau CRM Data Connector input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_dataconnectors.htm#DataConnectorInputRepresentation + * + * Keys: + * (none) + */ + export interface DataConnectorInputRepresentation extends BaseAssetInputRepresentation { + /** Connection properties for the connector */ + connectionProperties?: Array; + /** Third party driver used for connection */ + connectorHandler?: string; + /** The type of the Data Connector. */ + connectorType?: string; + /** Folder for the Live connector */ + folder?: { + [key: string]: string; + }; + /** AssetReference containing ID or API name of target connector associated with the current source connector */ + targetConnector?: { + [key: string]: string; + }; + } + + /** + * A Data Connector represents a connection. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_dataconnectors.htm#DataConnectorRepresentation + * + * Keys: + * id (string): id + */ + export interface DataConnectorRepresentation extends BaseWaveAssetRepresentation { + connectionProperties: Array; + connectorHandler?: string; + connectorType: string; + folder?: AssetReferenceRepresentation; + ingestionSchedule: + | HourlyScheduleRepresentation + | MonthlySpecificScheduleRepresentation + | MinutelyScheduleRepresentation + | EventDrivenScheduleRepresentation + | WeeklyScheduleRepresentation + | MonthlyRelativeScheduleRepresentation + | DailyScheduleRepresentation + | EmptyScheduleRepresentation; + targetConnector?: AssetReferenceRepresentation; + type: 'dataConnector'; + } + + /** + * A collection of Dataflows. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_dataflows.htm#DataflowCollectionRepresentation + * + * Keys: + * (none) + */ + export interface DataflowCollectionRepresentation { + dataflows: Array; + } + + /** + * A Tableau CRM dataflow definition. + * + * Keys: + * (none) + */ + export interface DataflowDefinitionRepresentation { + /** node definitions */ + nodes: { + [key: string]: AbstractDataflowNodeRepresentation; + }; + } + + /** + * DataflowJob input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_dataflowjobs_id.htm#DataflowJobInputRepresentation + * + * Keys: + * (none) + */ + export interface DataflowJobInputRepresentation { + /** Dataflow Job command */ + command: string; + /** Dataflow ID */ + dataflowId?: string; + } + + /** + * Tableau CRM dataflow job representation. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_dataflowjobs_id.htm#DataflowJobRepresentation + * + * Keys: + * id (string): id + */ + export interface DataflowJobRepresentation extends BaseWaveAssetRepresentation { + /** The runtime in seconds of a dataflow job */ + duration?: number; + /** The start date of a job's execution. */ + executedDate?: string | null; + /** The type of a job */ + jobType: string; + /** The analytics license type and other properties */ + licenseAttributes?: LicenseAttributesRepresentation | null; + /** The error or informational message of a dataflow job */ + message?: string | null; + /** The URL of job nodes */ + nodesUrl: string; + /** The progress of a job */ + progress: number; + /** The source of a job */ + source?: AssetReferenceRepresentation | null; + /** The start date of a dataflow job */ + startDate?: string; + /** The runtime status of a dataflow job */ + status: string; + /** The dataflows to sync when the job is triggered. */ + syncDataflows: DataflowCollectionRepresentation; + type: 'DataflowJob'; + } + + /** + * Tableau CRM dataflow asset representation. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_dataflows_id.htm#DataflowRepresentation + * + * Keys: + * id (string): id + */ + export interface DataflowRepresentation extends BaseWaveAssetRepresentation { + /** Current version of dataflow. */ + current?: DataflowVersionRepresentation | null; + /** The representation of the dataflow nodes */ + definition: { + [key: string]: string; + }; + /** Email notification level of dataflow. */ + emailNotificationLevel?: string | null; + /** The URL for the dataflow histories associated with the dataflow. */ + historiesUrl?: string | null; + /** Next scheduled run of dataflow. */ + nextScheduledDate?: string | null; + /** Schedule attributes of dataflow. */ + scheduleAttributes?: string | null; + type: 'Dataflow'; + } + + /** + * A Tableau CRM dataflow version. + * + * Keys: + * (none) + */ + export interface DataflowVersionRepresentation { + /** The user that created the asset. */ + createdBy: WaveUserRepresentation; + /** Time the asset was created. */ + createdDate: string; + /** Dataflow definition */ + definition: DataflowDefinitionRepresentation; + /** The 18 character asset ID. */ + id: string; + } + + /** Wave Dataset input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_dataset_input.htm + * + * Keys: + * (none) + */ + export interface DatasetInputRepresentation extends BaseAssetInputRepresentation { + /** Type of the dataset */ + datasetType?: string; + /** Folder in which this dataset is stored */ + folder?: AssetReferenceInputRepresentation; + liveConnection?: LiveConnectionInputRepresentation; + userXmd?: XmdInputRepresentation; + /** If dataset should be hidden from users with view access */ + visibility?: string; + } + + /** + * A Wave dataset. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_responses_dataset.htm + * + * Keys: + * id (string): id + */ + export interface DatasetRepresentation extends BaseWaveAssetRepresentation { + /** The URL for dataset shards. */ + clientShardsUrl?: string; + currentVersionCreatedBy?: WaveUserRepresentation; + /** Date on which the current version was created. */ + currentVersionCreatedDate?: string; + /** The 18 character ID of the current DatasetVersion. */ + currentVersionId?: string; + currentVersionLastModifiedBy?: WaveUserRepresentation; + /** Date on which the current version was last modified. */ + currentVersionLastModifiedDate?: string; + /** Current dataset version supports new date format */ + currentVersionSupportsNewDates?: boolean; + /** The total number of rows in the dataset. */ + currentVersionTotalRowCount?: number; + /** The URL for the current DatasetVersion. */ + currentVersionUrl?: string; + /** Date/time when this dataset was last updated by a dataflow. */ + dataRefreshDate?: string; + /** The type of the dataset. */ + datasetType: string; + /** A reference to the folder in which this dataset is stored. */ + folder: AssetReferenceRepresentation; + /** Date/time when the metadata(Edgemart's Folder, MasterLabel, Current, EdgemartData's Sharing and security predicate) of dataset was last changed. */ + lastMetadataChangedDate?: string; + /** Date/time when this dataset was last queried. */ + lastQueriedDate?: string; + licenseAttributes?: LicenseAttributesRepresentation; + liveConnection?: LiveConnectionRepresentation; + userXmd?: XmdInnerRepresentation; + /** The URL for dataset versions. */ + versionsUrl: string; + /** If dataset should be hidden from users with view access */ + visibility: string; + } + + /** + * Input representation for wave Dataset Version. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_dataset_version_input.htm + * + * Keys: + * (none) + */ + export interface DatasetVersionInputRepresentation { + /** Indicates whether the Dataset Version is complete */ + isComplete?: boolean; + /** The row level security predicate to be applied to this Dataset Version. */ + predicate?: string; + /** Entity from which sharing rules should be inherited */ + sharingSource?: AssetReferenceInputRepresentation | null; + /** The total number of rows for the dataset version */ + totalRowCount?: number; + } + + /** + * An instantiated version of a Wave dataset. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_responses_dataset_version.htm + * + * Keys: + * id (string): id + */ + export interface DatasetVersionRepresentation extends BaseWaveAssetRepresentation { + /** A reference to the dataset. */ + dataset?: AssetReferenceRepresentation; + /** Information about the data files that make up the dataset version. */ + files?: Array; + /** The URL of the files resource for this dataset version. */ + filesUrl?: string; + /** The row level security predicate. */ + predicate?: string; + /** The version of the row level security predicate. */ + predicateVersion?: number; + /** Dataset sharing inheritance coverage information resource. */ + securityCoverageUrl: string; + /** Entity from which sharing rules will be inherited for this dataset version */ + sharingSource?: DatasetVersionSharingSourceRepresentation; + /** The parent dataflow or file for this dataset version. */ + source?: AssetReferenceRepresentation; + /** Dataset version supports new date format */ + supportsNewDates?: boolean; + /** Total number of rows for this dataset version */ + totalRowCount?: number; + xmdMain?: XmdInnerRepresentation; + /** The URL of the Xmd Collection resource for this dataset version. */ + xmdsUrl?: string; + } + + /** + * Asset reference representation. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_responses_asset_reference.htm + * + * Keys: + * (none) + */ + export interface DatasetVersionSharingSourceRepresentation { + /** The asset developer name. */ + name: string; + /** The namespace that qualifies the asset name */ + namespace?: string; + } + + /** + * Represents an empty schedule on an asset + * + * Keys: + * id (string): assetId + */ + export interface EmptyScheduleRepresentation extends ScheduleRepresentation { + frequency: 'none' | 'None'; + } + + /** + * A schedule triggered by an event, e.g., the completion of a data sync job. + * + * Keys: + * (none) + */ + export interface EventBasedScheduleInputRepresentation extends ScheduleInputRepresentation { + frequency: 'eventdriven' | 'EventDriven'; + /** The expression defining the events that trigger the scheduling of the target asset. Currently, only accepting scheduling of Dataflows and Recipes as the target asset. */ + triggerRule?: string; + } + + /** + * A schedule triggered by an event, e.g., the completion of a data sync job. + * + * Keys: + * id (string): assetId + */ + export interface EventDrivenScheduleRepresentation extends ScheduleRepresentation { + frequency: 'eventdriven' | 'EventDriven'; + } + + /** + * A schedule which can run multiple times a day. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#HourlyScheduleInputRepresentation + * + * Keys: + * (none) + */ + export interface HourlyScheduleInputRepresentation extends ScheduleInputRepresentation { + frequency: 'hourly' | 'Hourly'; + /** Days of the week on which the schedule will run. */ + daysOfWeek: Array; + /** Hours in between each queueing of task. */ + hourlyInterval: number; + /** Hour at which schedule stops queueing. */ + lastHour?: number; + } + + /** + * A schedule which can run multiple times a day. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#HourlyScheduleRepresentation + * + * Keys: + * id (string): assetId + */ + export interface HourlyScheduleRepresentation extends ScheduleRepresentation { + frequency: 'hourly' | 'Hourly'; + /** Days of the week on which the schedule will run. */ + daysOfWeek: Array; + /** Hours in between each queueing of task. */ + hourlyInterval: number; + /** Hour at which schedule stops queueing. */ + lastHour?: number; + } + + /** + * Input representation for analytics license attributes. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_license_attributes_input.htm + * + * Keys: + * (none) + */ + export interface LicenseAttributesInputRepresentation { + /** Analytics license type associated with the asset. */ + type: string; + } + + /** + * The analytics license type and other properties + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_limits.htm#LicenseAttributesRepresentation + * + * Keys: + * (none) + */ + export interface LicenseAttributesRepresentation { + /** The associated analytics license type */ + type: string; + } + + /** + * Connection details of a live dataset + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_responses_live_connection.htm + * + * Keys: + * (none) + */ + export interface LiveConnectionRepresentation { + /** The label of the connection */ + connectionLabel: string; + /** The developer name of the connection */ + connectionName: string; + /** The type of the connection */ + connectionType: string; + /** The source object name from the connection */ + sourceObjectName: string; + } + + /** + * Connection details for a live dataset + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_live_connection_input.htm + * + * Keys: + * (none) + */ + export interface LiveConnectionInputRepresentation { + /** The developer name of the connection */ + connectionName: string; + /** The source object name from the connection */ + sourceObjectName: string; + } + + /** + * A schedule which can run multiple times an hour. + * + * Keys: + * (none) + */ + export interface MinutelyScheduleInputRepresentation extends ScheduleInputRepresentation { + frequency: 'minutely' | 'Minutely'; + /** Days of the week on which the schedule will run. */ + daysOfWeek: Array; + /** Hour at which schedule stops queueing. */ + lastHour?: number; + /** Minutes in between each queueing of task. */ + minutelyInterval: number; + } + + /** + * A schedule which can run multiple times an hour. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#MinutelyScheduleRepresentation + * + * Keys: + * id (string): assetId + */ + export interface MinutelyScheduleRepresentation extends ScheduleRepresentation { + frequency: 'minutely' | 'Minutely'; + /** Days of the week on which the schedule will run. */ + daysOfWeek: Array; + /** Hour at which schedule stops queueing. */ + lastHour?: number; + /** Minutes in between each queueing of task. */ + minutelyInterval: number; + } + + /** + * Schedule which runs monthly on a relative day within the month. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#MonthlyRelativeScheduleInputRepresentation + * + * Keys: + * (none) + */ + export interface MonthlyRelativeScheduleInputRepresentation extends ScheduleInputRepresentation { + frequency: 'monthlyrelative' | 'MonthlyRelative'; + /** Day within a week. */ + dayInWeek: string; + /** Week within a month. */ + weekInMonth: string; + } + + /** + * Schedule which runs monthly on a relative day within the month. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#MonthlyRelativeScheduleRepresentation + * + * Keys: + * id (string): assetId + */ + export interface MonthlyRelativeScheduleRepresentation extends ScheduleRepresentation { + frequency: 'monthlyrelative' | 'MonthlyRelative'; + /** Day within a week. */ + dayInWeek: string; + /** Week within a month. */ + weekInMonth: string; + } + + /** + * A schedule which runs once a month on specific (numerical) days of the month or on the 'last' day of the month. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#MonthlySpecificScheduleInputRepresentation + * + * Keys: + * (none) + */ + export interface MonthlySpecificScheduleInputRepresentation extends ScheduleInputRepresentation { + frequency: 'monthly' | 'Monthly'; + /** Days of the month on which the schedule will run (-1, 1-31). Note that months lacking specific days will skip the job. Can specify a single value of -1 to indicate the last day of the month (-1 cannot be used with additional days). */ + daysOfMonth: Array; + } + + /** + * A schedule which runs once a month on specific (numerical) days of the month or on the 'last' day of the month. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#MonthlySpecificScheduleRepresentation + * + * Keys: + * id (string): assetId + */ + export interface MonthlySpecificScheduleRepresentation extends ScheduleRepresentation { + frequency: 'monthly' | 'Monthly'; + /** Days of the month on which the schedule will run (-1, 1-31). Note that months lacking specific days will skip the job. Can specify a single value of -1 to indicate the last day of the month (-1 cannot be used with additional days). */ + daysOfMonth: Array; + } + + /** + * Wave XMD measure format number input representation with numeric separators + * + * Keys: + * (none) + */ + export interface NumericSeparatorsInputRepresentation { + /** Decimal separator */ + decimal?: string; + /** Thousands separator */ + thousands?: string; + } + + /** + * Thousands and decimal numeric separators + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_responses_numeric_separators.htm + * + * Keys: + * (none) + */ + export interface NumericSeparatorsRepresentation { + /** Decimal separator */ + decimal?: string; + /** Thousand separator */ + thousands?: string; + } + + /** + * output source for output objects + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_replicateddatasets.htm#OutputSourceRepresentation + * + * Keys: + * (none) + */ + export interface OutputSourceRepresentation { + inputRows?: number; + isSyncOut: boolean; + name: string; + nextScheduledDate?: string; + outputRows?: number; + } + + /** + * Permissions of the user on an asset. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#PermissionsRepresentation + * + * Keys: + * (none) + */ + export interface PermissionsRepresentation { + /** The value which indicates whether the user can create an asset */ + create?: boolean; + /** The value which indicates whether the user can manage access control on an asset */ + manage?: boolean; + /** The value which indicates whether the user can modify an asset */ + modify?: boolean; + /** The value which indicates whether the user can view an asset. */ + view?: boolean; + } + + /** + * Replicates data from an external source object into Tableau CRM as a dataset. Replicated Datasets are not intended to be visualized directly, but are used like a cache to speed up other workflows which refer to the same source object. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_replicateddatasets.htm#ReplicatedDatasetInputRepresentation + * + * Keys: + * (none) + */ + export interface ReplicatedDatasetInputRepresentation { + advancedProperties?: Array<{ + [key: string]: any; + }>; + connectionMode?: string; + connectorId?: string; + fullRefresh?: boolean; + passThroughFilter?: string; + rowLevelSharing?: boolean; + sourceObjectName?: string; + } + + /** + * The conversion detail that will be kept + * + * https://developer.salesforce.com/docs/atlas.en-us.salesforce_recipes_api.meta/salesforce_recipes_api/sforce_recipes_api_requests_recipe_conversion_detail_input.htm + * + * Keys: + * (none) + */ + export interface RecipeConversionDetailInputRepresentation { + /** conversion detail id */ + conversionDetailId: number; + /** conversion detail message */ + message: string; + /** conversion detail node name */ + nodeName: string; + /** conversion detail severity */ + severity?: string; + } + + /** + * Recipe conversion details during upconversion + * + * https://developer.salesforce.com/docs/atlas.en-us.salesforce_recipes_api.meta/salesforce_recipes_api/sforce_recipes_api_responses_recipe_conversion_detail.htm + * + * Keys: + * (none) + */ + export interface RecipeConversionDetailRepresentation { + /** Message */ + message: string; + /** Node name */ + nodeName: string; + /** Severity */ + severity: string; + } + + /** + * Input representation of 3.0 Recipe Definition format. + * + * https://developer.salesforce.com/docs/atlas.en-us.salesforce_recipes_api.meta/salesforce_recipes_api/sforce_recipes_api_requests_recipe_definition_input.htm + * + * Keys: + * (none) + */ + export interface RecipeDefinitionInputRepresentation { + /** Recipe Name */ + name: string; + /** Recipe nodes */ + nodes: { + [key: string]: RecipeNodeInputRepresentation; + }; + /** Recipe ui metadata */ + ui: { + [key: string]: unknown; + }; + /** Recipe version */ + version: string; + } + + /** + * Representation of 3.0 Recipe Definition + * + * https://developer.salesforce.com/docs/atlas.en-us.salesforce_recipes_api.meta/salesforce_recipes_api/sforce_recipes_api_responses_recipe_definition.htm + * + * Keys: + * (none) + */ + export interface RecipeDefinitionRepresentation { + /** Recipe name */ + name?: string; + /** Recipe nodes */ + nodes: { + [key: string]: unknown; + }; + /** Recipe ui metadata */ + ui: { + [key: string]: unknown; + }; + /** Recipe version */ + version: string; + } + + /** + * Input representation of a Data Prep recipe. + * + * https://developer.salesforce.com/docs/atlas.en-us.salesforce_recipes_api.meta/salesforce_recipes_api/sforce_recipes_api_requests_recipe_input.htm + * + * Keys: + * (none) + */ + export interface RecipeInputRepresentation { + /** The list of conversion detail ids that will be kept */ + conversionDetails?: Array; + /** The recipe's dataflow definition. */ + dataflowDefinition?: string; + /** The recipe's execution engine. Spark or Dataflow. */ + executionEngine?: string; + /** The recipe's file content, base64 encoded. Consider using multipart form data instead. */ + fileContent?: string; + /** The recipe's publish folder. */ + folder?: AssetReferenceInputRepresentation; + /** Recipe format type (2.0 or 3.0) */ + format?: string; + /** A short label for the recipe. */ + label?: string; + /** An optional representation to tag the license attributes of the recipe being saved. */ + licenseAttributes?: LicenseAttributesInputRepresentation; + /** The name of the recipe. */ + name?: string; + /** Target system or format to publish the recipe to. Dataset, DataPool, or IoT */ + publishingTarget?: string; + /** Recipe definition for 3.0 format */ + recipeDefinition?: RecipeDefinitionInputRepresentation; + /** The recipe's target dataset's security predicate. */ + rowLevelSecurityPredicate?: string; + /** The recipe's schedule dataflow run. */ + schedule?: string; + /** The source dataflow asset which will be converted to the recipe 3.0 */ + sourceDataflow?: AssetReferenceInputRepresentation; + } + + /** + * Represents a single step used in building a dashboard. + * + * https://developer.salesforce.com/docs/atlas.en-us.salesforce_recipes_api.meta/salesforce_recipes_api/sforce_recipes_api_requests_recipe_node_input.htm + * + * Keys: + * (none) + */ + export interface RecipeNodeInputRepresentation { + /** Node action. */ + action: string; + schema?: SchemaParametersInputRepresentation; + /** Source node ids. */ + sources: Array; + } + + /** + * Input required to create recipe notifications that are sent to the current user. + * + * https://developer.salesforce.com/docs/atlas.en-us.salesforce_recipes_api.meta/salesforce_recipes_api/sforce_recipes_api_requests_recipe_notification_input.htm + * + * Keys: + * (none) + */ + export interface RecipeNotificationInputRepresentation { + /** Number of minutes that a recipe can run before sending an alert. */ + longRunningAlertInMins?: number | null; + /** Notification level for emails. */ + notificationLevel: string; + } + + /** + * Notification conditions on a recipe for the current user. + * + * https://developer.salesforce.com/docs/atlas.en-us.salesforce_recipes_api.meta/salesforce_recipes_api/sforce_recipes_api_responses_recipe_notification.htm + * + * Keys: + * id (string): recipe.id + */ + export interface RecipeNotificationRepresentation { + /** Number of minutes that a recipe can run before sending an alert. */ + longRunningAlertInMins?: number; + /** Notification level for emails. */ + notificationLevel: string; + /** A reference to the Recipe that the notification belongs to. */ + recipe: AssetReferenceRepresentation; + } + + /** + * A Data Prep recipe. + * + * https://developer.salesforce.com/docs/atlas.en-us.salesforce_recipes_api.meta/salesforce_recipes_api/sforce_recipes_api_responses_recipe.htm + * + * Keys: + * id (string): id + */ + export interface RecipeRepresentation extends BaseWaveAssetRepresentation { + /** The upconversion details when converting dataflow to R3 */ + conversionDetails: Array; + /** Last dataflow update. */ + dataflowLastUpdate?: string; + /** Target Dataset */ + dataset?: AssetReferenceRepresentation; + /** URL to get the recipe's file content. */ + fileUrl?: string; + /** The format of the recipe */ + format?: string; + /** The URL for the version histories associated with the recipe. */ + historiesUrl?: string; + /** The analytics license attributes associated with the recipe. */ + licenseAttributes?: LicenseAttributesRepresentation; + /** The next scheduled run of this recipe. */ + nextScheduledDate?: string; + /** The target format or system to publish to. Dataset, DataPool, or IoT. */ + publishingTarget?: string; + /** Recipe definition for 3.0 format */ + recipeDefinition?: RecipeDefinitionRepresentation; + /** The security predicate of the target dataset */ + rowLevelSecurityPredicate?: string; + /** The schedule cron expression current dataflow. */ + schedule?: string; + scheduleAttributes: + | DailyScheduleRepresentation + | EmptyScheduleRepresentation + | EventDrivenScheduleRepresentation + | HourlyScheduleRepresentation + | MinutelyScheduleRepresentation + | MonthlyRelativeScheduleRepresentation + | MonthlySpecificScheduleRepresentation + | WeeklyScheduleRepresentation; + /** The schedule type of the recipe */ + scheduleType?: string; + /** dataflow from which the current recipe was upconverted to or was reverted from. */ + sourceDataflow?: string; + /** Recipe from which the current recipe was upconverted to or was reverted from. */ + sourceRecipe?: string; + /** The status of recipe. */ + status?: string; + /** Target Dataflow ID. */ + targetDataflowId?: string; + /** The validation details for the recipe 3.0 */ + validationDetails: Array; + } + + /** + * Validation detail on recipe graph or recipe node + * + * https://developer.salesforce.com/docs/atlas.en-us.salesforce_recipes_api.meta/salesforce_recipes_api/sforce_recipes_api_responses_recipe_validation_detail.htm + * + * Keys: + * (none) + */ + export interface RecipeValidationDetailRepresentation { + /** Message */ + message?: string; + /** Node name */ + nodeName?: string; + /** Node type */ + nodeType?: string; + /** Severity */ + severity?: string; + /** Validation action */ + validationAction?: string; + /** Validation code */ + validationCode?: number; + } + + /** + * Replicates data from an external source object into Tableau CRM as a dataset. Replicated Datasets are not intended to be visualized directly, but are used like a cache to speed up other workflows which refer to the same source object. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_replicateddatasets.htm#ReplicatedDatasetRepresentation + * + * Keys: + * id (string): uuid + */ + export interface ReplicatedDatasetRepresentation { + assetSharingUrl?: string | null; + createdBy?: WaveUserRepresentation; + createdDate?: string; + description?: string; + id: string; + label?: string; + lastAccessedDate?: string | null; + lastModifiedBy?: WaveUserRepresentation | null; + lastModifiedDate?: string | null; + name?: string; + namespace?: string; + permissions?: PermissionsRepresentation | null; + type: string; + url: string; + advancedProperties: Array; + connectionMode?: string; + connector: DataConnectorRepresentation; + datasetId?: string; + fieldCount?: number; + fieldsUrl: string; + filterApplied: boolean; + lastRefreshedDate?: string; + outputSource?: OutputSourceRepresentation; + passThroughFilter?: string; + replicationDataflowId?: string; + rowLevelSharing?: boolean; + sourceObjectName: string; + status?: string; + supportedConnectionModes?: Array; + uuid: string; + } + + /** + * A list of configuration metadata that specifies how to replicate each field of a Replicated Dataset. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_replicateddatasets_id_fields.htm#ReplicatedFieldCollectionInputRepresentation + * + * Keys: + * (none) + */ + export interface ReplicatedFieldCollectionInputRepresentation { + fields: Array<{}>; + } + + /** + * A list of Replicated Fields. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_replicateddatasets_id_fields.htm#ReplicatedFieldCollectionInputRepresentation#ReplicatedFieldCollectionRepresentation + * + * Keys: + * id (string): replicatedDataset.id + */ + export interface ReplicatedFieldCollectionRepresentation { + fields: Array; + replicatedDataset: AssetReferenceRepresentation; + url: string; + } + + /** + * Metadata/configuration for a single field of a Replicated Dataset. + * + * Keys: + * (none) + */ + export interface ReplicatedFieldRepresentation extends AbstractFieldRepresentation { + skipped: boolean; + fieldType: 'replicatedField'; + } + + /** + * Input representation for Restore Dataset Version. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_restore_dataset_version_input.htm + * + * Keys: + * (none) + */ + export interface RestoreDatasetVersionInputRepresentation { + /** Source Version to which restore should happen */ + sourceVersion: AssetReferenceInputRepresentation; + } + + /** + * Representation of a dataset version restore. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_dataconnectors_connectorid_ingest.htm#RestoreDatasetVersionRepresentation + * + * Keys: + * id (string): url + */ + export interface RestoreDatasetVersionRepresentation { + message: string; + url: string; + } + + /** + * Analtyics query specification. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_query.htm#SaqlQueryInputRepresentation + * + * Keys: + * (none) + */ + export interface SaqlQueryInputRepresentation { + metadata?: SaqlQueryMetadataInputRepresentation; + /** The query name */ + name?: string; + /** The query */ + query: string; + /** The language in which the query is written: Saql, Sql. */ + queryLanguage?: string; + /** The timezone requested. */ + timezone?: string; + } + + /** + * Query metadata contains query Id and query sequence Id used for performance tracking and monitoring purposes. + * + * Keys: + * (none) + */ + export interface SaqlQueryMetadataInputRepresentation { + [key: string]: any; + } + + /** + * Schema node field + * + * https://developer.salesforce.com/docs/atlas.en-us.salesforce_recipes_api.meta/salesforce_recipes_api/sforce_recipes_api_requests_schema_field_parameters_input.htm + * + * Keys: + * (none) + */ + export interface SchemaFieldParametersInputRepresentation { + /** Value to output on error */ + errorValue?: string; + /** Schema field name */ + name?: string; + /** Field Properties */ + newProperties?: SchemaFieldPropertiesInputRepresentation; + } + + /** + * Common Field Properties + * + * https://developer.salesforce.com/docs/atlas.en-us.salesforce_recipes_api.meta/salesforce_recipes_api/sforce_recipes_api_requests_schema_field_properties_input.htm + * + * Keys: + * (none) + */ + export interface SchemaFieldPropertiesInputRepresentation { + /** Field label */ + label?: string; + /** Field name */ + name?: string; + typeProperties: SchemaTypePropertiesCastInputRepresentation; + } + + /** + * Format for symbols + * + * https://developer.salesforce.com/docs/atlas.en-us.salesforce_recipes_api.meta/salesforce_recipes_api/sforce_recipes_api_requests_schema_field_format_symbols_input.htm + * + * Keys: + * (none) + */ + export interface SchemaFormatSymbolsInputRepresentation { + /** Currency symbol format */ + currencySymbol?: string; + /** Decimal symbol format */ + decimalSymbol?: string; + /** Grouping symbol format */ + groupingSymbol?: string; + } + + /** + * Schema Node in Recipes + * + * https://developer.salesforce.com/docs/atlas.en-us.salesforce_recipes_api.meta/salesforce_recipes_api/sforce_recipes_api_requests_schema_parameters_input.htm + * + * Keys: + * (none) + */ + export interface SchemaParametersInputRepresentation { + /** Schema Fields */ + fields: Array; + slice?: SchemaSliceInputRepresentation; + } + + /** + * Slice definition + * + * https://developer.salesforce.com/docs/atlas.en-us.salesforce_recipes_api.meta/salesforce_recipes_api/sforce_recipes_api_requests_schema_slice_input.htm + * + * Keys: + * (none) + */ + export interface SchemaSliceInputRepresentation { + /** Fields for SELECT or DROP */ + fields: Array; + /** Ignore missing fields */ + ignoreMissingFields?: boolean; + /** Slice mode SELECT or DROP */ + mode?: string; + } + + /** + * Cast for types + * + * https://developer.salesforce.com/docs/atlas.en-us.salesforce_recipes_api.meta/salesforce_recipes_api/sforce_recipes_api_requests_schema_field_type_properties_input.htm + * + * Keys: + * (none) + */ + export interface SchemaTypePropertiesCastInputRepresentation { + /** DateTime Format */ + format?: string; + /** Total length of text */ + length?: number; + /** Length of arbitrary precision value */ + precision?: number; + /** Number of digits to right of decimal point */ + scale?: number; + /** Number Format */ + symbols?: SchemaFormatSymbolsInputRepresentation; + /** DataType to Convert to */ + type?: string; + } + + /** + * Input representation for specifying a schedule on which to execute some type of job. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#ScheduleInputRepresentation + * + * Keys: + * (none) + */ + export interface ScheduleInputRepresentation { + /** Frequency on which this schedule is run. This is case-insensitive. */ + frequency: string; + /** Level of subscription for the related job. */ + notificationLevel?: string; + /** When the schedule should be run. */ + time?: { + [key: string]: any; + }; + } + + /** + * Schedule on which to execute some type of job + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_schedule.htm#ScheduleRepresentation + * + * Keys: + * id (string): assetId + */ + export interface ScheduleRepresentation { + /** The 18 character ID of the asset. */ + assetId: string; + frequency: string; + /** Next scheduled time (in UTC) for this schedule. */ + nextScheduledDate?: string; + /** Email notification level of dataflow associated with this schedule. */ + notificationLevel?: string; + /** Hour and timezone in which this schedule is run. */ + time?: TimeRepresentation; + } + + /** + * Input representation for getting source object data given a list of fields and advanced properties + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_source_object_data_input.htm + * + * Keys: + * (none) + */ + export interface SourceObjectDataInputRepresentation { + /** List of user-specified advanced properties associated with this object. */ + advancedProperties?: Array; + /** List of fields as a way to filter the fields returned in the response. */ + sourceObjectFields: Array; + } + + /** + * An Analytics template asset reference. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_responses_asset_reference.htm + * + * Keys: + * (none) + */ + export interface TemplateAssetReferenceRepresentation { + /** The 18 character ID of the asset. */ + id?: string; + /** The asset label. */ + label?: string; + /** The asset developer name. */ + name?: string; + /** The namespace that qualifies the asset name */ + namespace?: string; + /** The asset URL. */ + url?: string; + } + + /** + * Representation for individual validation task + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_responses_template_readiness_item.htm + * + * Keys: + * (none) + */ + export interface TemplateReadinessItemRepresentation { + /** The icon/image associated with the validation task. */ + image: TemplateAssetReferenceRepresentation | null; + /** The task specific label. */ + label: string | null; + /** The task specific message. */ + message: string | null; + /** The status for the readiness task */ + readinessStatus: string | null; + /** The collection of tags describing the purpose of the validation. */ + tags: Array; + /** The task specific type, associated with readiness check type. */ + type: string | null; + } + + /** + * Representation for a single Wave Template verification. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_responses_template_validate.htm + * + * Keys: + * id (string): id + */ + export interface TemplateValidateRepresentation { + /** The ID or fully qualified API name of this template. */ + id: string; + /** The individual validation tasks for this template */ + tasks: Array; + } + + /** + * Time at which something should happen + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#TimeRepresentation + * + * Keys: + * (none) + */ + export interface TimeRepresentation { + /** Hour at which this schedule is run (0-23). */ + hour: number; + /** Minute at which this schedule is run (0-59). */ + minute: number; + /** Time zone of the hour at which the schedule is run. */ + timeZone: TimeZoneRepresentation; + } + + /** + * Information about a time zone. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#TimeZoneRepresentation + * + * Keys: + * (none) + */ + export interface TimeZoneRepresentation { + /** The signed offset, in hours, from GMT. */ + gmtOffset: number; + /** The display name of this time zone. */ + name: string; + /** The zone ID of this time zone. */ + zoneId: string; + } + + /** + * Information about a file. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_responses_wave_file_metadata.htm + * + * Keys: + * (none) + */ + export interface WaveFileMetadataRepresentation { + createdBy?: WaveUserRepresentation; + /** created date */ + createdDate?: string; + /** The 18 character lens file ID. */ + id?: string; + /** last accessed date */ + lastAccessedDate?: string; + /** last modified date */ + lastModifiedDate?: string; + /** size of the lens file */ + length?: number; + /** name of lens file */ + name?: string; + /** url of file. */ + url?: string; + } + + /** + * Information about a user. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#WaveUserRepresentation + * + * Keys: + * (none) + */ + export interface WaveUserRepresentation { + /** The 18 character user ID. */ + id: string; + /** The name of the user. */ + name?: string; + /** The Chatter profile photo of the user. */ + profilePhotoUrl?: string | null; + } + + /** + * Weekly schedule on which to execute some type of job. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#WeeklyScheduleInputRepresentation + * + * Keys: + * (none) + */ + export interface WeeklyScheduleInputRepresentation extends ScheduleInputRepresentation { + frequency: 'weekly' | 'Weekly'; + /** Days of the week on which the schedule will run. */ + daysOfWeek: Array; + } + + /** + * Weekly schedule on which to execute some type of job. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#WeeklyScheduleRepresentation + * + * Keys: + * id (string): assetId + */ + export interface WeeklyScheduleRepresentation extends ScheduleRepresentation { + frequency: 'weekly' | 'Weekly'; + /** Days of the week on which the schedule will run. */ + daysOfWeek: Array; + } + + /** + * Base class for XMD Dimension and Derived Dimension Action. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_xmd_derived_dimension_salesforce_action_input.htm + * + * Keys: + * (none) + */ + export interface XmdBaseDimensionActionInputRepresentation { + /** Whether the Action is enabled. */ + enabled: boolean; + /** Name of the action. */ + name: string; + } + + /** + * Base class for Wave XMD Dimension and Dervied Dimension Custom Action input representation + * + * Keys: + * (none) + */ + export interface XmdBaseDimensionCustomActionInputRepresentation extends XmdBaseDimensionActionInputRepresentation { + /** icon for the action. */ + icon?: string; + /** method for the action. */ + method?: string; + /** target for the action. */ + target?: string; + /** tooltip for the action. */ + tooltip?: string; + /** Url for the action. */ + url?: string; + } + + /** + * Base class for Wave XMD Dimension and Derived Dimension input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_xmd_dimension_input.htm + * + * Keys: + * (none) + */ + export interface XmdBaseDimensionInputRepresentation { + /** Conditional formatting for a Dimension. */ + conditionalFormatting?: { + [key: string]: ConditionalFormattingPropertyInputRepresentation; + }; + /** Whether the Dimension has custom actions enabled. */ + customActionsEnabled?: boolean; + /** Date format to be used for a Date that is a dimension. */ + dateFormat?: string; + /** Default action for the dimension. */ + defaultAction?: string; + /** Description of the Dimension. */ + description?: string; + /** Field name of the Dimension (used in queries). */ + field: string; + /** Fully qualified name of the dimension. */ + fullyQualifiedName?: string; + /** Image template. */ + imageTemplate?: string; + /** Label for the Dimension. */ + label?: string; + /** Template for formatting a Link. */ + linkTemplate?: string; + /** Whether the Dimension has link templates enabled. */ + linkTemplateEnabled?: boolean; + /** Tooltip to be displayed for links. */ + linkTooltip?: string; + /** Origin of this dimension. */ + origin?: string; + /** Ordered list of Dimensions and Measures. Represents the default order to show them in the UI. */ + recordDisplayFields?: Array; + /** Record Id for this dimension. */ + recordIdField?: string; + /** Record Organization Id for this dimension. */ + recordOrganizationIdField?: string; + /** Whether the Dimension has salesforce actions enabled. */ + salesforceActionsEnabled?: boolean; + /** Whether the Dimension should be shown in the Explorer. */ + showInExplorer?: boolean; + } + + /** + * Base class for Wave XMD Dimension and Derived Dimension Member input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_xmd_derived_dimension_member_input.htm + * + * Keys: + * (none) + */ + export interface XmdBaseDimensionMemberInputRepresentation { + /** Color for the member. */ + color?: string; + /** Label for the member. */ + label?: string; + /** Member value. */ + member?: string; + } + + /** + * Base class for Wave XMD Measure and Derived Measure Format input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_xmd_derived_measure_format_input.htm + * + * Keys: + * (none) + */ + export interface XmdBaseMeasureFormatInputRepresentation { + /** displays the original xmd 1.1 format array as a String. */ + customFormat?: string; + /** Number of digits to be displayed after the decimal place. */ + decimalDigits?: number; + /** Thousands and decimal numeric separators for number formatting */ + delimiters?: NumericSeparatorsInputRepresentation; + /** displays negative numbers with parenthesis or not minus sign */ + negativeParentheses?: boolean; + /** Prefix to be placed before the field value. */ + prefix?: string; + /** Suffix to be placed after the field value. */ + suffix?: string; + /** Unit string for the measure. (eg. 'cm') */ + unit?: string; + /** Multiplier for the unit. */ + unitMultiplier?: number; + } + + /** + * Base class for Wave XMD Measure and Derived Measure input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_xmd_derived_measure_input.htm + * + * Keys: + * (none) + */ + export interface XmdBaseMeasureInputRepresentation { + /** Conditional formatting for a Measure. */ + conditionalFormatting?: { + [key: string]: ConditionalFormattingPropertyInputRepresentation; + }; + /** Date format to be used for a Date that is a measure. */ + dateFormat?: string; + /** Description of the Measure. */ + description?: string; + /** Field name of the Measure (used in queries). */ + field: string; + /** Fully qualified name of the Measure. */ + fullyQualifiedName?: string; + /** Label for the Measure. */ + label?: string; + /** Origin of the Measure. */ + origin?: string; + /** Whether the Measure should be shown in the Explorer. */ + showInExplorer?: boolean; + } + + /** + * Wave XMD Dataset input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_xmd_dataset_input.htm + * + * Keys: + * (none) + */ + export interface XmdDatasetInputRepresentation { + /** Connector source for the dataset. */ + connector?: string; + /** Description of the dataset. */ + description?: string; + /** Fully qualified name of the dataset version. */ + fullyQualifiedName?: string; + /** Origin representing where this dataset version comes from. */ + origin?: string; + } + + /** + * Extended metadata for the dataset + * + * Keys: + * (none) + */ + export interface XmdDatasetRepresentation { + /** Connector source for the dataset */ + connector?: string; + /** Description of the dataset. */ + description?: string; + /** Fully qualified name of the dataset version. */ + fullyQualifiedName?: string; + /** Origin representing where this dataset version comes from. */ + origin?: string; + } + + /** + * Wave XMD Date Fields input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_xmd_date_field_input.htm + * + * Keys: + * (none) + */ + export interface XmdDateFieldsInputRepresentation { + /** day field. */ + day?: string; + /** epochDay field. */ + epochDay?: string; + /** epochSecond field. */ + epochSecond?: string; + /** fiscalMonth field. */ + fiscalMonth?: string; + /** fiscalQuarter field. */ + fiscalQuarter?: string; + /** fiscalWeek field. */ + fiscalWeek?: string; + /** fiscalYear field. */ + fiscalYear?: string; + /** fullField field. */ + fullField?: string; + /** hour field. */ + hour?: string; + /** minute field. */ + minute?: string; + /** month field. */ + month?: string; + /** quarter field. */ + quarter?: string; + /** second field. */ + second?: string; + /** week field. */ + week?: string; + /** year field. */ + year?: string; + } + + /** + * Extended metadata for the formatting of a Date Field in a Dataset. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_responses_xmd_date_field.htm + * + * Keys: + * (none) + */ + export interface XmdDateFieldRepresentation { + /** day field. */ + day?: string; + /** epochDay field. */ + epochDay?: string; + /** epochSecond field. */ + epochSecond?: string; + /** fiscalMonth field. */ + fiscalMonth?: string; + /** fiscalQuarter field. */ + fiscalQuarter?: string; + /** fiscalWeek field. */ + fiscalWeek?: string; + /** fiscalYear field. */ + fiscalYear?: string; + /** fullField field. */ + fullField?: string; + /** hour field */ + hour?: string; + /** minute field */ + minute?: string; + /** month field. */ + month?: string; + /** quarter field. */ + quarter?: string; + /** second field */ + second?: string; + /** week field. */ + week?: string; + /** year field. */ + year?: string; + } + + /** + * Wave XMD Date input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_xmd_date_input.htm + * + * Keys: + * (none) + */ + export interface XmdDateInputRepresentation { + /** Alias of the Date column. */ + alias?: string; + /** Whether the Date should be displayed as compact. */ + compact?: boolean; + /** Description of the Date column. */ + description?: string; + /** Formatting information for the date fields. */ + fields?: XmdDateFieldsInputRepresentation; + /** What the first day of the week is. */ + firstDayOfWeek?: number; + /** Offset number of months for the fiscal year in relation to the calendar year. */ + fiscalMonthOffset?: number; + /** Fully qualified name of the date. */ + fullyQualifiedName?: string; + /** Whether the Year End is the Fiscal year. */ + isYearEndFiscalYear?: boolean; + /** Label of the Date column. */ + label?: string; + /** Whether the Date should be show in the explorer. */ + showInExplorer?: boolean; + } + + /** + * Extended metadata for a date + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_responses_xmd_date.htm + * + * Keys: + * (none) + */ + export interface XmdDateRepresentation { + /** Alias of the Date column. */ + alias?: string; + /** Whether or not the Date should be displayed as compact. */ + compact?: boolean; + /** Description of the Date column. */ + description?: string; + /** Formatting information for the date fields. */ + fields: XmdDateFieldRepresentation; + /** What the first day of the week is. */ + firstDayOfWeek?: number; + /** Offset number of months for the fiscal year in relation to the calendar year. */ + fiscalMonthOffset?: number; + /** Format of the date field. */ + format?: string; + /** Fully qualified name of the date. */ + fullyQualifiedName?: string; + /** If the DateTime type is from timezone auto conversion. */ + isConvertedDateTime?: boolean; + /** If the Year End is the Fiscal year. */ + isYearEndFiscalYear?: boolean; + /** Label of the Date column. */ + label?: string; + /** Whether or not the Date should be show in the explorer. */ + showInExplorer?: boolean; + /** Date type of the Date column. */ + type?: string; + } + + /** + * Wave XMD Derived Dimension input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_xmd_derived_dimension_input.htm + * + * Keys: + * (none) + */ + export interface XmdDerivedDimensionInputRepresentation extends XmdBaseDimensionInputRepresentation { + /** Custom Actions linked to this Derived Dimension. */ + customActions?: Array; + /** Whether the Derived Dimension is multi-value. */ + isMultiValue?: boolean; + /** Member overrides for a Derived Dimension. */ + members?: Array; + /** Salesfoce Actions linked to this Derived Dimension. */ + salesforceActions?: Array; + } + + /** + * Wave XMD Derived Dimension Member input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_xmd_derived_dimension_member_input.htm + * + * Keys: + * (none) + */ + // eslint-disable-next-line @typescript-eslint/no-empty-interface + export interface XmdDerivedDimensionMemberInputRepresentation extends XmdBaseDimensionMemberInputRepresentation {} + + /** + * Wave XMD Derived Dimension Salesforce Action input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_xmd_derived_dimension_salesforce_action_input.htm + * + * Keys: + * (none) + */ + // eslint-disable-next-line @typescript-eslint/no-empty-interface + export interface XmdDerivedDimensionSalesforceActionInputRepresentation extends XmdBaseDimensionActionInputRepresentation {} + + /** + * Wave XMD Derived Measure input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_xmd_derived_measure_input.htm + * + * Keys: + * (none) + */ + export interface XmdDerivedMeasureInputRepresentation extends XmdBaseMeasureInputRepresentation { + /** Format details for the Derived Measure. */ + format?: XmdBaseMeasureFormatInputRepresentation; + } + + /** + * Base Action Representation for a Dimension in an Xmd. + * + * Keys: + * (none) + */ + export interface XmdDimensionBaseActionRepresentation { + /** If Action is enabled for a specific dimension. */ + enabled: boolean; + /** Name of the action. */ + name: string; + } + + /** + * Custom Action Representation for a Dimension in an Xmd. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_responses_xmd_dimension_custom_action.htm + * + * Keys: + * (none) + */ + export interface XmdDimensionCustomActionRepresentation extends XmdDimensionBaseActionRepresentation { + /** icon for the action. */ + icon?: string; + /** method for the action. */ + method?: string; + /** target for the action. */ + target?: string; + /** tooltip for the action. */ + tooltip?: string; + /** Url for the action. */ + url: string; + } + + /** + * Wave XMD Dimension input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_xmd_dimension_input.htm + * + * Keys: + * (none) + */ + export interface XmdDimensionInputRepresentation extends XmdBaseDimensionInputRepresentation { + /** Custom Actions linked to this Dimension. */ + customActions?: Array; + /** Member overrides for a Dimension. */ + members?: Array; + /** Salesfoce Actions linked to this Dimension. */ + salesforceActions?: Array; + } + + /** + * Wave XMD Dimension Member input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_xmd_dimension_member_input.htm + * + * Keys: + * (none) + */ + // eslint-disable-next-line @typescript-eslint/no-empty-interface + export interface XmdDimensionMemberInputRepresentation extends XmdBaseDimensionMemberInputRepresentation {} + + /** + * Extended metadata a Member linked to a Dimension in a Dataset. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_responses_xmd_dimension_member.htm + * + * Keys: + * (none) + */ + export interface XmdDimensionMemberRepresentation { + /** Color for the member. */ + color?: string; + /** Label for the member. */ + label?: string; + /** Member value. */ + member: string; + } + + /** + * Extended metadata a Dimension in a Dataset. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_responses_xmd_dimension.htm + * + * Keys: + * (none) + */ + export interface XmdDimensionRepresentation { + /** Conditional formatting for a Dimension. */ + conditionalFormatting: { + [key: string]: unknown; + }; + /** Custom Actions linked to this Dimension. */ + customActions: Array; + /** Whether the Dimension has custom actions enabled. */ + customActionsEnabled?: boolean; + /** Date format to be used for a Date that is a dimension. */ + dateFormat?: string; + /** Default action for the dimension. */ + defaultAction?: string; + /** Description of the Dimension. */ + description?: string; + /** Field name of the Dimension (used in queries). */ + field: string; + /** Fully qualified name of the dimension. */ + fullyQualifiedName?: string; + /** Image template. */ + imageTemplate?: string; + /** Whether the Dimension is multi-value. */ + isMultiValue?: boolean; + /** Label for the Dimension. */ + label?: string; + /** Template for formatting a Link. */ + linkTemplate?: string; + /** Whether the Dimension has link templates enabled. */ + linkTemplateEnabled?: boolean; + /** Tooltip to be displayed for links. */ + linkTooltip?: string; + /** Member overrides for a Dimension. */ + members: Array; + /** Origin of this dimension. */ + origin?: string; + /** Ordered list of Dimensions and Measures. Represents the default order to show them in the UI. */ + recordDisplayFields: Array; + /** Record Id for this dimension. */ + recordIdField?: string; + /** Record Organization Id for this dimension. */ + recordOrganizationIdField?: string; + /** Salesfoce Actions linked to this Dimension. */ + salesforceActions: Array; + /** Whether the Dimension has salesforce actions enabled. */ + salesforceActionsEnabled?: boolean; + /** Whether the Dimension should be shown in the Explorer. */ + showInExplorer?: boolean; + } + + /** + * Wave XMD Dimension Salesforce Action input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_xmd_dimension_salesforce_action_input.htm + * + * Keys: + * (none) + */ + // eslint-disable-next-line @typescript-eslint/no-empty-interface + export interface XmdDimensionSalesforceActionInputRepresentation extends XmdBaseDimensionActionInputRepresentation {} + + /** + * Salesforce Action Representation for a Dimension in an Xmd. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_responses_xmd_dimension_salesforce_action.htm + * + * Keys: + * (none) + */ + // eslint-disable-next-line @typescript-eslint/no-empty-interface + export interface XmdDimensionSalesforceActionRepresentation extends XmdDimensionBaseActionRepresentation {} + + /** + * Extended Metadata (Xmd) for a Dataset Version + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_responses_xmd.htm + * + * Keys: + * (none) + */ + export interface XmdInnerRepresentation { + /** Represents the creator of this Xmd */ + createdBy: WaveUserRepresentation; + /** Time the Xmd was created */ + createdDate: string; + /** Locale specific information about the Dataset represented by this xmd. */ + dataset: XmdDatasetRepresentation; + /** List of dates with formatting information. */ + dates: Array; + /** List of derived dimensions with formatting information. */ + derivedDimensions: Array; + /** List of derived measures with formatting information. */ + derivedMeasures: Array; + /** List of dimensions with formatting information. */ + dimensions: Array; + /** Message if there was error copying forward the current version's user xmd to the newly created version. */ + errorMessage?: string; + /** The type of language this xmd is localized for */ + language: string; + /** Represents the user who last modified this Xmd */ + lastModifiedBy: WaveUserRepresentation; + /** Time the Xmd was last modified */ + lastModifiedDate: string; + /** List of measures with formatting information. */ + measures: Array; + /** List of organizations for multi organization support. */ + organizations: Array; + /** Ordered list of Dimensions and Measures. Represents the default order to show them in the UI. */ + showDetailsDefaultFields: Array; + /** The type of Xmd (Main, User, System) */ + type: string; + /** Location where this XMD is stored. */ + url?: string; + } + + /** + * Wave XMD input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_xmd_input.htm + * + * Keys: + * (none) + */ + export interface XmdInputRepresentation { + /** Locale specific information about the Dataset represented by this xmd. */ + dataset?: XmdDatasetInputRepresentation; + /** List of dates with formatting information. */ + dates?: Array; + /** List of derived dimensions with formatting information. */ + derivedDimensions?: Array; + /** List of derived measures with formatting information. */ + derivedMeasures?: Array; + /** List of dimensions with formatting information. */ + dimensions?: Array; + /** List of measures with formatting information. */ + measures?: Array; + /** List of organizations for multi organization support. */ + organizations?: Array; + /** Ordered list of Dimensions and Measures. Represents the default order to show them in the UI. */ + showDetailsDefaultFields?: Array; + } + + /** + * Format for a Measure in a Dataset. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_responses_xmd_measure_format.htm + * + * Keys: + * (none) + */ + export interface XmdMeasureFormatRepresentation { + /** displays the original xmd 1.1 format array as a String. */ + customFormat?: string; + /** Number of digits to be displayed after the decimal place. */ + decimalDigits?: number; + /** Thousands and decimal numeric separators. */ + delimiters?: NumericSeparatorsRepresentation; + /** displays negative numbers with parenthesis or not minus sign */ + negativeParentheses?: boolean; + /** Prefix to be placed before the field value. */ + prefix?: string; + /** Suffix to be places after the field value. */ + suffix?: string; + /** Unit string for the measure. (eg. 'cm') */ + unit?: string; + /** Multiplier for the unit. */ + unitMultiplier?: number; + } + + /** + * Wave XMD Measure input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_xmd_measure_input.htm + * + * Keys: + * (none) + */ + export interface XmdMeasureInputRepresentation extends XmdBaseMeasureInputRepresentation { + /** Format details for the Measure. */ + format?: XmdBaseMeasureFormatInputRepresentation; + } + + /** + * Extended metadata for a Measure in a Dataset. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_responses_xmd_measure.htm + * + * Keys: + * (none) + */ + export interface XmdMeasureRepresentation { + /** Conditional formatting for a Measure. */ + conditionalFormatting: { + [key: string]: unknown; + }; + /** Date format to be used for a Date that is a measure. */ + dateFormat?: string; + /** Description of the Measure. */ + description?: string; + /** Field name of the Measure (used in queries). */ + field: string; + /** Format details for the Measure. */ + format?: XmdMeasureFormatRepresentation; + /** Fully qualified name of the Measure. */ + fullyQualifiedName?: string; + /** Label for the Measure. */ + label?: string; + /** Origin of this measure. */ + origin?: string; + /** Whether the Measure should be shown in the Explorer. */ + showInExplorer?: boolean; + } + + /** + * Wave XMD Organization input representation + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_requests_xmd_organization_input.htm + * + * Keys: + * (none) + */ + export interface XmdOrganizationInputRepresentation { + /** ID of the organization. */ + id?: string; + /** Instance Url for the organization. */ + instanceUrl?: string; + /** Label for the organization. */ + label?: string; + } + + /** + * Extended metadata for an organization + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_responses_xmd_organization.htm + * + * Keys: + * (none) + */ + export interface XmdOrganizationRepresentation { + /** id of the organization */ + id: string; + /** Instance Url for an organization. */ + instanceUrl: string; + /** Label for an organization. */ + label: string; + } + + /** + * Extended Metadata (Xmd) for a Dataset Version + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_responses_xmd.htm + * + * Keys: + * url (string): url + */ + export interface XmdRepresentation { + /** Represents the creator of this Xmd */ + createdBy: WaveUserRepresentation; + /** Time the Xmd was created */ + createdDate: string; + /** Locale specific information about the Dataset represented by this xmd. */ + dataset: XmdDatasetRepresentation; + /** List of dates with formatting information. */ + dates: Array; + /** List of derived dimensions with formatting information. */ + derivedDimensions: Array; + /** List of derived measures with formatting information. */ + derivedMeasures: Array; + /** List of dimensions with formatting information. */ + dimensions: Array; + /** Message if there was error copying forward the current version's user xmd to the newly created version. */ + errorMessage?: string; + /** The type of language this xmd is localized for */ + language: string; + /** Represents the user who last modified this Xmd */ + lastModifiedBy: WaveUserRepresentation; + /** Time the Xmd was last modified */ + lastModifiedDate: string; + /** List of measures with formatting information. */ + measures: Array; + /** List of organizations for multi organization support. */ + organizations: Array; + /** Ordered list of Dimensions and Measures. Represents the default order to show them in the UI. */ + showDetailsDefaultFields: Array; + /** The type of Xmd (Main, User, System) */ + type: string; + /** Location where this XMD is stored. */ + url: string; + } + + /** + * Creates a Tableau CRM connector. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_analytics_create_data_connector + * + * @param dataConnector.connectionProperties Connection properties for the connector. + * @param dataConnector.connectorHandler Third party driver used for connection. + * @param dataConnector.connectorType The type of the Data Connector. + * @param dataConnector.folder Folder for the Live connector. + * @param dataConnector.targetConnector AssetReference containing ID or API name of target connector associated with the current source connector. + * @return A promise that will resolve to the data connector response. + */ + export function createDataConnector({ dataConnector }: { dataConnector: DataConnectorInputRepresentation }): Promise; + + /** + * Creates a Tableau CRM dataflow job, which is the equivalent of clicking Run Now for a data prep recipe, a data sync, + * or a dataflow in the Tableau CRM Data Manager UI. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_analytics_create_dataflow_job + * + * @param dataflowJob.dataflowId The dataflow, data prep recipe, or data sync ID for the job. + * @param dataflowJob.command The job command to execute. Must be `Start` to create a dataflow job. + * @return A promise that will resolve to the dataflow job response. + */ + export function createDataflowJob({ dataflowJob }: { dataflowJob: DataflowJobInputRepresentation }): Promise; + + /** Creates a CRM Analytics dataset. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_analytics_create_dataset + * + * @param dataset The dataset to create. + * @return A promise that will resolve to the dataset response. + */ + export function createDataset({ dataset }: { dataset: DatasetInputRepresentation }): Promise; + + /** Creates a version of a CRM Analytics dataset. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_analytics_create_dataset_version + * + * @param datasetIdOrApiName The ID or developer name of the dataset. + * @param sourceVersion The Source Version to which restore should happen. + * @return A promise that will resolve to the dataset version response. + */ + export function createDatasetVersion({ + datasetIdOrApiName, + sourceVersion, + }: { + datasetIdOrApiName: string; + sourceVersion: RestoreDatasetVersionInputRepresentation; + }): Promise; + + /** + * Creates a Tableau CRM replicated dataset + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_analytics_create_replicated_dataset + * + * @param replicatedDataset.advancedProperties List of user-specified advanced properties associated with this. + * @param replicatedDataset.connectionMode Connection mode for pulling the data from the replicated dataset. + * @param replicatedDataset.connectorId The id of the connector object used to replicate. + * @param replicatedDataset.fullRefresh Whether to perform a one-time full refresh (during the next run) as opposed to incremental. + * @param replicatedDataset.passThroughFilter Passthrough filter for the replicated object. + * @param replicatedDataset.rowLevelSharing Inherit row level sharing rules for this object. + * @param replicatedDataset.sourceObjectName The name of the source object to be replicated. + * @return A promise that will resolve to the replicated dataset response. + */ + export function createReplicatedDataset({ + replicatedDataset, + }: { + replicatedDataset: ReplicatedDatasetInputRepresentation; + }): Promise; + + /** Deletes a specific CRM Analytics data connector by ID or developer name. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_analytics_delete_data_connector + * + * @param connectorIdOrApiName The ID or developer name of the connector. + * @return A promise that will resolve on completion. + */ + export function deleteDataConnector({ connectorIdOrApiName }: { connectorIdOrApiName: string }): Promise; + + /** + * Deletes a specific Tableau CRM dataset by ID or developer name. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_analytics_delete_dataset + * + * @param datasetIdOrApiName The ID or developer name of the dataset. + * @return A promise that will resolve on completion. + */ + export function deleteDataset({ datasetIdOrApiName }: { datasetIdOrApiName: string }): Promise; + + /** + * Deletes a specific Tableau CRM data prep recipe by ID. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_analytics_delete_recipe + * + * @param id The ID of the data prep recipe. + * @return A promise that will resolve on completion. + */ + export function deleteRecipe({ id }: { id: string }): Promise; + + /** + * Deletes a specific Tableau CRM replicated dataset by ID. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_analytics_delete_replicated_dataset + * + * @param id The ID of the replicated dataset. + * @return A promise that will resolve on completion. + */ + export function deleteReplicatedDataset({ id }: { id: string }): Promise; + + /** + * Wire adapter to execute a Tableau CRM query. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_analytics_execute_query + * + * @param query.query The query string to execute. + * @param query.queryLanguage The query language. Valid values are `SAQL` or `SQL`. The default is `SAQL`. + * @param query.timezone The timezone for the query. + */ + export function executeQuery(query: SaqlQueryInputRepresentation): void; + + /** Wire adapter to retrieve a collection of Salesforce actions available to a CRM Analytics user. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_wire_adapters_get_actions + * + * @param entityId The ID of the CRM Analytics user. + */ + export function getActions(entityId: string): void; + + /** + * Wire adapter to retrieve the Analytics limits for Tableau CRM. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_analytics_limits + * + * @param licenseType The Tableau CRM license types. Valid values are `EinsteinAnalytics` or `Sonic`. + * @param types The types of limits used in Tableau CRM. + * Valid values are `BatchTransformationHours`, `DatasetQueries`, `DatasetRowCount`, + * `MaxDailyRowsHighOutputCon`, `MaxDailyRowsLowOutputCon`, `MaxDailyRowsMedOutputCon`, + * `MaxDailySizeHighOutputCon`, `MaxDailySizeLowOutputCon`, `MaxDailySizeMedOutputCon`, + * or `OutputLocalConnectorVolume`. + */ + export function getAnalyticsLimits(licenseType?: string, types?: string[]): void; + + /** + * Wire adapter to retrieve the Connector for Tableau CRM. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_data_connector + * + * @param connectorIdOrApiName The ID of the connector. + */ + export function getDataConnector(connectorIdOrApiName: string): void; + + /** + * Wire adapter to retrieve the collection of Connectors for Tableau CRM. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_data_connectors + * + * @param category The categories that the data connector belongs to. Valid values are: + * AdvancedPropertiesSupport, BatchRead, Direct, FileBased, FilterSupport, MuleSoft, Output + * @param connectorType The type of Tableau CRM connector. + * @param scope The type of scope to be applied to the returned collection. Valid values are: + * Created​By​Me, Mru (Most Recently Used), Shared​With​Me + */ + export function getDataConnectors(category?: string, connectorType?: string, scope?: string): void; + + /** + * Wire adapter to retrieve the collection of source fields for a particular source object. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_data_connector_source_fields + * + * @param connectorIdOrApiName The ID of the connector. + * @param sourceObjectName The name of the source object. + */ + export function getDataConnectorSourceFields(connectorIdOrApiName: string, sourceObjectName: string): void; + + /** + * Wire adapter to retrieve a source object resource for a Tableau CRM connector. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_data_connector_source_object + * + * @param connectorIdOrApiName The ID of the connector. + * @param sourceObjectName The name of the source object. + */ + export function getDataConnectorSourceObject(connectorIdOrApiName: string, sourceObjectName: string): void; + + /** + * Wire adapter to retrieve a preview collection of source fields for a source object used by a CRM Analytics data connector. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_wire_adapters_get_data_connector_source_object_data_preview_with_fields + * + * @param connectorIdOrApiName The ID of the connector. + * @param sourceObjectName The name of the source object. + * @param sourceObjectParam The fields of the source object. + */ + export function getDataConnectorSourceObjectDataPreviewWithFields( + connectorIdOrApiName: string, + sourceObjectName: string, + sourceObjectParam: SourceObjectDataInputRepresentation, + ): void; + + /** + * Wire adapter to retrieve a source object resource for a Tableau CRM connector. + * + * https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_dataconnectors_connectorid_sourceobjects.htm + * + * @param connectorIdOrApiName The ID of the connector. + * @param q Search terms. Individual terms are separated by spaces. A wildcard is automatically appended to the last token in the query string. + * If the user’s search query contains quotation marks or wildcards, those symbols are automatically removed from the query string in + * the URI along with any other special characters. + * @param page Generated token that indicates the view of dataflow jobs to be returned. + * @param pageSize Number of items to be returned in a single page. Minimum is 1, maximum is 200, and the default is 25. + */ + export function getDataConnectorSourceObjects(connectorIdOrApiName: string, q?: string, page?: string, pageSize?: number): void; + + /** + * Wire adapter to test the status of an external Tableau CRM connector. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_data_connector_status + * + * @param connectorIdOrApiName The ID of the connector. + */ + export function getDataConnectorStatus(connectorIdOrApiName: string): void; + + /** + * Wire adapter to retrieve a collection of Tableau CRM connector types. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_data_connector_types + */ + export function getDataConnectorTypes(): void; + + /** + * Wire adapter to retrieve a specific Tableau CRM dataflow job. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_dataflow_job + * + * @param dataflowjobId The ID of the dataflow job. + */ + export function getDataflowJob(dataflowjobId: string): void; + + /** + * Wire adapter to retrieve a specific Tableau CRM dataflow job node for a recipe or dataflow. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_dataflow_job_node + * + * @param dataflowjobId The ID of the dataflow job. + * @param nodeId The ID of the node. + */ + export function getDataflowJobNode(dataflowjobId: string, nodeId: string): void; + + /** + * Wire adapter to retrieve a collection of Tableau CRM dataflow job nodes. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_dataflow_job_nodes + * + * @param dataflowjobId The ID of the dataflow job. + */ + export function getDataflowJobNodes(dataflowjobId: string): void; + + /** + * Wire adapter to retrieve a collection of Tableau CRM dataflow jobs. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_dataflow_jobs + * + * @param dataflowId Filters the collection to only contain dataflow jobs tied to this specific dataflow. The ID must start with '02K'. + * @param licenseType The response includes dataflow jobs with this license type. Valid values are `EinsteinAnalytics` or `Sonic`. + * @param page Generated token that indicates the view of dataflow jobs to be returned. + * @param pageSize Number of items to be returned in a single page. Minimum is 1, maximum is 200, and the default is 25. + * @param q Search terms. Individual terms are separated by spaces. A wildcard is automatically appended to the last token in the query string. + * If the user’s search query contains quotation marks or wildcards, those symbols are automatically removed from the query string in + * the URI along with any other special characters. + * @param status Filters the collection to only contain dataflow jobs with a specific runtime status. + * Valid values are `Failure`, `Queued`, `Running`, `Success`, or `Warning`. + */ + export function getDataflowJobs(dataflowId?: string, licenseType?: string, page?: string, pageSize?: number, q?: string, status?: string): void; + + /** + * Wire adapter to retrieve a collection of Tableau CRM dataflows. + * + * @param q Search terms. Individual terms are separated by spaces. A wildcard is automatically appended to the last token in the query string. + * If the user’s search query contains quotation marks or wildcards, those symbols are automatically removed from the query string in + * the URI along with any other special characters. + */ + export function getDataflows(q?: string): void; + + /** + * Wire adapter to retrieve a specific Tableau CRM dataset by ID or developer name. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_dataset + * + * @param datasetIdOrApiName The ID or developer name of the dataset. + */ + export function getDataset(datasetIdOrApiName: string): void; + + /** Wire adapter to retrieve a collection of Tableau CRM datasets. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_datasets + * + * @param datasetTypes Filters the collection to include only datasets of one or more of the specified types. + * Valid values are `Default`, `Live`, or `Trended`. + * @param folderId Filters the collection to only contain datasets for the specified folder. The ID can be the requesting user's ID for + * datasets in the user's private folder. + * @param hasCurrentOnly Filters the collection of datasets to include only those datasets that have a current version. The default is `false`. + * @param ids Filter the collection to include only datasets with the specified IDs. + * @param includeCurrentVersion Specifies if the response should include the current version metadata. The default is `false`. + * @param licenseType The response includes dataflow jobs with this license type. Valid values are `EinsteinAnalytics` or `Sonic`. + * @param order Ordering to apply to the collection results. Valid values are `Ascending` or `Descending`. + * @param page Generated token that indicates the view of datasets to be returned. + * @param pageSize Number of items to be returned in a single page. Minimum is 1, maximum is 200, and the default is 25. + * @param q Search terms. Individual terms are separated by spaces. A wildcard is automatically appended to the last token in the query string. + * If the user’s search query contains quotation marks or wildcards, those symbols are automatically removed from the query string in + * the URI along with any other special characters. + * @param scope Scope type to apply to the collection results. + * Valid values are `CreatedByMe`, `Favorites`, `IncludeAllPrivate`, `Mru` (Most Recently Used), or `SharedWithMe`. + * @param sort Sort order to apply to the collection results. + * Valid values are `CreatedBy`, `CreatedDate`, `LastModified`, `LastQueried`, `LastRefreshed`, + * `Mru` (Most Recently Used, last viewed date), `Name`, or `TotalRows`. + */ + export function getDatasets( + datasetTypes?: string, + folderId?: string, + hasCurrentOnly?: boolean, + ids?: string[], + includeCurrentVersion?: boolean, + licenseType?: string, + order?: string, + page?: string, + pageSize?: number, + q?: string, + scope?: string, + sort?: string, + ): void; + + /** + * Wire adapter to retrieve a specific CRM Analytics dataset version by dataset ID or developer name and version ID. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_wire_adapters_get_dataset_version + * + * @param datasetIdOrApiName The ID or developer name of the dataset. + * @param versionId The ID of the dataset version. + */ + export function getDatasetVersion(datasetIdOrApiName: string, versionId: string): void; + + /** + * Wire adapter to retrieve a list of CRM Analytics dataset versions for a specific dataset. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_wire_adapters_get_dataset_versions + * + * @param datasetIdOrApiName The ID or developer name of the dataset. + */ + export function getDatasetVersions(datasetIdOrApiName: string): void; + + /** Wire adapter to retrieve the dependencies for an asset. + * The dependencies resource returns only assets for which the user has view access. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_wire_adapters_get_dependencies + * + * @param assetId The ID of the CRM Analytics asset. + */ + export function getDependencies(assetId: string): void; + + /** + * Wire adapter to retrieve a specific Tableau CRM data prep recipe by ID. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_recipe + * + * @param id The ID of the recipe. + * @param format Specifies the format of the returned recipe. Valid values are `R2 or `R3`. The default is `R3`. + */ + export function getRecipe(id: string, format?: string): void; + + /** + * Wire adapter to retrieve a Data Prep recipe job notification. + * + * https://developer.salesforce.com/docs/atlas.en-us.salesforce_recipes_api.meta/salesforce_recipes_api/sforce_recipes_api_resources_recipes_id_notification.htm + * + * @param id The ID of the recipe. + */ + export function getRecipeNotification(id: string): void; + + /** + * Wire adapter to retrieve a collection of Tableau CRM data prep recipes. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_recipes + * + * @param format Filters the collection to include only recipes of the specified format. Valid values are `R2` or `R3`. + * @param licenseType The response includes dataflow jobs with this license type. Valid values are `EinsteinAnalytics` or `Sonic`. + * @param page Generated token that indicates the view of recipes to be returned. + * @param pageSize Number of items to be returned in a single page. Minimum is 1, maximum is 200, and the default is 25. + * @param q Search terms. Individual terms are separated by spaces. A wildcard is automatically appended to the last token in the query string. + * If the user’s search query contains quotation marks or wildcards, those symbols are automatically removed from the query string in + * the URI along with any other special characters. + * @param sort Sort order to apply to the collection results. + * Valid values are `LastModified`, `LastModifiedBy`, `Mru` (Most Recently Used, last viewed date), or `Name`. + */ + export function getRecipes(format?: string, licenseType?: string, page?: string, pageSize?: number, q?: string, sort?: string): void; + + /** + * Wire adapter to retrieve a specific Tableau CRM replicated dataset by ID. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_replicated_dataset + * + * @param id The ID of the replicated dataset. + */ + export function getReplicatedDataset(id: string): void; + + /** + * Wire adapter to retrieve a collection of Tableau CRM replicated datasets, also known as connected objects. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_replicated_datasets + * + * @param category Filters the collection to include only connected objects of the specified category. Valid values are `Input` or `Output`. + * @param connector Filters the collection to include only connected objects belonging to the specified Tableau CRM connector. + * @param sourceObject Filters the collection to include only connected objects belonging to the specified source object. + */ + export function getReplicatedDatasets(category?: string, connector?: string, sourceObject?: string): void; + + /** + * Wire adapter to retrieve a list of fields for the specified connected object. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_replicated_fields + * + * @param id The ID of the replicated dataset. + */ + export function getReplicatedFields(id: string): void; + + /** + * Wire adapter to retrieve a schedule for a Tableau CRM recipe, dataflow, or data sync. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_schedule + * + * @param assetId The ID of the dataflow, recipe, or data sync. + */ + export function getSchedule(assetId: string): void; + + /** Wire adapter to retrieve the security coverage, also known as sharing inheritance, for a particular dataset version. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_wire_adapters_get_security_coverage_dataset_version + * + * @param datasetIdOrApiName The ID or developer name of the dataset. + * @param versionId The ID of the dataset version. + */ + export function getSecurityCoverageDatasetVersion(datasetIdOrApiName: string, versionId: string): void; + + /** + * Wire adapter to retrieve a collection of Tableau CRM apps or folders. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_wave_folders + * + * @param isPinned Filters the collection to include only folders which are pinned (`true`) or not (`false`). The default is `false`. + * @param mobileOnlyFeaturedAssets Filters the collection to only contain folders which contain dashboards that are enabled for the + * Tableau CRM mobile app. The default is `false`. + * @param page Generated token that indicates the view of folders to be returned. + * @param pageSize Number of items to be returned in a single page. Minimum is 1, maximum is 200, and the default is 25. + * @param q Search terms. Individual terms are separated by spaces. A wildcard is automatically appended to the last token in the query string. + * If the user’s search query contains quotation marks or wildcards, those symbols are automatically removed from the query string in + * the URI along with any other special characters. + * @param scope Scope type to apply to the collection results. + * Valid values are `CreatedByMe`, `Favorites`, `IncludeAllPrivate`, `Mru` (Most Recently Used), or `SharedWithMe`. + * @param sort Sort order to apply to the collection results. + * Valid values are `LastModified`, `LastModifiedBy`, `Mru` (Most Recently Used, last viewed date), or `Name`. + * @param templateSourceId Filters the collection to include only folders that are created from a specific template source + */ + export function getWaveFolders( + isPinned?: boolean, + mobileOnlyFeaturedAssets?: boolean, + page?: string, + pageSize?: number, + q?: string, + scope?: string, + sort?: string, + templateSourceId?: string, + ): void; + + /** + * Wire adapter to retrieve a CRM Analytics template. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_wire_adapters_get_wave_template + * + * @param templateIdOrApiName The ID or developer name of the template. + * @param options Template visibility options to apply to the collection results. + * Valid values are `CreateApp`, `ManageableOnly`, or `ViewOnly`. + */ + export function getWaveTemplate(templateIdOrApiName: string, options?: string): void; + + /** + * Wire adapter to retrieve the configuration for a CRM Analytics template. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_wire_adapters_get_wave_template_config + * + * @param templateIdOrApiName The ID or developer name of the template. + * @param disableApex Indicates whether Apex integration hooks are disabled (true) or not (false). + * @param options Template visibility options to apply to the collection results. + * Valid values are `CreateApp`, `ManageableOnly`, or `ViewOnly`. + */ + export function getWaveTemplateConfig(templateIdOrApiName: string, disableApex?: boolean, options?: string): void; + + /** + * Wire adapter to retrieve the release notes for a CRM Analytics template. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_wire_adapters_get_wave_template_release_notes + * + * @param templateIdOrApiName The ID or developer name of the template. + */ + export function getWaveTemplateReleaseNotes(templateIdOrApiName: string): void; + + /** + * Wire adapter to retrieve a collection of CRM Analytics templates. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_wire_adapters_get_wave_templates + * + * @param options Template visibility options to apply to the collection results. + * Valid values are `CreateApp`, `ManageableOnly`, or `ViewOnly`. + * @param type Template type to apply to the collection results. + * Valid values are `App`, `Dashboard`, `Data`, `Embedded`, or `Lens`. + */ + export function getWaveTemplates(options?: string, type?: string): void; + + /** + * Wire adapter to retrieve a specific Tableau CRM extended metadata type (Xmd) for a version of a dataset. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_wire_adapters_get_xmd + * + * @param datasetIdOrApiName The ID or developer name of the dataset. + * @param versionId The ID of the dataset version. + * @param xmdType The xmd type. Valid values are `Asset`, `Main`, `System`, or `User`. + */ + export function getXmd(datasetIdOrApiName: string, versionId: string, xmdType: string): void; + + /** + * Wire adapter to trigger the Tableau CRM connector to run a data sync. This API is the equivalent of the “Run Now” UI feature. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_analytics_ingest_data_connector + * + * @param connectorIdOrApiName The ID or developer name of the dataset. + * @return A promise that will resolve to the ingest data connector response. + */ + export function ingestDataConnector({ connectorIdOrApiName }: { connectorIdOrApiName: string }): Promise; + + /** + * Wire adapter to updates Tableau CRM connectors. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_analytics_update_data_connector + * + * @param connectorIdOrApiName The ID or developer name of the dataset. + * @param dataConnector.connectionProperties Connection properties for the connector. + * @param dataConnector.connectorHandler Third party driver used for connection. + * @param dataConnector.connectorType The type of the Data Connector. + * @param dataConnector.folder Folder for the Live connector. + * @param dataConnector.targetConnector AssetReference containing ID or API name of target connector associated with the current source connector. + * @return A promise that will resolve to the data connector response. + */ + export function updateDataConnector({ + connectorIdOrApiName, + dataConnector, + }: { + connectorIdOrApiName: string; + dataConnector: DataConnectorInputRepresentation; + }): Promise; + + /** + * Updates a Tableau CRM dataflow job, which is the equivalent of clicking Stop for a data prep recipe, a data sync, or a dataflow in the Tableau CRM Data Manager UI. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_analytics_update_dataflow_job + * + * @param dataflowJobId The dataflow job ID. + * @param dataflowJob.command The job command to execute. Must be `stop` to update a dataflow job. + * @return A promise that will resolve to the dataflow job response. + */ + export function updateDataflowJob({ + dataflowJobId, + dataflowJob, + }: { + dataflowJobId: string; + dataflowJob: DataflowJobInputRepresentation; + }): Promise; + + /** + * Updates a specific CRM Analytics dataset by ID. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_analytics_update_dataset + * + * @param datasetIdOrApiName The ID or API name of the dataset. + * @param dataset The dataset to update. + * @return A promise that will resolve to the dataset response. + */ + export function updateDataset({ + datasetIdOrApiName, + dataset, + }: { + datasetIdOrApiName: string; + dataset: DatasetInputRepresentation; + }): Promise; + + /** + * Updates a specific CRM Analytics dataset version by dataset ID and version ID. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_analytics_update_dataset_version + * + * @param datasetIdOrApiName The ID or API name of the dataset. + * @param versionId The ID of the dataset version. + * @param datasetVersion The dataset version to update. + * @return A promise that will resolve to the dataset version response. + */ + export function updateDatasetVersion({ + datasetIdOrApiName, + versionId, + datasetVersion, + }: { + datasetIdOrApiName: string; + versionId: string; + datasetVersion: DatasetVersionInputRepresentation; + }): Promise; + + /** + * Updates a specific CRM Analytics recipe by ID. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_analytics_update_recipe + * + * @param id The ID of the recipe. + * @param enableEditorValidation Indicates whether editor validation for the recipe is enabled (true) or not ( false). + * @param validationContext The recipe validation context. Valid values are `Default` or `Editor`. + * @param recipeObject The recipe to update. + * @return A promise that will resolce to the recipe response. + */ + export function updateRecipe({ + id, + enableEditorValidation, + validationContext, + recipeObject, + }: { + id: string; + enableEditorValidation?: boolean; + validationContext?: string; + recipeObject: RecipeInputRepresentation; + }): Promise; + + /** + * Updates a Data Prep recipe job notification. + * + * https://developer.salesforce.com/docs/atlas.en-us.salesforce_recipes_api.meta/salesforce_recipes_api/sforce_recipes_api_resources_recipes_id_notification.htm + * + * @param id The ID of the recipe. + * @param recipeNotification The recipe notification to update. + * @return A promise that will resolve to the recipe notification response. + */ + export function updateRecipeNotification({ + id, + recipeNotification, + }: { + id: string; + recipeNotification: RecipeNotificationInputRepresentation; + }): Promise; + + /** + * Wire adapter to update the Tableau CRM replicated dataset. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_analytics_update_replicated_dataset + * + * @param id The ID of the replicated dataset. + * @param replicatedDataset.advancedProperties List of user-specified advanced properties associated with this. + * @param replicatedDataset.connectionMode Connection mode for pulling the data from the replicated dataset. + * @param replicatedDataset.connectorId The id of the connector object used to replicate. + * @param replicatedDataset.fullRefresh Whether to perform a one-time full refresh (during the next run) as opposed to incremental. + * @param replicatedDataset.passThroughFilter Passthrough filter for the replicated object. + * @param replicatedDataset.rowLevelSharing Inherit row level sharing rules for this object. + * @param replicatedDataset.sourceObjectName The name of the source object to be replicated. + * @return A promise that will resolve to the replicated dataset response. + */ + export function updateReplicatedDataset({ + id, + replicatedDataset, + }: { + id: string; + replicatedDataset: ReplicatedDatasetInputRepresentation; + }): Promise; + + /** + * Wire adapter to update the Tableau CRM replicated fields. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_analytics_update_replicated_dataset_fields + * + * @param id The ID of the replicated dataset. + * @param replicatedFields.fields A list of configuration metadata that specifies how to replicate each field of a Replicated Dataset. + * @return A promise that will resolve to the replicated fields response. + */ + export function updateReplicatedFields({ + id, + replicatedFields, + }: { + id: string; + replicatedFields: ReplicatedFieldCollectionInputRepresentation; + }): Promise; + + /** + * Updates the schedule for a Tableau CRM data prep recipe, data sync, or dataflow. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_analytics_update_schedule + * + * @param assetId The ID of the dataflow, recipe, or data sync. + * @param schedule The schedule to create or update for the dataflow, recipe, or data sync. Use a + * {@link https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_rest.meta/bi_dev_guide_rest/bi_resources_appendix.htm#ScheduleInputRepresentation|ScheduleInputRepresentation}. + * Schedules are hourly, daily, weekly, monthly (relative), monthly (specific), and event based. + * @return A promise that will resolve to the schedule response. + */ + export function updateSchedule({ + assetId, + schedule, + }: { + assetId: string; + schedule: ScheduleInputRepresentation; + }): Promise< + | DailyScheduleRepresentation + | EmptyScheduleRepresentation + | EventDrivenScheduleRepresentation + | HourlyScheduleRepresentation + | MinutelyScheduleRepresentation + | MonthlyRelativeScheduleRepresentation + | MonthlySpecificScheduleRepresentation + | WeeklyScheduleRepresentation + >; + + /** + * Updates a specific CRM Analytics user Xmd by dataset ID. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.reference_analytics_update_xmd + * + * @param datasetIdOrApiName The ID or developer name of the dataset. + * @param versionId The ID of the dataset version. + * @param xmdType The xmd type. Valid values are `Asset`, `Main`, `System`, or `User`. + * @param xmd + */ + export function updateXmd({ + datasetIdOrApiName, + versionId, + xmdType, + xmd, + }: { + datasetIdOrApiName: string; + versionId: string; + xmdType: string; + xmd: XmdInputRepresentation; + }): Promise; + + /** + * Validates an Analytics template for org readiness. + * + * https://developer.salesforce.com/docs/component-library/documentation/en/lwc/reference_analytics_validate_wave_template + * + * @param templateIdOrApiName The ID of template to retrieve the validation value for. + * @param templateValidateParam The input to validate an Analytics template. + * @param templateValidateParam.values A map of runtime template values to use during validation. These values override any default values. + */ + export function validateWaveTemplate({ + templateIdOrApiName, + templateValidateParam, + }: { + templateIdOrApiName: string; + templateValidateParam: { values?: { [key: string]: unknown } }; + }): Promise; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/messageservice.d.ts b/proxy-lite-work/.sfdx/typings/lwc/messageservice.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..79849c5c4e75d9ac9b081f94ff8a146694057e6d --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/messageservice.d.ts @@ -0,0 +1,58 @@ +declare module 'lightning/messageService' { + /** + * Send a message to listeners subscribed to the channel. + * + * @param {Object} messageContext - The MessageContext object. + * @param {Object} messageChannel - MessageChannel object. + * @param {Object} [message] - Optional, serializable object to be sent to subscribers. + * @param {Object} [publisherOptions] - Optional, options to influence message delivery. + */ + export function publish(messageContext: Object, messageChannel: Object, message?: Object, publisherOptions?: Object): void; + /** + * Subscribes a listener function to be invoked when a message is published on the provided channel. + * + * @param {Object} messageContext - The MessageContext object. + * @param {Object} messageChannel - MessageChannel object. + * @param {Function} listener - Function to be invoked when messages are published on the channel. + * @param {Object} [subscriberOptions] - Optional, options to influence message channel subscription. + * Current subscriber options: + * 1. 'scope' - the scope that a component is subscribed to. + * Setting this to 'APPLICATION_SCOPE' subscribes in the application + * scope. See the 'APPLICATION_SCOPE' export for full documentation. + * @return {Object} - Subscription object used to unsubscribe the listener, if no longer interested. + */ + export function subscribe(messageContext: Object, messageChannel: Object, listener: Function, subscriberOptions?: Object): Object; + /** + * Unregisters the listener associated with the subscription. + * + * @param {Object} subscription - Subscription object returned when subscribing. + */ + export function unsubscribe(subscription: Object): void; + /** + * Creates a message context for an LWC library. + * + * @return {Object} - MessageContext for use by LWC Library. + */ + export function createMessageContext(): Object; + /** + * Releases a message context associated with LWC library and + * unsubscribes all associated subscriptions. + * + * @param {Object} messageContext - MessageContext for use by LWC Library. + */ + export function releaseMessageContext(messageContext: Object): void; + /** + * A '@wire' adpator that provides component context for a 'LightningElement'. + * Annotate a component's property with '@wire(MessageContext)' and pass that + * context value to the first parameter of the 'subscribe' and 'publish' functions. + * When subscribing with a '@wire(MessageContext)' context value, all listeners + * associated with that component get automatically cleaned up on 'disconnectedCallback'. + */ + export const MessageContext; + /** + * When using 'subscribe', 'APPLICATION_SCOPE' is passed in as a value to the 'scope' property of + * the 'subscriberOptions'. This specifies that the subscriber wants to subscribe to messages on + * a message channel no matter where the subscriber is in the entire application. + */ + export const APPLICATION_SCOPE; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/schema.d.ts b/proxy-lite-work/.sfdx/typings/lwc/schema.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..cef1f28d3edd0d234bb3905cb398ec8c1785f468 --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/schema.d.ts @@ -0,0 +1,19 @@ +declare module '@salesforce/schema' { + /** + * Identifier for an object. + */ + export interface ObjectId { + /** The object's API name. */ + objectApiName: string; + } + + /** + * Identifier for an object's field. + */ + export interface FieldId { + /** The field's API name. */ + fieldApiName: string; + /** The object's API name. */ + objectApiName: string; + } +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/sobjects/Account.d.ts b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Account.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..b98490659fde0d39531d9c8fdd305d488fdbacd0 --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Account.d.ts @@ -0,0 +1,264 @@ +declare module "@salesforce/schema/Account.Id" { + const Id:any; + export default Id; +} +declare module "@salesforce/schema/Account.IsDeleted" { + const IsDeleted:boolean; + export default IsDeleted; +} +declare module "@salesforce/schema/Account.MasterRecord" { + const MasterRecord:any; + export default MasterRecord; +} +declare module "@salesforce/schema/Account.MasterRecordId" { + const MasterRecordId:any; + export default MasterRecordId; +} +declare module "@salesforce/schema/Account.Name" { + const Name:string; + export default Name; +} +declare module "@salesforce/schema/Account.Type" { + const Type:string; + export default Type; +} +declare module "@salesforce/schema/Account.Parent" { + const Parent:any; + export default Parent; +} +declare module "@salesforce/schema/Account.ParentId" { + const ParentId:any; + export default ParentId; +} +declare module "@salesforce/schema/Account.BillingStreet" { + const BillingStreet:string; + export default BillingStreet; +} +declare module "@salesforce/schema/Account.BillingCity" { + const BillingCity:string; + export default BillingCity; +} +declare module "@salesforce/schema/Account.BillingState" { + const BillingState:string; + export default BillingState; +} +declare module "@salesforce/schema/Account.BillingPostalCode" { + const BillingPostalCode:string; + export default BillingPostalCode; +} +declare module "@salesforce/schema/Account.BillingCountry" { + const BillingCountry:string; + export default BillingCountry; +} +declare module "@salesforce/schema/Account.BillingLatitude" { + const BillingLatitude:number; + export default BillingLatitude; +} +declare module "@salesforce/schema/Account.BillingLongitude" { + const BillingLongitude:number; + export default BillingLongitude; +} +declare module "@salesforce/schema/Account.BillingGeocodeAccuracy" { + const BillingGeocodeAccuracy:string; + export default BillingGeocodeAccuracy; +} +declare module "@salesforce/schema/Account.BillingAddress" { + const BillingAddress:any; + export default BillingAddress; +} +declare module "@salesforce/schema/Account.ShippingStreet" { + const ShippingStreet:string; + export default ShippingStreet; +} +declare module "@salesforce/schema/Account.ShippingCity" { + const ShippingCity:string; + export default ShippingCity; +} +declare module "@salesforce/schema/Account.ShippingState" { + const ShippingState:string; + export default ShippingState; +} +declare module "@salesforce/schema/Account.ShippingPostalCode" { + const ShippingPostalCode:string; + export default ShippingPostalCode; +} +declare module "@salesforce/schema/Account.ShippingCountry" { + const ShippingCountry:string; + export default ShippingCountry; +} +declare module "@salesforce/schema/Account.ShippingLatitude" { + const ShippingLatitude:number; + export default ShippingLatitude; +} +declare module "@salesforce/schema/Account.ShippingLongitude" { + const ShippingLongitude:number; + export default ShippingLongitude; +} +declare module "@salesforce/schema/Account.ShippingGeocodeAccuracy" { + const ShippingGeocodeAccuracy:string; + export default ShippingGeocodeAccuracy; +} +declare module "@salesforce/schema/Account.ShippingAddress" { + const ShippingAddress:any; + export default ShippingAddress; +} +declare module "@salesforce/schema/Account.Phone" { + const Phone:string; + export default Phone; +} +declare module "@salesforce/schema/Account.Fax" { + const Fax:string; + export default Fax; +} +declare module "@salesforce/schema/Account.AccountNumber" { + const AccountNumber:string; + export default AccountNumber; +} +declare module "@salesforce/schema/Account.Website" { + const Website:string; + export default Website; +} +declare module "@salesforce/schema/Account.PhotoUrl" { + const PhotoUrl:string; + export default PhotoUrl; +} +declare module "@salesforce/schema/Account.Sic" { + const Sic:string; + export default Sic; +} +declare module "@salesforce/schema/Account.Industry" { + const Industry:string; + export default Industry; +} +declare module "@salesforce/schema/Account.AnnualRevenue" { + const AnnualRevenue:number; + export default AnnualRevenue; +} +declare module "@salesforce/schema/Account.NumberOfEmployees" { + const NumberOfEmployees:number; + export default NumberOfEmployees; +} +declare module "@salesforce/schema/Account.Ownership" { + const Ownership:string; + export default Ownership; +} +declare module "@salesforce/schema/Account.TickerSymbol" { + const TickerSymbol:string; + export default TickerSymbol; +} +declare module "@salesforce/schema/Account.Description" { + const Description:string; + export default Description; +} +declare module "@salesforce/schema/Account.Rating" { + const Rating:string; + export default Rating; +} +declare module "@salesforce/schema/Account.Site" { + const Site:string; + export default Site; +} +declare module "@salesforce/schema/Account.Owner" { + const Owner:any; + export default Owner; +} +declare module "@salesforce/schema/Account.OwnerId" { + const OwnerId:any; + export default OwnerId; +} +declare module "@salesforce/schema/Account.CreatedDate" { + const CreatedDate:any; + export default CreatedDate; +} +declare module "@salesforce/schema/Account.CreatedBy" { + const CreatedBy:any; + export default CreatedBy; +} +declare module "@salesforce/schema/Account.CreatedById" { + const CreatedById:any; + export default CreatedById; +} +declare module "@salesforce/schema/Account.LastModifiedDate" { + const LastModifiedDate:any; + export default LastModifiedDate; +} +declare module "@salesforce/schema/Account.LastModifiedBy" { + const LastModifiedBy:any; + export default LastModifiedBy; +} +declare module "@salesforce/schema/Account.LastModifiedById" { + const LastModifiedById:any; + export default LastModifiedById; +} +declare module "@salesforce/schema/Account.SystemModstamp" { + const SystemModstamp:any; + export default SystemModstamp; +} +declare module "@salesforce/schema/Account.LastActivityDate" { + const LastActivityDate:any; + export default LastActivityDate; +} +declare module "@salesforce/schema/Account.LastViewedDate" { + const LastViewedDate:any; + export default LastViewedDate; +} +declare module "@salesforce/schema/Account.LastReferencedDate" { + const LastReferencedDate:any; + export default LastReferencedDate; +} +declare module "@salesforce/schema/Account.Jigsaw" { + const Jigsaw:string; + export default Jigsaw; +} +declare module "@salesforce/schema/Account.JigsawCompanyId" { + const JigsawCompanyId:string; + export default JigsawCompanyId; +} +declare module "@salesforce/schema/Account.CleanStatus" { + const CleanStatus:string; + export default CleanStatus; +} +declare module "@salesforce/schema/Account.AccountSource" { + const AccountSource:string; + export default AccountSource; +} +declare module "@salesforce/schema/Account.DunsNumber" { + const DunsNumber:string; + export default DunsNumber; +} +declare module "@salesforce/schema/Account.Tradestyle" { + const Tradestyle:string; + export default Tradestyle; +} +declare module "@salesforce/schema/Account.NaicsCode" { + const NaicsCode:string; + export default NaicsCode; +} +declare module "@salesforce/schema/Account.NaicsDesc" { + const NaicsDesc:string; + export default NaicsDesc; +} +declare module "@salesforce/schema/Account.YearStarted" { + const YearStarted:string; + export default YearStarted; +} +declare module "@salesforce/schema/Account.SicDesc" { + const SicDesc:string; + export default SicDesc; +} +declare module "@salesforce/schema/Account.DandbCompany" { + const DandbCompany:any; + export default DandbCompany; +} +declare module "@salesforce/schema/Account.DandbCompanyId" { + const DandbCompanyId:any; + export default DandbCompanyId; +} +declare module "@salesforce/schema/Account.OperatingHours" { + const OperatingHours:any; + export default OperatingHours; +} +declare module "@salesforce/schema/Account.OperatingHoursId" { + const OperatingHoursId:any; + export default OperatingHoursId; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/sobjects/AccountHistory.d.ts b/proxy-lite-work/.sfdx/typings/lwc/sobjects/AccountHistory.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..8ab28c6bb7c112332e5f750bf3e4db1304c287c9 --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/sobjects/AccountHistory.d.ts @@ -0,0 +1,44 @@ +declare module "@salesforce/schema/AccountHistory.Id" { + const Id:any; + export default Id; +} +declare module "@salesforce/schema/AccountHistory.IsDeleted" { + const IsDeleted:boolean; + export default IsDeleted; +} +declare module "@salesforce/schema/AccountHistory.Account" { + const Account:any; + export default Account; +} +declare module "@salesforce/schema/AccountHistory.AccountId" { + const AccountId:any; + export default AccountId; +} +declare module "@salesforce/schema/AccountHistory.CreatedBy" { + const CreatedBy:any; + export default CreatedBy; +} +declare module "@salesforce/schema/AccountHistory.CreatedById" { + const CreatedById:any; + export default CreatedById; +} +declare module "@salesforce/schema/AccountHistory.CreatedDate" { + const CreatedDate:any; + export default CreatedDate; +} +declare module "@salesforce/schema/AccountHistory.Field" { + const Field:string; + export default Field; +} +declare module "@salesforce/schema/AccountHistory.DataType" { + const DataType:string; + export default DataType; +} +declare module "@salesforce/schema/AccountHistory.OldValue" { + const OldValue:any; + export default OldValue; +} +declare module "@salesforce/schema/AccountHistory.NewValue" { + const NewValue:any; + export default NewValue; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/sobjects/Asset.d.ts b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Asset.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..578754546f8b23c932144ddf5c61de0ee39ed02a --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Asset.d.ts @@ -0,0 +1,240 @@ +declare module "@salesforce/schema/Asset.Id" { + const Id:any; + export default Id; +} +declare module "@salesforce/schema/Asset.Contact" { + const Contact:any; + export default Contact; +} +declare module "@salesforce/schema/Asset.ContactId" { + const ContactId:any; + export default ContactId; +} +declare module "@salesforce/schema/Asset.Account" { + const Account:any; + export default Account; +} +declare module "@salesforce/schema/Asset.AccountId" { + const AccountId:any; + export default AccountId; +} +declare module "@salesforce/schema/Asset.Parent" { + const Parent:any; + export default Parent; +} +declare module "@salesforce/schema/Asset.ParentId" { + const ParentId:any; + export default ParentId; +} +declare module "@salesforce/schema/Asset.RootAsset" { + const RootAsset:any; + export default RootAsset; +} +declare module "@salesforce/schema/Asset.RootAssetId" { + const RootAssetId:any; + export default RootAssetId; +} +declare module "@salesforce/schema/Asset.Product2" { + const Product2:any; + export default Product2; +} +declare module "@salesforce/schema/Asset.Product2Id" { + const Product2Id:any; + export default Product2Id; +} +declare module "@salesforce/schema/Asset.ProductCode" { + const ProductCode:string; + export default ProductCode; +} +declare module "@salesforce/schema/Asset.IsCompetitorProduct" { + const IsCompetitorProduct:boolean; + export default IsCompetitorProduct; +} +declare module "@salesforce/schema/Asset.CreatedDate" { + const CreatedDate:any; + export default CreatedDate; +} +declare module "@salesforce/schema/Asset.CreatedBy" { + const CreatedBy:any; + export default CreatedBy; +} +declare module "@salesforce/schema/Asset.CreatedById" { + const CreatedById:any; + export default CreatedById; +} +declare module "@salesforce/schema/Asset.LastModifiedDate" { + const LastModifiedDate:any; + export default LastModifiedDate; +} +declare module "@salesforce/schema/Asset.LastModifiedBy" { + const LastModifiedBy:any; + export default LastModifiedBy; +} +declare module "@salesforce/schema/Asset.LastModifiedById" { + const LastModifiedById:any; + export default LastModifiedById; +} +declare module "@salesforce/schema/Asset.SystemModstamp" { + const SystemModstamp:any; + export default SystemModstamp; +} +declare module "@salesforce/schema/Asset.IsDeleted" { + const IsDeleted:boolean; + export default IsDeleted; +} +declare module "@salesforce/schema/Asset.Name" { + const Name:string; + export default Name; +} +declare module "@salesforce/schema/Asset.SerialNumber" { + const SerialNumber:string; + export default SerialNumber; +} +declare module "@salesforce/schema/Asset.InstallDate" { + const InstallDate:any; + export default InstallDate; +} +declare module "@salesforce/schema/Asset.PurchaseDate" { + const PurchaseDate:any; + export default PurchaseDate; +} +declare module "@salesforce/schema/Asset.UsageEndDate" { + const UsageEndDate:any; + export default UsageEndDate; +} +declare module "@salesforce/schema/Asset.LifecycleStartDate" { + const LifecycleStartDate:any; + export default LifecycleStartDate; +} +declare module "@salesforce/schema/Asset.LifecycleEndDate" { + const LifecycleEndDate:any; + export default LifecycleEndDate; +} +declare module "@salesforce/schema/Asset.Status" { + const Status:string; + export default Status; +} +declare module "@salesforce/schema/Asset.Price" { + const Price:number; + export default Price; +} +declare module "@salesforce/schema/Asset.Quantity" { + const Quantity:number; + export default Quantity; +} +declare module "@salesforce/schema/Asset.Description" { + const Description:string; + export default Description; +} +declare module "@salesforce/schema/Asset.Owner" { + const Owner:any; + export default Owner; +} +declare module "@salesforce/schema/Asset.OwnerId" { + const OwnerId:any; + export default OwnerId; +} +declare module "@salesforce/schema/Asset.Location" { + const Location:any; + export default Location; +} +declare module "@salesforce/schema/Asset.LocationId" { + const LocationId:any; + export default LocationId; +} +declare module "@salesforce/schema/Asset.AssetProvidedBy" { + const AssetProvidedBy:any; + export default AssetProvidedBy; +} +declare module "@salesforce/schema/Asset.AssetProvidedById" { + const AssetProvidedById:any; + export default AssetProvidedById; +} +declare module "@salesforce/schema/Asset.AssetServicedBy" { + const AssetServicedBy:any; + export default AssetServicedBy; +} +declare module "@salesforce/schema/Asset.AssetServicedById" { + const AssetServicedById:any; + export default AssetServicedById; +} +declare module "@salesforce/schema/Asset.IsInternal" { + const IsInternal:boolean; + export default IsInternal; +} +declare module "@salesforce/schema/Asset.AssetLevel" { + const AssetLevel:number; + export default AssetLevel; +} +declare module "@salesforce/schema/Asset.StockKeepingUnit" { + const StockKeepingUnit:string; + export default StockKeepingUnit; +} +declare module "@salesforce/schema/Asset.HasLifecycleManagement" { + const HasLifecycleManagement:boolean; + export default HasLifecycleManagement; +} +declare module "@salesforce/schema/Asset.CurrentMrr" { + const CurrentMrr:number; + export default CurrentMrr; +} +declare module "@salesforce/schema/Asset.CurrentLifecycleEndDate" { + const CurrentLifecycleEndDate:any; + export default CurrentLifecycleEndDate; +} +declare module "@salesforce/schema/Asset.CurrentQuantity" { + const CurrentQuantity:number; + export default CurrentQuantity; +} +declare module "@salesforce/schema/Asset.CurrentAmount" { + const CurrentAmount:number; + export default CurrentAmount; +} +declare module "@salesforce/schema/Asset.TotalLifecycleAmount" { + const TotalLifecycleAmount:number; + export default TotalLifecycleAmount; +} +declare module "@salesforce/schema/Asset.Street" { + const Street:string; + export default Street; +} +declare module "@salesforce/schema/Asset.City" { + const City:string; + export default City; +} +declare module "@salesforce/schema/Asset.State" { + const State:string; + export default State; +} +declare module "@salesforce/schema/Asset.PostalCode" { + const PostalCode:string; + export default PostalCode; +} +declare module "@salesforce/schema/Asset.Country" { + const Country:string; + export default Country; +} +declare module "@salesforce/schema/Asset.Latitude" { + const Latitude:number; + export default Latitude; +} +declare module "@salesforce/schema/Asset.Longitude" { + const Longitude:number; + export default Longitude; +} +declare module "@salesforce/schema/Asset.GeocodeAccuracy" { + const GeocodeAccuracy:string; + export default GeocodeAccuracy; +} +declare module "@salesforce/schema/Asset.Address" { + const Address:any; + export default Address; +} +declare module "@salesforce/schema/Asset.LastViewedDate" { + const LastViewedDate:any; + export default LastViewedDate; +} +declare module "@salesforce/schema/Asset.LastReferencedDate" { + const LastReferencedDate:any; + export default LastReferencedDate; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/sobjects/Attachment.d.ts b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Attachment.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..52f1d58250cc1da5f9420eaa4e1515c0bd17abe3 --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Attachment.d.ts @@ -0,0 +1,76 @@ +declare module "@salesforce/schema/Attachment.Id" { + const Id:any; + export default Id; +} +declare module "@salesforce/schema/Attachment.IsDeleted" { + const IsDeleted:boolean; + export default IsDeleted; +} +declare module "@salesforce/schema/Attachment.Parent" { + const Parent:any; + export default Parent; +} +declare module "@salesforce/schema/Attachment.ParentId" { + const ParentId:any; + export default ParentId; +} +declare module "@salesforce/schema/Attachment.Name" { + const Name:string; + export default Name; +} +declare module "@salesforce/schema/Attachment.IsPrivate" { + const IsPrivate:boolean; + export default IsPrivate; +} +declare module "@salesforce/schema/Attachment.ContentType" { + const ContentType:string; + export default ContentType; +} +declare module "@salesforce/schema/Attachment.BodyLength" { + const BodyLength:number; + export default BodyLength; +} +declare module "@salesforce/schema/Attachment.Body" { + const Body:any; + export default Body; +} +declare module "@salesforce/schema/Attachment.Owner" { + const Owner:any; + export default Owner; +} +declare module "@salesforce/schema/Attachment.OwnerId" { + const OwnerId:any; + export default OwnerId; +} +declare module "@salesforce/schema/Attachment.CreatedDate" { + const CreatedDate:any; + export default CreatedDate; +} +declare module "@salesforce/schema/Attachment.CreatedBy" { + const CreatedBy:any; + export default CreatedBy; +} +declare module "@salesforce/schema/Attachment.CreatedById" { + const CreatedById:any; + export default CreatedById; +} +declare module "@salesforce/schema/Attachment.LastModifiedDate" { + const LastModifiedDate:any; + export default LastModifiedDate; +} +declare module "@salesforce/schema/Attachment.LastModifiedBy" { + const LastModifiedBy:any; + export default LastModifiedBy; +} +declare module "@salesforce/schema/Attachment.LastModifiedById" { + const LastModifiedById:any; + export default LastModifiedById; +} +declare module "@salesforce/schema/Attachment.SystemModstamp" { + const SystemModstamp:any; + export default SystemModstamp; +} +declare module "@salesforce/schema/Attachment.Description" { + const Description:string; + export default Description; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/sobjects/Case.d.ts b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Case.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..0f7b38a973be25a4be2b08ce705580276b6662bf --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Case.d.ts @@ -0,0 +1,172 @@ +declare module "@salesforce/schema/Case.Id" { + const Id:any; + export default Id; +} +declare module "@salesforce/schema/Case.IsDeleted" { + const IsDeleted:boolean; + export default IsDeleted; +} +declare module "@salesforce/schema/Case.MasterRecord" { + const MasterRecord:any; + export default MasterRecord; +} +declare module "@salesforce/schema/Case.MasterRecordId" { + const MasterRecordId:any; + export default MasterRecordId; +} +declare module "@salesforce/schema/Case.CaseNumber" { + const CaseNumber:string; + export default CaseNumber; +} +declare module "@salesforce/schema/Case.Contact" { + const Contact:any; + export default Contact; +} +declare module "@salesforce/schema/Case.ContactId" { + const ContactId:any; + export default ContactId; +} +declare module "@salesforce/schema/Case.Account" { + const Account:any; + export default Account; +} +declare module "@salesforce/schema/Case.AccountId" { + const AccountId:any; + export default AccountId; +} +declare module "@salesforce/schema/Case.Asset" { + const Asset:any; + export default Asset; +} +declare module "@salesforce/schema/Case.AssetId" { + const AssetId:any; + export default AssetId; +} +declare module "@salesforce/schema/Case.Parent" { + const Parent:any; + export default Parent; +} +declare module "@salesforce/schema/Case.ParentId" { + const ParentId:any; + export default ParentId; +} +declare module "@salesforce/schema/Case.SuppliedName" { + const SuppliedName:string; + export default SuppliedName; +} +declare module "@salesforce/schema/Case.SuppliedEmail" { + const SuppliedEmail:string; + export default SuppliedEmail; +} +declare module "@salesforce/schema/Case.SuppliedPhone" { + const SuppliedPhone:string; + export default SuppliedPhone; +} +declare module "@salesforce/schema/Case.SuppliedCompany" { + const SuppliedCompany:string; + export default SuppliedCompany; +} +declare module "@salesforce/schema/Case.Type" { + const Type:string; + export default Type; +} +declare module "@salesforce/schema/Case.Status" { + const Status:string; + export default Status; +} +declare module "@salesforce/schema/Case.Reason" { + const Reason:string; + export default Reason; +} +declare module "@salesforce/schema/Case.Origin" { + const Origin:string; + export default Origin; +} +declare module "@salesforce/schema/Case.Subject" { + const Subject:string; + export default Subject; +} +declare module "@salesforce/schema/Case.Priority" { + const Priority:string; + export default Priority; +} +declare module "@salesforce/schema/Case.Description" { + const Description:string; + export default Description; +} +declare module "@salesforce/schema/Case.IsClosed" { + const IsClosed:boolean; + export default IsClosed; +} +declare module "@salesforce/schema/Case.ClosedDate" { + const ClosedDate:any; + export default ClosedDate; +} +declare module "@salesforce/schema/Case.IsEscalated" { + const IsEscalated:boolean; + export default IsEscalated; +} +declare module "@salesforce/schema/Case.Owner" { + const Owner:any; + export default Owner; +} +declare module "@salesforce/schema/Case.OwnerId" { + const OwnerId:any; + export default OwnerId; +} +declare module "@salesforce/schema/Case.CreatedDate" { + const CreatedDate:any; + export default CreatedDate; +} +declare module "@salesforce/schema/Case.CreatedBy" { + const CreatedBy:any; + export default CreatedBy; +} +declare module "@salesforce/schema/Case.CreatedById" { + const CreatedById:any; + export default CreatedById; +} +declare module "@salesforce/schema/Case.LastModifiedDate" { + const LastModifiedDate:any; + export default LastModifiedDate; +} +declare module "@salesforce/schema/Case.LastModifiedBy" { + const LastModifiedBy:any; + export default LastModifiedBy; +} +declare module "@salesforce/schema/Case.LastModifiedById" { + const LastModifiedById:any; + export default LastModifiedById; +} +declare module "@salesforce/schema/Case.SystemModstamp" { + const SystemModstamp:any; + export default SystemModstamp; +} +declare module "@salesforce/schema/Case.ContactPhone" { + const ContactPhone:string; + export default ContactPhone; +} +declare module "@salesforce/schema/Case.ContactMobile" { + const ContactMobile:string; + export default ContactMobile; +} +declare module "@salesforce/schema/Case.ContactEmail" { + const ContactEmail:string; + export default ContactEmail; +} +declare module "@salesforce/schema/Case.ContactFax" { + const ContactFax:string; + export default ContactFax; +} +declare module "@salesforce/schema/Case.Comments" { + const Comments:string; + export default Comments; +} +declare module "@salesforce/schema/Case.LastViewedDate" { + const LastViewedDate:any; + export default LastViewedDate; +} +declare module "@salesforce/schema/Case.LastReferencedDate" { + const LastReferencedDate:any; + export default LastReferencedDate; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/sobjects/Contact.d.ts b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Contact.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..4dd486d8e1db301f58866828ac39b38f0b6ba493 --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Contact.d.ts @@ -0,0 +1,264 @@ +declare module "@salesforce/schema/Contact.Id" { + const Id:any; + export default Id; +} +declare module "@salesforce/schema/Contact.IsDeleted" { + const IsDeleted:boolean; + export default IsDeleted; +} +declare module "@salesforce/schema/Contact.MasterRecord" { + const MasterRecord:any; + export default MasterRecord; +} +declare module "@salesforce/schema/Contact.MasterRecordId" { + const MasterRecordId:any; + export default MasterRecordId; +} +declare module "@salesforce/schema/Contact.Account" { + const Account:any; + export default Account; +} +declare module "@salesforce/schema/Contact.AccountId" { + const AccountId:any; + export default AccountId; +} +declare module "@salesforce/schema/Contact.LastName" { + const LastName:string; + export default LastName; +} +declare module "@salesforce/schema/Contact.FirstName" { + const FirstName:string; + export default FirstName; +} +declare module "@salesforce/schema/Contact.Salutation" { + const Salutation:string; + export default Salutation; +} +declare module "@salesforce/schema/Contact.Name" { + const Name:string; + export default Name; +} +declare module "@salesforce/schema/Contact.OtherStreet" { + const OtherStreet:string; + export default OtherStreet; +} +declare module "@salesforce/schema/Contact.OtherCity" { + const OtherCity:string; + export default OtherCity; +} +declare module "@salesforce/schema/Contact.OtherState" { + const OtherState:string; + export default OtherState; +} +declare module "@salesforce/schema/Contact.OtherPostalCode" { + const OtherPostalCode:string; + export default OtherPostalCode; +} +declare module "@salesforce/schema/Contact.OtherCountry" { + const OtherCountry:string; + export default OtherCountry; +} +declare module "@salesforce/schema/Contact.OtherLatitude" { + const OtherLatitude:number; + export default OtherLatitude; +} +declare module "@salesforce/schema/Contact.OtherLongitude" { + const OtherLongitude:number; + export default OtherLongitude; +} +declare module "@salesforce/schema/Contact.OtherGeocodeAccuracy" { + const OtherGeocodeAccuracy:string; + export default OtherGeocodeAccuracy; +} +declare module "@salesforce/schema/Contact.OtherAddress" { + const OtherAddress:any; + export default OtherAddress; +} +declare module "@salesforce/schema/Contact.MailingStreet" { + const MailingStreet:string; + export default MailingStreet; +} +declare module "@salesforce/schema/Contact.MailingCity" { + const MailingCity:string; + export default MailingCity; +} +declare module "@salesforce/schema/Contact.MailingState" { + const MailingState:string; + export default MailingState; +} +declare module "@salesforce/schema/Contact.MailingPostalCode" { + const MailingPostalCode:string; + export default MailingPostalCode; +} +declare module "@salesforce/schema/Contact.MailingCountry" { + const MailingCountry:string; + export default MailingCountry; +} +declare module "@salesforce/schema/Contact.MailingLatitude" { + const MailingLatitude:number; + export default MailingLatitude; +} +declare module "@salesforce/schema/Contact.MailingLongitude" { + const MailingLongitude:number; + export default MailingLongitude; +} +declare module "@salesforce/schema/Contact.MailingGeocodeAccuracy" { + const MailingGeocodeAccuracy:string; + export default MailingGeocodeAccuracy; +} +declare module "@salesforce/schema/Contact.MailingAddress" { + const MailingAddress:any; + export default MailingAddress; +} +declare module "@salesforce/schema/Contact.Phone" { + const Phone:string; + export default Phone; +} +declare module "@salesforce/schema/Contact.Fax" { + const Fax:string; + export default Fax; +} +declare module "@salesforce/schema/Contact.MobilePhone" { + const MobilePhone:string; + export default MobilePhone; +} +declare module "@salesforce/schema/Contact.HomePhone" { + const HomePhone:string; + export default HomePhone; +} +declare module "@salesforce/schema/Contact.OtherPhone" { + const OtherPhone:string; + export default OtherPhone; +} +declare module "@salesforce/schema/Contact.AssistantPhone" { + const AssistantPhone:string; + export default AssistantPhone; +} +declare module "@salesforce/schema/Contact.ReportsTo" { + const ReportsTo:any; + export default ReportsTo; +} +declare module "@salesforce/schema/Contact.ReportsToId" { + const ReportsToId:any; + export default ReportsToId; +} +declare module "@salesforce/schema/Contact.Email" { + const Email:string; + export default Email; +} +declare module "@salesforce/schema/Contact.Title" { + const Title:string; + export default Title; +} +declare module "@salesforce/schema/Contact.Department" { + const Department:string; + export default Department; +} +declare module "@salesforce/schema/Contact.AssistantName" { + const AssistantName:string; + export default AssistantName; +} +declare module "@salesforce/schema/Contact.LeadSource" { + const LeadSource:string; + export default LeadSource; +} +declare module "@salesforce/schema/Contact.Birthdate" { + const Birthdate:any; + export default Birthdate; +} +declare module "@salesforce/schema/Contact.Description" { + const Description:string; + export default Description; +} +declare module "@salesforce/schema/Contact.Owner" { + const Owner:any; + export default Owner; +} +declare module "@salesforce/schema/Contact.OwnerId" { + const OwnerId:any; + export default OwnerId; +} +declare module "@salesforce/schema/Contact.CreatedDate" { + const CreatedDate:any; + export default CreatedDate; +} +declare module "@salesforce/schema/Contact.CreatedBy" { + const CreatedBy:any; + export default CreatedBy; +} +declare module "@salesforce/schema/Contact.CreatedById" { + const CreatedById:any; + export default CreatedById; +} +declare module "@salesforce/schema/Contact.LastModifiedDate" { + const LastModifiedDate:any; + export default LastModifiedDate; +} +declare module "@salesforce/schema/Contact.LastModifiedBy" { + const LastModifiedBy:any; + export default LastModifiedBy; +} +declare module "@salesforce/schema/Contact.LastModifiedById" { + const LastModifiedById:any; + export default LastModifiedById; +} +declare module "@salesforce/schema/Contact.SystemModstamp" { + const SystemModstamp:any; + export default SystemModstamp; +} +declare module "@salesforce/schema/Contact.LastActivityDate" { + const LastActivityDate:any; + export default LastActivityDate; +} +declare module "@salesforce/schema/Contact.LastCURequestDate" { + const LastCURequestDate:any; + export default LastCURequestDate; +} +declare module "@salesforce/schema/Contact.LastCUUpdateDate" { + const LastCUUpdateDate:any; + export default LastCUUpdateDate; +} +declare module "@salesforce/schema/Contact.LastViewedDate" { + const LastViewedDate:any; + export default LastViewedDate; +} +declare module "@salesforce/schema/Contact.LastReferencedDate" { + const LastReferencedDate:any; + export default LastReferencedDate; +} +declare module "@salesforce/schema/Contact.EmailBouncedReason" { + const EmailBouncedReason:string; + export default EmailBouncedReason; +} +declare module "@salesforce/schema/Contact.EmailBouncedDate" { + const EmailBouncedDate:any; + export default EmailBouncedDate; +} +declare module "@salesforce/schema/Contact.IsEmailBounced" { + const IsEmailBounced:boolean; + export default IsEmailBounced; +} +declare module "@salesforce/schema/Contact.PhotoUrl" { + const PhotoUrl:string; + export default PhotoUrl; +} +declare module "@salesforce/schema/Contact.Jigsaw" { + const Jigsaw:string; + export default Jigsaw; +} +declare module "@salesforce/schema/Contact.JigsawContactId" { + const JigsawContactId:string; + export default JigsawContactId; +} +declare module "@salesforce/schema/Contact.CleanStatus" { + const CleanStatus:string; + export default CleanStatus; +} +declare module "@salesforce/schema/Contact.Individual" { + const Individual:any; + export default Individual; +} +declare module "@salesforce/schema/Contact.IndividualId" { + const IndividualId:any; + export default IndividualId; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/sobjects/Contract.d.ts b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Contract.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..f9182ad28f39b5bf9975929cca875ef3c1e9c6f2 --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Contract.d.ts @@ -0,0 +1,188 @@ +declare module "@salesforce/schema/Contract.Id" { + const Id:any; + export default Id; +} +declare module "@salesforce/schema/Contract.Account" { + const Account:any; + export default Account; +} +declare module "@salesforce/schema/Contract.AccountId" { + const AccountId:any; + export default AccountId; +} +declare module "@salesforce/schema/Contract.Pricebook2" { + const Pricebook2:any; + export default Pricebook2; +} +declare module "@salesforce/schema/Contract.Pricebook2Id" { + const Pricebook2Id:any; + export default Pricebook2Id; +} +declare module "@salesforce/schema/Contract.OwnerExpirationNotice" { + const OwnerExpirationNotice:string; + export default OwnerExpirationNotice; +} +declare module "@salesforce/schema/Contract.StartDate" { + const StartDate:any; + export default StartDate; +} +declare module "@salesforce/schema/Contract.EndDate" { + const EndDate:any; + export default EndDate; +} +declare module "@salesforce/schema/Contract.BillingStreet" { + const BillingStreet:string; + export default BillingStreet; +} +declare module "@salesforce/schema/Contract.BillingCity" { + const BillingCity:string; + export default BillingCity; +} +declare module "@salesforce/schema/Contract.BillingState" { + const BillingState:string; + export default BillingState; +} +declare module "@salesforce/schema/Contract.BillingPostalCode" { + const BillingPostalCode:string; + export default BillingPostalCode; +} +declare module "@salesforce/schema/Contract.BillingCountry" { + const BillingCountry:string; + export default BillingCountry; +} +declare module "@salesforce/schema/Contract.BillingLatitude" { + const BillingLatitude:number; + export default BillingLatitude; +} +declare module "@salesforce/schema/Contract.BillingLongitude" { + const BillingLongitude:number; + export default BillingLongitude; +} +declare module "@salesforce/schema/Contract.BillingGeocodeAccuracy" { + const BillingGeocodeAccuracy:string; + export default BillingGeocodeAccuracy; +} +declare module "@salesforce/schema/Contract.BillingAddress" { + const BillingAddress:any; + export default BillingAddress; +} +declare module "@salesforce/schema/Contract.ContractTerm" { + const ContractTerm:number; + export default ContractTerm; +} +declare module "@salesforce/schema/Contract.Owner" { + const Owner:any; + export default Owner; +} +declare module "@salesforce/schema/Contract.OwnerId" { + const OwnerId:any; + export default OwnerId; +} +declare module "@salesforce/schema/Contract.Status" { + const Status:string; + export default Status; +} +declare module "@salesforce/schema/Contract.CompanySigned" { + const CompanySigned:any; + export default CompanySigned; +} +declare module "@salesforce/schema/Contract.CompanySignedId" { + const CompanySignedId:any; + export default CompanySignedId; +} +declare module "@salesforce/schema/Contract.CompanySignedDate" { + const CompanySignedDate:any; + export default CompanySignedDate; +} +declare module "@salesforce/schema/Contract.CustomerSigned" { + const CustomerSigned:any; + export default CustomerSigned; +} +declare module "@salesforce/schema/Contract.CustomerSignedId" { + const CustomerSignedId:any; + export default CustomerSignedId; +} +declare module "@salesforce/schema/Contract.CustomerSignedTitle" { + const CustomerSignedTitle:string; + export default CustomerSignedTitle; +} +declare module "@salesforce/schema/Contract.CustomerSignedDate" { + const CustomerSignedDate:any; + export default CustomerSignedDate; +} +declare module "@salesforce/schema/Contract.SpecialTerms" { + const SpecialTerms:string; + export default SpecialTerms; +} +declare module "@salesforce/schema/Contract.ActivatedBy" { + const ActivatedBy:any; + export default ActivatedBy; +} +declare module "@salesforce/schema/Contract.ActivatedById" { + const ActivatedById:any; + export default ActivatedById; +} +declare module "@salesforce/schema/Contract.ActivatedDate" { + const ActivatedDate:any; + export default ActivatedDate; +} +declare module "@salesforce/schema/Contract.StatusCode" { + const StatusCode:string; + export default StatusCode; +} +declare module "@salesforce/schema/Contract.Description" { + const Description:string; + export default Description; +} +declare module "@salesforce/schema/Contract.IsDeleted" { + const IsDeleted:boolean; + export default IsDeleted; +} +declare module "@salesforce/schema/Contract.ContractNumber" { + const ContractNumber:string; + export default ContractNumber; +} +declare module "@salesforce/schema/Contract.LastApprovedDate" { + const LastApprovedDate:any; + export default LastApprovedDate; +} +declare module "@salesforce/schema/Contract.CreatedDate" { + const CreatedDate:any; + export default CreatedDate; +} +declare module "@salesforce/schema/Contract.CreatedBy" { + const CreatedBy:any; + export default CreatedBy; +} +declare module "@salesforce/schema/Contract.CreatedById" { + const CreatedById:any; + export default CreatedById; +} +declare module "@salesforce/schema/Contract.LastModifiedDate" { + const LastModifiedDate:any; + export default LastModifiedDate; +} +declare module "@salesforce/schema/Contract.LastModifiedBy" { + const LastModifiedBy:any; + export default LastModifiedBy; +} +declare module "@salesforce/schema/Contract.LastModifiedById" { + const LastModifiedById:any; + export default LastModifiedById; +} +declare module "@salesforce/schema/Contract.SystemModstamp" { + const SystemModstamp:any; + export default SystemModstamp; +} +declare module "@salesforce/schema/Contract.LastActivityDate" { + const LastActivityDate:any; + export default LastActivityDate; +} +declare module "@salesforce/schema/Contract.LastViewedDate" { + const LastViewedDate:any; + export default LastViewedDate; +} +declare module "@salesforce/schema/Contract.LastReferencedDate" { + const LastReferencedDate:any; + export default LastReferencedDate; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/sobjects/Domain.d.ts b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Domain.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..4efb843260d30c924a3a350aa8cebb4302a7e28e --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Domain.d.ts @@ -0,0 +1,52 @@ +declare module "@salesforce/schema/Domain.Id" { + const Id:any; + export default Id; +} +declare module "@salesforce/schema/Domain.DomainType" { + const DomainType:string; + export default DomainType; +} +declare module "@salesforce/schema/Domain.Domain" { + const Domain:string; + export default Domain; +} +declare module "@salesforce/schema/Domain.OptionsHstsPreload" { + const OptionsHstsPreload:boolean; + export default OptionsHstsPreload; +} +declare module "@salesforce/schema/Domain.CnameTarget" { + const CnameTarget:string; + export default CnameTarget; +} +declare module "@salesforce/schema/Domain.HttpsOption" { + const HttpsOption:string; + export default HttpsOption; +} +declare module "@salesforce/schema/Domain.CreatedDate" { + const CreatedDate:any; + export default CreatedDate; +} +declare module "@salesforce/schema/Domain.CreatedBy" { + const CreatedBy:any; + export default CreatedBy; +} +declare module "@salesforce/schema/Domain.CreatedById" { + const CreatedById:any; + export default CreatedById; +} +declare module "@salesforce/schema/Domain.LastModifiedDate" { + const LastModifiedDate:any; + export default LastModifiedDate; +} +declare module "@salesforce/schema/Domain.LastModifiedBy" { + const LastModifiedBy:any; + export default LastModifiedBy; +} +declare module "@salesforce/schema/Domain.LastModifiedById" { + const LastModifiedById:any; + export default LastModifiedById; +} +declare module "@salesforce/schema/Domain.SystemModstamp" { + const SystemModstamp:any; + export default SystemModstamp; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/sobjects/Lead.d.ts b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Lead.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..04a1ca7edce3177e2fb0944e329f8e73a6369b38 --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Lead.d.ts @@ -0,0 +1,252 @@ +declare module "@salesforce/schema/Lead.Id" { + const Id:any; + export default Id; +} +declare module "@salesforce/schema/Lead.IsDeleted" { + const IsDeleted:boolean; + export default IsDeleted; +} +declare module "@salesforce/schema/Lead.MasterRecord" { + const MasterRecord:any; + export default MasterRecord; +} +declare module "@salesforce/schema/Lead.MasterRecordId" { + const MasterRecordId:any; + export default MasterRecordId; +} +declare module "@salesforce/schema/Lead.LastName" { + const LastName:string; + export default LastName; +} +declare module "@salesforce/schema/Lead.FirstName" { + const FirstName:string; + export default FirstName; +} +declare module "@salesforce/schema/Lead.Salutation" { + const Salutation:string; + export default Salutation; +} +declare module "@salesforce/schema/Lead.Name" { + const Name:string; + export default Name; +} +declare module "@salesforce/schema/Lead.Title" { + const Title:string; + export default Title; +} +declare module "@salesforce/schema/Lead.Company" { + const Company:string; + export default Company; +} +declare module "@salesforce/schema/Lead.Street" { + const Street:string; + export default Street; +} +declare module "@salesforce/schema/Lead.City" { + const City:string; + export default City; +} +declare module "@salesforce/schema/Lead.State" { + const State:string; + export default State; +} +declare module "@salesforce/schema/Lead.PostalCode" { + const PostalCode:string; + export default PostalCode; +} +declare module "@salesforce/schema/Lead.Country" { + const Country:string; + export default Country; +} +declare module "@salesforce/schema/Lead.Latitude" { + const Latitude:number; + export default Latitude; +} +declare module "@salesforce/schema/Lead.Longitude" { + const Longitude:number; + export default Longitude; +} +declare module "@salesforce/schema/Lead.GeocodeAccuracy" { + const GeocodeAccuracy:string; + export default GeocodeAccuracy; +} +declare module "@salesforce/schema/Lead.Address" { + const Address:any; + export default Address; +} +declare module "@salesforce/schema/Lead.Phone" { + const Phone:string; + export default Phone; +} +declare module "@salesforce/schema/Lead.MobilePhone" { + const MobilePhone:string; + export default MobilePhone; +} +declare module "@salesforce/schema/Lead.Fax" { + const Fax:string; + export default Fax; +} +declare module "@salesforce/schema/Lead.Email" { + const Email:string; + export default Email; +} +declare module "@salesforce/schema/Lead.Website" { + const Website:string; + export default Website; +} +declare module "@salesforce/schema/Lead.PhotoUrl" { + const PhotoUrl:string; + export default PhotoUrl; +} +declare module "@salesforce/schema/Lead.Description" { + const Description:string; + export default Description; +} +declare module "@salesforce/schema/Lead.LeadSource" { + const LeadSource:string; + export default LeadSource; +} +declare module "@salesforce/schema/Lead.Status" { + const Status:string; + export default Status; +} +declare module "@salesforce/schema/Lead.Industry" { + const Industry:string; + export default Industry; +} +declare module "@salesforce/schema/Lead.Rating" { + const Rating:string; + export default Rating; +} +declare module "@salesforce/schema/Lead.AnnualRevenue" { + const AnnualRevenue:number; + export default AnnualRevenue; +} +declare module "@salesforce/schema/Lead.NumberOfEmployees" { + const NumberOfEmployees:number; + export default NumberOfEmployees; +} +declare module "@salesforce/schema/Lead.Owner" { + const Owner:any; + export default Owner; +} +declare module "@salesforce/schema/Lead.OwnerId" { + const OwnerId:any; + export default OwnerId; +} +declare module "@salesforce/schema/Lead.IsConverted" { + const IsConverted:boolean; + export default IsConverted; +} +declare module "@salesforce/schema/Lead.ConvertedDate" { + const ConvertedDate:any; + export default ConvertedDate; +} +declare module "@salesforce/schema/Lead.ConvertedAccount" { + const ConvertedAccount:any; + export default ConvertedAccount; +} +declare module "@salesforce/schema/Lead.ConvertedAccountId" { + const ConvertedAccountId:any; + export default ConvertedAccountId; +} +declare module "@salesforce/schema/Lead.ConvertedContact" { + const ConvertedContact:any; + export default ConvertedContact; +} +declare module "@salesforce/schema/Lead.ConvertedContactId" { + const ConvertedContactId:any; + export default ConvertedContactId; +} +declare module "@salesforce/schema/Lead.ConvertedOpportunity" { + const ConvertedOpportunity:any; + export default ConvertedOpportunity; +} +declare module "@salesforce/schema/Lead.ConvertedOpportunityId" { + const ConvertedOpportunityId:any; + export default ConvertedOpportunityId; +} +declare module "@salesforce/schema/Lead.IsUnreadByOwner" { + const IsUnreadByOwner:boolean; + export default IsUnreadByOwner; +} +declare module "@salesforce/schema/Lead.CreatedDate" { + const CreatedDate:any; + export default CreatedDate; +} +declare module "@salesforce/schema/Lead.CreatedBy" { + const CreatedBy:any; + export default CreatedBy; +} +declare module "@salesforce/schema/Lead.CreatedById" { + const CreatedById:any; + export default CreatedById; +} +declare module "@salesforce/schema/Lead.LastModifiedDate" { + const LastModifiedDate:any; + export default LastModifiedDate; +} +declare module "@salesforce/schema/Lead.LastModifiedBy" { + const LastModifiedBy:any; + export default LastModifiedBy; +} +declare module "@salesforce/schema/Lead.LastModifiedById" { + const LastModifiedById:any; + export default LastModifiedById; +} +declare module "@salesforce/schema/Lead.SystemModstamp" { + const SystemModstamp:any; + export default SystemModstamp; +} +declare module "@salesforce/schema/Lead.LastActivityDate" { + const LastActivityDate:any; + export default LastActivityDate; +} +declare module "@salesforce/schema/Lead.LastViewedDate" { + const LastViewedDate:any; + export default LastViewedDate; +} +declare module "@salesforce/schema/Lead.LastReferencedDate" { + const LastReferencedDate:any; + export default LastReferencedDate; +} +declare module "@salesforce/schema/Lead.Jigsaw" { + const Jigsaw:string; + export default Jigsaw; +} +declare module "@salesforce/schema/Lead.JigsawContactId" { + const JigsawContactId:string; + export default JigsawContactId; +} +declare module "@salesforce/schema/Lead.CleanStatus" { + const CleanStatus:string; + export default CleanStatus; +} +declare module "@salesforce/schema/Lead.CompanyDunsNumber" { + const CompanyDunsNumber:string; + export default CompanyDunsNumber; +} +declare module "@salesforce/schema/Lead.DandbCompany" { + const DandbCompany:any; + export default DandbCompany; +} +declare module "@salesforce/schema/Lead.DandbCompanyId" { + const DandbCompanyId:any; + export default DandbCompanyId; +} +declare module "@salesforce/schema/Lead.EmailBouncedReason" { + const EmailBouncedReason:string; + export default EmailBouncedReason; +} +declare module "@salesforce/schema/Lead.EmailBouncedDate" { + const EmailBouncedDate:any; + export default EmailBouncedDate; +} +declare module "@salesforce/schema/Lead.Individual" { + const Individual:any; + export default Individual; +} +declare module "@salesforce/schema/Lead.IndividualId" { + const IndividualId:any; + export default IndividualId; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/sobjects/Note.d.ts b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Note.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..6a5a7d3332ceeef0c1905e19e35aa02fb3febb67 --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Note.d.ts @@ -0,0 +1,64 @@ +declare module "@salesforce/schema/Note.Id" { + const Id:any; + export default Id; +} +declare module "@salesforce/schema/Note.IsDeleted" { + const IsDeleted:boolean; + export default IsDeleted; +} +declare module "@salesforce/schema/Note.Parent" { + const Parent:any; + export default Parent; +} +declare module "@salesforce/schema/Note.ParentId" { + const ParentId:any; + export default ParentId; +} +declare module "@salesforce/schema/Note.Title" { + const Title:string; + export default Title; +} +declare module "@salesforce/schema/Note.IsPrivate" { + const IsPrivate:boolean; + export default IsPrivate; +} +declare module "@salesforce/schema/Note.Body" { + const Body:string; + export default Body; +} +declare module "@salesforce/schema/Note.Owner" { + const Owner:any; + export default Owner; +} +declare module "@salesforce/schema/Note.OwnerId" { + const OwnerId:any; + export default OwnerId; +} +declare module "@salesforce/schema/Note.CreatedDate" { + const CreatedDate:any; + export default CreatedDate; +} +declare module "@salesforce/schema/Note.CreatedBy" { + const CreatedBy:any; + export default CreatedBy; +} +declare module "@salesforce/schema/Note.CreatedById" { + const CreatedById:any; + export default CreatedById; +} +declare module "@salesforce/schema/Note.LastModifiedDate" { + const LastModifiedDate:any; + export default LastModifiedDate; +} +declare module "@salesforce/schema/Note.LastModifiedBy" { + const LastModifiedBy:any; + export default LastModifiedBy; +} +declare module "@salesforce/schema/Note.LastModifiedById" { + const LastModifiedById:any; + export default LastModifiedById; +} +declare module "@salesforce/schema/Note.SystemModstamp" { + const SystemModstamp:any; + export default SystemModstamp; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/sobjects/Opportunity.d.ts b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Opportunity.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..2d272df1e8df45a4b06199c7339e60fdfe3c6dfe --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Opportunity.d.ts @@ -0,0 +1,200 @@ +declare module "@salesforce/schema/Opportunity.Id" { + const Id:any; + export default Id; +} +declare module "@salesforce/schema/Opportunity.IsDeleted" { + const IsDeleted:boolean; + export default IsDeleted; +} +declare module "@salesforce/schema/Opportunity.Account" { + const Account:any; + export default Account; +} +declare module "@salesforce/schema/Opportunity.AccountId" { + const AccountId:any; + export default AccountId; +} +declare module "@salesforce/schema/Opportunity.IsPrivate" { + const IsPrivate:boolean; + export default IsPrivate; +} +declare module "@salesforce/schema/Opportunity.Name" { + const Name:string; + export default Name; +} +declare module "@salesforce/schema/Opportunity.Description" { + const Description:string; + export default Description; +} +declare module "@salesforce/schema/Opportunity.StageName" { + const StageName:string; + export default StageName; +} +declare module "@salesforce/schema/Opportunity.Amount" { + const Amount:number; + export default Amount; +} +declare module "@salesforce/schema/Opportunity.Probability" { + const Probability:number; + export default Probability; +} +declare module "@salesforce/schema/Opportunity.ExpectedRevenue" { + const ExpectedRevenue:number; + export default ExpectedRevenue; +} +declare module "@salesforce/schema/Opportunity.TotalOpportunityQuantity" { + const TotalOpportunityQuantity:number; + export default TotalOpportunityQuantity; +} +declare module "@salesforce/schema/Opportunity.CloseDate" { + const CloseDate:any; + export default CloseDate; +} +declare module "@salesforce/schema/Opportunity.Type" { + const Type:string; + export default Type; +} +declare module "@salesforce/schema/Opportunity.NextStep" { + const NextStep:string; + export default NextStep; +} +declare module "@salesforce/schema/Opportunity.LeadSource" { + const LeadSource:string; + export default LeadSource; +} +declare module "@salesforce/schema/Opportunity.IsClosed" { + const IsClosed:boolean; + export default IsClosed; +} +declare module "@salesforce/schema/Opportunity.IsWon" { + const IsWon:boolean; + export default IsWon; +} +declare module "@salesforce/schema/Opportunity.ForecastCategory" { + const ForecastCategory:string; + export default ForecastCategory; +} +declare module "@salesforce/schema/Opportunity.ForecastCategoryName" { + const ForecastCategoryName:string; + export default ForecastCategoryName; +} +declare module "@salesforce/schema/Opportunity.Campaign" { + const Campaign:any; + export default Campaign; +} +declare module "@salesforce/schema/Opportunity.CampaignId" { + const CampaignId:any; + export default CampaignId; +} +declare module "@salesforce/schema/Opportunity.HasOpportunityLineItem" { + const HasOpportunityLineItem:boolean; + export default HasOpportunityLineItem; +} +declare module "@salesforce/schema/Opportunity.Pricebook2" { + const Pricebook2:any; + export default Pricebook2; +} +declare module "@salesforce/schema/Opportunity.Pricebook2Id" { + const Pricebook2Id:any; + export default Pricebook2Id; +} +declare module "@salesforce/schema/Opportunity.Owner" { + const Owner:any; + export default Owner; +} +declare module "@salesforce/schema/Opportunity.OwnerId" { + const OwnerId:any; + export default OwnerId; +} +declare module "@salesforce/schema/Opportunity.CreatedDate" { + const CreatedDate:any; + export default CreatedDate; +} +declare module "@salesforce/schema/Opportunity.CreatedBy" { + const CreatedBy:any; + export default CreatedBy; +} +declare module "@salesforce/schema/Opportunity.CreatedById" { + const CreatedById:any; + export default CreatedById; +} +declare module "@salesforce/schema/Opportunity.LastModifiedDate" { + const LastModifiedDate:any; + export default LastModifiedDate; +} +declare module "@salesforce/schema/Opportunity.LastModifiedBy" { + const LastModifiedBy:any; + export default LastModifiedBy; +} +declare module "@salesforce/schema/Opportunity.LastModifiedById" { + const LastModifiedById:any; + export default LastModifiedById; +} +declare module "@salesforce/schema/Opportunity.SystemModstamp" { + const SystemModstamp:any; + export default SystemModstamp; +} +declare module "@salesforce/schema/Opportunity.LastActivityDate" { + const LastActivityDate:any; + export default LastActivityDate; +} +declare module "@salesforce/schema/Opportunity.PushCount" { + const PushCount:number; + export default PushCount; +} +declare module "@salesforce/schema/Opportunity.LastStageChangeDate" { + const LastStageChangeDate:any; + export default LastStageChangeDate; +} +declare module "@salesforce/schema/Opportunity.FiscalQuarter" { + const FiscalQuarter:number; + export default FiscalQuarter; +} +declare module "@salesforce/schema/Opportunity.FiscalYear" { + const FiscalYear:number; + export default FiscalYear; +} +declare module "@salesforce/schema/Opportunity.Fiscal" { + const Fiscal:string; + export default Fiscal; +} +declare module "@salesforce/schema/Opportunity.Contact" { + const Contact:any; + export default Contact; +} +declare module "@salesforce/schema/Opportunity.ContactId" { + const ContactId:any; + export default ContactId; +} +declare module "@salesforce/schema/Opportunity.LastViewedDate" { + const LastViewedDate:any; + export default LastViewedDate; +} +declare module "@salesforce/schema/Opportunity.LastReferencedDate" { + const LastReferencedDate:any; + export default LastReferencedDate; +} +declare module "@salesforce/schema/Opportunity.HasOpenActivity" { + const HasOpenActivity:boolean; + export default HasOpenActivity; +} +declare module "@salesforce/schema/Opportunity.HasOverdueTask" { + const HasOverdueTask:boolean; + export default HasOverdueTask; +} +declare module "@salesforce/schema/Opportunity.LastAmountChangedHistory" { + const LastAmountChangedHistory:any; + export default LastAmountChangedHistory; +} +declare module "@salesforce/schema/Opportunity.LastAmountChangedHistoryId" { + const LastAmountChangedHistoryId:any; + export default LastAmountChangedHistoryId; +} +declare module "@salesforce/schema/Opportunity.LastCloseDateChangedHistory" { + const LastCloseDateChangedHistory:any; + export default LastCloseDateChangedHistory; +} +declare module "@salesforce/schema/Opportunity.LastCloseDateChangedHistoryId" { + const LastCloseDateChangedHistoryId:any; + export default LastCloseDateChangedHistoryId; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/sobjects/Order.d.ts b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Order.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..cdf44e00d36a692995c7528e0907f301f3e12eba --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Order.d.ts @@ -0,0 +1,260 @@ +declare module "@salesforce/schema/Order.Id" { + const Id:any; + export default Id; +} +declare module "@salesforce/schema/Order.Owner" { + const Owner:any; + export default Owner; +} +declare module "@salesforce/schema/Order.OwnerId" { + const OwnerId:any; + export default OwnerId; +} +declare module "@salesforce/schema/Order.Contract" { + const Contract:any; + export default Contract; +} +declare module "@salesforce/schema/Order.ContractId" { + const ContractId:any; + export default ContractId; +} +declare module "@salesforce/schema/Order.Account" { + const Account:any; + export default Account; +} +declare module "@salesforce/schema/Order.AccountId" { + const AccountId:any; + export default AccountId; +} +declare module "@salesforce/schema/Order.Pricebook2" { + const Pricebook2:any; + export default Pricebook2; +} +declare module "@salesforce/schema/Order.Pricebook2Id" { + const Pricebook2Id:any; + export default Pricebook2Id; +} +declare module "@salesforce/schema/Order.OriginalOrder" { + const OriginalOrder:any; + export default OriginalOrder; +} +declare module "@salesforce/schema/Order.OriginalOrderId" { + const OriginalOrderId:any; + export default OriginalOrderId; +} +declare module "@salesforce/schema/Order.EffectiveDate" { + const EffectiveDate:any; + export default EffectiveDate; +} +declare module "@salesforce/schema/Order.EndDate" { + const EndDate:any; + export default EndDate; +} +declare module "@salesforce/schema/Order.IsReductionOrder" { + const IsReductionOrder:boolean; + export default IsReductionOrder; +} +declare module "@salesforce/schema/Order.Status" { + const Status:string; + export default Status; +} +declare module "@salesforce/schema/Order.Description" { + const Description:string; + export default Description; +} +declare module "@salesforce/schema/Order.CustomerAuthorizedBy" { + const CustomerAuthorizedBy:any; + export default CustomerAuthorizedBy; +} +declare module "@salesforce/schema/Order.CustomerAuthorizedById" { + const CustomerAuthorizedById:any; + export default CustomerAuthorizedById; +} +declare module "@salesforce/schema/Order.CustomerAuthorizedDate" { + const CustomerAuthorizedDate:any; + export default CustomerAuthorizedDate; +} +declare module "@salesforce/schema/Order.CompanyAuthorizedBy" { + const CompanyAuthorizedBy:any; + export default CompanyAuthorizedBy; +} +declare module "@salesforce/schema/Order.CompanyAuthorizedById" { + const CompanyAuthorizedById:any; + export default CompanyAuthorizedById; +} +declare module "@salesforce/schema/Order.CompanyAuthorizedDate" { + const CompanyAuthorizedDate:any; + export default CompanyAuthorizedDate; +} +declare module "@salesforce/schema/Order.Type" { + const Type:string; + export default Type; +} +declare module "@salesforce/schema/Order.BillingStreet" { + const BillingStreet:string; + export default BillingStreet; +} +declare module "@salesforce/schema/Order.BillingCity" { + const BillingCity:string; + export default BillingCity; +} +declare module "@salesforce/schema/Order.BillingState" { + const BillingState:string; + export default BillingState; +} +declare module "@salesforce/schema/Order.BillingPostalCode" { + const BillingPostalCode:string; + export default BillingPostalCode; +} +declare module "@salesforce/schema/Order.BillingCountry" { + const BillingCountry:string; + export default BillingCountry; +} +declare module "@salesforce/schema/Order.BillingLatitude" { + const BillingLatitude:number; + export default BillingLatitude; +} +declare module "@salesforce/schema/Order.BillingLongitude" { + const BillingLongitude:number; + export default BillingLongitude; +} +declare module "@salesforce/schema/Order.BillingGeocodeAccuracy" { + const BillingGeocodeAccuracy:string; + export default BillingGeocodeAccuracy; +} +declare module "@salesforce/schema/Order.BillingAddress" { + const BillingAddress:any; + export default BillingAddress; +} +declare module "@salesforce/schema/Order.ShippingStreet" { + const ShippingStreet:string; + export default ShippingStreet; +} +declare module "@salesforce/schema/Order.ShippingCity" { + const ShippingCity:string; + export default ShippingCity; +} +declare module "@salesforce/schema/Order.ShippingState" { + const ShippingState:string; + export default ShippingState; +} +declare module "@salesforce/schema/Order.ShippingPostalCode" { + const ShippingPostalCode:string; + export default ShippingPostalCode; +} +declare module "@salesforce/schema/Order.ShippingCountry" { + const ShippingCountry:string; + export default ShippingCountry; +} +declare module "@salesforce/schema/Order.ShippingLatitude" { + const ShippingLatitude:number; + export default ShippingLatitude; +} +declare module "@salesforce/schema/Order.ShippingLongitude" { + const ShippingLongitude:number; + export default ShippingLongitude; +} +declare module "@salesforce/schema/Order.ShippingGeocodeAccuracy" { + const ShippingGeocodeAccuracy:string; + export default ShippingGeocodeAccuracy; +} +declare module "@salesforce/schema/Order.ShippingAddress" { + const ShippingAddress:any; + export default ShippingAddress; +} +declare module "@salesforce/schema/Order.Name" { + const Name:string; + export default Name; +} +declare module "@salesforce/schema/Order.PoDate" { + const PoDate:any; + export default PoDate; +} +declare module "@salesforce/schema/Order.PoNumber" { + const PoNumber:string; + export default PoNumber; +} +declare module "@salesforce/schema/Order.OrderReferenceNumber" { + const OrderReferenceNumber:string; + export default OrderReferenceNumber; +} +declare module "@salesforce/schema/Order.BillToContact" { + const BillToContact:any; + export default BillToContact; +} +declare module "@salesforce/schema/Order.BillToContactId" { + const BillToContactId:any; + export default BillToContactId; +} +declare module "@salesforce/schema/Order.ShipToContact" { + const ShipToContact:any; + export default ShipToContact; +} +declare module "@salesforce/schema/Order.ShipToContactId" { + const ShipToContactId:any; + export default ShipToContactId; +} +declare module "@salesforce/schema/Order.ActivatedDate" { + const ActivatedDate:any; + export default ActivatedDate; +} +declare module "@salesforce/schema/Order.ActivatedBy" { + const ActivatedBy:any; + export default ActivatedBy; +} +declare module "@salesforce/schema/Order.ActivatedById" { + const ActivatedById:any; + export default ActivatedById; +} +declare module "@salesforce/schema/Order.StatusCode" { + const StatusCode:string; + export default StatusCode; +} +declare module "@salesforce/schema/Order.OrderNumber" { + const OrderNumber:string; + export default OrderNumber; +} +declare module "@salesforce/schema/Order.TotalAmount" { + const TotalAmount:number; + export default TotalAmount; +} +declare module "@salesforce/schema/Order.CreatedDate" { + const CreatedDate:any; + export default CreatedDate; +} +declare module "@salesforce/schema/Order.CreatedBy" { + const CreatedBy:any; + export default CreatedBy; +} +declare module "@salesforce/schema/Order.CreatedById" { + const CreatedById:any; + export default CreatedById; +} +declare module "@salesforce/schema/Order.LastModifiedDate" { + const LastModifiedDate:any; + export default LastModifiedDate; +} +declare module "@salesforce/schema/Order.LastModifiedBy" { + const LastModifiedBy:any; + export default LastModifiedBy; +} +declare module "@salesforce/schema/Order.LastModifiedById" { + const LastModifiedById:any; + export default LastModifiedById; +} +declare module "@salesforce/schema/Order.IsDeleted" { + const IsDeleted:boolean; + export default IsDeleted; +} +declare module "@salesforce/schema/Order.SystemModstamp" { + const SystemModstamp:any; + export default SystemModstamp; +} +declare module "@salesforce/schema/Order.LastViewedDate" { + const LastViewedDate:any; + export default LastViewedDate; +} +declare module "@salesforce/schema/Order.LastReferencedDate" { + const LastReferencedDate:any; + export default LastReferencedDate; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/sobjects/Pricebook2.d.ts b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Pricebook2.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..844f83ab18cf1b1cf198a03d399f4f46996b713d --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Pricebook2.d.ts @@ -0,0 +1,64 @@ +declare module "@salesforce/schema/Pricebook2.Id" { + const Id:any; + export default Id; +} +declare module "@salesforce/schema/Pricebook2.IsDeleted" { + const IsDeleted:boolean; + export default IsDeleted; +} +declare module "@salesforce/schema/Pricebook2.Name" { + const Name:string; + export default Name; +} +declare module "@salesforce/schema/Pricebook2.CreatedDate" { + const CreatedDate:any; + export default CreatedDate; +} +declare module "@salesforce/schema/Pricebook2.CreatedBy" { + const CreatedBy:any; + export default CreatedBy; +} +declare module "@salesforce/schema/Pricebook2.CreatedById" { + const CreatedById:any; + export default CreatedById; +} +declare module "@salesforce/schema/Pricebook2.LastModifiedDate" { + const LastModifiedDate:any; + export default LastModifiedDate; +} +declare module "@salesforce/schema/Pricebook2.LastModifiedBy" { + const LastModifiedBy:any; + export default LastModifiedBy; +} +declare module "@salesforce/schema/Pricebook2.LastModifiedById" { + const LastModifiedById:any; + export default LastModifiedById; +} +declare module "@salesforce/schema/Pricebook2.SystemModstamp" { + const SystemModstamp:any; + export default SystemModstamp; +} +declare module "@salesforce/schema/Pricebook2.LastViewedDate" { + const LastViewedDate:any; + export default LastViewedDate; +} +declare module "@salesforce/schema/Pricebook2.LastReferencedDate" { + const LastReferencedDate:any; + export default LastReferencedDate; +} +declare module "@salesforce/schema/Pricebook2.IsActive" { + const IsActive:boolean; + export default IsActive; +} +declare module "@salesforce/schema/Pricebook2.IsArchived" { + const IsArchived:boolean; + export default IsArchived; +} +declare module "@salesforce/schema/Pricebook2.Description" { + const Description:string; + export default Description; +} +declare module "@salesforce/schema/Pricebook2.IsStandard" { + const IsStandard:boolean; + export default IsStandard; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/sobjects/PricebookEntry.d.ts b/proxy-lite-work/.sfdx/typings/lwc/sobjects/PricebookEntry.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..c853b68fc464479dcbc8ca4a701fea356f8189a3 --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/sobjects/PricebookEntry.d.ts @@ -0,0 +1,76 @@ +declare module "@salesforce/schema/PricebookEntry.Id" { + const Id:any; + export default Id; +} +declare module "@salesforce/schema/PricebookEntry.Name" { + const Name:string; + export default Name; +} +declare module "@salesforce/schema/PricebookEntry.Pricebook2" { + const Pricebook2:any; + export default Pricebook2; +} +declare module "@salesforce/schema/PricebookEntry.Pricebook2Id" { + const Pricebook2Id:any; + export default Pricebook2Id; +} +declare module "@salesforce/schema/PricebookEntry.Product2" { + const Product2:any; + export default Product2; +} +declare module "@salesforce/schema/PricebookEntry.Product2Id" { + const Product2Id:any; + export default Product2Id; +} +declare module "@salesforce/schema/PricebookEntry.UnitPrice" { + const UnitPrice:number; + export default UnitPrice; +} +declare module "@salesforce/schema/PricebookEntry.IsActive" { + const IsActive:boolean; + export default IsActive; +} +declare module "@salesforce/schema/PricebookEntry.UseStandardPrice" { + const UseStandardPrice:boolean; + export default UseStandardPrice; +} +declare module "@salesforce/schema/PricebookEntry.CreatedDate" { + const CreatedDate:any; + export default CreatedDate; +} +declare module "@salesforce/schema/PricebookEntry.CreatedBy" { + const CreatedBy:any; + export default CreatedBy; +} +declare module "@salesforce/schema/PricebookEntry.CreatedById" { + const CreatedById:any; + export default CreatedById; +} +declare module "@salesforce/schema/PricebookEntry.LastModifiedDate" { + const LastModifiedDate:any; + export default LastModifiedDate; +} +declare module "@salesforce/schema/PricebookEntry.LastModifiedBy" { + const LastModifiedBy:any; + export default LastModifiedBy; +} +declare module "@salesforce/schema/PricebookEntry.LastModifiedById" { + const LastModifiedById:any; + export default LastModifiedById; +} +declare module "@salesforce/schema/PricebookEntry.SystemModstamp" { + const SystemModstamp:any; + export default SystemModstamp; +} +declare module "@salesforce/schema/PricebookEntry.ProductCode" { + const ProductCode:string; + export default ProductCode; +} +declare module "@salesforce/schema/PricebookEntry.IsDeleted" { + const IsDeleted:boolean; + export default IsDeleted; +} +declare module "@salesforce/schema/PricebookEntry.IsArchived" { + const IsArchived:boolean; + export default IsArchived; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/sobjects/Product2.d.ts b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Product2.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..de6d8a54e17860dfce0f7129209877bc7f0f0f52 --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Product2.d.ts @@ -0,0 +1,96 @@ +declare module "@salesforce/schema/Product2.Id" { + const Id:any; + export default Id; +} +declare module "@salesforce/schema/Product2.Name" { + const Name:string; + export default Name; +} +declare module "@salesforce/schema/Product2.ProductCode" { + const ProductCode:string; + export default ProductCode; +} +declare module "@salesforce/schema/Product2.Description" { + const Description:string; + export default Description; +} +declare module "@salesforce/schema/Product2.IsActive" { + const IsActive:boolean; + export default IsActive; +} +declare module "@salesforce/schema/Product2.CreatedDate" { + const CreatedDate:any; + export default CreatedDate; +} +declare module "@salesforce/schema/Product2.CreatedBy" { + const CreatedBy:any; + export default CreatedBy; +} +declare module "@salesforce/schema/Product2.CreatedById" { + const CreatedById:any; + export default CreatedById; +} +declare module "@salesforce/schema/Product2.LastModifiedDate" { + const LastModifiedDate:any; + export default LastModifiedDate; +} +declare module "@salesforce/schema/Product2.LastModifiedBy" { + const LastModifiedBy:any; + export default LastModifiedBy; +} +declare module "@salesforce/schema/Product2.LastModifiedById" { + const LastModifiedById:any; + export default LastModifiedById; +} +declare module "@salesforce/schema/Product2.SystemModstamp" { + const SystemModstamp:any; + export default SystemModstamp; +} +declare module "@salesforce/schema/Product2.Family" { + const Family:string; + export default Family; +} +declare module "@salesforce/schema/Product2.IsSerialized" { + const IsSerialized:boolean; + export default IsSerialized; +} +declare module "@salesforce/schema/Product2.ExternalDataSource" { + const ExternalDataSource:any; + export default ExternalDataSource; +} +declare module "@salesforce/schema/Product2.ExternalDataSourceId" { + const ExternalDataSourceId:any; + export default ExternalDataSourceId; +} +declare module "@salesforce/schema/Product2.ExternalId" { + const ExternalId:string; + export default ExternalId; +} +declare module "@salesforce/schema/Product2.DisplayUrl" { + const DisplayUrl:string; + export default DisplayUrl; +} +declare module "@salesforce/schema/Product2.QuantityUnitOfMeasure" { + const QuantityUnitOfMeasure:string; + export default QuantityUnitOfMeasure; +} +declare module "@salesforce/schema/Product2.IsDeleted" { + const IsDeleted:boolean; + export default IsDeleted; +} +declare module "@salesforce/schema/Product2.IsArchived" { + const IsArchived:boolean; + export default IsArchived; +} +declare module "@salesforce/schema/Product2.LastViewedDate" { + const LastViewedDate:any; + export default LastViewedDate; +} +declare module "@salesforce/schema/Product2.LastReferencedDate" { + const LastReferencedDate:any; + export default LastReferencedDate; +} +declare module "@salesforce/schema/Product2.StockKeepingUnit" { + const StockKeepingUnit:string; + export default StockKeepingUnit; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/sobjects/RecordType.d.ts b/proxy-lite-work/.sfdx/typings/lwc/sobjects/RecordType.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..f4f98c3c3d18a368fc43515866f78b84ef0e75e7 --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/sobjects/RecordType.d.ts @@ -0,0 +1,64 @@ +declare module "@salesforce/schema/RecordType.Id" { + const Id:any; + export default Id; +} +declare module "@salesforce/schema/RecordType.Name" { + const Name:string; + export default Name; +} +declare module "@salesforce/schema/RecordType.DeveloperName" { + const DeveloperName:string; + export default DeveloperName; +} +declare module "@salesforce/schema/RecordType.NamespacePrefix" { + const NamespacePrefix:string; + export default NamespacePrefix; +} +declare module "@salesforce/schema/RecordType.Description" { + const Description:string; + export default Description; +} +declare module "@salesforce/schema/RecordType.BusinessProcess" { + const BusinessProcess:any; + export default BusinessProcess; +} +declare module "@salesforce/schema/RecordType.BusinessProcessId" { + const BusinessProcessId:any; + export default BusinessProcessId; +} +declare module "@salesforce/schema/RecordType.SobjectType" { + const SobjectType:string; + export default SobjectType; +} +declare module "@salesforce/schema/RecordType.IsActive" { + const IsActive:boolean; + export default IsActive; +} +declare module "@salesforce/schema/RecordType.CreatedBy" { + const CreatedBy:any; + export default CreatedBy; +} +declare module "@salesforce/schema/RecordType.CreatedById" { + const CreatedById:any; + export default CreatedById; +} +declare module "@salesforce/schema/RecordType.CreatedDate" { + const CreatedDate:any; + export default CreatedDate; +} +declare module "@salesforce/schema/RecordType.LastModifiedBy" { + const LastModifiedBy:any; + export default LastModifiedBy; +} +declare module "@salesforce/schema/RecordType.LastModifiedById" { + const LastModifiedById:any; + export default LastModifiedById; +} +declare module "@salesforce/schema/RecordType.LastModifiedDate" { + const LastModifiedDate:any; + export default LastModifiedDate; +} +declare module "@salesforce/schema/RecordType.SystemModstamp" { + const SystemModstamp:any; + export default SystemModstamp; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/sobjects/Report.d.ts b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Report.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..0140126cbd66efc203e060a8f56805b282007b2d --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Report.d.ts @@ -0,0 +1,80 @@ +declare module "@salesforce/schema/Report.Id" { + const Id:any; + export default Id; +} +declare module "@salesforce/schema/Report.Owner" { + const Owner:any; + export default Owner; +} +declare module "@salesforce/schema/Report.OwnerId" { + const OwnerId:any; + export default OwnerId; +} +declare module "@salesforce/schema/Report.FolderName" { + const FolderName:string; + export default FolderName; +} +declare module "@salesforce/schema/Report.CreatedDate" { + const CreatedDate:any; + export default CreatedDate; +} +declare module "@salesforce/schema/Report.CreatedBy" { + const CreatedBy:any; + export default CreatedBy; +} +declare module "@salesforce/schema/Report.CreatedById" { + const CreatedById:any; + export default CreatedById; +} +declare module "@salesforce/schema/Report.LastModifiedDate" { + const LastModifiedDate:any; + export default LastModifiedDate; +} +declare module "@salesforce/schema/Report.LastModifiedBy" { + const LastModifiedBy:any; + export default LastModifiedBy; +} +declare module "@salesforce/schema/Report.LastModifiedById" { + const LastModifiedById:any; + export default LastModifiedById; +} +declare module "@salesforce/schema/Report.IsDeleted" { + const IsDeleted:boolean; + export default IsDeleted; +} +declare module "@salesforce/schema/Report.Name" { + const Name:string; + export default Name; +} +declare module "@salesforce/schema/Report.Description" { + const Description:string; + export default Description; +} +declare module "@salesforce/schema/Report.DeveloperName" { + const DeveloperName:string; + export default DeveloperName; +} +declare module "@salesforce/schema/Report.NamespacePrefix" { + const NamespacePrefix:string; + export default NamespacePrefix; +} +declare module "@salesforce/schema/Report.LastRunDate" { + const LastRunDate:any; + export default LastRunDate; +} +declare module "@salesforce/schema/Report.SystemModstamp" { + const SystemModstamp:any; + export default SystemModstamp; +} +declare module "@salesforce/schema/Report.Format" { + const Format:string; + export default Format; +} +declare module "@salesforce/schema/Report.LastViewedDate" { + const LastViewedDate:any; + export default LastViewedDate; +} +declare module "@salesforce/schema/Report.LastReferencedDate" { + const LastReferencedDate:any; + export default LastReferencedDate; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/sobjects/Task.d.ts b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Task.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..84625365c36317bc3dbd72fc6e22bd3debe579ea --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/sobjects/Task.d.ts @@ -0,0 +1,184 @@ +declare module "@salesforce/schema/Task.Id" { + const Id:any; + export default Id; +} +declare module "@salesforce/schema/Task.Who" { + const Who:any; + export default Who; +} +declare module "@salesforce/schema/Task.WhoId" { + const WhoId:any; + export default WhoId; +} +declare module "@salesforce/schema/Task.What" { + const What:any; + export default What; +} +declare module "@salesforce/schema/Task.WhatId" { + const WhatId:any; + export default WhatId; +} +declare module "@salesforce/schema/Task.Subject" { + const Subject:string; + export default Subject; +} +declare module "@salesforce/schema/Task.ActivityDate" { + const ActivityDate:any; + export default ActivityDate; +} +declare module "@salesforce/schema/Task.Status" { + const Status:string; + export default Status; +} +declare module "@salesforce/schema/Task.Priority" { + const Priority:string; + export default Priority; +} +declare module "@salesforce/schema/Task.IsHighPriority" { + const IsHighPriority:boolean; + export default IsHighPriority; +} +declare module "@salesforce/schema/Task.Owner" { + const Owner:any; + export default Owner; +} +declare module "@salesforce/schema/Task.OwnerId" { + const OwnerId:any; + export default OwnerId; +} +declare module "@salesforce/schema/Task.Description" { + const Description:string; + export default Description; +} +declare module "@salesforce/schema/Task.IsDeleted" { + const IsDeleted:boolean; + export default IsDeleted; +} +declare module "@salesforce/schema/Task.Account" { + const Account:any; + export default Account; +} +declare module "@salesforce/schema/Task.AccountId" { + const AccountId:any; + export default AccountId; +} +declare module "@salesforce/schema/Task.IsClosed" { + const IsClosed:boolean; + export default IsClosed; +} +declare module "@salesforce/schema/Task.CreatedDate" { + const CreatedDate:any; + export default CreatedDate; +} +declare module "@salesforce/schema/Task.CreatedBy" { + const CreatedBy:any; + export default CreatedBy; +} +declare module "@salesforce/schema/Task.CreatedById" { + const CreatedById:any; + export default CreatedById; +} +declare module "@salesforce/schema/Task.LastModifiedDate" { + const LastModifiedDate:any; + export default LastModifiedDate; +} +declare module "@salesforce/schema/Task.LastModifiedBy" { + const LastModifiedBy:any; + export default LastModifiedBy; +} +declare module "@salesforce/schema/Task.LastModifiedById" { + const LastModifiedById:any; + export default LastModifiedById; +} +declare module "@salesforce/schema/Task.SystemModstamp" { + const SystemModstamp:any; + export default SystemModstamp; +} +declare module "@salesforce/schema/Task.IsArchived" { + const IsArchived:boolean; + export default IsArchived; +} +declare module "@salesforce/schema/Task.CallDurationInSeconds" { + const CallDurationInSeconds:number; + export default CallDurationInSeconds; +} +declare module "@salesforce/schema/Task.CallType" { + const CallType:string; + export default CallType; +} +declare module "@salesforce/schema/Task.CallDisposition" { + const CallDisposition:string; + export default CallDisposition; +} +declare module "@salesforce/schema/Task.CallObject" { + const CallObject:string; + export default CallObject; +} +declare module "@salesforce/schema/Task.ReminderDateTime" { + const ReminderDateTime:any; + export default ReminderDateTime; +} +declare module "@salesforce/schema/Task.IsReminderSet" { + const IsReminderSet:boolean; + export default IsReminderSet; +} +declare module "@salesforce/schema/Task.RecurrenceActivity" { + const RecurrenceActivity:any; + export default RecurrenceActivity; +} +declare module "@salesforce/schema/Task.RecurrenceActivityId" { + const RecurrenceActivityId:any; + export default RecurrenceActivityId; +} +declare module "@salesforce/schema/Task.IsRecurrence" { + const IsRecurrence:boolean; + export default IsRecurrence; +} +declare module "@salesforce/schema/Task.RecurrenceStartDateOnly" { + const RecurrenceStartDateOnly:any; + export default RecurrenceStartDateOnly; +} +declare module "@salesforce/schema/Task.RecurrenceEndDateOnly" { + const RecurrenceEndDateOnly:any; + export default RecurrenceEndDateOnly; +} +declare module "@salesforce/schema/Task.RecurrenceTimeZoneSidKey" { + const RecurrenceTimeZoneSidKey:string; + export default RecurrenceTimeZoneSidKey; +} +declare module "@salesforce/schema/Task.RecurrenceType" { + const RecurrenceType:string; + export default RecurrenceType; +} +declare module "@salesforce/schema/Task.RecurrenceInterval" { + const RecurrenceInterval:number; + export default RecurrenceInterval; +} +declare module "@salesforce/schema/Task.RecurrenceDayOfWeekMask" { + const RecurrenceDayOfWeekMask:number; + export default RecurrenceDayOfWeekMask; +} +declare module "@salesforce/schema/Task.RecurrenceDayOfMonth" { + const RecurrenceDayOfMonth:number; + export default RecurrenceDayOfMonth; +} +declare module "@salesforce/schema/Task.RecurrenceInstance" { + const RecurrenceInstance:string; + export default RecurrenceInstance; +} +declare module "@salesforce/schema/Task.RecurrenceMonthOfYear" { + const RecurrenceMonthOfYear:string; + export default RecurrenceMonthOfYear; +} +declare module "@salesforce/schema/Task.RecurrenceRegeneratedType" { + const RecurrenceRegeneratedType:string; + export default RecurrenceRegeneratedType; +} +declare module "@salesforce/schema/Task.TaskSubtype" { + const TaskSubtype:string; + export default TaskSubtype; +} +declare module "@salesforce/schema/Task.CompletedDateTime" { + const CompletedDateTime:any; + export default CompletedDateTime; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/sobjects/User.d.ts b/proxy-lite-work/.sfdx/typings/lwc/sobjects/User.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..ccb24415eb4da8f3bec39c4ec3e457f243da2167 --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/sobjects/User.d.ts @@ -0,0 +1,752 @@ +declare module "@salesforce/schema/User.Id" { + const Id:any; + export default Id; +} +declare module "@salesforce/schema/User.Username" { + const Username:string; + export default Username; +} +declare module "@salesforce/schema/User.LastName" { + const LastName:string; + export default LastName; +} +declare module "@salesforce/schema/User.FirstName" { + const FirstName:string; + export default FirstName; +} +declare module "@salesforce/schema/User.Name" { + const Name:string; + export default Name; +} +declare module "@salesforce/schema/User.CompanyName" { + const CompanyName:string; + export default CompanyName; +} +declare module "@salesforce/schema/User.Division" { + const Division:string; + export default Division; +} +declare module "@salesforce/schema/User.Department" { + const Department:string; + export default Department; +} +declare module "@salesforce/schema/User.Title" { + const Title:string; + export default Title; +} +declare module "@salesforce/schema/User.Street" { + const Street:string; + export default Street; +} +declare module "@salesforce/schema/User.City" { + const City:string; + export default City; +} +declare module "@salesforce/schema/User.State" { + const State:string; + export default State; +} +declare module "@salesforce/schema/User.PostalCode" { + const PostalCode:string; + export default PostalCode; +} +declare module "@salesforce/schema/User.Country" { + const Country:string; + export default Country; +} +declare module "@salesforce/schema/User.Latitude" { + const Latitude:number; + export default Latitude; +} +declare module "@salesforce/schema/User.Longitude" { + const Longitude:number; + export default Longitude; +} +declare module "@salesforce/schema/User.GeocodeAccuracy" { + const GeocodeAccuracy:string; + export default GeocodeAccuracy; +} +declare module "@salesforce/schema/User.Address" { + const Address:any; + export default Address; +} +declare module "@salesforce/schema/User.Email" { + const Email:string; + export default Email; +} +declare module "@salesforce/schema/User.EmailPreferencesAutoBcc" { + const EmailPreferencesAutoBcc:boolean; + export default EmailPreferencesAutoBcc; +} +declare module "@salesforce/schema/User.EmailPreferencesAutoBccStayInTouch" { + const EmailPreferencesAutoBccStayInTouch:boolean; + export default EmailPreferencesAutoBccStayInTouch; +} +declare module "@salesforce/schema/User.EmailPreferencesStayInTouchReminder" { + const EmailPreferencesStayInTouchReminder:boolean; + export default EmailPreferencesStayInTouchReminder; +} +declare module "@salesforce/schema/User.SenderEmail" { + const SenderEmail:string; + export default SenderEmail; +} +declare module "@salesforce/schema/User.SenderName" { + const SenderName:string; + export default SenderName; +} +declare module "@salesforce/schema/User.Signature" { + const Signature:string; + export default Signature; +} +declare module "@salesforce/schema/User.StayInTouchSubject" { + const StayInTouchSubject:string; + export default StayInTouchSubject; +} +declare module "@salesforce/schema/User.StayInTouchSignature" { + const StayInTouchSignature:string; + export default StayInTouchSignature; +} +declare module "@salesforce/schema/User.StayInTouchNote" { + const StayInTouchNote:string; + export default StayInTouchNote; +} +declare module "@salesforce/schema/User.Phone" { + const Phone:string; + export default Phone; +} +declare module "@salesforce/schema/User.Fax" { + const Fax:string; + export default Fax; +} +declare module "@salesforce/schema/User.MobilePhone" { + const MobilePhone:string; + export default MobilePhone; +} +declare module "@salesforce/schema/User.Alias" { + const Alias:string; + export default Alias; +} +declare module "@salesforce/schema/User.CommunityNickname" { + const CommunityNickname:string; + export default CommunityNickname; +} +declare module "@salesforce/schema/User.BadgeText" { + const BadgeText:string; + export default BadgeText; +} +declare module "@salesforce/schema/User.IsActive" { + const IsActive:boolean; + export default IsActive; +} +declare module "@salesforce/schema/User.TimeZoneSidKey" { + const TimeZoneSidKey:string; + export default TimeZoneSidKey; +} +declare module "@salesforce/schema/User.UserRole" { + const UserRole:any; + export default UserRole; +} +declare module "@salesforce/schema/User.UserRoleId" { + const UserRoleId:any; + export default UserRoleId; +} +declare module "@salesforce/schema/User.LocaleSidKey" { + const LocaleSidKey:string; + export default LocaleSidKey; +} +declare module "@salesforce/schema/User.ReceivesInfoEmails" { + const ReceivesInfoEmails:boolean; + export default ReceivesInfoEmails; +} +declare module "@salesforce/schema/User.ReceivesAdminInfoEmails" { + const ReceivesAdminInfoEmails:boolean; + export default ReceivesAdminInfoEmails; +} +declare module "@salesforce/schema/User.EmailEncodingKey" { + const EmailEncodingKey:string; + export default EmailEncodingKey; +} +declare module "@salesforce/schema/User.Profile" { + const Profile:any; + export default Profile; +} +declare module "@salesforce/schema/User.ProfileId" { + const ProfileId:any; + export default ProfileId; +} +declare module "@salesforce/schema/User.UserType" { + const UserType:string; + export default UserType; +} +declare module "@salesforce/schema/User.LanguageLocaleKey" { + const LanguageLocaleKey:string; + export default LanguageLocaleKey; +} +declare module "@salesforce/schema/User.EmployeeNumber" { + const EmployeeNumber:string; + export default EmployeeNumber; +} +declare module "@salesforce/schema/User.DelegatedApprover" { + const DelegatedApprover:any; + export default DelegatedApprover; +} +declare module "@salesforce/schema/User.DelegatedApproverId" { + const DelegatedApproverId:any; + export default DelegatedApproverId; +} +declare module "@salesforce/schema/User.Manager" { + const Manager:any; + export default Manager; +} +declare module "@salesforce/schema/User.ManagerId" { + const ManagerId:any; + export default ManagerId; +} +declare module "@salesforce/schema/User.LastLoginDate" { + const LastLoginDate:any; + export default LastLoginDate; +} +declare module "@salesforce/schema/User.LastPasswordChangeDate" { + const LastPasswordChangeDate:any; + export default LastPasswordChangeDate; +} +declare module "@salesforce/schema/User.CreatedDate" { + const CreatedDate:any; + export default CreatedDate; +} +declare module "@salesforce/schema/User.CreatedBy" { + const CreatedBy:any; + export default CreatedBy; +} +declare module "@salesforce/schema/User.CreatedById" { + const CreatedById:any; + export default CreatedById; +} +declare module "@salesforce/schema/User.LastModifiedDate" { + const LastModifiedDate:any; + export default LastModifiedDate; +} +declare module "@salesforce/schema/User.LastModifiedBy" { + const LastModifiedBy:any; + export default LastModifiedBy; +} +declare module "@salesforce/schema/User.LastModifiedById" { + const LastModifiedById:any; + export default LastModifiedById; +} +declare module "@salesforce/schema/User.SystemModstamp" { + const SystemModstamp:any; + export default SystemModstamp; +} +declare module "@salesforce/schema/User.NumberOfFailedLogins" { + const NumberOfFailedLogins:number; + export default NumberOfFailedLogins; +} +declare module "@salesforce/schema/User.OfflineTrialExpirationDate" { + const OfflineTrialExpirationDate:any; + export default OfflineTrialExpirationDate; +} +declare module "@salesforce/schema/User.OfflinePdaTrialExpirationDate" { + const OfflinePdaTrialExpirationDate:any; + export default OfflinePdaTrialExpirationDate; +} +declare module "@salesforce/schema/User.UserPermissionsMarketingUser" { + const UserPermissionsMarketingUser:boolean; + export default UserPermissionsMarketingUser; +} +declare module "@salesforce/schema/User.UserPermissionsOfflineUser" { + const UserPermissionsOfflineUser:boolean; + export default UserPermissionsOfflineUser; +} +declare module "@salesforce/schema/User.UserPermissionsCallCenterAutoLogin" { + const UserPermissionsCallCenterAutoLogin:boolean; + export default UserPermissionsCallCenterAutoLogin; +} +declare module "@salesforce/schema/User.UserPermissionsSFContentUser" { + const UserPermissionsSFContentUser:boolean; + export default UserPermissionsSFContentUser; +} +declare module "@salesforce/schema/User.UserPermissionsKnowledgeUser" { + const UserPermissionsKnowledgeUser:boolean; + export default UserPermissionsKnowledgeUser; +} +declare module "@salesforce/schema/User.UserPermissionsInteractionUser" { + const UserPermissionsInteractionUser:boolean; + export default UserPermissionsInteractionUser; +} +declare module "@salesforce/schema/User.UserPermissionsSupportUser" { + const UserPermissionsSupportUser:boolean; + export default UserPermissionsSupportUser; +} +declare module "@salesforce/schema/User.UserPermissionsJigsawProspectingUser" { + const UserPermissionsJigsawProspectingUser:boolean; + export default UserPermissionsJigsawProspectingUser; +} +declare module "@salesforce/schema/User.UserPermissionsSiteforceContributorUser" { + const UserPermissionsSiteforceContributorUser:boolean; + export default UserPermissionsSiteforceContributorUser; +} +declare module "@salesforce/schema/User.UserPermissionsSiteforcePublisherUser" { + const UserPermissionsSiteforcePublisherUser:boolean; + export default UserPermissionsSiteforcePublisherUser; +} +declare module "@salesforce/schema/User.UserPermissionsWorkDotComUserFeature" { + const UserPermissionsWorkDotComUserFeature:boolean; + export default UserPermissionsWorkDotComUserFeature; +} +declare module "@salesforce/schema/User.ForecastEnabled" { + const ForecastEnabled:boolean; + export default ForecastEnabled; +} +declare module "@salesforce/schema/User.UserPreferencesActivityRemindersPopup" { + const UserPreferencesActivityRemindersPopup:boolean; + export default UserPreferencesActivityRemindersPopup; +} +declare module "@salesforce/schema/User.UserPreferencesEventRemindersCheckboxDefault" { + const UserPreferencesEventRemindersCheckboxDefault:boolean; + export default UserPreferencesEventRemindersCheckboxDefault; +} +declare module "@salesforce/schema/User.UserPreferencesTaskRemindersCheckboxDefault" { + const UserPreferencesTaskRemindersCheckboxDefault:boolean; + export default UserPreferencesTaskRemindersCheckboxDefault; +} +declare module "@salesforce/schema/User.UserPreferencesReminderSoundOff" { + const UserPreferencesReminderSoundOff:boolean; + export default UserPreferencesReminderSoundOff; +} +declare module "@salesforce/schema/User.UserPreferencesDisableAllFeedsEmail" { + const UserPreferencesDisableAllFeedsEmail:boolean; + export default UserPreferencesDisableAllFeedsEmail; +} +declare module "@salesforce/schema/User.UserPreferencesDisableFollowersEmail" { + const UserPreferencesDisableFollowersEmail:boolean; + export default UserPreferencesDisableFollowersEmail; +} +declare module "@salesforce/schema/User.UserPreferencesDisableProfilePostEmail" { + const UserPreferencesDisableProfilePostEmail:boolean; + export default UserPreferencesDisableProfilePostEmail; +} +declare module "@salesforce/schema/User.UserPreferencesDisableChangeCommentEmail" { + const UserPreferencesDisableChangeCommentEmail:boolean; + export default UserPreferencesDisableChangeCommentEmail; +} +declare module "@salesforce/schema/User.UserPreferencesDisableLaterCommentEmail" { + const UserPreferencesDisableLaterCommentEmail:boolean; + export default UserPreferencesDisableLaterCommentEmail; +} +declare module "@salesforce/schema/User.UserPreferencesDisProfPostCommentEmail" { + const UserPreferencesDisProfPostCommentEmail:boolean; + export default UserPreferencesDisProfPostCommentEmail; +} +declare module "@salesforce/schema/User.UserPreferencesContentNoEmail" { + const UserPreferencesContentNoEmail:boolean; + export default UserPreferencesContentNoEmail; +} +declare module "@salesforce/schema/User.UserPreferencesContentEmailAsAndWhen" { + const UserPreferencesContentEmailAsAndWhen:boolean; + export default UserPreferencesContentEmailAsAndWhen; +} +declare module "@salesforce/schema/User.UserPreferencesApexPagesDeveloperMode" { + const UserPreferencesApexPagesDeveloperMode:boolean; + export default UserPreferencesApexPagesDeveloperMode; +} +declare module "@salesforce/schema/User.UserPreferencesReceiveNoNotificationsAsApprover" { + const UserPreferencesReceiveNoNotificationsAsApprover:boolean; + export default UserPreferencesReceiveNoNotificationsAsApprover; +} +declare module "@salesforce/schema/User.UserPreferencesReceiveNotificationsAsDelegatedApprover" { + const UserPreferencesReceiveNotificationsAsDelegatedApprover:boolean; + export default UserPreferencesReceiveNotificationsAsDelegatedApprover; +} +declare module "@salesforce/schema/User.UserPreferencesHideCSNGetChatterMobileTask" { + const UserPreferencesHideCSNGetChatterMobileTask:boolean; + export default UserPreferencesHideCSNGetChatterMobileTask; +} +declare module "@salesforce/schema/User.UserPreferencesDisableMentionsPostEmail" { + const UserPreferencesDisableMentionsPostEmail:boolean; + export default UserPreferencesDisableMentionsPostEmail; +} +declare module "@salesforce/schema/User.UserPreferencesDisMentionsCommentEmail" { + const UserPreferencesDisMentionsCommentEmail:boolean; + export default UserPreferencesDisMentionsCommentEmail; +} +declare module "@salesforce/schema/User.UserPreferencesHideCSNDesktopTask" { + const UserPreferencesHideCSNDesktopTask:boolean; + export default UserPreferencesHideCSNDesktopTask; +} +declare module "@salesforce/schema/User.UserPreferencesHideChatterOnboardingSplash" { + const UserPreferencesHideChatterOnboardingSplash:boolean; + export default UserPreferencesHideChatterOnboardingSplash; +} +declare module "@salesforce/schema/User.UserPreferencesHideSecondChatterOnboardingSplash" { + const UserPreferencesHideSecondChatterOnboardingSplash:boolean; + export default UserPreferencesHideSecondChatterOnboardingSplash; +} +declare module "@salesforce/schema/User.UserPreferencesDisCommentAfterLikeEmail" { + const UserPreferencesDisCommentAfterLikeEmail:boolean; + export default UserPreferencesDisCommentAfterLikeEmail; +} +declare module "@salesforce/schema/User.UserPreferencesDisableLikeEmail" { + const UserPreferencesDisableLikeEmail:boolean; + export default UserPreferencesDisableLikeEmail; +} +declare module "@salesforce/schema/User.UserPreferencesSortFeedByComment" { + const UserPreferencesSortFeedByComment:boolean; + export default UserPreferencesSortFeedByComment; +} +declare module "@salesforce/schema/User.UserPreferencesDisableMessageEmail" { + const UserPreferencesDisableMessageEmail:boolean; + export default UserPreferencesDisableMessageEmail; +} +declare module "@salesforce/schema/User.UserPreferencesJigsawListUser" { + const UserPreferencesJigsawListUser:boolean; + export default UserPreferencesJigsawListUser; +} +declare module "@salesforce/schema/User.UserPreferencesDisableBookmarkEmail" { + const UserPreferencesDisableBookmarkEmail:boolean; + export default UserPreferencesDisableBookmarkEmail; +} +declare module "@salesforce/schema/User.UserPreferencesDisableSharePostEmail" { + const UserPreferencesDisableSharePostEmail:boolean; + export default UserPreferencesDisableSharePostEmail; +} +declare module "@salesforce/schema/User.UserPreferencesEnableAutoSubForFeeds" { + const UserPreferencesEnableAutoSubForFeeds:boolean; + export default UserPreferencesEnableAutoSubForFeeds; +} +declare module "@salesforce/schema/User.UserPreferencesDisableFileShareNotificationsForApi" { + const UserPreferencesDisableFileShareNotificationsForApi:boolean; + export default UserPreferencesDisableFileShareNotificationsForApi; +} +declare module "@salesforce/schema/User.UserPreferencesShowTitleToExternalUsers" { + const UserPreferencesShowTitleToExternalUsers:boolean; + export default UserPreferencesShowTitleToExternalUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowManagerToExternalUsers" { + const UserPreferencesShowManagerToExternalUsers:boolean; + export default UserPreferencesShowManagerToExternalUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowEmailToExternalUsers" { + const UserPreferencesShowEmailToExternalUsers:boolean; + export default UserPreferencesShowEmailToExternalUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowWorkPhoneToExternalUsers" { + const UserPreferencesShowWorkPhoneToExternalUsers:boolean; + export default UserPreferencesShowWorkPhoneToExternalUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowMobilePhoneToExternalUsers" { + const UserPreferencesShowMobilePhoneToExternalUsers:boolean; + export default UserPreferencesShowMobilePhoneToExternalUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowFaxToExternalUsers" { + const UserPreferencesShowFaxToExternalUsers:boolean; + export default UserPreferencesShowFaxToExternalUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowStreetAddressToExternalUsers" { + const UserPreferencesShowStreetAddressToExternalUsers:boolean; + export default UserPreferencesShowStreetAddressToExternalUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowCityToExternalUsers" { + const UserPreferencesShowCityToExternalUsers:boolean; + export default UserPreferencesShowCityToExternalUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowStateToExternalUsers" { + const UserPreferencesShowStateToExternalUsers:boolean; + export default UserPreferencesShowStateToExternalUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowPostalCodeToExternalUsers" { + const UserPreferencesShowPostalCodeToExternalUsers:boolean; + export default UserPreferencesShowPostalCodeToExternalUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowCountryToExternalUsers" { + const UserPreferencesShowCountryToExternalUsers:boolean; + export default UserPreferencesShowCountryToExternalUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowProfilePicToGuestUsers" { + const UserPreferencesShowProfilePicToGuestUsers:boolean; + export default UserPreferencesShowProfilePicToGuestUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowTitleToGuestUsers" { + const UserPreferencesShowTitleToGuestUsers:boolean; + export default UserPreferencesShowTitleToGuestUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowCityToGuestUsers" { + const UserPreferencesShowCityToGuestUsers:boolean; + export default UserPreferencesShowCityToGuestUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowStateToGuestUsers" { + const UserPreferencesShowStateToGuestUsers:boolean; + export default UserPreferencesShowStateToGuestUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowPostalCodeToGuestUsers" { + const UserPreferencesShowPostalCodeToGuestUsers:boolean; + export default UserPreferencesShowPostalCodeToGuestUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowCountryToGuestUsers" { + const UserPreferencesShowCountryToGuestUsers:boolean; + export default UserPreferencesShowCountryToGuestUsers; +} +declare module "@salesforce/schema/User.UserPreferencesDisableFeedbackEmail" { + const UserPreferencesDisableFeedbackEmail:boolean; + export default UserPreferencesDisableFeedbackEmail; +} +declare module "@salesforce/schema/User.UserPreferencesDisableWorkEmail" { + const UserPreferencesDisableWorkEmail:boolean; + export default UserPreferencesDisableWorkEmail; +} +declare module "@salesforce/schema/User.UserPreferencesShowForecastingChangeSignals" { + const UserPreferencesShowForecastingChangeSignals:boolean; + export default UserPreferencesShowForecastingChangeSignals; +} +declare module "@salesforce/schema/User.UserPreferencesHideS1BrowserUI" { + const UserPreferencesHideS1BrowserUI:boolean; + export default UserPreferencesHideS1BrowserUI; +} +declare module "@salesforce/schema/User.UserPreferencesDisableEndorsementEmail" { + const UserPreferencesDisableEndorsementEmail:boolean; + export default UserPreferencesDisableEndorsementEmail; +} +declare module "@salesforce/schema/User.UserPreferencesPathAssistantCollapsed" { + const UserPreferencesPathAssistantCollapsed:boolean; + export default UserPreferencesPathAssistantCollapsed; +} +declare module "@salesforce/schema/User.UserPreferencesCacheDiagnostics" { + const UserPreferencesCacheDiagnostics:boolean; + export default UserPreferencesCacheDiagnostics; +} +declare module "@salesforce/schema/User.UserPreferencesShowEmailToGuestUsers" { + const UserPreferencesShowEmailToGuestUsers:boolean; + export default UserPreferencesShowEmailToGuestUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowManagerToGuestUsers" { + const UserPreferencesShowManagerToGuestUsers:boolean; + export default UserPreferencesShowManagerToGuestUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowWorkPhoneToGuestUsers" { + const UserPreferencesShowWorkPhoneToGuestUsers:boolean; + export default UserPreferencesShowWorkPhoneToGuestUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowMobilePhoneToGuestUsers" { + const UserPreferencesShowMobilePhoneToGuestUsers:boolean; + export default UserPreferencesShowMobilePhoneToGuestUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowFaxToGuestUsers" { + const UserPreferencesShowFaxToGuestUsers:boolean; + export default UserPreferencesShowFaxToGuestUsers; +} +declare module "@salesforce/schema/User.UserPreferencesShowStreetAddressToGuestUsers" { + const UserPreferencesShowStreetAddressToGuestUsers:boolean; + export default UserPreferencesShowStreetAddressToGuestUsers; +} +declare module "@salesforce/schema/User.UserPreferencesLightningExperiencePreferred" { + const UserPreferencesLightningExperiencePreferred:boolean; + export default UserPreferencesLightningExperiencePreferred; +} +declare module "@salesforce/schema/User.UserPreferencesPreviewLightning" { + const UserPreferencesPreviewLightning:boolean; + export default UserPreferencesPreviewLightning; +} +declare module "@salesforce/schema/User.UserPreferencesHideEndUserOnboardingAssistantModal" { + const UserPreferencesHideEndUserOnboardingAssistantModal:boolean; + export default UserPreferencesHideEndUserOnboardingAssistantModal; +} +declare module "@salesforce/schema/User.UserPreferencesHideLightningMigrationModal" { + const UserPreferencesHideLightningMigrationModal:boolean; + export default UserPreferencesHideLightningMigrationModal; +} +declare module "@salesforce/schema/User.UserPreferencesHideSfxWelcomeMat" { + const UserPreferencesHideSfxWelcomeMat:boolean; + export default UserPreferencesHideSfxWelcomeMat; +} +declare module "@salesforce/schema/User.UserPreferencesHideBiggerPhotoCallout" { + const UserPreferencesHideBiggerPhotoCallout:boolean; + export default UserPreferencesHideBiggerPhotoCallout; +} +declare module "@salesforce/schema/User.UserPreferencesGlobalNavBarWTShown" { + const UserPreferencesGlobalNavBarWTShown:boolean; + export default UserPreferencesGlobalNavBarWTShown; +} +declare module "@salesforce/schema/User.UserPreferencesGlobalNavGridMenuWTShown" { + const UserPreferencesGlobalNavGridMenuWTShown:boolean; + export default UserPreferencesGlobalNavGridMenuWTShown; +} +declare module "@salesforce/schema/User.UserPreferencesCreateLEXAppsWTShown" { + const UserPreferencesCreateLEXAppsWTShown:boolean; + export default UserPreferencesCreateLEXAppsWTShown; +} +declare module "@salesforce/schema/User.UserPreferencesFavoritesWTShown" { + const UserPreferencesFavoritesWTShown:boolean; + export default UserPreferencesFavoritesWTShown; +} +declare module "@salesforce/schema/User.UserPreferencesRecordHomeSectionCollapseWTShown" { + const UserPreferencesRecordHomeSectionCollapseWTShown:boolean; + export default UserPreferencesRecordHomeSectionCollapseWTShown; +} +declare module "@salesforce/schema/User.UserPreferencesRecordHomeReservedWTShown" { + const UserPreferencesRecordHomeReservedWTShown:boolean; + export default UserPreferencesRecordHomeReservedWTShown; +} +declare module "@salesforce/schema/User.UserPreferencesFavoritesShowTopFavorites" { + const UserPreferencesFavoritesShowTopFavorites:boolean; + export default UserPreferencesFavoritesShowTopFavorites; +} +declare module "@salesforce/schema/User.UserPreferencesExcludeMailAppAttachments" { + const UserPreferencesExcludeMailAppAttachments:boolean; + export default UserPreferencesExcludeMailAppAttachments; +} +declare module "@salesforce/schema/User.UserPreferencesSuppressTaskSFXReminders" { + const UserPreferencesSuppressTaskSFXReminders:boolean; + export default UserPreferencesSuppressTaskSFXReminders; +} +declare module "@salesforce/schema/User.UserPreferencesSuppressEventSFXReminders" { + const UserPreferencesSuppressEventSFXReminders:boolean; + export default UserPreferencesSuppressEventSFXReminders; +} +declare module "@salesforce/schema/User.UserPreferencesPreviewCustomTheme" { + const UserPreferencesPreviewCustomTheme:boolean; + export default UserPreferencesPreviewCustomTheme; +} +declare module "@salesforce/schema/User.UserPreferencesHasCelebrationBadge" { + const UserPreferencesHasCelebrationBadge:boolean; + export default UserPreferencesHasCelebrationBadge; +} +declare module "@salesforce/schema/User.UserPreferencesUserDebugModePref" { + const UserPreferencesUserDebugModePref:boolean; + export default UserPreferencesUserDebugModePref; +} +declare module "@salesforce/schema/User.UserPreferencesSRHOverrideActivities" { + const UserPreferencesSRHOverrideActivities:boolean; + export default UserPreferencesSRHOverrideActivities; +} +declare module "@salesforce/schema/User.UserPreferencesNewLightningReportRunPageEnabled" { + const UserPreferencesNewLightningReportRunPageEnabled:boolean; + export default UserPreferencesNewLightningReportRunPageEnabled; +} +declare module "@salesforce/schema/User.UserPreferencesReverseOpenActivitiesView" { + const UserPreferencesReverseOpenActivitiesView:boolean; + export default UserPreferencesReverseOpenActivitiesView; +} +declare module "@salesforce/schema/User.UserPreferencesShowTerritoryTimeZoneShifts" { + const UserPreferencesShowTerritoryTimeZoneShifts:boolean; + export default UserPreferencesShowTerritoryTimeZoneShifts; +} +declare module "@salesforce/schema/User.UserPreferencesHasSentWarningEmail" { + const UserPreferencesHasSentWarningEmail:boolean; + export default UserPreferencesHasSentWarningEmail; +} +declare module "@salesforce/schema/User.UserPreferencesHasSentWarningEmail238" { + const UserPreferencesHasSentWarningEmail238:boolean; + export default UserPreferencesHasSentWarningEmail238; +} +declare module "@salesforce/schema/User.UserPreferencesHasSentWarningEmail240" { + const UserPreferencesHasSentWarningEmail240:boolean; + export default UserPreferencesHasSentWarningEmail240; +} +declare module "@salesforce/schema/User.UserPreferencesNativeEmailClient" { + const UserPreferencesNativeEmailClient:boolean; + export default UserPreferencesNativeEmailClient; +} +declare module "@salesforce/schema/User.UserPreferencesSendListEmailThroughExternalService" { + const UserPreferencesSendListEmailThroughExternalService:boolean; + export default UserPreferencesSendListEmailThroughExternalService; +} +declare module "@salesforce/schema/User.Contact" { + const Contact:any; + export default Contact; +} +declare module "@salesforce/schema/User.ContactId" { + const ContactId:any; + export default ContactId; +} +declare module "@salesforce/schema/User.Account" { + const Account:any; + export default Account; +} +declare module "@salesforce/schema/User.AccountId" { + const AccountId:any; + export default AccountId; +} +declare module "@salesforce/schema/User.CallCenter" { + const CallCenter:any; + export default CallCenter; +} +declare module "@salesforce/schema/User.CallCenterId" { + const CallCenterId:any; + export default CallCenterId; +} +declare module "@salesforce/schema/User.Extension" { + const Extension:string; + export default Extension; +} +declare module "@salesforce/schema/User.FederationIdentifier" { + const FederationIdentifier:string; + export default FederationIdentifier; +} +declare module "@salesforce/schema/User.AboutMe" { + const AboutMe:string; + export default AboutMe; +} +declare module "@salesforce/schema/User.FullPhotoUrl" { + const FullPhotoUrl:string; + export default FullPhotoUrl; +} +declare module "@salesforce/schema/User.SmallPhotoUrl" { + const SmallPhotoUrl:string; + export default SmallPhotoUrl; +} +declare module "@salesforce/schema/User.IsExtIndicatorVisible" { + const IsExtIndicatorVisible:boolean; + export default IsExtIndicatorVisible; +} +declare module "@salesforce/schema/User.OutOfOfficeMessage" { + const OutOfOfficeMessage:string; + export default OutOfOfficeMessage; +} +declare module "@salesforce/schema/User.MediumPhotoUrl" { + const MediumPhotoUrl:string; + export default MediumPhotoUrl; +} +declare module "@salesforce/schema/User.DigestFrequency" { + const DigestFrequency:string; + export default DigestFrequency; +} +declare module "@salesforce/schema/User.DefaultGroupNotificationFrequency" { + const DefaultGroupNotificationFrequency:string; + export default DefaultGroupNotificationFrequency; +} +declare module "@salesforce/schema/User.JigsawImportLimitOverride" { + const JigsawImportLimitOverride:number; + export default JigsawImportLimitOverride; +} +declare module "@salesforce/schema/User.LastViewedDate" { + const LastViewedDate:any; + export default LastViewedDate; +} +declare module "@salesforce/schema/User.LastReferencedDate" { + const LastReferencedDate:any; + export default LastReferencedDate; +} +declare module "@salesforce/schema/User.BannerPhotoUrl" { + const BannerPhotoUrl:string; + export default BannerPhotoUrl; +} +declare module "@salesforce/schema/User.SmallBannerPhotoUrl" { + const SmallBannerPhotoUrl:string; + export default SmallBannerPhotoUrl; +} +declare module "@salesforce/schema/User.MediumBannerPhotoUrl" { + const MediumBannerPhotoUrl:string; + export default MediumBannerPhotoUrl; +} +declare module "@salesforce/schema/User.IsProfilePhotoActive" { + const IsProfilePhotoActive:boolean; + export default IsProfilePhotoActive; +} +declare module "@salesforce/schema/User.Individual" { + const Individual:any; + export default Individual; +} +declare module "@salesforce/schema/User.IndividualId" { + const IndividualId:any; + export default IndividualId; +} diff --git a/proxy-lite-work/.sfdx/typings/lwc/user.d.ts b/proxy-lite-work/.sfdx/typings/lwc/user.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..c606586c9e325f1d681e7c80a3a9613b8c0abb87 --- /dev/null +++ b/proxy-lite-work/.sfdx/typings/lwc/user.d.ts @@ -0,0 +1,15 @@ +/** + * User's Id. + */ +declare module '@salesforce/user/Id' { + const id: string; + export default id; +} + +/** + * User's is guest status. + */ +declare module '@salesforce/user/isGuest' { + const isGuest: boolean; + export default isGuest; +} diff --git a/proxy-lite-work/force-app/main/default/lwc/jsconfig.json b/proxy-lite-work/force-app/main/default/lwc/jsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..01abc135d62812dd4df024508c76d18979c9d664 --- /dev/null +++ b/proxy-lite-work/force-app/main/default/lwc/jsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "experimentalDecorators": true, + "baseUrl": ".", + "paths": { + "c/*": [ + "*" + ] + } + }, + "include": [ + "**/*", + "../../../../.sfdx/typings/lwc/**/*.d.ts" + ], + "typeAcquisition": { + "include": [ + "jest" + ] + } +} diff --git a/requirements.txt b/requirements.txt index b749303fbcaadea81f1106e3ae9a54dc41b85c15..9f5a6a0e20f50b5d364b8339fba97152690b85eb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,5 +2,6 @@ Flask[async] -e ./proxy-lite-demo-v2 playwright playwright-stealth==1.0.6 +python-dotenv gunicorn gevent